haplo.stats/0000755000176200001440000000000014673125232012517 5ustar liggesusershaplo.stats/tests/0000755000176200001440000000000014673025506013664 5ustar liggesusershaplo.stats/tests/expanded/0000755000176200001440000000000014672566713015465 5ustar liggesusershaplo.stats/tests/expanded/test.methods.haplo.glm.Rout.save0000644000176200001440000003642514672315243023576 0ustar liggesusers R version 4.0.2 (2020-06-22) -- "Taking Off Again" Copyright (C) 2020 The R Foundation for Statistical Computing Platform: x86_64-pc-linux-gnu (64-bit) R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > > ## package: haplo.stats > ## test script: haplo.glm > ## created: 11/23/2011 > > ## settings > verbose=TRUE > require(haplo.stats) Loading required package: haplo.stats Loading required package: arsenal > Sys.setlocale("LC_COLLATE", "C") [1] "C" > Sys.getlocale('LC_COLLATE') [1] "C" > > > if(verbose) cat("setting up data...\n") setting up data... > > > # prepare the hla dataset, > # runs a lot longer, and MS alleles don't all start w/ 1, 2... > label <-c("DQB","DRB","B") > > data(hla.demo) > > y <- hla.demo$resp > y.bin <- 1*(hla.demo$resp.cat=="low") > geno <- as.matrix(hla.demo[,c(17,18,21:24)]) > geno <- setupGeno(geno, miss.val=c(0,NA)) > > # geno now has an attribute 'unique.alleles' which must be passed to > # haplo.glm as allele.lev=attributes(geno)$unique.alleles, see below > > hla.data <- data.frame(geno=geno, age=hla.demo$age, male=hla.demo$male, + y=y, y.bin=y.bin) > > seed <- c(17, 53, 1, 40, 37, 0, 62, 56, 5, 52, 12, 1) > > > if(verbose) cat("fit a binary trait\n") fit a binary trait > set.seed(seed) > fit.hla.bin <- haplo.glm(y.bin ~ male + geno, family = binomial, + na.action="na.geno.keep", data=hla.data, locus.label=label, + control = haplo.glm.control(haplo.min.count=8)) > > y.bin <- 1*(hla.demo$resp.cat=="low") > y.bin[2] <- NA > geno.hla <- as.matrix(hla.demo[,c(17,18,21:24)]) > geno.hla[2,5] <- 2 > geno.hla[3,] <- rep(NA, 6) > geno.hla <- setupGeno(geno.hla, miss.val=c(0,NA)) > > my.hla <- data.frame(geno.hla=geno.hla, age=hla.demo$age, male=hla.demo$male, + y=y, y.bin=y.bin) > > if(verbose) cat(" hla binary trait with subject that are removed\n") hla binary trait with subject that are removed > > set.seed(seed) > fit.hla.miss <- haplo.glm(y.bin ~ male + geno.hla, family = binomial, + na.action="na.geno.keep", + data=my.hla, locus.label=label, + control = haplo.glm.control(haplo.min.count=8)) > > > if(verbose) cat(" gaussian with covariates, additive\n") gaussian with covariates, additive > > set.seed(seed) > fit.hla.gaus.gender <- haplo.glm(y ~ male + geno, family = gaussian, + na.action="na.geno.keep", + data=hla.data, locus.label=label, + control = haplo.glm.control(haplo.min.count=5)) > > > if(verbose) cat("SNAP data with resp and resp with added variance\n") SNAP data with resp and resp with added variance > snapDF <- read.table("snapData.csv",header=TRUE, sep=",", stringsAsFactors=FALSE) > > geno.rec <- setupGeno(snapDF[,-c(1:9)]) > snap.data <- data.frame(resp=hla.demo$resp, respvar=hla.demo$resp*100, geno=geno.rec) > > set.seed(seed) > fit.resp.hla <- haplo.glm(resp~geno, trait.type="gaussian",data=snap.data) > > set.seed(seed) > fit.respvar.hla <- haplo.glm(respvar~geno, trait.type="gaussian",data=snap.data) > > > cat("summary function\n") summary function > > print(summary(fit.hla.bin),digits=3) Call: haplo.glm(formula = y.bin ~ male + geno, family = binomial, data = hla.data, na.action = "na.geno.keep", locus.label = label, control = haplo.glm.control(haplo.min.count = 8)) Deviance Residuals: Min 1Q Median 3Q Max -1.556 -0.800 -0.647 1.059 2.435 Coefficients: coef se t.stat pval (Intercept) 1.546 0.655 2.361 0.02 male -0.480 0.331 -1.452 0.15 geno.17 -0.723 0.801 -0.902 0.37 geno.34 0.364 0.680 0.536 0.59 geno.77 -0.988 0.733 -1.349 0.18 geno.78 -1.409 0.854 -1.650 0.10 geno.100 -2.591 1.128 -2.297 0.02 geno.138 -2.716 0.852 -3.186 0.00 geno.rare -1.261 0.354 -3.565 0.00 (Dispersion parameter for binomial family taken to be 1) Null deviance: 263.50 on 219 degrees of freedom Residual deviance: 233.46 on 211 degrees of freedom AIC: 251.1 Number of Fisher Scoring iterations: 61 Haplotypes: DQB DRB B hap.freq geno.17 21 7 44 0.0230 geno.34 31 4 44 0.0284 geno.77 32 4 60 0.0306 geno.78 32 4 62 0.0235 geno.100 51 1 35 0.0298 geno.138 62 2 7 0.0518 geno.rare * * * 0.7088 haplo.base 21 3 8 0.1041 > > > cat("fitted values for hlabin, hla-gaussian, hla-gaussian-hi-variance\n") fitted values for hlabin, hla-gaussian, hla-gaussian-hi-variance > > print(fitted(fit.hla.bin)[1:20],digits=3) 1 2 3 4 5 6 7 8 9 10 11 0.1673 0.1460 0.1890 0.3513 0.2736 0.5849 0.0808 0.1890 0.1383 0.0581 0.7019 12 13 14 15 16 17 18 19 20 0.2736 0.2736 0.0719 0.2736 0.0581 0.2736 0.0808 0.0516 0.1890 > > print(fitted(fit.resp.hla)[1:20],digits=3) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 2.10 2.10 1.58 1.84 1.72 1.85 1.83 1.83 2.09 2.09 1.83 2.09 1.83 1.83 1.84 2.09 17 18 19 20 1.87 1.83 1.88 1.85 > print(fitted(fit.respvar.hla)[1:20],digits=3) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 210 210 158 184 172 185 183 183 209 209 183 209 183 183 184 209 187 183 188 185 > > cat("vcov for hlabin, hla-gaussian, hla-gaussian-hi-variance\n") vcov for hlabin, hla-gaussian, hla-gaussian-hi-variance > > print(vcov(fit.hla.bin)[1:20,1:20],digits=3) (Intercept) male geno.17 geno.34 geno.77 geno.78 (Intercept) 4.29e-01 -7.29e-02 -2.37e-01 -1.80e-01 -1.83e-01 -1.83e-01 male -7.29e-02 1.09e-01 2.76e-02 -1.13e-02 -1.74e-02 1.52e-02 geno.17 -2.37e-01 2.76e-02 6.42e-01 1.08e-01 6.36e-02 1.12e-01 geno.34 -1.80e-01 -1.13e-02 1.08e-01 4.62e-01 7.42e-02 9.14e-02 geno.77 -1.83e-01 -1.74e-02 6.36e-02 7.42e-02 5.37e-01 8.95e-02 geno.78 -1.83e-01 1.52e-02 1.12e-01 9.14e-02 8.95e-02 7.30e-01 geno.100 -2.48e-01 4.86e-02 1.48e-01 1.11e-01 5.85e-02 1.14e-01 geno.138 -2.35e-01 3.14e-02 1.06e-01 6.04e-02 9.92e-02 8.99e-02 geno.rare -2.15e-01 1.20e-02 1.14e-01 9.40e-02 9.75e-02 8.48e-02 hap.17 6.51e-06 9.19e-07 -3.91e-06 -3.65e-06 -3.83e-06 -3.19e-06 hap.34 -4.06e-08 3.31e-08 1.09e-08 -1.24e-09 -2.57e-09 8.52e-10 hap.77 -4.06e-08 3.31e-08 1.09e-08 -1.24e-09 -2.57e-09 8.52e-10 hap.78 -6.82e-07 -3.28e-08 3.01e-07 2.95e-07 3.15e-07 2.24e-07 hap.100 5.14e-06 1.41e-06 6.12e-06 -3.08e-06 -4.34e-06 -2.13e-06 hap.138 1.40e-05 2.52e-06 -1.50e-05 -1.09e-05 -1.25e-05 -8.45e-06 hap.rare -4.06e-08 3.31e-08 1.09e-08 -1.24e-09 -2.57e-09 8.52e-10 hap.rare -4.06e-08 3.31e-08 1.09e-08 -1.24e-09 -2.57e-09 8.52e-10 hap.rare -4.06e-08 3.31e-08 1.09e-08 -1.24e-09 -2.57e-09 8.52e-10 hap.rare -4.06e-08 3.31e-08 1.09e-08 -1.24e-09 -2.57e-09 8.52e-10 hap.rare -8.12e-08 6.62e-08 2.19e-08 -2.48e-09 -5.14e-09 1.70e-09 geno.100 geno.138 geno.rare hap.17 hap.34 hap.77 (Intercept) -2.48e-01 -2.35e-01 -2.15e-01 6.51e-06 -4.06e-08 -4.06e-08 male 4.86e-02 3.14e-02 1.20e-02 9.19e-07 3.31e-08 3.31e-08 geno.17 1.48e-01 1.06e-01 1.14e-01 -3.91e-06 1.09e-08 1.09e-08 geno.34 1.11e-01 6.04e-02 9.40e-02 -3.65e-06 -1.24e-09 -1.24e-09 geno.77 5.85e-02 9.92e-02 9.75e-02 -3.83e-06 -2.57e-09 -2.57e-09 geno.78 1.14e-01 8.99e-02 8.48e-02 -3.19e-06 8.52e-10 8.52e-10 geno.100 1.27e+00 1.16e-01 1.14e-01 -3.69e-06 1.37e-08 1.37e-08 geno.138 1.16e-01 7.27e-01 1.16e-01 -3.79e-06 8.44e-09 8.44e-09 geno.rare 1.14e-01 1.16e-01 1.25e-01 -3.69e-06 2.65e-08 2.65e-08 hap.17 -3.69e-06 -3.79e-06 -3.69e-06 5.52e-06 -1.21e-08 -1.21e-08 hap.34 1.37e-08 8.44e-09 2.65e-08 -1.21e-08 5.15e-06 -1.17e-08 hap.77 1.37e-08 8.44e-09 2.65e-08 -1.21e-08 -1.17e-08 5.15e-06 hap.78 3.15e-07 3.46e-07 4.74e-07 -1.22e-08 -1.17e-08 -1.17e-08 hap.100 8.13e-07 -3.34e-06 -3.58e-06 -3.04e-08 -2.96e-08 -2.96e-08 hap.138 -9.20e-06 -8.24e-06 -6.49e-06 -1.89e-08 -1.93e-08 -1.93e-08 hap.rare 1.37e-08 8.44e-09 2.65e-08 -1.21e-08 -1.17e-08 -1.17e-08 hap.rare 1.37e-08 8.44e-09 2.65e-08 -1.21e-08 -1.17e-08 -1.17e-08 hap.rare 1.37e-08 8.44e-09 2.65e-08 -1.21e-08 -1.17e-08 -1.17e-08 hap.rare 1.37e-08 8.44e-09 2.65e-08 -1.21e-08 -1.17e-08 -1.17e-08 hap.rare 2.75e-08 1.69e-08 5.30e-08 -2.42e-08 -2.34e-08 -2.34e-08 hap.78 hap.100 hap.138 hap.rare hap.rare hap.rare (Intercept) -6.82e-07 5.14e-06 1.40e-05 -4.06e-08 -4.06e-08 -4.06e-08 male -3.28e-08 1.41e-06 2.52e-06 3.31e-08 3.31e-08 3.31e-08 geno.17 3.01e-07 6.12e-06 -1.50e-05 1.09e-08 1.09e-08 1.09e-08 geno.34 2.95e-07 -3.08e-06 -1.09e-05 -1.24e-09 -1.24e-09 -1.24e-09 geno.77 3.15e-07 -4.34e-06 -1.25e-05 -2.57e-09 -2.57e-09 -2.57e-09 geno.78 2.24e-07 -2.13e-06 -8.45e-06 8.52e-10 8.52e-10 8.52e-10 geno.100 3.15e-07 8.13e-07 -9.20e-06 1.37e-08 1.37e-08 1.37e-08 geno.138 3.46e-07 -3.34e-06 -8.24e-06 8.44e-09 8.44e-09 8.44e-09 geno.rare 4.74e-07 -3.58e-06 -6.49e-06 2.65e-08 2.65e-08 2.65e-08 hap.17 -1.22e-08 -3.04e-08 -1.89e-08 -1.21e-08 -1.21e-08 -1.21e-08 hap.34 -1.17e-08 -2.96e-08 -1.93e-08 -1.17e-08 -1.17e-08 -1.17e-08 hap.77 -1.17e-08 -2.96e-08 -1.93e-08 -1.17e-08 -1.17e-08 -1.17e-08 hap.78 5.19e-06 -2.97e-08 -1.93e-08 -1.17e-08 -1.17e-08 -1.17e-08 hap.100 -2.97e-08 1.53e-05 -2.29e-06 -2.96e-08 -2.96e-08 -2.96e-08 hap.138 -1.93e-08 -2.29e-06 1.17e-05 -1.93e-08 -1.93e-08 -1.93e-08 hap.rare -1.17e-08 -2.96e-08 -1.93e-08 5.15e-06 -1.17e-08 -1.17e-08 hap.rare -1.17e-08 -2.96e-08 -1.93e-08 -1.17e-08 5.15e-06 -1.17e-08 hap.rare -1.17e-08 -2.96e-08 -1.93e-08 -1.17e-08 -1.17e-08 5.15e-06 hap.rare -1.17e-08 -2.96e-08 -1.93e-08 -1.17e-08 -1.17e-08 -1.17e-08 hap.rare -2.35e-08 -5.92e-08 -3.87e-08 -2.34e-08 -2.34e-08 -2.34e-08 hap.rare hap.rare (Intercept) -4.06e-08 -8.12e-08 male 3.31e-08 6.62e-08 geno.17 1.09e-08 2.19e-08 geno.34 -1.24e-09 -2.48e-09 geno.77 -2.57e-09 -5.14e-09 geno.78 8.52e-10 1.70e-09 geno.100 1.37e-08 2.75e-08 geno.138 8.44e-09 1.69e-08 geno.rare 2.65e-08 5.30e-08 hap.17 -1.21e-08 -2.42e-08 hap.34 -1.17e-08 -2.34e-08 hap.77 -1.17e-08 -2.34e-08 hap.78 -1.17e-08 -2.35e-08 hap.100 -2.96e-08 -5.92e-08 hap.138 -1.93e-08 -3.87e-08 hap.rare -1.17e-08 -2.34e-08 hap.rare -1.17e-08 -2.34e-08 hap.rare -1.17e-08 -2.34e-08 hap.rare 5.15e-06 -2.34e-08 hap.rare -2.34e-08 1.03e-05 > > print(vcov(fit.resp.hla),digits=3) (Intercept) geno.1 geno.4 geno.6 geno.7 hap.1 (Intercept) 2.84e-02 -2.07e-02 -1.50e-02 -1.41e-02 -2.01e-02 1.05e-04 geno.1 -2.07e-02 4.04e-02 9.22e-03 5.81e-03 1.41e-02 -3.19e-05 geno.4 -1.50e-02 9.22e-03 2.34e-02 3.46e-03 8.10e-03 -9.00e-05 geno.6 -1.41e-02 5.81e-03 3.46e-03 4.65e-02 5.10e-03 3.17e-04 geno.7 -2.01e-02 1.41e-02 8.10e-03 5.10e-03 2.87e-02 -5.58e-05 hap.1 1.05e-04 -3.19e-05 -9.00e-05 3.17e-04 -5.58e-05 3.26e-04 hap.4 -2.45e-06 2.66e-05 -2.77e-05 1.35e-05 -3.90e-07 -5.37e-05 hap.6 -9.37e-05 -8.67e-06 1.17e-04 -3.83e-04 6.44e-05 -1.04e-04 hap.7 9.37e-05 8.67e-06 -1.17e-04 3.83e-04 -6.44e-05 1.29e-05 hap.4 hap.6 hap.7 (Intercept) -2.45e-06 -9.37e-05 9.37e-05 geno.1 2.66e-05 -8.67e-06 8.67e-06 geno.4 -2.77e-05 1.17e-04 -1.17e-04 geno.6 1.35e-05 -3.83e-04 3.83e-04 geno.7 -3.90e-07 6.44e-05 -6.44e-05 hap.1 -5.37e-05 -1.04e-04 1.29e-05 hap.4 3.36e-04 -4.21e-05 -8.82e-05 hap.6 -4.21e-05 2.90e-04 -1.30e-04 hap.7 -8.82e-05 -1.30e-04 4.68e-04 > print(vcov(fit.respvar.hla),digits=3) (Intercept) geno.1 geno.4 geno.6 geno.7 hap.1 (Intercept) 2.84e+02 -2.07e+02 -1.50e+02 -1.41e+02 -2.01e+02 1.05e-02 geno.1 -2.07e+02 4.04e+02 9.22e+01 5.81e+01 1.41e+02 -3.19e-03 geno.4 -1.50e+02 9.22e+01 2.34e+02 3.46e+01 8.10e+01 -9.00e-03 geno.6 -1.41e+02 5.81e+01 3.46e+01 4.65e+02 5.10e+01 3.17e-02 geno.7 -2.01e+02 1.41e+02 8.10e+01 5.10e+01 2.87e+02 -5.58e-03 hap.1 1.05e-02 -3.19e-03 -9.00e-03 3.17e-02 -5.58e-03 3.26e-04 hap.4 -2.45e-04 2.66e-03 -2.77e-03 1.35e-03 -3.90e-05 -5.37e-05 hap.6 -9.37e-03 -8.67e-04 1.17e-02 -3.83e-02 6.44e-03 -1.04e-04 hap.7 9.37e-03 8.67e-04 -1.17e-02 3.83e-02 -6.44e-03 1.29e-05 hap.4 hap.6 hap.7 (Intercept) -2.45e-04 -9.37e-03 9.37e-03 geno.1 2.66e-03 -8.67e-04 8.67e-04 geno.4 -2.77e-03 1.17e-02 -1.17e-02 geno.6 1.35e-03 -3.83e-02 3.83e-02 geno.7 -3.90e-05 6.44e-03 -6.44e-03 hap.1 -5.37e-05 -1.04e-04 1.29e-05 hap.4 3.36e-04 -4.21e-05 -8.82e-05 hap.6 -4.21e-05 2.90e-04 -1.30e-04 hap.7 -8.82e-05 -1.30e-04 4.68e-04 > > cat("residuals for hlabin, hla-gaussian, hla-gaussian-hi-variance\n") residuals for hlabin, hla-gaussian, hla-gaussian-hi-variance > > print(residuals(fit.hla.bin, type="deviance")[1:20],digits=3) 1 2 3 4 5 6 7 8 9 10 11 -0.605 -0.562 -0.647 -0.930 1.610 -1.326 -0.411 -0.647 -0.546 -0.346 -1.556 12 13 14 15 16 17 18 19 20 -0.800 -0.800 -0.386 -0.800 -0.346 -0.800 -0.411 -0.326 -0.647 > print(residuals(fit.hla.bin, type="pearson")[1:20],digits=3) 1 2 3 4 5 6 7 8 9 10 11 -0.448 -0.414 -0.483 -0.736 1.629 -1.187 -0.297 -0.483 -0.401 -0.248 -1.535 12 13 14 15 16 17 18 19 20 -0.614 -0.614 -0.278 -0.614 -0.248 -0.614 -0.297 -0.233 -0.483 > print(residuals(fit.hla.bin, type="response")[1:20],digits=3) 1 2 3 4 5 6 7 8 9 10 -0.1673 -0.1460 -0.1890 -0.3513 0.7264 -0.5849 -0.0808 -0.1890 -0.1383 -0.0581 11 12 13 14 15 16 17 18 19 20 -0.7019 -0.2736 -0.2736 -0.0719 -0.2736 -0.0581 -0.2736 -0.0808 -0.0516 -0.1890 > > print(residuals(fit.resp.hla)[1:20],digits=3) 1 2 3 4 5 6 7 8 9 10 1.5972 -0.9248 0.0778 0.1307 -0.9213 -0.6994 -0.5256 0.2524 -0.9300 -0.5340 11 12 13 14 15 16 17 18 19 20 -0.6046 0.2880 0.5964 0.3824 0.5287 0.8420 0.6858 -0.7366 0.7558 -0.1524 > print(residuals(fit.respvar.hla)[1:20],digits=3) 1 2 3 4 5 6 7 8 9 10 11 159.72 -92.48 7.78 13.07 -92.13 -69.94 -52.56 25.24 -93.00 -53.40 -60.46 12 13 14 15 16 17 18 19 20 28.80 59.64 38.24 52.87 84.20 68.58 -73.66 75.58 -15.24 > > > proc.time() user system elapsed 18.629 0.292 19.419 haplo.stats/tests/expanded/test.haplo.scan.Rout.save0000644000176200001440000002333514672315243022275 0ustar liggesusers R version 4.0.2 (2020-06-22) -- "Taking Off Again" Copyright (C) 2020 The R Foundation for Statistical Computing Platform: x86_64-pc-linux-gnu (64-bit) R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > > ######## test.haplo.scan.q: test the haplo.scan function ########## > # Jason Sinnwell 3/2005 > # > # test haplo.scan under various settings > # sink all of the results into a file > # check them against known checked results by a diff command (unix) > # > ##################################################################### > > ## package: haplo.stats > ## test script: haplo.scan > > verbose=TRUE > Sys.setlocale("LC_ALL", "C") [1] "LC_CTYPE=C;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=en_US.UTF-8;LC_PAPER=en_US.UTF-8;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=en_US.UTF-8;LC_IDENTIFICATION=C" > Sys.getlocale() [1] "LC_CTYPE=C;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=en_US.UTF-8;LC_PAPER=en_US.UTF-8;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=en_US.UTF-8;LC_IDENTIFICATION=C" > > require(haplo.stats) Loading required package: haplo.stats Loading required package: arsenal > > > # test different options for haplo.scan, > # sink all of the results into a file > # check them against known checked results by a diff command (unix) > > # use check.haplo.scan.s for splus and check.haplo.scan.r for r versions > > > #if(update) sink(goldfile) else sink("sink.haplo.scan.out") > > seed <- c(45, 16, 22, 24, 15, 3, 11, 47, 24, 40, 18, 0) > > set.seed(seed) > runif(10) [1] 0.63337281 0.31753665 0.24092185 0.37841413 0.35214430 0.29775855 [7] 0.22781938 0.55484192 0.18456417 0.00528478 > > > cat("\n Using a random numeric dataset, 10 loci, width=4 sim=100 \n\n") Using a random numeric dataset, 10 loci, width=4 sim=100 > ## regular case, default parameters for 10-locus dataset > set.seed(seed) > tmp <- ifelse(runif(2000)>.3, 1, 2) > geno <- matrix(tmp, ncol=20) > y <- rep(c(0,1),c(50,50)) > ## show verbose on simulations. > > set.seed(seed) > scan1 <- haplo.scan(y = y, geno = geno, miss.val=c(0,NA), width=4, + em.control=haplo.em.control(loci.insert.order = NULL, + insert.batch.size = 6, min.posterior = + 1e-07, tol = 1e-05, max.iter = 5000, + random.start = 0, n.try = 10, iseed = + NULL, max.haps.limit = 2000000, verbose=0), + sim.control=score.sim.control(p.threshold = 0.25, min.sim = 50, + max.sim = 1000, verbose = FALSE)) > > print.haplo.scan(scan1,digits=5) Call: haplo.scan(y = y, geno = geno, width = 4, miss.val = c(0, NA), em.control = haplo.em.control(loci.insert.order = NULL, insert.batch.size = 6, min.posterior = 1e-07, tol = 1e-05, max.iter = 5000, random.start = 0, n.try = 10, iseed = NULL, max.haps.limit = 2e+06, verbose = 0), sim.control = score.sim.control(p.threshold = 0.25, min.sim = 50, max.sim = 1000, verbose = FALSE)) ================================================================================ Locus Scan-statistic Simulated P-values ================================================================================ loc-1 loc-2 loc-3 loc-4 loc-5 loc-6 loc-7 loc-8 loc-9 loc-10 sim.p-val 0.74 0.94 0.9 0.74 0.72 0.7 0.66 0.92 0.8 0.58 Loci with max scan statistic: 4 5 6 7 Max-Stat Simulated Global p-value: 0.86 Number of Simulations: 50 > > cat("\n Using an all character dataset, 7 loci, width=3 \n\n") Using an all character dataset, 7 loci, width=3 > > ## a character allele dataset > geno.char <- matrix(c('a','a','b','b','c','C','d','d','F','f','g','G','h1','h1', + 'a','A','B','B','c','c','d','d','F','F','g','G','H','h1', + 'a','a','b','b','c','c','d','d','F','f','g','G','h2','h2', + 'a','a','B','B','C','c','d','d','f','f','g','G','h2','h1', + 'a','A','B','B','c','c','d','d','F','F','g','G','H','h2', + 'a','a','b','B','C','C','D','d','f','f','G','G','h1','h2', + 'a','a','B','B','c','c','d','d','F','f','G','g','h2','h2', + 'a','a','z','z','c','c','d','d','F','F','g','G','h1','z', + 'a','A','B','B','c','z','z','z','F','f','z','z','h1','h1', + 'a','a','B','B','c','c','d','d','F','f','G','g','h1','h2'), + nrow=10,byrow=T) > > y.char<- c(0,1,0,0,1,0,0,1,0,0) > > set.seed(seed) > ## use all default parameters except for miss.val > scan.char <- haplo.scan(y=y.char, geno=geno.char, miss.val="z", width=3, + em.control=haplo.em.control(loci.insert.order = NULL, + insert.batch.size = 6, min.posterior = + 1e-07, tol = 1e-05, max.iter = 5000, + random.start = 0, n.try = 10, + max.haps.limit = 2000000., verbose = 0), + sim.control=score.sim.control(p.threshold = 0.25, + min.sim = 200, max.sim = 1000., verbose = FALSE)) > print.haplo.scan(scan.char, digits=5) Call: haplo.scan(y = y.char, geno = geno.char, width = 3, miss.val = "z", em.control = haplo.em.control(loci.insert.order = NULL, insert.batch.size = 6, min.posterior = 1e-07, tol = 1e-05, max.iter = 5000, random.start = 0, n.try = 10, max.haps.limit = 2e+06, verbose = 0), sim.control = score.sim.control(p.threshold = 0.25, min.sim = 200, max.sim = 1000, verbose = FALSE)) ================================================================================ Locus Scan-statistic Simulated P-values ================================================================================ loc-1 loc-2 loc-3 loc-4 loc-5 loc-6 loc-7 sim.p-val 0.66 0.825 0.515 0.5 0.4 0.345 0.335 Loci with max scan statistic: 5 6 7 Max-Stat Simulated Global p-value: 0.525 Number of Simulations: 200 > > cat("\n Using hla dataset, 8 loci, sim=10, width=3 \n\n") Using hla dataset, 8 loci, sim=10, width=3 > ## use the hla dataset, just the first 8 markers. slide=3, sim=10 > > data(hla.demo) > > geno.11 <- hla.demo[,-c(1:4)] > y.bin <- 1*(hla.demo$resp.cat=="low") > hla.summary <- summaryGeno(geno.11[,1:16], miss.val=c(0,NA)) > > ## track those subjects with too many possible haplotype pairs ( > 10,000) > many.haps <- (1:length(y.bin))[hla.summary[,4]>10000] > > length(many.haps) [1] 6 > many.haps [1] 11 33 124 137 167 181 > > ## For speed, or even just so it will finish, make y.bin and geno.scan > ## for genotypes that don't have too many ambigous haplotypes > geno.scan <- geno.11[-many.haps,] > y.scan <- y.bin[-many.haps] > > set.seed(seed) > > runif(10) [1] 0.63337281 0.31753665 0.24092185 0.37841413 0.35214430 0.29775855 [7] 0.22781938 0.55484192 0.18456417 0.00528478 > > set.seed(seed) > scan.hla <- haplo.scan(y.scan, geno.scan, width=3, + em.control=haplo.em.control(loci.insert.order = NULL, + insert.batch.size = 3, min.posterior = + 1e-07, tol = 1e-05, max.iter = 5000, + random.start = 0, n.try = 10, + max.haps.limit = 2000000, verbose = 0), + sim.control=score.sim.control(p.threshold = 0.25, + min.sim = 10, max.sim = 10, verbose = TRUE)) h.count: 0.94118 nsim: 1 glob.rej: 1 loc.rej: 1 1 1 1 1 1 0 1 1 1 1 h.count: 1.77778 nsim: 2 glob.rej: 1 loc.rej: 1 1 1 1 1 1 0 1 1 1 1 h.count: 2.52632 nsim: 3 glob.rej: 1 loc.rej: 1 1 1 1 1 1 0 1 1 1 1 h.count: 3.2 nsim: 4 glob.rej: 1 loc.rej: 1 1 1 1 1 1 0 1 1 1 1 h.count: 3.80952 nsim: 5 glob.rej: 1 loc.rej: 1 1 1 1 1 1 0 1 1 1 1 h.count: 4.36364 nsim: 6 glob.rej: 1 loc.rej: 1 1 1 1 1 1 0 1 1 1 1 h.count: 4.86957 nsim: 7 glob.rej: 1 loc.rej: 1 1 1 1 1 1 0 1 1 1 1 h.count: 5.33333 nsim: 8 glob.rej: 1 loc.rej: 1 1 1 1 1 1 0 1 1 1 1 h.count: 5.76 nsim: 9 glob.rej: 2 loc.rej: 2 2 2 2 2 2 1 2 2 2 2 h.count: 6.15385 nsim: 10 glob.rej: 2 loc.rej: 2 2 2 2 2 2 1 2 2 2 2 > > print.haplo.scan(scan.hla, digits=5) Call: haplo.scan(y = y.scan, geno = geno.scan, width = 3, em.control = haplo.em.control(loci.insert.order = NULL, insert.batch.size = 3, min.posterior = 1e-07, tol = 1e-05, max.iter = 5000, random.start = 0, n.try = 10, max.haps.limit = 2e+06, verbose = 0), sim.control = score.sim.control(p.threshold = 0.25, min.sim = 10, max.sim = 10, verbose = TRUE)) ================================================================================ Locus Scan-statistic Simulated P-values ================================================================================ loc-1 loc-2 loc-3 loc-4 loc-5 loc-6 loc-7 loc-8 loc-9 loc-10 loc-11 sim.p-val 0.2 0.2 0.2 0.2 0.2 0.2 0.1 0.2 0.2 0.2 0.2 Loci with max scan statistic: 2 Max-Stat Simulated Global p-value: 0.2 Number of Simulations: 10 > > > > > > > > proc.time() user system elapsed 32.136 0.334 32.832 haplo.stats/tests/expanded/test.seqhap.R0000644000176200001440000000241314672315243020035 0ustar liggesusers##$Author: sinnwell $ ##$Date: 2011/12/05 20:53:27 $ ##$Header: /projects/genetics/cvs/cvsroot/haplo.stats/test/test.seqhap.R,v 1.1 2011/12/05 20:53:27 sinnwell Exp $ ##$Locker: $ ##$Log: test.seqhap.R,v $ ##Revision 1.1 2011/12/05 20:53:27 sinnwell ##changed from .q to .R, to work with R check ## ##Revision 1.1 2011/04/28 20:08:12 sinnwell ##new makefile, pulls R/man files from mgenet, rlocal ## package: haplo.stats ## test script: seqhap ## settings verbose=TRUE require(haplo.stats) Sys.setlocale("LC_ALL", "C") Sys.getlocale() if(verbose) cat("testing with seqhap example dataset \n") data(seqhap.dat) mydata.y <- seqhap.dat[,1] mydata.x <- seqhap.dat[,-1] # load positions data(seqhap.pos) pos=seqhap.pos$pos # run seqhap with default settings seed <- c(45, 16, 22, 24, 15, 3, 11, 47, 24, 40, 18, 0) set.seed(seed) myobj.default <- seqhap(y=mydata.y, geno=mydata.x, pos=pos) set.seed(seed) myobj.mh25 <- seqhap(y=mydata.y, geno=mydata.x, pos=pos, mh.threshold=2.5, haplo.freq.min=.01) set.seed(seed) myobj.perm1K <- seqhap(y=mydata.y, geno=mydata.x, pos=pos, sim.control=score.sim.control(min.sim=1000, max.sim=1000)) print(myobj.default) print(myobj.mh25) print(myobj.perm1K) haplo.stats/tests/expanded/test.haplo.em.Rout.save0000644000176200001440000005201414672315243021746 0ustar liggesusers R version 3.2.0 (2015-04-16) -- "Full of Ingredients" Copyright (C) 2015 The R Foundation for Statistical Computing Platform: x86_64-unknown-linux-gnu (64-bit) R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > > ## package: haplo.stats > ## test script: haplo.em > > ## settings > verbose=TRUE > > require(haplo.stats) Loading required package: haplo.stats > options(stringsAsFactors=FALSE) > tmp <- Sys.setlocale("LC_COLLATE", "C") > tmp <- Sys.getlocale("LC_COLLATE") > > if(verbose) cat("prepare two datasets, one with char alleles, the other 3 loci from hla data\n") prepare two datasets, one with char alleles, the other 3 loci from hla data > > # make ficticious data set with an intention of some trend in > # haplotypes having H-allele at locus-H with F-allele at locus-F > geno.char <- matrix(c('F','f','g','G','h1','h1', + 'F','F','g','G','H','h1', + 'F','f','g','G','h2','h2', + 'f','f','g','G','h2','h1', + 'F','F','g','G','H','h2', + 'f','f','G','G','h1','h2', + 'F','f','G','g','h2','h2', + 'F','F','g','G','h1','z', + 'F','f','z','z','h1','h1', + 'F','f','G','g','h1','h2', + 'F','f','G','G','h1','h2', + 'F','F','g','G','h1','z', + 'F','f','z','z','h1','h1', + 'f','f','G','g','h1','h2'), nrow=14,byrow=T) > char.label <- c("F","G","H") > > data(hla.demo) > > hla.sub <- hla.demo[,c(1,2,3,4,17,18,21:24)] > geno.hla <- hla.sub[,-c(1:4)] > hla.label=c("DQB","DRB","HLA.B") > > seed <- c(33, 10, 39, 6, 16, 0, 40, 24, 12, 60, 7, 1) > > if(verbose) cat("character alleles\n") character alleles > > geno.char.recode <- setupGeno(geno.char, miss.val="z") > > geno.char.recode loc-1.a1 loc-1.a2 loc-2.a1 loc-2.a2 loc-3.a1 loc-3.a2 [1,] 1 2 2 1 2 2 [2,] 1 1 2 1 1 2 [3,] 1 2 2 1 3 3 [4,] 2 2 2 1 3 2 [5,] 1 1 2 1 1 3 [6,] 2 2 1 1 2 3 [7,] 1 2 1 2 3 3 [8,] 1 1 2 1 2 NA [9,] 1 2 NA NA 2 2 [10,] 1 2 1 2 2 3 [11,] 1 2 1 1 2 3 [12,] 1 1 2 1 2 NA [13,] 1 2 NA NA 2 2 [14,] 2 2 1 2 2 3 attr(,"class") [1] "model.matrix" attr(,"unique.alleles") attr(,"unique.alleles")[[1]] [1] "F" "f" attr(,"unique.alleles")[[2]] [1] "G" "g" attr(,"unique.alleles")[[3]] [1] "H" "h1" "h2" > > set.seed(seed) > em.char <- haplo.em(geno.char, miss.val='z',locus.label=char.label, + control = haplo.em.control()) > > print.haplo.em(em.char, digits=3) ================================================================================ Haplotypes ================================================================================ F G H hap.freq 1 F G H 0.089 2 F G h1 0.143 3 F G h2 0.000 4 F g H 0.000 5 F g h1 0.163 6 F g h2 0.140 7 f G h1 0.087 8 f G h2 0.242 9 f g h1 0.135 10 f g h2 0.000 ================================================================================ Details ================================================================================ lnlike = -37.162 lr stat for no LD = 10.987 , df = 2 , p-val = 0.004 > summary(em.char, digits=2, show.haplo=TRUE) ================================================================================ Subjects: Haplotype Codes and Posterior Probabilities ================================================================================ subj.id hap1.F hap1.G hap1.H hap2.F hap2.G hap2.H posterior 1 1 F G h1 f g h1 0.58 2 1 F g h1 f G h1 0.42 3 2 F G H F g h1 1.00 4 2 F G h1 F g H 0.00 5 3 F g h2 f G h2 1.00 6 4 f G h2 f g h1 1.00 7 4 f G h1 f g h2 0.00 8 5 F G H F g h2 1.00 9 6 f G h1 f G h2 1.00 10 7 F g h2 f G h2 1.00 11 8 F G h1 F g h1 0.40 12 8 F G h1 F g h2 0.35 13 8 F G H F g h1 0.25 14 8 F G h1 F g H 0.00 15 8 F G h2 F g h1 0.00 16 9 F g h1 f g h1 0.32 17 9 F G h1 f g h1 0.28 18 9 F g h1 f G h1 0.21 19 9 F G h1 f G h1 0.18 20 10 F g h1 f G h2 0.76 21 10 F g h2 f G h1 0.24 22 10 F G h1 f g h2 0.00 23 10 F G h2 f g h1 0.00 24 11 F G h1 f G h2 1.00 25 11 F G h2 f G h1 0.00 26 12 F G h1 F g h1 0.40 27 12 F G h1 F g h2 0.35 28 12 F G H F g h1 0.25 29 12 F G h1 F g H 0.00 30 12 F G h2 F g h1 0.00 31 13 F g h1 f g h1 0.32 32 13 F G h1 f g h1 0.28 33 13 F g h1 f G h1 0.21 34 13 F G h1 f G h1 0.18 35 14 f G h2 f g h1 1.00 36 14 f G h1 f g h2 0.00 ================================================================================ Number of haplotype pairs: max vs used ================================================================================ x 1 2 4 5 1 1 0 0 0 2 3 5 0 0 4 0 0 3 0 5 0 0 0 2 > > summary.haplo.em(em.char, digits=2) ================================================================================ Subjects: Haplotype Codes and Posterior Probabilities ================================================================================ subj.id hap1 hap2 posterior 1 1 2 9 0.58 2 1 5 7 0.42 3 2 1 5 1.00 4 2 2 4 0.00 5 3 6 8 1.00 6 4 8 9 1.00 7 4 7 10 0.00 8 5 1 6 1.00 9 6 7 8 1.00 10 7 6 8 1.00 11 8 2 5 0.40 12 8 2 6 0.35 13 8 1 5 0.25 14 8 2 4 0.00 15 8 3 5 0.00 16 9 5 9 0.32 17 9 2 9 0.28 18 9 5 7 0.21 19 9 2 7 0.18 20 10 5 8 0.76 21 10 6 7 0.24 22 10 2 10 0.00 23 10 3 9 0.00 24 11 2 8 1.00 25 11 3 7 0.00 26 12 2 5 0.40 27 12 2 6 0.35 28 12 1 5 0.25 29 12 2 4 0.00 30 12 3 5 0.00 31 13 5 9 0.32 32 13 2 9 0.28 33 13 5 7 0.21 34 13 2 7 0.18 35 14 8 9 1.00 36 14 7 10 0.00 ================================================================================ Number of haplotype pairs: max vs used ================================================================================ x 1 2 4 5 1 1 0 0 0 2 3 5 0 0 4 0 0 3 0 5 0 0 0 2 > > > if(verbose) cat("hla data, 3 loci\n") hla data, 3 loci > set.seed(seed) > em.hla3 <- haplo.em(geno.hla, locus.label=hla.label, miss.val=0, + control = haplo.em.control()) > > print.haplo.em(em.hla3, digits=3) ================================================================================ Haplotypes ================================================================================ DQB DRB HLA.B hap.freq 1 21 1 8 0.002 2 21 2 7 0.002 3 21 2 18 0.002 4 21 3 8 0.104 5 21 3 18 0.002 6 21 3 35 0.006 7 21 3 44 0.004 8 21 3 45 0.002 9 21 3 49 0.002 10 21 3 57 0.002 11 21 3 70 0.002 12 21 4 62 0.005 13 21 7 7 0.014 14 21 7 13 0.011 15 21 7 18 0.005 16 21 7 35 0.002 17 21 7 44 0.021 18 21 7 50 0.005 19 21 7 57 0.002 20 21 7 62 0.008 21 21 8 18 0.002 22 21 8 63 0.002 23 21 9 51 0.002 24 21 10 8 0.002 25 31 1 27 0.005 26 31 2 44 0.002 27 31 2 57 0.002 28 31 3 8 0.005 29 31 4 13 0.005 30 31 4 14 0.002 31 31 4 27 0.005 32 31 4 35 0.005 33 31 4 41 0.002 34 31 4 44 0.028 35 31 4 60 0.007 36 31 7 44 0.005 37 31 7 61 0.002 38 31 8 35 0.002 39 31 8 39 0.002 40 31 8 45 0.002 41 31 8 52 0.002 42 31 8 60 0.005 43 31 11 7 0.002 44 31 11 18 0.005 45 31 11 27 0.006 46 31 11 35 0.018 47 31 11 37 0.007 48 31 11 38 0.007 49 31 11 44 0.010 50 31 11 49 0.005 51 31 11 51 0.011 52 31 11 56 0.002 53 31 11 60 0.002 54 31 11 61 0.005 55 31 11 62 0.006 56 31 13 8 0.005 57 31 13 14 0.002 58 31 13 41 0.005 59 31 13 57 0.002 60 31 14 58 0.002 61 31 14 63 0.002 62 32 1 7 0.002 63 32 1 35 0.002 64 32 1 62 0.000 65 32 2 44 0.003 66 32 3 35 0.002 67 32 3 51 0.002 68 32 4 7 0.020 69 32 4 8 0.005 70 32 4 14 0.005 71 32 4 35 0.000 72 32 4 44 0.002 73 32 4 45 0.002 74 32 4 51 0.002 75 32 4 55 0.002 76 32 4 60 0.031 77 32 4 62 0.023 78 32 7 39 0.005 79 32 7 57 0.005 80 32 8 7 0.007 81 32 9 51 0.002 82 32 10 39 0.002 83 33 7 7 0.005 84 33 7 57 0.007 85 33 9 8 0.002 86 33 9 46 0.002 87 33 9 48 0.002 88 33 9 60 0.007 89 33 10 51 0.002 90 42 4 35 0.002 91 42 8 18 0.002 92 42 8 55 0.002 93 42 8 60 0.002 94 51 1 8 0.005 95 51 1 14 0.002 96 51 1 18 0.002 97 51 1 27 0.014 98 51 1 35 0.030 99 51 1 39 0.002 100 51 1 44 0.018 101 51 1 47 0.002 102 51 1 48 0.002 103 51 1 51 0.008 104 51 1 58 0.002 105 51 1 60 0.002 106 51 2 51 0.002 107 51 4 27 0.002 108 51 8 7 0.005 109 51 10 7 0.003 110 51 10 14 0.002 111 51 10 18 0.002 112 51 10 35 0.002 113 51 10 37 0.005 114 51 14 56 0.002 115 52 2 27 0.002 116 52 2 42 0.002 117 52 2 56 0.005 118 52 2 62 0.005 119 52 4 39 0.002 120 52 8 60 0.002 121 53 8 57 0.002 122 53 9 51 0.002 123 53 14 35 0.002 124 53 14 38 0.005 125 53 14 44 0.002 126 53 14 51 0.002 127 53 14 55 0.005 128 61 2 44 0.002 129 61 2 60 0.002 130 61 2 61 0.005 131 61 2 62 0.002 132 61 4 52 0.002 133 61 8 44 0.002 134 61 13 39 0.002 135 61 13 44 0.002 136 62 2 7 0.049 137 62 2 8 0.005 138 62 2 18 0.015 139 62 2 27 0.005 140 62 2 35 0.011 141 62 2 44 0.014 142 62 2 60 0.005 143 62 4 7 0.002 144 62 4 45 0.003 145 62 7 57 0.002 146 62 8 35 0.002 147 62 8 37 0.002 148 62 10 51 0.002 149 62 11 55 0.002 150 62 13 51 0.002 151 62 14 51 0.002 152 63 2 7 0.014 153 63 2 44 0.002 154 63 4 48 0.002 155 63 8 18 0.002 156 63 8 58 0.002 157 63 10 44 0.002 158 63 13 7 0.013 159 63 13 35 0.003 160 63 13 38 0.007 161 63 13 44 0.017 162 63 13 55 0.005 163 63 13 60 0.006 164 63 13 62 0.009 165 64 2 51 0.002 166 64 11 38 0.002 167 64 13 7 0.010 168 64 13 14 0.005 169 64 13 35 0.007 170 64 13 44 0.002 171 64 13 51 0.002 172 64 13 57 0.002 173 64 13 60 0.004 174 64 13 61 0.002 175 64 13 63 0.007 ================================================================================ Details ================================================================================ lnlike = -1846.904 lr stat for no LD = 585.113 , df = 124 , p-val = 0 > > if(verbose) cat("snap SNP data, unphased\n") snap SNP data, unphased > snapDF <- read.table("snapData.csv",header=TRUE, sep=",", stringsAsFactors=FALSE) > > geno.snap <- setupGeno(geno=snapDF[,-1]) > set.seed(seed) > em.snap <- haplo.em(geno=geno.snap) > > print(em.snap, digits=3) ================================================================================ Haplotypes ================================================================================ loc-1 loc-2 loc-3 loc-4 loc-5 loc-6 loc-7 hap.freq 1 1 1 1 1 1 1 1 0.052 2 1 1 1 1 1 1 2 0.105 3 1 1 1 1 2 1 1 0.051 4 1 1 1 1 2 2 1 0.049 5 1 1 1 1 2 2 2 0.085 6 1 1 1 2 1 1 2 0.063 7 1 1 1 2 2 2 2 0.016 8 1 1 2 1 1 1 1 0.014 9 1 1 2 1 1 1 2 0.034 10 1 1 2 1 2 1 1 0.022 11 1 1 2 1 2 2 1 0.027 12 1 1 2 1 2 2 2 0.016 13 1 1 2 2 1 1 2 0.021 14 1 1 2 2 2 2 2 0.017 15 1 2 1 1 1 1 1 0.009 16 1 2 1 1 1 1 2 0.014 17 1 2 1 1 2 1 1 0.015 18 1 2 1 1 2 2 2 0.000 19 1 2 1 2 1 1 2 0.014 20 1 2 1 2 2 2 2 0.004 21 1 2 2 1 1 1 1 0.021 22 1 2 2 1 1 1 2 0.026 23 1 2 2 1 2 1 1 0.032 24 1 2 2 1 2 2 1 0.016 25 1 2 2 1 2 2 2 0.000 26 1 2 2 2 1 1 2 0.023 27 1 2 2 2 2 2 2 0.015 28 2 1 1 1 1 1 1 0.005 29 2 1 1 1 1 1 2 0.019 30 2 1 1 1 2 1 1 0.032 31 2 1 1 1 2 2 2 0.014 32 2 1 1 2 1 1 2 0.034 33 2 1 1 2 2 2 2 0.008 34 2 2 1 1 1 1 1 0.016 35 2 2 1 1 1 1 2 0.029 36 2 2 1 1 2 1 1 0.025 37 2 2 1 1 2 2 1 0.017 38 2 2 1 1 2 2 2 0.011 39 2 2 1 2 2 2 2 0.028 ================================================================================ Details ================================================================================ lnlike = -1210.329 lr stat for no LD = 139.722 , df = 30 , p-val = 0 > > > if(verbose) cat("Check Phase against SNaP data, phased\n") Check Phase against SNaP data, phased > snapfile <- "snap.sim.phased.dat" > source("snapFUN.s") > set.seed(seed) > block1.phase <- checkPhase(snapfile, blocknum=1) > set.seed(seed) > block2.phase <- checkPhase(snapfile, blocknum=2) > > > print(block1.phase[[2]], digits=4) haplotype em.freq snap.freq 1 11112211 5.516e-02 0.0545 2 11121112 3.348e-01 0.3355 3 11122122 1.565e-01 0.1565 4 12212211 1.553e-01 0.1560 5 12221112 9.816e-02 0.0975 6 21112212 1.120e-01 0.1120 7 21221112 8.800e-02 0.0880 8 22212212 1.644e-09 0.0000 > print(block1.phase[[1]][1:50,],digits=4) # long output 1120 lines subj emhap1 emhap2 post snaphap1 snaphap2 1 1 11121112 21221112 1.000e+00 21221112 11121112 2 2 11122122 12212211 1.000e+00 12212211 11122122 3 3 11121112 11121112 1.000e+00 11121112 11121112 4 4 12212211 12212211 1.000e+00 12212211 12212211 5 5 11121112 12212211 9.057e-01 12212211 11121112 6 5 11112211 12221112 9.427e-02 12212211 11121112 7 6 11121112 21221112 1.000e+00 21221112 11121112 8 7 12212211 21221112 1.000e+00 12212211 21221112 9 8 11112211 11122122 1.000e+00 11112211 11122122 10 9 11121112 11122122 1.000e+00 11121112 11122122 11 10 12212211 12221112 1.000e+00 12212211 12221112 12 11 11121112 11122122 1.000e+00 11121112 11122122 13 12 12221112 21221112 1.000e+00 21221112 12221112 14 13 11121112 12212211 9.057e-01 11121112 12212211 15 13 11112211 12221112 9.427e-02 11121112 12212211 16 14 11112211 11121112 1.000e+00 11121112 11112211 17 15 11112211 21112212 1.000e+00 21112212 11112211 18 16 12221112 21112212 1.000e+00 12221112 21112212 19 16 11121112 22212212 1.098e-07 12221112 21112212 20 17 11122122 12212211 1.000e+00 12212211 11122122 21 18 11121112 11121112 1.000e+00 11121112 11121112 22 19 11121112 12221112 1.000e+00 12221112 11121112 23 20 11121112 11121112 1.000e+00 11121112 11121112 24 21 21112212 21221112 1.000e+00 21221112 21112212 25 22 11121112 11122122 1.000e+00 11121112 11122122 26 23 11121112 12212211 9.057e-01 11121112 12212211 27 23 11112211 12221112 9.427e-02 11121112 12212211 28 24 11121112 11121112 1.000e+00 11121112 11121112 29 25 11122122 21112212 1.000e+00 11122122 21112212 30 26 11121112 11121112 1.000e+00 11121112 11121112 31 27 11122122 12212211 1.000e+00 11122122 12212211 32 28 12212211 21221112 1.000e+00 12212211 21221112 33 29 11122122 12221112 1.000e+00 11122122 12221112 34 30 11121112 21112212 1.000e+00 21112212 11121112 35 31 11121112 11122122 1.000e+00 11122122 11121112 36 32 11122122 21112212 1.000e+00 11122122 21112212 37 33 11122122 21221112 1.000e+00 11122122 21221112 38 34 11121112 11122122 1.000e+00 11122122 11121112 39 35 21112212 21221112 1.000e+00 21221112 21112212 40 36 11121112 12221112 1.000e+00 11121112 12221112 41 37 12212211 12212211 1.000e+00 12212211 12212211 42 38 11121112 11121112 1.000e+00 11121112 11121112 43 39 11121112 11121112 1.000e+00 11121112 11121112 44 40 12212211 21112212 1.000e+00 21112212 12212211 45 40 11112211 22212212 1.143e-08 21112212 12212211 46 41 11121112 12212211 9.057e-01 12212211 11121112 47 41 11112211 12221112 9.427e-02 12212211 11121112 48 42 12212211 21221112 1.000e+00 12212211 21221112 49 43 11121112 11122122 1.000e+00 11121112 11122122 50 44 12212211 21112212 1.000e+00 21112212 12212211 > print(block2.phase[[2]],digits=4) haplotype em.freq snap.freq 1 1111221221 5.200e-02 0.0520 2 1121221221 1.965e-01 0.1965 3 1221112211 9.650e-02 0.0965 4 2112211122 2.105e-01 0.2105 5 2112221122 5.400e-02 0.0540 6 2211122211 9.300e-02 0.0930 7 2221111222 1.010e-01 0.1010 8 2221121222 1.886e-10 0.0000 9 2221222221 1.965e-01 0.1965 > > > > > > proc.time() user system elapsed 14.394 0.241 14.788 haplo.stats/tests/expanded/test.haplo.em.Rout0000644000176200001440000005221414672566611021022 0ustar liggesusers R version 4.4.1 (2024-06-14) -- "Race for Your Life" Copyright (C) 2024 The R Foundation for Statistical Computing Platform: x86_64-pc-linux-gnu R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. Natural language support but running in an English locale R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > > ## package: haplo.stats > ## test script: haplo.em > > ## settings > verbose=TRUE > > require(haplo.stats) Loading required package: haplo.stats Loading required package: arsenal > packageVersion("haplo.stats") [1] ‘1.9.6’ > options(stringsAsFactors=FALSE) > tmp <- Sys.setlocale("LC_COLLATE", "C") > tmp <- Sys.getlocale("LC_COLLATE") > > if(verbose) cat("prepare two datasets, one with char alleles, the other 3 loci from hla data\n") prepare two datasets, one with char alleles, the other 3 loci from hla data > > # make ficticious data set with an intention of some trend in > # haplotypes having H-allele at locus-H with F-allele at locus-F > geno.char <- matrix(c('F','f','g','G','h1','h1', + 'F','F','g','G','H','h1', + 'F','f','g','G','h2','h2', + 'f','f','g','G','h2','h1', + 'F','F','g','G','H','h2', + 'f','f','G','G','h1','h2', + 'F','f','G','g','h2','h2', + 'F','F','g','G','h1','z', + 'F','f','z','z','h1','h1', + 'F','f','G','g','h1','h2', + 'F','f','G','G','h1','h2', + 'F','F','g','G','h1','z', + 'F','f','z','z','h1','h1', + 'f','f','G','g','h1','h2'), nrow=14,byrow=T) > char.label <- c("F","G","H") > > data(hla.demo) > > hla.sub <- hla.demo[,c(1,2,3,4,17,18,21:24)] > geno.hla <- hla.sub[,-c(1:4)] > hla.label=c("DQB","DRB","HLA.B") > > seed <- c(33, 10, 39, 6, 16, 0, 40, 24, 12, 60, 7, 1) > > if(verbose) cat("character alleles\n") character alleles > > geno.char.recode <- setupGeno(geno.char, miss.val="z") > > geno.char.recode loc-1.a1 loc-1.a2 loc-2.a1 loc-2.a2 loc-3.a1 loc-3.a2 [1,] 1 2 2 1 2 2 [2,] 1 1 2 1 1 2 [3,] 1 2 2 1 3 3 [4,] 2 2 2 1 3 2 [5,] 1 1 2 1 1 3 [6,] 2 2 1 1 2 3 [7,] 1 2 1 2 3 3 [8,] 1 1 2 1 2 NA [9,] 1 2 NA NA 2 2 [10,] 1 2 1 2 2 3 [11,] 1 2 1 1 2 3 [12,] 1 1 2 1 2 NA [13,] 1 2 NA NA 2 2 [14,] 2 2 1 2 2 3 attr(,"class") [1] "model.matrix" attr(,"unique.alleles") attr(,"unique.alleles")[[1]] [1] "F" "f" attr(,"unique.alleles")[[2]] [1] "G" "g" attr(,"unique.alleles")[[3]] [1] "H" "h1" "h2" > > set.seed(seed) > em.char <- haplo.em(geno.char, miss.val='z',locus.label=char.label, + control = haplo.em.control()) > > print.haplo.em(em.char, digits=3) ================================================================================ Haplotypes ================================================================================ F G H hap.freq 1 F G H 0.089 2 F G h1 0.143 3 F G h2 0.000 4 F g H 0.000 5 F g h1 0.163 6 F g h2 0.140 7 f G h1 0.087 8 f G h2 0.242 9 f g h1 0.135 10 f g h2 0.000 ================================================================================ Details ================================================================================ lnlike = -37.162 lr stat for no LD = 10.987 , df = 2 , p-val = 0.004 > summary(em.char, digits=2, show.haplo=TRUE) ================================================================================ Subjects: Haplotype Codes and Posterior Probabilities ================================================================================ subj.id hap1.F hap1.G hap1.H hap2.F hap2.G hap2.H posterior 1 1 F G h1 f g h1 0.58 2 1 F g h1 f G h1 0.42 3 2 F G H F g h1 1.00 4 2 F G h1 F g H 0.00 5 3 F g h2 f G h2 1.00 6 4 f G h2 f g h1 1.00 7 4 f G h1 f g h2 0.00 8 5 F G H F g h2 1.00 9 6 f G h1 f G h2 1.00 10 7 F g h2 f G h2 1.00 11 8 F G h1 F g h1 0.40 12 8 F G h1 F g h2 0.35 13 8 F G H F g h1 0.25 14 8 F G h1 F g H 0.00 15 8 F G h2 F g h1 0.00 16 9 F g h1 f g h1 0.32 17 9 F G h1 f g h1 0.28 18 9 F g h1 f G h1 0.21 19 9 F G h1 f G h1 0.18 20 10 F g h1 f G h2 0.76 21 10 F g h2 f G h1 0.24 22 10 F G h1 f g h2 0.00 23 10 F G h2 f g h1 0.00 24 11 F G h1 f G h2 1.00 25 11 F G h2 f G h1 0.00 26 12 F G h1 F g h1 0.40 27 12 F G h1 F g h2 0.35 28 12 F G H F g h1 0.25 29 12 F G h1 F g H 0.00 30 12 F G h2 F g h1 0.00 31 13 F g h1 f g h1 0.32 32 13 F G h1 f g h1 0.28 33 13 F g h1 f G h1 0.21 34 13 F G h1 f G h1 0.18 35 14 f G h2 f g h1 1.00 36 14 f G h1 f g h2 0.00 ================================================================================ Number of haplotype pairs: max vs used ================================================================================ x 1 2 4 5 1 1 0 0 0 2 3 5 0 0 4 0 0 3 0 5 0 0 0 2 > > summary.haplo.em(em.char, digits=2) ================================================================================ Subjects: Haplotype Codes and Posterior Probabilities ================================================================================ subj.id hap1 hap2 posterior 1 1 2 9 0.58 2 1 5 7 0.42 3 2 1 5 1.00 4 2 2 4 0.00 5 3 6 8 1.00 6 4 8 9 1.00 7 4 7 10 0.00 8 5 1 6 1.00 9 6 7 8 1.00 10 7 6 8 1.00 11 8 2 5 0.40 12 8 2 6 0.35 13 8 1 5 0.25 14 8 2 4 0.00 15 8 3 5 0.00 16 9 5 9 0.32 17 9 2 9 0.28 18 9 5 7 0.21 19 9 2 7 0.18 20 10 5 8 0.76 21 10 6 7 0.24 22 10 2 10 0.00 23 10 3 9 0.00 24 11 2 8 1.00 25 11 3 7 0.00 26 12 2 5 0.40 27 12 2 6 0.35 28 12 1 5 0.25 29 12 2 4 0.00 30 12 3 5 0.00 31 13 5 9 0.32 32 13 2 9 0.28 33 13 5 7 0.21 34 13 2 7 0.18 35 14 8 9 1.00 36 14 7 10 0.00 ================================================================================ Number of haplotype pairs: max vs used ================================================================================ x 1 2 4 5 1 1 0 0 0 2 3 5 0 0 4 0 0 3 0 5 0 0 0 2 > > > if(verbose) cat("hla data, 3 loci\n") hla data, 3 loci > set.seed(seed) > em.hla3 <- haplo.em(geno.hla, locus.label=hla.label, miss.val=0, + control = haplo.em.control()) > > print.haplo.em(em.hla3, digits=3) ================================================================================ Haplotypes ================================================================================ DQB DRB HLA.B hap.freq 1 21 1 8 0.002 2 21 2 7 0.002 3 21 2 18 0.002 4 21 3 8 0.104 5 21 3 18 0.002 6 21 3 35 0.006 7 21 3 44 0.004 8 21 3 45 0.002 9 21 3 49 0.002 10 21 3 57 0.002 11 21 3 70 0.002 12 21 4 62 0.005 13 21 7 7 0.014 14 21 7 13 0.011 15 21 7 18 0.005 16 21 7 35 0.002 17 21 7 44 0.021 18 21 7 50 0.005 19 21 7 57 0.002 20 21 7 62 0.008 21 21 8 18 0.002 22 21 8 63 0.002 23 21 9 51 0.002 24 21 10 8 0.002 25 31 1 27 0.005 26 31 2 44 0.002 27 31 2 57 0.002 28 31 3 8 0.005 29 31 4 13 0.005 30 31 4 14 0.002 31 31 4 27 0.005 32 31 4 35 0.005 33 31 4 41 0.002 34 31 4 44 0.028 35 31 4 60 0.007 36 31 7 44 0.005 37 31 7 61 0.002 38 31 8 35 0.002 39 31 8 39 0.002 40 31 8 45 0.002 41 31 8 52 0.002 42 31 8 60 0.005 43 31 11 7 0.002 44 31 11 18 0.005 45 31 11 27 0.006 46 31 11 35 0.018 47 31 11 37 0.007 48 31 11 38 0.007 49 31 11 44 0.010 50 31 11 49 0.005 51 31 11 51 0.011 52 31 11 56 0.002 53 31 11 60 0.002 54 31 11 61 0.005 55 31 11 62 0.006 56 31 13 8 0.005 57 31 13 14 0.002 58 31 13 41 0.005 59 31 13 57 0.002 60 31 14 58 0.002 61 31 14 63 0.002 62 32 1 7 0.002 63 32 1 35 0.002 64 32 1 62 0.000 65 32 2 44 0.003 66 32 3 35 0.002 67 32 3 51 0.002 68 32 4 7 0.020 69 32 4 8 0.005 70 32 4 14 0.005 71 32 4 35 0.000 72 32 4 44 0.002 73 32 4 45 0.002 74 32 4 51 0.002 75 32 4 55 0.002 76 32 4 60 0.031 77 32 4 62 0.023 78 32 7 39 0.005 79 32 7 57 0.005 80 32 8 7 0.007 81 32 9 51 0.002 82 32 10 39 0.002 83 33 7 7 0.005 84 33 7 57 0.007 85 33 9 8 0.002 86 33 9 46 0.002 87 33 9 48 0.002 88 33 9 60 0.007 89 33 10 51 0.002 90 42 4 35 0.002 91 42 8 18 0.002 92 42 8 55 0.002 93 42 8 60 0.002 94 51 1 8 0.005 95 51 1 14 0.002 96 51 1 18 0.002 97 51 1 27 0.014 98 51 1 35 0.030 99 51 1 39 0.002 100 51 1 44 0.018 101 51 1 47 0.002 102 51 1 48 0.002 103 51 1 51 0.008 104 51 1 58 0.002 105 51 1 60 0.002 106 51 2 51 0.002 107 51 4 27 0.002 108 51 8 7 0.005 109 51 10 7 0.003 110 51 10 14 0.002 111 51 10 18 0.002 112 51 10 35 0.002 113 51 10 37 0.005 114 51 14 56 0.002 115 52 2 27 0.002 116 52 2 42 0.002 117 52 2 56 0.005 118 52 2 62 0.005 119 52 4 39 0.002 120 52 8 60 0.002 121 53 8 57 0.002 122 53 9 51 0.002 123 53 14 35 0.002 124 53 14 38 0.005 125 53 14 44 0.002 126 53 14 51 0.002 127 53 14 55 0.005 128 61 2 44 0.002 129 61 2 60 0.002 130 61 2 61 0.005 131 61 2 62 0.002 132 61 4 52 0.002 133 61 8 44 0.002 134 61 13 39 0.002 135 61 13 44 0.002 136 62 2 7 0.049 137 62 2 8 0.005 138 62 2 18 0.015 139 62 2 27 0.005 140 62 2 35 0.011 141 62 2 44 0.014 142 62 2 60 0.005 143 62 4 7 0.002 144 62 4 45 0.003 145 62 7 57 0.002 146 62 8 35 0.002 147 62 8 37 0.002 148 62 10 51 0.002 149 62 11 55 0.002 150 62 13 51 0.002 151 62 14 51 0.002 152 63 2 7 0.014 153 63 2 44 0.002 154 63 4 48 0.002 155 63 8 18 0.002 156 63 8 58 0.002 157 63 10 44 0.002 158 63 13 7 0.013 159 63 13 35 0.003 160 63 13 38 0.007 161 63 13 44 0.017 162 63 13 55 0.005 163 63 13 60 0.006 164 63 13 62 0.009 165 64 2 51 0.002 166 64 11 38 0.002 167 64 13 7 0.010 168 64 13 14 0.005 169 64 13 35 0.007 170 64 13 44 0.002 171 64 13 51 0.002 172 64 13 57 0.002 173 64 13 60 0.004 174 64 13 61 0.002 175 64 13 63 0.007 ================================================================================ Details ================================================================================ lnlike = -1846.904 lr stat for no LD = 585.113 , df = 124 , p-val = 0 > > if(verbose) cat("snap SNP data, unphased\n") snap SNP data, unphased > snapDF <- read.table("snapData.csv",header=TRUE, sep=",", stringsAsFactors=FALSE) > > geno.snap <- setupGeno(geno=snapDF[,-1]) > set.seed(seed) > em.snap <- haplo.em(geno=geno.snap) > > print(em.snap, digits=3) ================================================================================ Haplotypes ================================================================================ loc-1 loc-2 loc-3 loc-4 loc-5 loc-6 loc-7 hap.freq 1 1 1 1 1 1 1 1 0.052 2 1 1 1 1 1 1 2 0.105 3 1 1 1 1 2 1 1 0.051 4 1 1 1 1 2 2 1 0.049 5 1 1 1 1 2 2 2 0.085 6 1 1 1 2 1 1 2 0.063 7 1 1 1 2 2 2 2 0.016 8 1 1 2 1 1 1 1 0.014 9 1 1 2 1 1 1 2 0.034 10 1 1 2 1 2 1 1 0.022 11 1 1 2 1 2 2 1 0.027 12 1 1 2 1 2 2 2 0.016 13 1 1 2 2 1 1 2 0.021 14 1 1 2 2 2 2 2 0.017 15 1 2 1 1 1 1 1 0.009 16 1 2 1 1 1 1 2 0.014 17 1 2 1 1 2 1 1 0.015 18 1 2 1 1 2 2 2 0.000 19 1 2 1 2 1 1 2 0.014 20 1 2 1 2 2 2 2 0.004 21 1 2 2 1 1 1 1 0.021 22 1 2 2 1 1 1 2 0.026 23 1 2 2 1 2 1 1 0.032 24 1 2 2 1 2 2 1 0.016 25 1 2 2 1 2 2 2 0.000 26 1 2 2 2 1 1 2 0.023 27 1 2 2 2 2 2 2 0.015 28 2 1 1 1 1 1 1 0.005 29 2 1 1 1 1 1 2 0.019 30 2 1 1 1 2 1 1 0.032 31 2 1 1 1 2 2 2 0.014 32 2 1 1 2 1 1 2 0.034 33 2 1 1 2 2 2 2 0.008 34 2 2 1 1 1 1 1 0.016 35 2 2 1 1 1 1 2 0.029 36 2 2 1 1 2 1 1 0.025 37 2 2 1 1 2 2 1 0.017 38 2 2 1 1 2 2 2 0.011 39 2 2 1 2 2 2 2 0.028 ================================================================================ Details ================================================================================ lnlike = -1210.329 lr stat for no LD = 139.722 , df = 30 , p-val = 0 > > > if(verbose) cat("Check Phase against SNaP data, phased\n") Check Phase against SNaP data, phased > snapfile <- "snap.sim.phased.dat" > source("snapFUN.s") > set.seed(seed) > block1.phase <- checkPhase(snapfile, blocknum=1) > set.seed(seed) > block2.phase <- checkPhase(snapfile, blocknum=2) > > > print(block1.phase[[2]], digits=4) haplotype em.freq snap.freq 1 11112211 5.516e-02 0.0545 2 11121112 3.348e-01 0.3355 3 11122122 1.565e-01 0.1565 4 12212211 1.553e-01 0.1560 5 12221112 9.816e-02 0.0975 6 21112212 1.120e-01 0.1120 7 21221112 8.800e-02 0.0880 8 22212212 1.644e-09 0.0000 > print(block1.phase[[1]][1:50,],digits=4) # long output 1120 lines subj emhap1 emhap2 post snaphap1 snaphap2 1 1 11121112 21221112 1.000e+00 21221112 11121112 2 2 11122122 12212211 1.000e+00 12212211 11122122 3 3 11121112 11121112 1.000e+00 11121112 11121112 4 4 12212211 12212211 1.000e+00 12212211 12212211 5 5 11121112 12212211 9.057e-01 12212211 11121112 6 5 11112211 12221112 9.427e-02 12212211 11121112 7 6 11121112 21221112 1.000e+00 21221112 11121112 8 7 12212211 21221112 1.000e+00 12212211 21221112 9 8 11112211 11122122 1.000e+00 11112211 11122122 10 9 11121112 11122122 1.000e+00 11121112 11122122 11 10 12212211 12221112 1.000e+00 12212211 12221112 12 11 11121112 11122122 1.000e+00 11121112 11122122 13 12 12221112 21221112 1.000e+00 21221112 12221112 14 13 11121112 12212211 9.057e-01 11121112 12212211 15 13 11112211 12221112 9.427e-02 11121112 12212211 16 14 11112211 11121112 1.000e+00 11121112 11112211 17 15 11112211 21112212 1.000e+00 21112212 11112211 18 16 12221112 21112212 1.000e+00 12221112 21112212 19 16 11121112 22212212 1.098e-07 12221112 21112212 20 17 11122122 12212211 1.000e+00 12212211 11122122 21 18 11121112 11121112 1.000e+00 11121112 11121112 22 19 11121112 12221112 1.000e+00 12221112 11121112 23 20 11121112 11121112 1.000e+00 11121112 11121112 24 21 21112212 21221112 1.000e+00 21221112 21112212 25 22 11121112 11122122 1.000e+00 11121112 11122122 26 23 11121112 12212211 9.057e-01 11121112 12212211 27 23 11112211 12221112 9.427e-02 11121112 12212211 28 24 11121112 11121112 1.000e+00 11121112 11121112 29 25 11122122 21112212 1.000e+00 11122122 21112212 30 26 11121112 11121112 1.000e+00 11121112 11121112 31 27 11122122 12212211 1.000e+00 11122122 12212211 32 28 12212211 21221112 1.000e+00 12212211 21221112 33 29 11122122 12221112 1.000e+00 11122122 12221112 34 30 11121112 21112212 1.000e+00 21112212 11121112 35 31 11121112 11122122 1.000e+00 11122122 11121112 36 32 11122122 21112212 1.000e+00 11122122 21112212 37 33 11122122 21221112 1.000e+00 11122122 21221112 38 34 11121112 11122122 1.000e+00 11122122 11121112 39 35 21112212 21221112 1.000e+00 21221112 21112212 40 36 11121112 12221112 1.000e+00 11121112 12221112 41 37 12212211 12212211 1.000e+00 12212211 12212211 42 38 11121112 11121112 1.000e+00 11121112 11121112 43 39 11121112 11121112 1.000e+00 11121112 11121112 44 40 12212211 21112212 1.000e+00 21112212 12212211 45 40 11112211 22212212 1.143e-08 21112212 12212211 46 41 11121112 12212211 9.057e-01 12212211 11121112 47 41 11112211 12221112 9.427e-02 12212211 11121112 48 42 12212211 21221112 1.000e+00 12212211 21221112 49 43 11121112 11122122 1.000e+00 11121112 11122122 50 44 12212211 21112212 1.000e+00 21112212 12212211 > print(block2.phase[[2]],digits=4) haplotype em.freq snap.freq 1 1111221221 5.200e-02 0.0520 2 1121221221 1.965e-01 0.1965 3 1221112211 9.650e-02 0.0965 4 2112211122 2.105e-01 0.2105 5 2112221122 5.400e-02 0.0540 6 2211122211 9.300e-02 0.0930 7 2221111222 1.010e-01 0.1010 8 2221121222 1.886e-10 0.0000 9 2221222221 1.965e-01 0.1965 > > > > > > proc.time() user system elapsed 6.754 0.236 7.384 haplo.stats/tests/expanded/test.seqhap.Rout.save0000644000176200001440000002614714672315243021534 0ustar liggesusers R version 4.0.2 (2020-06-22) -- "Taking Off Again" Copyright (C) 2020 The R Foundation for Statistical Computing Platform: x86_64-pc-linux-gnu (64-bit) R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > ##$Author: sinnwell $ > ##$Date: 2011/12/05 20:53:27 $ > ##$Header: /projects/genetics/cvs/cvsroot/haplo.stats/test/test.seqhap.R,v 1.1 2011/12/05 20:53:27 sinnwell Exp $ > ##$Locker: $ > ##$Log: test.seqhap.R,v $ > ##Revision 1.1 2011/12/05 20:53:27 sinnwell > ##changed from .q to .R, to work with R check > ## > ##Revision 1.1 2011/04/28 20:08:12 sinnwell > ##new makefile, pulls R/man files from mgenet, rlocal > > ## package: haplo.stats > ## test script: seqhap > > ## settings > verbose=TRUE > require(haplo.stats) Loading required package: haplo.stats Loading required package: arsenal > Sys.setlocale("LC_ALL", "C") [1] "LC_CTYPE=C;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=en_US.UTF-8;LC_PAPER=en_US.UTF-8;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=en_US.UTF-8;LC_IDENTIFICATION=C" > Sys.getlocale() [1] "LC_CTYPE=C;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=en_US.UTF-8;LC_PAPER=en_US.UTF-8;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=en_US.UTF-8;LC_IDENTIFICATION=C" > > > if(verbose) cat("testing with seqhap example dataset \n") testing with seqhap example dataset > > data(seqhap.dat) > mydata.y <- seqhap.dat[,1] > mydata.x <- seqhap.dat[,-1] > # load positions > data(seqhap.pos) > pos=seqhap.pos$pos > # run seqhap with default settings > > seed <- c(45, 16, 22, 24, 15, 3, 11, 47, 24, 40, 18, 0) > set.seed(seed) > > myobj.default <- seqhap(y=mydata.y, geno=mydata.x, pos=pos) > > set.seed(seed) > myobj.mh25 <- seqhap(y=mydata.y, geno=mydata.x, pos=pos, + mh.threshold=2.5, haplo.freq.min=.01) > > set.seed(seed) > myobj.perm1K <- seqhap(y=mydata.y, geno=mydata.x, pos=pos, + sim.control=score.sim.control(min.sim=1000, max.sim=1000)) > > > > print(myobj.default) ================================================================================ Single-locus Chi-square Test ================================================================================ Regional permuted P-value based on single-locus test is 0.12253 chi.stat perm.point.p asym.point.p loc-1 1.22062 0.25411184 0.26924 loc-2 1.35462 0.23478618 0.24447 loc-3 5.20288 0.01665296 0.02255 loc-4 3.36348 0.06990132 0.06666 loc-5 3.55263 0.05078125 0.05945 loc-6 0.39263 0.50452303 0.53092 loc-7 5.54913 0.01706414 0.01849 loc-8 3.74740 0.04358553 0.05289 loc-9 0.03602 0.82339638 0.84947 loc-10 1.99552 0.16097862 0.15777 ================================================================================ Sequential Scan ================================================================================ Loci Combined in Sequential Analysis seq-loc-1 1 seq-loc-2 2 3 4 5 seq-loc-3 3 4 5 seq-loc-4 4 3 seq-loc-5 5 seq-loc-6 6 7 seq-loc-7 7 seq-loc-8 8 seq-loc-9 9 seq-loc-10 10 ================================================================================ Sequential Haplotype Test ================================================================================ Regional permuted P-value based on sequential haplotype test is 0.016859 hap.stat df perm.point.p asym.point.p seq-loc-1 1.22062 1 0.287828947 0.26924 seq-loc-2 24.16474 12 0.024671053 0.01932 seq-loc-3 19.78814 6 0.003700658 0.00302 seq-loc-4 14.95766 3 0.002055921 0.00185 seq-loc-5 3.55263 1 0.085115132 0.05945 seq-loc-6 5.45721 2 0.102179276 0.06531 seq-loc-7 5.54913 1 0.033100329 0.01849 seq-loc-8 3.74740 1 0.091488487 0.05289 seq-loc-9 0.03602 1 0.839638158 0.84947 seq-loc-10 1.99552 1 0.197574013 0.15777 ================================================================================ Sequential Sum Test ================================================================================ Regional permuted P-value based on sequential sum test is 0.0032895 sum.stat df perm.point.p asym.point.p seq-loc-1 1.22062 1 0.2878289474 0.26924 seq-loc-2 21.15354 4 0.0006167763 0.00030 seq-loc-3 18.65773 3 0.0006167763 0.00032 seq-loc-4 14.61898 2 0.0008223684 0.00067 seq-loc-5 3.55263 1 0.0892269737 0.05945 seq-loc-6 5.43824 2 0.1021792763 0.06593 seq-loc-7 5.54913 1 0.0331003289 0.01849 seq-loc-8 3.74740 1 0.0916940789 0.05289 seq-loc-9 0.03602 1 0.8396381579 0.84947 seq-loc-10 1.99552 1 0.1975740132 0.15777 > > print(myobj.mh25) ================================================================================ Single-locus Chi-square Test ================================================================================ Regional permuted P-value based on single-locus test is 0.12273 chi.stat perm.point.p asym.point.p loc-1 1.22062 0.25591237 0.26924 loc-2 1.35462 0.23400548 0.24447 loc-3 5.20288 0.01692806 0.02255 loc-4 3.36348 0.07020164 0.06666 loc-5 3.55263 0.05202888 0.05945 loc-6 0.39263 0.50883744 0.53092 loc-7 5.54913 0.01692806 0.01849 loc-8 3.74740 0.04505850 0.05289 loc-9 0.03602 0.82250436 0.84947 loc-10 1.99552 0.16131441 0.15777 ================================================================================ Sequential Scan ================================================================================ Loci Combined in Sequential Analysis seq-loc-1 1 seq-loc-2 2 3 4 5 seq-loc-3 3 4 5 seq-loc-4 4 3 6 seq-loc-5 5 seq-loc-6 6 7 4 3 seq-loc-7 7 seq-loc-8 8 seq-loc-9 9 8 seq-loc-10 10 ================================================================================ Sequential Haplotype Test ================================================================================ Regional permuted P-value based on sequential haplotype test is 0.025641 hap.stat df perm.point.p asym.point.p seq-loc-1 1.22062 1 0.315907394 0.26924 seq-loc-2 22.23624 11 0.028877272 0.02261 seq-loc-3 19.78814 6 0.002987304 0.00302 seq-loc-4 19.67615 6 0.005476724 0.00316 seq-loc-5 3.55263 1 0.093104307 0.05945 seq-loc-6 19.91621 7 0.008215086 0.00575 seq-loc-7 5.54913 1 0.038834951 0.01849 seq-loc-8 3.74740 1 0.113268608 0.05289 seq-loc-9 3.75443 2 0.273338312 0.15302 seq-loc-10 1.99552 1 0.219068957 0.15777 ================================================================================ Sequential Sum Test ================================================================================ Regional permuted P-value based on sequential sum test is 0.0039831 sum.stat df perm.point.p asym.point.p seq-loc-1 1.22062 1 0.340054767 0.26924 seq-loc-2 21.15354 4 0.000497884 0.00030 seq-loc-3 18.65773 3 0.000497884 0.00032 seq-loc-4 17.65116 3 0.000746826 0.00052 seq-loc-5 3.55263 1 0.104057755 0.05945 seq-loc-6 18.99654 4 0.001742594 0.00079 seq-loc-7 5.54913 1 0.040079661 0.01849 seq-loc-8 3.74740 1 0.117500622 0.05289 seq-loc-9 3.75246 2 0.274583022 0.15317 seq-loc-10 1.99552 1 0.220562609 0.15777 > > print(myobj.perm1K) ================================================================================ Single-locus Chi-square Test ================================================================================ Regional permuted P-value based on single-locus test is 0.118 chi.stat perm.point.p asym.point.p loc-1 1.22062 0.255 0.26924 loc-2 1.35462 0.235 0.24447 loc-3 5.20288 0.023 0.02255 loc-4 3.36348 0.076 0.06666 loc-5 3.55263 0.061 0.05945 loc-6 0.39263 0.515 0.53092 loc-7 5.54913 0.017 0.01849 loc-8 3.74740 0.055 0.05289 loc-9 0.03602 0.815 0.84947 loc-10 1.99552 0.166 0.15777 ================================================================================ Sequential Scan ================================================================================ Loci Combined in Sequential Analysis seq-loc-1 1 seq-loc-2 2 3 4 5 seq-loc-3 3 4 5 seq-loc-4 4 3 seq-loc-5 5 seq-loc-6 6 7 seq-loc-7 7 seq-loc-8 8 seq-loc-9 9 seq-loc-10 10 ================================================================================ Sequential Haplotype Test ================================================================================ Regional permuted P-value based on sequential haplotype test is 0.025 hap.stat df perm.point.p asym.point.p seq-loc-1 1.22062 1 0.285 0.26924 seq-loc-2 24.16474 12 0.023 0.01932 seq-loc-3 19.78814 6 0.005 0.00302 seq-loc-4 14.95766 3 0.002 0.00185 seq-loc-5 3.55263 1 0.090 0.05945 seq-loc-6 5.45721 2 0.104 0.06531 seq-loc-7 5.54913 1 0.039 0.01849 seq-loc-8 3.74740 1 0.104 0.05289 seq-loc-9 0.03602 1 0.830 0.84947 seq-loc-10 1.99552 1 0.195 0.15777 ================================================================================ Sequential Sum Test ================================================================================ Regional permuted P-value based on sequential sum test is 0.004 sum.stat df perm.point.p asym.point.p seq-loc-1 1.22062 1 0.285 0.26924 seq-loc-2 21.15354 4 0.000 0.00030 seq-loc-3 18.65773 3 0.000 0.00032 seq-loc-4 14.61898 2 0.002 0.00067 seq-loc-5 3.55263 1 0.095 0.05945 seq-loc-6 5.43824 2 0.104 0.06593 seq-loc-7 5.54913 1 0.039 0.01849 seq-loc-8 3.74740 1 0.104 0.05289 seq-loc-9 0.03602 1 0.830 0.84947 seq-loc-10 1.99552 1 0.195 0.15777 > > > proc.time() user system elapsed 30.448 0.252 31.330 haplo.stats/tests/expanded/test.methods.haplo.glm.Rout0000644000176200001440000003641214672566007022643 0ustar liggesusers R version 4.4.1 (2024-06-14) -- "Race for Your Life" Copyright (C) 2024 The R Foundation for Statistical Computing Platform: x86_64-pc-linux-gnu R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. Natural language support but running in an English locale R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. [Previously saved workspace restored] > > ## package: haplo.stats > ## test script: haplo.glm > ## created: 11/23/2011 > > ## settings > verbose=TRUE > require(haplo.stats) Loading required package: haplo.stats Loading required package: arsenal > Sys.setlocale("LC_COLLATE", "C") [1] "C" > Sys.getlocale('LC_COLLATE') [1] "C" > > > if(verbose) cat("setting up data...\n") setting up data... > > > # prepare the hla dataset, > # runs a lot longer, and MS alleles don't all start w/ 1, 2... > label <-c("DQB","DRB","B") > > data(hla.demo) > > y <- hla.demo$resp > y.bin <- 1*(hla.demo$resp.cat=="low") > geno <- as.matrix(hla.demo[,c(17,18,21:24)]) > geno <- setupGeno(geno, miss.val=c(0,NA)) > > # geno now has an attribute 'unique.alleles' which must be passed to > # haplo.glm as allele.lev=attributes(geno)$unique.alleles, see below > > hla.data <- data.frame(geno=geno, age=hla.demo$age, male=hla.demo$male, + y=y, y.bin=y.bin) > > seed <- c(17, 53, 1, 40, 37, 0, 62, 56, 5, 52, 12, 1) > > > if(verbose) cat("fit a binary trait\n") fit a binary trait > set.seed(seed) > fit.hla.bin <- haplo.glm(y.bin ~ male + geno, family = binomial, + na.action="na.geno.keep", data=hla.data, locus.label=label, + control = haplo.glm.control(haplo.min.count=8)) > > y.bin <- 1*(hla.demo$resp.cat=="low") > y.bin[2] <- NA > geno.hla <- as.matrix(hla.demo[,c(17,18,21:24)]) > geno.hla[2,5] <- 2 > geno.hla[3,] <- rep(NA, 6) > geno.hla <- setupGeno(geno.hla, miss.val=c(0,NA)) > > my.hla <- data.frame(geno.hla=geno.hla, age=hla.demo$age, male=hla.demo$male, + y=y, y.bin=y.bin) > > if(verbose) cat(" hla binary trait with subject that are removed\n") hla binary trait with subject that are removed > > set.seed(seed) > fit.hla.miss <- haplo.glm(y.bin ~ male + geno.hla, family = binomial, + na.action="na.geno.keep", + data=my.hla, locus.label=label, + control = haplo.glm.control(haplo.min.count=8)) > > > if(verbose) cat(" gaussian with covariates, additive\n") gaussian with covariates, additive > > set.seed(seed) > fit.hla.gaus.gender <- haplo.glm(y ~ male + geno, family = gaussian, + na.action="na.geno.keep", + data=hla.data, locus.label=label, + control = haplo.glm.control(haplo.min.count=5)) > > > if(verbose) cat("SNAP data with resp and resp with added variance\n") SNAP data with resp and resp with added variance > snapDF <- read.table("snapData.csv",header=TRUE, sep=",", stringsAsFactors=FALSE) > > geno.rec <- setupGeno(snapDF[,-c(1:9)]) > snap.data <- data.frame(resp=hla.demo$resp, respvar=hla.demo$resp*100, geno=geno.rec) > > set.seed(seed) > fit.resp.hla <- haplo.glm(resp~geno, trait.type="gaussian",data=snap.data) > > set.seed(seed) > fit.respvar.hla <- haplo.glm(respvar~geno, trait.type="gaussian",data=snap.data) > > > cat("summary function\n") summary function > > print(summary(fit.hla.bin),digits=3) Call: haplo.glm(formula = y.bin ~ male + geno, family = binomial, data = hla.data, na.action = "na.geno.keep", locus.label = label, control = haplo.glm.control(haplo.min.count = 8)) Coefficients: coef se t.stat pval (Intercept) 1.546 0.655 2.361 0.02 male -0.480 0.331 -1.452 0.15 geno.17 -0.723 0.801 -0.902 0.37 geno.34 0.364 0.680 0.536 0.59 geno.77 -0.988 0.733 -1.349 0.18 geno.78 -1.409 0.854 -1.650 0.10 geno.100 -2.591 1.128 -2.297 0.02 geno.138 -2.716 0.852 -3.186 0.00 geno.rare -1.261 0.354 -3.565 0.00 (Dispersion parameter for binomial family taken to be 1) Null deviance: 263.50 on 219 degrees of freedom Residual deviance: 233.46 on 211 degrees of freedom AIC: 251.1 Number of Fisher Scoring iterations: 61 Haplotypes: DQB DRB B hap.freq geno.17 21 7 44 0.0230 geno.34 31 4 44 0.0284 geno.77 32 4 60 0.0306 geno.78 32 4 62 0.0235 geno.100 51 1 35 0.0298 geno.138 62 2 7 0.0518 geno.rare * * * 0.7088 haplo.base 21 3 8 0.1041 > > > cat("fitted values for hlabin, hla-gaussian, hla-gaussian-hi-variance\n") fitted values for hlabin, hla-gaussian, hla-gaussian-hi-variance > > print(fitted(fit.hla.bin)[1:20],digits=3) 1 2 3 4 5 6 7 8 9 10 11 0.1673 0.1460 0.1890 0.3513 0.2736 0.5849 0.0808 0.1890 0.1383 0.0581 0.7019 12 13 14 15 16 17 18 19 20 0.2736 0.2736 0.0719 0.2736 0.0581 0.2736 0.0808 0.0516 0.1890 > > print(fitted(fit.resp.hla)[1:20],digits=3) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 2.10 2.10 1.58 1.84 1.72 1.85 1.83 1.83 2.09 2.09 1.83 2.09 1.83 1.83 1.84 2.09 17 18 19 20 1.87 1.83 1.88 1.85 > print(fitted(fit.respvar.hla)[1:20],digits=3) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 210 210 158 184 172 185 183 183 209 209 183 209 183 183 184 209 187 183 188 185 > > cat("vcov for hlabin, hla-gaussian, hla-gaussian-hi-variance\n") vcov for hlabin, hla-gaussian, hla-gaussian-hi-variance > > print(vcov(fit.hla.bin)[1:20,1:20],digits=3) (Intercept) male geno.17 geno.34 geno.77 geno.78 (Intercept) 4.29e-01 -7.29e-02 -2.37e-01 -1.80e-01 -1.83e-01 -1.83e-01 male -7.29e-02 1.09e-01 2.76e-02 -1.13e-02 -1.74e-02 1.52e-02 geno.17 -2.37e-01 2.76e-02 6.42e-01 1.08e-01 6.36e-02 1.12e-01 geno.34 -1.80e-01 -1.13e-02 1.08e-01 4.62e-01 7.42e-02 9.14e-02 geno.77 -1.83e-01 -1.74e-02 6.36e-02 7.42e-02 5.37e-01 8.95e-02 geno.78 -1.83e-01 1.52e-02 1.12e-01 9.14e-02 8.95e-02 7.30e-01 geno.100 -2.48e-01 4.86e-02 1.48e-01 1.11e-01 5.85e-02 1.14e-01 geno.138 -2.35e-01 3.14e-02 1.06e-01 6.04e-02 9.92e-02 8.99e-02 geno.rare -2.15e-01 1.20e-02 1.14e-01 9.40e-02 9.75e-02 8.48e-02 hap.17 6.51e-06 9.19e-07 -3.91e-06 -3.65e-06 -3.83e-06 -3.19e-06 hap.34 -4.06e-08 3.31e-08 1.09e-08 -1.24e-09 -2.57e-09 8.52e-10 hap.77 -4.06e-08 3.31e-08 1.09e-08 -1.24e-09 -2.57e-09 8.52e-10 hap.78 -6.82e-07 -3.28e-08 3.01e-07 2.95e-07 3.15e-07 2.24e-07 hap.100 5.14e-06 1.41e-06 6.12e-06 -3.08e-06 -4.34e-06 -2.13e-06 hap.138 1.40e-05 2.52e-06 -1.50e-05 -1.09e-05 -1.25e-05 -8.45e-06 hap.rare -4.06e-08 3.31e-08 1.09e-08 -1.24e-09 -2.57e-09 8.52e-10 hap.rare -4.06e-08 3.31e-08 1.09e-08 -1.24e-09 -2.57e-09 8.52e-10 hap.rare -4.06e-08 3.31e-08 1.09e-08 -1.24e-09 -2.57e-09 8.52e-10 hap.rare -4.06e-08 3.31e-08 1.09e-08 -1.24e-09 -2.57e-09 8.52e-10 hap.rare -8.12e-08 6.62e-08 2.19e-08 -2.48e-09 -5.14e-09 1.70e-09 geno.100 geno.138 geno.rare hap.17 hap.34 hap.77 (Intercept) -2.48e-01 -2.35e-01 -2.15e-01 6.51e-06 -4.06e-08 -4.06e-08 male 4.86e-02 3.14e-02 1.20e-02 9.19e-07 3.31e-08 3.31e-08 geno.17 1.48e-01 1.06e-01 1.14e-01 -3.91e-06 1.09e-08 1.09e-08 geno.34 1.11e-01 6.04e-02 9.40e-02 -3.65e-06 -1.24e-09 -1.24e-09 geno.77 5.85e-02 9.92e-02 9.75e-02 -3.83e-06 -2.57e-09 -2.57e-09 geno.78 1.14e-01 8.99e-02 8.48e-02 -3.19e-06 8.52e-10 8.52e-10 geno.100 1.27e+00 1.16e-01 1.14e-01 -3.69e-06 1.37e-08 1.37e-08 geno.138 1.16e-01 7.27e-01 1.16e-01 -3.79e-06 8.44e-09 8.44e-09 geno.rare 1.14e-01 1.16e-01 1.25e-01 -3.69e-06 2.65e-08 2.65e-08 hap.17 -3.69e-06 -3.79e-06 -3.69e-06 5.52e-06 -1.21e-08 -1.21e-08 hap.34 1.37e-08 8.44e-09 2.65e-08 -1.21e-08 5.15e-06 -1.17e-08 hap.77 1.37e-08 8.44e-09 2.65e-08 -1.21e-08 -1.17e-08 5.15e-06 hap.78 3.15e-07 3.46e-07 4.74e-07 -1.22e-08 -1.17e-08 -1.17e-08 hap.100 8.13e-07 -3.34e-06 -3.58e-06 -3.04e-08 -2.96e-08 -2.96e-08 hap.138 -9.20e-06 -8.24e-06 -6.49e-06 -1.89e-08 -1.93e-08 -1.93e-08 hap.rare 1.37e-08 8.44e-09 2.65e-08 -1.21e-08 -1.17e-08 -1.17e-08 hap.rare 1.37e-08 8.44e-09 2.65e-08 -1.21e-08 -1.17e-08 -1.17e-08 hap.rare 1.37e-08 8.44e-09 2.65e-08 -1.21e-08 -1.17e-08 -1.17e-08 hap.rare 1.37e-08 8.44e-09 2.65e-08 -1.21e-08 -1.17e-08 -1.17e-08 hap.rare 2.75e-08 1.69e-08 5.30e-08 -2.42e-08 -2.34e-08 -2.34e-08 hap.78 hap.100 hap.138 hap.rare hap.rare hap.rare (Intercept) -6.82e-07 5.14e-06 1.40e-05 -4.06e-08 -4.06e-08 -4.06e-08 male -3.28e-08 1.41e-06 2.52e-06 3.31e-08 3.31e-08 3.31e-08 geno.17 3.01e-07 6.12e-06 -1.50e-05 1.09e-08 1.09e-08 1.09e-08 geno.34 2.95e-07 -3.08e-06 -1.09e-05 -1.24e-09 -1.24e-09 -1.24e-09 geno.77 3.15e-07 -4.34e-06 -1.25e-05 -2.57e-09 -2.57e-09 -2.57e-09 geno.78 2.24e-07 -2.13e-06 -8.45e-06 8.52e-10 8.52e-10 8.52e-10 geno.100 3.15e-07 8.13e-07 -9.20e-06 1.37e-08 1.37e-08 1.37e-08 geno.138 3.46e-07 -3.34e-06 -8.24e-06 8.44e-09 8.44e-09 8.44e-09 geno.rare 4.74e-07 -3.58e-06 -6.49e-06 2.65e-08 2.65e-08 2.65e-08 hap.17 -1.22e-08 -3.04e-08 -1.89e-08 -1.21e-08 -1.21e-08 -1.21e-08 hap.34 -1.17e-08 -2.96e-08 -1.93e-08 -1.17e-08 -1.17e-08 -1.17e-08 hap.77 -1.17e-08 -2.96e-08 -1.93e-08 -1.17e-08 -1.17e-08 -1.17e-08 hap.78 5.19e-06 -2.97e-08 -1.93e-08 -1.17e-08 -1.17e-08 -1.17e-08 hap.100 -2.97e-08 1.53e-05 -2.29e-06 -2.96e-08 -2.96e-08 -2.96e-08 hap.138 -1.93e-08 -2.29e-06 1.17e-05 -1.93e-08 -1.93e-08 -1.93e-08 hap.rare -1.17e-08 -2.96e-08 -1.93e-08 5.15e-06 -1.17e-08 -1.17e-08 hap.rare -1.17e-08 -2.96e-08 -1.93e-08 -1.17e-08 5.15e-06 -1.17e-08 hap.rare -1.17e-08 -2.96e-08 -1.93e-08 -1.17e-08 -1.17e-08 5.15e-06 hap.rare -1.17e-08 -2.96e-08 -1.93e-08 -1.17e-08 -1.17e-08 -1.17e-08 hap.rare -2.35e-08 -5.92e-08 -3.87e-08 -2.34e-08 -2.34e-08 -2.34e-08 hap.rare hap.rare (Intercept) -4.06e-08 -8.12e-08 male 3.31e-08 6.62e-08 geno.17 1.09e-08 2.19e-08 geno.34 -1.24e-09 -2.48e-09 geno.77 -2.57e-09 -5.14e-09 geno.78 8.52e-10 1.70e-09 geno.100 1.37e-08 2.75e-08 geno.138 8.44e-09 1.69e-08 geno.rare 2.65e-08 5.30e-08 hap.17 -1.21e-08 -2.42e-08 hap.34 -1.17e-08 -2.34e-08 hap.77 -1.17e-08 -2.34e-08 hap.78 -1.17e-08 -2.35e-08 hap.100 -2.96e-08 -5.92e-08 hap.138 -1.93e-08 -3.87e-08 hap.rare -1.17e-08 -2.34e-08 hap.rare -1.17e-08 -2.34e-08 hap.rare -1.17e-08 -2.34e-08 hap.rare 5.15e-06 -2.34e-08 hap.rare -2.34e-08 1.03e-05 > > print(vcov(fit.resp.hla),digits=3) (Intercept) geno.1 geno.4 geno.6 geno.7 hap.1 (Intercept) 2.84e-02 -2.07e-02 -1.50e-02 -1.41e-02 -2.01e-02 1.05e-04 geno.1 -2.07e-02 4.04e-02 9.22e-03 5.81e-03 1.41e-02 -3.19e-05 geno.4 -1.50e-02 9.22e-03 2.34e-02 3.46e-03 8.10e-03 -9.00e-05 geno.6 -1.41e-02 5.81e-03 3.46e-03 4.65e-02 5.10e-03 3.17e-04 geno.7 -2.01e-02 1.41e-02 8.10e-03 5.10e-03 2.87e-02 -5.58e-05 hap.1 1.05e-04 -3.19e-05 -9.00e-05 3.17e-04 -5.58e-05 3.26e-04 hap.4 -2.45e-06 2.66e-05 -2.77e-05 1.35e-05 -3.90e-07 -5.37e-05 hap.6 -9.37e-05 -8.67e-06 1.17e-04 -3.83e-04 6.44e-05 -1.04e-04 hap.7 9.37e-05 8.67e-06 -1.17e-04 3.83e-04 -6.44e-05 1.29e-05 hap.4 hap.6 hap.7 (Intercept) -2.45e-06 -9.37e-05 9.37e-05 geno.1 2.66e-05 -8.67e-06 8.67e-06 geno.4 -2.77e-05 1.17e-04 -1.17e-04 geno.6 1.35e-05 -3.83e-04 3.83e-04 geno.7 -3.90e-07 6.44e-05 -6.44e-05 hap.1 -5.37e-05 -1.04e-04 1.29e-05 hap.4 3.36e-04 -4.21e-05 -8.82e-05 hap.6 -4.21e-05 2.90e-04 -1.30e-04 hap.7 -8.82e-05 -1.30e-04 4.68e-04 > print(vcov(fit.respvar.hla),digits=3) (Intercept) geno.1 geno.4 geno.6 geno.7 hap.1 (Intercept) 2.84e+02 -2.07e+02 -1.50e+02 -1.41e+02 -2.01e+02 1.05e-02 geno.1 -2.07e+02 4.04e+02 9.22e+01 5.81e+01 1.41e+02 -3.19e-03 geno.4 -1.50e+02 9.22e+01 2.34e+02 3.46e+01 8.10e+01 -9.00e-03 geno.6 -1.41e+02 5.81e+01 3.46e+01 4.65e+02 5.10e+01 3.17e-02 geno.7 -2.01e+02 1.41e+02 8.10e+01 5.10e+01 2.87e+02 -5.58e-03 hap.1 1.05e-02 -3.19e-03 -9.00e-03 3.17e-02 -5.58e-03 3.26e-04 hap.4 -2.45e-04 2.66e-03 -2.77e-03 1.35e-03 -3.90e-05 -5.37e-05 hap.6 -9.37e-03 -8.67e-04 1.17e-02 -3.83e-02 6.44e-03 -1.04e-04 hap.7 9.37e-03 8.67e-04 -1.17e-02 3.83e-02 -6.44e-03 1.29e-05 hap.4 hap.6 hap.7 (Intercept) -2.45e-04 -9.37e-03 9.37e-03 geno.1 2.66e-03 -8.67e-04 8.67e-04 geno.4 -2.77e-03 1.17e-02 -1.17e-02 geno.6 1.35e-03 -3.83e-02 3.83e-02 geno.7 -3.90e-05 6.44e-03 -6.44e-03 hap.1 -5.37e-05 -1.04e-04 1.29e-05 hap.4 3.36e-04 -4.21e-05 -8.82e-05 hap.6 -4.21e-05 2.90e-04 -1.30e-04 hap.7 -8.82e-05 -1.30e-04 4.68e-04 > > cat("residuals for hlabin, hla-gaussian, hla-gaussian-hi-variance\n") residuals for hlabin, hla-gaussian, hla-gaussian-hi-variance > > print(residuals(fit.hla.bin, type="deviance")[1:20],digits=3) 1 2 3 4 5 6 7 8 9 10 11 -0.605 -0.562 -0.647 -0.930 1.610 -1.326 -0.411 -0.647 -0.546 -0.346 -1.556 12 13 14 15 16 17 18 19 20 -0.800 -0.800 -0.386 -0.800 -0.346 -0.800 -0.411 -0.326 -0.647 > print(residuals(fit.hla.bin, type="pearson")[1:20],digits=3) 1 2 3 4 5 6 7 8 9 10 11 -0.448 -0.414 -0.483 -0.736 1.629 -1.187 -0.297 -0.483 -0.401 -0.248 -1.535 12 13 14 15 16 17 18 19 20 -0.614 -0.614 -0.278 -0.614 -0.248 -0.614 -0.297 -0.233 -0.483 > print(residuals(fit.hla.bin, type="response")[1:20],digits=3) 1 2 3 4 5 6 7 8 9 10 -0.1673 -0.1460 -0.1890 -0.3513 0.7264 -0.5849 -0.0808 -0.1890 -0.1383 -0.0581 11 12 13 14 15 16 17 18 19 20 -0.7019 -0.2736 -0.2736 -0.0719 -0.2736 -0.0581 -0.2736 -0.0808 -0.0516 -0.1890 > > print(residuals(fit.resp.hla)[1:20],digits=3) 1 2 3 4 5 6 7 8 9 10 1.5972 -0.9248 0.0778 0.1307 -0.9213 -0.6994 -0.5256 0.2524 -0.9300 -0.5340 11 12 13 14 15 16 17 18 19 20 -0.6046 0.2880 0.5964 0.3824 0.5287 0.8420 0.6858 -0.7366 0.7558 -0.1524 > print(residuals(fit.respvar.hla)[1:20],digits=3) 1 2 3 4 5 6 7 8 9 10 11 159.72 -92.48 7.78 13.07 -92.13 -69.94 -52.56 25.24 -93.00 -53.40 -60.46 12 13 14 15 16 17 18 19 20 28.80 59.64 38.24 52.87 84.20 68.58 -73.66 75.58 -15.24 > > > proc.time() user system elapsed 14.182 0.351 15.251 haplo.stats/tests/expanded/test.haplo.design.Rout.save0000644000176200001440000010276014672315243022622 0ustar liggesusers R version 4.0.2 (2020-06-22) -- "Taking Off Again" Copyright (C) 2020 The R Foundation for Statistical Computing Platform: x86_64-pc-linux-gnu (64-bit) R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > > > ## package: haplo.stats > ## test script: haplo.glm > > ## settings > verbose=TRUE > > require(haplo.stats) Loading required package: haplo.stats Loading required package: arsenal > Sys.setlocale("LC_ALL", "C") [1] "LC_CTYPE=C;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=en_US.UTF-8;LC_PAPER=en_US.UTF-8;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=en_US.UTF-8;LC_IDENTIFICATION=C" > Sys.getlocale() [1] "LC_CTYPE=C;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=en_US.UTF-8;LC_PAPER=en_US.UTF-8;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=en_US.UTF-8;LC_IDENTIFICATION=C" > > > if(verbose) cat("prepare two datasets, one with char alleles, the other 3 loci from hla data\n") prepare two datasets, one with char alleles, the other 3 loci from hla data > > # make ficticious data set with an intention of some trend in > # haplotypes having H-allele at locus-H with F-allele at locus-F > geno.char <- matrix(c('F','f','g','G','h1','h1', + 'F','F','g','G','H','h1', + 'F','f','g','G','h2','h2', + 'f','f','g','G','h2','h1', + 'F','F','g','G','H','h2', + 'f','f','G','G','h1','h2', + 'F','f','G','g','h2','h2', + 'F','F','g','G','h1','z', + 'F','f','z','z','h1','h1', + 'F','f','G','g','h1','h2', + 'F','f','G','G','h1','h2', + 'F','F','g','G','h1','z', + 'F','f','z','z','h1','h1', + 'f','f','G','g','h1','h2'), nrow=14,byrow=T) > > char.label <- c("F","G","H") > > data(hla.demo) > > hla.sub <- hla.demo[,c(1,2,3,4,17,18,21:24)] > geno.hla <- hla.sub[,-c(1:4)] > hla.label=c("DQB","DRB","HLA.B") > > seed <- c(33, 10, 39, 6, 16, 0, 40, 24, 12, 60, 7, 1) > > if(verbose) cat("character alleles, min.count=3\n") character alleles, min.count=3 > set.seed(seed) > em.char <- haplo.em(geno.char, miss.val='z',locus.label=char.label, + control = haplo.em.control()) > > char.design <- haplo.design(em.char, min.count=3) > > print(char.design) hap.2 hap.5 hap.6 hap.8 hap.9 1 5.769521e-01 0.4230479 0.0000000 0.0000000 5.769521e-01 2 4.304885e-07 0.9999996 0.0000000 0.0000000 0.000000e+00 3 0.000000e+00 0.0000000 1.0000000 1.0000000 0.000000e+00 4 0.000000e+00 0.0000000 0.0000000 1.0000000 1.000000e+00 5 0.000000e+00 0.0000000 1.0000000 0.0000000 0.000000e+00 6 0.000000e+00 0.0000000 0.0000000 1.0000000 0.000000e+00 7 0.000000e+00 0.0000000 1.0000000 1.0000000 0.000000e+00 8 7.490535e-01 0.6530647 0.3469352 0.0000000 0.000000e+00 9 4.680778e-01 0.5319222 0.0000000 0.0000000 6.078149e-01 10 1.829680e-08 0.7621169 0.2378830 0.7621169 3.847963e-08 11 1.000000e+00 0.0000000 0.0000000 1.0000000 0.000000e+00 12 7.490535e-01 0.6530647 0.3469352 0.0000000 0.000000e+00 13 4.680778e-01 0.5319222 0.0000000 0.0000000 6.078149e-01 14 0.000000e+00 0.0000000 0.0000000 1.0000000 1.000000e+00 > > if(verbose) cat("hla data, 3 loci\n") hla data, 3 loci > set.seed(seed) > em.hla3 <- haplo.em(geno.hla, locus.label=hla.label, miss.val=0, + control = haplo.em.control()) > > hla3.design <- haplo.design(em.hla3, hapcodes= c(4,99,138)) > > print(hla3.design) hap.4 hap.99 hap.138 1 0.0000000 0.00000000 0.0000000 2 0.0000000 0.00000000 0.0000000 3 0.0000000 0.00000000 0.0000000 4 0.0000000 0.00000000 0.0000000 5 0.0000000 0.00000000 0.0000000 6 1.0000000 0.00000000 0.0000000 7 0.0000000 0.00000000 0.0000000 8 0.0000000 0.00000000 0.0000000 9 0.0000000 0.00000000 0.0000000 10 0.0000000 0.00000000 0.0000000 11 0.0000000 0.00000000 0.0000000 12 0.0000000 0.00000000 0.0000000 13 0.0000000 0.00000000 0.0000000 14 0.0000000 0.00000000 0.0000000 15 0.0000000 0.00000000 0.0000000 16 0.0000000 0.00000000 0.0000000 17 0.0000000 0.00000000 0.0000000 18 0.0000000 0.00000000 0.0000000 19 0.0000000 0.00000000 0.0000000 20 0.0000000 0.00000000 0.0000000 21 0.0000000 0.00000000 0.0000000 22 1.0000000 0.00000000 0.0000000 23 1.0000000 0.00000000 0.0000000 24 0.0000000 0.00000000 0.0000000 25 0.0000000 0.00000000 0.0000000 26 0.0000000 0.00000000 0.0000000 27 0.0000000 0.00000000 0.0000000 28 0.0000000 0.00000000 0.0000000 29 1.0000000 0.00000000 0.0000000 30 0.0000000 0.00000000 0.0000000 31 0.0000000 0.00000000 0.0000000 32 0.0000000 0.00000000 0.0000000 33 0.0000000 0.00000000 0.9423971 34 1.0000000 0.00000000 0.0000000 35 0.0000000 0.00000000 0.0000000 36 0.0000000 0.00000000 0.0000000 37 0.0000000 0.00000000 0.0000000 38 0.0000000 0.00000000 0.0000000 39 0.0000000 0.00000000 0.0000000 40 0.0000000 0.00000000 0.0000000 41 0.0000000 0.00000000 0.0000000 42 0.0000000 0.00000000 0.0000000 43 2.0000000 0.00000000 0.0000000 44 0.0000000 0.00000000 0.0000000 45 0.0000000 0.00000000 0.0000000 46 0.0000000 0.00000000 0.8293544 47 2.0000000 0.00000000 0.0000000 48 1.0000000 0.00000000 0.0000000 49 0.9935319 0.00000000 0.9935319 50 0.0000000 0.00000000 0.0000000 51 0.0000000 0.00000000 0.0000000 52 1.0000000 0.00000000 0.0000000 53 0.0000000 0.00000000 0.0000000 54 0.0000000 0.00000000 0.0000000 55 0.0000000 0.00000000 0.0000000 56 1.0000000 0.00000000 0.0000000 57 0.0000000 0.00000000 1.0000000 58 0.0000000 0.00000000 0.0000000 59 0.0000000 0.00000000 0.0000000 60 1.0000000 0.00000000 0.0000000 61 0.0000000 0.00000000 0.0000000 62 0.0000000 0.00000000 0.0000000 63 0.0000000 0.00000000 0.0000000 64 1.0000000 0.00000000 0.0000000 65 0.0000000 0.00000000 0.0000000 66 0.0000000 0.00000000 0.0000000 67 1.0000000 0.00000000 0.0000000 68 1.0000000 0.00000000 0.0000000 69 0.0000000 0.00000000 0.0000000 70 0.0000000 0.00000000 0.0000000 71 0.0000000 0.00000000 0.0000000 72 0.0000000 0.00000000 1.0000000 73 0.0000000 0.00000000 0.0000000 74 0.0000000 0.00000000 0.0000000 75 0.0000000 0.00000000 0.0000000 76 1.0000000 0.00000000 0.0000000 77 0.0000000 0.00000000 0.0000000 78 0.0000000 0.00000000 0.0000000 79 1.0000000 0.00000000 0.0000000 80 1.0000000 0.00000000 0.0000000 81 0.0000000 0.02564103 0.0000000 82 0.0000000 0.00000000 0.0000000 83 0.0000000 0.00000000 0.0000000 84 0.0000000 0.00000000 0.0000000 85 1.0000000 0.00000000 0.0000000 86 0.0000000 0.00000000 0.0000000 87 0.0000000 0.00000000 0.0000000 88 0.0000000 0.00000000 0.0000000 89 0.0000000 0.00000000 0.0000000 90 0.0000000 0.00000000 0.0000000 91 1.0000000 0.00000000 0.0000000 92 1.0000000 0.00000000 0.0000000 93 0.0000000 0.00000000 0.0000000 94 1.0000000 0.00000000 0.0000000 95 1.0000000 0.00000000 0.0000000 96 0.0000000 0.00000000 0.0000000 97 0.0000000 0.00000000 0.0000000 98 1.0000000 0.00000000 0.0000000 99 0.0000000 0.00000000 0.0000000 100 0.0000000 0.00000000 0.0000000 101 0.0000000 0.00000000 0.0000000 102 0.0000000 0.00000000 0.0000000 103 0.0000000 0.00000000 0.0000000 104 0.0000000 0.00000000 0.0000000 105 0.0000000 0.00000000 0.0000000 106 1.0000000 0.00000000 0.0000000 107 0.0000000 0.00000000 0.0000000 108 0.0000000 0.00000000 0.0000000 109 0.0000000 0.00000000 0.0000000 110 1.0000000 0.00000000 0.0000000 111 0.0000000 0.00000000 0.0000000 112 0.0000000 0.00000000 0.0000000 113 0.0000000 1.00000000 0.0000000 114 0.0000000 0.00000000 0.0000000 115 0.0000000 0.00000000 0.0000000 116 0.0000000 0.00000000 0.0000000 117 0.0000000 0.00000000 0.0000000 118 0.0000000 0.00000000 0.0000000 119 0.0000000 0.00000000 0.0000000 120 0.0000000 0.00000000 0.0000000 121 1.0000000 0.00000000 0.0000000 122 0.0000000 0.00000000 0.0000000 123 0.0000000 0.00000000 1.0000000 124 0.0000000 0.00000000 0.0000000 125 0.0000000 0.00000000 0.0000000 126 0.0000000 0.00000000 0.0000000 127 0.0000000 0.00000000 0.0000000 128 1.0000000 0.00000000 0.0000000 129 0.9771839 0.00000000 0.0000000 130 0.0000000 0.00000000 0.0000000 131 1.0000000 0.00000000 0.0000000 132 0.0000000 0.00000000 0.0000000 133 1.0000000 0.00000000 0.0000000 134 0.0000000 0.00000000 0.0000000 135 0.0000000 0.00000000 0.0000000 136 0.0000000 0.00000000 0.0000000 137 0.0000000 0.00000000 0.0000000 138 0.0000000 0.00000000 0.0000000 139 0.0000000 0.00000000 0.0000000 140 0.9532764 0.00000000 0.0000000 141 1.0000000 0.00000000 0.0000000 142 0.0000000 0.00000000 0.0000000 143 1.0000000 0.00000000 0.0000000 144 0.0000000 0.00000000 0.0000000 145 0.0000000 0.00000000 0.0000000 146 0.0000000 0.00000000 0.0000000 147 0.0000000 0.00000000 0.0000000 148 0.0000000 0.00000000 0.0000000 149 1.0000000 0.00000000 0.0000000 150 0.0000000 0.00000000 0.0000000 151 0.0000000 0.00000000 0.0000000 152 0.0000000 0.00000000 0.0000000 153 0.0000000 0.00000000 0.0000000 154 0.0000000 0.00000000 0.0000000 155 0.0000000 0.00000000 0.0000000 156 0.0000000 0.00000000 0.0000000 157 0.0000000 0.00000000 0.0000000 158 0.0000000 0.00000000 0.0000000 159 0.0000000 0.00000000 0.0000000 160 0.0000000 0.00000000 0.0000000 161 0.0000000 0.00000000 0.0000000 162 0.0000000 0.00000000 0.0000000 163 0.0000000 0.00000000 0.0000000 164 0.0000000 0.00000000 0.0000000 165 0.0000000 0.00000000 0.0000000 166 0.0000000 0.00000000 0.0000000 167 0.0000000 0.00000000 0.0000000 168 0.0000000 0.00000000 0.0000000 169 0.0000000 0.00000000 0.0000000 170 0.9916455 0.00000000 0.0000000 171 0.0000000 0.00000000 0.0000000 172 0.0000000 0.00000000 0.0000000 173 0.0000000 0.00000000 0.0000000 174 0.0000000 0.00000000 0.0000000 175 0.0000000 0.00000000 1.0000000 176 1.0000000 0.00000000 0.0000000 177 0.0000000 0.00000000 0.0000000 178 0.0000000 0.00000000 0.0000000 179 0.0000000 0.00000000 0.0000000 180 0.0000000 0.00000000 0.0000000 181 0.0000000 0.00000000 0.0000000 182 0.0000000 0.00000000 0.0000000 183 0.0000000 0.00000000 0.0000000 184 1.0000000 0.00000000 0.0000000 185 0.0000000 0.00000000 0.0000000 186 0.0000000 0.00000000 0.0000000 187 0.0000000 0.00000000 0.0000000 188 0.0000000 0.00000000 0.0000000 189 0.0000000 0.00000000 0.0000000 190 0.0000000 0.00000000 0.0000000 191 0.0000000 0.00000000 0.0000000 192 0.9359736 0.00000000 0.0000000 193 1.0000000 0.00000000 0.0000000 194 0.0000000 0.00000000 0.0000000 195 0.0000000 0.00000000 0.0000000 196 0.0000000 0.00000000 0.0000000 197 0.0000000 0.00000000 0.0000000 198 0.0000000 0.00000000 0.0000000 199 0.0000000 0.00000000 0.0000000 200 0.0000000 0.00000000 0.0000000 201 0.0000000 0.00000000 0.0000000 202 0.0000000 0.00000000 0.0000000 203 0.0000000 0.00000000 0.0000000 204 0.0000000 0.00000000 0.0000000 205 0.0000000 0.00000000 0.0000000 206 0.0000000 0.00000000 0.0000000 207 0.0000000 0.00000000 0.0000000 208 0.0000000 0.00000000 0.0000000 209 0.0000000 0.00000000 0.0000000 210 0.0000000 0.00000000 0.0000000 211 1.0000000 0.00000000 0.0000000 212 0.0000000 0.00000000 0.0000000 213 0.0000000 0.00000000 0.0000000 214 0.0000000 0.00000000 0.0000000 215 1.0000000 0.00000000 0.0000000 216 0.0000000 0.00000000 0.0000000 217 0.0000000 0.00000000 0.0000000 218 1.0000000 0.00000000 0.0000000 219 1.0000000 0.00000000 0.0000000 220 0.0000000 0.00000000 0.0000000 > > if(verbose) cat("snap SNP data, options of recessive, dominant, haplo.base=2\n") snap SNP data, options of recessive, dominant, haplo.base=2 > snapDF <- read.table("snapData.csv",header=TRUE, sep=",", stringsAsFactors=FALSE) > > geno.snap <- setupGeno(geno=snapDF[,-c(1:7)]) > set.seed(seed) > em.snap <- haplo.em(geno=geno.snap) > > snap.design.rec <- haplo.design(em.snap, haplo.effect="recessive", min.count=4) > > snap.design.dom.base2 <- haplo.design(em.snap, haplo.base=2, haplo.effect="dominant", min.count=6) > > > print(snap.design.rec) hap.1 hap.2 hap.3 hap.7 1 0 0 0.0000000 0 2 0 0 0.0000000 0 3 0 0 0.0000000 0 4 0 0 0.0000000 0 5 0 0 0.0000000 0 6 0 0 0.0000000 0 7 0 0 0.0000000 0 8 0 0 0.0000000 0 9 0 0 0.0000000 0 10 0 0 0.0000000 0 11 0 0 0.0000000 0 12 0 0 0.0000000 1 13 0 0 0.0000000 0 14 0 0 0.0000000 0 15 0 0 0.0000000 0 16 0 0 0.0000000 0 17 0 0 0.0000000 0 18 0 0 0.0000000 0 19 0 0 0.0000000 0 20 0 0 0.0000000 0 21 0 0 0.0000000 0 22 0 0 0.0000000 0 23 0 0 0.0000000 0 24 0 0 0.0000000 0 25 0 0 0.0000000 0 26 0 0 0.0000000 0 27 0 0 0.0000000 0 28 0 0 1.0000000 0 29 0 0 0.0000000 0 30 0 0 0.0000000 0 31 0 0 0.0000000 0 32 0 0 0.0000000 0 33 0 0 0.0000000 0 34 0 0 0.0000000 0 35 0 0 0.0000000 0 36 0 0 0.0000000 0 37 0 0 0.0000000 0 38 0 0 0.0000000 0 39 0 0 0.0000000 0 40 0 0 0.0000000 0 41 0 1 0.0000000 0 42 0 0 0.0000000 0 43 0 0 0.0000000 0 44 0 0 0.0000000 0 45 0 0 0.0000000 0 46 0 0 1.0000000 0 47 0 0 0.0000000 0 48 0 0 0.0000000 0 49 0 0 0.0000000 0 50 0 0 0.0000000 0 51 0 0 0.0000000 0 52 0 0 0.0000000 0 53 0 0 0.0000000 0 54 0 0 0.0000000 0 55 0 0 0.0000000 0 56 0 0 0.0000000 0 57 0 0 0.0000000 0 58 1 0 0.0000000 0 59 0 0 0.0000000 0 60 0 0 0.0000000 0 61 0 0 0.0000000 0 62 0 0 0.0000000 0 63 0 0 0.0000000 0 64 1 0 0.0000000 0 65 0 0 0.0000000 0 66 0 0 0.0000000 0 67 0 0 0.0000000 0 68 0 0 0.0000000 0 69 0 0 0.4209466 0 70 0 0 0.0000000 0 71 0 0 0.0000000 0 72 0 1 0.0000000 0 73 0 0 0.0000000 0 74 0 0 0.0000000 0 75 0 0 0.0000000 0 76 0 0 0.0000000 0 77 0 0 0.0000000 0 78 0 0 0.0000000 0 79 0 0 0.0000000 0 80 0 0 0.0000000 0 81 0 0 0.0000000 0 82 0 0 0.0000000 0 83 0 0 0.0000000 0 84 0 1 0.0000000 0 85 0 0 0.0000000 0 86 0 0 0.0000000 0 87 0 1 0.0000000 0 88 0 0 0.0000000 0 89 0 0 0.0000000 0 90 0 0 0.0000000 0 91 0 0 0.0000000 0 92 0 0 0.0000000 0 93 0 0 0.0000000 0 94 0 0 0.0000000 0 95 0 0 1.0000000 0 96 0 1 0.0000000 0 97 0 0 0.0000000 0 98 0 1 0.0000000 0 99 0 0 0.0000000 0 100 0 0 0.0000000 0 101 0 0 1.0000000 0 102 0 0 0.0000000 0 103 0 0 0.0000000 0 104 0 0 0.0000000 0 105 0 0 0.0000000 0 106 0 0 0.0000000 0 107 0 0 0.0000000 0 108 0 0 0.0000000 0 109 0 0 0.0000000 0 110 0 0 0.0000000 0 111 0 0 0.0000000 0 112 0 0 0.0000000 0 113 0 0 0.0000000 0 114 0 0 0.0000000 0 115 0 1 0.0000000 0 116 0 0 0.0000000 0 117 0 1 0.0000000 0 118 0 0 0.0000000 0 119 0 0 0.0000000 0 120 0 0 0.0000000 0 121 0 0 0.0000000 0 122 0 0 0.0000000 0 123 0 0 0.0000000 0 124 0 1 0.0000000 0 125 0 0 0.0000000 0 126 0 0 0.0000000 0 127 0 0 0.0000000 0 128 0 0 0.0000000 0 129 0 0 0.0000000 0 130 0 0 0.0000000 0 131 0 0 0.0000000 1 132 0 0 0.0000000 0 133 0 0 0.0000000 1 134 0 0 0.0000000 0 135 0 0 0.0000000 0 136 0 0 0.0000000 0 137 1 0 0.0000000 0 138 0 0 0.0000000 0 139 0 0 0.0000000 0 140 0 0 0.0000000 0 141 0 0 0.0000000 0 142 0 0 0.0000000 0 143 0 0 0.0000000 0 144 0 0 0.0000000 0 145 0 0 1.0000000 0 146 0 0 0.0000000 0 147 0 0 0.0000000 0 148 0 0 0.0000000 0 149 0 0 0.0000000 0 150 0 0 0.0000000 0 151 0 0 0.0000000 0 152 0 0 0.0000000 0 153 0 0 0.0000000 0 154 0 0 0.0000000 0 155 0 0 0.0000000 0 156 0 1 0.0000000 0 157 0 0 0.0000000 0 158 0 0 0.0000000 0 159 0 0 1.0000000 0 160 0 0 0.0000000 0 161 0 0 0.0000000 0 162 0 0 0.0000000 0 163 0 0 0.0000000 0 164 0 0 0.0000000 0 165 0 0 0.0000000 0 166 1 0 0.0000000 0 167 0 0 1.0000000 0 168 0 0 0.0000000 0 169 0 0 0.0000000 0 170 0 0 0.0000000 0 171 0 0 0.0000000 0 172 0 0 0.0000000 0 173 0 0 0.0000000 0 174 0 0 0.0000000 0 175 0 0 0.0000000 0 176 0 0 0.0000000 0 177 0 0 0.0000000 0 178 0 0 0.0000000 0 179 0 0 0.0000000 0 180 0 0 0.0000000 0 181 0 0 0.0000000 0 182 0 0 0.0000000 0 183 0 0 0.0000000 0 184 0 0 0.0000000 0 185 0 0 0.0000000 0 186 0 0 0.0000000 0 187 0 0 0.0000000 0 188 0 0 1.0000000 0 189 0 0 0.0000000 0 190 0 0 0.0000000 0 191 0 0 0.0000000 0 192 0 0 0.0000000 0 193 0 0 0.0000000 0 194 0 0 0.0000000 0 195 0 0 0.0000000 0 196 0 0 0.0000000 0 197 0 0 0.0000000 0 198 0 0 0.0000000 0 199 0 0 0.0000000 0 200 0 0 0.0000000 0 201 0 0 0.0000000 0 202 0 0 0.0000000 0 203 0 0 0.0000000 0 204 0 0 0.0000000 0 205 0 0 0.0000000 0 206 0 0 0.0000000 0 207 0 0 0.0000000 0 208 0 0 0.0000000 0 209 0 0 0.0000000 0 210 0 0 0.0000000 0 211 0 0 0.0000000 0 212 0 0 0.0000000 0 213 0 0 0.0000000 0 214 0 0 0.0000000 1 215 0 0 0.0000000 0 216 0 0 0.0000000 0 217 0 0 0.0000000 0 218 0 0 0.0000000 0 219 0 0 0.0000000 0 220 0 0 0.0000000 0 > print(snap.design.dom.base2) hap.1 hap.3 hap.4 hap.5 hap.7 hap.9 1 0.0000000 1.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 2 0.0000000 1.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 3 0.0000000 0.0000000 0.0000000 1.000000e+00 0.0000000 0.0000000 4 0.0000000 0.0000000 1.0000000 1.000000e+00 0.0000000 0.0000000 5 0.3981176 0.0000000 0.6018824 3.981176e-01 0.0000000 0.0000000 6 0.0000000 1.0000000 0.0000000 1.000000e+00 0.0000000 0.0000000 7 0.0000000 0.0000000 0.0000000 4.829438e-01 0.4829438 0.5170562 8 0.0000000 0.0000000 0.0000000 1.000000e+00 0.0000000 0.0000000 9 0.0000000 0.0000000 0.0000000 0.000000e+00 1.0000000 0.0000000 10 0.0000000 0.0000000 0.0000000 0.000000e+00 1.0000000 0.0000000 11 0.0000000 0.0000000 0.0000000 4.829438e-01 0.4829438 0.5170562 12 0.0000000 0.0000000 0.0000000 0.000000e+00 1.0000000 0.0000000 13 0.0000000 0.0000000 0.0000000 4.829438e-01 0.4829438 0.5170562 14 0.0000000 0.0000000 0.0000000 4.829438e-01 0.4829438 0.5170562 15 0.0000000 0.0000000 1.0000000 1.000000e+00 0.0000000 0.0000000 16 0.0000000 0.0000000 0.0000000 0.000000e+00 1.0000000 0.0000000 17 0.4145800 0.0000000 0.5854199 4.091658e-08 0.5854199 0.4145800 18 0.0000000 0.0000000 0.0000000 0.000000e+00 1.0000000 1.0000000 19 0.4145800 0.0000000 0.5854199 4.091658e-08 0.5854199 0.4145800 20 0.0000000 1.0000000 0.0000000 1.000000e+00 0.0000000 0.0000000 21 0.0000000 0.0000000 0.0000000 0.000000e+00 1.0000000 1.0000000 22 0.0000000 1.0000000 1.0000000 0.000000e+00 0.0000000 0.0000000 23 0.0000000 0.0000000 0.0000000 0.000000e+00 0.0000000 1.0000000 24 0.0000000 1.0000000 1.0000000 0.000000e+00 0.0000000 0.0000000 25 1.0000000 1.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 26 0.0000000 1.0000000 0.0000000 1.000000e+00 0.0000000 0.0000000 27 0.0000000 0.0000000 0.0000000 0.000000e+00 1.0000000 0.0000000 28 0.0000000 1.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 29 0.3981176 0.0000000 0.6018824 3.981176e-01 0.0000000 0.0000000 30 1.0000000 0.0000000 1.0000000 0.000000e+00 0.0000000 0.0000000 31 0.4145800 0.0000000 0.5854199 4.091658e-08 0.5854199 0.4145800 32 0.3981176 0.0000000 0.6018824 3.981176e-01 0.0000000 0.0000000 33 1.0000000 0.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 34 0.3981176 0.0000000 0.6018824 3.981176e-01 0.0000000 0.0000000 35 0.3981176 0.0000000 0.6018824 3.981176e-01 0.0000000 0.0000000 36 0.9999999 0.0000000 0.0000000 0.000000e+00 0.9999999 0.0000000 37 0.0000000 1.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 38 0.3981176 0.0000000 0.6018824 3.981176e-01 0.0000000 0.0000000 39 0.0000000 0.0000000 0.0000000 0.000000e+00 1.0000000 1.0000000 40 1.0000000 1.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 41 0.0000000 0.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 42 0.0000000 0.0000000 0.0000000 1.000000e+00 0.0000000 0.0000000 43 0.3981176 0.0000000 0.6018824 3.981176e-01 0.0000000 0.0000000 44 0.0000000 0.0000000 0.0000000 1.000000e+00 0.0000000 1.0000000 45 0.0000000 0.0000000 0.0000000 4.829438e-01 0.4829438 0.5170562 46 0.0000000 1.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 47 0.0000000 0.0000000 0.0000000 1.000000e+00 0.0000000 0.0000000 48 0.0000000 1.0000000 0.0000000 0.000000e+00 1.0000000 0.0000000 49 0.3981176 0.0000000 0.6018824 3.981176e-01 0.0000000 0.0000000 50 0.0000000 0.0000000 0.0000000 4.829438e-01 0.4829438 0.5170562 51 1.0000000 0.0000000 1.0000000 0.000000e+00 0.0000000 0.0000000 52 0.0000000 0.0000000 0.0000000 0.000000e+00 1.0000000 0.0000000 53 0.0000000 1.0000000 1.0000000 0.000000e+00 0.0000000 0.0000000 54 0.0000000 1.0000000 0.0000000 1.000000e+00 0.0000000 0.0000000 55 1.0000000 0.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 56 0.0000000 0.0000000 1.0000000 1.000000e+00 0.0000000 0.0000000 57 0.0000000 0.0000000 0.0000000 1.000000e+00 0.0000000 0.0000000 58 1.0000000 0.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 59 0.0000000 0.0000000 0.0000000 4.829438e-01 0.4829438 0.5170562 60 0.0000000 0.0000000 0.0000000 4.829438e-01 0.4829438 0.5170562 61 0.0000000 0.0000000 0.0000000 1.000000e+00 0.0000000 0.0000000 62 0.0000000 1.0000000 0.0000000 0.000000e+00 1.0000000 0.0000000 63 1.0000000 0.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 64 1.0000000 0.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 65 1.0000000 0.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 66 0.0000000 0.0000000 0.4511119 5.488881e-01 0.0000000 1.0000000 67 0.0000000 0.0000000 0.0000000 0.000000e+00 1.0000000 0.0000000 68 0.0000000 1.0000000 0.0000000 0.000000e+00 1.0000000 0.0000000 69 0.5790534 1.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 70 0.9999999 0.0000000 0.0000000 0.000000e+00 0.9999999 0.0000000 71 0.0000000 1.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 72 0.0000000 0.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 73 1.0000000 0.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 74 0.0000000 0.0000000 0.0000000 1.000000e+00 0.0000000 0.0000000 75 0.0000000 1.0000000 0.0000000 0.000000e+00 0.0000000 1.0000000 76 0.0000000 0.0000000 0.0000000 4.829438e-01 0.4829438 0.5170562 77 1.0000000 1.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 78 0.0000000 1.0000000 1.0000000 0.000000e+00 0.0000000 0.0000000 79 0.0000000 0.0000000 0.0000000 0.000000e+00 1.0000000 1.0000000 80 0.0000000 1.0000000 1.0000000 0.000000e+00 0.0000000 0.0000000 81 0.0000000 0.0000000 0.0000000 1.000000e+00 0.0000000 0.0000000 82 0.2586658 0.3760775 0.3652566 2.552877e-08 0.3652566 0.6347433 83 0.0000000 0.0000000 0.0000000 0.000000e+00 1.0000000 0.0000000 84 0.0000000 0.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 85 0.0000000 0.0000000 0.0000000 0.000000e+00 1.0000000 0.0000000 86 0.0000000 0.0000000 0.0000000 0.000000e+00 1.0000000 0.0000000 87 0.0000000 0.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 88 0.0000000 0.0000000 0.0000000 1.000000e+00 0.0000000 0.0000000 89 0.0000000 0.0000000 0.0000000 0.000000e+00 1.0000000 0.0000000 90 0.0000000 1.0000000 0.0000000 0.000000e+00 1.0000000 0.0000000 91 0.0000000 1.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 92 0.3521747 0.0000000 0.0000000 0.000000e+00 1.0000000 0.0000000 93 0.0000000 1.0000000 1.0000000 0.000000e+00 0.0000000 0.0000000 94 0.0000000 0.0000000 0.0000000 4.829438e-01 0.4829438 0.5170562 95 0.0000000 1.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 96 0.0000000 0.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 97 0.9999999 0.0000000 0.0000000 0.000000e+00 0.9999999 0.0000000 98 0.0000000 0.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 99 0.0000000 0.0000000 0.0000000 1.000000e+00 0.0000000 0.0000000 100 0.0000000 0.0000000 1.0000000 0.000000e+00 0.0000000 0.0000000 101 0.0000000 1.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 102 0.0000000 0.0000000 0.0000000 1.000000e+00 0.0000000 0.0000000 103 0.0000000 1.0000000 0.0000000 1.000000e+00 0.0000000 0.0000000 104 0.0000000 1.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 105 1.0000000 0.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 106 0.0000000 1.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 107 0.4145800 0.0000000 0.5854199 4.091658e-08 0.5854199 0.4145800 108 0.0000000 1.0000000 0.0000000 0.000000e+00 0.0000000 1.0000000 109 0.0000000 1.0000000 0.0000000 0.000000e+00 1.0000000 0.0000000 110 1.0000000 1.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 111 0.0000000 0.0000000 0.0000000 4.829438e-01 0.4829438 0.5170562 112 0.9999999 0.0000000 0.0000000 0.000000e+00 0.9999999 0.0000000 113 0.0000000 1.0000000 1.0000000 0.000000e+00 0.0000000 0.0000000 114 0.0000000 1.0000000 0.0000000 1.000000e+00 0.0000000 0.0000000 115 0.0000000 0.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 116 0.0000000 1.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 117 0.0000000 0.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 118 0.0000000 0.0000000 0.0000000 0.000000e+00 1.0000000 0.0000000 119 0.0000000 0.0000000 0.0000000 0.000000e+00 1.0000000 1.0000000 120 0.4145800 0.0000000 0.5854199 4.091658e-08 0.5854199 0.4145800 121 0.0000000 1.0000000 0.0000000 1.000000e+00 0.0000000 0.0000000 122 0.0000000 0.0000000 0.0000000 4.829438e-01 0.4829438 0.5170562 123 0.4145800 0.0000000 0.5854199 4.091658e-08 0.5854199 0.4145800 124 0.0000000 0.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 125 0.4145800 0.0000000 0.5854199 4.091658e-08 0.5854199 0.4145800 126 0.3981176 0.0000000 0.6018824 3.981176e-01 0.0000000 0.0000000 127 0.0000000 0.0000000 1.0000000 1.000000e+00 0.0000000 0.0000000 128 1.0000000 0.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 129 0.0000000 0.0000000 0.0000000 4.829438e-01 0.4829438 0.5170562 130 1.0000000 0.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 131 0.0000000 0.0000000 0.0000000 0.000000e+00 1.0000000 0.0000000 132 0.0000000 1.0000000 0.0000000 0.000000e+00 1.0000000 0.0000000 133 0.0000000 0.0000000 0.0000000 0.000000e+00 1.0000000 0.0000000 134 0.0000000 1.0000000 0.0000000 0.000000e+00 0.0000000 1.0000000 135 0.3981176 0.0000000 0.6018824 3.981176e-01 0.0000000 0.0000000 136 0.0000000 0.0000000 0.0000000 4.829438e-01 0.4829438 0.5170562 137 1.0000000 0.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 138 0.0000000 0.0000000 0.0000000 1.000000e+00 0.0000000 0.0000000 139 0.0000000 0.0000000 0.0000000 1.000000e+00 0.0000000 0.0000000 140 0.0000000 0.0000000 0.0000000 0.000000e+00 1.0000000 0.0000000 141 0.0000000 0.0000000 0.0000000 0.000000e+00 1.0000000 0.0000000 142 0.0000000 0.0000000 0.0000000 1.000000e+00 0.0000000 0.0000000 143 1.0000000 1.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 144 0.0000000 1.0000000 1.0000000 0.000000e+00 0.0000000 0.0000000 145 0.0000000 1.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 146 0.0000000 0.0000000 0.0000000 4.829438e-01 0.4829438 0.5170562 147 0.4145800 0.0000000 0.5854199 4.091658e-08 0.5854199 0.4145800 148 0.0000000 0.0000000 0.0000000 0.000000e+00 1.0000000 0.0000000 149 1.0000000 0.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 150 0.3981176 0.0000000 0.6018824 3.981176e-01 0.0000000 0.0000000 151 1.0000000 1.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 152 0.0000000 0.0000000 0.0000000 0.000000e+00 1.0000000 1.0000000 153 0.0000000 0.0000000 1.0000000 1.000000e+00 0.0000000 0.0000000 154 0.0000000 1.0000000 1.0000000 0.000000e+00 0.0000000 0.0000000 155 0.3981176 0.0000000 0.6018824 3.981176e-01 0.0000000 0.0000000 156 0.0000000 0.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 157 0.0000000 1.0000000 0.0000000 1.000000e+00 0.0000000 0.0000000 158 0.4075124 0.5924876 0.0000000 0.000000e+00 0.0000000 0.0000000 159 0.0000000 1.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 160 0.3981176 0.0000000 0.6018824 3.981176e-01 0.0000000 0.0000000 161 0.4145800 0.0000000 0.5854199 4.091658e-08 0.5854199 0.4145800 162 0.9999999 0.0000000 0.0000000 0.000000e+00 0.9999999 0.0000000 163 0.3981176 0.0000000 0.6018824 3.981176e-01 0.0000000 0.0000000 164 0.3981176 0.0000000 0.6018824 3.981176e-01 0.0000000 0.0000000 165 0.0000000 1.0000000 0.0000000 0.000000e+00 0.0000000 1.0000000 166 1.0000000 0.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 167 0.0000000 1.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 168 0.0000000 1.0000000 1.0000000 0.000000e+00 0.0000000 0.0000000 169 0.0000000 0.0000000 1.0000000 2.003545e-09 0.0000000 1.0000000 170 0.4145800 0.0000000 0.5854199 4.091658e-08 0.5854199 0.4145800 171 0.9999999 0.0000000 0.0000000 0.000000e+00 0.9999999 0.0000000 172 0.0000000 0.0000000 0.0000000 0.000000e+00 1.0000000 0.0000000 173 0.0000000 0.0000000 0.0000000 1.000000e+00 0.0000000 0.0000000 174 0.0000000 1.0000000 0.0000000 0.000000e+00 0.0000000 1.0000000 175 0.3981176 0.0000000 0.6018824 3.981176e-01 0.0000000 0.0000000 176 1.0000000 1.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 177 0.0000000 1.0000000 0.0000000 1.000000e+00 0.0000000 0.0000000 178 1.0000000 0.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 179 0.0000000 1.0000000 0.0000000 0.000000e+00 0.0000000 1.0000000 180 0.9999999 0.0000000 0.0000000 0.000000e+00 0.9999999 0.0000000 181 0.0000000 0.0000000 0.0000000 0.000000e+00 1.0000000 0.0000000 182 0.0000000 0.0000000 0.0000000 4.829438e-01 0.4829438 0.5170562 183 1.0000000 0.0000000 0.0000000 0.000000e+00 0.4014342 0.0000000 184 1.0000000 0.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 185 0.0000000 0.0000000 0.0000000 0.000000e+00 1.0000000 1.0000000 186 0.3981176 0.0000000 0.6018824 3.981176e-01 0.0000000 0.0000000 187 0.3981176 0.0000000 0.6018824 3.981176e-01 0.0000000 0.0000000 188 0.0000000 1.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 189 0.0000000 0.0000000 0.0000000 0.000000e+00 1.0000000 1.0000000 190 0.0000000 1.0000000 1.0000000 0.000000e+00 0.0000000 0.0000000 191 0.0000000 0.0000000 0.0000000 0.000000e+00 1.0000000 0.0000000 192 0.9999999 0.0000000 0.0000000 0.000000e+00 0.9999999 0.0000000 193 0.0000000 1.0000000 0.0000000 1.000000e+00 0.0000000 0.0000000 194 0.0000000 0.0000000 0.0000000 4.829438e-01 0.4829438 0.5170562 195 0.0000000 0.0000000 0.0000000 3.585944e-01 0.6160766 0.6414056 196 0.0000000 1.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 197 0.3981176 0.0000000 0.6018824 3.981176e-01 0.0000000 0.0000000 198 0.9999999 0.0000000 0.0000000 0.000000e+00 0.9999999 0.0000000 199 0.3981176 0.0000000 0.6018824 3.981176e-01 0.0000000 0.0000000 200 0.0000000 1.0000000 1.0000000 0.000000e+00 0.0000000 0.0000000 201 0.0000000 1.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 202 0.0000000 1.0000000 0.0000000 1.000000e+00 0.0000000 0.0000000 203 0.0000000 1.0000000 0.0000000 0.000000e+00 0.0000000 1.0000000 204 0.0000000 1.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 205 0.0000000 0.0000000 0.0000000 0.000000e+00 1.0000000 0.0000000 206 0.0000000 1.0000000 0.0000000 1.000000e+00 0.0000000 0.0000000 207 0.0000000 1.0000000 0.0000000 0.000000e+00 0.0000000 1.0000000 208 0.4145800 0.0000000 0.5854199 4.091658e-08 0.5854199 0.4145800 209 0.0000000 1.0000000 1.0000000 0.000000e+00 0.0000000 0.0000000 210 0.0000000 0.0000000 0.0000000 0.000000e+00 0.0000000 1.0000000 211 0.0000000 0.0000000 1.0000000 2.003545e-09 0.0000000 1.0000000 212 0.0000000 0.0000000 1.0000000 1.000000e+00 0.0000000 0.0000000 213 0.0000000 1.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 214 0.0000000 0.0000000 0.0000000 0.000000e+00 1.0000000 0.0000000 215 0.0000000 0.0000000 0.4511119 5.488881e-01 0.0000000 1.0000000 216 0.0000000 1.0000000 0.0000000 1.000000e+00 0.0000000 0.0000000 217 0.3981176 0.0000000 0.6018824 3.981176e-01 0.0000000 0.0000000 218 0.3981176 0.0000000 0.6018824 3.981176e-01 0.0000000 0.0000000 219 0.0000000 0.0000000 0.0000000 4.829438e-01 0.4829438 0.5170562 220 1.0000000 1.0000000 0.0000000 0.000000e+00 0.0000000 0.0000000 > > > > proc.time() user system elapsed 7.978 0.324 8.706 haplo.stats/tests/expanded/test.haplo.cc.R0000644000176200001440000000605114672315243020245 0ustar liggesusers#$Author: sinnwell $ ## package: haplo.stats ## test script: haplo.cc ## settings verbose=TRUE options(width=140) require(haplo.stats) tmp <- Sys.setlocale("LC_ALL", "C") tmp <- Sys.getlocale() data(hla.demo) # Jason Sinnwell, created 3/2004, updated 9/2014 # Mayo Clinic, Biostatistics if(verbose) cat("setting up data...\n") label <- c("DQB","DRB","B") y.bin <- 1*(hla.demo$resp.cat=="low") geno <- as.matrix(hla.demo[,c(17,18,21:24)]) # commented code was to check data that goes into haplo.cc # and gets pasted together in the huge data.frame. # sink(file="results.haplo.cc.txt") seed <- c(17, 53, 1, 40, 37, 0, 62, 56, 5, 52, 12, 1) if(verbose) cat("hla data \n") set.seed(seed) cc.hla <- haplo.cc(y.bin, geno, miss.val=0,locus.label=label, control=haplo.glm.control(haplo.min.count=8, em.c=haplo.em.control())) set.seed(seed) cc.hla.adj <- haplo.cc(y.bin, geno, x.adj=hla.demo[,c("male","age")], miss.val=0,locus.label=label, control=haplo.glm.control(haplo.min.count=8, em.c=haplo.em.control())) set.seed(seed) ntest <- 200 geno.test <- cbind(sample(1:2, size=ntest, replace=TRUE), sample(1:2, size=100, replace=TRUE), sample(2:3,size=ntest, replace=TRUE), sample(2:3, size=100, replace=TRUE), sample(2:4,size=ntest, replace=TRUE, prob=c(.5,.35,.15)), sample(2:4, size=100, replace=TRUE, prob=c(.5,.35,.15))) y.test <- sample(1:2,size=ntest, replace=TRUE,prob=c(.6, .4)) - 1 x.test <- cbind(rbinom(nrow(geno.test), 1, prob=.3), round(rnorm(nrow(geno.test), mean=50, sd=4))) locus.label <- c("A", "B", "C") if(verbose) cat("small numeric data... \n") set.seed(seed) cc.test <- haplo.cc(y.test, geno.test, locus.label=locus.label, ci.prob=.95, control=haplo.glm.control(haplo.min.count=4)) set.seed(seed) cc.adj <- haplo.cc(y.test, geno.test, x.adj=x.test,locus.label=locus.label, ci.prob=.95, control=haplo.glm.control(haplo.min.count=4)) locus.label <- c("A", "B", "C") geno.char <- ifelse(geno.test==1, 'A',ifelse(geno.test==2, 'T', ifelse(geno.test==3, 'G', 'C'))) set.seed(seed) if(verbose) cat("small char data with simulations... \n") cc.char.sim <- haplo.cc(y.test, geno.char, locus.label=locus.label, ci.prob=.90, simulate=FALSE, control = haplo.glm.control(haplo.min.count=4)) print.haplo.cc(cc.hla, digits=3, order.by="score", nlines=12) print(cc.hla.adj, order.by="score",digits=3, nlines=12) # print(cc.hla$fit.lst, digits=3) # print(cc.hla$score.lst, digits=3) print.haplo.cc(cc.test, order.by='score', digits=3) print.haplo.cc(cc.test, order.by='haplotype', digits=3) print.haplo.cc(cc.test, order.by='freq', digits=3) print(cc.adj, order.by="score", digits=3) print(cc.adj, order.by="haplotype", digits=3) print(cc.adj, order.by="freq", digits=3) summary(cc.adj$fit.lst, digits=3) print.haplo.cc(cc.char.sim, digits=3) print(cc.char.sim$fit.lst, digits=3) print(cc.char.sim$score.lst, digits=3) haplo.stats/tests/expanded/test.Ginv.R0000644000176200001440000000246614672315243017467 0ustar liggesusers ## package: haplo.stats ## test script: Ginv ## settings verbose=TRUE require(haplo.stats) # test Ginv on a matrix that is knowns to cause problems for LINPACK # implementation of svd used in Ginv. # this varx matrix comes from running haplo.scan (within haplo.stats) # on the 11-loci hla.demo dataset. source("dump.varx.s") # Jason Sinnwell 3/2004 if(verbose) cat("setting up data...\n") if(verbose) cat("test matrix (441x441) that causes error in LINPACK, but not LAPACK svd\n") ginv.varx <- Ginv(varx) # Ginv.q version 1.4 is known to fail and get a numerical error # ginv.varx$Ginv[1:5,1:5] ginv.varx.eps <- Ginv(varx, eps=1e-4) # ginv.varx.eps$Ginv[1:5,1:5] if(verbose) cat("the zero matrix should give ginv=0, rank=0\n") zeroMat <- matrix(0) epsMat <- matrix(1e-7) zeroGinv <- Ginv(zeroMat) epsGinv <- Ginv(epsMat) # a matrix with an NA should give a warning # naMat <- matrix(c(1,0,NA,0,2,1,1,1,3),ncol=3) # na.ginv <- Ginv(naMat) # if(verbose) cat("sinking print results to a file\n") #if(update) { # sink(file=goldfile) #} else { # sink("sink.Ginv.out") #} ## print all testable results (via a diff command) to a file print(ginv.varx$Ginv[1:5,1:5]) ginv.varx$rank print(ginv.varx.eps$Ginv[1:5,1:5]) ginv.varx.eps$rank print(zeroGinv) print(epsGinv) #sink() haplo.stats/tests/expanded/test.haplo.scan.Rout0000644000176200001440000002347214672566073021353 0ustar liggesusers R version 4.4.1 (2024-06-14) -- "Race for Your Life" Copyright (C) 2024 The R Foundation for Statistical Computing Platform: x86_64-pc-linux-gnu R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. Natural language support but running in an English locale R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. [Previously saved workspace restored] > > ######## test.haplo.scan.q: test the haplo.scan function ########## > # Jason Sinnwell 3/2005 > # > # test haplo.scan under various settings > # sink all of the results into a file > # check them against known checked results by a diff command (unix) > # > ##################################################################### > > ## package: haplo.stats > ## test script: haplo.scan > > verbose=TRUE > Sys.setlocale("LC_ALL", "C") [1] "LC_CTYPE=C;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=en_US.UTF-8;LC_PAPER=en_US.UTF-8;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=en_US.UTF-8;LC_IDENTIFICATION=C" > Sys.getlocale() [1] "LC_CTYPE=C;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=en_US.UTF-8;LC_PAPER=en_US.UTF-8;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=en_US.UTF-8;LC_IDENTIFICATION=C" > > require(haplo.stats) Loading required package: haplo.stats Loading required package: arsenal > > > # test different options for haplo.scan, > # sink all of the results into a file > # check them against known checked results by a diff command (unix) > > # use check.haplo.scan.s for splus and check.haplo.scan.r for r versions > > > #if(update) sink(goldfile) else sink("sink.haplo.scan.out") > > seed <- c(45, 16, 22, 24, 15, 3, 11, 47, 24, 40, 18, 0) > > set.seed(seed) > runif(10) [1] 0.63337281 0.31753665 0.24092185 0.37841413 0.35214430 0.29775855 [7] 0.22781938 0.55484192 0.18456417 0.00528478 > > > cat("\n Using a random numeric dataset, 10 loci, width=4 sim=100 \n\n") Using a random numeric dataset, 10 loci, width=4 sim=100 > ## regular case, default parameters for 10-locus dataset > set.seed(seed) > tmp <- ifelse(runif(2000)>.3, 1, 2) > geno <- matrix(tmp, ncol=20) > y <- rep(c(0,1),c(50,50)) > ## show verbose on simulations. > > set.seed(seed) > scan1 <- haplo.scan(y = y, geno = geno, miss.val=c(0,NA), width=4, + em.control=haplo.em.control(loci.insert.order = NULL, + insert.batch.size = 6, min.posterior = + 1e-07, tol = 1e-05, max.iter = 5000, + random.start = 0, n.try = 10, iseed = + NULL, max.haps.limit = 2000000, verbose=0), + sim.control=score.sim.control(p.threshold = 0.25, min.sim = 50, + max.sim = 1000, verbose = FALSE)) > > print.haplo.scan(scan1,digits=5) Call: haplo.scan(y = y, geno = geno, width = 4, miss.val = c(0, NA), em.control = haplo.em.control(loci.insert.order = NULL, insert.batch.size = 6, min.posterior = 1e-07, tol = 1e-05, max.iter = 5000, random.start = 0, n.try = 10, iseed = NULL, max.haps.limit = 2e+06, verbose = 0), sim.control = score.sim.control(p.threshold = 0.25, min.sim = 50, max.sim = 1000, verbose = FALSE)) ================================================================================ Locus Scan-statistic Simulated P-values ================================================================================ loc-1 loc-2 loc-3 loc-4 loc-5 loc-6 loc-7 loc-8 loc-9 loc-10 sim.p-val 0.74 0.94 0.9 0.74 0.72 0.7 0.66 0.92 0.8 0.58 Loci with max scan statistic: 4 5 6 7 Max-Stat Simulated Global p-value: 0.86 Number of Simulations: 50 > > cat("\n Using an all character dataset, 7 loci, width=3 \n\n") Using an all character dataset, 7 loci, width=3 > > ## a character allele dataset > geno.char <- matrix(c('a','a','b','b','c','C','d','d','F','f','g','G','h1','h1', + 'a','A','B','B','c','c','d','d','F','F','g','G','H','h1', + 'a','a','b','b','c','c','d','d','F','f','g','G','h2','h2', + 'a','a','B','B','C','c','d','d','f','f','g','G','h2','h1', + 'a','A','B','B','c','c','d','d','F','F','g','G','H','h2', + 'a','a','b','B','C','C','D','d','f','f','G','G','h1','h2', + 'a','a','B','B','c','c','d','d','F','f','G','g','h2','h2', + 'a','a','z','z','c','c','d','d','F','F','g','G','h1','z', + 'a','A','B','B','c','z','z','z','F','f','z','z','h1','h1', + 'a','a','B','B','c','c','d','d','F','f','G','g','h1','h2'), + nrow=10,byrow=T) > > y.char<- c(0,1,0,0,1,0,0,1,0,0) > > set.seed(seed) > ## use all default parameters except for miss.val > scan.char <- haplo.scan(y=y.char, geno=geno.char, miss.val="z", width=3, + em.control=haplo.em.control(loci.insert.order = NULL, + insert.batch.size = 6, min.posterior = + 1e-07, tol = 1e-05, max.iter = 5000, + random.start = 0, n.try = 10, + max.haps.limit = 2000000., verbose = 0), + sim.control=score.sim.control(p.threshold = 0.25, + min.sim = 200, max.sim = 1000., verbose = FALSE)) > print.haplo.scan(scan.char, digits=5) Call: haplo.scan(y = y.char, geno = geno.char, width = 3, miss.val = "z", em.control = haplo.em.control(loci.insert.order = NULL, insert.batch.size = 6, min.posterior = 1e-07, tol = 1e-05, max.iter = 5000, random.start = 0, n.try = 10, max.haps.limit = 2e+06, verbose = 0), sim.control = score.sim.control(p.threshold = 0.25, min.sim = 200, max.sim = 1000, verbose = FALSE)) ================================================================================ Locus Scan-statistic Simulated P-values ================================================================================ loc-1 loc-2 loc-3 loc-4 loc-5 loc-6 loc-7 sim.p-val 0.66 0.825 0.515 0.5 0.4 0.345 0.335 Loci with max scan statistic: 5 6 7 Max-Stat Simulated Global p-value: 0.525 Number of Simulations: 200 > > cat("\n Using hla dataset, 8 loci, sim=10, width=3 \n\n") Using hla dataset, 8 loci, sim=10, width=3 > ## use the hla dataset, just the first 8 markers. slide=3, sim=10 > > data(hla.demo) > > geno.11 <- hla.demo[,-c(1:4)] > y.bin <- 1*(hla.demo$resp.cat=="low") > hla.summary <- summaryGeno(geno.11[,1:16], miss.val=c(0,NA)) > > ## track those subjects with too many possible haplotype pairs ( > 10,000) > many.haps <- (1:length(y.bin))[hla.summary[,4]>10000] > > length(many.haps) [1] 6 > many.haps [1] 11 33 124 137 167 181 > > ## For speed, or even just so it will finish, make y.bin and geno.scan > ## for genotypes that don't have too many ambigous haplotypes > geno.scan <- geno.11[-many.haps,] > y.scan <- y.bin[-many.haps] > > set.seed(seed) > > runif(10) [1] 0.63337281 0.31753665 0.24092185 0.37841413 0.35214430 0.29775855 [7] 0.22781938 0.55484192 0.18456417 0.00528478 > > set.seed(seed) > scan.hla <- haplo.scan(y.scan, geno.scan, width=3, + em.control=haplo.em.control(loci.insert.order = NULL, + insert.batch.size = 3, min.posterior = + 1e-07, tol = 1e-05, max.iter = 5000, + random.start = 0, n.try = 10, + max.haps.limit = 2000000, verbose = 0), + sim.control=score.sim.control(p.threshold = 0.25, + min.sim = 10, max.sim = 10, verbose = TRUE)) h.count: 0.94118 nsim: 1 glob.rej: 1 loc.rej: 1 1 1 1 1 1 0 1 1 1 1 h.count: 1.77778 nsim: 2 glob.rej: 1 loc.rej: 1 1 1 1 1 1 0 1 1 1 1 h.count: 2.52632 nsim: 3 glob.rej: 1 loc.rej: 1 1 1 1 1 1 0 1 1 1 1 h.count: 3.2 nsim: 4 glob.rej: 1 loc.rej: 1 1 1 1 1 1 0 1 1 1 1 h.count: 3.80952 nsim: 5 glob.rej: 1 loc.rej: 1 1 1 1 1 1 0 1 1 1 1 h.count: 4.36364 nsim: 6 glob.rej: 1 loc.rej: 1 1 1 1 1 1 0 1 1 1 1 h.count: 4.86957 nsim: 7 glob.rej: 1 loc.rej: 1 1 1 1 1 1 0 1 1 1 1 h.count: 5.33333 nsim: 8 glob.rej: 1 loc.rej: 1 1 1 1 1 1 0 1 1 1 1 h.count: 5.76 nsim: 9 glob.rej: 2 loc.rej: 2 2 2 2 2 2 1 2 2 2 2 h.count: 6.15385 nsim: 10 glob.rej: 2 loc.rej: 2 2 2 2 2 2 1 2 2 2 2 > > print.haplo.scan(scan.hla, digits=5) Call: haplo.scan(y = y.scan, geno = geno.scan, width = 3, em.control = haplo.em.control(loci.insert.order = NULL, insert.batch.size = 3, min.posterior = 1e-07, tol = 1e-05, max.iter = 5000, random.start = 0, n.try = 10, max.haps.limit = 2e+06, verbose = 0), sim.control = score.sim.control(p.threshold = 0.25, min.sim = 10, max.sim = 10, verbose = TRUE)) ================================================================================ Locus Scan-statistic Simulated P-values ================================================================================ loc-1 loc-2 loc-3 loc-4 loc-5 loc-6 loc-7 loc-8 loc-9 loc-10 loc-11 sim.p-val 0.2 0.2 0.2 0.2 0.2 0.2 0.1 0.2 0.2 0.2 0.2 Loci with max scan statistic: 2 Max-Stat Simulated Global p-value: 0.2 Number of Simulations: 10 > > > > > > > > proc.time() user system elapsed 20.536 0.267 21.222 haplo.stats/tests/expanded/test.haplo.design.R0000644000176200001440000000436114672315243021133 0ustar liggesusers ## package: haplo.stats ## test script: haplo.glm ## settings verbose=TRUE require(haplo.stats) Sys.setlocale("LC_ALL", "C") Sys.getlocale() if(verbose) cat("prepare two datasets, one with char alleles, the other 3 loci from hla data\n") # make ficticious data set with an intention of some trend in # haplotypes having H-allele at locus-H with F-allele at locus-F geno.char <- matrix(c('F','f','g','G','h1','h1', 'F','F','g','G','H','h1', 'F','f','g','G','h2','h2', 'f','f','g','G','h2','h1', 'F','F','g','G','H','h2', 'f','f','G','G','h1','h2', 'F','f','G','g','h2','h2', 'F','F','g','G','h1','z', 'F','f','z','z','h1','h1', 'F','f','G','g','h1','h2', 'F','f','G','G','h1','h2', 'F','F','g','G','h1','z', 'F','f','z','z','h1','h1', 'f','f','G','g','h1','h2'), nrow=14,byrow=T) char.label <- c("F","G","H") data(hla.demo) hla.sub <- hla.demo[,c(1,2,3,4,17,18,21:24)] geno.hla <- hla.sub[,-c(1:4)] hla.label=c("DQB","DRB","HLA.B") seed <- c(33, 10, 39, 6, 16, 0, 40, 24, 12, 60, 7, 1) if(verbose) cat("character alleles, min.count=3\n") set.seed(seed) em.char <- haplo.em(geno.char, miss.val='z',locus.label=char.label, control = haplo.em.control()) char.design <- haplo.design(em.char, min.count=3) print(char.design) if(verbose) cat("hla data, 3 loci\n") set.seed(seed) em.hla3 <- haplo.em(geno.hla, locus.label=hla.label, miss.val=0, control = haplo.em.control()) hla3.design <- haplo.design(em.hla3, hapcodes= c(4,99,138)) print(hla3.design) if(verbose) cat("snap SNP data, options of recessive, dominant, haplo.base=2\n") snapDF <- read.table("snapData.csv",header=TRUE, sep=",", stringsAsFactors=FALSE) geno.snap <- setupGeno(geno=snapDF[,-c(1:7)]) set.seed(seed) em.snap <- haplo.em(geno=geno.snap) snap.design.rec <- haplo.design(em.snap, haplo.effect="recessive", min.count=4) snap.design.dom.base2 <- haplo.design(em.snap, haplo.base=2, haplo.effect="dominant", min.count=6) print(snap.design.rec) print(snap.design.dom.base2) haplo.stats/tests/expanded/test.anova.haplo.glm.Rout0000644000176200001440000005515414672566037022313 0ustar liggesusers R version 4.4.1 (2024-06-14) -- "Race for Your Life" Copyright (C) 2024 The R Foundation for Statistical Computing Platform: x86_64-pc-linux-gnu R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. Natural language support but running in an English locale R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. [Previously saved workspace restored] > > ## package: haplo.stats > ## test script: haplo.glm > > ## settings > verbose=TRUE > Sys.setlocale("LC_ALL", "C") [1] "LC_CTYPE=C;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=en_US.UTF-8;LC_PAPER=en_US.UTF-8;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=en_US.UTF-8;LC_IDENTIFICATION=C" > Sys.getlocale() [1] "LC_CTYPE=C;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=en_US.UTF-8;LC_PAPER=en_US.UTF-8;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=en_US.UTF-8;LC_IDENTIFICATION=C" > > require(haplo.stats) Loading required package: haplo.stats Loading required package: arsenal > > > ## this is a dataset borrowed from a haplo.stats user > # it has problems with recessive trait, but runs fast on all examples > > "data.test.glm" <- + structure(.Data = list(c(1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., + 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., + 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., + 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., + 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., + 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., + 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.) + , c(1., 2., 1., 2., 1., 1., 2., 1., 1., 2., 1., 2., 1., 1., 1., 1., 1., 2., 2., 1., 1., 1., 2., 2., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 2., 2.,2., 2., 2., 1., 1., 1., 1., 1., 2., 2., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 2., 2., 1., 1., 1., 1., 1., 1., 2., 2., 1., 1., + 1., 1., 2., 1., 2., 2., 1., 2., 1., 2., 1., 2., 2., 1., 2., 2., 2.,1., 1., 1., 1., 1., 2., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 2., 1., 1., 2., 2., 1., 2., 1., 1., 1., 2., 1., 2., 1., 2., 2., 1., 1.,1., 1., 2., 1., 2., 1., 2., 2., 1., 2., 1., 1., 2., 2., 1., 2., 2., + 2., 1., 2., 2., 1., 2., 2., 1., 2., 1., 1., 2., 1., 1., 1., 1., 2.,2., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 2., 1., 2., 1., 1., 1., 1., 2., 2.,1., 2., 1., 2., 2., 1., 2., 1., 1., 1., 2., 2., 1., 1., 1., 1., 2., + 1., 1., 1., 1., 2., 2., 1., 2., 2., 2., 1., 1., 1., 2., 1., 1., 2.,1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 2., 2., 2., 1., 1., 1., 2., 1., 2., 1., 2., 1., 2., 1., 2., 1., 1., 1., 1., 1., 1., 2., 2., 1.,2., 2., 2., 1., 1., 2., 1., 1., 1., 1., 1., 2., 2., 1., 1., 1., 2., + 1., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 2., 2., 1., 2., 1., 2.,1., 1., 1., 2., 1., 1., 1., 1., 2., 2., 1., 1., 2., 1., 2., 2., 1., 1., 2., 1., 1., 1., 1., 1., 2., 1., 2., 1., 1., 2., 1., 2., 2., 2.,1., 1., 2., 1., 2., 1., 1., 1., 1., 1., 1., 2., 2., 1., 1., 2., 1., + 1., 1., 1., 2., 2., 2., 1., 1., 1., 1., 2., 1., 2., 2., 2., 2., 2.,1., 1., 2., 1., 2., 1., 2., 1., 2., 1., 1., 1., 1., 1., 1., 2., 2., 1., 2., 2., 1., 2., 2., 2., 1., 2., 1., 2., 2., 2., 1., 1., 1., 2.,1., 1., 2., 2., 2., 2., 1., 2., 2., 1., 2., 2., 1., 2., 1., 1., 1., + 2., 1., 2., 2., 1., 2., 1., 1., 1., 1., 1., 1., 1.), + c(1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., + 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., + 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 0., 1., 0.,0., 1., 1., 1., 1., 1., 1., 0., 1., 1., 1., 1., 0., 1., 1., 1., 0., 1., 1., 0., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 0.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., + 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 2., 1., 1., 1., 1., 0., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., + 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., + 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., + 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,0., 1., 1., 1., 1., 1., 0., 1., 1., 1., 1., 1., 1.) + , c(1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 2., 1., 2., 1., 2., 1., 1., 1., 1., 1., 2., 1., 2., 1., 2., 2., 1., 1., 1., 1., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 2., 1., 1., 2., 1., 1.,2., 2., 1., 1., 1., 1., 1., 1., 1., 1., 2., 2., 1., 2., 1., 1., 1., + 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 2.,1., 2., 2., 1., 1., 1., 2., 2., 1., 1., 2., 1., 2., 2., 1., 1., 1., 1., 1., 1., 2., 1., 1., 2., 1., 2., 1., 2., 1., 1., 1., 1., 2., 1.,2., 1., 1., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 0., 1., 0., + 0., 1., 1., 1., 1., 2., 1., 0., 1., 2., 1., 1., 0., 1., 1., 1., 0.,1., 2., 0., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 2., 1., 0., 1., 1., 1., 1., 1., 2., 1., 2., 1., 2., 1., 1., 1., 1., 1., 2., 1.,1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 2., + 1., 1., 1., 1., 2., 2., 1., 1., 2., 0., 2., 2., 1., 1., 2., 1., 1.,1., 1., 2., 1., 1., 1., 1., 2., 1., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1.,1., 1., 1., 1., 2., 2., 1., 1., 2., 1., 1., 2., 1., 1., 2., 2., 2., + 1., 2., 1., 1., 1., 2., 2., 1., 1., 1., 2., 1., 1., 1., 1., 2., 1.,1., 1., 1., 1., 1., 2., 2., 2., 2., 1., 1., 1., 1., 1., 2., 1., 1., 1., 2., 2., 1., 1., 1., 1., 1., 1., 2., 2., 2., 1., 1., 1., 1., 2.,1., 2., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 2., 2., + 2., 2., 2., 2., 1., 1., 2., 1., 1., 1., 2., 2., 1., 1., 1., 2., 1.,1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 2., 1., 1., 1., 1., 1., 2., 1., 1., 2., 1., 2., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 1.,1., 1., 2., 1., 2., 2., 2., 2., 1., 1., 1., 1., 1., 2., 1., 1., 1., + 0., 2., 1., 1., 1., 1., 0., 1., 1., 1., 2., 2., 2.) + , c(1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., + 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 2., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 2.,1., 1., 1., 1., 1., 1., 1., 0., 1., 1., 1., 1., 2., 1., 1., 1., 2., + 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,0., 1., 1., 1., 1., 1., 1., 0., 1., 1., 1., 2., 0., 0., 1., 1., 0., 2., 1., 0., 1., 1., 1., 1., 1., 0., 1., 1., 2., 1., 1., 1., 2., 1.,2., 1., 2., 1., 0., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 2., 2., + 1., 1., 2., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 0., 1., 1., 2., 2., 1., 1., 1., 1., 1., 1., 1., 0., 1., 2., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1.,1., 2., 1., 1., 1., 2., 1., 2., 1., 1., 1., 2., 1., 1., 1., 0., 1., + 2., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 2., 1., 1., 1., 2., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2.,1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., + 2., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 2., 1., 1.,1., 1., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 2., 1., 2., 1., 1., 1., 1., 1.,2., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., + 1., 2., 1., 2., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1.,0., 1., 1., 2., 1., 1., 0., 2., 1., 1., 1., 1., 1.) + , c(1., 2., 2., 2., 1., 1., 2., 2., 1., 2., 1., 1., 1., 1., 1., 2., 1., 2., 1., 2., 1., 1., 1., 2., 1., 1., 1., 1., 1., 2., 2., 2., 1., 2., 2., 1.,2., 1., 1., 1., 1., 1., 2., 2., 2., 2., 2., 1., 1., 2., 2., 1., 1., + 2., 1., 1., 1., 2., 2., 1., 2., 1., 1., 2., 1., 2., 1., 2., 1., 1.,2., 2., 1., 1., 2., 2., 1., 2., 2., 2., 2., 1., 2., 2., 1., 1., 1., 1., 1., 1., 2., 1., 1., 2., 1., 1., 2., 1., 2., 1., 1., 1., 1., 2.,2., 1., 2., 2., 1., 1., 2., 0., 2., 2., 2., 2., 2., 1., 2., 1., 2., + 1., 2., 1., 2., 2., 2., 1., 2., 1., 2., 1., 2., 1., 1., 1., 1., 2.,0., 1., 1., 2., 2., 2., 2., 0., 2., 2., 1., 2., 0., 0., 1., 2., 0., 2., 1., 0., 1., 2., 1., 1., 1., 0., 2., 2., 2., 1., 1., 2., 2., 1.,2., 2., 2., 1., 0., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 2., 2., + 1., 1., 2., 2., 2., 1., 1., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2.,1., 2., 2., 1., 1., 1., 1., 1., 2., 0., 2., 2., 2., 2., 2., 1., 2., 1., 2., 2., 1., 0., 1., 2., 2., 2., 2., 1., 1., 2., 2., 1., 2., 2.,2., 2., 1., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 1., 1., 0., 2., + 2., 2., 2., 2., 1., 1., 2., 1., 1., 2., 2., 1., 2., 2., 1., 1., 2.,1., 1., 1., 2., 2., 2., 1., 1., 1., 2., 2., 2., 2., 2., 2., 1., 1., 2., 2., 1., 2., 1., 1., 2., 1., 2., 1., 2., 1., 1., 1., 1., 2., 2.,2., 2., 2., 2., 2., 2., 1., 1., 1., 1., 1., 1., 2., 1., 1., 2., 1., + 2., 1., 1., 1., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 1.,1., 1., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 2., 1., 2., 2., 1., 1., 2., 2., 2., 2., 2., 1., 1., 2., 2., 2., 2., 2., 1., 2., 2., 1.,2., 2., 1., 2., 2., 2., 2., 2., 2., 1., 1., 1., 2., 1., 1., 2., 1., + 2., 2., 2., 2., 1., 1., 2., 1., 2., 2., 1., 2., 2., 2., 1., 2., 1.,0., 2., 2., 2., 2., 2., 0., 2., 1., 2., 1., 1., 2.) + , c(2., 2., 1., 1., 2., 2., 1., 1., 2., 1., 1., 2., 2., 2., 1., 1., 2., 1., 2., 1., 1., 2., 2., 1., 2., 2., 2., 2., 2., 2., 1., 1., 2., 1., 1., 2., 1., 2., 2., 2., 2., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 2., 2.,2., 2., 2., 2., 1., 1., 2., 1., 2., 2., 1., 2., 1., 2., 1., 1., 2., + 1., 1., 1., 2., 1., 1., 2., 2., 1., 1., 1., 2., 1., 1., 1., 2., 1.,2., 1., 1., 1., 2., 2., 1., 1., 2., 1., 2., 1., 2., 2., 2., 2., 1., 1., 2., 1., 1., 2., 2., 2., 2., 1., 1., 1., 1., 1., 2., 1., 2., 1.,2., 1., 2., 1., 1., 1., 2., 1., 2., 1., 2., 1., 2., 2., 1., 2., 1., + 2., 2., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 2., 1., 1.,2., 1., 2., 2., 1., 2., 2., 1., 2., 1., 1., 1., 2., 2., 1., 1., 2., 1., 2., 1., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 1., 1.,2., 2., 1., 1., 1., 2., 2., 1., 1., 2., 2., 1., 2., 1., 1., 2., 1., + 2., 1., 1., 2., 1., 1., 2., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1.,2., 1., 1., 2., 1., 2., 1., 1., 1., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 2., 1., 1., 2., 2., 2., 1., 2.,1., 1., 1., 1., 1., 2., 1., 2., 2., 1., 1., 2., 1., 1., 2., 2., 1., + 2., 2., 2., 1., 1., 1., 2., 2., 1., 1., 1., 1., 1., 1., 1., 2., 2.,1., 1., 2., 1., 2., 2., 1., 2., 1., 2., 2., 2., 2., 2., 2., 1., 1., 1., 1., 1., 2., 1., 1., 2., 2., 2., 2., 1., 1., 2., 2., 2., 2., 1.,1., 2., 2., 1., 2., 1., 1., 1., 1., 2., 1., 1., 1., 2., 1., 1., 1., + 1., 2., 2., 1., 1., 2., 2., 1., 2., 2., 1., 1., 1., 2., 1., 1., 2.,2., 1., 1., 1., 1., 1., 2., 2., 1., 1., 1., 1., 1., 2., 1., 1., 1., 2., 1., 2., 1., 1., 1., 1., 1., 1., 2., 1., 2., 1., 1., 2., 1., 2.,1., 1., 1., 1., 1., 2., 1., 1., 1., 2., 2., 1., 1., 1., 2., 1., 2., + 1., 1., 1., 1., 1., 1., 2., 1., 2., 1., 1., 2., 1.) + , c(2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2.,2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2.,2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., + 2., 2., 2., 2., 1., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2.,2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 1., 2., 1., 2., 2., 2., 1.,2., 1., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., + 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 1., 2., 1., 2., 2., 2.,2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 1., 2., 2., 2., 2., 1., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 1.,2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., + 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 1., 2., 2., 2.,2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 1., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,1., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 1., + 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2.,2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,1., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 1., 2., 2., + 1., 2., 2., 2., 1., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 1., 2.,2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2.,2., 1., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., + 1., 2., 2., 1., 2., 2., 2., 1., 2., 2., 1., 2., 2.)) + , names = c("y3", "sex3", "V19", "V20", "V29", "V30", "V35", "V36") + , row.names = c("1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14","15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26","27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", + "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "55", "56", "57", "58", "59", "60", "61", "62", "63", "64", "65", "66", "67", "68", "69", "70", "71", "72", "73", "74", + "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90", "91", "92", "93", "94", "95", "96", "97", "98", "99", "100", "101", "102", "103", "104", "105", "106", "107", "108", + "109", "110", "111", "112", "113", "114", "115", "116", "117", "118","119", "120", "121", "122", "123", "124", "125", "126", "127", "128", "129", "130", "131", "132", "133", "134", "135", "136", "137", "138", + "139", "140", "141", "142", "143", "144", "145", "146", "147", "148","149", "150", "151", "152", "153", "154", "155", "156", "157", "158","159", "160", "161", "162", "163", "164", "165", "166", "167", "168", + "169", "170", "171", "172", "173", "174", "175", "176", "177", "178","179", "180", "181", "182", "183", "184", "185", "186", "187", "188","189", "190", "191", "192", "193", "194", "195", "196", "197", "198", + "199", "200", "201", "202", "203", "204", "205", "206", "207", "208","209", "210", "211", "212", "213", "214", "215", "216", "217", "218","219", "220", "221", "222", "223", "224", "225", "226", "227", "228", + "229", "230", "231", "232", "233", "234", "235", "236", "237", "238","239", "240", "241", "242", "243", "244", "245", "246", "247", "248","249", "250", "251", "252", "253", "254", "255", "256", "257", "258", + "259", "260", "261", "262", "263", "264", "265", "266", "267", "268","269", "270", "271", "272", "273", "274", "275", "276", "277", "278","279", "280", "281", "282", "283", "284", "285", "286", "287", "288", + "289", "290", "291", "292", "293", "294", "295", "296", "297", "298","299", "300", "301", "302", "303", "304", "305", "306", "307", "308","309", "310", "311", "312", "313", "314", "315", "316", "317", "318", + "319", "320", "321", "322", "323", "324", "325", "326", "327", "328","329", "330", "331", "332", "333", "334", "335", "336", "337", "338","339", "340", "341", "342", "343", "344", "345", "346", "347", "348", + "349", "350", "351", "352", "353", "354", "355", "356", "357", "358","359", "360", "361", "362", "363", "364", "365", "366", "367", "368","369", "370", "371", "372", "373", "374", "375", "376", "377", "378", + "379", "380", "381", "382", "383", "384", "385", "386", "387", "388","389", "390", "391", "392", "393", "394", "395", "396", "397", "398","399", "400", "401", "402", "403", "404", "405", "406", "407", "408", + "409", "410", "411", "412", "413", "414", "415", "416", "417", "418","419", "420", "421", "422", "423"), class = "data.frame") > > > # Jason Sinnwell 3/2004 > # Mayo Clinic, Biostatistics > > > if(verbose) cat("setting up data...\n") setting up data... > > # prepare a short example dataset, labaled as '3' > # ht3 <- source("dump.ht3.s"), this is now at top of file > geno3 <- data.test.glm[,-(1:2)] > sex3 <- data.test.glm$sex > y3 <- data.test.glm$y3 > set.seed(10) > rgaus3 <- ifelse(y3==1, rnorm(423, .5, 1), rnorm(423)) > > label3<-c("M1","M2","M3") > geno3<-setupGeno(geno3, miss.val=c(0,NA)) > my.data3<-data.frame(geno3=geno3, sex3=sex3, y3=y3, + gaus3=rgaus3, gaus3.100=rgaus3*100) > > > # use freq.min as a guide for choosing minimum hap frequency > freq.min3 <- 5/(2*nrow(geno3)) > > > # prepare the hla dataset, > # runs a lot longer, and MS alleles don't all start w/ 1, 2... > label <-c("DQB","DRB","B") > > data(hla.demo) > > y <- hla.demo$resp > y.bin <- 1*(hla.demo$resp.cat=="low") > > geno <- as.matrix(hla.demo[,c(17,18,21:24)]) > > geno <- setupGeno(geno, miss.val=c(0,NA)) > > # geno now has an attribute 'unique.alleles' which must be passed to > # haplo.glm as allele.lev=attributes(geno)$unique.alleles, see below > > my.data <- data.frame(geno=geno, age=hla.demo$age, male=hla.demo$male, + y=y, y.bin=y.bin) > > seed <- c(17, 53, 1, 40, 37, 0, 62, 56, 5, 52, 12, 1) > > if(verbose) cat("regular haplo.glm, additive genetic trait, and \n") regular haplo.glm, additive genetic trait, and > set.seed(seed) > fit3.add <- haplo.glm(y3~geno3, family=binomial,na.action="na.geno.keep", + data=my.data3, locus.label=label3, miss.val = c(0, NA), + method = "glm.fit", model = FALSE, x = FALSE, y = TRUE, contrasts = NULL, + control = haplo.glm.control(haplo.freq.min=freq.min3, haplo.effect="add", + haplo.base = NULL, sum.rare.min = 0.001, + haplo.min.info = 0.001,keep.rare.haplo = TRUE, + glm.c = glm.control(maxit = 500), em.c = haplo.em.control())) > > set.seed(seed) > fit3.add.sex <- haplo.glm(y3~geno3+sex3, family=binomial,na.action="na.geno.keep", + data=my.data3, locus.label=label3, miss.val = c(0, NA), + method = "glm.fit", model = FALSE, x = FALSE, y = TRUE, contrasts = NULL, + control = haplo.glm.control(haplo.freq.min=freq.min3, haplo.effect="add", + haplo.base = NULL, sum.rare.min = 0.001, + haplo.min.info = 0.001,keep.rare.haplo = TRUE, + glm.c = glm.control(maxit = 500), em.c = haplo.em.control())) > > anova3 <- anova(fit3.add, fit3.add.sex) > > > if(verbose) cat("fit a binary trait\n") fit a binary trait > set.seed(seed) > fit.hla.bin <- haplo.glm(y.bin ~ male + geno, family = binomial, + na.action="na.geno.keep", data=my.data, locus.label=label, + control = haplo.glm.control(haplo.min.count=8)) > > if(verbose) cat(" gaussian with covariates, additive\n") gaussian with covariates, additive > > set.seed(seed) > fit.hla.gaus.gender <- haplo.glm(y ~ male + geno, family = gaussian, + na.action="na.geno.keep", + data=my.data, locus.label=label, + control = haplo.glm.control(haplo.min.count=5)) > > if(verbose) cat("gaussian with covariate, multiplicative\n") gaussian with covariate, multiplicative > set.seed(seed) > fit.hla.gaus.inter <- haplo.glm(y ~ male * geno, family = gaussian, + na.action="na.geno.keep", data=my.data, locus.label=label, + control = haplo.glm.control(haplo.min.count = 5)) > > anova.hlagaus <- anova(fit.hla.gaus.gender, fit.hla.gaus.inter) > > > if(verbose) cat("print anova results\n") print anova results > > > cat("3-locus haplotype from a user\n") 3-locus haplotype from a user > print(anova3) Analysis of Deviance Table Model 1: y3 ~ geno3 Model 2: y3 ~ geno3 + sex3 Resid. Df Resid. Dev Df Deviance Pr(>Chi) 1 416 508.44 2 415 507.97 1 0.47331 0.4915 > > cat("hla haplotype additive and interactions\n") hla haplotype additive and interactions > print(anova.hlagaus) Analysis of Deviance Table Model 1: y ~ male + geno Model 2: y ~ male * geno Resid. Df Resid. Dev Df Deviance Pr(>Chi) 1 200 252.33 2 182 225.33 18 27.007 0.2404 > > cat("try to run anova one fit, this returns nothing\n") try to run anova one fit, this returns nothing > anova(fit.hla.gaus.inter) Warning message: In anova.haplo.glm(fit.hla.gaus.inter) : This method only allows comparison between two or more glm/haplo.glm model fits. > print(warnings()) Warning message: In anova.haplo.glm(fit.hla.gaus.inter) : This method only allows comparison between two or more glm/haplo.glm model fits. > > > proc.time() user system elapsed 13.113 0.282 13.791 haplo.stats/tests/expanded/test.haplo.score.Rout0000644000176200001440000005633614672566645021554 0ustar liggesusers R version 4.4.1 (2024-06-14) -- "Race for Your Life" Copyright (C) 2024 The R Foundation for Statistical Computing Platform: x86_64-pc-linux-gnu R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. Natural language support but running in an English locale R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. [Previously saved workspace restored] > ## package: haplo.stats > ## test script: haplo.score > > ## settings > > verbose=TRUE > Sys.setlocale("LC_ALL", "C") [1] "LC_CTYPE=C;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=en_US.UTF-8;LC_PAPER=en_US.UTF-8;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=en_US.UTF-8;LC_IDENTIFICATION=C" > Sys.getlocale() [1] "LC_CTYPE=C;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=en_US.UTF-8;LC_PAPER=en_US.UTF-8;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=en_US.UTF-8;LC_IDENTIFICATION=C" > > require(haplo.stats) Loading required package: haplo.stats Loading required package: arsenal > > #library(haplo.stats, lib="/projects/bsi/gentools/R/lib214") > > > if(verbose) + cat("prepare two datasets, one with char alleles, the other 3 loci from hla data\n") prepare two datasets, one with char alleles, the other 3 loci from hla data > > ## make ficticious data set with an intention of some trend in > ## haplotypes having H-allele at locus-H with F-allele at locus-F > geno.char <- matrix(c('F','f','g','G','h1','h1', + 'F','F','g','G','H','h1', + 'F','f','g','G','h2','h2', + 'f','f','g','G','h2','h1', + 'F','F','g','G','H','h2', + 'f','f','G','G','h1','h2', + 'F','f','G','g','h2','h2', + 'F','F','g','G','h1','z', + 'F','f','z','z','h1','h1', + 'F','f','G','g','h1','h2', + 'F','f','G','G','h1','h2', + 'F','F','g','G','h1','z', + 'F','f','z','z','h1','h1', + 'f','f','G','g','h1','h2'), nrow=14,byrow=T) > > y.response <- c(2.0,4.5,1.8,2.1,5.2,1.3,3.4,2.5,2.2,1.9,2.1,1.2,3.0,1.9) > y.pheno <- c(0,1,0,0,1,0,0,1,0,0,0,1,1,0) > char.label <- c("F","G","H") > > data(hla.demo) > > hla.sub <- hla.demo[,c(1,2,3,4,17,18,21:24)] > geno.hla <- hla.sub[,-c(1:4)] > hla.resp <- hla.sub[,1] > hla.respcat <- hla.sub[,2] > hla.sex <- hla.sub[,3] > hla.label=c("DQB","DRB","HLA.B") > > seed <- c(33, 10, 39, 6, 16, 0, 40, 24, 12, 60, 7, 1) > set.seed(seed) > runif(10) [1] 0.44594048 0.39465031 0.48372887 0.91887596 0.84388144 0.51734962 [7] 0.43712500 0.34319822 0.01551696 0.11799116 > > if(verbose) cat("character alleles, binary trait, additive and dominant\n") character alleles, binary trait, additive and dominant > > set.seed(seed) > score.char.pheno.add <- haplo.score(y.pheno, geno.char, trait.type="binomial", + locus.label=char.label, miss.val='z', + offset = NA, x.adj = NA, min.count=4, simulate=FALSE, + haplo.effect="additive", + sim.control = score.sim.control(), + em.control = haplo.em.control()) > > print(score.char.pheno.add) -------------------------------------------------------------------------------- Haplotype Effect Model: additive -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- Global Score Statistics -------------------------------------------------------------------------------- global-stat = 7.64565, df = 3, p-val = 0.05393 -------------------------------------------------------------------------------- Haplotype-specific Scores -------------------------------------------------------------------------------- F G H Hap-Freq Hap-Score p-val [1,] f G h2 0.2415 -2.73534 0.00623 [2,] F G h1 0.14326 0.92066 0.35723 [3,] F g h1 0.16268 2.11048 0.03482 > > > set.seed(seed) > runif(10) [1] 0.44594048 0.39465031 0.48372887 0.91887596 0.84388144 0.51734962 [7] 0.43712500 0.34319822 0.01551696 0.11799116 > set.seed(seed) > score.char.pheno.dom <- haplo.score(y.pheno, geno.char, trait.type="binomial", + locus.label=char.label, miss.val='z', + offset = NA, x.adj=NA, min.count=4, simulate=FALSE, + haplo.effect="dom", + sim.control = score.sim.control(), + em.control = haplo.em.control()) > > print(score.char.pheno.dom) -------------------------------------------------------------------------------- Haplotype Effect Model: dom -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- Global Score Statistics -------------------------------------------------------------------------------- global-stat = 7.64565, df = 3, p-val = 0.05393 -------------------------------------------------------------------------------- Haplotype-specific Scores -------------------------------------------------------------------------------- F G H Hap-Freq Hap-Score p-val [1,] f G h2 0.2415 -2.73534 0.00623 [2,] F G h1 0.14326 0.92066 0.35723 [3,] F g h1 0.16268 2.11048 0.03482 > > if(verbose) cat("character alleles, gaussian trait\n") character alleles, gaussian trait > set.seed(seed) > score.char.gaus <- haplo.score(y.response, geno.char, trait.type="gaussian", + skip.haplo=.1, + locus.label=char.label, miss.val="z",simulate=TRUE, + sim.control=score.sim.control(min.sim=50, p.threshold=.25, + max.sim=1000,verbose=FALSE), + em.control = haplo.em.control()) > > print(score.char.gaus) -------------------------------------------------------------------------------- Haplotype Effect Model: additive -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- Global Score Statistics -------------------------------------------------------------------------------- global-stat = 5.20759, df = 5, p-val = 0.39107 -------------------------------------------------------------------------------- Global Simulation p-value Results -------------------------------------------------------------------------------- Global sim. p-val = 0.44 Max-Stat sim. p-val = 0.66 Number of Simulations, Global: 50 , Max-Stat: 50 -------------------------------------------------------------------------------- Haplotype-specific Scores -------------------------------------------------------------------------------- F G H Hap-Freq Hap-Score p-val sim p-val [1,] f G h2 0.2415 -1.35492 0.17544 0.18 [2,] F G h1 0.14326 -0.87249 0.38294 0.42 [3,] f g h1 0.13545 -0.63397 0.5261 0.58 [4,] F g h1 0.16268 0.29721 0.7663 0.8 [5,] F g h2 0.14042 1.25039 0.21116 0.26 > > if(verbose) cat("hla data, gaussian trait and x.adj\n") hla data, gaussian trait and x.adj > set.seed(seed) > score.hla.resp.adj <- haplo.score(hla.resp,geno.hla,trait.type="gaussian", + locus.label=hla.label, miss.val=0, x.adj=hla.sex, + simulate=FALSE, min.count=5) > > > print(score.hla.resp.adj) -------------------------------------------------------------------------------- Haplotype Effect Model: additive -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- Global Score Statistics -------------------------------------------------------------------------------- global-stat = 32.91534, df = 18, p-val = 0.01709 -------------------------------------------------------------------------------- Haplotype-specific Scores -------------------------------------------------------------------------------- DQB DRB HLA.B Hap-Freq Hap-Score p-val [1,] 21 3 8 0.10421 -2.39918 0.01643 [2,] 31 4 44 0.02849 -2.25911 0.02388 [3,] 62 2 35 0.01149 -1.0621 0.28819 [4,] 51 1 44 0.01772 -1.0064 0.31422 [5,] 63 13 44 0.01655 -0.88319 0.37713 [6,] 63 2 7 0.01364 -0.53278 0.59418 [7,] 32 4 60 0.03061 -0.47835 0.6324 [8,] 21 7 44 0.02149 -0.44724 0.6547 [9,] 62 2 44 0.01378 -0.27576 0.78273 [10,] 62 2 18 0.01538 -0.19859 0.84258 [11,] 51 1 27 0.01439 -0.00401 0.9968 [12,] 31 11 35 0.01753 0.51508 0.6065 [13,] 51 1 35 0.03015 0.70983 0.47781 [14,] 32 4 7 0.02044 0.9406 0.34691 [15,] 21 7 7 0.01415 1.21797 0.22324 [16,] 63 13 7 0.01349 2.07975 0.03755 [17,] 32 4 62 0.02349 2.37016 0.01778 [18,] 62 2 7 0.04904 2.53596 0.01121 > > if(verbose) cat("hla data ordinal trait\n") hla data ordinal trait > set.seed(seed) > score.hla.respcat <- haplo.score(hla.respcat, geno.hla, trait.type="ordinal", + locus.label=hla.label, miss.val=0, + simulate=FALSE, min.count=5, + offset=NA, x.adj=NA) > > print(score.hla.respcat) -------------------------------------------------------------------------------- Haplotype Effect Model: additive -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- Global Score Statistics -------------------------------------------------------------------------------- global-stat = 19.00536, df = 18, p-val = 0.39149 -------------------------------------------------------------------------------- Haplotype-specific Scores -------------------------------------------------------------------------------- DQB DRB HLA.B Hap-Freq Hap-Score p-val [1,] 32 4 62 0.02349 -2.17153 0.02989 [2,] 21 3 8 0.10421 -1.34215 0.17955 [3,] 63 13 7 0.01349 -1.27538 0.20218 [4,] 62 2 7 0.04904 -1.1646 0.24418 [5,] 21 7 44 0.02149 -1.11045 0.2668 [6,] 62 2 18 0.01538 -0.37326 0.70896 [7,] 32 4 7 0.02044 -0.32526 0.74498 [8,] 63 2 7 0.01364 -0.31495 0.7528 [9,] 31 11 35 0.01753 -0.25543 0.79839 [10,] 62 2 44 0.01378 -0.24187 0.80888 [11,] 21 7 7 0.01415 -0.19675 0.84402 [12,] 32 4 60 0.03061 0.28 0.77948 [13,] 31 4 44 0.02849 0.32924 0.74197 [14,] 51 1 27 0.01439 0.54107 0.58846 [15,] 63 13 44 0.01655 0.97888 0.32764 [16,] 51 1 35 0.03015 0.99304 0.32069 [17,] 51 1 44 0.01772 1.23893 0.21537 [18,] 62 2 35 0.01149 1.95154 0.05099 > > set.seed(seed) > score.hla.respcat.adj <- haplo.score(hla.respcat, geno.hla, trait.type="ordinal", + locus.label=hla.label, miss.val=0, + simulate=FALSE, min.count=5, + offset=NA, x.adj=hla.sex) > > print(score.hla.respcat) -------------------------------------------------------------------------------- Haplotype Effect Model: additive -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- Global Score Statistics -------------------------------------------------------------------------------- global-stat = 19.00536, df = 18, p-val = 0.39149 -------------------------------------------------------------------------------- Haplotype-specific Scores -------------------------------------------------------------------------------- DQB DRB HLA.B Hap-Freq Hap-Score p-val [1,] 32 4 62 0.02349 -2.17153 0.02989 [2,] 21 3 8 0.10421 -1.34215 0.17955 [3,] 63 13 7 0.01349 -1.27538 0.20218 [4,] 62 2 7 0.04904 -1.1646 0.24418 [5,] 21 7 44 0.02149 -1.11045 0.2668 [6,] 62 2 18 0.01538 -0.37326 0.70896 [7,] 32 4 7 0.02044 -0.32526 0.74498 [8,] 63 2 7 0.01364 -0.31495 0.7528 [9,] 31 11 35 0.01753 -0.25543 0.79839 [10,] 62 2 44 0.01378 -0.24187 0.80888 [11,] 21 7 7 0.01415 -0.19675 0.84402 [12,] 32 4 60 0.03061 0.28 0.77948 [13,] 31 4 44 0.02849 0.32924 0.74197 [14,] 51 1 27 0.01439 0.54107 0.58846 [15,] 63 13 44 0.01655 0.97888 0.32764 [16,] 51 1 35 0.03015 0.99304 0.32069 [17,] 51 1 44 0.01772 1.23893 0.21537 [18,] 62 2 35 0.01149 1.95154 0.05099 > > if(verbose) cat("snap SNP data with binary trait to test dominance,recessive\n") snap SNP data with binary trait to test dominance,recessive > snapDF <- read.table("snapData.csv",header=TRUE, sep=",") > y.bin <- snapDF[,1]-1 > geno <- setupGeno(geno=snapDF[,-1]) > > set.seed(seed) > y.ord <- sample(c("low", "med", "hi"), size=nrow(snapDF), prob=c(.3,.4,.3), replace=TRUE) > #table(y.ord) > geno.rec <- setupGeno(snapDF[,-c(1:9)]) > set.seed(seed) > hcount=5 > ##additive, min.count set to hcount > bin.snap.add <- haplo.score(y=y.bin, geno=geno.rec, trait.type="binomial", + min.count=hcount, + simulate=TRUE, haplo.effect="add", + sim.control=score.sim.control(min.sim=200,max.sim=500)) > > print(bin.snap.add) -------------------------------------------------------------------------------- Haplotype Effect Model: add -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- Global Score Statistics -------------------------------------------------------------------------------- global-stat = 14.64014, df = 4, p-val = 0.00551 -------------------------------------------------------------------------------- Global Simulation p-value Results -------------------------------------------------------------------------------- Global sim. p-val = 0.002 Max-Stat sim. p-val = 0.04 Number of Simulations, Global: 500 , Max-Stat: 500 -------------------------------------------------------------------------------- Haplotype-specific Scores -------------------------------------------------------------------------------- loc-1 loc-2 loc-3 Hap-Freq Hap-Score p-val sim p-val [1,] 1 1 2 0.37639 -1.97705 0.04804 0.038 [2,] 2 1 1 0.17814 -1.64787 0.09938 0.096 [3,] 1 1 1 0.12274 0.166 0.86816 0.882 [4,] 2 2 1 0.10452 2.14605 0.03187 0.024 [5,] 2 2 2 0.21821 2.78766 0.00531 0.014 > > ## additive > set.seed(seed) > bin.snap.dom <- haplo.score(y=y.bin, geno=geno.rec, trait.type="binomial", + min.count=hcount, simulate=TRUE, haplo.effect="dom", + sim.control=score.sim.control(min.sim=200,max.sim=500)) > > print(bin.snap.dom) -------------------------------------------------------------------------------- Haplotype Effect Model: dom -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- Global Score Statistics -------------------------------------------------------------------------------- global-stat = 15.94484, df = 5, p-val = 0.007 -------------------------------------------------------------------------------- Global Simulation p-value Results -------------------------------------------------------------------------------- Global sim. p-val = 0.008 Max-Stat sim. p-val = 0.054 Number of Simulations, Global: 500 , Max-Stat: 500 -------------------------------------------------------------------------------- Haplotype-specific Scores -------------------------------------------------------------------------------- loc-1 loc-2 loc-3 Hap-Freq Hap-Score p-val sim p-val [1,] 2 1 1 0.17814 -1.50448 0.13246 0.132 [2,] 1 1 2 0.37639 -1.15854 0.24665 0.246 [3,] 1 1 1 0.12274 0.67606 0.499 0.52 [4,] 2 2 1 0.10452 2.38633 0.01702 0.016 [5,] 2 2 2 0.21821 2.55803 0.01053 0.024 > > ## recessive > set.seed(seed) > bin.snap.rec <- haplo.score(y=y.bin, geno=geno.rec, trait.type="binomial", + min.count=hcount, simulate=TRUE, + haplo.effect="rec", + sim.control=score.sim.control(min.sim=200,max.sim=500)) > > print(bin.snap.rec) -------------------------------------------------------------------------------- Haplotype Effect Model: rec -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- Global Score Statistics -------------------------------------------------------------------------------- global-stat = 9.04791, df = 3, p-val = 0.02866 -------------------------------------------------------------------------------- Global Simulation p-value Results -------------------------------------------------------------------------------- Global sim. p-val = 0.03493 Max-Stat sim. p-val = 0.0655 Number of Simulations, Global: 458 , Max-Stat: 458 -------------------------------------------------------------------------------- Haplotype-specific Scores -------------------------------------------------------------------------------- loc-1 loc-2 loc-3 Hap-Freq Hap-Score p-val sim p-val [1,] 1 1 2 0.37639 -2.24407 0.02483 0.01528 [2,] 2 1 1 0.17814 -1.10376 0.2697 0.28821 [3,] 2 2 2 0.21821 1.74409 0.08114 0.05895 > > ## ordinal, additive > > set.seed(seed) > ord.snap.add <- haplo.score(y=y.ord, geno=geno.rec, trait.type="ordinal", + min.count=hcount, simulate=TRUE, haplo.effect="add", + sim.control=score.sim.control(min.sim=200,max.sim=500)) > > print(ord.snap.add) -------------------------------------------------------------------------------- Haplotype Effect Model: add -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- Global Score Statistics -------------------------------------------------------------------------------- global-stat = 6.46263, df = 4, p-val = 0.16716 -------------------------------------------------------------------------------- Global Simulation p-value Results -------------------------------------------------------------------------------- Global sim. p-val = 0.185 Max-Stat sim. p-val = 0.275 Number of Simulations, Global: 200 , Max-Stat: 200 -------------------------------------------------------------------------------- Haplotype-specific Scores -------------------------------------------------------------------------------- loc-1 loc-2 loc-3 Hap-Freq Hap-Score p-val sim p-val [1,] 1 1 1 0.12274 -1.81525 0.06948 0.09 [2,] 2 1 1 0.17814 -1.20029 0.23003 0.235 [3,] 1 1 2 0.37639 0.42687 0.66947 0.64 [4,] 2 2 1 0.10452 0.94294 0.34571 0.345 [5,] 2 2 2 0.21821 1.60922 0.10757 0.105 > > set.seed(seed) > ord.snap.add.adj <- haplo.score(y=y.ord, geno=geno.rec, trait.type="ordinal", + min.count=hcount, simulate=TRUE, haplo.effect="add", x.adj=hla.sex, + sim.control=score.sim.control(min.sim=200,max.sim=500)) > > print(ord.snap.add.adj) -------------------------------------------------------------------------------- Haplotype Effect Model: add -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- Global Score Statistics -------------------------------------------------------------------------------- global-stat = 6.48952, df = 4, p-val = 0.16545 -------------------------------------------------------------------------------- Global Simulation p-value Results -------------------------------------------------------------------------------- Global sim. p-val = 0.185 Max-Stat sim. p-val = 0.275 Number of Simulations, Global: 200 , Max-Stat: 200 -------------------------------------------------------------------------------- Haplotype-specific Scores -------------------------------------------------------------------------------- loc-1 loc-2 loc-3 Hap-Freq Hap-Score p-val sim p-val [1,] 1 1 1 0.12274 -1.80461 0.07114 0.085 [2,] 2 1 1 0.17814 -1.20986 0.22633 0.23 [3,] 1 1 2 0.37639 0.41315 0.6795 0.645 [4,] 2 2 1 0.10452 0.97633 0.3289 0.325 [5,] 2 2 2 0.21821 1.60727 0.108 0.105 > > > > > > proc.time() user system elapsed 15.536 0.438 16.526 haplo.stats/tests/expanded/dump.varx.s0000644000176200001440002314755114672315243017605 0ustar liggesusers"varx" <- matrix(c(0.001960297231393539, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100709059e-06 , -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.690598709053238e-05, -9.6423867751772722e-05, -2.4105966937943272e-06, -4.8211933875886112e-07, -1.4463580162766105e-06, -4.8211933875886849e-06, -3.8569547100709587e-05, -9.6423867751772245e-07, -4.4354979165815103e-05, -4.8211933875886122e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100709587e-05, -3.8569547100709587e-05, -3.8569547100708898e-06, -0.00010944108989826051, -9.6423867751772202e-07, -9.6423867751773969e-05, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100709093e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708873e-06, -2.4105966937943272e-06, -1.4463580162766115e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886112e-07, -7.2317900813830629e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488296759e-06, -3.8569547100708898e-06, -7.2317900813830375e-06, -9.6423867751772224e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886747e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886112e-07, -3.8569547100708898e-06, -8.1960287589005607e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -1.5427818840283549e-05, -1.2052983468971621e-05, -3.8569547100708898e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -1.928477355035444e-06, -3.8569547100708898e-06, -4.8211933875886764e-06, -5.303312726347438e-06, -1.928477355035444e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772202e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -3.8569547100708898e-06, -9.6423867751772224e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -1.1570864130212884e-05, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -8.6781480976595365e-06, -1.9284773550354449e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -6.2675514038650654e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.0498024455744671e-05, -3.8569547100708898e-06, -4.2426501810779551e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -3.8569547100709343e-05, -7.7139094201417779e-06, -3.9051666439468291e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417762e-06, -1.9284773550354462e-06, -4.0498024455744657e-05, -3.8569547100709587e-05, -3.856954710070931e-05, -3.8569547100709411e-05, -4.8211933875886112e-07, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708889e-06, -4.8211933875886916e-06, -9.6423867751773596e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -3.8569547100708889e-06, -1.1570864130212896e-05, -1.4463580162766327e-06, -4.242650181077989e-05, -7.7139094201417779e-06, -3.4712592390637611e-05, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971494e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.3748353713120232e-06, -1.928477355035444e-06, -9.6423867751772224e-07, -3.4712592390637597e-05, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.4712592390637597e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.821193387588673e-06, -1.4463580162766115e-06, -3.8569547100708898e-06, -7.2317900813830171e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.8927160325532391e-06, -1.4463580162766295e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -1.2535102807730202e-05, -1.1088744791453777e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -3.8569547100708889e-06, -2.8927160325532451e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100709411e-05, -3.856954710070931e-05, -7.8103332878936839e-05, -3.856954710070931e-05, -3.8569547100709343e-05, -1.928477355035444e-06, -9.6423867751772245e-07, -3.8569547100708873e-06, -4.3390740488296675e-06, -1.928477355035444e-06, -5.3033127263474685e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -7.8103332878936662e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.4463580162766115e-06, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -1.928477355035444e-06, -5.7854320651064512e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -8.6781480976593892e-06, -4.8211933875886122e-07, -1.9284773550354428e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.4105966937943378e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -2.8927160325532239e-06, -4.0980143794503334e-05, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -2.2177489582907487e-05, -4.8211933875886544e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708881e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -0.00014801063699897371, -3.8569547100708889e-06, -9.6423867751773318e-05, -3.8569547100708898e-06, -9.6423867751772224e-07, -2.8927160325531882e-05, -5.7854320651064495e-06, -2.4105966937943348e-06, -2.8927160325532211e-05, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.8103332878936662e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00011040532857577866, -1.4463580162766105e-06, -9.6423867751773399e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.8103332878936839e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.3017222146489201e-05, -4.6283456520851582e-05, -3.8569547100708898e-06, -3.4230473051878576e-05, -5.7854320651064418e-06, -5.7854320651064418e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -4.821193387588695e-06, -3.8569547100708881e-06, -4.8211933875886832e-06, -1.0124506113936161e-05, -3.8569547100708898e-06, -2.4105966937943441e-06, -1.108874479145373e-05, -3.8569547100708898e-06, -5.7854320651064495e-06, -1.4463580162766302e-06, -2.410596693794334e-06, -9.6423867751772202e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -3.8569547100709093e-06, -5.7854320651062868e-06, -2.8927160325531811e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -1.1570864130212892e-05, -3.8569547100708898e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488298665e-06, -1.6392057517801199e-05, -9.6423867751772181e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -4.3390740488296963e-06, -1.2535102807730509e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, 0.001960297231393539, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -8.1960287589005115e-06, -1.4463580162765948e-05, -5.7854320651064495e-06, -2.8927160325532391e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -7.7139094201417779e-06, -1.157086413021289e-05, -3.8569547100708881e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -5.7854320651064478e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.3390740488298123e-06, -2.4105966937943416e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.471259239063757e-05, -1.9284773550354462e-06, -4.8211933875886122e-07, -2.8927160325531882e-05, -3.8569547100708898e-06, -2.3141728260426126e-05, -2.3141728260425784e-05, -2.4105966937943238e-05, -2.3141728260426126e-05, -1.9284773550354453e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -4.8211933875886101e-07, -3.8569547100708881e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.3748353713120096e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.9409279664290792e-05, -9.6423867751772224e-07, -3.4712592390637597e-05, -3.4712592390637597e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.4712592390637611e-05, -3.4712592390637543e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.4463580162766115e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, 0.001960297231393539, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6905987090532136e-05, -9.6423867751772437e-05, -2.410596693794323e-06, -4.8211933875886112e-07, -1.4463580162766043e-06, -4.8211933875886764e-06, -3.856954710070952e-05, -9.6423867751772245e-07, -4.4354979165815252e-05, -4.8211933875886122e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.856954710070952e-05, -3.856954710070952e-05, -3.8569547100708898e-06, -0.0001094410898982608, -9.6423867751772202e-07, -9.6423867751773697e-05, -7.7139094201417762e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708873e-06, -2.410596693794323e-06, -1.4463580162766054e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886112e-07, -7.2317900813830426e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488296963e-06, -3.8569547100708898e-06, -7.2317900813830188e-06, -9.6423867751772224e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886662e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886112e-07, -3.8569547100708898e-06, -8.1960287589005759e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -1.5427818840283549e-05, -1.2052983468971587e-05, -3.8569547100708898e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -1.928477355035444e-06, -3.8569547100708898e-06, -4.8211933875886679e-06, -5.3033127263474439e-06, -1.928477355035444e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772202e-07, -3.8569547100708889e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -3.8569547100708898e-06, -9.6423867751772224e-07, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -1.1570864130212833e-05, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.9284773550354449e-06, -8.6781480976595772e-06, -1.9284773550354449e-06, -4.8211933875886112e-07, -9.6423867751772245e-07, -6.2675514038650925e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.0498024455744671e-05, -3.8569547100708898e-06, -4.2426501810779592e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -3.8569547100709276e-05, -7.7139094201417779e-06, -3.9051666439468236e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417762e-06, -1.9284773550354453e-06, -4.0498024455744657e-05, -3.856954710070952e-05, -3.8569547100709242e-05, -3.8569547100709343e-05, -4.8211933875886112e-07, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708889e-06, -4.8211933875886849e-06, -9.642386775177346e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -3.8569547100708889e-06, -1.1570864130212845e-05, -1.4463580162766268e-06, -4.2426501810779931e-05, -7.7139094201417779e-06, -3.471259239063776e-05, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.205298346897146e-05, -7.7139094201417813e-06, -3.8569547100708898e-06, -3.3748353713120308e-06, -1.928477355035444e-06, -9.6423867751772224e-07, -3.471259239063776e-05, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.4712592390637746e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886629e-06, -1.4463580162766054e-06, -3.8569547100708898e-06, -7.2317900813829968e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.8927160325532264e-06, -1.4463580162766234e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -1.2535102807730195e-05, -1.1088744791453818e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -3.8569547100708898e-06, -2.8927160325532332e-06, -9.6423867751772266e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100709343e-05, -3.8569547100709242e-05, -7.810333287893673e-05, -3.8569547100709242e-05, -3.8569547100709276e-05, -1.928477355035444e-06, -9.6423867751772245e-07, -3.8569547100708873e-06, -4.3390740488296861e-06, -1.928477355035444e-06, -5.3033127263474736e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.810333287893654e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.4463580162766054e-06, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -1.928477355035444e-06, -5.7854320651064249e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -8.6781480976594264e-06, -4.8211933875886122e-07, -1.9284773550354428e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.4105966937943335e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -2.8927160325532099e-06, -4.0980143794503334e-05, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -2.2177489582907555e-05, -4.8211933875886459e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708881e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -0.00014801063699897303, -3.8569547100708898e-06, -9.6423867751773047e-05, -3.8569547100708898e-06, -9.6423867751772224e-07, -2.8927160325531808e-05, -5.7854320651064232e-06, -2.4105966937943306e-06, -2.892716032553213e-05, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.810333287893654e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00011040532857577898, -1.4463580162766045e-06, -9.6423867751773128e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.810333287893673e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.3017222146489205e-05, -4.6283456520851386e-05, -3.8569547100708898e-06, -3.4230473051878725e-05, -5.7854320651064181e-06, -5.7854320651064181e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -4.8211933875886866e-06, -3.8569547100708881e-06, -4.8211933875886747e-06, -1.0124506113936158e-05, -3.8569547100708898e-06, -2.4105966937943407e-06, -1.1088744791453767e-05, -3.8569547100708898e-06, -5.7854320651064232e-06, -1.4463580162766238e-06, -2.4105966937943306e-06, -9.6423867751772202e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -5.7854320651062784e-06, -2.8927160325531692e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -1.1570864130212843e-05, -3.8569547100708898e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488298394e-06, -1.6392057517801213e-05, -9.6423867751772202e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -4.3390740488297166e-06, -1.2535102807730502e-05, 0.001960297231393539, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -8.1960287589005268e-06, -1.4463580162765911e-05, -5.7854320651064232e-06, -2.8927160325532264e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -7.7139094201417779e-06, -1.1570864130212838e-05, -3.8569547100708881e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -5.7854320651064224e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.339074048829831e-06, -2.4105966937943365e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -3.4712592390637719e-05, -1.9284773550354453e-06, -4.8211933875886122e-07, -2.8927160325531801e-05, -3.8569547100708898e-06, -2.3141728260426028e-05, -2.3141728260425679e-05, -2.4105966937943167e-05, -2.3141728260426028e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -4.8211933875886101e-07, -3.8569547100708889e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.3748353713120245e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.9409279664290724e-05, -9.6423867751772224e-07, -3.4712592390637746e-05, -3.471259239063776e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.471259239063776e-05, -3.4712592390637692e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.446358016276605e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, 0.001960297231393539, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6905987090532245e-05, -9.6423867751772545e-05, -2.4105966937943221e-06, -4.8211933875886122e-07, -1.4463580162766056e-06, -4.8211933875886747e-06, -3.8569547100709506e-05, -9.6423867751772245e-07, -4.4354979165815197e-05, -4.8211933875886133e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100709506e-05, -3.8569547100709506e-05, -3.8569547100708898e-06, -0.00010944108989826069, -9.6423867751772224e-07, -9.6423867751773806e-05, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708881e-06, -2.4105966937943221e-06, -1.4463580162766066e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -7.2317900813830493e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488296895e-06, -3.8569547100708906e-06, -7.2317900813830256e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886645e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -8.1960287589005793e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.20529834689716e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -4.8211933875886662e-06, -5.3033127263474456e-06, -1.9284773550354445e-06, -7.7139094201417762e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708889e-06, -1.1570864130212843e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -8.6781480976595637e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -6.2675514038650823e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.0498024455744671e-05, -3.8569547100708906e-06, -4.2426501810779606e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -3.8569547100709262e-05, -7.7139094201417796e-06, -3.9051666439468223e-05, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354453e-06, -4.0498024455744657e-05, -3.8569547100709506e-05, -3.8569547100709228e-05, -3.856954710070933e-05, -4.8211933875886122e-07, -1.9284773550354449e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886815e-06, -9.6423867751773393e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -1.1570864130212855e-05, -1.4463580162766276e-06, -4.2426501810779944e-05, -7.7139094201417796e-06, -3.4712592390637719e-05, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.2052983468971473e-05, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.3748353713120274e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390637706e-05, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.4712592390637706e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886629e-06, -1.4463580162766066e-06, -3.8569547100708906e-06, -7.2317900813830036e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -2.8927160325532298e-06, -1.4463580162766246e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730192e-05, -1.1088744791453804e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -2.8927160325532357e-06, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.856954710070933e-05, -3.8569547100709228e-05, -7.8103332878936703e-05, -3.8569547100709228e-05, -3.8569547100709262e-05, -1.9284773550354445e-06, -9.6423867751772245e-07, -3.8569547100708881e-06, -4.339074048829681e-06, -1.9284773550354445e-06, -5.3033127263474753e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.8103332878936513e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4463580162766066e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.78543206510643e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -8.6781480976594163e-06, -4.8211933875886133e-07, -1.9284773550354428e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943327e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325532133e-06, -4.0980143794503334e-05, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -2.2177489582907528e-05, -4.8211933875886442e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897328, -3.8569547100708898e-06, -9.6423867751773155e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.8927160325531828e-05, -5.7854320651064283e-06, -2.4105966937943297e-06, -2.8927160325532157e-05, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936513e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.0001104053285757789, -1.4463580162766058e-06, -9.6423867751773237e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936703e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489212e-05, -4.6283456520851426e-05, -3.8569547100708906e-06, -3.4230473051878671e-05, -5.7854320651064215e-06, -5.7854320651064215e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -4.8211933875886849e-06, -3.8569547100708889e-06, -4.821193387588673e-06, -1.0124506113936158e-05, -3.8569547100708906e-06, -2.410596693794339e-06, -1.1088744791453754e-05, -3.8569547100708906e-06, -5.7854320651064283e-06, -1.4463580162766251e-06, -2.4105966937943289e-06, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -5.7854320651062716e-06, -2.8927160325531718e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.157086413021285e-05, -3.8569547100708906e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488298547e-06, 0.0019477621285858093, -9.6423867751772224e-07, -3.8569547100708889e-06, -3.8569547100708906e-06, -4.3390740488297098e-06, -1.2535102807730498e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -8.1960287589005302e-06, -1.4463580162765921e-05, -5.7854320651064283e-06, -2.8927160325532298e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -7.7139094201417796e-06, -1.1570864130212848e-05, -3.8569547100708889e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651064274e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.3390740488298259e-06, -2.4105966937943365e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -3.4712592390637665e-05, -1.9284773550354453e-06, -4.8211933875886133e-07, -2.8927160325531828e-05, -3.8569547100708906e-06, -2.3141728260426049e-05, -2.31417282604257e-05, -2.4105966937943197e-05, -2.3141728260426049e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.3748353713120177e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.9409279664290751e-05, -9.6423867751772245e-07, -3.4712592390637706e-05, -3.4712592390637706e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390637719e-05, -3.4712592390637652e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.4463580162766062e-06, -7.7139094201417813e-06, -3.8569547100709059e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, 0.001960297231393539, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6905987090532353e-05, -9.6423867751772654e-05, -2.410596693794328e-06, -4.8211933875886112e-07, -1.44635801627661e-06, -4.8211933875886866e-06, -3.8569547100709587e-05, -9.6423867751772245e-07, -4.435497916581513e-05, -4.8211933875886122e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100709587e-05, -3.8569547100709587e-05, -3.8569547100708898e-06, -0.00010944108989826053, -9.6423867751772202e-07, -9.6423867751773941e-05, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100709059e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708873e-06, -2.410596693794328e-06, -1.4463580162766111e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886112e-07, -7.2317900813830595e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488296776e-06, -3.8569547100708898e-06, -7.2317900813830358e-06, -9.6423867751772224e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886756e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886112e-07, -3.8569547100708898e-06, -8.1960287589005607e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -1.5427818840283549e-05, -1.2052983468971614e-05, -3.8569547100708898e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -1.928477355035444e-06, -3.8569547100708898e-06, -4.8211933875886772e-06, -5.303312726347438e-06, -1.928477355035444e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772202e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -3.8569547100708898e-06, -9.6423867751772224e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -1.1570864130212877e-05, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -8.6781480976595399e-06, -1.9284773550354449e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -6.2675514038650654e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.0498024455744671e-05, -3.8569547100708898e-06, -4.2426501810779551e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -3.856954710070935e-05, -7.7139094201417779e-06, -3.9051666439468304e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417762e-06, -1.9284773550354462e-06, -4.0498024455744657e-05, -3.8569547100709587e-05, -3.8569547100709323e-05, -3.8569547100709418e-05, -4.8211933875886112e-07, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708889e-06, -4.8211933875886933e-06, -9.642386775177363e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -3.8569547100708889e-06, -1.1570864130212892e-05, -1.4463580162766323e-06, -4.242650181077989e-05, -7.7139094201417779e-06, -3.4712592390637624e-05, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.205298346897149e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.374835371312024e-06, -1.928477355035444e-06, -9.6423867751772224e-07, -3.4712592390637611e-05, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.4712592390637611e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.821193387588673e-06, -1.4463580162766115e-06, -3.8569547100708898e-06, -7.2317900813830138e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.8927160325532383e-06, -1.4463580162766291e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -1.2535102807730202e-05, -1.1088744791453784e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -3.8569547100708889e-06, -2.8927160325532451e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100709418e-05, -3.8569547100709323e-05, -7.8103332878936839e-05, -3.8569547100709323e-05, -3.856954710070935e-05, -1.928477355035444e-06, -9.6423867751772245e-07, -3.8569547100708873e-06, -4.3390740488296692e-06, -1.928477355035444e-06, -5.3033127263474685e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -7.8103332878936676e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.4463580162766111e-06, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -1.928477355035444e-06, -5.7854320651064495e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -8.6781480976593926e-06, -4.8211933875886122e-07, -1.9284773550354428e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.4105966937943386e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -2.8927160325532222e-06, -4.0980143794503334e-05, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -2.2177489582907494e-05, -4.8211933875886561e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708881e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -0.00014801063699897366, -3.8569547100708889e-06, -9.6423867751773291e-05, -3.8569547100708898e-06, -9.6423867751772224e-07, -2.8927160325531875e-05, -5.7854320651064461e-06, -2.4105966937943357e-06, -2.8927160325532197e-05, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.8103332878936676e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00011040532857577868, -1.44635801627661e-06, -9.6423867751773345e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.8103332878936839e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.3017222146489201e-05, -4.6283456520851569e-05, -3.8569547100708898e-06, -3.4230473051878596e-05, -5.7854320651064384e-06, -5.7854320651064384e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -4.8211933875886967e-06, -3.8569547100708881e-06, -4.8211933875886849e-06, -1.0124506113936161e-05, -3.8569547100708898e-06, -2.410596693794345e-06, -1.1088744791453733e-05, -3.8569547100708898e-06, -5.7854320651064461e-06, -1.4463580162766293e-06, -2.4105966937943348e-06, -9.6423867751772202e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -3.8569547100709059e-06, -5.7854320651062851e-06, -2.8927160325531803e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -1.1570864130212884e-05, -3.8569547100708898e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, 0.001959815112054781, -1.6392057517801199e-05, -9.6423867751772181e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -4.339074048829698e-06, -1.2535102807730509e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100709059e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -8.1960287589005115e-06, -1.4463580162765945e-05, -5.7854320651064461e-06, -2.8927160325532383e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -7.7139094201417779e-06, -1.1570864130212887e-05, -3.8569547100708881e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -5.7854320651064461e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.339074048829814e-06, -2.4105966937943416e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.4712592390637584e-05, -1.9284773550354462e-06, -4.8211933875886122e-07, -2.8927160325531869e-05, -3.8569547100708898e-06, -2.314172826042612e-05, -2.3141728260425778e-05, -2.4105966937943228e-05, -2.314172826042612e-05, -1.9284773550354453e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -4.8211933875886101e-07, -3.8569547100708881e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.3748353713120123e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.9409279664290779e-05, -9.6423867751772224e-07, -3.4712592390637611e-05, -3.4712592390637611e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.4712592390637624e-05, -3.4712592390637557e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.4463580162766111e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, 0.00098111285437428629, -9.6423867751772287e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -2.4105966937943072e-07, -4.8452993545265811e-05, -4.8211933875885934e-05, -1.2052983468971534e-06, -2.4105966937943066e-07, -7.2317900813829464e-07, -2.4105966937943221e-06, -1.9284773550354624e-05, -4.8211933875886144e-07, -2.2177489582907792e-05, -2.4105966937943072e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354624e-05, -1.9284773550354624e-05, -1.9284773550354449e-06, -5.4720544949130727e-05, -4.8211933875886122e-07, -4.8211933875886578e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.928477355035444e-06, -1.2052983468971534e-06, -7.2317900813829507e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -3.6158950406915001e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.1695370244148723e-06, -1.9284773550354457e-06, -3.615895040691487e-06, -4.8211933875886133e-07, -2.4105966937943061e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.9284773550354457e-06, -3.8569547100708915e-06, -2.4105966937943166e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -2.4105966937943066e-07, -1.9284773550354457e-06, -4.0980143794503159e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -7.7139094201417779e-06, -6.026491734485757e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -2.4105966937943174e-06, -2.6516563631737321e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -2.4105966937943061e-07, -1.9284773550354457e-06, -4.8211933875886133e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -5.7854320651063571e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -4.33907404882977e-06, -9.6423867751772287e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -3.133775701932611e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -2.0249012227872308e-05, -1.9284773550354457e-06, -2.1213250905389884e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -1.9284773550354506e-05, -3.8569547100708906e-06, -1.9525833219734017e-05, -2.4105966937943072e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -2.0249012227872302e-05, -1.9284773550354624e-05, -1.9284773550354492e-05, -1.928477355035454e-05, -2.4105966937943066e-07, -9.6423867751772245e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -2.4105966937943255e-06, -4.8211933875886391e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -5.7854320651063622e-06, -7.2317900813830576e-07, -2.121325090539005e-05, -3.8569547100708906e-06, -1.735629619531908e-05, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857621e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.6874176856560226e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -1.7356296195319073e-05, -4.8211933875886133e-07, -9.6423867751772287e-07, 0.00098111285437428629, -1.7356296195319073e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -2.4105966937943153e-06, -7.2317900813829507e-07, -1.9284773550354457e-06, -3.6158950406914768e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.4463580162765982e-06, -7.2317900813830407e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -6.2675514038652034e-06, -5.5443723957269505e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.4463580162766011e-06, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.928477355035454e-05, -1.9284773550354492e-05, -3.9051666439468141e-05, -1.9284773550354492e-05, -1.9284773550354506e-05, -9.6423867751772245e-07, -4.8211933875886144e-07, -1.9284773550354445e-06, -2.1695370244148676e-06, -9.6423867751772245e-07, -2.6516563631737469e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.8569547100708898e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.905166643946806e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -7.2317900813829507e-07, -2.4105966937943066e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -9.6423867751772245e-07, -2.8927160325531828e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297632e-06, -2.4105966937943072e-07, -9.6423867751772202e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.2052983468971587e-06, -9.6423867751772287e-07, -4.8211933875886133e-07, -1.4463580162765897e-06, -2.0490071897251667e-05, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.1088744791453855e-05, -2.4105966937943069e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.4005318499485758e-05, -1.9284773550354453e-06, -4.8211933875886246e-05, -1.9284773550354457e-06, -4.8211933875886133e-07, -1.4463580162765819e-05, -2.892716032553182e-06, -1.2052983468971568e-06, -1.4463580162765978e-05, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.905166643946806e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -5.520266428788983e-05, -7.2317900813829464e-07, -4.8211933875886286e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.9051666439468141e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -6.508611073244616e-06, -2.3141728260425449e-05, -1.9284773550354457e-06, -1.7115236525939522e-05, -2.8927160325531803e-06, -2.8927160325531803e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943263e-06, -1.9284773550354449e-06, -2.4105966937943213e-06, -5.0622530569680737e-06, -1.9284773550354457e-06, -1.2052983468971619e-06, -5.5443723957269242e-06, -1.9284773550354457e-06, -2.892716032553182e-06, -7.2317900813830438e-07, -1.2052983468971568e-06, -4.8211933875886122e-07, -2.4105966937943066e-07, -2.4105966937943072e-07, -1.9284773550354449e-06, -2.8927160325531692e-06, -1.4463580162765889e-06, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -3.8569547100708898e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -1.9284773550354449e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -5.7854320651063605e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.1695370244148909e-06, -8.1960287589006742e-06, -4.8211933875886112e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -2.1695370244148824e-06, -6.2675514038652373e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -2.4105966937943066e-07, -4.8211933875886144e-07, -4.0980143794502913e-06, -7.231790081382913e-06, -2.892716032553182e-06, -1.4463580162765982e-06, -2.4105966937943072e-07, -9.6423867751772287e-07, -3.8569547100708906e-06, -5.7854320651063597e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -2.8927160325531811e-06, -1.9284773550354457e-06, -2.4105966937943061e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.1695370244148875e-06, -1.2052983468971602e-06, -1.9284773550354453e-06, -3.8569547100708915e-06, -1.7356296195319053e-05, -9.6423867751772245e-07, -2.4105966937943072e-07, -1.4463580162765816e-05, -1.9284773550354457e-06, -1.1570864130212894e-05, -1.1570864130212721e-05, -1.2052983468971514e-05, -1.1570864130212894e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.6874176856560245e-05, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4704639832145305e-05, -4.8211933875886133e-07, -1.7356296195319073e-05, -1.7356296195319073e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.735629619531908e-05, -1.7356296195319046e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.2317900813829528e-07, -3.8569547100708915e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, 0.00098111285437428629, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -2.4105966937943072e-07, -4.8452993545265824e-05, -4.8211933875885947e-05, -1.2052983468971534e-06, -2.4105966937943066e-07, -7.2317900813829464e-07, -2.4105966937943221e-06, -1.9284773550354624e-05, -4.8211933875886144e-07, -2.2177489582907785e-05, -2.4105966937943072e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354624e-05, -1.9284773550354624e-05, -1.9284773550354449e-06, -5.4720544949130713e-05, -4.8211933875886122e-07, -4.8211933875886578e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.928477355035444e-06, -1.2052983468971534e-06, -7.2317900813829507e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -3.6158950406915009e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.1695370244148714e-06, -1.9284773550354457e-06, -3.6158950406914887e-06, -4.8211933875886133e-07, -2.4105966937943061e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.9284773550354457e-06, -3.8569547100708915e-06, -2.4105966937943166e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -2.4105966937943066e-07, -1.9284773550354457e-06, -4.0980143794503151e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -7.7139094201417779e-06, -6.0264917344857587e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -2.4105966937943174e-06, -2.6516563631737321e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -2.4105966937943061e-07, -1.9284773550354457e-06, -4.8211933875886133e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -5.7854320651063571e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -4.3390740488297717e-06, -9.6423867751772287e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -3.1337757019326093e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -2.0249012227872308e-05, -1.9284773550354457e-06, -2.1213250905389884e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -1.9284773550354506e-05, -3.8569547100708906e-06, -1.9525833219734017e-05, -2.4105966937943072e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -2.0249012227872302e-05, -1.9284773550354624e-05, -1.9284773550354492e-05, -1.928477355035454e-05, -2.4105966937943066e-07, -9.6423867751772245e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -2.4105966937943255e-06, -4.8211933875886391e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -5.7854320651063622e-06, -7.2317900813830576e-07, -2.121325090539005e-05, -3.8569547100708906e-06, -1.7356296195319073e-05, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857587e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.6874176856560222e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -1.7356296195319066e-05, -4.8211933875886133e-07, 0.00098111285437428629, -9.6423867751772287e-07, -1.7356296195319066e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -2.4105966937943153e-06, -7.2317900813829507e-07, -1.9284773550354457e-06, -3.6158950406914777e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.4463580162765982e-06, -7.2317900813830407e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -6.2675514038652017e-06, -5.5443723957269471e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.4463580162766011e-06, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.928477355035454e-05, -1.9284773550354492e-05, -3.9051666439468141e-05, -1.9284773550354492e-05, -1.9284773550354506e-05, -9.6423867751772245e-07, -4.8211933875886144e-07, -1.9284773550354445e-06, -2.1695370244148668e-06, -9.6423867751772245e-07, -2.6516563631737469e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.8569547100708898e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.905166643946806e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -7.2317900813829507e-07, -2.4105966937943066e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -9.6423867751772245e-07, -2.8927160325531828e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297615e-06, -2.4105966937943072e-07, -9.6423867751772202e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.2052983468971587e-06, -9.6423867751772287e-07, -4.8211933875886133e-07, -1.4463580162765897e-06, -2.0490071897251667e-05, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.1088744791453852e-05, -2.4105966937943069e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.4005318499485785e-05, -1.9284773550354453e-06, -4.8211933875886246e-05, -1.9284773550354457e-06, -4.8211933875886133e-07, -1.4463580162765819e-05, -2.892716032553182e-06, -1.2052983468971568e-06, -1.4463580162765982e-05, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.905166643946806e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -5.520266428788983e-05, -7.2317900813829464e-07, -4.8211933875886286e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.9051666439468141e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -6.508611073244616e-06, -2.3141728260425456e-05, -1.9284773550354457e-06, -1.7115236525939522e-05, -2.8927160325531803e-06, -2.8927160325531803e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943263e-06, -1.9284773550354449e-06, -2.4105966937943213e-06, -5.0622530569680737e-06, -1.9284773550354457e-06, -1.2052983468971619e-06, -5.5443723957269226e-06, -1.9284773550354457e-06, -2.892716032553182e-06, -7.2317900813830438e-07, -1.2052983468971568e-06, -4.8211933875886122e-07, -2.4105966937943066e-07, -2.4105966937943072e-07, -1.9284773550354449e-06, -2.8927160325531676e-06, -1.4463580162765893e-06, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -3.8569547100708898e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -1.9284773550354449e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -5.7854320651063605e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.1695370244148926e-06, -8.1960287589006775e-06, -4.8211933875886112e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -2.1695370244148816e-06, -6.2675514038652373e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -2.4105966937943066e-07, -4.8211933875886144e-07, -4.0980143794502905e-06, -7.2317900813829147e-06, -2.892716032553182e-06, -1.4463580162765982e-06, -2.4105966937943072e-07, -9.6423867751772287e-07, -3.8569547100708906e-06, -5.7854320651063597e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -2.8927160325531811e-06, -1.9284773550354457e-06, -2.4105966937943061e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.1695370244148884e-06, -1.2052983468971602e-06, -1.9284773550354453e-06, -3.8569547100708915e-06, -1.7356296195319046e-05, -9.6423867751772245e-07, -2.4105966937943072e-07, -1.4463580162765819e-05, -1.9284773550354457e-06, -1.1570864130212894e-05, -1.1570864130212721e-05, -1.2052983468971516e-05, -1.1570864130212894e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.6874176856560245e-05, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4704639832145308e-05, -4.8211933875886133e-07, -1.7356296195319066e-05, -1.7356296195319066e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.7356296195319073e-05, -1.7356296195319039e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.2317900813829528e-07, -3.8569547100708915e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, 0.0019602972313935386, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6905987090531648e-05, -9.6423867751771678e-05, -2.4105966937943043e-06, -4.8211933875886133e-07, -1.4463580162765891e-06, -4.8211933875886391e-06, -3.8569547100709228e-05, -9.6423867751772266e-07, -4.4354979165815584e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100709235e-05, -3.8569547100709221e-05, -3.8569547100708898e-06, -0.00010944108989826168, -9.6423867751772245e-07, -9.6423867751773155e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.4105966937943043e-06, -1.4463580162765901e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813829943e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297446e-06, -3.8569547100708915e-06, -7.2317900813829739e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.7139094201417813e-06, -4.8211933875886298e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -8.1960287589006301e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971512e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.8211933875886315e-06, -5.3033127263474676e-06, -1.9284773550354449e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212711e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976595027e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652475e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -4.049802445574463e-05, -3.8569547100708906e-06, -4.2426501810779782e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100708998e-05, -7.7139094201417796e-06, -3.9051666439468033e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.049802445574463e-05, -3.8569547100709228e-05, -3.8569547100708971e-05, -3.8569547100709072e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -4.8211933875886468e-06, -9.6423867751772698e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -1.1570864130212723e-05, -1.4463580162766115e-06, -4.24265018107801e-05, -7.7139094201417813e-06, -3.471259239063816e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971553e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120452e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390638146e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390638146e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886273e-06, -1.4463580162765901e-06, -3.8569547100708915e-06, -7.2317900813829485e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325531955e-06, -1.4463580162766079e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730461e-05, -1.1088744791453901e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532023e-06, -9.6423867751772266e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709072e-05, -3.8569547100708971e-05, -7.8103332878936283e-05, -3.8569547100708971e-05, -3.8569547100708998e-05, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297352e-06, -1.9284773550354449e-06, -5.3033127263474964e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.810333287893612e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162765901e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651063639e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.678148097659523e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943162e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325531794e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.2177489582907711e-05, -4.8211933875886086e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897152, -3.8569547100708906e-06, -9.6423867751772274e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -2.8927160325531611e-05, -5.7854320651063622e-06, -2.4105966937943119e-06, -2.892716032553193e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.810333287893612e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.0001104053285757798, -1.4463580162765893e-06, -9.6423867751772545e-05, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936283e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489232e-05, -4.6283456520850898e-05, -3.8569547100708915e-06, -3.423047305187905e-05, -5.7854320651063571e-06, -5.7854320651063571e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886493e-06, -3.8569547100708898e-06, -4.8211933875886408e-06, -1.0124506113936154e-05, -3.8569547100708915e-06, -2.4105966937943221e-06, -1.1088744791453848e-05, -3.8569547100708906e-06, -5.7854320651063622e-06, -1.4463580162766083e-06, -2.4105966937943119e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063605e-06, -2.8927160325532006e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.1570864130212718e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, 0.0019602972313935386, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297649e-06, -1.6392057517801365e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488297649e-06, -1.2535102807730471e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -8.1960287589005827e-06, -1.4463580162765819e-05, -5.7854320651063622e-06, -2.8927160325531955e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417813e-06, -1.1570864130212716e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651063614e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.3390740488297564e-06, -2.4105966937943183e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -3.4712592390638106e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531604e-05, -3.8569547100708906e-06, -2.3141728260425784e-05, -2.3141728260425435e-05, -2.4105966937943021e-05, -2.3141728260425784e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.3748353713120516e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.9409279664290589e-05, -9.6423867751772245e-07, -3.4712592390638146e-05, -3.4712592390638146e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.471259239063816e-05, -3.4712592390638092e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765901e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, 0.0019602972313935386, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6905987090531621e-05, -9.6423867751771759e-05, -2.4105966937943052e-06, -4.8211933875886133e-07, -1.4463580162765886e-06, -4.82119338758864e-06, -3.8569547100709235e-05, -9.6423867751772266e-07, -4.4354979165815597e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100709235e-05, -3.8569547100709235e-05, -3.8569547100708898e-06, -0.00010944108989826163, -9.6423867751772245e-07, -9.6423867751773101e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.4105966937943052e-06, -1.4463580162765897e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813829943e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297463e-06, -3.8569547100708915e-06, -7.2317900813829723e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.7139094201417813e-06, -4.8211933875886307e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -8.1960287589006318e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971509e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.8211933875886324e-06, -5.3033127263474676e-06, -1.9284773550354449e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212707e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976595061e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652475e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -4.049802445574463e-05, -3.8569547100708906e-06, -4.2426501810779768e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709011e-05, -7.7139094201417796e-06, -3.9051666439468033e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.049802445574463e-05, -3.8569547100709235e-05, -3.8569547100708978e-05, -3.8569547100709079e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -4.8211933875886476e-06, -9.6423867751772715e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -1.1570864130212719e-05, -1.4463580162766105e-06, -4.2426501810780093e-05, -7.7139094201417813e-06, -3.4712592390638173e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.205298346897155e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120465e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.471259239063816e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.471259239063816e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886281e-06, -1.4463580162765897e-06, -3.8569547100708915e-06, -7.2317900813829468e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325531955e-06, -1.4463580162766075e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730461e-05, -1.1088744791453904e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532014e-06, -9.6423867751772266e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709079e-05, -3.8569547100708978e-05, -7.8103332878936283e-05, -3.8569547100708978e-05, -3.8569547100709011e-05, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297369e-06, -1.9284773550354449e-06, -5.3033127263474956e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936134e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162765897e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651063622e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976595264e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943166e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325531786e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.2177489582907721e-05, -4.8211933875886103e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897146, -3.8569547100708906e-06, -9.6423867751772356e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -2.8927160325531598e-05, -5.7854320651063605e-06, -2.4105966937943128e-06, -2.8927160325531923e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936134e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577969, -1.4463580162765889e-06, -9.6423867751772491e-05, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936283e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489232e-05, -4.6283456520850884e-05, -3.8569547100708915e-06, -3.4230473051879064e-05, -5.7854320651063554e-06, -5.7854320651063554e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.821193387588651e-06, -3.8569547100708898e-06, -4.8211933875886408e-06, -1.0124506113936154e-05, -3.8569547100708915e-06, -2.4105966937943221e-06, -1.1088744791453855e-05, -3.8569547100708906e-06, -5.7854320651063605e-06, -1.4463580162766079e-06, -2.4105966937943119e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063571e-06, -2.8927160325532006e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.1570864130212714e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, 0.0019602972313935386, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297666e-06, -1.6392057517801369e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488297666e-06, -1.2535102807730471e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -8.1960287589005861e-06, -1.4463580162765816e-05, -5.7854320651063605e-06, -2.8927160325531955e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417813e-06, -1.1570864130212713e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651063597e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.3390740488297581e-06, -2.4105966937943187e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -3.4712592390638119e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531598e-05, -3.8569547100708906e-06, -2.3141728260425778e-05, -2.3141728260425429e-05, -2.4105966937943014e-05, -2.3141728260425778e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.3748353713120516e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.9409279664290575e-05, -9.6423867751772245e-07, -3.471259239063816e-05, -3.471259239063816e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390638173e-05, -3.4712592390638106e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765893e-06, -7.713909420141783e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, 0.00024545900834560633, -6.0264917344857653e-08, -1.211324838631652e-05, -1.2052983468971553e-05, -3.0132458672428973e-07, -6.0264917344857653e-08, -1.8079475203457535e-07, -6.0264917344858307e-07, -4.8211933875886798e-06, -1.2052983468971531e-07, -5.5443723957269082e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886798e-06, -4.8211933875886789e-06, -4.8211933875886112e-07, -1.3680136237282609e-05, -1.2052983468971528e-07, -1.2052983468971714e-05, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.8211933875886091e-07, -3.0132458672428968e-07, -1.8079475203457551e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857653e-08, -9.0397376017288e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -5.4238425610371225e-07, -4.8211933875886133e-07, -9.0397376017287735e-07, -1.2052983468971531e-07, -6.026491734485764e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971525e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -9.6423867751772245e-07, -6.0264917344858201e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -1.0245035948625709e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -1.928477355035444e-06, -1.5066229336214479e-06, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -2.4105966937943056e-07, -4.8211933875886133e-07, -6.0264917344858222e-07, -6.6291409079343166e-07, -2.4105966937943056e-07, -9.6423867751772202e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -9.6423867751772224e-07, -9.6423867751772224e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886112e-07, -1.4463580162766028e-06, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -1.0847685122074266e-06, -2.4105966937943066e-07, -6.0264917344857653e-08, -1.2052983468971533e-07, -7.8344392548315742e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -5.0622530569680856e-06, -4.8211933875886122e-07, -5.3033127263474575e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772224e-07, -4.8211933875886501e-06, -9.6423867751772245e-07, -4.8814583049335143e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772224e-07, -2.4105966937943056e-07, -5.0622530569680847e-06, -4.8211933875886798e-06, -4.8211933875886298e-06, -4.821193387588662e-06, -6.0264917344857653e-08, -2.4105966937943045e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -6.026491734485764e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.8211933875886122e-07, -6.0264917344858413e-07, -1.2052983468971653e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -4.8211933875886122e-07, -1.4463580162766043e-06, -1.8079475203457816e-07, -5.3033127263474956e-06, -9.6423867751772245e-07, -4.3390740488297234e-06, -6.0264917344857653e-08, -6.0264917344857666e-08, -1.5066229336214439e-06, -9.6423867751772266e-07, -4.8211933875886122e-07, -4.218544214140101e-07, -2.4105966937943056e-07, -1.2052983468971531e-07, -4.3390740488297217e-06, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.3390740488297217e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -6.0264917344858159e-07, -1.8079475203457551e-07, -4.8211933875886133e-07, -9.0397376017287397e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -6.0264917344857666e-08, -3.6158950406915304e-07, -1.807947520345713e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.5668878509663106e-06, -1.3860930989317277e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.6158950406915383e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.821193387588662e-06, -4.8211933875886298e-06, -9.762916609867076e-06, -4.8211933875886383e-06, -4.8211933875886501e-06, -2.4105966937943056e-07, -1.2052983468971531e-07, -4.8211933875886101e-07, -5.4238425610371119e-07, -2.4105966937943056e-07, -6.6291409079343504e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -9.7629166098670557e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -1.8079475203457554e-07, -6.0264917344857653e-08, -1.2052983468971533e-07, -1.2052983468971533e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -2.4105966937943056e-07, -7.2317900813830248e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -1.0847685122074287e-06, -6.0264917344857679e-08, -2.4105966937943045e-07, -1.2052983468971528e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.0132458672429122e-07, -2.4105966937943066e-07, -1.2052983468971531e-07, -3.6158950406915103e-07, -5.1225179743129167e-06, -6.0264917344857666e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857666e-08, -2.7721861978634439e-06, -6.0264917344857936e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.8501329624871626e-05, -4.8211933875886122e-07, -1.2052983468971629e-05, -4.8211933875886133e-07, -1.2052983468971531e-07, -3.615895040691473e-06, -7.2317900813830227e-07, -3.0132458672429063e-07, -3.6158950406915132e-06, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.7629166098670557e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.3800666071972352e-05, -1.8079475203457541e-07, -1.2052983468971641e-05, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971528e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.762916609867076e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.6271527683111519e-06, 0.00023973384119784543, -4.8211933875886133e-07, -4.2788091314848431e-06, -7.2317900813830163e-07, -7.2317900813830163e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -6.0264917344858444e-07, -4.8211933875886112e-07, -6.0264917344858349e-07, -1.2655632642420205e-06, -4.8211933875886133e-07, -3.0132458672429185e-07, -1.3860930989317201e-06, -4.8211933875886133e-07, -7.2317900813830227e-07, -1.8079475203457782e-07, -3.0132458672429058e-07, -1.2052983468971528e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -4.8211933875886112e-07, -7.2317900813830195e-07, -3.6158950406915367e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772224e-07, -1.4463580162766037e-06, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610371479e-07, -2.0490071897251546e-06, -1.2052983468971531e-07, -4.8211933875886112e-07, -4.8211933875886133e-07, -5.4238425610371479e-07, -1.5668878509662735e-06, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886112e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857653e-08, -6.026491734485764e-08, -6.0264917344857653e-08, -1.2052983468971533e-07, -1.0245035948625671e-06, -1.8079475203457384e-06, -7.2317900813830227e-07, -3.6158950406915304e-07, -6.0264917344857666e-08, -2.4105966937943066e-07, -9.6423867751772245e-07, -1.4463580162766037e-06, -4.8211933875886112e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -7.2317900813830216e-07, -4.8211933875886133e-07, -6.026491734485764e-08, -1.2052983468971528e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -5.4238425610371394e-07, -3.0132458672429143e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.3390740488297166e-06, -2.4105966937943056e-07, -6.0264917344857666e-08, -3.6158950406914722e-06, -4.8211933875886133e-07, -2.892716032553251e-06, -2.8927160325532074e-06, -3.0132458672428954e-06, -2.892716032553251e-06, -2.4105966937943056e-07, -2.4105966937943056e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -6.026491734485764e-08, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.218544214140034e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -3.6761599580363363e-06, -1.2052983468971531e-07, -4.3390740488297217e-06, -4.3390740488297217e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.3390740488297234e-06, -4.3390740488297149e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.8079475203457549e-07, -9.6423867751772266e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, 0.00024545900834560639, -1.211324838631651e-05, -1.2052983468971544e-05, -3.0132458672428973e-07, -6.0264917344857653e-08, -1.8079475203457522e-07, -6.0264917344858328e-07, -4.8211933875886798e-06, -1.2052983468971531e-07, -5.5443723957269115e-06, -6.0264917344857666e-08, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886806e-06, -4.8211933875886798e-06, -4.8211933875886122e-07, -1.3680136237282665e-05, -1.2052983468971528e-07, -1.2052983468971705e-05, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886101e-07, -3.0132458672428973e-07, -1.8079475203457141e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857653e-08, -9.0397376017287968e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610371288e-07, -4.8211933875886133e-07, -9.0397376017287693e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -9.6423867751772287e-07, -6.0264917344857936e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -1.0245035948625739e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.9284773550354445e-06, -1.5066229336214223e-06, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943056e-07, -4.8211933875886122e-07, -6.0264917344857936e-07, -6.6291409079343155e-07, -2.4105966937943056e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.026491734485764e-08, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.4463580162766011e-06, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.0847685122074279e-06, -2.4105966937943072e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -7.8344392548315742e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -5.0622530569680805e-06, -4.8211933875886133e-07, -5.3033127263474558e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -4.8211933875886501e-06, -9.6423867751772245e-07, -4.8814583049335211e-06, -6.0264917344857653e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -5.0622530569680805e-06, -4.8211933875886798e-06, -4.8211933875886468e-06, -4.8211933875886586e-06, -6.0264917344857653e-08, 0.00024527821359357163, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.026491734485764e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886122e-07, -6.0264917344858413e-07, -1.2052983468971653e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -4.8211933875886122e-07, -1.4463580162766026e-06, -1.8079475203457792e-07, -5.3033127263474973e-06, -9.6423867751772245e-07, -4.3390740488297285e-06, -6.0264917344857653e-08, -6.0264917344857679e-08, -1.5066229336214522e-06, -9.6423867751772287e-07, -4.8211933875886133e-07, -4.2185442141400385e-07, -2.4105966937943056e-07, -1.2052983468971531e-07, -4.3390740488297268e-06, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297268e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -6.026491734485818e-07, -1.807947520345753e-07, -4.8211933875886133e-07, -9.0397376017287386e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -3.6158950406915261e-07, -1.8079475203457755e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.5668878509663102e-06, -1.3860930989317285e-06, -6.0264917344857679e-08, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.6158950406915341e-07, -1.2052983468971533e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -4.8211933875886586e-06, -4.8211933875886468e-06, -9.7629166098670726e-06, -4.8211933875886468e-06, -4.8211933875886501e-06, -2.4105966937943056e-07, -1.2052983468971531e-07, -4.8211933875886101e-07, -5.4238425610371182e-07, -2.4105966937943056e-07, -6.6291409079343504e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -9.7629166098670506e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -1.807947520345753e-07, -6.0264917344857653e-08, -1.2052983468971533e-07, -1.2052983468971533e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -2.4105966937943056e-07, -7.2317900813830163e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -1.0847685122074304e-06, -6.0264917344857666e-08, -2.4105966937943051e-07, -1.2052983468971531e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.0132458672429111e-07, -2.4105966937943066e-07, -1.2052983468971531e-07, -3.615895040691505e-07, -5.1225179743129167e-06, -6.0264917344857679e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857679e-08, -2.7721861978634452e-06, -6.0264917344857947e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -4.8211933875886112e-07, -9.6423867751772266e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.8501329624871595e-05, -4.8211933875886122e-07, -1.2052983468971578e-05, -4.8211933875886133e-07, -1.2052983468971531e-07, -3.6158950406914717e-06, -7.2317900813830142e-07, -3.0132458672429069e-07, -3.6158950406915128e-06, -6.0264917344857679e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.7629166098670506e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.3800666071972366e-05, -1.807947520345752e-07, -1.2052983468971631e-05, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971531e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.7629166098670726e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.6271527683111523e-06, -5.7854320651064097e-06, -4.8211933875886144e-07, -4.2788091314848541e-06, -7.2317900813830078e-07, -7.2317900813830078e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344858455e-07, -4.8211933875886122e-07, -6.0264917344858317e-07, -1.2655632642420197e-06, -4.8211933875886133e-07, -3.013245867242919e-07, -1.3860930989317226e-06, -4.8211933875886133e-07, -7.2317900813830142e-07, -1.807947520345776e-07, -3.0132458672429063e-07, -1.2052983468971528e-07, -6.0264917344857653e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -7.2317900813830099e-07, -3.615895040691533e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -2.4105966937943066e-07, -4.8211933875886112e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -1.446358016276602e-06, -4.8211933875886133e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610371542e-07, -2.0490071897251609e-06, -1.2052983468971528e-07, -4.8211933875886112e-07, -4.8211933875886144e-07, -5.4238425610371542e-07, -1.5668878509663119e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857653e-08, -6.026491734485764e-08, -6.0264917344857653e-08, -1.2052983468971536e-07, -1.024503594862568e-06, -1.8079475203457376e-06, -7.2317900813830142e-07, -3.6158950406915261e-07, -6.0264917344857679e-08, -2.4105966937943066e-07, -9.6423867751772245e-07, -1.4463580162766018e-06, -4.8211933875886112e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -7.2317900813830131e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -5.4238425610371458e-07, -3.0132458672429143e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -4.3390740488297285e-06, -2.4105966937943061e-07, -6.0264917344857679e-08, -3.6158950406914717e-06, -4.8211933875886133e-07, -2.8927160325532476e-06, -2.892716032553204e-06, -3.0132458672428933e-06, -2.8927160325532476e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.2185442141400357e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -3.6761599580363371e-06, -1.2052983468971531e-07, -4.3390740488297268e-06, -4.3390740488297268e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.3390740488297285e-06, -4.33907404882972e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.8079475203457525e-07, -9.6423867751772287e-07, -9.690598709053238e-05, -9.6905987090532136e-05, -9.6905987090532245e-05, -9.6905987090532353e-05, -4.8452993545265811e-05, -4.8452993545265824e-05, -9.6905987090531648e-05, -9.6905987090531621e-05, -1.211324838631652e-05, -1.211324838631651e-05, 0.046914611000203742, -0.0024226496772632696, -6.056624193158249e-05, -1.211324838631652e-05, 0.00020917952810400102, -0.00012113248386316487, -0.00096905987090532006, -2.4226496772633021e-05, -0.0011144188515411198, -1.2113248386316449e-05, -0.00019381197418106444, -0.00019381197418106427, -9.6905987090531567e-05, -9.6905987090531703e-05, -0.00096905987090532006, -0.00096905987090532006, -9.6905987090530822e-05, -0.0027497073836938299, -2.4226496772633109e-05, -0.0024226496772632822, -0.00019381197418106454, -9.6905987090532163e-05, -9.6905987090532434e-05, -1.2113248386316446e-05, -1.211324838631652e-05, -9.6905987090531974e-05, -9.6905987090532082e-05, -2.4226496772633109e-05, -2.4226496772633109e-05, -1.2113248386316449e-05, -1.2113248386316487e-05, -9.6905987090531648e-05, -6.0566241931582531e-05, -3.6339745158949429e-05, -4.8452993545265838e-05, -4.8452993545265811e-05, -1.211324838631652e-05, -0.00018169872579474407, -9.6905987090531865e-05, -9.6905987090531919e-05, -0.00010901923547684772, -9.690598709053154e-05, -0.00018169872579474483, -2.4226496772633041e-05, -1.2113248386316544e-05, -9.6905987090531567e-05, -9.6905987090531621e-05, -1.211324838631652e-05, -1.2113248386316503e-05, -9.6905987090531947e-05, -9.6905987090531838e-05, -2.4226496772632624e-05, -1.2113248386316476e-05, -9.690598709053173e-05, -0.00019381197418106208, -0.00012113248386316485, -9.6905987090532028e-05, -0.00019381197418106324, -1.2113248386316524e-05, -9.690598709053173e-05, -0.00020592522256737859, -9.6905987090531947e-05, -9.6905987090531784e-05, -0.00019381197418106438, -0.00038762394836212231, -0.00030283120965790816, -9.6905987090531648e-05, -0.00019381197418106416, -0.00019381197418106406, -4.8452993545266217e-05, -9.6905987090531838e-05, -0.00012113248386316482, -0.00013324573224948201, -4.8452993545266217e-05, -0.00019381197418106099, -9.6905987090532001e-05, -9.6905987090532001e-05, -9.6905987090532028e-05, -2.4226496772632624e-05, -9.6905987090532326e-05, -9.6905987090531648e-05, -1.2113248386316554e-05, -9.6905987090531621e-05, -2.4226496772632892e-05, -9.6905987090532272e-05, -9.6905987090531947e-05, -9.6905987090532055e-05, -1.2113248386316524e-05, -0.00019381197418106411, -0.00019381197418106427, -1.2113248386316507e-05, -9.6905987090531974e-05, -9.6905987090531947e-05, -1.2113248386316514e-05, -9.6905987090532407e-05, -9.6905987090532299e-05, -9.6905987090531757e-05, -9.6905987090532326e-05, -0.00029071796127159457, -9.6905987090532353e-05, -9.6905987090531648e-05, -9.6905987090531784e-05, -1.2113248386316483e-05, -9.6905987090531784e-05, -9.6905987090531811e-05, -0.00019381197418106373, -4.8452993545265811e-05, -0.00021803847095369489, -4.8452993545265838e-05, -1.2113248386316544e-05, -2.4226496772632987e-05, -0.00015747222902211369, -9.6905987090532055e-05, -0.00019381197418106175, -0.0010175128644505736, -9.6905987090531947e-05, -0.0010659658579958448, -9.6905987090531865e-05, -9.6905987090531757e-05, -0.00019381197418106406, -0.00096905987090531898, -0.00019381197418106416, -0.00098117311929163333, -1.2113248386316449e-05, -0.00019381197418106433, -0.00019381197418106389, -4.8452993545266163e-05, -0.0010175128644505736, -0.00096905987090532006, -0.00096905987090531876, -0.000969059870905318, -1.211324838631652e-05, -4.8452993545265824e-05, -1.2113248386316473e-05, -1.2113248386316534e-05, -1.2113248386316554e-05, -9.6905987090532001e-05, -9.6905987090532055e-05, -9.6905987090531974e-05, -9.6905987090532028e-05, -1.2113248386316473e-05, -1.211324838631648e-05, -1.2113248386316473e-05, -9.6905987090532245e-05, -0.00012113248386316501, -0.0002422649677263298, -0.00019381197418106137, -0.00019381197418106357, -9.6905987090532218e-05, -0.0002907179612715957, -3.6339745158950154e-05, -0.0010659658579958444, -0.00019381197418106341, -0.00087215388381478782, -1.2113248386316517e-05, -1.2113248386316493e-05, -0.00030283120965790913, -0.00019381197418106373, -9.6905987090531865e-05, -8.4792738704214467e-05, -4.8452993545265811e-05, -2.4226496772633034e-05, -0.0008721538838147876, -2.4226496772633041e-05, -4.8452993545265824e-05, -4.8452993545265811e-05, -0.00087215388381478738, -9.690598709053173e-05, -1.211324838631649e-05, -9.6905987090531892e-05, -1.2113248386316473e-05, -9.6905987090531784e-05, -0.00012113248386316509, -3.6339745158949449e-05, -9.6905987090531865e-05, -0.00018169872579474673, -1.2113248386316446e-05, -9.6905987090531703e-05, -2.4226496772633109e-05, -2.4226496772633102e-05, -2.4226496772633082e-05, -1.2113248386316503e-05, -7.2679490317899495e-05, -3.6339745158950053e-05, -9.6905987090532082e-05, -9.6905987090532218e-05, -0.00019381197418106319, -0.00031494445804422755, -0.00027860471288528016, -1.2113248386316446e-05, -0.0001938119741810617, -9.6905987090532136e-05, -7.2679490317899685e-05, -2.4226496772632851e-05, -1.211324838631648e-05, -1.2113248386316534e-05, -0.000969059870905318, -0.00096905987090531876, -0.0019623462385832541, -0.00096905987090531876, -0.00096905987090531898, -4.8452993545266217e-05, -2.4226496772632797e-05, -9.6905987090531106e-05, -0.00010901923547684775, -4.8452993545266217e-05, -0.00013324573224948058, -1.2113248386316517e-05, -1.2113248386316453e-05, -0.00019381197418106243, -9.690598709053173e-05, -9.6905987090531811e-05, -1.2113248386316493e-05, -1.211324838631652e-05, -4.8452993545266014e-05, -4.8452993545266041e-05, -0.00019381197418106175, -9.6905987090532218e-05, -1.2113248386316463e-05, -0.0019623462385832649, -9.6905987090532163e-05, -9.6905987090532136e-05, -1.2113248386316507e-05, -4.8452993545266028e-05, -4.8452993545266014e-05, -2.4226496772632899e-05, -2.4226496772632899e-05, -3.6339745158949463e-05, -1.211324838631652e-05, -2.4226496772632899e-05, -2.4226496772632899e-05, -1.211324838631648e-05, -1.211324838631652e-05, -4.8452993545265878e-05, -0.00014535898063579799, -9.6905987090531703e-05, -1.211324838631647e-05, -1.2113248386316449e-05, -0.00021803847095369487, -1.2113248386316503e-05, -4.8452993545265452e-05, -2.4226496772632705e-05, -0.00019381197418106308, -0.00019381197418106324, -6.0566241931582477e-05, -4.8452993545265973e-05, -2.4226496772632638e-05, -7.2679490317898777e-05, -0.0010296261128369, -1.211324838631649e-05, -4.845299354526596e-05, -4.8452993545265987e-05, -0.00019381197418106341, -0.00019381197418106292, -4.8452993545265987e-05, -4.8452993545265892e-05, -4.8452993545265878e-05, -1.2113248386316473e-05, -0.00055720942577055664, -0.00012113248386316483, -1.2113248386316524e-05, -9.6905987090532136e-05, -9.690598709053074e-05, -9.6905987090532163e-05, -0.00019381197418106292, -9.6905987090531621e-05, -0.00019381197418106341, -9.690598709053074e-05, -9.690598709053074e-05, -0.0037187672545991803, -9.6905987090532082e-05, -0.0024226496772632752, -9.6905987090531784e-05, -2.4226496772633041e-05, -0.00072679490317898842, -0.00014535898063579788, -6.0566241931582436e-05, -0.0007267949031789778, -1.2113248386316456e-05, -9.6905987090532028e-05, -9.6905987090532001e-05, -0.0019623462385832649, -9.6905987090531703e-05, -9.6905987090531648e-05, -0.0027739338804664564, -3.6339745158949388e-05, 0.046681204975326879, -9.6905987090531947e-05, -9.6905987090531974e-05, -1.2113248386316483e-05, -9.6905987090531947e-05, -9.6905987090532082e-05, -1.2113248386316466e-05, -0.00019381197418106324, -0.00019381197418106308, -2.4226496772633082e-05, -4.8452993545266014e-05, -4.8452993545266028e-05, -9.6905987090532136e-05, -9.6905987090532163e-05, -0.0019623462385832541, -9.6905987090532218e-05, -9.6905987090532082e-05, -0.00032705770643054433, -0.0011628718450863822, -9.6905987090532001e-05, -0.00086004063542846837, -0.00014535898063579755, -0.00014535898063579755, -9.6905987090532136e-05, -9.6905987090532299e-05, -0.00012113248386316493, -9.6905987090532407e-05, -0.00012113248386316485, -0.00025437821611264371, -9.6905987090531703e-05, -6.056624193158245e-05, -0.00027860471288527837, -9.690598709053173e-05, -0.00014535898063579793, -3.6339745158950059e-05, -6.0566241931582463e-05, -2.4226496772633088e-05, -1.211324838631652e-05, -1.211324838631649e-05, -9.6905987090532434e-05, -0.00014535898063579777, -7.2679490317899658e-05, -4.8452993545265865e-05, -9.6905987090532218e-05, -9.6905987090530822e-05, -9.690598709053074e-05, -0.00019381197418106308, -9.6905987090531567e-05, -4.8452993545265987e-05, -0.00019381197418106319, -9.6905987090531621e-05, -4.845299354526596e-05, -9.690598709053074e-05, -1.2113248386316456e-05, -9.6905987090531621e-05, -9.6905987090531567e-05, -0.00019381197418106427, -0.00029071796127159543, -9.6905987090531811e-05, -0.00019381197418106454, -0.00019381197418106411, -9.6905987090531621e-05, -9.6905987090531648e-05, -9.690598709053173e-05, -9.6905987090531621e-05, -0.00010901923547684697, -0.00041185044513475697, -2.4226496772632583e-05, -9.6905987090532353e-05, -9.6905987090531594e-05, -0.00010901923547684697, -0.00031494445804422874, -9.6905987090532136e-05, -9.6905987090531892e-05, -9.690598709053238e-05, -4.8452993545265973e-05, -4.8452993545265987e-05, -1.2113248386316517e-05, -1.2113248386316554e-05, -1.2113248386316524e-05, -2.4226496772633e-05, -0.00020592522256737865, -0.00036339745158949421, -0.00014535898063579799, -7.2679490317899495e-05, -1.2113248386316487e-05, -4.8452993545265973e-05, -0.00019381197418106341, -0.00029071796127159532, -9.6905987090532326e-05, -4.845299354526596e-05, -0.00019381197418106373, -0.00019381197418106357, -4.845299354526596e-05, -0.00014535898063579788, -9.6905987090531703e-05, -1.2113248386316544e-05, -2.4226496772632611e-05, -4.8452993545265973e-05, -4.8452993545265987e-05, -0.00010901923547684722, -6.0566241931582423e-05, -9.6905987090532109e-05, -0.00019381197418106202, -0.0008721538838147863, -4.8452993545266163e-05, -1.2113248386316473e-05, -0.00072679490317898842, -9.6905987090531784e-05, -0.00058143592254320279, -0.00058143592254319141, -0.00060566241931581642, -0.00058143592254320279, -4.8452993545266163e-05, -4.8452993545266149e-05, -9.6905987090531892e-05, -9.6905987090531784e-05, -4.8452993545265919e-05, -4.8452993545265906e-05, -9.6905987090532272e-05, -1.2113248386316541e-05, -9.6905987090532326e-05, -1.2113248386316483e-05, -1.2113248386316514e-05, -0.00084792738704216053, -4.8452993545265906e-05, -4.8452993545265919e-05, -0.00073890815156530873, -2.4226496772633068e-05, -0.00087215388381478738, -0.0008721538838147876, -9.690598709053173e-05, -1.2113248386316476e-05, -9.6905987090531865e-05, -0.00087215388381478782, -0.00087215388381478131, -9.6905987090531811e-05, -9.6905987090531703e-05, -2.4226496772632926e-05, -2.4226496772633034e-05, -0.00019381197418106313, -9.690598709053173e-05, -9.6905987090531784e-05, -3.6339745158949429e-05, -0.00019381197418106313, -9.6423867751772722e-05, -9.6423867751772437e-05, -9.6423867751772545e-05, -9.6423867751772654e-05, -4.8211933875885934e-05, -4.8211933875885947e-05, -9.6423867751771678e-05, -9.6423867751771759e-05, -1.2052983468971553e-05, -1.2052983468971544e-05, -0.0024226496772632696, 0.046693257958795857, -6.0264917344858175e-05, -1.2052983468971551e-05, -3.6158950406914432e-05, -0.00012052983468971616, -0.00096423867751773058, -2.4105966937943089e-05, -0.0011088744791453969, -1.2052983468971477e-05, -0.0001928477355035449, -0.00019284773550354477, -9.6423867751771841e-05, -9.6423867751771597e-05, -0.00096423867751773101, -0.00096423867751773079, -9.6423867751771163e-05, -0.0027360272474565715, -2.4105966937943194e-05, -0.0024105966937943103, -0.00019284773550354506, -9.6423867751772464e-05, -9.6423867751772749e-05, -1.2052983468971472e-05, -1.2052983468971555e-05, -9.6423867751772247e-05, -9.6423867751772356e-05, -2.4105966937943187e-05, -2.4105966937943187e-05, -1.2052983468971473e-05, -1.2052983468971524e-05, -9.6423867751772058e-05, -6.0264917344858256e-05, -3.6158950406914493e-05, -4.8211933875885961e-05, -4.821193387588592e-05, -1.2052983468971551e-05, -0.00018079475203457222, -9.6423867751772139e-05, -9.6423867751772166e-05, -0.00010847685122074525, -9.6423867751771787e-05, -0.00018079475203457292, -2.4105966937943106e-05, -1.2052983468971582e-05, -9.6423867751771814e-05, -9.6423867751771841e-05, -1.2052983468971558e-05, -1.2052983468971536e-05, -9.6423867751772207e-05, -9.6423867751772098e-05, -2.4105966937942716e-05, -1.2052983468971511e-05, -9.6423867751772003e-05, -0.00019284773550354271, -0.00012052983468971605, -9.6423867751772302e-05, -0.00019284773550354379, -1.2052983468971558e-05, -9.6423867751772003e-05, -0.00020490071897251672, -9.642386775177222e-05, -9.6423867751772085e-05, -0.00019284773550354493, -0.00038569547100708389, -0.00030132458672428629, -9.6423867751771868e-05, -0.00019284773550354471, -0.00019284773550354455, -4.8211933875886374e-05, -9.6423867751772139e-05, -0.00012052983468971605, -0.00013258281815868613, -4.8211933875886388e-05, -0.00019284773550354173, -9.6423867751772302e-05, -9.6423867751772261e-05, -9.6423867751772302e-05, -2.4105966937942723e-05, -9.6423867751772627e-05, -9.6423867751771868e-05, -1.2052983468971594e-05, -9.6423867751771827e-05, -2.4105966937942967e-05, -9.6423867751772573e-05, -9.642386775177222e-05, -9.6423867751772329e-05, -1.2052983468971561e-05, -0.0001928477355035446, -0.00019284773550354477, -1.2052983468971541e-05, -9.6423867751772247e-05, -9.642386775177222e-05, -1.2052983468971546e-05, -9.6423867751772749e-05, -9.64238677517726e-05, -9.642386775177203e-05, -9.6423867751772654e-05, -0.00028927160325531545, -9.6423867751772695e-05, -9.6423867751771922e-05, -9.6423867751772044e-05, -1.2052983468971521e-05, -9.642386775177203e-05, -9.6423867751772085e-05, -0.00019284773550354422, -4.821193387588592e-05, -0.00021695370244148983, -4.8211933875885961e-05, -1.2052983468971582e-05, -2.4105966937943055e-05, -0.00015668878509663203, -9.6423867751772329e-05, -0.00019284773550354235, -0.0010124506113936057, -9.6423867751772207e-05, -0.0010606625452695005, -9.6423867751772166e-05, -9.642386775177203e-05, -0.00019284773550354455, -0.00096423867751772971, -0.00019284773550354471, -0.00097629166098669583, -1.2052983468971473e-05, -0.00019284773550354487, -0.00019284773550354439, -4.8211933875886313e-05, -0.0010124506113936057, -0.00096423867751773058, -0.00096423867751772928, -0.00096423867751772873, -1.2052983468971555e-05, -4.8211933875886083e-05, -1.2052983468971504e-05, -1.2052983468971572e-05, -1.2052983468971594e-05, -9.6423867751772274e-05, -9.6423867751772329e-05, -9.6423867751772274e-05, -9.6423867751772302e-05, -1.2052983468971504e-05, -1.2052983468971511e-05, -1.2052983468971504e-05, -9.6423867751772545e-05, -0.00012052983468971643, -0.0002410596693794321, -0.00019284773550354211, -0.00019284773550354403, -9.6423867751772491e-05, -0.000289271603255316, -3.6158950406915191e-05, -0.001060662545269501, -0.00019284773550354387, -0.0008678148097659681, -1.2052983468971551e-05, -1.2052983468971528e-05, -0.00030132458672428721, -0.00019284773550354422, -9.6423867751772139e-05, -8.4370884282800217e-05, -4.8211933875885954e-05, -2.4105966937943099e-05, -0.0008678148097659681, -2.4105966937943106e-05, -4.8211933875885947e-05, -4.8211933875885934e-05, -0.0008678148097659681, -9.6423867751771976e-05, -1.2052983468971524e-05, -9.6423867751772193e-05, -1.2052983468971504e-05, -9.6423867751772058e-05, -0.00012052983468971648, -3.6158950406914486e-05, -9.6423867751772139e-05, -0.00018079475203457496, -1.2052983468971473e-05, -9.6423867751771949e-05, -2.4105966937943194e-05, -2.4105966937943187e-05, -2.4105966937943157e-05, -1.2052983468971538e-05, -7.2317900813829541e-05, -3.6158950406915062e-05, -9.6423867751772356e-05, -9.6423867751772478e-05, -0.00019284773550354368, -0.00031337757019326385, -0.00027721861978634944, -1.2052983468971473e-05, -0.00019284773550354233, -9.642386775177241e-05, -7.2317900813829731e-05, -2.410596693794292e-05, -1.2052983468971511e-05, -1.2052983468971572e-05, -0.00096423867751772873, -0.00096423867751772928, -0.0019525833219733925, -0.00096423867751772928, -0.00096423867751772971, -4.8211933875886388e-05, -2.4105966937942872e-05, -9.6423867751771488e-05, -0.00010847685122074531, -4.8211933875886374e-05, -0.00013258281815868751, -1.2052983468971551e-05, -1.2052983468971477e-05, -0.00019284773550354303, -9.6423867751771976e-05, -9.6423867751772085e-05, -1.2052983468971531e-05, -1.2052983468971553e-05, -4.8211933875886151e-05, -4.8211933875886178e-05, -0.00019284773550354238, -9.6423867751772491e-05, -1.2052983468971494e-05, -0.0019525833219733878, -9.6423867751772437e-05, -9.6423867751772396e-05, -1.2052983468971541e-05, -4.8211933875886178e-05, -4.8211933875886164e-05, -2.4105966937942933e-05, -2.410596693794292e-05, -3.6158950406914493e-05, -1.2052983468971555e-05, -2.410596693794292e-05, -2.4105966937942933e-05, -1.2052983468971514e-05, -1.2052983468971558e-05, -4.8211933875886069e-05, -0.00014463580162765805, -9.6423867751771949e-05, -1.2052983468971504e-05, -1.2052983468971477e-05, -0.00021695370244148986, -1.2052983468971536e-05, -4.8211933875885704e-05, -2.4105966937942791e-05, -0.00019284773550354352, -0.00019284773550354365, -6.0264917344858161e-05, -4.8211933875886103e-05, -2.410596693794273e-05, -7.2317900813828945e-05, -0.0010245035948625988, -1.2052983468971524e-05, -4.821193387588609e-05, -4.8211933875886124e-05, -0.00019284773550354382, -0.00019284773550354336, -4.8211933875886124e-05, -4.8211933875886015e-05, -4.8211933875886015e-05, -1.2052983468971504e-05, -0.00055443723957269639, -0.00012052983468971612, -1.2052983468971561e-05, -9.6423867751772396e-05, -9.6423867751771068e-05, -9.6423867751772437e-05, -0.00019284773550354336, -9.6423867751771922e-05, -0.00019284773550354382, -9.6423867751771055e-05, -9.6423867751771068e-05, -0.0037002659249742408, -9.6423867751772383e-05, -0.0024105966937943337, -9.642386775177203e-05, -2.4105966937943109e-05, -0.0007231790081383007, -0.00014463580162765805, -6.0264917344858053e-05, -0.0007231790081382904, -1.2052983468971483e-05, -9.6423867751772302e-05, -9.6423867751772261e-05, -0.0019525833219733878, -9.6423867751771936e-05, -9.6423867751771895e-05, 0.046343721438196192, -3.6158950406914472e-05, -0.0024105966937943298, -9.642386775177222e-05, -9.6423867751772247e-05, -1.2052983468971514e-05, -9.642386775177222e-05, -9.6423867751772342e-05, -1.2052983468971497e-05, -0.00019284773550354365, -0.00019284773550354352, -2.4105966937943157e-05, -4.8211933875886164e-05, -4.8211933875886178e-05, -9.642386775177241e-05, -9.6423867751772464e-05, -0.0019525833219733925, -9.6423867751772478e-05, -9.6423867751772356e-05, -0.00032543055366223409, -0.0011570864130212649, -9.6423867751772302e-05, -0.0008557618262969752, -0.00014463580162765784, -0.00014463580162765784, -9.6423867751772437e-05, -9.64238677517726e-05, -0.00012052983468971624, -9.6423867751772749e-05, -0.00012052983468971621, -0.00025311265284840153, -9.6423867751771976e-05, -6.026491734485808e-05, -0.00027721861978634798, -9.6423867751771976e-05, -0.00014463580162765805, -3.6158950406915082e-05, -6.0264917344858107e-05, -2.4105966937943163e-05, -1.2052983468971555e-05, -1.2052983468971524e-05, -9.6423867751772749e-05, -0.000144635801627658, -7.2317900813829677e-05, -4.8211933875886002e-05, -9.6423867751772491e-05, -9.6423867751771163e-05, -9.6423867751771068e-05, -0.00019284773550354422, -9.6423867751771841e-05, -4.8211933875886124e-05, -0.00019284773550354374, -9.6423867751771868e-05, -4.821193387588609e-05, -9.6423867751771068e-05, -1.2052983468971483e-05, -9.6423867751771841e-05, -9.6423867751771814e-05, -0.00019284773550354477, -0.00028927160325531589, -9.6423867751772112e-05, -0.00019284773550354506, -0.0001928477355035446, -9.6423867751771759e-05, -9.6423867751771678e-05, -9.6423867751771976e-05, -9.6423867751771868e-05, -0.00010847685122074437, -0.00040980143794503354, -2.4105966937942676e-05, -9.6423867751772695e-05, -9.6423867751771814e-05, -0.00010847685122074459, -0.00031337757019326515, -9.6423867751772437e-05, -9.6423867751772193e-05, -9.6423867751772722e-05, -4.8211933875886103e-05, -4.8211933875886117e-05, -1.2052983468971551e-05, -1.2052983468971594e-05, -1.2052983468971561e-05, -2.4105966937943075e-05, -0.00020490071897251682, -0.00036158950406915019, -0.00014463580162765811, -7.2317900813829541e-05, -1.2052983468971521e-05, -4.8211933875886103e-05, -0.00019284773550354387, -0.00028927160325531573, -9.6423867751772627e-05, -4.821193387588609e-05, -0.0001928477355035442, -0.00019284773550354403, -4.821193387588609e-05, -0.000144635801627658, -9.6423867751771936e-05, -1.2052983468971582e-05, -2.4105966937942709e-05, -4.8211933875886103e-05, -4.8211933875886124e-05, -0.00010847685122074466, -6.0264917344858053e-05, -9.642386775177241e-05, -0.00019284773550354268, -0.0008678148097659668, -4.8211933875886313e-05, -1.2052983468971507e-05, -0.0007231790081383007, -9.6423867751772044e-05, -0.00057854320651064294, -0.00057854320651063188, -0.00060264917344857183, -0.00057854320651064294, -4.8211933875886313e-05, -4.82119338758863e-05, -9.6423867751772166e-05, -9.6423867751772058e-05, -4.8211933875886056e-05, -4.8211933875886056e-05, -9.6423867751772573e-05, -1.2052983468971578e-05, -9.6423867751772627e-05, -1.2052983468971517e-05, -1.2052983468971546e-05, -0.0008437088428280029, -4.8211933875886056e-05, -4.8211933875886056e-05, -0.00073523199160726953, -2.4105966937943133e-05, -0.0008678148097659681, -0.0008678148097659681, -9.6423867751772003e-05, -1.2052983468971506e-05, -9.6423867751772112e-05, -0.0008678148097659681, -0.00086781480976596181, -9.6423867751772085e-05, -9.6423867751771976e-05, -2.4105966937942987e-05, -2.4105966937943102e-05, -0.00019284773550354352, -9.6423867751772003e-05, -9.6423867751772058e-05, -3.6158950406914486e-05, -0.00019284773550354352, -2.4105966937943272e-06, -2.410596693794323e-06, -2.4105966937943221e-06, -2.410596693794328e-06, -1.2052983468971534e-06, -1.2052983468971534e-06, -2.4105966937943043e-06, -2.4105966937943052e-06, -3.0132458672428973e-07, -3.0132458672428973e-07, -6.056624193158249e-05, -6.0264917344858175e-05, 0.0012260897433811339, -3.0132458672428973e-07, -9.0397376017285988e-07, 0.00024250602739570821, -2.4105966937942987e-05, -6.0264917344857947e-07, -2.7721861978634836e-05, -3.0132458672428804e-07, -4.8211933875886442e-06, -4.8211933875886459e-06, -2.4105966937943052e-06, -2.4105966937943043e-06, -2.4105966937942994e-05, -2.4105966937942994e-05, -2.4105966937943263e-06, -6.8400681186413858e-05, -6.0264917344858201e-07, -6.0264917344858026e-05, -4.8211933875886425e-06, -2.410596693794323e-06, -2.4105966937943272e-06, -3.0132458672428762e-07, -3.0132458672429005e-07, -2.4105966937943196e-06, -2.4105966937943179e-06, -6.0264917344858201e-07, -6.0264917344858201e-07, -3.0132458672428793e-07, -3.013245867242892e-07, -2.4105966937943018e-06, -1.5066229336214407e-06, -9.0397376017287196e-07, -1.205298346897153e-06, -1.2052983468971534e-06, -3.0132458672428973e-07, -4.5198688008644226e-06, -2.4105966937943119e-06, -2.4105966937943119e-06, -2.71192128051862e-06, -2.410596693794306e-06, -4.5198688008643955e-06, -6.0264917344857947e-07, -3.0132458672429069e-07, -2.410596693794306e-06, -2.4105966937943052e-06, -3.0132458672429005e-07, -3.0132458672428931e-07, -2.4105966937943111e-06, -2.4105966937943128e-06, -6.026491734485837e-07, -3.0132458672428889e-07, -2.4105966937943094e-06, -4.8211933875886408e-06, -3.0132458672429022e-06, -2.410596693794317e-06, -4.8211933875886307e-06, -3.0132458672429016e-07, -2.4105966937943102e-06, -5.1225179743129201e-06, -2.4105966937943162e-06, -2.4105966937943128e-06, -4.8211933875886425e-06, -9.6423867751773393e-06, -7.5331146681072498e-06, -2.4105966937943026e-06, -4.8211933875886408e-06, -4.8211933875886425e-06, -1.205298346897164e-06, -2.4105966937943119e-06, 0.00024250602739570848, -3.3145704539671764e-06, -1.205298346897164e-06, -4.821193387588673e-06, -2.4105966937943145e-06, -2.4105966937943162e-06, -2.4105966937943153e-06, -6.0264917344858392e-07, -2.4105966937943246e-06, -2.4105966937943026e-06, -3.0132458672429069e-07, -2.4105966937943026e-06, 0.00024491662408950254, -2.4105966937943246e-06, -2.4105966937943179e-06, -2.410596693794317e-06, -3.0132458672429016e-07, -4.8211933875886459e-06, -4.8211933875886442e-06, -3.0132458672428963e-07, -2.4105966937943153e-06, -2.4105966937943153e-06, -3.0132458672428958e-07, -2.4105966937943272e-06, -2.410596693794328e-06, -2.4105966937943136e-06, -2.410596693794328e-06, -7.2317900813828689e-06, -2.4105966937943255e-06, -2.4105966937943102e-06, -2.4105966937943102e-06, -3.0132458672428899e-07, -2.4105966937943086e-06, -2.4105966937943094e-06, -4.8211933875886307e-06, -1.2052983468971534e-06, -5.4238425610372214e-06, -1.205298346897153e-06, -3.0132458672429079e-07, -6.0264917344857883e-07, -3.9172196274157438e-06, -2.410596693794317e-06, -4.8211933875886476e-06, -2.5311265284840348e-05, -2.4105966937943111e-06, -2.6516563631737425e-05, -2.4105966937943119e-06, -2.4105966937943136e-06, -4.8211933875886425e-06, -2.4105966937943235e-05, -4.8211933875886408e-06, -2.4407291524667381e-05, -3.0132458672428767e-07, -4.8211933875886391e-06, -4.8211933875886442e-06, -1.2052983468971627e-06, -2.5311265284840348e-05, -2.4105966937942987e-05, -2.4105966937943092e-05, -2.4105966937943258e-05, -3.0132458672429005e-07, -1.2052983468971539e-06, -3.0132458672428878e-07, -3.0132458672429048e-07, -3.013245867242909e-07, -2.4105966937943187e-06, -2.4105966937943187e-06, -2.4105966937943179e-06, -2.410596693794317e-06, -3.0132458672428878e-07, -3.0132458672428889e-07, -3.0132458672428857e-07, -2.4105966937943221e-06, -3.0132458672429111e-06, -6.026491734485812e-06, -4.8211933875886595e-06, -4.8211933875886273e-06, -2.410596693794323e-06, -7.231790081382957e-06, -9.039737601728746e-07, -2.6516563631737587e-05, -4.821193387588629e-06, -2.1695370244148747e-05, -3.0132458672428995e-07, -3.0132458672428931e-07, -7.5331146681072701e-06, -4.8211933875886307e-06, -2.4105966937943119e-06, -2.1092721070700128e-06, -1.2052983468971503e-06, -6.0264917344857947e-07, -2.169537024414875e-05, -6.0264917344857947e-07, -1.2052983468971534e-06, -1.2052983468971534e-06, -2.169537024414875e-05, -2.4105966937943077e-06, -3.013245867242892e-07, -2.4105966937943128e-06, -3.0132458672428857e-07, -2.4105966937943136e-06, -3.0132458672429052e-06, -9.0397376017287598e-07, -2.4105966937943128e-06, -4.519868800864326e-06, -3.0132458672428793e-07, -2.4105966937943077e-06, -6.0264917344858201e-07, -6.0264917344858201e-07, -6.0264917344858116e-07, -3.0132458672428963e-07, -1.8079475203457393e-06, -9.0397376017287333e-07, -2.4105966937943204e-06, -2.4105966937943187e-06, -4.8211933875886374e-06, -7.8344392548315079e-06, -6.9304654946586218e-06, -3.0132458672428793e-07, -4.821193387588651e-06, -2.4105966937943221e-06, -1.8079475203457418e-06, -6.0264917344857672e-07, -3.0132458672428889e-07, -3.0132458672429048e-07, -2.4105966937943258e-05, -2.4105966937943092e-05, -4.8814583049335284e-05, -2.4105966937943092e-05, -2.4105966937943235e-05, -1.205298346897164e-06, -6.0264917344857841e-07, -2.4105966937943187e-06, -2.7119212805186208e-06, -1.205298346897164e-06, -3.3145704539671942e-06, -3.0132458672428973e-07, -3.0132458672428804e-07, -4.8211933875886273e-06, -2.4105966937943069e-06, -2.4105966937943102e-06, -3.0132458672428942e-07, -3.0132458672428973e-07, -1.2052983468971594e-06, -1.2052983468971594e-06, -4.821193387588651e-06, -2.4105966937943213e-06, -3.0132458672428846e-07, -4.8814583049334789e-05, -2.4105966937943196e-06, -2.4105966937943196e-06, -3.0132458672428963e-07, -1.2052983468971594e-06, -1.2052983468971594e-06, -6.0264917344857566e-07, -6.0264917344857566e-07, 0.00049013457276572843, -3.0132458672428973e-07, -6.0264917344857566e-07, -6.0264917344857566e-07, -3.0132458672428889e-07, -3.0132458672429005e-07, -1.2052983468971551e-06, -3.6158950406914743e-06, -2.4105966937943077e-06, -3.0132458672428868e-07, -3.0132458672428804e-07, -5.423842561037218e-06, -3.013245867242892e-07, -1.2052983468971678e-06, -6.0264917344858116e-07, -4.8211933875886137e-06, -4.821193387588612e-06, -1.5066229336214507e-06, -1.2052983468971568e-06, -6.0264917344858328e-07, -1.807947520345739e-06, -2.561258987156461e-05, -3.013245867242892e-07, -1.2052983468971572e-06, -1.2052983468971568e-06, -4.8211933875886103e-06, -4.8211933875886154e-06, -1.2052983468971577e-06, -1.2052983468971551e-06, -1.2052983468971551e-06, -3.0132458672428868e-07, -1.3860930989317378e-05, -3.0132458672428802e-06, -3.0132458672429016e-07, -2.4105966937943196e-06, -2.4105966937943272e-06, -2.4105966937943196e-06, -4.8211933875886154e-06, -2.4105966937942997e-06, -4.8211933875886103e-06, -2.4105966937943272e-06, -2.4105966937943272e-06, -9.2506648124356279e-05, -2.410596693794323e-06, -6.0264917344857904e-05, -2.4105966937943086e-06, -6.0264917344857968e-07, -1.8079475203457304e-05, -3.6158950406914658e-06, -1.5066229336214509e-06, -1.8079475203457345e-05, -3.0132458672428815e-07, -2.4105966937943153e-06, -2.4105966937943162e-06, -4.8814583049334789e-05, -2.410596693794306e-06, -2.4105966937943069e-06, -6.9003330359862137e-05, -9.0397376017287174e-07, -6.0264917344857971e-05, -2.4105966937943153e-06, -2.4105966937943153e-06, -3.0132458672428873e-07, -2.4105966937943162e-06, -2.4105966937943153e-06, -3.0132458672428857e-07, -4.821193387588612e-06, -4.8211933875886137e-06, -6.0264917344858116e-07, -1.2052983468971594e-06, -1.2052983468971594e-06, -2.4105966937943221e-06, -2.4105966937943221e-06, -4.8814583049335284e-05, -2.4105966937943187e-06, -2.4105966937943204e-06, -8.1357638415558202e-06, -2.8927160325531686e-05, -2.4105966937943145e-06, -2.1394045657424536e-05, -3.6158950406914937e-06, -3.6158950406914929e-06, -2.410596693794323e-06, -2.410596693794328e-06, -3.0132458672429132e-06, -2.4105966937943272e-06, -3.0132458672429098e-06, -6.3278163212100947e-06, -2.4105966937943094e-06, -1.5066229336214556e-06, -6.9304654946586837e-06, -2.410596693794306e-06, -3.6158950406914683e-06, -9.0397376017287238e-07, -1.5066229336214513e-06, -6.0264917344858137e-07, -3.0132458672429005e-07, -3.013245867242892e-07, -2.4105966937943272e-06, -3.6158950406914912e-06, -1.8079475203457409e-06, -1.2052983468971543e-06, -2.410596693794323e-06, -2.4105966937943263e-06, -2.4105966937943272e-06, -4.8211933875886061e-06, -2.4105966937943052e-06, -1.2052983468971568e-06, -4.8211933875886002e-06, -2.4105966937943043e-06, -1.2052983468971572e-06, -2.4105966937943272e-06, -3.0132458672428815e-07, -2.4105966937943052e-06, -2.410596693794306e-06, -4.8211933875886442e-06, -7.2317900813829638e-06, -2.4105966937943136e-06, -4.8211933875886425e-06, -4.8211933875886476e-06, -2.4105966937943052e-06, -2.4105966937943043e-06, -2.410596693794306e-06, -2.4105966937943069e-06, -2.711921280518598e-06, -1.024503594862584e-05, -6.0264917344858519e-07, -2.4105966937943255e-06, -2.4105966937943052e-06, -2.7119212805185988e-06, -7.8344392548315011e-06, -2.410596693794323e-06, -2.4105966937943128e-06, -2.4105966937943272e-06, -1.2052983468971568e-06, -1.2052983468971568e-06, -3.0132458672428995e-07, -3.013245867242909e-07, -3.0132458672429016e-07, -6.0264917344857926e-07, -5.1225179743129184e-06, -9.0397376017286588e-06, -3.6158950406914666e-06, -1.8079475203457393e-06, -3.013245867242891e-07, -1.205298346897156e-06, -4.821193387588629e-06, -7.2317900813829384e-06, -2.4105966937943255e-06, -1.2052983468971564e-06, -4.8211933875886256e-06, -4.8211933875886273e-06, -1.2052983468971564e-06, -3.6158950406914641e-06, -2.410596693794306e-06, -3.0132458672429058e-07, -6.0264917344858455e-07, -1.205298346897156e-06, -1.2052983468971577e-06, -2.7119212805186056e-06, -1.5066229336214543e-06, -2.4105966937943196e-06, -4.8211933875886391e-06, -2.1695370244148811e-05, -1.2052983468971627e-06, -3.0132458672428878e-07, -1.8079475203457304e-05, -2.4105966937943102e-06, -1.4463580162765989e-05, -1.4463580162765985e-05, -1.5066229336214537e-05, -1.4463580162765989e-05, -1.2052983468971627e-06, -1.2052983468971627e-06, -2.4105966937943111e-06, -2.4105966937943128e-06, -1.2052983468971555e-06, -1.2052983468971555e-06, -2.4105966937943246e-06, -3.0132458672429048e-07, -2.4105966937943246e-06, -3.0132458672428899e-07, -3.0132458672428958e-07, -2.1092721070700251e-05, -1.2052983468971555e-06, -1.2052983468971555e-06, -1.8380799790181626e-05, -6.0264917344858032e-07, -2.169537024414875e-05, -2.169537024414875e-05, -2.4105966937943102e-06, -3.0132458672428857e-07, -2.4105966937943094e-06, -2.1695370244148747e-05, -2.1695370244148936e-05, -2.4105966937943102e-06, -2.4105966937943111e-06, -6.0264917344857693e-07, -6.0264917344857989e-07, -4.8211933875886069e-06, -2.4105966937943111e-06, -2.4105966937943102e-06, -9.0397376017286243e-07, -4.8211933875886069e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -1.211324838631652e-05, -1.2052983468971551e-05, -3.0132458672428973e-07, 0.00024545900834560633, -1.8079475203457535e-07, -6.0264917344858307e-07, -4.8211933875886798e-06, -1.2052983468971531e-07, -5.5443723957269082e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886798e-06, -4.8211933875886789e-06, -4.8211933875886112e-07, -1.3680136237282611e-05, -1.2052983468971528e-07, -1.2052983468971712e-05, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.8211933875886091e-07, -3.0132458672428968e-07, -1.8079475203457546e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, 0.00024545900834560633, -9.0397376017287979e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -5.4238425610371225e-07, -4.8211933875886133e-07, -9.0397376017287725e-07, -1.2052983468971531e-07, -6.026491734485764e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971525e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -9.6423867751772245e-07, -6.0264917344858201e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -1.0245035948625709e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -1.928477355035444e-06, -1.5066229336214477e-06, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -2.4105966937943056e-07, -4.8211933875886133e-07, -6.0264917344858222e-07, -6.6291409079343166e-07, -2.4105966937943056e-07, -9.6423867751772202e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -9.6423867751772224e-07, -9.6423867751772224e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886112e-07, -1.4463580162766026e-06, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -1.0847685122074266e-06, -2.4105966937943066e-07, -6.0264917344857653e-08, -1.2052983468971533e-07, -7.8344392548315742e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -5.0622530569680856e-06, -4.8211933875886122e-07, -5.3033127263474575e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772224e-07, -4.8211933875886501e-06, -9.6423867751772245e-07, -4.8814583049335143e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772224e-07, -2.4105966937943056e-07, -5.0622530569680847e-06, -4.8211933875886798e-06, -4.8211933875886298e-06, -4.821193387588662e-06, -6.0264917344857653e-08, -2.4105966937943045e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -6.026491734485764e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.8211933875886122e-07, -6.0264917344858413e-07, -1.2052983468971653e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -4.8211933875886122e-07, -1.4463580162766041e-06, -1.8079475203457813e-07, -5.3033127263474956e-06, -9.6423867751772245e-07, -4.3390740488297234e-06, -6.0264917344857653e-08, -6.0264917344857666e-08, -1.5066229336214435e-06, -9.6423867751772266e-07, -4.8211933875886122e-07, -4.2185442141400999e-07, -2.4105966937943056e-07, -1.2052983468971531e-07, -4.3390740488297234e-06, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.3390740488297234e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -6.0264917344858159e-07, -1.8079475203457549e-07, -4.8211933875886133e-07, -9.0397376017287397e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -6.0264917344857666e-08, -3.6158950406915299e-07, -1.807947520345713e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.5668878509663106e-06, -1.3860930989317277e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.6158950406915378e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.821193387588662e-06, -4.8211933875886298e-06, -9.762916609867076e-06, -4.8211933875886383e-06, -4.8211933875886501e-06, -2.4105966937943056e-07, -1.2052983468971531e-07, -4.8211933875886101e-07, -5.4238425610371119e-07, -2.4105966937943056e-07, -6.6291409079343504e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -9.762916609867054e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -1.8079475203457554e-07, -6.0264917344857653e-08, -1.2052983468971533e-07, -1.2052983468971533e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -2.4105966937943056e-07, -7.2317900813830237e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -1.0847685122074292e-06, -6.0264917344857679e-08, -2.4105966937943045e-07, -1.2052983468971528e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.0132458672429122e-07, -2.4105966937943066e-07, -1.2052983468971531e-07, -3.6158950406915103e-07, -5.1225179743129167e-06, -6.0264917344857666e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857666e-08, -2.7721861978634448e-06, -6.0264917344857936e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.8501329624871622e-05, -4.8211933875886122e-07, -1.2052983468971627e-05, -4.8211933875886133e-07, -1.2052983468971531e-07, -3.6158950406914722e-06, -7.2317900813830216e-07, -3.0132458672429063e-07, -3.6158950406915132e-06, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.762916609867054e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.3800666071972352e-05, -1.8079475203457538e-07, -1.2052983468971639e-05, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971528e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.762916609867076e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.6271527683111519e-06, -5.7854320651064164e-06, -4.8211933875886133e-07, -4.2788091314848431e-06, -7.2317900813830152e-07, -7.2317900813830152e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -6.0264917344858444e-07, -4.8211933875886112e-07, -6.0264917344858349e-07, -1.2655632642420205e-06, -4.8211933875886133e-07, -3.0132458672429185e-07, -1.3860930989317201e-06, -4.8211933875886133e-07, -7.2317900813830216e-07, -1.8079475203457779e-07, -3.0132458672429058e-07, -1.2052983468971528e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -4.8211933875886112e-07, -7.2317900813830184e-07, -3.6158950406915362e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772224e-07, -1.4463580162766035e-06, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610371479e-07, -2.0490071897251546e-06, -1.2052983468971531e-07, -4.8211933875886112e-07, -4.8211933875886133e-07, -5.4238425610371479e-07, -1.5668878509662735e-06, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886112e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857653e-08, -6.026491734485764e-08, -6.0264917344857653e-08, -1.2052983468971533e-07, -1.0245035948625671e-06, -1.8079475203457382e-06, -7.2317900813830216e-07, -3.6158950406915299e-07, -6.0264917344857666e-08, -2.4105966937943066e-07, -9.6423867751772245e-07, -1.4463580162766033e-06, -4.8211933875886112e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -7.2317900813830205e-07, -4.8211933875886133e-07, -6.026491734485764e-08, -1.2052983468971528e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -5.4238425610371394e-07, -3.0132458672429143e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.3390740488297183e-06, -2.4105966937943056e-07, -6.0264917344857666e-08, -3.6158950406914722e-06, -4.8211933875886133e-07, -2.8927160325532506e-06, -2.8927160325532074e-06, -3.013245867242895e-06, -2.8927160325532506e-06, -2.4105966937943056e-07, -2.4105966937943056e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -6.026491734485764e-08, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.2185442141400349e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -3.6761599580363363e-06, -1.2052983468971531e-07, -4.3390740488297234e-06, -4.3390740488297234e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.3390740488297234e-06, -4.3390740488297166e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.8079475203457546e-07, -9.6423867751772266e-07, -1.4463580162766105e-06, -1.4463580162766043e-06, -1.4463580162766056e-06, -1.44635801627661e-06, -7.2317900813829464e-07, -7.2317900813829464e-07, -1.4463580162765891e-06, -1.4463580162765886e-06, -1.8079475203457535e-07, -1.8079475203457522e-07, 0.00020917952810400102, -3.6158950406914432e-05, -9.0397376017285988e-07, -1.8079475203457535e-07, 0.00073601543553274986, -1.8079475203457291e-06, -1.4463580162765689e-05, -3.6158950406915039e-07, -1.6633117187180822e-05, -1.8079475203457342e-07, -2.8927160325532116e-06, -2.8927160325532099e-06, -1.4463580162765882e-06, -1.4463580162765895e-06, -1.4463580162765662e-05, -1.4463580162765662e-05, -1.4463580162765853e-06, -4.1040408711848023e-05, -3.6158950406915288e-07, -3.6158950406914466e-05, -2.8927160325532133e-06, -1.4463580162766047e-06, -1.4463580162766111e-06, -1.8079475203457326e-07, -1.8079475203457546e-07, -1.4463580162766033e-06, -1.446358016276602e-06, -3.6158950406915288e-07, -3.6158950406915288e-07, -1.8079475203457334e-07, -1.8079475203457456e-07, -1.4463580162765848e-06, -9.0397376017285639e-07, -5.4238425610371765e-07, -7.2317900813829485e-07, -7.2317900813829443e-07, -1.8079475203457535e-07, -2.7119212805186005e-06, -1.4463580162765961e-06, -1.4463580162765965e-06, -1.6271527683111498e-06, -1.4463580162765878e-06, -2.711921280518606e-06, -3.6158950406915071e-07, -1.8079475203457612e-07, -1.4463580162765882e-06, -1.4463580162765886e-06, -1.8079475203457546e-07, -1.8079475203457493e-07, -1.4463580162765973e-06, -1.4463580162765956e-06, -3.6158950406914626e-07, -1.8079475203457427e-07, -1.4463580162765925e-06, -2.8927160325532069e-06, -1.8079475203457236e-06, -1.4463580162766001e-06, -2.8927160325531862e-06, -1.8079475203457551e-07, -1.4463580162765965e-06, -3.0735107845877791e-06, -1.446358016276599e-06, -1.446358016276595e-06, -2.8927160325532095e-06, -5.7854320651064071e-06, -4.5198688008643988e-06, -1.4463580162765889e-06, -2.8927160325532108e-06, -2.8927160325532124e-06, -7.2317900813830555e-07, -1.4463580162765969e-06, -1.8079475203457249e-06, -1.9887422723802697e-06, -7.2317900813830576e-07, -2.8927160325531951e-06, -1.4463580162766001e-06, -1.4463580162765994e-06, -1.4463580162765999e-06, -3.6158950406914632e-07, -1.4463580162766083e-06, -1.4463580162765889e-06, -1.8079475203457639e-07, -1.4463580162765893e-06, -3.6158950406914854e-07, -1.4463580162766075e-06, -1.4463580162765992e-06, -1.4463580162766005e-06, -1.8079475203457554e-07, -2.8927160325532061e-06, -2.8927160325532078e-06, -1.8079475203457504e-07, -1.4463580162766005e-06, -1.4463580162766009e-06, -1.807947520345752e-07, -1.4463580162766115e-06, -1.4463580162766096e-06, -1.4463580162765946e-06, -1.44635801627661e-06, -4.3390740488298394e-06, -1.446358016276609e-06, -1.4463580162765916e-06, -1.4463580162765961e-06, -1.8079475203457448e-07, -1.4463580162765929e-06, -1.4463580162765956e-06, -2.8927160325531938e-06, -7.2317900813829443e-07, -3.2543055366222987e-06, -7.2317900813829485e-07, -1.807947520345762e-07, -3.6158950406914944e-07, -2.350331776449494e-06, -1.4463580162766005e-06, -2.8927160325531709e-06, -1.5186759170904323e-05, -1.4463580162765973e-06, -1.5909938179042164e-05, -1.4463580162765958e-06, -1.4463580162765946e-06, -2.8927160325532124e-06, -1.4463580162765745e-05, -2.8927160325532108e-06, -1.4644374914800313e-05, -1.8079475203457332e-07, -2.8927160325532091e-06, -2.8927160325532141e-06, -7.2317900813830407e-07, -1.5186759170904326e-05, -1.4463580162765689e-05, -1.4463580162765697e-05, -1.4463580162765787e-05, -1.8079475203457541e-07, -7.2317900813829242e-07, -1.8079475203457411e-07, -1.8079475203457588e-07, -1.8079475203457641e-07, -1.4463580162766028e-06, -1.4463580162766024e-06, -1.4463580162765997e-06, -1.4463580162766001e-06, -1.8079475203457414e-07, -1.807947520345743e-07, -1.8079475203457408e-07, -1.4463580162766056e-06, -1.8079475203457291e-06, -3.6158950406914522e-06, -2.8927160325531705e-06, -2.8927160325531904e-06, -1.4463580162766052e-06, -4.3390740488298242e-06, -5.42384256103715e-07, -1.5909938179042256e-05, -2.8927160325531887e-06, -1.3017222146489188e-05, -1.807947520345753e-07, -1.8079475203457472e-07, -4.5198688008643192e-06, -2.8927160325531938e-06, -1.4463580162765961e-06, -1.2655632642420269e-06, -7.2317900813829284e-07, -3.615895040691506e-07, -1.3017222146489188e-05, -3.6158950406915071e-07, -7.2317900813829464e-07, -7.2317900813829464e-07, -1.3017222146489188e-05, -1.4463580162765916e-06, -1.8079475203457461e-07, -1.4463580162765963e-06, -1.8079475203457411e-07, -1.446358016276595e-06, -1.8079475203457261e-06, -5.4238425610372866e-07, -1.4463580162765958e-06, -2.7119212805186238e-06, -1.8079475203457332e-07, -1.4463580162765912e-06, -3.6158950406915288e-07, -3.6158950406915283e-07, -3.6158950406915219e-07, -1.8079475203457498e-07, -1.0847685122074459e-06, -5.4238425610371849e-07, -1.4463580162766026e-06, -1.4463580162766043e-06, -2.8927160325531875e-06, -4.7006635528989405e-06, -4.1582792967951555e-06, -1.8079475203457332e-07, -2.8927160325532091e-06, -1.4463580162766062e-06, -1.0847685122074404e-06, -3.6158950406914653e-07, -1.807947520345743e-07, -1.8079475203457588e-07, -1.4463580162765787e-05, -1.4463580162765697e-05, -2.9288749829600444e-05, -1.4463580162765697e-05, -1.4463580162765745e-05, -7.2317900813830576e-07, -3.6158950406914653e-07, -1.4463580162765846e-06, -1.6271527683111502e-06, -7.2317900813830555e-07, -1.9887422723802777e-06, -1.8079475203457533e-07, -1.8079475203457345e-07, -2.8927160325531722e-06, -1.4463580162765914e-06, -1.4463580162765942e-06, -1.8079475203457475e-07, -1.8079475203457535e-07, -7.2317900813830015e-07, -7.2317900813830057e-07, -2.8927160325532074e-06, -1.4463580162766054e-06, -1.8079475203457385e-07, -2.9288749829600749e-05, -1.4463580162766035e-06, -1.446358016276603e-06, -1.8079475203457506e-07, -7.2317900813830057e-07, -7.2317900813830036e-07, -3.6158950406914679e-07, -3.6158950406914679e-07, -5.4238425610372548e-07, -1.8079475203457541e-07, -3.6158950406914679e-07, -3.6158950406914679e-07, -1.8079475203457432e-07, -1.8079475203457543e-07, -7.2317900813829496e-07, -2.1695370244149045e-06, -1.446358016276591e-06, -1.8079475203457406e-07, -1.8079475203457342e-07, -3.2543055366223033e-06, -1.8079475203457488e-07, -7.2317900813829242e-07, -3.6158950406914822e-07, -2.8927160325531777e-06, -2.8927160325531794e-06, -9.0397376017286497e-07, -7.2317900813829941e-07, -3.6158950406914626e-07, -1.0847685122074527e-06, -1.5367553922938771e-05, -1.8079475203457459e-07, -7.2317900813829941e-07, -7.2317900813829919e-07, -2.8927160325531811e-06, -2.892716032553176e-06, -7.2317900813829919e-07, -7.2317900813829665e-07, -7.2317900813829644e-07, -1.8079475203457408e-07, 0.00023720271466936142, -1.8079475203457092e-06, -1.8079475203457554e-07, -1.446358016276603e-06, -1.4463580162765853e-06, -1.4463580162766035e-06, -2.892716032553176e-06, -1.446358016276585e-06, -2.8927160325531811e-06, -1.446358016276585e-06, -1.446358016276585e-06, -5.5503988874614566e-05, -1.4463580162766066e-06, -3.6158950406914445e-05, -1.4463580162765929e-06, -3.6158950406915092e-07, -1.0847685122074411e-05, -2.1695370244149095e-06, -9.039737601728601e-07, -1.0847685122074407e-05, -1.8079475203457363e-07, -1.4463580162765999e-06, -1.4463580162765994e-06, -2.9288749829600749e-05, -1.4463580162765918e-06, -1.4463580162765922e-06, -4.1401998215917211e-05, -5.4238425610373056e-07, -3.61589504069145e-05, -1.4463580162766009e-06, -1.4463580162766005e-06, -1.8079475203457435e-07, -1.446358016276599e-06, -1.4463580162766003e-06, -1.8079475203457393e-07, -2.8927160325531794e-06, -2.8927160325531777e-06, -3.6158950406915219e-07, -7.2317900813830036e-07, -7.2317900813830057e-07, -1.4463580162766062e-06, -1.4463580162766058e-06, -2.9288749829600444e-05, -1.4463580162766043e-06, -1.4463580162766026e-06, -4.881458304933477e-06, -1.735629619531927e-05, -1.4463580162766001e-06, -1.2836427394454682e-05, -2.1695370244148706e-06, -2.1695370244148697e-06, -1.4463580162766043e-06, -1.4463580162766096e-06, -1.8079475203457278e-06, -1.4463580162766115e-06, -1.8079475203457253e-06, -3.7966897927260765e-06, -1.446358016276592e-06, -9.0397376017286327e-07, -4.1582792967951961e-06, -1.4463580162765914e-06, -2.1695370244149095e-06, -5.423842561037187e-07, -9.0397376017286094e-07, -3.615895040691523e-07, -1.8079475203457541e-07, -1.8079475203457461e-07, -1.4463580162766111e-06, -2.1695370244149155e-06, -1.0847685122074438e-06, -7.2317900813829591e-07, -1.4463580162766052e-06, -1.4463580162765853e-06, -1.446358016276585e-06, -2.8927160325531705e-06, -1.4463580162765882e-06, -7.2317900813829919e-07, -2.8927160325531705e-06, -1.4463580162765884e-06, -7.2317900813829941e-07, -1.4463580162765853e-06, -1.8079475203457361e-07, -1.4463580162765886e-06, -1.4463580162765882e-06, -2.8927160325532078e-06, -4.3390740488298343e-06, -1.4463580162765954e-06, -2.8927160325532133e-06, -2.8927160325532082e-06, -1.4463580162765886e-06, -1.4463580162765891e-06, -1.4463580162765914e-06, -1.4463580162765927e-06, -1.6271527683111472e-06, -6.1470215691755598e-06, -3.6158950406915166e-07, -1.446358016276609e-06, -1.446358016276588e-06, -1.6271527683111464e-06, -4.7006635528989193e-06, -1.4463580162766043e-06, -1.4463580162765963e-06, -1.4463580162766105e-06, -7.2317900813829941e-07, -7.2317900813829919e-07, -1.807947520345753e-07, -1.8079475203457641e-07, -1.8079475203457554e-07, -3.6158950406914997e-07, -3.0735107845877765e-06, -5.4238425610372044e-06, -2.169537024414907e-06, -1.0847685122074459e-06, -1.8079475203457451e-07, -7.2317900813829856e-07, -2.8927160325531887e-06, -4.339074048829836e-06, -1.4463580162766086e-06, -7.2317900813829856e-07, -2.8927160325531921e-06, -2.8927160325531904e-06, -7.2317900813829856e-07, -2.1695370244148985e-06, -1.4463580162765918e-06, 0.0002453384785109166, -3.6158950406915171e-07, -7.2317900813829856e-07, -7.2317900813829919e-07, -1.6271527683111479e-06, -9.039737601728637e-07, -1.4463580162766026e-06, -2.8927160325532069e-06, -1.3017222146489188e-05, -7.2317900813830407e-07, -1.8079475203457416e-07, -1.0847685122074409e-05, -1.4463580162765961e-06, -8.6781480976594857e-06, -8.678148097659645e-06, -9.0397376017286401e-06, -8.6781480976594857e-06, -7.2317900813830407e-07, -7.2317900813830385e-07, -1.4463580162765965e-06, -1.4463580162765978e-06, -7.2317900813829739e-07, -7.2317900813829739e-07, -1.4463580162766075e-06, -1.807947520345761e-07, -1.4463580162766083e-06, -1.8079475203457445e-07, -1.807947520345752e-07, -1.2655632642420208e-05, -7.2317900813829739e-07, -7.2317900813829739e-07, -1.1028479874108984e-05, -3.615895040691515e-07, -1.3017222146489188e-05, -1.3017222146489188e-05, -1.4463580162765965e-06, -1.8079475203457416e-07, -1.4463580162765952e-06, -1.3017222146489188e-05, -1.3017222146489181e-05, -1.4463580162765942e-06, -1.4463580162765929e-06, -3.6158950406914774e-07, -3.615895040691506e-07, -2.8927160325531739e-06, -1.4463580162765933e-06, -1.4463580162765937e-06, -5.4238425610372929e-07, -2.8927160325531739e-06, -4.8211933875886849e-06, -4.8211933875886764e-06, -4.8211933875886747e-06, -4.8211933875886866e-06, -2.4105966937943221e-06, -2.4105966937943221e-06, -4.8211933875886391e-06, -4.82119338758864e-06, -6.0264917344858307e-07, -6.0264917344858328e-07, -0.00012113248386316487, -0.00012052983468971616, 0.00024250602739570821, -6.0264917344858307e-07, -1.8079475203457291e-06, 0.0024491662408950132, -4.8211933875886219e-05, -1.2052983468971666e-06, -5.5443723957269178e-05, -6.0264917344857989e-07, -9.6423867751773494e-06, -9.6423867751773528e-06, -4.8211933875886408e-06, -4.8211933875886383e-06, -4.8211933875886219e-05, -4.8211933875886219e-05, -4.8211933875886815e-06, -0.00013680136237282812, -1.2052983468971716e-06, -0.00012052983468971583, -9.642386775177346e-06, -4.8211933875886764e-06, -4.8211933875886849e-06, -6.0264917344857894e-07, -6.026491734485801e-07, -4.8211933875886391e-06, -4.8211933875886357e-06, -1.2052983468971716e-06, -1.2052983468971716e-06, -6.0264917344857968e-07, -6.0264917344857947e-07, -4.8211933875886391e-06, -3.0132458672428971e-06, -1.8079475203457481e-06, -2.4105966937943213e-06, -2.4105966937943221e-06, -6.0264917344858307e-07, -9.0397376017288519e-06, -4.8211933875886544e-06, -4.8211933875886527e-06, -5.4238425610372061e-06, -4.8211933875886425e-06, -9.0397376017287977e-06, -1.2052983468971666e-06, -6.0264917344858519e-07, -4.8211933875886425e-06, -4.8211933875886408e-06, -6.0264917344858392e-07, -6.0264917344858222e-07, -4.8211933875886527e-06, -4.8211933875886544e-06, -1.2052983468971759e-06, -6.0264917344858159e-07, -4.8211933875886493e-06, -9.6423867751773359e-06, -6.02649173448584e-06, -4.8211933875886645e-06, -9.6423867751773223e-06, -6.0264917344858413e-07, -4.821193387588651e-06, -1.024503594862584e-05, -4.8211933875886629e-06, -4.8211933875886561e-06, -9.642386775177346e-06, -1.92847735503548e-05, -1.5066229336214506e-05, -4.8211933875886357e-06, -9.6423867751773426e-06, -9.642386775177346e-06, -2.4105966937943433e-06, -4.8211933875886544e-06, -6.0264917344858324e-06, -6.6291409079343358e-06, -2.4105966937943433e-06, -9.642386775177407e-06, -4.8211933875886595e-06, -4.8211933875886612e-06, -4.8211933875886612e-06, -1.2052983468971759e-06, -4.8211933875886493e-06, -4.8211933875886357e-06, -6.0264917344858519e-07, -4.8211933875886357e-06, -1.2052983468971678e-06, -4.8211933875886493e-06, -4.8211933875886662e-06, -4.8211933875886629e-06, -6.0264917344858413e-07, -9.6423867751773528e-06, -9.6423867751773494e-06, -6.0264917344858307e-07, -4.8211933875886612e-06, -4.8211933875886612e-06, -6.0264917344858286e-07, -4.8211933875886544e-06, -4.8211933875886561e-06, -4.8211933875886578e-06, -4.8211933875886561e-06, -1.4463580162765853e-05, -4.8211933875886798e-06, -4.8211933875886493e-06, -4.8211933875886493e-06, -6.026491734485818e-07, -4.8211933875886476e-06, -4.8211933875886493e-06, -9.6423867751773223e-06, -2.4105966937943221e-06, -1.0847685122074373e-05, -2.4105966937943213e-06, -6.0264917344858159e-07, -1.2052983468971653e-06, -7.8344392548315113e-06, -4.8211933875886629e-06, -9.6423867751773596e-06, -5.0622530569680656e-05, -4.8211933875886527e-06, -5.3033127263474714e-05, -4.8211933875886544e-06, -4.8211933875886578e-06, -9.642386775177346e-06, -4.8211933875886713e-05, -9.6423867751773426e-06, -4.8814583049334938e-05, -6.0264917344857904e-07, -9.6423867751773393e-06, -9.6423867751773494e-06, -2.4105966937943407e-06, -5.0622530569680656e-05, -4.8211933875886219e-05, -4.8211933875886435e-05, -4.8211933875886767e-05, -6.026491734485837e-07, -2.410596693794317e-06, -6.0264917344858137e-07, -6.0264917344858095e-07, -6.0264917344858561e-07, -4.8211933875886374e-06, 0.0019593329927160203, -4.8211933875886662e-06, -4.8211933875886645e-06, -6.0264917344858137e-07, -6.0264917344858159e-07, -6.0264917344858095e-07, -4.8211933875886747e-06, -6.0264917344858578e-06, -1.2052983468971436e-05, -9.6423867751773799e-06, -9.6423867751773138e-06, -4.8211933875886764e-06, -1.4463580162765955e-05, -1.8079475203457439e-06, -5.3033127263475012e-05, -9.6423867751773172e-06, -4.3390740488297236e-05, -6.026491734485837e-07, -6.0264917344858243e-07, -1.5066229336214513e-05, -9.6423867751773223e-06, -4.8211933875886544e-06, -4.2185442141400425e-06, -2.4105966937943158e-06, -1.2052983468971663e-06, -4.3390740488297236e-05, -1.2052983468971666e-06, -2.4105966937943221e-06, -2.4105966937943221e-06, -4.3390740488297236e-05, -4.8211933875886459e-06, -6.0264917344858222e-07, -4.8211933875886561e-06, 0.00024491662408950254, -4.8211933875886578e-06, -6.0264917344858425e-06, -1.8079475203457583e-06, -4.8211933875886561e-06, -9.0397376017286571e-06, -6.0264917344857968e-07, -4.8211933875886459e-06, -1.2052983468971716e-06, -1.2052983468971716e-06, -1.2052983468971699e-06, -6.0264917344857947e-07, -3.6158950406914937e-06, -1.8079475203457524e-06, -4.8211933875886705e-06, -4.8211933875886679e-06, -9.6423867751773359e-06, -1.5668878509663029e-05, -1.3860930989317115e-05, -6.0264917344857968e-07, -9.642386775177302e-06, -4.8211933875886442e-06, -3.6158950406914802e-06, -1.2052983468971619e-06, -6.0264917344858159e-07, -6.0264917344858095e-07, -4.8211933875886767e-05, -4.8211933875886435e-05, -9.7629166098670919e-05, -4.8211933875886435e-05, -4.8211933875886713e-05, -2.4105966937943433e-06, -1.2052983468971644e-06, -4.8211933875886679e-06, -5.4238425610372061e-06, -2.4105966937943433e-06, -6.6291409079343672e-06, -6.0264917344858328e-07, -6.0264917344857989e-07, -9.6423867751773155e-06, -4.8211933875886442e-06, -4.821193387588651e-06, -6.0264917344858264e-07, -6.0264917344858307e-07, -2.410596693794334e-06, -2.410596693794334e-06, -9.642386775177302e-06, -4.8211933875886425e-06, -6.0264917344858074e-07, -9.762916609866993e-05, -4.8211933875886688e-06, -4.8211933875886696e-06, -6.0264917344858307e-07, -2.410596693794334e-06, -2.410596693794334e-06, -1.2052983468971589e-06, -1.2052983468971587e-06, -1.8079475203457373e-06, -6.0264917344858328e-07, -1.2052983468971587e-06, -1.2052983468971589e-06, -6.0264917344858137e-07, -6.0264917344858392e-07, -2.4105966937943221e-06, -7.2317900813829773e-06, -4.8211933875886442e-06, -6.0264917344858116e-07, -6.0264917344857989e-07, -1.0847685122074431e-05, -6.0264917344858222e-07, -2.4105966937943399e-06, -1.2052983468971704e-06, -9.6423867751772867e-06, -9.6423867751772833e-06, -3.0132458672429247e-06, -2.4105966937943289e-06, -1.205298346897175e-06, -3.6158950406914937e-06, -5.1225179743129219e-05, -6.0264917344857947e-07, -2.4105966937943289e-06, -2.410596693794328e-06, -9.64238677517728e-06, -9.6423867751772901e-06, -2.4105966937943306e-06, -2.4105966937943255e-06, -2.4105966937943255e-06, -6.0264917344858116e-07, -2.7721861978634511e-05, -6.0264917344857951e-06, -6.0264917344858413e-07, -4.8211933875886696e-06, -4.8211933875886832e-06, -4.8211933875886688e-06, -9.6423867751772901e-06, -4.821193387588629e-06, -9.64238677517728e-06, -4.8211933875886832e-06, -4.8211933875886832e-06, -0.00018501329624871448, -4.8211933875886459e-06, -0.00012052983468971578, -4.8211933875886476e-06, -1.2052983468971666e-06, -3.6158950406914913e-05, -7.2317900813829689e-06, -3.0132458672429162e-06, -3.6158950406914723e-05, -6.026491734485801e-07, -4.8211933875886612e-06, -4.8211933875886612e-06, -9.762916609866993e-05, -4.8211933875886425e-06, -4.8211933875886425e-06, -0.00013800666071972487, -1.807947520345753e-06, -0.00012052983468971575, -4.8211933875886612e-06, -4.8211933875886612e-06, -6.0264917344858116e-07, -4.8211933875886629e-06, -4.8211933875886595e-06, -6.0264917344858095e-07, -9.6423867751772833e-06, -9.6423867751772867e-06, -1.2052983468971699e-06, -2.410596693794334e-06, -2.410596693794334e-06, -4.8211933875886442e-06, -4.8211933875886442e-06, -9.7629166098670919e-05, -4.8211933875886679e-06, -4.8211933875886705e-06, -1.6271527683111654e-05, -5.7854320651063534e-05, -4.8211933875886595e-06, -4.2788091314848821e-05, -7.2317900813829723e-06, -7.2317900813829723e-06, -4.8211933875886764e-06, -4.8211933875886561e-06, -6.0264917344858586e-06, -4.8211933875886544e-06, -6.026491734485851e-06, -1.2655632642420178e-05, -4.8211933875886493e-06, -3.0132458672429272e-06, -1.3860930989317267e-05, -4.8211933875886408e-06, -7.2317900813829739e-06, -1.8079475203457543e-06, -3.013245867242917e-06, -1.2052983468971704e-06, -6.026491734485837e-07, -6.0264917344858222e-07, -4.8211933875886849e-06, -7.2317900813830138e-06, -3.6158950406914984e-06, -2.4105966937943238e-06, -4.8211933875886764e-06, -4.8211933875886815e-06, -4.8211933875886832e-06, -9.6423867751772732e-06, -4.8211933875886408e-06, -2.410596693794328e-06, -9.6423867751772681e-06, -4.8211933875886391e-06, -2.4105966937943289e-06, -4.8211933875886832e-06, -6.026491734485801e-07, -4.8211933875886408e-06, -4.8211933875886425e-06, -9.6423867751773494e-06, -1.4463580162766e-05, -4.8211933875886561e-06, -9.642386775177346e-06, -9.6423867751773528e-06, -4.82119338758864e-06, -4.8211933875886391e-06, -4.8211933875886408e-06, -4.8211933875886442e-06, -5.4238425610371595e-06, -2.0490071897251674e-05, -1.2052983468971712e-06, -4.8211933875886798e-06, -4.8211933875886408e-06, -5.4238425610371612e-06, -1.5668878509663023e-05, -4.8211933875886764e-06, -4.8211933875886561e-06, -4.8211933875886849e-06, -2.4105966937943289e-06, -2.4105966937943289e-06, -6.026491734485837e-07, -6.0264917344858561e-07, -6.0264917344858413e-07, -1.2052983468971589e-06, -1.0245035948625835e-05, -1.8079475203457321e-05, -7.2317900813829655e-06, -3.6158950406914937e-06, -6.0264917344858201e-07, -2.4105966937943272e-06, -9.6423867751773172e-06, -1.4463580162765934e-05, -4.8211933875886815e-06, -2.4105966937943272e-06, -9.6423867751773105e-06, -9.6423867751773138e-06, -2.4105966937943272e-06, -7.2317900813829536e-06, -4.8211933875886425e-06, -6.0264917344858497e-07, -1.2052983468971691e-06, -2.4105966937943272e-06, -2.4105966937943306e-06, -5.4238425610371765e-06, -3.0132458672428531e-06, -4.8211933875886696e-06, -9.6423867751773359e-06, -4.3390740488297554e-05, -2.4105966937943407e-06, -6.0264917344858137e-07, -3.6158950406914696e-05, -4.8211933875886493e-06, -2.8927160325532075e-05, -2.8927160325532062e-05, -3.0132458672429026e-05, -2.8927160325532075e-05, -2.4105966937943407e-06, -2.4105966937943407e-06, -4.8211933875886527e-06, -4.8211933875886561e-06, -2.4105966937943263e-06, -2.4105966937943263e-06, -4.8211933875886493e-06, -6.0264917344858476e-07, -4.8211933875886493e-06, -6.026491734485818e-07, -6.0264917344858286e-07, -4.21854421414004e-05, -2.4105966937943263e-06, -2.4105966937943263e-06, -3.6761599580363416e-05, -1.2052983468971683e-06, -4.3390740488297236e-05, -4.3390740488297236e-05, -4.821193387588651e-06, -6.0264917344858074e-07, -4.8211933875886476e-06, -4.3390740488297236e-05, -4.3390740488297676e-05, -4.821193387588651e-06, -4.8211933875886527e-06, -1.2052983468971615e-06, -1.2052983468971674e-06, -9.6423867751772749e-06, -4.8211933875886527e-06, -4.821193387588651e-06, -1.8079475203457342e-06, -9.6423867751772749e-06, -3.8569547100709587e-05, -3.856954710070952e-05, -3.8569547100709506e-05, -3.8569547100709587e-05, -1.9284773550354624e-05, -1.9284773550354624e-05, -3.8569547100709228e-05, -3.8569547100709235e-05, -4.8211933875886798e-06, -4.8211933875886798e-06, -0.00096905987090532006, -0.00096423867751773058, -2.4105966937942987e-05, -4.8211933875886798e-06, -1.4463580162765689e-05, -4.8211933875886219e-05, 0.019255846390029061, -9.6423867751773596e-06, -0.00044354979165815548, -4.8211933875886527e-06, -7.7139094201419012e-05, -7.7139094201419039e-05, -3.8569547100709242e-05, -3.8569547100709221e-05, -0.0003856954710070911, -0.00038569547100709262, -3.856954710070956e-05, -0.0010944108989826269, -9.6423867751773833e-06, -0.00096423867751772798, -7.7139094201418985e-05, -3.8569547100709506e-05, -3.8569547100709574e-05, -4.8211933875886459e-06, -4.8211933875886849e-06, -3.8569547100709452e-05, -3.8569547100709438e-05, -9.6423867751773833e-06, -9.6423867751773867e-06, -4.821193387588651e-06, -4.8211933875886696e-06, -3.8569547100709201e-05, -2.4105966937942896e-05, -1.4463580162765884e-05, -1.9284773550354624e-05, -1.9284773550354631e-05, -4.8211933875886798e-06, -7.2317900813830666e-05, -3.8569547100709343e-05, -3.8569547100709343e-05, -4.339074048829754e-05, -3.8569547100709249e-05, -7.2317900813830341e-05, -9.6423867751773596e-06, -4.8211933875886866e-06, -3.8569547100709249e-05, -3.8569547100709235e-05, -4.8211933875886849e-06, -4.821193387588673e-06, -3.856954710070933e-05, -3.8569547100709357e-05, -9.6423867751774341e-06, -4.8211933875886662e-06, -3.8569547100709303e-05, -7.7139094201418931e-05, -4.821193387588613e-05, -3.8569547100709425e-05, -7.7139094201418795e-05, -4.8211933875886866e-06, -3.8569547100709316e-05, -8.1960287589006762e-05, -3.8569547100709411e-05, -3.8569547100709357e-05, -7.713909420141885e-05, -0.00015427818840283862, -0.00012052983468971624, -3.8569547100709194e-05, -7.7139094201418985e-05, -7.7139094201419012e-05, -1.92847735503548e-05, -3.8569547100709343e-05, -4.8211933875886083e-05, -5.3033127263474605e-05, -1.92847735503548e-05, -7.7139094201419473e-05, -3.8569547100709398e-05, -3.8569547100709411e-05, -3.8569547100709398e-05, -9.6423867751774307e-06, -3.8569547100709533e-05, -3.8569547100709194e-05, -4.821193387588695e-06, -3.8569547100709208e-05, -9.6423867751773697e-06, -3.8569547100709547e-05, -3.8569547100709438e-05, -3.8569547100709425e-05, -4.8211933875886866e-06, -7.7139094201418904e-05, -7.7139094201418877e-05, -4.8211933875886781e-06, -3.8569547100709398e-05, -3.8569547100709411e-05, -4.8211933875886772e-06, -3.8569547100709574e-05, -3.8569547100709601e-05, -3.8569547100709357e-05, -3.8569547100709587e-05, -0.00011570864130212563, -3.856954710070956e-05, -3.8569547100709316e-05, -3.8569547100709316e-05, -4.8211933875886476e-06, -3.8569547100709289e-05, -3.8569547100709303e-05, -7.7139094201418795e-05, -1.9284773550354631e-05, -8.6781480976594796e-05, -1.9284773550354624e-05, -4.821193387588695e-06, -9.642386775177346e-06, -6.2675514038651928e-05, -3.8569547100709425e-05, -7.7139094201419093e-05, -0.00040498024455744438, -3.856954710070933e-05, -0.00042426501810779879, -3.8569547100709343e-05, -3.8569547100709357e-05, -7.7139094201419012e-05, -0.0003856954710070891, -7.7139094201418985e-05, -0.00039051666439468032, -4.8211933875886468e-06, -7.7139094201418958e-05, -7.7139094201419039e-05, -1.9284773550354773e-05, -0.0004049802445574446, 0.019255846390029061, -0.00038569547100708688, -0.00038569547100708948, -4.8211933875886849e-06, -1.9284773550354584e-05, -4.8211933875886629e-06, -4.8211933875886916e-06, -4.8211933875886916e-06, -3.8569547100709452e-05, -3.8569547100709438e-05, -3.8569547100709438e-05, -3.8569547100709425e-05, -4.8211933875886629e-06, -4.8211933875886662e-06, -4.8211933875886476e-06, -3.8569547100709506e-05, -4.8211933875886286e-05, -9.6423867751772302e-05, -7.7139094201419256e-05, -7.7139094201418741e-05, -3.856954710070952e-05, -0.00011570864130212682, -1.4463580162765941e-05, -0.00042426501810779939, -7.7139094201418768e-05, -0.00034712592390637702, -4.8211933875886832e-06, -4.821193387588673e-06, -0.00012052983468971627, -7.7139094201418795e-05, -3.8569547100709343e-05, -3.3748353713120516e-05, -1.928477355035458e-05, -9.6423867751773596e-06, -0.00034712592390637702, -9.6423867751773596e-06, -1.9284773550354624e-05, -1.9284773550354624e-05, -0.00034712592390637702, -3.8569547100709262e-05, -4.8211933875886696e-06, -3.8569547100709357e-05, -4.8211933875886476e-06, -3.8569547100709371e-05, -4.8211933875886151e-05, -1.4463580162765939e-05, -3.8569547100709357e-05, -7.2317900813829284e-05, -4.821193387588651e-06, -3.8569547100709276e-05, -9.6423867751773833e-06, -9.6423867751773867e-06, -9.6423867751773867e-06, -4.8211933875886764e-06, -2.8927160325531733e-05, -1.4463580162765916e-05, -3.8569547100709479e-05, -3.8569547100709459e-05, -7.7139094201418877e-05, -0.00012535102807730413, -0.00011088744791453836, -4.821193387588651e-06, -7.7139094201419121e-05, -3.8569547100709506e-05, -2.8927160325531774e-05, -9.6423867751773189e-06, -4.8211933875886662e-06, -4.8211933875886916e-06, -0.00038569547100708948, -0.00038569547100708688, -0.00078103332878936887, -0.00038569547100708688, -0.0003856954710070891, -1.92847735503548e-05, -9.6423867751773426e-06, -3.8569547100709452e-05, -4.3390740488297568e-05, -1.92847735503548e-05, -5.3033127263474842e-05, -4.8211933875886806e-06, -4.8211933875886527e-06, -7.7139094201418578e-05, -3.8569547100709167e-05, -3.8569547100709303e-05, -4.821193387588673e-06, -4.8211933875886798e-06, -1.9284773550354726e-05, -1.9284773550354719e-05, -7.7139094201419093e-05, -3.8569547100709493e-05, -4.8211933875886578e-06, -0.00078103332878936118, -3.8569547100709465e-05, -3.8569547100709472e-05, -4.8211933875886781e-06, -1.9284773550354719e-05, -1.9284773550354726e-05, -9.6423867751773003e-06, -9.6423867751772986e-06, -1.4463580162765797e-05, -4.8211933875886798e-06, -9.6423867751772986e-06, -9.6423867751773003e-06, -4.8211933875886476e-06, -4.8211933875886849e-06, -1.9284773550354631e-05, -5.7854320651063453e-05, -3.8569547100709167e-05, -4.8211933875886629e-06, -4.8211933875886527e-06, -8.6781480976594756e-05, -4.8211933875886713e-06, -1.9284773550354746e-05, -9.6423867751773765e-06, -7.7139094201418524e-05, -7.7139094201418497e-05, -2.4105966937943109e-05, -1.9284773550354685e-05, -9.642386775177424e-06, -2.8927160325531794e-05, -0.00040980143794503321, -4.8211933875886713e-06, -1.9284773550354692e-05, -1.9284773550354685e-05, -7.713909420141847e-05, -7.7139094201418551e-05, -1.9284773550354699e-05, -1.928477355035459e-05, -1.928477355035459e-05, -4.8211933875886629e-06, -0.00022177489582907845, -4.8211933875885785e-05, -4.8211933875886866e-06, -3.8569547100709472e-05, -3.8569547100709587e-05, -3.8569547100709465e-05, -7.7139094201418551e-05, -3.8569547100709147e-05, -7.713909420141847e-05, -3.8569547100709587e-05, -3.8569547100709587e-05, -0.0014801063699896996, -3.8569547100709506e-05, -0.00096423867751772754, -3.8569547100709289e-05, -9.642386775177363e-06, -0.00028927160325531703, -5.7854320651063642e-05, -2.4105966937942879e-05, -0.00028927160325531768, -4.8211933875886544e-06, -3.8569547100709398e-05, -3.8569547100709411e-05, -0.00078103332878936118, -3.8569547100709249e-05, -3.8569547100709262e-05, -0.0011040532857578005, -1.4463580162765897e-05, -0.00096423867751772754, -3.8569547100709411e-05, -3.8569547100709398e-05, -4.8211933875886637e-06, -3.8569547100709411e-05, -3.8569547100709398e-05, -4.8211933875886595e-06, -7.7139094201418497e-05, -7.7139094201418524e-05, -9.6423867751773867e-06, -1.9284773550354726e-05, -1.9284773550354719e-05, -3.8569547100709506e-05, -3.8569547100709493e-05, -0.00078103332878936887, -3.8569547100709459e-05, -3.8569547100709479e-05, -0.0001301722214648922, -0.00046283456520850556, -3.8569547100709398e-05, -0.00034230473051879024, -5.785432065106371e-05, -5.7854320651063697e-05, -3.856954710070952e-05, -3.8569547100709601e-05, -4.8211933875886307e-05, -3.8569547100709574e-05, -4.8211933875886225e-05, -0.00010124506113936157, -3.8569547100709303e-05, -2.4105966937943136e-05, -0.00011088744791453926, -3.8569547100709249e-05, -5.7854320651063656e-05, -1.4463580162765928e-05, -2.4105966937942906e-05, -9.6423867751773765e-06, -4.8211933875886849e-06, -4.8211933875886696e-06, -3.8569547100709574e-05, -5.785432065106367e-05, -2.8927160325531767e-05, -1.9284773550354645e-05, -3.8569547100709506e-05, -3.856954710070956e-05, -3.8569547100709587e-05, -7.7139094201418402e-05, -3.8569547100709242e-05, -1.9284773550354685e-05, -7.7139094201418335e-05, -3.8569547100709221e-05, -1.9284773550354692e-05, -3.8569547100709587e-05, -4.8211933875886544e-06, -3.8569547100709235e-05, -3.8569547100709249e-05, -7.7139094201418877e-05, -0.00011570864130212699, -3.8569547100709371e-05, -7.7139094201418985e-05, -7.7139094201419066e-05, -3.8569547100709235e-05, -3.8569547100709228e-05, -3.8569547100709249e-05, -3.8569547100709262e-05, -4.3390740488297168e-05, -0.00016392057517801352, -9.6423867751774544e-06, -3.856954710070956e-05, -3.8569547100709221e-05, -4.3390740488297181e-05, -0.00012535102807730407, -3.856954710070952e-05, -3.8569547100709357e-05, -3.8569547100709587e-05, -1.9284773550354685e-05, -1.9284773550354685e-05, -4.8211933875886815e-06, -4.8211933875886916e-06, -4.8211933875886866e-06, -9.6423867751773528e-06, -8.1960287589006599e-05, -0.00014463580162765878, -5.7854320651063304e-05, -2.8927160325531733e-05, -4.8211933875886679e-06, -1.9284773550354672e-05, -7.7139094201418768e-05, -0.00011570864130212666, -3.856954710070956e-05, -1.9284773550354679e-05, -7.7139094201418714e-05, -7.7139094201418741e-05, -1.9284773550354679e-05, -5.7854320651063222e-05, -3.8569547100709249e-05, -4.821193387588695e-06, -9.6423867751774409e-06, -1.9284773550354672e-05, -1.9284773550354699e-05, -4.3390740488297303e-05, -2.4105966937943096e-05, -3.8569547100709465e-05, -7.7139094201418904e-05, -0.00034712592390637788, -1.9284773550354773e-05, -4.8211933875886645e-06, -0.00028927160325531703, -3.8569547100709316e-05, -0.00023141728260425495, -0.00023141728260425484, -0.00024105966937943264, -0.00023141728260425495, -1.9284773550354773e-05, -1.928477355035478e-05, -3.8569547100709343e-05, -3.8569547100709357e-05, -1.928477355035459e-05, -1.928477355035459e-05, -3.8569547100709547e-05, -4.8211933875886933e-06, -3.8569547100709533e-05, -4.8211933875886476e-06, -4.8211933875886772e-06, -0.00033748353713120309, -1.928477355035459e-05, -1.928477355035459e-05, -0.00029409279664290461, -9.6423867751773748e-06, -0.00034712592390637702, -0.00034712592390637702, -3.8569547100709316e-05, -4.8211933875886612e-06, -3.8569547100709303e-05, -0.00034712592390637702, -0.00034712592390638054, -3.8569547100709303e-05, -3.856954710070933e-05, -9.6423867751773189e-06, -9.6423867751773664e-06, -7.7139094201418416e-05, -3.8569547100709316e-05, -3.8569547100709316e-05, -1.4463580162765772e-05, -7.7139094201418416e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -2.4226496772633021e-05, -2.4105966937943089e-05, -6.0264917344857947e-07, -1.2052983468971531e-07, -3.6158950406915039e-07, -1.2052983468971666e-06, -9.6423867751773596e-06, 0.00049079748685652272, -1.1088744791453823e-05, -1.2052983468971533e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -9.6423867751773613e-06, -9.6423867751773596e-06, -9.6423867751772245e-07, -2.736027247456533e-05, -2.4105966937943056e-07, -2.4105966937943411e-05, -1.9284773550354445e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971533e-07, -9.6423867751772245e-07, -9.6423867751772266e-07, -2.4105966937943056e-07, -2.4105966937943056e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -9.6423867751772202e-07, -6.0264917344857947e-07, 0.0004906769570218332, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.8079475203457594e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.0847685122074258e-06, -9.6423867751772266e-07, -1.8079475203457539e-06, -2.4105966937943061e-07, -1.2052983468971531e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971531e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943061e-07, -1.2052983468971536e-07, -9.6423867751772266e-07, -1.9284773550354457e-06, -1.2052983468971587e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.2052983468971531e-07, -9.6423867751772266e-07, -2.0490071897251474e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -3.8569547100708889e-06, -3.0132458672428446e-06, -9.6423867751772266e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886112e-07, -9.6423867751772245e-07, -1.2052983468971587e-06, -1.3258281815868631e-06, -4.8211933875886112e-07, -1.9284773550354445e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772266e-07, -1.2052983468971528e-07, -9.6423867751772266e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.2052983468971531e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772287e-07, -9.6423867751772245e-07, -2.8927160325532023e-06, -9.6423867751772224e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.1695370244148558e-06, -4.8211933875886144e-07, -1.2052983468971531e-07, -2.4105966937943072e-07, -1.5668878509663148e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.0124506113936161e-05, -9.6423867751772266e-07, -1.0606625452694912e-05, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -9.6423867751773003e-06, -1.9284773550354449e-06, -9.7629166098670421e-06, -1.2052983468971531e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -1.0124506113936161e-05, -9.6423867751773596e-06, -9.6423867751772935e-06, -9.6423867751773172e-06, -1.2052983468971531e-07, -4.8211933875886101e-07, -1.2052983468971536e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -9.6423867751772245e-07, -1.2052983468971683e-06, -2.4105966937943306e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325532052e-06, -3.6158950406915584e-07, -1.0606625452694995e-05, -1.9284773550354449e-06, -8.6781480976594569e-06, -1.2052983468971531e-07, -1.2052983468971536e-07, -3.0132458672429043e-06, -1.9284773550354457e-06, -9.6423867751772266e-07, -8.437088428280078e-07, -4.8211933875886112e-07, -2.4105966937943061e-07, -8.6781480976594535e-06, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976594535e-06, -9.6423867751772287e-07, -1.2052983468971536e-07, -9.6423867751772266e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -1.2052983468971636e-06, -3.615895040691506e-07, -9.6423867751772266e-07, -1.8079475203457477e-06, -1.2052983468971536e-07, -9.6423867751772287e-07, -2.4105966937943056e-07, -2.4105966937943056e-07, -2.4105966937943061e-07, -1.2052983468971536e-07, -7.2317900813830523e-07, -3.615895040691551e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -3.1337757019326203e-06, -2.772186197863457e-06, -1.2052983468971536e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -7.2317900813830682e-07, -2.4105966937943066e-07, -1.2052983468971536e-07, -1.2052983468971531e-07, -9.6423867751773172e-06, -9.6423867751772935e-06, -1.9525833219734145e-05, -9.6423867751772935e-06, -9.6423867751773003e-06, -4.8211933875886112e-07, -2.4105966937943061e-07, -9.6423867751772202e-07, -1.0847685122074236e-06, -4.8211933875886112e-07, -1.3258281815868701e-06, -1.2052983468971531e-07, -1.2052983468971533e-07, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772287e-07, -1.2052983468971536e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -1.2052983468971536e-07, -1.9525833219734101e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -3.615895040691506e-07, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -4.8211933875886112e-07, -1.4463580162766033e-06, -9.6423867751772266e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -2.1695370244148608e-06, -1.2052983468971533e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -6.0264917344858222e-07, -4.8211933875886133e-07, -2.4105966937943061e-07, -7.2317900813830099e-07, -1.0245035948625833e-05, -1.2052983468971536e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971536e-07, -5.5443723957268921e-06, -1.2052983468971589e-06, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -9.6423867751772224e-07, -1.9284773550354453e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -3.7002659249743191e-05, -9.6423867751772245e-07, -2.4105966937943157e-05, -9.6423867751772266e-07, -2.4105966937943061e-07, -7.2317900813829435e-06, -1.4463580162766028e-06, -6.0264917344858137e-07, -7.2317900813830256e-06, -1.2052983468971536e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9525833219734101e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.7601332143944732e-05, -3.6158950406915039e-07, -2.4105966937943262e-05, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971533e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971536e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9525833219734145e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.2543055366223046e-06, -1.1570864130212819e-05, -9.6423867751772287e-07, -8.55761826296971e-06, -1.4463580162766016e-06, -1.4463580162766016e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971691e-06, -9.6423867751772245e-07, -1.2052983468971663e-06, -2.5311265284840394e-06, -9.6423867751772266e-07, -6.0264917344858381e-07, -2.7721861978634452e-06, -9.6423867751772266e-07, -1.4463580162766028e-06, -3.6158950406915521e-07, -6.0264917344858127e-07, -2.4105966937943056e-07, -1.2052983468971531e-07, -1.2052983468971536e-07, -9.6423867751772245e-07, -1.446358016276602e-06, -7.2317900813830661e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.9284773550354445e-06, -9.6423867751772266e-07, -4.8211933875886133e-07, -1.9284773550354445e-06, -9.6423867751772287e-07, -4.8211933875886133e-07, -9.6423867751772224e-07, -1.2052983468971536e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354449e-06, -2.892716032553204e-06, -9.6423867751772266e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.0847685122074308e-06, -4.0980143794503201e-06, -2.4105966937943056e-07, -9.6423867751772224e-07, -9.6423867751772287e-07, -1.0847685122074308e-06, -3.1337757019326237e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.0490071897251355e-06, -3.6158950406914751e-06, -1.4463580162766028e-06, -7.2317900813830523e-07, -1.2052983468971536e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -2.8927160325532036e-06, -9.6423867751772224e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -1.4463580162766026e-06, -9.6423867751772266e-07, -1.2052983468971531e-07, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.0847685122074292e-06, -6.0264917344858286e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -8.6781480976594569e-06, -4.8211933875886122e-07, -1.2052983468971536e-07, -7.2317900813829435e-06, -9.6423867751772266e-07, -5.7854320651064952e-06, -5.785432065106408e-06, -6.0264917344857866e-06, -5.7854320651064952e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -8.4370884282800715e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -7.3523199160726743e-06, -2.4105966937943061e-07, -8.6781480976594535e-06, -8.6781480976594535e-06, -9.6423867751772266e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -8.6781480976594569e-06, -8.67814809765944e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -2.4105966937943061e-07, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.615895040691505e-07, -1.9284773550354457e-06, -4.4354979165815103e-05, -4.4354979165815252e-05, -4.4354979165815197e-05, -4.435497916581513e-05, -2.2177489582907792e-05, -2.2177489582907785e-05, -4.4354979165815584e-05, -4.4354979165815597e-05, -5.5443723957269082e-06, -5.5443723957269115e-06, -0.0011144188515411198, -0.0011088744791453969, -2.7721861978634836e-05, -5.5443723957269082e-06, -1.6633117187180822e-05, -5.5443723957269178e-05, -0.00044354979165815548, -1.1088744791453823e-05, 0.022077690879784787, -5.5443723957269497e-06, -8.8709958331630476e-05, -8.870995833163053e-05, -4.4354979165815624e-05, -4.4354979165815557e-05, -0.00044354979165815288, -0.00044354979165815418, -4.4354979165815909e-05, -0.0012585725338300133, -1.1088744791453782e-05, -0.0011088744791453919, -8.8709958331630395e-05, -4.4354979165815238e-05, -4.4354979165815089e-05, -5.5443723957269539e-06, -5.5443723957269115e-06, -4.4354979165815347e-05, -4.4354979165815319e-05, -1.1088744791453789e-05, -1.1088744791453789e-05, -5.544372395726953e-06, -5.5443723957269251e-06, -4.4354979165815706e-05, -2.7721861978634863e-05, -1.6633117187180693e-05, -2.2177489582907778e-05, -2.2177489582907799e-05, -5.5443723957269082e-06, -8.3165585935903672e-05, -4.4354979165815428e-05, -4.4354979165815414e-05, -4.9899351561542645e-05, -4.4354979165815624e-05, -8.3165585935903754e-05, -1.1088744791453816e-05, -5.544372395726898e-06, -4.4354979165815611e-05, -4.4354979165815597e-05, -5.5443723957269048e-06, -5.5443723957269183e-06, -4.4354979165815401e-05, -4.4354979165815455e-05, -1.1088744791454001e-05, -5.5443723957269319e-06, -4.4354979165815509e-05, -8.8709958331631615e-05, -5.5443723957269259e-05, -4.4354979165815333e-05, -8.8709958331631086e-05, -5.5443723957269048e-06, -4.4354979165815502e-05, -9.4254330727357307e-05, -4.435497916581536e-05, -4.4354979165815455e-05, -8.8709958331630585e-05, -0.0001774199166632616, -0.00013860930989317415, -4.4354979165815584e-05, -8.8709958331630558e-05, -8.8709958331630639e-05, -2.2177489582907545e-05, -4.4354979165815428e-05, -5.54437239572693e-05, -6.0988096352996409e-05, -2.2177489582907538e-05, -8.8709958331631953e-05, -4.4354979165815333e-05, -4.4354979165815347e-05, -4.4354979165815333e-05, -1.1088744791454001e-05, -4.4354979165815197e-05, -4.4354979165815584e-05, -5.5443723957268861e-06, -4.4354979165815604e-05, -1.1088744791453886e-05, -4.4354979165815211e-05, -4.4354979165815374e-05, -4.4354979165815319e-05, -5.5443723957269048e-06, -8.8709958331630747e-05, -8.8709958331630693e-05, -5.5443723957269149e-06, -4.4354979165815347e-05, -4.435497916581536e-05, -5.5443723957269115e-06, -4.435497916581513e-05, -4.4354979165815184e-05, -4.4354979165815469e-05, -4.435497916581517e-05, -0.0001330649374974466, -4.435497916581513e-05, -4.4354979165815557e-05, -4.4354979165815482e-05, -5.5443723957269149e-06, -4.4354979165815482e-05, -4.4354979165815469e-05, -8.8709958331630856e-05, -2.2177489582907799e-05, -9.9798703123085412e-05, -2.2177489582907778e-05, -5.5443723957268963e-06, -1.1088744791453843e-05, -7.2076841144450024e-05, -4.4354979165815319e-05, -8.870995833163175e-05, -0.00046572728124106395, -4.4354979165815401e-05, -0.00048790477082396954, -4.4354979165815414e-05, -4.4354979165815469e-05, -8.8709958331630639e-05, -0.00044354979165815527, -8.8709958331630558e-05, -0.0004490941640538826, -5.544372395726953e-06, -8.8709958331630476e-05, -8.8709958331630693e-05, -2.2177489582907572e-05, 0.019175814579794993, -0.00044354979165815548, -0.00044354979165815695, -0.00044354979165815424, -5.5443723957269065e-06, -2.2177489582907653e-05, -5.5443723957269353e-06, -5.5443723957269014e-06, -5.5443723957268946e-06, 0.0019197992069377972, -4.4354979165815347e-05, -4.4354979165815347e-05, -4.4354979165815333e-05, -5.5443723957269353e-06, -5.5443723957269319e-06, -5.5443723957269268e-06, -4.4354979165815197e-05, -5.5443723957269083e-05, -0.00011088744791453855, -8.8709958331631845e-05, -8.8709958331630951e-05, -4.4354979165815211e-05, -0.00013306493749744587, -1.6633117187180642e-05, -0.00048790477082397084, -8.8709958331631018e-05, -0.00039919481249234235, -5.5443723957269082e-06, 0.00023997490086722446, -0.00013860930989317426, -8.8709958331630856e-05, -4.4354979165815428e-05, -3.881060677008861e-05, -2.2177489582907788e-05, -1.1088744791453818e-05, -0.00039919481249234235, -1.1088744791453816e-05, -2.2177489582907785e-05, -2.2177489582907792e-05, -0.00039919481249234235, -4.4354979165815509e-05, -5.5443723957269251e-06, -4.4354979165815414e-05, -5.5443723957269268e-06, -4.4354979165815469e-05, -5.5443723957268948e-05, -1.6633117187180622e-05, -4.4354979165815428e-05, -8.3165585935903889e-05, -5.544372395726953e-06, -4.4354979165815543e-05, -1.1088744791453782e-05, -1.1088744791453789e-05, -1.1088744791453782e-05, -5.5443723957269166e-06, -3.3266234374361522e-05, -1.6633117187180673e-05, -4.4354979165815286e-05, -4.4354979165815231e-05, -8.8709958331631113e-05, -0.00014415368228890013, -0.000127520565101719, -5.544372395726953e-06, -8.8709958331631737e-05, -4.4354979165815292e-05, -3.3266234374361461e-05, -1.1088744791453926e-05, -5.5443723957269319e-06, -5.5443723957269014e-06, -0.00044354979165815424, -0.00044354979165815695, -0.00089818832810776498, -0.00044354979165815695, -0.00044354979165815527, -2.2177489582907538e-05, -1.108874479145394e-05, -4.435497916581576e-05, -4.9899351561542645e-05, -2.2177489582907545e-05, -6.0988096352996287e-05, -5.5443723957269082e-06, -5.5443723957269497e-06, -8.8709958331631086e-05, -4.4354979165815455e-05, -4.4354979165815469e-05, -5.5443723957269217e-06, -5.5443723957269082e-06, -2.217748958290766e-05, -2.2177489582907646e-05, -8.8709958331631737e-05, -4.4354979165815265e-05, -5.5443723957269429e-06, -0.00089818832810776563, -4.4354979165815252e-05, -4.4354979165815272e-05, -5.5443723957269149e-06, -2.2177489582907653e-05, -2.217748958290766e-05, -1.1088744791453903e-05, -1.1088744791453903e-05, -1.6633117187180791e-05, -5.5443723957269065e-06, -1.1088744791453903e-05, -1.1088744791453903e-05, -5.54437239572692e-06, -5.5443723957269048e-06, -2.2177489582907717e-05, -6.6532468748722691e-05, -4.4354979165815428e-05, -5.5443723957269353e-06, -5.5443723957269497e-06, 0.00014572057013986572, -5.5443723957269183e-06, -2.2177489582907578e-05, -1.1088744791453845e-05, -8.8709958331631262e-05, -8.8709958331631195e-05, -2.772186197863463e-05, -2.2177489582907694e-05, -1.1088744791453998e-05, -3.3266234374361508e-05, -0.00047127165363679334, -5.5443723957269251e-06, -2.2177489582907697e-05, -2.2177489582907683e-05, -8.8709958331631113e-05, -8.8709958331631344e-05, -2.2177489582907687e-05, -2.2177489582907694e-05, -2.2177489582907687e-05, -5.5443723957269353e-06, -9.5218569404875347e-06, -5.5443723957269619e-05, -5.5443723957269048e-06, -4.4354979165815272e-05, -4.4354979165815936e-05, -4.4354979165815252e-05, -8.8709958331631344e-05, -4.4354979165815489e-05, -8.8709958331631113e-05, -4.4354979165815929e-05, -4.4354979165815936e-05, -0.0017021223254881609, -4.4354979165815319e-05, -0.0011088744791453904, -4.4354979165815482e-05, -1.1088744791453813e-05, -0.00033266234374361512, -6.653246874872284e-05, -2.7721861978634897e-05, -0.00033266234374361491, -5.5443723957269463e-06, -4.4354979165815333e-05, -4.4354979165815347e-05, -0.00089818832810776563, -4.435497916581555e-05, -4.4354979165815563e-05, -0.0012696612786214717, -1.6633117187180646e-05, -0.0011088744791453906, -4.435497916581536e-05, -4.4354979165815347e-05, -5.544372395726931e-06, -4.435497916581536e-05, -4.4354979165815319e-05, -5.5443723957269386e-06, -8.8709958331631195e-05, -8.8709958331631262e-05, -1.1088744791453782e-05, -2.217748958290766e-05, -2.2177489582907653e-05, -4.4354979165815292e-05, -4.4354979165815292e-05, -0.00089818832810776498, -4.4354979165815231e-05, -4.4354979165815286e-05, -0.0001496980546846273, -0.00053225974998978619, -4.4354979165815333e-05, -0.00014813116683366762, -6.6532468748722515e-05, -6.6532468748722529e-05, -4.4354979165815252e-05, -4.4354979165815184e-05, -5.5443723957269015e-05, -4.435497916581513e-05, -5.5443723957269097e-05, -0.0001164318203102646, -4.4354979165815543e-05, -2.7721861978634548e-05, -0.00012752056510171911, -4.4354979165815523e-05, -6.6532468748722827e-05, -1.6633117187180673e-05, -2.7721861978634897e-05, -1.1088744791453796e-05, -5.5443723957269065e-06, -5.5443723957269251e-06, -4.4354979165815089e-05, -6.653246874872265e-05, -3.3266234374361468e-05, -2.2177489582907755e-05, -4.4354979165815211e-05, -4.4354979165815909e-05, -4.4354979165815936e-05, -8.8709958331631045e-05, -4.4354979165815624e-05, -2.2177489582907683e-05, -8.870995833163133e-05, -4.4354979165815584e-05, -2.2177489582907697e-05, -4.4354979165815936e-05, -5.5443723957269463e-06, -4.4354979165815597e-05, -4.4354979165815611e-05, -8.8709958331630693e-05, -0.00013306493749744554, -4.4354979165815455e-05, -8.8709958331630395e-05, -8.8709958331630612e-05, -4.4354979165815597e-05, -4.4354979165815584e-05, -4.4354979165815523e-05, -4.4354979165815584e-05, -4.9899351561542835e-05, -0.00018850866145471391, -1.1088744791454015e-05, -4.435497916581513e-05, -4.4354979165815597e-05, -4.9899351561542821e-05, -0.00014415368228889999, -4.4354979165815252e-05, -4.4354979165815414e-05, -4.4354979165815103e-05, -2.2177489582907694e-05, -2.2177489582907687e-05, -5.5443723957269082e-06, -5.5443723957268946e-06, -5.5443723957269048e-06, -1.1088744791453837e-05, -9.4254330727356806e-05, -0.00016633117187180767, -6.6532468748723193e-05, -3.3266234374361522e-05, -5.5443723957269285e-06, -2.2177489582907697e-05, -8.8709958331631018e-05, -0.00013306493749744582, -4.4354979165815143e-05, -2.21774895829077e-05, -8.8709958331630869e-05, -8.8709958331630951e-05, -2.21774895829077e-05, -6.6532468748723138e-05, -4.435497916581555e-05, -5.5443723957268912e-06, -1.1088744791454004e-05, -2.2177489582907697e-05, -2.2177489582907687e-05, -4.989935156154276e-05, -2.7721861978634603e-05, -4.4354979165815265e-05, -8.8709958331631628e-05, -0.00039919481249234192, -2.2177489582907572e-05, -5.5443723957269336e-06, -0.00033266234374361512, -4.4354979165815482e-05, -0.00026612987499489022, -0.00026612987499489055, -0.00027721861978634847, -0.00026612987499489022, -2.2177489582907578e-05, -2.2177489582907578e-05, -4.4354979165815401e-05, -4.4354979165815455e-05, -2.2177489582907673e-05, -2.2177489582907666e-05, -4.4354979165815211e-05, -5.5443723957268929e-06, -4.4354979165815197e-05, -5.5443723957269166e-06, -5.5443723957269115e-06, -0.00038810606770088633, -2.2177489582907666e-05, -2.2177489582907673e-05, -0.00033820671613933937, -1.1088744791453799e-05, -0.00039919481249234235, -0.00039919481249234235, -4.4354979165815502e-05, -5.5443723957269353e-06, -4.4354979165815448e-05, -0.00039919481249234235, -0.00039919481249233905, -4.4354979165815469e-05, -4.4354979165815523e-05, -1.1088744791453886e-05, -1.108874479145382e-05, -8.8709958331631249e-05, -4.4354979165815509e-05, -4.4354979165815482e-05, -1.6633117187180808e-05, -8.8709958331631249e-05, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -1.2113248386316449e-05, -1.2052983468971477e-05, -3.0132458672428804e-07, -6.0264917344857666e-08, -1.8079475203457342e-07, -6.0264917344857989e-07, -4.8211933875886527e-06, -1.2052983468971533e-07, -5.5443723957269497e-06, 0.00024545900834560644, -9.6423867751772245e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886527e-06, -4.821193387588651e-06, -4.8211933875886122e-07, -1.3680136237282694e-05, -1.2052983468971531e-07, -1.2052983468971638e-05, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886112e-07, -3.0132458672428804e-07, -1.8079475203457355e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857666e-08, -9.0397376017287428e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610371934e-07, -4.8211933875886144e-07, -9.0397376017287132e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344857852e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -1.0245035948625794e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.9284773550354445e-06, -1.5066229336214384e-06, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -6.0264917344857873e-07, -6.6291409079343367e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.026491734485764e-08, -4.8211933875886133e-07, -1.2052983468971533e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857666e-08, -4.8211933875886144e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.4463580162765876e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.0847685122074391e-06, -2.4105966937943072e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -7.8344392548315572e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -5.0622530569680754e-06, -4.8211933875886133e-07, -5.3033127263474727e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -4.8211933875886213e-06, -9.6423867751772245e-07, -4.881458304933499e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -5.0622530569680754e-06, -4.8211933875886527e-06, -4.821193387588618e-06, -4.8211933875886307e-06, -6.0264917344857666e-08, -2.4105966937943061e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -6.0264917344858032e-07, -1.2052983468971585e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -1.4463580162765886e-06, -1.807947520345762e-07, -5.3033127263475142e-06, -9.6423867751772266e-07, -4.3390740488297734e-06, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.5066229336214435e-06, -9.6423867751772287e-07, -4.8211933875886133e-07, -4.218544214140065e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -4.3390740488297717e-06, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297717e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857777e-07, -1.8079475203457355e-07, -4.8211933875886144e-07, -9.0397376017286857e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -3.6158950406914901e-07, -1.8079475203457578e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -1.5668878509663068e-06, -1.386093098931738e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -3.6158950406914986e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886307e-06, -4.821193387588618e-06, -9.7629166098670286e-06, -4.821193387588618e-06, -4.8211933875886213e-06, -2.4105966937943061e-07, -1.2052983468971533e-07, -4.8211933875886112e-07, -5.4238425610371743e-07, -2.4105966937943061e-07, -6.6291409079343695e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.7629166098670066e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.8079475203457355e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943061e-07, -7.2317900813829464e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, 0.00024545900834560644, -1.0847685122074416e-06, -6.0264917344857666e-08, -2.4105966937943051e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.0132458672428936e-07, -2.4105966937943066e-07, -1.2052983468971533e-07, -3.61589504069147e-07, -5.1225179743129167e-06, -6.0264917344857679e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, -2.7721861978634638e-06, -6.0264917344857608e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -4.8211933875886112e-07, -9.6423867751772266e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.8501329624871426e-05, -4.8211933875886133e-07, -1.2052983468971551e-05, -4.8211933875886144e-07, -1.2052983468971531e-07, -3.6158950406914514e-06, -7.2317900813829316e-07, -3.0132458672428899e-07, -3.6158950406914921e-06, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670066e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.3800666071972451e-05, -1.8079475203457345e-07, -1.2052983468971561e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670286e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.627152768311157e-06, -5.7854320651063537e-06, -4.8211933875886144e-07, -4.2788091314848855e-06, -7.2317900813829379e-07, -7.2317900813829379e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344858074e-07, -4.8211933875886122e-07, -6.0264917344857968e-07, -1.265563264242018e-06, -4.8211933875886144e-07, -3.0132458672428995e-07, -1.3860930989317315e-06, -4.8211933875886133e-07, -7.2317900813829316e-07, -1.8079475203457535e-07, -3.0132458672428889e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -7.2317900813829422e-07, -3.6158950406914965e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943066e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943066e-07, -4.8211933875886112e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.4463580162765884e-06, -4.8211933875886144e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610372103e-07, -2.0490071897251711e-06, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -5.4238425610372209e-07, -1.5668878509663085e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.0245035948625733e-06, -1.807947520345727e-06, -7.2317900813829316e-07, -3.6158950406914901e-07, -6.0264917344857679e-08, -2.4105966937943066e-07, -9.6423867751772266e-07, -1.446358016276588e-06, -4.8211933875886122e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -7.2317900813829443e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943072e-07, -5.4238425610372019e-07, -3.0132458672428973e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.3390740488297666e-06, -2.4105966937943061e-07, -6.0264917344857679e-08, -3.6158950406914514e-06, -4.8211933875886133e-07, -2.8927160325532192e-06, -2.892716032553176e-06, -3.0132458672428764e-06, -2.8927160325532192e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.2185442141400662e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -3.6761599580363244e-06, -1.2052983468971531e-07, -4.3390740488297717e-06, -4.3390740488297717e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.3390740488297734e-06, -4.3390740488297649e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.8079475203457324e-07, -9.6423867751772287e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -0.00019381197418106444, -0.0001928477355035449, -4.8211933875886442e-06, -9.6423867751772245e-07, -2.8927160325532116e-06, -9.6423867751773494e-06, -7.7139094201419012e-05, -1.9284773550354445e-06, -8.8709958331630476e-05, -9.6423867751772245e-07, 0.003912880553366937, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201419026e-05, -7.7139094201419012e-05, -7.7139094201417762e-06, -0.0002188821797965215, -1.928477355035444e-06, -0.00019284773550354748, -1.5427818840283559e-05, -7.7139094201417779e-06, -7.7139094201417762e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417779e-06, -7.7139094201417796e-06, -1.928477355035444e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417711e-06, -4.8211933875886442e-06, -2.8927160325532133e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -1.4463580162766097e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -8.6781480976593756e-06, -7.7139094201417796e-06, -1.4463580162766055e-05, -1.9284773550354449e-06, -9.6423867751772202e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -1.5427818840283556e-05, -9.6423867751773308e-06, -7.7139094201417779e-06, -1.5427818840283556e-05, -9.6423867751772224e-07, -7.7139094201417796e-06, -1.6392057517801094e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -3.0855637680567098e-05, -2.4105966937943177e-05, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.5427818840283552e-05, -3.8569547100708881e-06, -7.7139094201417796e-06, -9.6423867751773325e-06, -1.0606625452694898e-05, -3.8569547100708881e-06, -1.5427818840283549e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.928477355035444e-06, -7.7139094201417779e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -1.9284773550354445e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772224e-07, -1.5427818840283552e-05, -1.5427818840283552e-05, -9.6423867751772224e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -9.6423867751772245e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -2.3141728260425689e-05, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -3.8569547100708898e-06, -1.7356296195318785e-05, -3.8569547100708898e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.2535102807730524e-05, -7.7139094201417779e-06, -1.5427818840283552e-05, -8.0996048911489342e-05, -7.7139094201417796e-06, -8.4853003621559252e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -7.7139094201418565e-05, -1.5427818840283556e-05, -7.8103332878936337e-05, -9.6423867751772245e-07, -1.5427818840283556e-05, -1.5427818840283552e-05, -3.8569547100708881e-06, -8.0996048911489342e-05, -7.7139094201419012e-05, -7.7139094201418213e-05, -7.7139094201418741e-05, -9.6423867751772224e-07, -3.8569547100708856e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772202e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417779e-06, -9.642386775177363e-06, -1.9284773550354679e-05, -1.5427818840283556e-05, -1.5427818840283559e-05, -7.7139094201417779e-06, -2.3141728260425713e-05, -2.8927160325532561e-06, -8.4853003621559862e-05, -1.5427818840283559e-05, -6.9425184781275411e-05, -9.6423867751772224e-07, -9.6423867751772245e-07, -2.4105966937943109e-05, -1.5427818840283559e-05, -7.7139094201417796e-06, -6.7496707426241581e-06, -3.8569547100708881e-06, -1.9284773550354445e-06, -6.9425184781275411e-05, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -6.9425184781275411e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751773257e-06, -2.8927160325532137e-06, -7.7139094201417796e-06, -1.4463580162766002e-05, -9.6423867751772245e-07, -7.7139094201417796e-06, -1.928477355035444e-06, -1.928477355035444e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -5.7854320651064596e-06, -2.8927160325531417e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -1.5427818840283556e-05, -2.507020561546098e-05, -2.2177489582907629e-05, -9.6423867751772245e-07, -1.5427818840283556e-05, -7.7139094201417779e-06, -5.7854320651064723e-06, -1.9284773550354445e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -7.7139094201418741e-05, -7.7139094201418213e-05, -0.00015620666575787346, -7.7139094201418348e-05, -7.7139094201418565e-05, -3.8569547100708881e-06, -1.9284773550354445e-06, -7.7139094201417745e-06, -8.6781480976593587e-06, -3.8569547100708881e-06, -1.0606625452694952e-05, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.5427818840283556e-05, -7.7139094201417779e-06, -9.6423867751772245e-07, -0.00015620666575787311, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772224e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.8927160325532141e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -3.8569547100708881e-06, -1.1570864130212862e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.7356296195318826e-05, -9.6423867751772245e-07, -3.8569547100708856e-06, -1.928477355035444e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -4.8211933875886688e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -5.7854320651064266e-06, -8.1960287589006667e-05, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -4.4354979165815075e-05, -9.6423867751772884e-06, -9.6423867751772224e-07, -7.7139094201417779e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.5427818840283559e-05, -7.7139094201417796e-06, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00029602127399794666, -7.7139094201417779e-06, -0.00019284773550354612, -7.7139094201417796e-06, -1.9284773550354449e-06, -5.7854320651063636e-05, -1.1570864130212858e-05, -4.8211933875886595e-06, -5.7854320651064279e-05, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00015620666575787311, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00022081065715155731, -2.892716032553212e-06, -0.00019284773550354631, -7.7139094201417779e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -1.928477355035444e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -0.00015620666575787346, -7.7139094201417779e-06, -7.7139094201417779e-06, -2.6034444292978423e-05, -9.2566913041702839e-05, -7.7139094201417796e-06, -6.8460946103757395e-05, -1.1570864130212848e-05, -1.1570864130212848e-05, -7.7139094201417762e-06, -7.7139094201417762e-06, -9.6423867751773697e-06, -7.7139094201417762e-06, -9.6423867751773545e-06, -2.0249012227872325e-05, -7.7139094201417796e-06, -4.8211933875886789e-06, -2.2177489582907504e-05, -7.7139094201417796e-06, -1.1570864130212858e-05, -2.8927160325532506e-06, -4.8211933875886586e-06, -1.928477355035444e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -7.7139094201417762e-06, -1.1570864130212853e-05, -5.7854320651064698e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -1.5427818840283556e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -2.3141728260425703e-05, -7.7139094201417796e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -8.6781480976594163e-06, -3.2784115035602392e-05, -1.928477355035444e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -8.6781480976594163e-06, 0.0039032381665917611, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.6392057517801033e-05, -2.8927160325531848e-05, -1.1570864130212858e-05, -5.7854320651064596e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -1.5427818840283559e-05, -2.31417282604257e-05, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -1.1570864130212857e-05, -7.7139094201417796e-06, -9.6423867751772202e-07, -1.928477355035444e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -8.6781480976594027e-06, -4.8211933875886713e-06, -7.7139094201417779e-06, -1.5427818840283556e-05, -6.942518478127533e-05, -3.8569547100708881e-06, -9.6423867751772245e-07, -5.7854320651063622e-05, -7.7139094201417796e-06, -4.6283456520852104e-05, -4.6283456520851413e-05, -4.8211933875886347e-05, -4.6283456520852104e-05, -3.8569547100708881e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -9.6423867751772202e-07, -7.7139094201417779e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.7496707426240477e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -5.8818559328581421e-05, -1.9284773550354445e-06, -6.9425184781275411e-05, -6.9425184781275411e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -6.9425184781275411e-05, -6.9425184781275303e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354445e-06, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.8927160325532133e-06, -1.5427818840283559e-05, -7.7139094201417762e-06, -7.7139094201417762e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -0.00019381197418106427, -0.00019284773550354477, -4.8211933875886459e-06, -9.6423867751772245e-07, -2.8927160325532099e-06, -9.6423867751773528e-06, -7.7139094201419039e-05, -1.9284773550354445e-06, -8.870995833163053e-05, -9.6423867751772224e-07, -1.5427818840283559e-05, 0.0039128805533669379, -7.7139094201417779e-06, -7.7139094201417779e-06, -7.7139094201419053e-05, -7.7139094201419039e-05, -7.7139094201417762e-06, -0.00021888217979652163, -1.9284773550354436e-06, -0.00019284773550354734, -1.5427818840283559e-05, -7.7139094201417779e-06, -7.7139094201417762e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -1.9284773550354436e-06, -1.9284773550354436e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417711e-06, -4.8211933875886459e-06, -2.8927160325532116e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -1.446358016276609e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -8.6781480976593858e-06, -7.7139094201417779e-06, -1.4463580162766048e-05, -1.9284773550354449e-06, -9.6423867751772202e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772202e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354436e-06, -9.6423867751772245e-07, -7.7139094201417779e-06, -1.5427818840283556e-05, -9.6423867751773342e-06, -7.7139094201417779e-06, -1.5427818840283556e-05, -9.6423867751772202e-07, -7.7139094201417779e-06, -1.6392057517801091e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -3.0855637680567084e-05, -2.4105966937943157e-05, -7.7139094201417779e-06, -1.5427818840283552e-05, -1.5427818840283552e-05, -3.8569547100708873e-06, -7.7139094201417779e-06, -9.6423867751773359e-06, -1.0606625452694895e-05, -3.8569547100708873e-06, -1.5427818840283549e-05, -7.7139094201417779e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.928477355035444e-06, -7.7139094201417762e-06, -7.7139094201417779e-06, -9.6423867751772245e-07, -7.7139094201417779e-06, -1.928477355035444e-06, -7.7139094201417762e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772224e-07, -1.5427818840283552e-05, -1.5427818840283552e-05, -9.6423867751772224e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772224e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -2.3141728260425676e-05, -7.7139094201417745e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772224e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -1.5427818840283559e-05, -3.8569547100708898e-06, -1.7356296195318805e-05, -3.8569547100708898e-06, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.2535102807730524e-05, -7.7139094201417779e-06, -1.5427818840283552e-05, -8.0996048911489369e-05, -7.7139094201417796e-06, -8.4853003621559225e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -7.7139094201418592e-05, -1.5427818840283552e-05, -7.8103332878936364e-05, -9.6423867751772245e-07, -1.5427818840283552e-05, -1.5427818840283552e-05, -3.8569547100708881e-06, -8.0996048911489356e-05, -7.7139094201419039e-05, -7.713909420141824e-05, -7.7139094201418768e-05, -9.6423867751772202e-07, -3.8569547100708856e-06, -9.6423867751772245e-07, -9.6423867751772202e-07, -9.6423867751772181e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -7.7139094201417762e-06, -9.6423867751773664e-06, -1.9284773550354685e-05, -1.5427818840283552e-05, -1.5427818840283559e-05, -7.7139094201417762e-06, -2.31417282604257e-05, -2.8927160325532544e-06, -8.4853003621559835e-05, -1.5427818840283556e-05, -6.9425184781275493e-05, -9.6423867751772224e-07, -9.6423867751772245e-07, -2.4105966937943089e-05, -1.5427818840283559e-05, -7.7139094201417796e-06, -6.7496707426241565e-06, -3.8569547100708881e-06, -1.928477355035444e-06, -6.9425184781275493e-05, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -6.9425184781275493e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417779e-06, -9.6423867751772224e-07, -7.7139094201417779e-06, -9.6423867751773291e-06, -2.892716032553212e-06, -7.7139094201417779e-06, -1.4463580162765995e-05, -9.6423867751772245e-07, -7.7139094201417796e-06, -1.9284773550354436e-06, -1.9284773550354436e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -5.7854320651064562e-06, -2.89271603255314e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -1.5427818840283556e-05, -2.507020561546098e-05, -2.2177489582907643e-05, -9.6423867751772245e-07, -1.5427818840283556e-05, -7.7139094201417779e-06, -5.7854320651064689e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -7.7139094201418768e-05, -7.713909420141824e-05, -0.00015620666575787351, -7.7139094201418375e-05, -7.7139094201418592e-05, -3.8569547100708873e-06, -1.9284773550354445e-06, -7.7139094201417745e-06, -8.6781480976593688e-06, -3.8569547100708873e-06, -1.0606625452694949e-05, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.5427818840283556e-05, -7.7139094201417779e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.5427818840283552e-05, -7.7139094201417779e-06, -9.6423867751772245e-07, -0.00015620666575787314, -7.7139094201417762e-06, -7.7139094201417762e-06, -9.6423867751772224e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.8927160325532124e-06, -9.6423867751772245e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -9.6423867751772224e-07, -9.6423867751772202e-07, -3.8569547100708873e-06, -1.1570864130212855e-05, -7.7139094201417779e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.7356296195318846e-05, -9.6423867751772245e-07, -3.8569547100708856e-06, -1.928477355035444e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -4.8211933875886705e-06, -3.8569547100708889e-06, -1.928477355035444e-06, -5.7854320651064232e-06, -8.1960287589006667e-05, -9.6423867751772245e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772245e-07, -4.4354979165815116e-05, -9.6423867751772918e-06, -9.6423867751772202e-07, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -1.5427818840283559e-05, -7.7139094201417796e-06, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00029602127399794634, -7.7139094201417779e-06, -0.00019284773550354599, -7.7139094201417779e-06, -1.9284773550354449e-06, -5.7854320651063609e-05, -1.1570864130212851e-05, -4.8211933875886612e-06, -5.7854320651064252e-05, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00015620666575787314, -7.7139094201417779e-06, -7.7139094201417779e-06, -0.00022081065715155745, -2.8927160325532103e-06, -0.00019284773550354618, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -1.928477355035444e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -0.00015620666575787351, -7.7139094201417762e-06, -7.7139094201417762e-06, -2.6034444292978423e-05, -9.2566913041702785e-05, -7.7139094201417779e-06, -6.846094610375745e-05, -1.1570864130212841e-05, -1.1570864130212841e-05, -7.7139094201417762e-06, -7.7139094201417762e-06, -9.6423867751773731e-06, -7.7139094201417762e-06, -9.6423867751773579e-06, -2.0249012227872329e-05, -7.7139094201417779e-06, -4.8211933875886806e-06, -2.2177489582907521e-05, -7.7139094201417779e-06, -1.1570864130212851e-05, -2.8927160325532489e-06, -4.8211933875886603e-06, -1.9284773550354436e-06, -9.6423867751772202e-07, -9.6423867751772245e-07, -7.7139094201417762e-06, -1.1570864130212846e-05, -5.7854320651064664e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -7.7139094201417779e-06, -3.8569547100708889e-06, -1.5427818840283556e-05, -7.7139094201417796e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -1.5427818840283552e-05, -2.3141728260425689e-05, -7.7139094201417779e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -7.7139094201417779e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -8.6781480976594264e-06, 0.0038955242571716204, -1.928477355035444e-06, -7.7139094201417745e-06, -7.7139094201417796e-06, -8.6781480976594264e-06, -2.5070205615460282e-05, -7.7139094201417762e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772224e-07, -9.6423867751772181e-07, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.639205751780103e-05, -2.8927160325531835e-05, -1.1570864130212851e-05, -5.7854320651064562e-06, -9.6423867751772245e-07, -3.8569547100708889e-06, -1.5427818840283556e-05, -2.3141728260425686e-05, -7.7139094201417745e-06, -3.8569547100708889e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708889e-06, -1.157086413021285e-05, -7.7139094201417779e-06, -9.6423867751772202e-07, -1.928477355035444e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -8.6781480976594129e-06, -4.821193387588673e-06, -7.7139094201417779e-06, -1.5427818840283556e-05, -6.9425184781275411e-05, -3.8569547100708881e-06, -9.6423867751772245e-07, -5.7854320651063595e-05, -7.7139094201417779e-06, -4.6283456520852077e-05, -4.6283456520851386e-05, -4.8211933875886307e-05, -4.6283456520852077e-05, -3.8569547100708881e-06, -3.8569547100708881e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417762e-06, -9.6423867751772202e-07, -7.7139094201417762e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -6.7496707426240558e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -5.8818559328581381e-05, -1.928477355035444e-06, -6.9425184781275493e-05, -6.9425184781275493e-05, -7.7139094201417779e-06, -9.6423867751772224e-07, -7.7139094201417779e-06, -6.9425184781275493e-05, -6.9425184781275384e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -1.928477355035444e-06, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.8927160325532116e-06, -1.5427818840283559e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6905987090531567e-05, -9.6423867751771841e-05, -2.4105966937943052e-06, -4.8211933875886133e-07, -1.4463580162765882e-06, -4.8211933875886408e-06, -3.8569547100709242e-05, -9.6423867751772266e-07, -4.4354979165815624e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, 0.0019602972313935386, -3.8569547100708915e-06, -3.8569547100709249e-05, -3.8569547100709235e-05, -3.8569547100708898e-06, -0.00010944108989826151, -9.6423867751772245e-07, -9.6423867751773074e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.4105966937943052e-06, -1.4463580162765893e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813829909e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297479e-06, -3.8569547100708915e-06, -7.2317900813829706e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.7139094201417813e-06, -4.8211933875886315e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -8.1960287589006352e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971504e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.8211933875886332e-06, -5.3033127263474676e-06, -1.9284773550354449e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212704e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976595128e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652492e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -4.0498024455744644e-05, -3.8569547100708906e-06, -4.2426501810779768e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709011e-05, -7.7139094201417796e-06, -3.9051666439468033e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.049802445574463e-05, -3.8569547100709242e-05, -3.8569547100708984e-05, -3.8569547100709086e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -4.8211933875886485e-06, -9.6423867751772732e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -1.1570864130212716e-05, -1.4463580162766105e-06, -4.2426501810780093e-05, -7.7139094201417813e-06, -3.4712592390638187e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971544e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120477e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390638173e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390638173e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.821193387588629e-06, -1.4463580162765893e-06, -3.8569547100708915e-06, -7.2317900813829435e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325531938e-06, -1.4463580162766071e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730461e-05, -1.1088744791453911e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532006e-06, -9.6423867751772266e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709086e-05, -3.8569547100708984e-05, -7.8103332878936283e-05, -3.8569547100708984e-05, -3.8569547100709011e-05, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297395e-06, -1.9284773550354449e-06, -5.3033127263474956e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936134e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162765893e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651063605e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976595332e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.410596693794317e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325531777e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.2177489582907731e-05, -4.8211933875886103e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897138, -3.8569547100708906e-06, -9.6423867751772437e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -2.8927160325531591e-05, -5.7854320651063588e-06, -2.4105966937943128e-06, -2.8927160325531909e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936134e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577963, -1.4463580162765884e-06, -9.6423867751772464e-05, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936283e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489232e-05, -4.6283456520850871e-05, -3.8569547100708915e-06, -3.4230473051879064e-05, -5.7854320651063537e-06, -5.7854320651063537e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.821193387588651e-06, -3.8569547100708898e-06, -4.8211933875886425e-06, -1.0124506113936154e-05, -3.8569547100708915e-06, -2.410596693794323e-06, -1.1088744791453859e-05, -3.8569547100708906e-06, -5.7854320651063588e-06, -1.4463580162766075e-06, -2.4105966937943128e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063571e-06, -2.8927160325531989e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, 0.0019602972313935386, -1.9284773550354453e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.1570864130212711e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297683e-06, -1.6392057517801375e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488297683e-06, -1.2535102807730473e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -8.1960287589005895e-06, -1.4463580162765812e-05, -5.7854320651063588e-06, -2.8927160325531938e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417813e-06, -1.1570864130212709e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.785432065106358e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.3390740488297615e-06, -2.4105966937943191e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -3.4712592390638146e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531584e-05, -3.8569547100708906e-06, -2.3141728260425767e-05, -2.3141728260425422e-05, -2.4105966937943004e-05, -2.3141728260425767e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.374835371312053e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.9409279664290562e-05, -9.6423867751772245e-07, -3.4712592390638173e-05, -3.4712592390638173e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390638187e-05, -3.4712592390638119e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765893e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6905987090531703e-05, -9.6423867751771597e-05, -2.4105966937943043e-06, -4.8211933875886133e-07, -1.4463580162765895e-06, -4.8211933875886383e-06, -3.8569547100709221e-05, -9.6423867751772266e-07, -4.4354979165815557e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, 0.0019602972313935386, -3.8569547100709221e-05, -3.8569547100709221e-05, -3.8569547100708898e-06, -0.00010944108989826179, -9.6423867751772245e-07, -9.6423867751773182e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.4105966937943043e-06, -1.4463580162765906e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813829985e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297412e-06, -3.8569547100708915e-06, -7.2317900813829773e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.7139094201417813e-06, -4.821193387588629e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -8.1960287589006284e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971517e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.8211933875886307e-06, -5.3033127263474676e-06, -1.9284773550354449e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212714e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594993e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652458e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -4.049802445574463e-05, -3.8569547100708906e-06, -4.2426501810779782e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100708998e-05, -7.7139094201417796e-06, -3.9051666439468019e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.049802445574463e-05, -3.8569547100709221e-05, -3.8569547100708964e-05, -3.8569547100709066e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -4.8211933875886459e-06, -9.6423867751772681e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -1.1570864130212726e-05, -1.4463580162766115e-06, -4.24265018107801e-05, -7.7139094201417813e-06, -3.4712592390638133e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971558e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120439e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390638119e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390638119e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886264e-06, -1.4463580162765906e-06, -3.8569547100708915e-06, -7.2317900813829502e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325531972e-06, -1.4463580162766083e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730461e-05, -1.1088744791453894e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532031e-06, -9.6423867751772266e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709066e-05, -3.8569547100708964e-05, -7.8103332878936256e-05, -3.8569547100708964e-05, -3.8569547100708998e-05, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297319e-06, -1.9284773550354449e-06, -5.3033127263474964e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936107e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162765906e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651063656e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976595196e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943158e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325531803e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.21774895829077e-05, -4.8211933875886086e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.0001480106369989716, -3.8569547100708906e-06, -9.6423867751772193e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -2.8927160325531618e-05, -5.7854320651063639e-06, -2.4105966937943119e-06, -2.8927160325531936e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936107e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577985, -1.4463580162765897e-06, -9.6423867751772573e-05, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936256e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489232e-05, -4.6283456520850911e-05, -3.8569547100708915e-06, -3.423047305187905e-05, -5.7854320651063588e-06, -5.7854320651063588e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886493e-06, -3.8569547100708898e-06, -4.8211933875886391e-06, -1.0124506113936154e-05, -3.8569547100708915e-06, -2.4105966937943213e-06, -1.1088744791453845e-05, -3.8569547100708906e-06, -5.7854320651063639e-06, -1.4463580162766088e-06, -2.4105966937943111e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063605e-06, -2.8927160325532023e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, 0.0019564402766834676, -3.8569547100708915e-06, -1.9284773550354453e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.1570864130212721e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297615e-06, -1.6392057517801362e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488297615e-06, -1.253510280773047e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -8.1960287589005827e-06, -1.4463580162765826e-05, -5.7854320651063639e-06, -2.8927160325531972e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417813e-06, -1.1570864130212719e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651063631e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.3390740488297547e-06, -2.4105966937943179e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -3.4712592390638092e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531611e-05, -3.8569547100708906e-06, -2.3141728260425791e-05, -2.3141728260425442e-05, -2.4105966937943031e-05, -2.3141728260425791e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.3748353713120516e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.9409279664290596e-05, -9.6423867751772245e-07, -3.4712592390638119e-05, -3.4712592390638119e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390638133e-05, -3.4712592390638065e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765901e-06, -7.713909420141783e-06, -3.8569547100709587e-05, -3.856954710070952e-05, -3.8569547100709506e-05, -3.8569547100709587e-05, -1.9284773550354624e-05, -1.9284773550354624e-05, -3.8569547100709235e-05, -3.8569547100709235e-05, -4.8211933875886798e-06, -4.8211933875886806e-06, -0.00096905987090532006, -0.00096423867751773101, -2.4105966937942994e-05, -4.8211933875886798e-06, -1.4463580162765662e-05, -4.8211933875886219e-05, -0.0003856954710070911, -9.6423867751773613e-06, -0.00044354979165815288, -4.8211933875886527e-06, -7.7139094201419026e-05, -7.7139094201419053e-05, -3.8569547100709249e-05, -3.8569547100709221e-05, 0.019255846390029061, -0.00038569547100709262, -3.856954710070956e-05, -0.0010944108989826235, -9.6423867751773494e-06, -0.00096423867751772841, -7.7139094201418999e-05, -3.8569547100709506e-05, -3.8569547100709574e-05, -4.8211933875886468e-06, -4.8211933875886849e-06, -3.8569547100709452e-05, -3.8569547100709438e-05, -9.6423867751773494e-06, -9.6423867751773528e-06, -4.821193387588651e-06, -4.8211933875886696e-06, -3.8569547100709201e-05, -2.4105966937942896e-05, -1.4463580162765856e-05, -1.9284773550354624e-05, -1.9284773550354631e-05, -4.8211933875886798e-06, -7.2317900813830666e-05, -3.856954710070935e-05, -3.8569547100709343e-05, -4.339074048829752e-05, -3.8569547100709249e-05, -7.2317900813830327e-05, -9.6423867751773613e-06, -4.8211933875886696e-06, -3.8569547100709249e-05, -3.8569547100709235e-05, -4.8211933875886849e-06, -4.821193387588673e-06, -3.8569547100709337e-05, -3.8569547100709357e-05, -9.6423867751774341e-06, -4.8211933875886662e-06, -3.8569547100709303e-05, -7.7139094201418931e-05, -4.8211933875886158e-05, -3.8569547100709425e-05, -7.7139094201418795e-05, -4.8211933875886866e-06, -3.8569547100709323e-05, -8.1960287589006762e-05, -3.8569547100709418e-05, -3.8569547100709357e-05, -7.7139094201418578e-05, -0.00015427818840283808, -0.00012052983468971624, -3.8569547100709201e-05, -7.7139094201418985e-05, -7.7139094201419012e-05, -1.92847735503548e-05, -3.856954710070935e-05, -4.8211933875886083e-05, -5.3033127263474619e-05, -1.92847735503548e-05, -7.7139094201419473e-05, -3.8569547100709398e-05, -3.8569547100709411e-05, -3.8569547100709404e-05, -9.6423867751774307e-06, -3.8569547100709533e-05, -3.8569547100709201e-05, -4.8211933875886959e-06, -3.8569547100709208e-05, -9.6423867751773697e-06, -3.8569547100709547e-05, -3.8569547100709438e-05, -3.8569547100709425e-05, -4.8211933875886866e-06, -7.7139094201418633e-05, -7.7139094201418606e-05, -4.8211933875886781e-06, -3.8569547100709404e-05, -3.8569547100709411e-05, -4.8211933875886781e-06, -3.8569547100709574e-05, -3.8569547100709601e-05, -3.8569547100709357e-05, -3.8569547100709587e-05, -0.0001157086413021254, -3.856954710070956e-05, -3.8569547100709316e-05, -3.8569547100709316e-05, -4.8211933875886493e-06, -3.8569547100709289e-05, -3.856954710070931e-05, -7.7139094201418795e-05, -1.9284773550354631e-05, -8.6781480976594796e-05, -1.9284773550354624e-05, -4.821193387588695e-06, -9.642386775177346e-06, -6.26755140386519e-05, -3.8569547100709425e-05, -7.7139094201419121e-05, -0.00040498024455744405, -3.8569547100709337e-05, 0.019217276842928351, -3.8569547100709343e-05, -3.8569547100709357e-05, -7.7139094201419012e-05, -0.00038569547100708915, -7.7139094201418985e-05, -0.00039051666439468032, -4.8211933875886476e-06, -7.7139094201418958e-05, -7.7139094201419039e-05, -1.9284773550354773e-05, -0.00040498024455744416, -0.0003856954710070911, -0.00038569547100708693, -0.00038569547100708953, -4.8211933875886849e-06, -1.9284773550354584e-05, -4.8211933875886629e-06, -4.8211933875886916e-06, -4.8211933875886747e-06, -3.8569547100709452e-05, -3.8569547100709438e-05, -3.8569547100709438e-05, -3.8569547100709425e-05, -4.8211933875886629e-06, -4.8211933875886662e-06, -4.8211933875886493e-06, -3.8569547100709506e-05, -4.82119338758863e-05, -9.6423867751772329e-05, -7.7139094201419256e-05, -7.7139094201418741e-05, -3.856954710070952e-05, -0.00011570864130212661, -1.4463580162765914e-05, -0.00042426501810779939, -7.7139094201418768e-05, -0.00034712592390637691, -4.8211933875886832e-06, -4.821193387588673e-06, -0.00012052983468971632, -7.7139094201418795e-05, -3.856954710070935e-05, -3.3748353713120394e-05, -1.9284773550354584e-05, -9.6423867751773596e-06, -0.00034712592390637702, -9.6423867751773613e-06, -1.9284773550354624e-05, -1.9284773550354624e-05, -0.00034712592390637702, -3.8569547100709262e-05, -4.8211933875886696e-06, -3.8569547100709357e-05, -4.8211933875886493e-06, -3.8569547100709371e-05, -4.8211933875886401e-05, -1.4463580162765926e-05, -3.8569547100709357e-05, -7.2317900813829311e-05, -4.821193387588651e-06, -3.8569547100709276e-05, -9.6423867751773494e-06, -9.6423867751773528e-06, -9.6423867751773884e-06, -4.8211933875886764e-06, -2.8927160325531679e-05, -1.4463580162765889e-05, -3.8569547100709479e-05, -3.8569547100709465e-05, -7.7139094201418877e-05, -0.00012535102807730407, -0.0001108874479145383, -4.821193387588651e-06, -7.7139094201419121e-05, -3.8569547100709506e-05, -2.892716032553172e-05, -9.6423867751773206e-06, -4.8211933875886662e-06, -4.8211933875886916e-06, -0.00038569547100708953, -0.00038569547100708693, -0.00078103332878936887, -0.00038569547100708688, -0.00038569547100708915, -1.92847735503548e-05, -9.6423867751773426e-06, -3.8569547100709452e-05, -4.3390740488297554e-05, -1.92847735503548e-05, -5.3033127263474856e-05, -4.8211933875886815e-06, -4.8211933875886527e-06, -7.7139094201418551e-05, -3.8569547100709167e-05, -3.8569547100709303e-05, -4.821193387588673e-06, -4.8211933875886798e-06, -1.9284773550354726e-05, -1.9284773550354719e-05, -7.7139094201419093e-05, -3.8569547100709493e-05, -4.8211933875886578e-06, -0.00078103332878936118, -3.8569547100709465e-05, -3.8569547100709479e-05, -4.8211933875886781e-06, -1.9284773550354719e-05, -1.9284773550354726e-05, -9.642386775177302e-06, -9.6423867751772986e-06, -1.446358016276577e-05, -4.8211933875886806e-06, -9.6423867751772986e-06, -9.642386775177302e-06, -4.8211933875886493e-06, -4.8211933875886849e-06, -1.9284773550354631e-05, -5.7854320651063466e-05, -3.8569547100709167e-05, -4.8211933875886629e-06, -4.8211933875886527e-06, -8.6781480976594756e-05, -4.8211933875886722e-06, -1.9284773550354679e-05, -9.6423867751773426e-06, -7.7139094201418524e-05, -7.7139094201418497e-05, -2.4105966937943113e-05, -1.9284773550354689e-05, -9.6423867751774256e-06, -2.892716032553174e-05, -0.00040980143794503332, -4.8211933875886713e-06, -1.9284773550354692e-05, -1.9284773550354685e-05, -7.713909420141847e-05, -7.7139094201418551e-05, -1.9284773550354699e-05, -1.9284773550354597e-05, -1.9284773550354597e-05, -4.8211933875886629e-06, -0.00022177489582907845, -4.8211933875885785e-05, -4.8211933875886866e-06, -3.8569547100709479e-05, -3.8569547100709587e-05, -3.8569547100709465e-05, -7.7139094201418551e-05, -3.8569547100709147e-05, -7.713909420141847e-05, -3.8569547100709587e-05, -3.8569547100709587e-05, -0.0014801063699897, -3.8569547100709506e-05, -0.00096423867751772776, -3.8569547100709289e-05, -9.642386775177363e-06, -0.00028927160325531692, -5.7854320651063534e-05, -2.4105966937943109e-05, -0.00028927160325531757, -4.8211933875886544e-06, -3.8569547100709404e-05, -3.8569547100709411e-05, -0.00078103332878936118, -3.8569547100709255e-05, -3.8569547100709262e-05, -0.001104053285757797, -1.4463580162765884e-05, -0.00096423867751772776, -3.8569547100709411e-05, -3.8569547100709404e-05, -4.8211933875886645e-06, -3.8569547100709418e-05, -3.8569547100709398e-05, -4.8211933875886595e-06, -7.7139094201418497e-05, -7.7139094201418524e-05, -9.6423867751773884e-06, -1.9284773550354726e-05, -1.9284773550354719e-05, -3.8569547100709506e-05, -3.8569547100709493e-05, -0.00078103332878936887, -3.8569547100709465e-05, -3.8569547100709479e-05, -0.00013017222146489361, -0.00046283456520850459, -3.8569547100709398e-05, -0.00034230473051879024, -5.7854320651063602e-05, -5.7854320651063588e-05, -3.856954710070952e-05, -3.8569547100709601e-05, -4.821193387588632e-05, -3.8569547100709574e-05, -4.8211933875886239e-05, -0.00010124506113936154, -3.8569547100709303e-05, -2.4105966937943143e-05, -0.00011088744791453922, -3.8569547100709249e-05, -5.7854320651063548e-05, -1.44635801627659e-05, -2.410596693794313e-05, -9.6423867751773426e-06, -4.8211933875886849e-06, -4.8211933875886696e-06, -3.8569547100709574e-05, -5.7854320651063561e-05, -2.8927160325531713e-05, -1.9284773550354645e-05, -3.8569547100709506e-05, -3.856954710070956e-05, -3.8569547100709587e-05, -7.7139094201418429e-05, -3.8569547100709249e-05, -1.9284773550354685e-05, -7.7139094201418362e-05, -3.8569547100709221e-05, -1.9284773550354692e-05, -3.8569547100709587e-05, -4.8211933875886544e-06, -3.8569547100709235e-05, -3.8569547100709249e-05, -7.7139094201418606e-05, -0.00011570864130212688, -3.8569547100709371e-05, -7.7139094201418999e-05, -7.7139094201419066e-05, -3.8569547100709235e-05, -3.8569547100709235e-05, -3.8569547100709249e-05, -3.8569547100709269e-05, -4.3390740488297168e-05, -0.0001639205751780135, -9.6423867751774544e-06, -3.856954710070956e-05, -3.8569547100709221e-05, -4.3390740488297181e-05, -0.00012535102807730402, -3.856954710070952e-05, -3.8569547100709357e-05, -3.8569547100709587e-05, -1.9284773550354689e-05, -1.9284773550354689e-05, -4.8211933875886815e-06, -4.8211933875886747e-06, -4.8211933875886866e-06, -9.6423867751773528e-06, -8.1960287589006572e-05, -0.00014463580162765987, -5.7854320651063195e-05, -2.8927160325531679e-05, -4.8211933875886679e-06, -1.9284773550354675e-05, -7.7139094201418768e-05, -0.00011570864130212644, -3.856954710070956e-05, -1.9284773550354679e-05, -7.7139094201418714e-05, -7.7139094201418741e-05, -1.9284773550354679e-05, -5.7854320651063114e-05, -3.8569547100709255e-05, -4.821193387588695e-06, -9.6423867751774409e-06, -1.9284773550354675e-05, -1.9284773550354699e-05, -4.3390740488297303e-05, -2.4105966937943102e-05, -3.8569547100709465e-05, -7.7139094201418931e-05, -0.00034712592390637788, -1.9284773550354773e-05, -4.8211933875886645e-06, -0.00028927160325531692, -3.8569547100709316e-05, -0.00023141728260425452, -0.00023141728260425441, -0.00024105966937943264, -0.00023141728260425452, -1.9284773550354773e-05, -1.928477355035478e-05, -3.8569547100709343e-05, -3.8569547100709364e-05, -1.9284773550354597e-05, -1.9284773550354597e-05, -3.8569547100709547e-05, -4.8211933875886933e-06, -3.8569547100709533e-05, -4.8211933875886493e-06, -4.8211933875886781e-06, -0.00033748353713120309, -1.9284773550354597e-05, -1.9284773550354597e-05, -0.00029409279664290461, -9.6423867751773765e-06, -0.00034712592390637702, -0.00034712592390637702, -3.8569547100709323e-05, -4.8211933875886612e-06, -3.8569547100709303e-05, -0.00034712592390637691, -0.00034712592390638054, -3.8569547100709303e-05, -3.856954710070933e-05, -9.6423867751773189e-06, -9.6423867751773664e-06, -7.7139094201418416e-05, -3.8569547100709316e-05, -3.8569547100709316e-05, -1.4463580162765745e-05, -7.7139094201418416e-05, -3.8569547100709587e-05, -3.856954710070952e-05, -3.8569547100709506e-05, -3.8569547100709587e-05, -1.9284773550354624e-05, -1.9284773550354624e-05, -3.8569547100709221e-05, -3.8569547100709235e-05, -4.8211933875886789e-06, -4.8211933875886798e-06, -0.00096905987090532006, -0.00096423867751773079, -2.4105966937942994e-05, -4.8211933875886789e-06, -1.4463580162765662e-05, -4.8211933875886219e-05, -0.00038569547100709262, -9.6423867751773596e-06, -0.00044354979165815418, -4.821193387588651e-06, -7.7139094201419012e-05, -7.7139094201419039e-05, -3.8569547100709235e-05, -3.8569547100709221e-05, -0.00038569547100709262, 0.019255846390029061, -3.856954710070956e-05, -0.0010944108989826235, -9.6423867751773664e-06, -0.00096423867751772819, -7.7139094201418985e-05, -3.8569547100709506e-05, -3.8569547100709574e-05, -4.8211933875886459e-06, -4.8211933875886849e-06, -3.8569547100709452e-05, -3.8569547100709438e-05, -9.6423867751773664e-06, -9.6423867751773697e-06, -4.821193387588651e-06, -4.8211933875886696e-06, -3.8569547100709201e-05, -2.4105966937942903e-05, -1.4463580162765856e-05, -1.9284773550354624e-05, -1.9284773550354631e-05, -4.8211933875886789e-06, -7.2317900813830639e-05, -3.8569547100709343e-05, -3.8569547100709337e-05, -4.339074048829754e-05, -3.8569547100709249e-05, -7.2317900813830327e-05, -9.6423867751773596e-06, -4.8211933875886781e-06, -3.8569547100709235e-05, -3.8569547100709235e-05, -4.8211933875886849e-06, -4.8211933875886722e-06, -3.856954710070933e-05, -3.856954710070935e-05, -9.6423867751774324e-06, -4.8211933875886662e-06, -3.8569547100709289e-05, -7.7139094201418904e-05, -4.8211933875886158e-05, -3.8569547100709425e-05, -7.7139094201418795e-05, -4.8211933875886849e-06, -3.8569547100709316e-05, -8.1960287589006762e-05, -3.8569547100709411e-05, -3.8569547100709357e-05, -7.7139094201418714e-05, -0.0001542781884028383, -0.00012052983468971624, -3.8569547100709194e-05, -7.7139094201418972e-05, -7.7139094201418999e-05, -1.92847735503548e-05, -3.8569547100709343e-05, -4.8211933875886083e-05, -5.3033127263474619e-05, -1.92847735503548e-05, -7.7139094201419473e-05, -3.8569547100709391e-05, -3.8569547100709404e-05, -3.8569547100709398e-05, -9.6423867751774307e-06, -3.8569547100709533e-05, -3.8569547100709194e-05, -4.821193387588695e-06, -3.8569547100709201e-05, -9.6423867751773697e-06, -3.8569547100709547e-05, -3.8569547100709438e-05, -3.8569547100709425e-05, -4.8211933875886866e-06, -7.7139094201418768e-05, -7.7139094201418741e-05, -4.8211933875886781e-06, -3.8569547100709398e-05, -3.8569547100709404e-05, -4.8211933875886764e-06, -3.8569547100709574e-05, -3.8569547100709601e-05, -3.8569547100709357e-05, -3.8569547100709587e-05, -0.0001157086413021254, -3.856954710070956e-05, -3.8569547100709316e-05, -3.856954710070931e-05, -4.8211933875886493e-06, -3.8569547100709289e-05, -3.8569547100709303e-05, -7.7139094201418795e-05, -1.9284773550354631e-05, -8.6781480976594796e-05, -1.9284773550354624e-05, -4.821193387588695e-06, -9.642386775177346e-06, -6.26755140386519e-05, -3.8569547100709425e-05, -7.7139094201419093e-05, 0.019236561616478708, -3.856954710070933e-05, -0.00042426501810779944, -3.8569547100709343e-05, -3.8569547100709357e-05, -7.7139094201418999e-05, -0.00038569547100708915, -7.7139094201418972e-05, -0.00039051666439468032, -4.8211933875886468e-06, -7.7139094201418944e-05, -7.7139094201419026e-05, -1.9284773550354773e-05, -0.00040498024455744427, -0.00038569547100709262, -0.00038569547100708698, -0.00038569547100708959, -4.8211933875886849e-06, -1.9284773550354584e-05, -4.8211933875886629e-06, -4.8211933875886916e-06, -4.8211933875886815e-06, -3.8569547100709452e-05, -3.8569547100709438e-05, -3.8569547100709425e-05, -3.8569547100709425e-05, -4.8211933875886629e-06, -4.8211933875886662e-06, -4.8211933875886493e-06, -3.8569547100709506e-05, -4.82119338758863e-05, -9.6423867751772329e-05, -7.7139094201419256e-05, -7.7139094201418741e-05, -3.8569547100709506e-05, -0.00011570864130212661, -1.4463580162765911e-05, -0.00042426501810779939, -7.7139094201418768e-05, -0.00034712592390637702, -4.8211933875886815e-06, -4.821193387588673e-06, -0.00012052983468971632, -7.7139094201418795e-05, -3.8569547100709343e-05, -3.3748353713120449e-05, -1.928477355035458e-05, -9.6423867751773596e-06, -0.00034712592390637702, -9.6423867751773596e-06, -1.9284773550354624e-05, -1.9284773550354624e-05, -0.00034712592390637702, -3.8569547100709262e-05, -4.8211933875886696e-06, -3.8569547100709343e-05, -4.8211933875886493e-06, -3.8569547100709371e-05, -4.8211933875886273e-05, -1.4463580162765916e-05, -3.8569547100709357e-05, -7.2317900813829284e-05, -4.821193387588651e-06, -3.8569547100709276e-05, -9.6423867751773664e-06, -9.6423867751773697e-06, -9.6423867751773867e-06, -4.8211933875886764e-06, -2.8927160325531672e-05, -1.4463580162765889e-05, -3.8569547100709479e-05, -3.8569547100709452e-05, -7.7139094201418877e-05, -0.00012535102807730413, -0.00011088744791453833, -4.821193387588651e-06, -7.7139094201419121e-05, -3.8569547100709506e-05, -2.8927160325531713e-05, -9.6423867751773189e-06, -4.8211933875886662e-06, -4.8211933875886916e-06, -0.00038569547100708959, -0.00038569547100708698, -0.00078103332878936887, -0.00038569547100708693, -0.00038569547100708915, -1.92847735503548e-05, -9.6423867751773426e-06, -3.8569547100709452e-05, -4.3390740488297568e-05, -1.92847735503548e-05, -5.3033127263474856e-05, -4.8211933875886798e-06, -4.821193387588651e-06, -7.7139094201418551e-05, -3.8569547100709167e-05, -3.8569547100709303e-05, -4.821193387588673e-06, -4.8211933875886789e-06, -1.9284773550354726e-05, -1.9284773550354719e-05, -7.7139094201419093e-05, -3.8569547100709493e-05, -4.8211933875886578e-06, -0.00078103332878936096, -3.8569547100709465e-05, -3.8569547100709465e-05, -4.8211933875886781e-06, -1.9284773550354719e-05, -1.9284773550354726e-05, -9.6423867751772986e-06, -9.6423867751772986e-06, -1.4463580162765767e-05, -4.8211933875886798e-06, -9.6423867751772986e-06, -9.6423867751772986e-06, -4.8211933875886493e-06, -4.8211933875886849e-06, -1.9284773550354631e-05, -5.7854320651063331e-05, -3.8569547100709167e-05, -4.8211933875886629e-06, -4.821193387588651e-06, -8.6781480976594756e-05, -4.8211933875886713e-06, -1.9284773550354706e-05, -9.6423867751773596e-06, -7.7139094201418524e-05, -7.7139094201418497e-05, -2.4105966937943113e-05, -1.9284773550354685e-05, -9.642386775177424e-06, -2.8927160325531733e-05, -0.00040980143794503332, -4.8211933875886713e-06, -1.9284773550354689e-05, -1.9284773550354682e-05, -7.713909420141847e-05, -7.7139094201418551e-05, -1.9284773550354699e-05, -1.9284773550354597e-05, -1.9284773550354597e-05, -4.8211933875886629e-06, -0.00022177489582907845, -4.8211933875885798e-05, -4.8211933875886866e-06, -3.8569547100709465e-05, -3.8569547100709581e-05, -3.8569547100709465e-05, -7.7139094201418551e-05, -3.8569547100709147e-05, -7.713909420141847e-05, -3.8569547100709581e-05, -3.8569547100709581e-05, -0.0014801063699897, -3.8569547100709506e-05, -0.00096423867751772776, -3.8569547100709289e-05, -9.6423867751773613e-06, -0.00028927160325531692, -5.7854320651063521e-05, -2.4105966937943109e-05, -0.00028927160325531757, -4.8211933875886544e-06, -3.8569547100709398e-05, -3.8569547100709404e-05, -0.00078103332878936096, -3.8569547100709249e-05, -3.8569547100709255e-05, -0.001104053285757797, -1.4463580162765873e-05, -0.00096423867751772754, -3.8569547100709404e-05, -3.8569547100709398e-05, -4.8211933875886629e-06, -3.8569547100709411e-05, -3.8569547100709391e-05, -4.8211933875886595e-06, -7.7139094201418497e-05, -7.7139094201418524e-05, -9.6423867751773867e-06, -1.9284773550354726e-05, -1.9284773550354719e-05, -3.8569547100709506e-05, -3.8569547100709493e-05, -0.00078103332878936887, -3.8569547100709452e-05, -3.8569547100709479e-05, -0.00013017222146489339, -0.00046283456520850459, -3.8569547100709391e-05, -0.00034230473051879035, -5.7854320651063588e-05, -5.7854320651063588e-05, -3.856954710070952e-05, -3.8569547100709601e-05, -4.821193387588632e-05, -3.8569547100709574e-05, -4.8211933875886239e-05, -0.00010124506113936157, -3.8569547100709303e-05, -2.4105966937943143e-05, -0.00011088744791453924, -3.8569547100709242e-05, -5.7854320651063548e-05, -1.4463580162765897e-05, -2.410596693794313e-05, -9.6423867751773562e-06, -4.8211933875886849e-06, -4.8211933875886696e-06, -3.8569547100709574e-05, -5.7854320651063561e-05, -2.8927160325531713e-05, -1.9284773550354645e-05, -3.8569547100709506e-05, -3.856954710070956e-05, -3.8569547100709581e-05, -7.7139094201418402e-05, -3.8569547100709235e-05, -1.9284773550354682e-05, -7.7139094201418335e-05, -3.8569547100709221e-05, -1.9284773550354689e-05, -3.8569547100709581e-05, -4.8211933875886544e-06, -3.8569547100709235e-05, -3.8569547100709235e-05, -7.7139094201418741e-05, -0.0001157086413021268, -3.8569547100709371e-05, -7.7139094201418985e-05, -7.7139094201419053e-05, -3.8569547100709235e-05, -3.8569547100709221e-05, -3.8569547100709242e-05, -3.8569547100709262e-05, -4.3390740488297168e-05, -0.00016392057517801352, -9.6423867751774544e-06, -3.856954710070956e-05, -3.8569547100709221e-05, -4.3390740488297181e-05, -0.00012535102807730402, -3.856954710070952e-05, -3.8569547100709343e-05, -3.8569547100709587e-05, -1.9284773550354685e-05, -1.9284773550354685e-05, -4.8211933875886815e-06, -4.8211933875886815e-06, -4.8211933875886849e-06, -9.6423867751773528e-06, -8.1960287589006572e-05, -0.00014463580162765927, -5.7854320651063182e-05, -2.8927160325531672e-05, -4.8211933875886679e-06, -1.9284773550354672e-05, -7.7139094201418768e-05, -0.00011570864130212642, -3.856954710070956e-05, -1.9284773550354675e-05, -7.7139094201418714e-05, -7.7139094201418741e-05, -1.9284773550354675e-05, -5.78543206510631e-05, -3.8569547100709249e-05, -4.8211933875886942e-06, -9.6423867751774375e-06, -1.9284773550354672e-05, -1.9284773550354699e-05, -4.3390740488297303e-05, -2.4105966937943102e-05, -3.8569547100709465e-05, -7.7139094201418904e-05, -0.00034712592390637788, -1.9284773550354773e-05, -4.8211933875886645e-06, -0.00028927160325531692, -3.856954710070931e-05, -0.00023141728260425446, -0.00023141728260425435, -0.00024105966937943264, -0.00023141728260425446, -1.9284773550354773e-05, -1.928477355035478e-05, -3.8569547100709337e-05, -3.8569547100709357e-05, -1.9284773550354597e-05, -1.9284773550354597e-05, -3.8569547100709547e-05, -4.8211933875886925e-06, -3.8569547100709533e-05, -4.8211933875886493e-06, -4.8211933875886764e-06, -0.00033748353713120309, -1.9284773550354597e-05, -1.9284773550354597e-05, -0.00029409279664290461, -9.6423867751773731e-06, -0.00034712592390637702, -0.00034712592390637702, -3.8569547100709316e-05, -4.8211933875886603e-06, -3.8569547100709296e-05, -0.00034712592390637702, -0.00034712592390638054, -3.8569547100709303e-05, -3.856954710070933e-05, -9.6423867751773189e-06, -9.6423867751773664e-06, -7.7139094201418416e-05, -3.8569547100709316e-05, -3.8569547100709316e-05, -1.4463580162765741e-05, -7.7139094201418416e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6905987090530822e-05, -9.6423867751771163e-05, -2.4105966937943263e-06, -4.8211933875886112e-07, -1.4463580162765853e-06, -4.8211933875886815e-06, -3.856954710070956e-05, -9.6423867751772245e-07, -4.4354979165815909e-05, -4.8211933875886122e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.856954710070956e-05, -3.856954710070956e-05, 0.001960297231393539, -0.00010944108989826053, -9.6423867751772202e-07, -9.6423867751772437e-05, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708873e-06, -2.4105966937943263e-06, -1.4463580162765863e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886112e-07, -7.2317900813830612e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488297751e-06, -3.8569547100708898e-06, -7.2317900813830358e-06, -9.6423867751772224e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886722e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886112e-07, -3.8569547100708898e-06, -8.1960287589005691e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -1.5427818840283549e-05, -1.2052983468971426e-05, -3.8569547100708898e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -1.928477355035444e-06, -3.8569547100708898e-06, -4.8211933875886739e-06, -5.3033127263474397e-06, -1.928477355035444e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772202e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -3.8569547100708898e-06, -9.6423867751772224e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -1.157086413021268e-05, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -8.6781480976594332e-06, -1.9284773550354449e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -6.2675514038652458e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.0498024455744671e-05, -3.8569547100708898e-06, -4.2426501810779565e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -3.8569547100709323e-05, -7.7139094201417779e-06, -3.9051666439468263e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417762e-06, -1.9284773550354449e-06, -4.0498024455744657e-05, -3.856954710070956e-05, -3.8569547100709296e-05, -3.8569547100709391e-05, -4.8211933875886112e-07, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708889e-06, -4.82119338758869e-06, -9.6423867751773528e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -3.8569547100708889e-06, -1.1570864130212692e-05, -1.4463580162766071e-06, -4.2426501810779897e-05, -7.7139094201417779e-06, -3.4712592390638404e-05, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971604e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.3748353713120274e-06, -1.928477355035444e-06, -9.6423867751772224e-07, -3.471259239063839e-05, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.471259239063839e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886696e-06, -1.4463580162765863e-06, -3.8569547100708898e-06, -7.2317900813830155e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.8927160325531887e-06, -1.4463580162766041e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -1.2535102807730464e-05, -1.1088744791453976e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -3.8569547100708889e-06, -2.8927160325531947e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100709391e-05, -3.8569547100709296e-05, -7.8103332878936784e-05, -3.8569547100709296e-05, -3.8569547100709323e-05, -1.928477355035444e-06, -9.6423867751772245e-07, -3.8569547100708873e-06, -4.3390740488297683e-06, -1.928477355035444e-06, -5.3033127263474702e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417779e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -7.8103332878936595e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.4463580162765863e-06, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -1.928477355035444e-06, -5.7854320651063487e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -8.6781480976595874e-06, -4.8211933875886122e-07, -1.9284773550354428e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.4105966937943369e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -2.8927160325532023e-06, -4.0980143794503334e-05, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -2.2177489582907697e-05, -4.8211933875886527e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708881e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -0.00014801063699897054, -3.8569547100708889e-06, -9.6423867751771759e-05, -3.8569547100708898e-06, -9.6423867751772224e-07, -2.8927160325531882e-05, -5.785432065106347e-06, -2.410596693794334e-06, -2.8927160325532197e-05, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.8103332878936595e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00011040532857577868, -1.4463580162765855e-06, -9.6423867751771841e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.8103332878936784e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.3017222146489208e-05, -4.6283456520850776e-05, -3.8569547100708898e-06, -3.4230473051879362e-05, -5.7854320651064046e-06, -5.785432065106408e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -4.8211933875886933e-06, -3.8569547100708881e-06, -4.8211933875886815e-06, -1.0124506113936161e-05, -3.8569547100708898e-06, -2.4105966937943433e-06, -1.1088744791453932e-05, -3.8569547100708898e-06, -5.785432065106347e-06, -1.4463580162766045e-06, -2.4105966937943331e-06, -9.6423867751772202e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -5.7854320651064283e-06, -2.8927160325531532e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, 0.001960297231393539, -3.8569547100708881e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -1.1570864130212687e-05, -3.8569547100708898e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488296759e-06, -1.6392057517801199e-05, -9.6423867751772181e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -4.3390740488297954e-06, -1.2535102807730505e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -8.1960287589005183e-06, -1.4463580162765948e-05, -5.785432065106347e-06, -2.8927160325531887e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -7.7139094201417779e-06, -1.1570864130212685e-05, -3.8569547100708881e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -5.7854320651063461e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.339074048829698e-06, -2.4105966937943399e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.4712592390638336e-05, -1.9284773550354449e-06, -4.8211933875886122e-07, -2.8927160325531875e-05, -3.8569547100708898e-06, -2.314172826042572e-05, -2.3141728260425374e-05, -2.4105966937942848e-05, -2.314172826042572e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -4.8211933875886101e-07, -3.8569547100708881e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.3748353713120869e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.9409279664290792e-05, -9.6423867751772224e-07, -3.471259239063839e-05, -3.471259239063839e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.4712592390638404e-05, -3.4712592390638336e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.4463580162765969e-06, -7.7139094201417796e-06, -0.00010944108989826051, -0.0001094410898982608, -0.00010944108989826069, -0.00010944108989826053, -5.4720544949130727e-05, -5.4720544949130713e-05, -0.00010944108989826168, -0.00010944108989826163, -1.3680136237282609e-05, -1.3680136237282665e-05, -0.0027497073836938299, -0.0027360272474565715, -6.8400681186413858e-05, -1.3680136237282611e-05, -4.1040408711848023e-05, -0.00013680136237282812, -0.0010944108989826269, -2.736027247456533e-05, -0.0012585725338300133, -1.3680136237282694e-05, -0.0002188821797965215, -0.00021888217979652163, -0.00010944108989826151, -0.00010944108989826179, -0.0010944108989826235, -0.0010944108989826235, -0.00010944108989826053, 0.052627484104826601, -2.736027247456512e-05, -0.0027360272474565776, -0.00021888217979652136, -0.00010944108989826075, -0.00010944108989826045, -1.3680136237282702e-05, -1.3680136237282607e-05, -0.00010944108989826105, -0.00010944108989826097, -2.736027247456512e-05, -2.736027247456512e-05, -1.3680136237282697e-05, -1.3680136237282644e-05, -0.00010944108989826179, -6.8400681186413492e-05, 0.00020447886455110314, -5.47205449491307e-05, -5.4720544949130727e-05, -1.3680136237282611e-05, -0.00020520204355924045, -0.0001094410898982612, -0.00010944108989826116, -0.00012312122613554431, -0.0001094410898982616, -0.00020520204355924053, -2.7360272474565218e-05, -1.3680136237282573e-05, -0.00010944108989826158, -0.00010944108989826155, -1.3680136237282604e-05, -1.3680136237282628e-05, -0.00010944108989826113, -0.00010944108989826124, -2.736027247456559e-05, -1.3680136237282655e-05, -0.00010944108989826137, -0.00021888217979652283, -0.00013680136237282712, -0.00010944108989826105, -0.00021888217979652275, -1.36801362372826e-05, -0.00010944108989826139, -0.00023256231603380607, -0.00010944108989826109, -0.00010944108989826126, -0.0002188821797965215, -0.00043776435959304641, -0.00034200340593206987, -0.00010944108989826154, -0.00021888217979652253, -0.00021888217979652264, -5.4720544949130253e-05, -0.00010944108989826163, -0.00013680136237282669, -0.00015048149861011001, -5.4720544949130253e-05, -0.00021888217979652353, -0.00010944108989826143, -0.00010944108989826105, -0.00010944108989826102, -2.736027247456559e-05, -0.00010944108989826067, -0.00010944108989826154, -1.3680136237282561e-05, -0.00010944108989826156, -2.7360272474565357e-05, -0.00010944108989826069, -0.0001094410898982611, -0.00010944108989826099, -1.3680136237282594e-05, -0.00021888217979652177, -0.00021888217979652166, -1.3680136237282617e-05, -0.00010944108989826145, -0.00010944108989826151, -1.3680136237282619e-05, -0.00010944108989826053, -0.00010944108989826064, -0.00010944108989826132, -0.00010944108989826059, -0.0003283232696947844, -0.00010944108989826061, -0.00010944108989826145, -0.00010944108989826133, -1.3680136237282651e-05, -0.00010944108989826135, -0.0001094410898982613, -0.0002188821797965222, -5.4720544949130727e-05, -0.00024624245227108861, -5.47205449491307e-05, -1.3680136237282573e-05, -2.7360272474565275e-05, -0.00017784177108467577, -0.00010944108989826099, -0.00021888217979652426, -0.0011491314439317462, -0.00010944108989826113, -0.0012038519888808855, -0.00010944108989826121, -0.00010944108989826132, -0.00021888217979652264, -0.0010944108989826206, -0.00021888217979652253, -0.0011080910352199006, -1.3680136237282699e-05, -0.00021888217979652237, -0.0002188821797965228, -5.472054494913028e-05, -0.0011491314439317462, -0.0010944108989826269, -0.0010944108989826211, -0.0010944108989826102, -1.3680136237282607e-05, -5.472054494913053e-05, -1.3680136237282661e-05, -1.3680136237282587e-05, -1.368013623728256e-05, -0.00010944108989826102, -0.00010944108989826099, -0.00010944108989826107, -0.00010944108989826105, -1.3680136237282661e-05, -1.3680136237282655e-05, -1.3680136237282665e-05, -0.00010944108989826075, -0.00013680136237282828, -0.00027360272474565299, -0.0002188821797965244, -0.00021888217979652256, -0.0001094410898982608, -0.00032832326969478462, -4.104040871184805e-05, -0.0012038519888808864, -0.00021888217979652269, -0.00098496980908435489, -1.3680136237282611e-05, -1.3680136237282638e-05, -0.000342003405932069, -0.0002188821797965222, -0.0001094410898982612, -9.5760953660979021e-05, -5.472054494913068e-05, -2.7360272474565228e-05, -0.00098496980908435489, -2.7360272474565218e-05, -5.4720544949130713e-05, -5.4720544949130727e-05, -0.00098496980908435467, -0.00010944108989826135, -1.3680136237282638e-05, -0.00010944108989826118, -1.3680136237282665e-05, -0.00010944108989826129, -0.00013680136237282807, -4.1040408711848064e-05, -0.00010944108989826124, -0.00020520204355924045, -1.3680136237282697e-05, -0.00010944108989826137, -2.736027247456512e-05, 0.00046367827405134138, -2.7360272474565255e-05, -1.3680136237282628e-05, -8.2080817423696101e-05, -4.1040408711848064e-05, -0.00010944108989826094, -0.00010944108989826083, -0.00021888217979652269, -0.00035568354216935154, -0.00031464313345750446, -1.3680136237282697e-05, -0.00021888217979652413, -0.00010944108989826086, -8.2080817423696101e-05, -2.7360272474565414e-05, -1.3680136237282655e-05, -1.3680136237282587e-05, -0.0010944108989826102, -0.0010944108989826211, -0.0022161820704397935, -0.00109441089898262, -0.0010944108989826206, -5.4720544949130253e-05, -2.7360272474565462e-05, -0.00010944108989826064, -0.00012312122613554431, -5.4720544949130253e-05, -0.00015048149861011093, -1.3680136237282614e-05, -1.3680136237282694e-05, -0.00021888217979652364, -0.00010944108989826137, -0.00010944108989826124, -1.3680136237282638e-05, -1.3680136237282609e-05, -5.4720544949130469e-05, -5.4720544949130442e-05, -0.00021888217979652413, -0.0001094410898982608, -1.3680136237282672e-05, -0.0022161820704398021, -0.00010944108989826088, -0.00010944108989826094, -1.3680136237282617e-05, -5.4720544949130456e-05, -5.4720544949130456e-05, -2.7360272474565414e-05, -2.7360272474565421e-05, -4.1040408711848064e-05, -1.3680136237282607e-05, -2.7360272474565421e-05, -2.7360272474565414e-05, -1.3680136237282655e-05, -1.3680136237282607e-05, -5.4720544949130551e-05, -0.0001641616348473922, -0.00010944108989826143, -1.3680136237282665e-05, -1.3680136237282694e-05, -0.00024624245227108878, -1.3680136237282629e-05, -5.472054494913091e-05, -2.736027247456554e-05, -0.00021888217979652318, -0.00021888217979652299, -6.8400681186414061e-05, -5.4720544949130571e-05, -2.7360272474565574e-05, -8.2080817423696087e-05, -0.0011628115801690427, -1.3680136237282644e-05, -5.4720544949130571e-05, -5.4720544949130558e-05, -0.00021888217979652285, -0.00021888217979652331, -5.4720544949130537e-05, -5.4720544949130646e-05, -5.4720544949130659e-05, -1.3680136237282665e-05, -0.00062928626691500643, -0.00013680136237282736, -1.36801362372826e-05, -0.00010944108989826094, -0.00010944108989826219, -0.00010944108989826088, -0.00021888217979652331, -0.00010944108989826164, -0.00021888217979652285, -0.00010944108989826216, -0.00010944108989826217, -0.0041998018248458136, -0.00010944108989826091, 0.046367827405133698, -0.00010944108989826135, -2.7360272474565211e-05, -0.00082080817423696201, -0.00016416163484739226, -6.8400681186413939e-05, -0.00082080817423696114, -1.3680136237282682e-05, -0.00010944108989826102, -0.00010944108989826105, -0.0022161820704398021, -0.00010944108989826144, -0.00010944108989826149, -0.0031327511983377443, -4.104040871184805e-05, -0.0027360272474565577, -0.00010944108989826151, -0.00010944108989826145, -1.3680136237282656e-05, -0.00010944108989826109, -0.00010944108989826098, -1.3680136237282672e-05, -0.00021888217979652299, -0.00021888217979652318, -2.7360272474565255e-05, -5.4720544949130456e-05, -5.4720544949130456e-05, -0.00010944108989826086, -0.00010944108989826083, -0.0022161820704397935, -0.00010944108989826083, -0.00010944108989826094, -0.00036936367840663241, -0.0013132930787791385, -0.00010944108989826143, -0.00097128967284707338, -0.0001641616348473922, -0.0001641616348473922, -0.00010944108989826086, -0.00010944108989826064, -0.00013680136237282828, -0.00010944108989826053, -0.00013680136237282804, -0.00028728286098293662, -0.0001094410898982614, -6.8400681186413031e-05, -0.00031464313345750208, -0.00010944108989826141, -0.00016416163484739226, -4.1040408711848064e-05, -6.8400681186413966e-05, -2.736027247456514e-05, -1.3680136237282607e-05, -1.3680136237282638e-05, -0.00010944108989826045, -0.0001641616348473922, -8.2080817423696128e-05, -5.4720544949130673e-05, 0.001854713096205361, -0.00010944108989826053, -0.00010944108989826217, -0.0002188821797965228, -0.00010944108989826151, -5.4720544949130558e-05, -0.0002188821797965228, -0.00010944108989826151, -5.4720544949130571e-05, -0.00010944108989826219, -1.3680136237282682e-05, -0.00010944108989826155, -0.00010944108989826158, -0.00021888217979652166, -0.00032832326969478451, -0.00010944108989826126, -0.00021888217979652136, 0.0037094261924107185, -0.00010944108989826163, -0.00010944108989826168, -0.00010944108989826141, -0.00010944108989826154, -0.00012312122613554425, -0.00046512463206761361, -2.7360272474565621e-05, -0.00010944108989826061, -0.00010944108989826155, -0.00012312122613554428, -0.00035568354216935295, -0.0001094410898982608, -0.00010944108989826118, -0.00010944108989826051, -5.4720544949130571e-05, -5.4720544949130558e-05, -1.3680136237282604e-05, -1.368013623728256e-05, -1.36801362372826e-05, -2.7360272474565255e-05, -0.00023256231603380827, -0.000410404087118481, -0.00016416163484739226, -8.2080817423696101e-05, -1.3680136237282641e-05, -5.4720544949130585e-05, -0.00021888217979652269, -0.00032832326969478462, -0.00010944108989826064, -5.4720544949130585e-05, -0.00021888217979652242, -0.00021888217979652256, -5.4720544949130585e-05, -0.00016416163484739228, -0.00010944108989826144, -1.3680136237282624e-05, -2.7360272474565604e-05, -5.4720544949130585e-05, -5.4720544949130537e-05, -0.00012312122613554431, -6.8400681186413194e-05, -0.00010944108989826086, -0.00021888217979652283, -0.0009849698090843538, -5.472054494913028e-05, -1.3680136237282661e-05, -0.00082080817423696179, -0.00010944108989826133, -0.0006566465393895687, -0.00065664653938956924, -0.00068400681186413508, -0.0006566465393895687, -5.4720544949130293e-05, -5.4720544949130293e-05, -0.0001094410898982616, -0.00010944108989826171, -5.4720544949130619e-05, -5.4720544949130632e-05, -0.00010944108989826069, -1.3680136237282628e-05, -0.00010944108989826067, -1.3680136237282651e-05, -1.3680136237282619e-05, -0.00095760953660978243, -5.4720544949130632e-05, -5.4720544949130619e-05, -0.00083448831047424948, -2.7360272474565187e-05, -0.00098496980908435467, -0.00098496980908435489, -0.00010944108989826139, -1.3680136237282663e-05, -0.00010944108989826128, -0.00098496980908435489, -0.00098496980908435402, -0.00010944108989826124, -0.00010944108989826135, -2.736027247456535e-05, -2.7360272474565228e-05, -0.0002188821797965231, -0.00010944108989826132, -0.00010944108989826126, -4.104040871184805e-05, -0.0002188821797965231, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -2.4226496772633109e-05, -2.4105966937943194e-05, -6.0264917344858201e-07, -1.2052983468971528e-07, -3.6158950406915288e-07, -1.2052983468971716e-06, -9.6423867751773833e-06, -2.4105966937943056e-07, -1.1088744791453782e-05, -1.2052983468971531e-07, -1.928477355035444e-06, -1.9284773550354436e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751773494e-06, -9.6423867751773664e-06, -9.6423867751772202e-07, -2.736027247456512e-05, 0.00049079748685652272, -2.4105966937943506e-05, -1.928477355035444e-06, -9.6423867751772224e-07, -9.6423867751772202e-07, -1.2052983468971528e-07, -1.2052983468971531e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -2.4105966937943231e-07, -2.410596693794322e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772181e-07, -6.0264917344858201e-07, -3.6158950406915309e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971528e-07, -1.8079475203457492e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.0847685122074177e-06, -9.6423867751772245e-07, -1.8079475203457606e-06, -2.4105966937943051e-07, -1.2052983468971552e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971525e-07, -1.2052983468971528e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -2.4105966937943051e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.2052983468971691e-06, -9.6423867751772224e-07, -1.9284773550354445e-06, -1.2052983468971525e-07, -9.6423867751772224e-07, -2.0490071897251393e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -3.8569547100708957e-06, -3.0132458672429069e-06, -9.6423867751772224e-07, -1.928477355035444e-06, -1.928477355035444e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -1.2052983468971695e-06, -1.3258281815868595e-06, -4.8211933875886101e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -2.4105966937943051e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -1.2052983468971523e-07, -9.6423867751772224e-07, -2.4105966937943051e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971528e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.2052983468971528e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.2052983468971528e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772245e-07, -9.6423867751772202e-07, -2.892716032553223e-06, -9.6423867751772202e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -4.8211933875886122e-07, -2.1695370244148397e-06, -4.8211933875886122e-07, -1.2052983468971525e-07, -2.4105966937943061e-07, -1.5668878509663165e-06, -9.6423867751772224e-07, -1.9284773550354445e-06, -1.0124506113936147e-05, -9.6423867751772224e-07, -1.0606625452694884e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.928477355035444e-06, -9.6423867751773393e-06, -1.928477355035444e-06, -9.7629166098670726e-06, -1.2052983468971528e-07, -1.928477355035444e-06, -1.928477355035444e-06, -4.8211933875886101e-07, -1.0124506113936141e-05, -9.6423867751773833e-06, -9.6423867751773308e-06, -9.6423867751773562e-06, -1.2052983468971525e-07, -4.8211933875886101e-07, -1.2052983468971531e-07, -1.2052983468971525e-07, -1.205298346897161e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772202e-07, -1.2052983468971733e-06, -2.4105966937943407e-06, -1.928477355035444e-06, -1.9284773550354445e-06, -9.6423867751772202e-07, -2.8927160325532256e-06, -3.6158950406915839e-07, -1.0606625452694971e-05, -1.9284773550354445e-06, -8.6781480976593926e-06, -1.2052983468971528e-07, -1.2052983468971531e-07, -3.013245867242917e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -8.4370884282800494e-07, -4.8211933875886122e-07, -2.4105966937943051e-07, -8.6781480976593892e-06, -2.4105966937943051e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -8.6781480976593892e-06, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.2052983468971691e-06, -3.6158950406914007e-07, -9.6423867751772245e-07, -1.8079475203457492e-06, -1.2052983468971531e-07, -9.6423867751772245e-07, 0.00049079748685652272, -2.410596693794322e-07, -2.4105966937943051e-07, -1.2052983468971531e-07, -7.2317900813831021e-07, -3.6158950406915759e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.9284773550354445e-06, -3.1337757019326254e-06, -2.7721861978634291e-06, -1.2052983468971531e-07, -1.9284773550354445e-06, -9.6423867751772224e-07, -7.2317900813831169e-07, -2.4105966937943056e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -9.6423867751773562e-06, -9.6423867751773308e-06, -1.952583321973421e-05, -9.6423867751773308e-06, -9.6423867751773393e-06, -4.8211933875886101e-07, -2.4105966937943056e-07, -9.6423867751772202e-07, -1.0847685122074156e-06, -4.8211933875886101e-07, -1.3258281815868667e-06, -1.2052983468971528e-07, -1.2052983468971531e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.928477355035444e-06, -9.6423867751772224e-07, -1.2052983468971531e-07, -1.9525833219734166e-05, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.2052983468971528e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -3.6158950406915309e-07, -1.2052983468971525e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -1.2052983468971525e-07, -4.8211933875886091e-07, -1.4463580162766136e-06, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -2.1695370244148448e-06, -1.2052983468971528e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -6.0264917344858466e-07, -4.8211933875886112e-07, -2.4105966937943051e-07, -7.2317900813830597e-07, -1.0245035948625833e-05, -1.2052983468971531e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -5.544372395726865e-06, -1.205298346897164e-06, -1.2052983468971525e-07, -9.6423867751772202e-07, -9.6423867751772181e-07, -9.6423867751772202e-07, -1.9284773550354445e-06, -9.6423867751772181e-07, -1.9284773550354445e-06, -9.6423867751772181e-07, -9.6423867751772181e-07, -3.7002659249743468e-05, -9.6423867751772224e-07, -2.4105966937943343e-05, -9.6423867751772245e-07, -2.4105966937943051e-07, -7.2317900813829739e-06, -1.4463580162766132e-06, -6.0264917344858392e-07, -7.2317900813830561e-06, -1.2052983468971531e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.9525833219734166e-05, -9.6423867751772224e-07, -9.6423867751772224e-07, -2.7601332143944603e-05, -3.6158950406914113e-07, -2.4105966937943363e-05, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.2052983468971528e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.4105966937943051e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.952583321973421e-05, -9.6423867751772202e-07, -9.6423867751772202e-07, -3.2543055366223004e-06, -1.1570864130212906e-05, -9.6423867751772245e-07, -8.5576182629696355e-06, -1.4463580162766115e-06, -1.4463580162766115e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.2052983468971742e-06, -9.6423867751772202e-07, -1.2052983468971712e-06, -2.5311265284840419e-06, -9.6423867751772245e-07, -6.0264917344858624e-07, -2.7721861978634308e-06, -9.6423867751772224e-07, -1.4463580162766132e-06, -3.6158950406915775e-07, -6.026491734485837e-07, -2.4105966937943114e-07, -1.2052983468971525e-07, -1.2052983468971531e-07, -9.6423867751772202e-07, -1.4463580162766124e-06, -7.2317900813831148e-07, -4.8211933875886122e-07, -9.6423867751772224e-07, -9.6423867751772202e-07, -9.6423867751772181e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -4.8211933875886112e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -4.8211933875886112e-07, -9.6423867751772181e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -2.8927160325531549e-06, -9.6423867751772245e-07, -1.928477355035444e-06, -1.9284773550354436e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.0847685122074228e-06, -4.0980143794503049e-06, -2.4105966937943045e-07, -9.6423867751772202e-07, -9.6423867751772245e-07, -1.0847685122074228e-06, -3.1337757019326275e-06, -9.6423867751772202e-07, -9.6423867751772245e-07, -9.6423867751772202e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.2052983468971528e-07, -1.2052983468971605e-07, -1.2052983468971525e-07, -2.4105966937943061e-07, -2.0490071897252075e-06, -3.6158950406914954e-06, -1.4463580162766132e-06, -7.2317900813831021e-07, -1.2052983468971531e-07, -4.8211933875886112e-07, -1.9284773550354445e-06, -2.8927160325532243e-06, -9.6423867751772202e-07, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886112e-07, -1.4463580162766128e-06, -9.6423867751772224e-07, -1.2052983468971525e-07, -2.4105966937943051e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -1.0847685122074211e-06, -6.026491734485854e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -8.678148097659379e-06, -4.8211933875886101e-07, -1.2052983468971531e-07, -7.2317900813829739e-06, -9.6423867751772224e-07, -5.785432065106535e-06, -5.7854320651064495e-06, -6.0264917344858129e-06, -5.785432065106535e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772202e-07, -1.2052983468971525e-07, -9.6423867751772202e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -8.4370884282800207e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.352319916072698e-06, -2.4105966937943051e-07, -8.6781480976593892e-06, -8.6781480976593892e-06, -9.6423867751772224e-07, -1.2052983468971528e-07, -9.6423867751772224e-07, -8.6781480976593926e-06, -8.6781480976593756e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -2.4105966937943051e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.6158950406915309e-07, -1.9284773550354449e-06, -9.6423867751773969e-05, -9.6423867751773697e-05, -9.6423867751773806e-05, -9.6423867751773941e-05, -4.8211933875886578e-05, -4.8211933875886578e-05, -9.6423867751773155e-05, -9.6423867751773101e-05, -1.2052983468971714e-05, -1.2052983468971705e-05, -0.0024226496772632822, -0.0024105966937943103, -6.0264917344858026e-05, -1.2052983468971712e-05, -3.6158950406914466e-05, -0.00012052983468971583, -0.00096423867751772798, -2.4105966937943411e-05, -0.0011088744791453919, -1.2052983468971638e-05, -0.00019284773550354748, -0.00019284773550354734, -9.6423867751773074e-05, -9.6423867751773182e-05, -0.00096423867751772841, -0.00096423867751772819, -9.6423867751772437e-05, -0.0027360272474565776, -2.4105966937943506e-05, 0.04669325795879628, -0.00019284773550354764, -9.6423867751773752e-05, -9.6423867751774023e-05, -1.2052983468971633e-05, -1.2052983468971712e-05, -9.6423867751773535e-05, -9.6423867751773643e-05, -2.4105966937943506e-05, -2.4105966937943506e-05, -1.2052983468971634e-05, -1.2052983468971685e-05, -9.6423867751773182e-05, -6.026491734485808e-05, -3.6158950406914527e-05, -4.8211933875886605e-05, -4.8211933875886564e-05, -1.2052983468971712e-05, -0.00018079475203457076, -9.6423867751773426e-05, -9.6423867751773454e-05, -0.00010847685122074378, -9.6423867751773047e-05, -0.00018079475203457146, -2.4105966937943428e-05, -1.2052983468971739e-05, -9.6423867751773101e-05, -9.6423867751773101e-05, -1.2052983468971719e-05, -1.2052983468971697e-05, -9.6423867751773494e-05, -9.6423867751773386e-05, -2.4105966937943035e-05, -1.2052983468971672e-05, -9.6423867751773264e-05, -0.00019284773550354525, -0.00012052983468971573, -9.6423867751773589e-05, -0.00019284773550354631, -1.2052983468971719e-05, -9.6423867751773291e-05, -0.00020490071897251655, -9.6423867751773508e-05, -9.6423867751773372e-05, -0.0001928477355035475, -0.00038569547100708899, -0.00030132458672428895, -9.6423867751773155e-05, -0.00019284773550354729, -0.00019284773550354712, -4.8211933875887011e-05, -9.6423867751773426e-05, -0.00012052983468971573, -0.00013258281815868632, -4.8211933875887011e-05, -0.00019284773550354428, -9.6423867751773589e-05, -9.6423867751773548e-05, -9.6423867751773589e-05, -2.4105966937943042e-05, -9.6423867751773914e-05, -9.6423867751773155e-05, -1.2052983468971753e-05, -9.6423867751773115e-05, -2.4105966937943289e-05, -9.642386775177386e-05, -9.6423867751773481e-05, -9.6423867751773589e-05, -1.2052983468971719e-05, -0.00019284773550354718, -0.00019284773550354729, -1.2052983468971702e-05, -9.6423867751773535e-05, -9.6423867751773481e-05, -1.2052983468971707e-05, -9.6423867751774023e-05, -9.6423867751773887e-05, -9.6423867751773318e-05, -9.6423867751773914e-05, -0.00028927160325531573, -9.6423867751773969e-05, -9.642386775177321e-05, -9.6423867751773332e-05, -1.2052983468971678e-05, -9.6423867751773318e-05, -9.6423867751773372e-05, -0.0001928477355035468, -4.8211933875886564e-05, -0.00021695370244148682, -4.8211933875886605e-05, -1.2052983468971743e-05, -2.4105966937943377e-05, -0.00015668878509663111, -9.6423867751773589e-05, -0.0001928477355035449, -0.0010124506113936068, -9.6423867751773494e-05, -0.0010606625452695021, -9.6423867751773426e-05, -9.6423867751773318e-05, -0.00019284773550354712, -0.00096423867751772711, -0.00019284773550354729, -0.00097629166098669496, -1.2052983468971634e-05, -0.00019284773550354739, -0.00019284773550354696, -4.8211933875886957e-05, -0.0010124506113936066, -0.00096423867751772798, -0.00096423867751772667, -0.00096423867751772613, -1.2052983468971712e-05, -4.8211933875886727e-05, -1.2052983468971665e-05, -1.2052983468971733e-05, -1.2052983468971753e-05, -9.6423867751773562e-05, -9.6423867751773589e-05, -9.6423867751773535e-05, -9.6423867751773589e-05, -1.2052983468971665e-05, -1.2052983468971672e-05, -1.2052983468971665e-05, -9.6423867751773806e-05, -0.00012052983468971611, -0.00024105966937943145, -0.00019284773550354466, -0.00019284773550354661, -9.6423867751773752e-05, -0.00028927160325531621, -3.6158950406915218e-05, -0.0010606625452695023, -0.00019284773550354645, -0.0008678148097659565, -1.2052983468971712e-05, -1.2052983468971688e-05, -0.00030132458672428982, -0.0001928477355035468, -9.6423867751773426e-05, -8.4370884282800406e-05, -4.8211933875886598e-05, -2.4105966937943421e-05, -0.0008678148097659565, -2.4105966937943428e-05, -4.8211933875886578e-05, -4.8211933875886578e-05, -0.00086781480976595628, -9.6423867751773264e-05, -1.2052983468971685e-05, -9.6423867751773481e-05, -1.2052983468971665e-05, -9.6423867751773318e-05, -0.00012052983468971616, -3.6158950406914513e-05, -9.6423867751773426e-05, -0.00018079475203457344, -1.2052983468971631e-05, -9.6423867751773237e-05, -2.4105966937943506e-05, -2.4105966937943506e-05, -2.4105966937943479e-05, -1.2052983468971699e-05, -7.2317900813829595e-05, -3.6158950406915096e-05, -9.6423867751773643e-05, -9.6423867751773765e-05, -0.00019284773550354626, -0.00031337757019326212, -0.00027721861978634819, -1.2052983468971631e-05, -0.00019284773550354487, -9.6423867751773697e-05, -7.2317900813829785e-05, -2.4105966937943221e-05, -1.2052983468971672e-05, -1.2052983468971733e-05, -0.00096423867751772613, -0.00096423867751772667, -0.0019525833219733912, -0.00096423867751772667, -0.00096423867751772711, -4.8211933875887011e-05, -2.4105966937943194e-05, -9.6423867751772776e-05, -0.00010847685122074383, -4.8211933875887011e-05, -0.00013258281815868768, -1.2052983468971712e-05, -1.2052983468971638e-05, -0.00019284773550354555, -9.6423867751773264e-05, -9.6423867751773372e-05, -1.2052983468971692e-05, -1.2052983468971714e-05, -4.8211933875886795e-05, -4.8211933875886822e-05, -0.00019284773550354487, -9.6423867751773779e-05, -1.2052983468971655e-05, -0.001952583321973386, -9.6423867751773725e-05, -9.6423867751773684e-05, -1.2052983468971702e-05, -4.8211933875886822e-05, -4.8211933875886795e-05, -2.4105966937943269e-05, -2.4105966937943275e-05, -3.615895040691452e-05, -1.2052983468971716e-05, -2.4105966937943275e-05, -2.4105966937943269e-05, -1.2052983468971672e-05, -1.2052983468971719e-05, -4.8211933875886706e-05, -0.00014463580162765819, -9.642386775177321e-05, -1.2052983468971665e-05, -1.2052983468971638e-05, -0.0002169537024414869, -1.2052983468971697e-05, -4.8211933875886327e-05, -2.4105966937943102e-05, -0.00019284773550354609, -0.00019284773550354623, -6.0264917344858012e-05, -4.8211933875886747e-05, -2.4105966937943048e-05, -7.2317900813829013e-05, -0.0010245035948625851, -1.2052983468971685e-05, -4.8211933875886734e-05, -4.8211933875886767e-05, -0.00019284773550354639, -0.00019284773550354593, -4.8211933875886767e-05, -4.8211933875886659e-05, -4.8211933875886659e-05, -1.2052983468971665e-05, -0.00055443723957269379, -0.00012052983468971579, -1.2052983468971719e-05, -9.6423867751773684e-05, -9.6423867751772342e-05, -9.6423867751773725e-05, -0.00019284773550354593, -9.642386775177321e-05, -0.00019284773550354639, -9.6423867751772329e-05, -9.6423867751772342e-05, 0.04540358872761565, -9.6423867751773643e-05, -0.0024105966937943207, -9.6423867751773318e-05, -2.4105966937943431e-05, -0.00072317900813829463, -0.00014463580162765819, -6.026491734485789e-05, -0.00072317900813828433, -1.2052983468971644e-05, -9.6423867751773589e-05, -9.6423867751773548e-05, -0.001952583321973386, -9.6423867751773223e-05, -9.6423867751773182e-05, -0.0027601332143944862, -3.61589504069145e-05, -0.002410596693794345, -9.6423867751773481e-05, -9.6423867751773535e-05, -1.2052983468971675e-05, -9.6423867751773508e-05, -9.642386775177363e-05, -1.2052983468971658e-05, -0.00019284773550354623, -0.00019284773550354609, -2.4105966937943479e-05, -4.8211933875886795e-05, -4.8211933875886822e-05, -9.6423867751773697e-05, -9.6423867751773752e-05, -0.0019525833219733912, -9.6423867751773765e-05, -9.6423867751773643e-05, -0.00032543055366223377, -0.0011570864130212659, -9.6423867751773589e-05, -0.00085576182629697845, -0.00014463580162765797, -0.00014463580162765797, -9.6423867751773697e-05, -9.6423867751773887e-05, -0.00012052983468971592, -9.6423867751774023e-05, -0.00012052983468971589, -0.00025311265284840186, -9.6423867751773264e-05, -6.0264917344857917e-05, -0.00027721861978634684, -9.6423867751773264e-05, -0.00014463580162765819, -3.6158950406915116e-05, -6.0264917344857944e-05, -2.4105966937943479e-05, -1.2052983468971712e-05, -1.2052983468971685e-05, -9.6423867751774023e-05, -0.00014463580162765811, -7.2317900813829745e-05, -4.8211933875886632e-05, -9.6423867751773779e-05, -9.6423867751772437e-05, -9.6423867751772342e-05, -0.00019284773550354626, -9.6423867751773074e-05, -4.8211933875886767e-05, -0.00019284773550354631, -9.6423867751773155e-05, -4.8211933875886734e-05, -9.6423867751772342e-05, -1.2052983468971644e-05, -9.6423867751773101e-05, -9.6423867751773101e-05, -0.00019284773550354729, -0.00028927160325531616, -9.6423867751773372e-05, -0.00019284773550354764, -0.00019284773550354718, -9.6423867751773101e-05, -9.6423867751773155e-05, -9.6423867751773264e-05, -9.6423867751773155e-05, -0.00010847685122074291, -0.0004098014379450331, -2.4105966937942994e-05, -9.6423867751773969e-05, -9.6423867751773101e-05, -0.00010847685122074313, -0.00031337757019326326, -9.6423867751773697e-05, -9.6423867751773481e-05, -9.6423867751773969e-05, -4.8211933875886747e-05, -4.8211933875886761e-05, -1.2052983468971712e-05, -1.2052983468971753e-05, -1.2052983468971719e-05, -2.4105966937943397e-05, -0.00020490071897251661, -0.0003615895040691472, -0.00014463580162765824, -7.2317900813829595e-05, -1.2052983468971682e-05, -4.8211933875886747e-05, -0.00019284773550354645, -0.00028927160325531605, -9.6423867751773914e-05, -4.8211933875886734e-05, -0.00019284773550354677, -0.00019284773550354661, -4.8211933875886734e-05, -0.00014463580162765816, -9.6423867751773223e-05, -1.2052983468971739e-05, -2.4105966937943028e-05, -4.8211933875886747e-05, -4.8211933875886767e-05, -0.00010847685122074319, -6.026491734485789e-05, -9.6423867751773697e-05, -0.00019284773550354523, -0.00086781480976595498, -4.8211933875886957e-05, -1.2052983468971665e-05, -0.00072317900813829484, -9.6423867751773332e-05, -0.00057854320651064349, -0.00057854320651063243, -0.00060264917344857714, -0.00057854320651064349, -4.8211933875886957e-05, -4.8211933875886944e-05, -9.6423867751773454e-05, -9.6423867751773318e-05, -4.82119338758867e-05, -4.8211933875886686e-05, -9.642386775177386e-05, -1.2052983468971739e-05, -9.6423867751773914e-05, -1.2052983468971678e-05, -1.2052983468971707e-05, -0.00084370884282800442, -4.8211933875886686e-05, -4.82119338758867e-05, -0.00073523199160726541, -2.4105966937943455e-05, -0.00086781480976595628, -0.0008678148097659565, -9.6423867751773291e-05, -1.2052983468971666e-05, -9.6423867751773399e-05, -0.0008678148097659565, -0.00086781480976595, -9.6423867751773372e-05, -9.6423867751773264e-05, -2.4105966937943302e-05, -2.4105966937943424e-05, -0.00019284773550354609, -9.6423867751773291e-05, -9.6423867751773318e-05, -3.615895040691452e-05, -0.00019284773550354609, -7.7139094201417762e-06, -7.7139094201417762e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -0.00019381197418106454, -0.00019284773550354506, -4.8211933875886425e-06, -9.6423867751772245e-07, -2.8927160325532133e-06, -9.642386775177346e-06, -7.7139094201418985e-05, -1.9284773550354445e-06, -8.8709958331630395e-05, -9.6423867751772245e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201418999e-05, -7.7139094201418985e-05, -7.7139094201417762e-06, -0.00021888217979652136, -1.928477355035444e-06, -0.00019284773550354764, 0.003912880553366937, -7.7139094201417779e-06, -7.7139094201417762e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417779e-06, -7.7139094201417796e-06, -1.928477355035444e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417711e-06, -4.8211933875886425e-06, -2.892716032553215e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -1.4463580162766107e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -8.6781480976593688e-06, -7.7139094201417796e-06, -1.4463580162766065e-05, -1.9284773550354449e-06, -9.6423867751772202e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -1.5427818840283556e-05, -9.6423867751773274e-06, -7.7139094201417779e-06, -1.5427818840283556e-05, -9.6423867751772224e-07, -7.7139094201417796e-06, -1.6392057517801101e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -3.0855637680567098e-05, -2.4105966937943197e-05, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.5427818840283552e-05, -3.8569547100708881e-06, -7.7139094201417796e-06, -9.6423867751773291e-06, -1.0606625452694901e-05, -3.8569547100708881e-06, -1.5427818840283549e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.928477355035444e-06, -7.7139094201417779e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -1.9284773550354445e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772224e-07, -1.5427818840283552e-05, -1.5427818840283552e-05, -9.6423867751772224e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -9.6423867751772245e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -2.3141728260425703e-05, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -3.8569547100708898e-06, -1.7356296195318772e-05, -3.8569547100708898e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.253510280773052e-05, -7.7139094201417779e-06, -1.5427818840283552e-05, -8.0996048911489342e-05, -7.7139094201417796e-06, -8.4853003621559279e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -7.7139094201418538e-05, -1.5427818840283556e-05, -7.810333287893631e-05, -9.6423867751772245e-07, -1.5427818840283556e-05, -1.5427818840283552e-05, -3.8569547100708881e-06, -8.0996048911489342e-05, -7.7139094201418985e-05, -7.7139094201418185e-05, -7.7139094201418714e-05, -9.6423867751772224e-07, -3.8569547100708856e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772202e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417779e-06, -9.6423867751773596e-06, -1.9284773550354672e-05, -1.5427818840283556e-05, -1.5427818840283559e-05, -7.7139094201417779e-06, -2.3141728260425727e-05, -2.8927160325532578e-06, -8.4853003621559889e-05, -1.5427818840283559e-05, -6.9425184781275357e-05, -9.6423867751772224e-07, -9.6423867751772245e-07, -2.410596693794313e-05, -1.5427818840283559e-05, -7.7139094201417796e-06, -6.7496707426241598e-06, -3.8569547100708881e-06, -1.9284773550354445e-06, -6.9425184781275357e-05, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -6.9425184781275357e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751773223e-06, -2.8927160325532154e-06, -7.7139094201417796e-06, -1.4463580162766012e-05, -9.6423867751772245e-07, -7.7139094201417796e-06, -1.928477355035444e-06, -1.928477355035444e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -5.785432065106463e-06, -2.8927160325531434e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -1.5427818840283556e-05, -2.5070205615460973e-05, -2.2177489582907609e-05, -9.6423867751772245e-07, -1.5427818840283556e-05, -7.7139094201417779e-06, -5.7854320651064757e-06, -1.9284773550354445e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -7.7139094201418714e-05, -7.7139094201418185e-05, -0.00015620666575787341, -7.7139094201418321e-05, -7.7139094201418538e-05, -3.8569547100708881e-06, -1.9284773550354445e-06, -7.7139094201417745e-06, -8.6781480976593519e-06, -3.8569547100708881e-06, -1.0606625452694956e-05, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.5427818840283556e-05, -7.7139094201417779e-06, -9.6423867751772245e-07, -0.00015620666575787305, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772224e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.8927160325532158e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -3.8569547100708881e-06, -1.1570864130212868e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.7356296195318812e-05, -9.6423867751772245e-07, -3.8569547100708856e-06, -1.928477355035444e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -4.8211933875886671e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -5.78543206510643e-06, -8.1960287589006667e-05, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -4.4354979165815035e-05, -9.642386775177285e-06, -9.6423867751772224e-07, -7.7139094201417779e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.5427818840283559e-05, -7.7139094201417796e-06, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00029602127399794693, -7.7139094201417779e-06, -0.00019284773550354628, -7.7139094201417796e-06, -1.9284773550354449e-06, -5.7854320651063676e-05, -1.1570864130212865e-05, -4.8211933875886578e-06, -5.785432065106432e-05, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00015620666575787305, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00022081065715155718, -2.8927160325532137e-06, -0.00019284773550354647, -7.7139094201417779e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -1.928477355035444e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -0.00015620666575787341, -7.7139094201417779e-06, -7.7139094201417779e-06, -2.6034444292978427e-05, -9.2566913041702893e-05, -7.7139094201417796e-06, -6.8460946103757314e-05, -1.1570864130212855e-05, -1.1570864130212855e-05, -7.7139094201417762e-06, -7.7139094201417762e-06, -9.6423867751773664e-06, -7.7139094201417762e-06, -9.6423867751773511e-06, -2.0249012227872325e-05, -7.7139094201417796e-06, -4.8211933875886772e-06, -2.2177489582907484e-05, -7.7139094201417796e-06, -1.1570864130212865e-05, -2.8927160325532523e-06, -4.8211933875886569e-06, -1.928477355035444e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -7.7139094201417762e-06, -1.157086413021286e-05, -5.7854320651064732e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -1.5427818840283556e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -2.3141728260425717e-05, -7.7139094201417796e-06, 0.003912880553366937, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -8.6781480976594095e-06, -3.2784115035602405e-05, -1.928477355035444e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -8.6781480976594095e-06, -2.5070205615460248e-05, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.639205751780104e-05, -2.8927160325531869e-05, -1.1570864130212865e-05, -5.785432065106463e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -1.5427818840283559e-05, -2.3141728260425713e-05, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -1.1570864130212863e-05, -7.7139094201417796e-06, -9.6423867751772202e-07, -1.928477355035444e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -8.6781480976593959e-06, -4.8211933875886696e-06, -7.7139094201417779e-06, -1.5427818840283556e-05, -6.9425184781275276e-05, -3.8569547100708881e-06, -9.6423867751772245e-07, -5.7854320651063663e-05, -7.7139094201417796e-06, -4.6283456520852131e-05, -4.628345652085144e-05, -4.8211933875886388e-05, -4.6283456520852131e-05, -3.8569547100708881e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -9.6423867751772202e-07, -7.7139094201417779e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.7496707426240396e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -5.8818559328581462e-05, -1.9284773550354445e-06, -6.9425184781275357e-05, -6.9425184781275357e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -6.9425184781275357e-05, -6.9425184781275249e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354445e-06, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.892716032553215e-06, -1.5427818840283559e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6905987090532163e-05, -9.6423867751772464e-05, -2.410596693794323e-06, -4.8211933875886122e-07, -1.4463580162766047e-06, -4.8211933875886764e-06, -3.8569547100709506e-05, -9.6423867751772245e-07, -4.4354979165815238e-05, -4.8211933875886133e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100709506e-05, -3.8569547100709506e-05, -3.8569547100708898e-06, -0.00010944108989826075, -9.6423867751772224e-07, -9.6423867751773752e-05, -7.7139094201417779e-06, 0.001960297231393539, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708881e-06, -2.410596693794323e-06, -1.4463580162766058e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -7.2317900813830459e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488296946e-06, -3.8569547100708906e-06, -7.2317900813830205e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886654e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -8.1960287589005759e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.205298346897159e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -4.8211933875886671e-06, -5.3033127263474456e-06, -1.9284773550354445e-06, -7.7139094201417762e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708889e-06, -1.1570864130212836e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -8.6781480976595738e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -6.2675514038650891e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.0498024455744671e-05, -3.8569547100708906e-06, -4.2426501810779606e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -3.8569547100709269e-05, -7.7139094201417796e-06, -3.9051666439468236e-05, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354453e-06, -4.0498024455744657e-05, -3.8569547100709506e-05, -3.8569547100709242e-05, -3.8569547100709337e-05, -4.8211933875886122e-07, -1.9284773550354449e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886832e-06, -9.6423867751773426e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -1.1570864130212848e-05, -1.4463580162766268e-06, -4.2426501810779938e-05, -7.7139094201417796e-06, -3.4712592390637746e-05, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.2052983468971467e-05, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.3748353713120299e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390637746e-05, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.4712592390637733e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886629e-06, -1.4463580162766058e-06, -3.8569547100708906e-06, -7.2317900813830002e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -2.8927160325532281e-06, -1.4463580162766238e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730192e-05, -1.1088744791453811e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -2.892716032553234e-06, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100709337e-05, -3.8569547100709242e-05, -7.810333287893673e-05, -3.8569547100709242e-05, -3.8569547100709269e-05, -1.9284773550354445e-06, -9.6423867751772245e-07, -3.8569547100708881e-06, -4.3390740488296861e-06, -1.9284773550354445e-06, -5.3033127263474753e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.810333287893654e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4463580162766058e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651064266e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -8.678148097659423e-06, -4.8211933875886133e-07, -1.9284773550354428e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943335e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325532116e-06, -4.0980143794503334e-05, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -2.2177489582907548e-05, -4.8211933875886459e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897309, -3.8569547100708898e-06, -9.6423867751773101e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.8927160325531814e-05, -5.7854320651064249e-06, -2.4105966937943306e-06, -2.8927160325532143e-05, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.810333287893654e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577896, -1.446358016276605e-06, -9.6423867751773182e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.810333287893673e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489205e-05, -4.6283456520851399e-05, -3.8569547100708906e-06, -3.4230473051878711e-05, -5.7854320651064181e-06, -5.7854320651064181e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -4.8211933875886866e-06, -3.8569547100708889e-06, -4.8211933875886747e-06, -1.0124506113936158e-05, -3.8569547100708906e-06, -2.4105966937943399e-06, -1.108874479145376e-05, -3.8569547100708906e-06, -5.7854320651064249e-06, -1.4463580162766242e-06, -2.4105966937943297e-06, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, 0.0019583687540385025, -2.8927160325531701e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.1570864130212843e-05, -3.8569547100708906e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488298445e-06, -1.6392057517801213e-05, -9.6423867751772224e-07, -3.8569547100708889e-06, -3.8569547100708906e-06, -4.3390740488297149e-06, -1.2535102807730502e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -8.1960287589005268e-06, -1.4463580162765914e-05, -5.7854320651064249e-06, -2.8927160325532281e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -7.7139094201417796e-06, -1.1570864130212841e-05, -3.8569547100708889e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.785432065106424e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.3390740488298293e-06, -2.4105966937943365e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -3.4712592390637692e-05, -1.9284773550354453e-06, -4.8211933875886133e-07, -2.8927160325531814e-05, -3.8569547100708906e-06, -2.3141728260426035e-05, -2.3141728260425686e-05, -2.410596693794318e-05, -2.3141728260426035e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.3748353713120218e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.9409279664290738e-05, -9.6423867751772245e-07, -3.4712592390637733e-05, -3.4712592390637746e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390637746e-05, -3.4712592390637679e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.4463580162766054e-06, -7.7139094201417813e-06, -3.8569547100709093e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100709059e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6905987090532434e-05, -9.6423867751772749e-05, -2.4105966937943272e-06, -4.8211933875886112e-07, -1.4463580162766111e-06, -4.8211933875886849e-06, -3.8569547100709574e-05, -9.6423867751772245e-07, -4.4354979165815089e-05, -4.8211933875886122e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100709574e-05, -3.8569547100709574e-05, -3.8569547100708898e-06, -0.00010944108989826045, -9.6423867751772202e-07, -9.6423867751774023e-05, -7.7139094201417762e-06, -3.8569547100708898e-06, 0.001960297231393539, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708873e-06, -2.4105966937943272e-06, -1.4463580162766119e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886112e-07, -7.2317900813830646e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488296743e-06, -3.8569547100708898e-06, -7.2317900813830392e-06, -9.6423867751772224e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886739e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886112e-07, -3.8569547100708898e-06, -8.1960287589005624e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -1.5427818840283549e-05, -1.2052983468971624e-05, -3.8569547100708898e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -1.928477355035444e-06, -3.8569547100708898e-06, -4.8211933875886756e-06, -5.3033127263474397e-06, -1.928477355035444e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772202e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -3.8569547100708898e-06, -9.6423867751772224e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -1.1570864130212884e-05, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -8.6781480976595332e-06, -1.9284773550354449e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -6.2675514038650654e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.0498024455744671e-05, -3.8569547100708898e-06, -4.2426501810779565e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -3.8569547100709337e-05, -7.7139094201417779e-06, -3.9051666439468291e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417762e-06, -1.9284773550354462e-06, -4.0498024455744657e-05, -3.8569547100709574e-05, -3.856954710070931e-05, -3.8569547100709404e-05, -4.8211933875886112e-07, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708889e-06, -4.8211933875886916e-06, -9.6423867751773596e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -3.8569547100708889e-06, -1.1570864130212899e-05, -1.4463580162766331e-06, -4.2426501810779897e-05, -7.7139094201417779e-06, -3.4712592390637584e-05, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.20529834689715e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.3748353713120215e-06, -1.928477355035444e-06, -9.6423867751772224e-07, -3.4712592390637584e-05, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.471259239063757e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886713e-06, -1.4463580162766124e-06, -3.8569547100708898e-06, -7.2317900813830188e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.89271603255324e-06, -1.4463580162766299e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -1.2535102807730202e-05, -1.1088744791453777e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -3.8569547100708889e-06, -2.8927160325532468e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100709404e-05, -3.856954710070931e-05, -7.8103332878936811e-05, -3.856954710070931e-05, -3.8569547100709337e-05, -1.928477355035444e-06, -9.6423867751772245e-07, -3.8569547100708873e-06, -4.3390740488296658e-06, -1.928477355035444e-06, -5.3033127263474702e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -7.8103332878936649e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.4463580162766119e-06, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -1.928477355035444e-06, -5.7854320651064528e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -8.6781480976593824e-06, -4.8211933875886122e-07, -1.9284773550354428e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.4105966937943378e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -2.8927160325532239e-06, -4.0980143794503334e-05, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -2.217748958290748e-05, -4.8211933875886544e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708881e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -0.00014801063699897377, -3.8569547100708889e-06, -9.6423867751773372e-05, -3.8569547100708898e-06, -9.6423867751772224e-07, -2.8927160325531896e-05, -5.7854320651064495e-06, -2.410596693794334e-06, -2.8927160325532218e-05, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.8103332878936649e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00011040532857577863, -1.4463580162766111e-06, -9.6423867751773454e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.8103332878936811e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.3017222146489201e-05, -4.6283456520851596e-05, -3.8569547100708898e-06, -3.4230473051878562e-05, -5.7854320651064418e-06, -5.7854320651064418e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -4.8211933875886933e-06, -3.8569547100708881e-06, -4.8211933875886832e-06, -1.0124506113936161e-05, -3.8569547100708898e-06, -2.4105966937943441e-06, -1.1088744791453727e-05, -3.8569547100708898e-06, -5.7854320651064495e-06, -1.4463580162766302e-06, -2.410596693794334e-06, -9.6423867751772202e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, 0.001960297231393539, -5.7854320651062885e-06, -2.892716032553182e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -1.1570864130212892e-05, -3.8569547100708898e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488298682e-06, -1.6392057517801206e-05, -9.6423867751772181e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -4.3390740488296946e-06, -1.2535102807730509e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100709093e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -8.1960287589005132e-06, -1.4463580162765951e-05, -5.7854320651064495e-06, -2.89271603255324e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -7.7139094201417779e-06, -1.1570864130212894e-05, -3.8569547100708881e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -5.7854320651064495e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.3390740488298089e-06, -2.4105966937943407e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.4712592390637557e-05, -1.9284773550354462e-06, -4.8211933875886122e-07, -2.8927160325531889e-05, -3.8569547100708898e-06, -2.3141728260426133e-05, -2.3141728260425791e-05, -2.4105966937943248e-05, -2.3141728260426133e-05, -1.9284773550354453e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -4.8211933875886101e-07, -3.8569547100708881e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.3748353713120083e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.9409279664290799e-05, -9.6423867751772224e-07, -3.471259239063757e-05, -3.4712592390637584e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.4712592390637584e-05, -3.4712592390637516e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.4463580162766119e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -1.2113248386316446e-05, -1.2052983468971472e-05, -3.0132458672428762e-07, -6.0264917344857666e-08, -1.8079475203457326e-07, -6.0264917344857894e-07, -4.8211933875886459e-06, -1.2052983468971531e-07, -5.5443723957269539e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886468e-06, -4.8211933875886459e-06, -4.8211933875886122e-07, -1.3680136237282702e-05, -1.2052983468971528e-07, -1.2052983468971633e-05, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, 0.00024545900834560628, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886101e-07, -3.0132458672428762e-07, -1.8079475203457342e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857666e-08, -9.0397376017287354e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.423842561037186e-07, -4.8211933875886133e-07, -9.039737601728709e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971528e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -9.6423867751772266e-07, -6.0264917344857777e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -1.0245035948625792e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.928477355035444e-06, -1.5066229336214378e-06, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943056e-07, -4.8211933875886133e-07, -6.0264917344857799e-07, -6.6291409079343398e-07, -2.4105966937943056e-07, -9.6423867751772202e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.4463580162765861e-06, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.0847685122074395e-06, -2.4105966937943072e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -7.8344392548315551e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -5.0622530569680788e-06, -4.8211933875886144e-07, -5.3033127263474761e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -4.8211933875886188e-06, -9.6423867751772245e-07, -4.8814583049334982e-06, -6.0264917344857679e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -5.0622530569680788e-06, -4.8211933875886459e-06, -4.8211933875886163e-06, -4.8211933875886281e-06, -6.0264917344857653e-08, -2.4105966937943051e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.026491734485764e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886122e-07, -6.0264917344857989e-07, -1.2052983468971568e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -4.8211933875886122e-07, -1.4463580162765876e-06, -1.8079475203457604e-07, -5.3033127263475142e-06, -9.6423867751772266e-07, -4.3390740488297751e-06, -6.0264917344857653e-08, -6.0264917344857679e-08, -1.5066229336214428e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.218544214140057e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -4.3390740488297742e-06, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297734e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -6.0264917344857746e-07, -1.807947520345734e-07, -4.8211933875886133e-07, -9.0397376017286772e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -3.615895040691488e-07, -1.8079475203457565e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.5668878509663068e-06, -1.3860930989317391e-06, -6.0264917344857679e-08, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.615895040691496e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -4.8211933875886281e-06, -4.8211933875886163e-06, -9.7629166098670252e-06, -4.8211933875886163e-06, -4.8211933875886188e-06, -2.4105966937943056e-07, -1.2052983468971531e-07, -4.8211933875886101e-07, -5.4238425610371754e-07, -2.4105966937943056e-07, -6.6291409079343748e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -9.7629166098670049e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -1.8079475203457342e-07, -6.0264917344857653e-08, -1.2052983468971533e-07, -1.2052983468971533e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -2.4105966937943056e-07, -7.2317900813829411e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -1.0847685122074419e-06, -6.0264917344857679e-08, -2.4105966937943051e-07, -1.2052983468971531e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.0132458672428915e-07, -2.4105966937943066e-07, -1.2052983468971531e-07, -3.6158950406914674e-07, -5.1225179743129167e-06, -6.0264917344857679e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857679e-08, 0.0002427470870650877, -6.0264917344857523e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.8501329624871419e-05, -4.8211933875886122e-07, -1.2052983468971546e-05, -4.8211933875886133e-07, -1.2052983468971531e-07, -3.6158950406914476e-06, -7.231790081382939e-07, -3.0132458672428857e-07, -3.6158950406914878e-06, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670049e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.3800666071972454e-05, -1.8079475203457332e-07, -1.2052983468971558e-05, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971531e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.7629166098670252e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.6271527683111544e-06, -5.7854320651063512e-06, -4.8211933875886133e-07, -4.2788091314848889e-06, -7.2317900813829327e-07, -7.2317900813829327e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344858032e-07, -4.8211933875886122e-07, -6.0264917344857936e-07, -1.2655632642420189e-06, -4.8211933875886133e-07, -3.0132458672428979e-07, -1.3860930989317328e-06, -4.8211933875886133e-07, -7.231790081382939e-07, -1.807947520345757e-07, -3.0132458672428852e-07, -1.2052983468971528e-07, -6.0264917344857653e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -7.2317900813829358e-07, -3.6158950406914944e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -1.446358016276587e-06, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610372114e-07, -2.0490071897251715e-06, -1.2052983468971528e-07, -4.8211933875886112e-07, -4.8211933875886144e-07, -5.4238425610372114e-07, -1.5668878509663081e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857653e-08, -6.026491734485764e-08, -6.0264917344857653e-08, -1.2052983468971536e-07, -1.0245035948625735e-06, -1.8079475203457257e-06, -7.231790081382939e-07, -3.615895040691488e-07, -6.0264917344857679e-08, -2.4105966937943066e-07, -9.6423867751772266e-07, -1.446358016276587e-06, -4.8211933875886112e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -7.2317900813829379e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -5.423842561037204e-07, -3.0132458672428931e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -4.3390740488297683e-06, -2.4105966937943061e-07, -6.0264917344857679e-08, -3.6158950406914472e-06, -4.8211933875886133e-07, -2.8927160325532171e-06, -2.8927160325531739e-06, -3.0132458672428751e-06, -2.8927160325532171e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.218544214140073e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -3.6761599580363189e-06, -1.2052983468971531e-07, -4.3390740488297734e-06, -4.3390740488297742e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.3390740488297751e-06, -4.3390740488297666e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.807947520345734e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -1.211324838631652e-05, -1.2052983468971555e-05, -3.0132458672429005e-07, -6.0264917344857666e-08, -1.8079475203457546e-07, -6.026491734485801e-07, -4.8211933875886849e-06, -1.2052983468971533e-07, -5.5443723957269115e-06, -6.0264917344857679e-08, -9.6423867751772245e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886849e-06, -4.8211933875886849e-06, -4.8211933875886122e-07, -1.3680136237282607e-05, -1.2052983468971531e-07, -1.2052983468971712e-05, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, 0.00024545900834560644, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886101e-07, -3.0132458672429005e-07, -1.8079475203457551e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857666e-08, -9.0397376017288032e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610371246e-07, -4.8211933875886144e-07, -9.0397376017287735e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344858264e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -1.0245035948625733e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.9284773550354445e-06, -1.5066229336214484e-06, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -6.0264917344858286e-07, -6.6291409079343113e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.026491734485764e-08, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857666e-08, -4.8211933875886144e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.4463580162766033e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.084768512207427e-06, -2.4105966937943072e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -7.8344392548313995e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -5.0622530569680822e-06, -4.8211933875886133e-07, -5.3033127263474507e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -4.8211933875886544e-06, -9.6423867751772245e-07, -4.8814583049335245e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -5.0622530569680822e-06, -4.8211933875886849e-06, -4.8211933875886501e-06, -4.8211933875886629e-06, -6.0264917344857653e-08, -2.4105966937943051e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -6.0264917344858476e-07, -1.2052983468971589e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -4.8211933875886122e-07, -1.4463580162766043e-06, -1.8079475203457165e-07, -5.3033127263474947e-06, -9.6423867751772266e-07, -4.3390740488297251e-06, -6.0264917344857666e-08, -6.0264917344857679e-08, -1.5066229336214534e-06, -9.6423867751772287e-07, -4.8211933875886133e-07, 0.00024509741884153703, -2.4105966937943061e-07, -1.2052983468971531e-07, -4.3390740488297234e-06, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297234e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344858243e-07, -1.8079475203457551e-07, -4.8211933875886144e-07, -9.039737601728746e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -3.6158950406915309e-07, -1.8079475203457776e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.5668878509663106e-06, -1.3860930989317272e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -3.6158950406914552e-07, -1.2052983468971533e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886629e-06, -4.8211933875886501e-06, -9.762916609867076e-06, -4.8211933875886501e-06, -4.8211933875886544e-06, -2.4105966937943061e-07, -1.2052983468971533e-07, -4.8211933875886101e-07, -5.423842561037114e-07, -2.4105966937943061e-07, -6.6291409079343462e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.7629166098670557e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.8079475203457551e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -2.4105966937943056e-07, -7.2317900813830248e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.0847685122074249e-06, -6.0264917344857666e-08, -2.4105966937943051e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.0132458672429138e-07, -2.4105966937943066e-07, -1.2052983468971531e-07, -3.6158950406915092e-07, -5.1225179743129167e-06, -6.0264917344857666e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, -2.7721861978634426e-06, -6.026491734485801e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -4.8211933875886112e-07, -9.6423867751772266e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.8501329624871622e-05, -4.8211933875886133e-07, -1.2052983468971631e-05, -4.8211933875886144e-07, -1.2052983468971531e-07, -3.6158950406914734e-06, -7.2317900813830227e-07, -3.013245867242909e-07, -3.6158950406915145e-06, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670557e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.3800666071972363e-05, -1.8079475203457541e-07, -1.2052983468971641e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.762916609867076e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.6271527683111767e-06, -5.7854320651064113e-06, -4.8211933875886144e-07, -4.2788091314848635e-06, -7.2317900813828437e-07, -7.2317900813828437e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344858519e-07, -4.8211933875886122e-07, -6.026491734485837e-07, -1.2655632642420193e-06, -4.8211933875886144e-07, -3.0132458672429217e-07, -1.3860930989317209e-06, -4.8211933875886133e-07, -7.2317900813830227e-07, -1.8079475203457782e-07, -3.013245867242909e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -7.2317900813830184e-07, -3.6158950406915373e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943066e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943066e-07, -4.8211933875886112e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.4463580162766037e-06, -4.8211933875886144e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.42384256103715e-07, -2.0490071897251592e-06, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -5.42384256103715e-07, -1.5668878509663119e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -6.0264917344857653e-08, -1.2052983468971533e-07, -1.0245035948625673e-06, -1.8079475203457393e-06, -7.2317900813830227e-07, -3.6158950406915309e-07, -6.0264917344857679e-08, -2.4105966937943066e-07, -9.6423867751772266e-07, -1.4463580162766035e-06, -4.8211933875886122e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -7.2317900813830216e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943072e-07, -5.4238425610371394e-07, -3.0132458672429005e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -4.3390740488297319e-06, -2.4105966937943061e-07, -6.0264917344857679e-08, -3.61589504069147e-06, -4.8211933875886133e-07, -2.892716032553251e-06, -2.8927160325532074e-06, -3.0132458672428959e-06, -2.892716032553251e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.218544214140034e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -3.6761599580363439e-06, -1.2052983468971531e-07, -4.3390740488297234e-06, -4.3390740488297234e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.3390740488297251e-06, -4.3390740488297166e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971536e-07, -1.2052983468971531e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.8079475203457551e-07, -9.6423867751772287e-07, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6905987090531974e-05, -9.6423867751772247e-05, -2.4105966937943196e-06, -4.8211933875886122e-07, -1.4463580162766033e-06, -4.8211933875886391e-06, -3.8569547100709452e-05, -9.6423867751772245e-07, -4.4354979165815347e-05, -4.8211933875886133e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100709452e-05, -3.8569547100709452e-05, -3.8569547100708889e-06, -0.00010944108989826105, -9.6423867751772224e-07, -9.6423867751773535e-05, -7.7139094201417779e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, 0.0019602972313935386, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708881e-06, -2.4105966937943196e-06, -1.4463580162766007e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -7.231790081383029e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297115e-06, -3.8569547100708906e-06, -7.2317900813830053e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886586e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -8.1960287589005912e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.2052983468971561e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -4.8211933875886603e-06, -5.3033127263474507e-06, -1.9284773550354445e-06, -7.7139094201417762e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.1570864130212823e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -8.67814809765944e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -9.6423867751772266e-07, -6.2675514038651314e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.0498024455744657e-05, -3.8569547100708906e-06, 0.0019217276842928342, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -3.8569547100709215e-05, -7.7139094201417796e-06, -3.9051666439468182e-05, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.0498024455744657e-05, -3.8569547100709452e-05, -3.8569547100709188e-05, -3.8569547100709282e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886747e-06, -9.6423867751772647e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -1.1570864130212807e-05, -1.4463580162765749e-06, -4.2426501810779965e-05, -7.7139094201417796e-06, -3.4712592390637895e-05, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.20529834689716e-05, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.3748353713120316e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390637882e-05, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.4712592390637882e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886561e-06, -1.4463580162766007e-06, -3.8569547100708906e-06, -7.2317900813829824e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -2.8927160325532175e-06, -1.4463580162766187e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.2535102807730485e-05, -1.1088744791453842e-05, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325531574e-06, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100709282e-05, -3.8569547100709188e-05, -7.8103332878936608e-05, -3.8569547100709188e-05, -3.8569547100709215e-05, -1.9284773550354445e-06, -9.6423867751772266e-07, -3.8569547100708881e-06, -4.3390740488297014e-06, -1.9284773550354445e-06, -5.3033127263474787e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.8103332878936432e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4463580162766007e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651064063e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -8.6781480976594264e-06, -4.8211933875886133e-07, -1.9284773550354428e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943302e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325532006e-06, -4.0980143794503334e-05, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -2.2177489582907595e-05, -4.8211933875886391e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897257, -3.8569547100708906e-06, -9.6423867751772857e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.8927160325531733e-05, -5.7854320651064046e-06, -2.4105966937943272e-06, -2.8927160325532062e-05, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936432e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577912, -1.4463580162765999e-06, -9.6423867751772939e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936608e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.301722214648941e-05, -4.6283456520851182e-05, -3.8569547100708906e-06, -3.4230473051879009e-05, -5.7854320651063029e-06, -5.7854320651063029e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886798e-06, -3.8569547100708898e-06, -4.8211933875886679e-06, -1.0124506113936154e-05, -3.8569547100708906e-06, -2.4105966937943365e-06, -1.1088744791453791e-05, -3.8569547100708906e-06, -5.7854320651064046e-06, -1.4463580162766191e-06, -2.4105966937943263e-06, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708889e-06, -5.7854320651064012e-06, -2.892716032553223e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.1570864130212802e-05, -3.8569547100708906e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297319e-06, -1.6392057517801281e-05, -9.6423867751772245e-07, -3.8569547100708889e-06, -3.8569547100708906e-06, -4.3390740488297319e-06, -1.2535102807730492e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -8.196028758900542e-06, -1.4463580162765887e-05, -5.7854320651064046e-06, -2.8927160325532175e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -7.7139094201417796e-06, -1.1570864130212801e-05, -3.8569547100708889e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651064037e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.3390740488297234e-06, -2.4105966937943196e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.4712592390637956e-05, -1.9284773550354449e-06, -4.8211933875886133e-07, -2.8927160325531706e-05, -3.8569547100708906e-06, -2.3141728260425954e-05, -2.3141728260425605e-05, -2.4105966937943119e-05, -2.3141728260425954e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.3748353713120367e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.9409279664290697e-05, -9.6423867751772245e-07, -3.4712592390637882e-05, -3.4712592390637882e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390637895e-05, -3.4712592390637828e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.4463580162766007e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6905987090532082e-05, -9.6423867751772356e-05, -2.4105966937943179e-06, -4.8211933875886133e-07, -1.446358016276602e-06, -4.8211933875886357e-06, -3.8569547100709438e-05, -9.6423867751772266e-07, -4.4354979165815319e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100709438e-05, -3.8569547100709438e-05, -3.8569547100708898e-06, -0.00010944108989826097, -9.6423867751772245e-07, -9.6423867751773643e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, 0.0019602972313935386, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.4105966937943179e-06, -1.446358016276602e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813830358e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297047e-06, -3.8569547100708915e-06, -7.2317900813830104e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886561e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -8.1960287589005945e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.2052983468971575e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.8211933875886578e-06, -5.3033127263474507e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212813e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594264e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -9.6423867751772287e-07, 0.0019578866346997444, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.0498024455744644e-05, -3.8569547100708906e-06, -4.2426501810779633e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709194e-05, -7.7139094201417796e-06, -3.9051666439468169e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.049802445574463e-05, -3.8569547100709438e-05, -3.856954710070916e-05, -3.8569547100709262e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -4.821193387588673e-06, -9.6423867751772613e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -1.1570864130212818e-05, -1.4463580162765774e-06, -4.2426501810779978e-05, -7.7139094201417813e-06, -3.4712592390637841e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971617e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120333e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390637841e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390637828e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886527e-06, -1.446358016276602e-06, -3.8569547100708915e-06, -7.2317900813829892e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -2.8927160325532192e-06, -1.44635801627662e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.2535102807730481e-05, -1.1088744791453828e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325531599e-06, -9.6423867751772266e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709262e-05, -3.856954710070916e-05, -7.8103332878936554e-05, -3.856954710070916e-05, -3.8569547100709194e-05, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.8569547100708881e-06, -4.3390740488296963e-06, -1.9284773550354449e-06, -5.3033127263474803e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936391e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.446358016276602e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651064113e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976594163e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943285e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325532031e-06, -4.0980143794503334e-05, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.2177489582907568e-05, -4.8211933875886357e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897276, -3.8569547100708906e-06, -9.6423867751772993e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -2.892716032553176e-05, -5.7854320651064097e-06, -2.4105966937943255e-06, -2.8927160325532089e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936391e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577901, -1.4463580162766011e-06, -9.6423867751773074e-05, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936554e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489413e-05, -4.6283456520851223e-05, -3.8569547100708915e-06, -3.4230473051878955e-05, -5.7854320651062868e-06, -5.7854320651062868e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886764e-06, -3.8569547100708898e-06, -4.8211933875886645e-06, -1.0124506113936154e-05, -3.8569547100708915e-06, -2.4105966937943357e-06, -1.1088744791453777e-05, -3.8569547100708906e-06, -5.7854320651064097e-06, -1.4463580162766204e-06, -2.4105966937943246e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.785432065106408e-06, -2.8927160325532247e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.1570864130212816e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297251e-06, -1.6392057517801287e-05, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488297251e-06, -1.253510280773049e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -8.1960287589005454e-06, -1.4463580162765897e-05, -5.7854320651064097e-06, -2.8927160325532192e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417813e-06, -1.1570864130212811e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651064088e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.3390740488297183e-06, -2.4105966937943179e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.4712592390637916e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531733e-05, -3.8569547100708906e-06, -2.3141728260425974e-05, -2.3141728260425625e-05, -2.410596693794315e-05, -2.3141728260425974e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.3748353713120313e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.9409279664290738e-05, -9.6423867751772245e-07, -3.4712592390637828e-05, -3.4712592390637841e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390637841e-05, -3.4712592390637773e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.446358016276602e-06, -7.713909420141783e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -2.4226496772633109e-05, -2.4105966937943187e-05, -6.0264917344858201e-07, -1.2052983468971528e-07, -3.6158950406915288e-07, -1.2052983468971716e-06, -9.6423867751773833e-06, -2.4105966937943056e-07, -1.1088744791453789e-05, -1.2052983468971531e-07, -1.928477355035444e-06, -1.9284773550354436e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751773494e-06, -9.6423867751773664e-06, -9.6423867751772202e-07, -2.736027247456512e-05, -2.4105966937943231e-07, -2.4105966937943506e-05, -1.928477355035444e-06, -9.6423867751772224e-07, -9.6423867751772202e-07, -1.2052983468971528e-07, -1.2052983468971531e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, 0.00049079748685652272, -2.410596693794322e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772181e-07, -6.0264917344858201e-07, -3.6158950406915309e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971528e-07, -1.8079475203457492e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.0847685122074177e-06, -9.6423867751772245e-07, -1.8079475203457606e-06, -2.4105966937943051e-07, -1.2052983468971552e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971525e-07, -1.2052983468971528e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -2.4105966937943051e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.2052983468971691e-06, -9.6423867751772224e-07, -1.9284773550354445e-06, -1.2052983468971525e-07, -9.6423867751772224e-07, -2.0490071897251393e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -3.8569547100708957e-06, -3.013245867242906e-06, -9.6423867751772224e-07, -1.928477355035444e-06, -1.928477355035444e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -1.2052983468971695e-06, -1.3258281815868595e-06, -4.8211933875886101e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -2.4105966937943051e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -1.2052983468971523e-07, -9.6423867751772224e-07, -2.4105966937943051e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971528e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.2052983468971528e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.2052983468971528e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772245e-07, -9.6423867751772202e-07, -2.892716032553223e-06, -9.6423867751772202e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -4.8211933875886122e-07, -2.1695370244148397e-06, -4.8211933875886122e-07, -1.2052983468971525e-07, -2.4105966937943061e-07, -1.566887850966317e-06, -9.6423867751772224e-07, -1.9284773550354445e-06, -1.0124506113936147e-05, -9.6423867751772224e-07, -1.0606625452694884e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.928477355035444e-06, -9.6423867751773393e-06, -1.928477355035444e-06, -9.762916609867076e-06, -1.2052983468971528e-07, -1.928477355035444e-06, -1.928477355035444e-06, -4.8211933875886101e-07, -1.0124506113936141e-05, -9.6423867751773833e-06, -9.6423867751773308e-06, -9.6423867751773562e-06, -1.2052983468971525e-07, -4.8211933875886101e-07, -1.2052983468971531e-07, -1.2052983468971525e-07, -1.205298346897161e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772202e-07, -1.2052983468971733e-06, -2.4105966937943407e-06, -1.928477355035444e-06, -1.9284773550354445e-06, -9.6423867751772202e-07, -2.8927160325532256e-06, -3.6158950406915839e-07, -1.0606625452694971e-05, -1.9284773550354445e-06, -8.6781480976593926e-06, -1.2052983468971528e-07, -1.2052983468971531e-07, -3.0132458672429162e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -8.4370884282800516e-07, -4.8211933875886122e-07, -2.4105966937943051e-07, -8.6781480976593926e-06, -2.4105966937943051e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -8.6781480976593892e-06, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.2052983468971691e-06, 0.0004906769570218332, -9.6423867751772245e-07, -1.8079475203457496e-06, -1.2052983468971531e-07, -9.6423867751772245e-07, -2.4105966937943231e-07, -2.410596693794322e-07, -2.4105966937943051e-07, -1.2052983468971531e-07, -7.2317900813831021e-07, -3.6158950406915759e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.9284773550354445e-06, -3.1337757019326254e-06, -2.7721861978634291e-06, -1.2052983468971531e-07, -1.9284773550354445e-06, -9.6423867751772224e-07, -7.2317900813831169e-07, -2.4105966937943056e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -9.6423867751773562e-06, -9.6423867751773308e-06, -1.952583321973421e-05, -9.6423867751773308e-06, -9.6423867751773393e-06, -4.8211933875886101e-07, -2.4105966937943056e-07, -9.6423867751772202e-07, -1.0847685122074156e-06, -4.8211933875886101e-07, -1.3258281815868667e-06, -1.2052983468971528e-07, -1.2052983468971531e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.928477355035444e-06, -9.6423867751772224e-07, -1.2052983468971531e-07, -1.9525833219734169e-05, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.2052983468971528e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -3.6158950406915309e-07, -1.2052983468971525e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -1.2052983468971525e-07, -4.8211933875886091e-07, -1.4463580162766136e-06, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -2.1695370244148448e-06, -1.2052983468971528e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -6.0264917344858466e-07, -4.8211933875886112e-07, -2.4105966937943051e-07, -7.2317900813830597e-07, -1.0245035948625833e-05, -1.2052983468971531e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -5.544372395726865e-06, -1.205298346897164e-06, -1.2052983468971525e-07, -9.6423867751772202e-07, -9.6423867751772181e-07, -9.6423867751772202e-07, -1.9284773550354445e-06, -9.6423867751772181e-07, -1.9284773550354445e-06, -9.6423867751772181e-07, -9.6423867751772181e-07, -3.7002659249743455e-05, -9.6423867751772224e-07, -2.4105966937943336e-05, -9.6423867751772245e-07, -2.4105966937943051e-07, -7.2317900813829739e-06, -1.4463580162766132e-06, -6.0264917344858392e-07, -7.2317900813830561e-06, -1.2052983468971531e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.9525833219734169e-05, -9.6423867751772224e-07, -9.6423867751772224e-07, -2.760133214394461e-05, -3.6158950406914113e-07, -2.4105966937943357e-05, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.2052983468971528e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.4105966937943051e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.952583321973421e-05, -9.6423867751772202e-07, -9.6423867751772202e-07, -3.2543055366223012e-06, -1.1570864130212906e-05, -9.6423867751772245e-07, -8.5576182629696371e-06, -1.4463580162766115e-06, -1.4463580162766115e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.2052983468971742e-06, -9.6423867751772202e-07, -1.2052983468971712e-06, -2.5311265284840419e-06, -9.6423867751772245e-07, -6.0264917344858624e-07, -2.7721861978634316e-06, -9.6423867751772224e-07, -1.4463580162766132e-06, -3.6158950406915775e-07, -6.026491734485837e-07, -2.4105966937943114e-07, -1.2052983468971525e-07, -1.2052983468971531e-07, -9.6423867751772202e-07, -1.4463580162766124e-06, -7.2317900813831148e-07, -4.8211933875886122e-07, -9.6423867751772224e-07, -9.6423867751772202e-07, -9.6423867751772181e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -4.8211933875886112e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -4.8211933875886112e-07, -9.6423867751772181e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -2.8927160325531549e-06, -9.6423867751772245e-07, -1.928477355035444e-06, -1.9284773550354436e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.0847685122074228e-06, -4.0980143794503032e-06, -2.4105966937943045e-07, -9.6423867751772202e-07, -9.6423867751772245e-07, -1.0847685122074228e-06, -3.133775701932628e-06, -9.6423867751772202e-07, -9.6423867751772245e-07, -9.6423867751772202e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.2052983468971528e-07, -1.2052983468971605e-07, -1.2052983468971525e-07, -2.4105966937943061e-07, -2.0490071897252067e-06, -3.6158950406914954e-06, -1.4463580162766132e-06, -7.2317900813831021e-07, -1.2052983468971531e-07, -4.8211933875886112e-07, -1.9284773550354445e-06, -2.8927160325532243e-06, -9.6423867751772202e-07, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886112e-07, -1.4463580162766128e-06, -9.6423867751772224e-07, -1.2052983468971525e-07, -2.4105966937943051e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -1.0847685122074211e-06, -6.026491734485854e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -8.6781480976593824e-06, -4.8211933875886101e-07, -1.2052983468971531e-07, -7.2317900813829739e-06, -9.6423867751772224e-07, -5.785432065106535e-06, -5.7854320651064495e-06, -6.0264917344858112e-06, -5.785432065106535e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772202e-07, -1.2052983468971525e-07, -9.6423867751772202e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -8.4370884282800207e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.352319916072698e-06, -2.4105966937943051e-07, -8.6781480976593892e-06, -8.6781480976593926e-06, -9.6423867751772224e-07, -1.2052983468971528e-07, -9.6423867751772224e-07, -8.6781480976593926e-06, -8.6781480976593756e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -2.4105966937943051e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.6158950406915309e-07, -1.9284773550354449e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -2.4226496772633109e-05, -2.4105966937943187e-05, -6.0264917344858201e-07, -1.2052983468971528e-07, -3.6158950406915288e-07, -1.2052983468971716e-06, -9.6423867751773867e-06, -2.4105966937943056e-07, -1.1088744791453789e-05, -1.2052983468971531e-07, -1.928477355035444e-06, -1.9284773550354436e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751773528e-06, -9.6423867751773697e-06, -9.6423867751772202e-07, -2.736027247456512e-05, -2.410596693794322e-07, -2.4105966937943506e-05, -1.928477355035444e-06, -9.6423867751772224e-07, -9.6423867751772202e-07, -1.2052983468971528e-07, -1.2052983468971531e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -2.410596693794322e-07, 0.00049079748685652272, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772181e-07, -6.0264917344858201e-07, -3.6158950406915309e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971528e-07, -1.8079475203457486e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.0847685122074181e-06, -9.6423867751772245e-07, -1.8079475203457606e-06, -2.4105966937943051e-07, -1.2052983468971552e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971525e-07, -1.2052983468971528e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -2.4105966937943051e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.2052983468971691e-06, -9.6423867751772224e-07, -1.9284773550354445e-06, -1.2052983468971525e-07, -9.6423867751772224e-07, -2.0490071897251393e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -3.8569547100708957e-06, -3.013245867242906e-06, -9.6423867751772224e-07, -1.928477355035444e-06, -1.928477355035444e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -1.2052983468971695e-06, -1.3258281815868595e-06, -4.8211933875886101e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -2.4105966937943051e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -1.2052983468971523e-07, -9.6423867751772224e-07, -2.4105966937943051e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971528e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.2052983468971528e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.2052983468971528e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772245e-07, -9.6423867751772202e-07, -2.892716032553223e-06, -9.6423867751772202e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -4.8211933875886122e-07, -2.1695370244148405e-06, -4.8211933875886122e-07, -1.2052983468971525e-07, -2.4105966937943061e-07, -1.5668878509663165e-06, -9.6423867751772224e-07, -1.9284773550354445e-06, -1.0124506113936147e-05, -9.6423867751772224e-07, -1.0606625452694879e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.928477355035444e-06, -9.6423867751773409e-06, -1.928477355035444e-06, -9.762916609867076e-06, -1.2052983468971528e-07, -1.928477355035444e-06, -1.928477355035444e-06, -4.8211933875886101e-07, -1.0124506113936144e-05, -9.6423867751773867e-06, -9.6423867751773342e-06, -9.6423867751773579e-06, -1.2052983468971525e-07, -4.8211933875886101e-07, -1.2052983468971531e-07, -1.2052983468971525e-07, -1.205298346897161e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772202e-07, -1.2052983468971738e-06, -2.4105966937943416e-06, -1.928477355035444e-06, -1.9284773550354445e-06, -9.6423867751772202e-07, -2.8927160325532256e-06, -3.6158950406915839e-07, -1.0606625452694969e-05, -1.9284773550354445e-06, -8.6781480976593959e-06, -1.2052983468971528e-07, -1.2052983468971531e-07, -3.0132458672429162e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -8.4370884282800516e-07, -4.8211933875886122e-07, -2.4105966937943051e-07, -8.6781480976593926e-06, -2.4105966937943051e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -8.6781480976593926e-06, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, 0.00048983324817900519, -3.6158950406914017e-07, -9.6423867751772245e-07, -1.8079475203457496e-06, -1.2052983468971531e-07, -9.6423867751772245e-07, -2.410596693794322e-07, -2.410596693794322e-07, -2.4105966937943051e-07, -1.2052983468971531e-07, -7.2317900813831021e-07, -3.6158950406915759e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.9284773550354445e-06, -3.1337757019326254e-06, -2.7721861978634299e-06, -1.2052983468971531e-07, -1.9284773550354445e-06, -9.6423867751772224e-07, -7.2317900813831169e-07, -2.4105966937943056e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -9.6423867751773579e-06, -9.6423867751773342e-06, -1.952583321973421e-05, -9.6423867751773342e-06, -9.6423867751773409e-06, -4.8211933875886101e-07, -2.4105966937943056e-07, -9.6423867751772202e-07, -1.084768512207416e-06, -4.8211933875886101e-07, -1.3258281815868667e-06, -1.2052983468971528e-07, -1.2052983468971531e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.928477355035444e-06, -9.6423867751772224e-07, -1.2052983468971531e-07, -1.9525833219734169e-05, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.2052983468971528e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -3.6158950406915309e-07, -1.2052983468971525e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -1.2052983468971525e-07, -4.8211933875886091e-07, -1.4463580162766136e-06, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -2.1695370244148456e-06, -1.2052983468971528e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -6.0264917344858476e-07, -4.8211933875886112e-07, -2.4105966937943051e-07, -7.2317900813830597e-07, -1.0245035948625833e-05, -1.2052983468971531e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -5.544372395726865e-06, -1.2052983468971642e-06, -1.2052983468971525e-07, -9.6423867751772202e-07, -9.6423867751772181e-07, -9.6423867751772202e-07, -1.9284773550354445e-06, -9.6423867751772181e-07, -1.9284773550354445e-06, -9.6423867751772181e-07, -9.6423867751772181e-07, -3.7002659249743455e-05, -9.6423867751772224e-07, -2.4105966937943336e-05, -9.6423867751772245e-07, -2.4105966937943051e-07, -7.2317900813829739e-06, -1.4463580162766132e-06, -6.0264917344858392e-07, -7.2317900813830544e-06, -1.2052983468971531e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.9525833219734169e-05, -9.6423867751772224e-07, -9.6423867751772224e-07, -2.760133214394461e-05, -3.6158950406914113e-07, -2.4105966937943357e-05, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.2052983468971528e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.4105966937943051e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.952583321973421e-05, -9.6423867751772202e-07, -9.6423867751772202e-07, -3.2543055366223004e-06, -1.1570864130212902e-05, -9.6423867751772245e-07, -8.5576182629696388e-06, -1.4463580162766115e-06, -1.4463580162766115e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.2052983468971744e-06, -9.6423867751772202e-07, -1.2052983468971714e-06, -2.5311265284840419e-06, -9.6423867751772245e-07, -6.0264917344858646e-07, -2.7721861978634316e-06, -9.6423867751772224e-07, -1.4463580162766132e-06, -3.6158950406915775e-07, -6.0264917344858392e-07, -2.4105966937943114e-07, -1.2052983468971525e-07, -1.2052983468971531e-07, -9.6423867751772202e-07, -1.4463580162766124e-06, -7.2317900813831148e-07, -4.8211933875886122e-07, -9.6423867751772224e-07, -9.6423867751772202e-07, -9.6423867751772181e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -4.8211933875886112e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -4.8211933875886112e-07, -9.6423867751772181e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -2.8927160325531549e-06, -9.6423867751772245e-07, -1.928477355035444e-06, -1.9284773550354436e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.0847685122074232e-06, -4.0980143794503032e-06, -2.4105966937943045e-07, -9.6423867751772202e-07, -9.6423867751772245e-07, -1.0847685122074232e-06, -3.1337757019326275e-06, -9.6423867751772202e-07, -9.6423867751772245e-07, -9.6423867751772202e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.2052983468971528e-07, -1.2052983468971605e-07, -1.2052983468971525e-07, -2.4105966937943061e-07, -2.0490071897252067e-06, -3.6158950406914954e-06, -1.4463580162766132e-06, -7.2317900813831021e-07, -1.2052983468971531e-07, -4.8211933875886112e-07, -1.9284773550354445e-06, -2.8927160325532243e-06, -9.6423867751772202e-07, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886112e-07, -1.4463580162766128e-06, -9.6423867751772224e-07, -1.2052983468971525e-07, -2.4105966937943051e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -1.0847685122074215e-06, -6.0264917344858561e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -8.6781480976593824e-06, -4.8211933875886101e-07, -1.2052983468971531e-07, -7.2317900813829723e-06, -9.6423867751772224e-07, -5.785432065106535e-06, -5.7854320651064495e-06, -6.0264917344858112e-06, -5.785432065106535e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772202e-07, -1.2052983468971525e-07, -9.6423867751772202e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -8.437088428280024e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.3523199160726963e-06, -2.4105966937943051e-07, -8.6781480976593926e-06, -8.6781480976593926e-06, -9.6423867751772224e-07, -1.2052983468971528e-07, -9.6423867751772224e-07, -8.6781480976593959e-06, -8.678148097659379e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -2.4105966937943051e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.6158950406915309e-07, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -1.2113248386316449e-05, -1.2052983468971473e-05, -3.0132458672428793e-07, -6.0264917344857666e-08, -1.8079475203457334e-07, -6.0264917344857968e-07, -4.821193387588651e-06, -1.2052983468971536e-07, -5.544372395726953e-06, -6.0264917344857679e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.821193387588651e-06, -4.821193387588651e-06, -4.8211933875886122e-07, -1.3680136237282697e-05, -1.2052983468971531e-07, -1.2052983468971634e-05, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, 0.00024545900834560644, -6.0264917344857679e-08, -4.8211933875886101e-07, -3.0132458672428793e-07, -1.8079475203457345e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857666e-08, -9.0397376017287407e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.423842561037187e-07, -4.8211933875886144e-07, -9.039737601728709e-07, -1.2052983468971533e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344857841e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344857666e-08, -4.8211933875886144e-07, -1.0245035948625798e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6423867751772266e-07, -1.9284773550354445e-06, -1.506622933621438e-06, -4.8211933875886144e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -6.0264917344857862e-07, -6.6291409079343346e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -1.2052983468971533e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.4463580162765867e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.0847685122074395e-06, -2.4105966937943072e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -7.8344392548315572e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -5.0622530569680754e-06, -4.8211933875886144e-07, -5.3033127263474727e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -4.8211933875886205e-06, -9.6423867751772266e-07, -4.881458304933499e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -5.0622530569680754e-06, -4.821193387588651e-06, -4.8211933875886163e-06, -4.821193387588629e-06, -6.0264917344857666e-08, -2.4105966937943061e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -6.0264917344858053e-07, -1.2052983468971581e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -4.8211933875886133e-07, -1.446358016276588e-06, -1.807947520345761e-07, -5.3033127263475142e-06, -9.6423867751772266e-07, -4.3390740488297751e-06, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.5066229336214431e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.2185442141400586e-07, -2.4105966937943061e-07, -1.2052983468971533e-07, -4.3390740488297751e-06, -1.2052983468971533e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297734e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.026491734485782e-07, -1.8079475203457345e-07, -4.8211933875886144e-07, -9.0397376017286836e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -3.6158950406914849e-07, -1.807947520345757e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -1.5668878509663055e-06, -1.3860930989317385e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -3.6158950406914965e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.821193387588629e-06, -4.8211933875886163e-06, -9.7629166098670252e-06, -4.8211933875886163e-06, -4.8211933875886205e-06, -2.4105966937943061e-07, -1.2052983468971536e-07, -4.8211933875886112e-07, -5.4238425610371849e-07, -2.4105966937943061e-07, -6.6291409079343716e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.7629166098670049e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.8079475203457345e-07, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943061e-07, -7.2317900813829422e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.0847685122074421e-06, -6.0264917344857679e-08, -2.4105966937943051e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.0132458672428926e-07, -2.4105966937943072e-07, -1.2052983468971533e-07, -3.6158950406914679e-07, -5.1225179743129167e-06, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, 0.00024274708706508783, -6.0264917344857587e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.8501329624871419e-05, -4.8211933875886133e-07, -1.2052983468971551e-05, -4.8211933875886144e-07, -1.2052983468971533e-07, -3.6158950406914522e-06, -7.2317900813829422e-07, -3.0132458672428878e-07, -3.6158950406914912e-06, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670049e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.3800666071972457e-05, -1.8079475203457334e-07, -1.2052983468971558e-05, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670252e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.6271527683111544e-06, -5.7854320651063537e-06, -4.8211933875886144e-07, -4.278809131484888e-06, -7.2317900813829358e-07, -7.2317900813829358e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344858095e-07, -4.8211933875886122e-07, -6.0264917344857947e-07, -1.2655632642420176e-06, -4.8211933875886144e-07, -3.0132458672429005e-07, -1.3860930989317319e-06, -4.8211933875886144e-07, -7.2317900813829422e-07, -1.8079475203457578e-07, -3.0132458672428878e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -7.2317900813829379e-07, -3.6158950406914954e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.4463580162765876e-06, -4.8211933875886144e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610372125e-07, -2.0490071897251728e-06, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -5.4238425610372125e-07, -1.566887850966307e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.0245035948625737e-06, -1.807947520345727e-06, -7.2317900813829422e-07, -3.6158950406914849e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -9.6423867751772266e-07, -1.4463580162765874e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -7.2317900813829401e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -5.423842561037204e-07, -3.0132458672428963e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.3390740488297683e-06, -2.4105966937943061e-07, -6.0264917344857679e-08, -3.6158950406914514e-06, -4.8211933875886144e-07, -2.892716032553218e-06, -2.8927160325531752e-06, -3.013245867242876e-06, -2.892716032553218e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.2185442141400696e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -3.6761599580363253e-06, -1.2052983468971533e-07, -4.3390740488297734e-06, -4.3390740488297751e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.3390740488297751e-06, -4.3390740488297666e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.8079475203457345e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -1.2113248386316487e-05, -1.2052983468971524e-05, -3.013245867242892e-07, -6.0264917344857666e-08, -1.8079475203457456e-07, -6.0264917344857947e-07, -4.8211933875886696e-06, -1.2052983468971536e-07, -5.5443723957269251e-06, -6.0264917344857679e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886696e-06, -4.8211933875886696e-06, -4.8211933875886122e-07, -1.3680136237282644e-05, -1.2052983468971531e-07, -1.2052983468971685e-05, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, 0.00024545900834560644, -4.8211933875886101e-07, -3.013245867242892e-07, -1.8079475203457467e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857666e-08, -9.0397376017287778e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.42384256103715e-07, -4.8211933875886144e-07, -9.0397376017287481e-07, -1.2052983468971533e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344858084e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344857666e-08, -4.8211933875886144e-07, -1.024503594862576e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6423867751772266e-07, -1.9284773550354445e-06, -1.5066229336214443e-06, -4.8211933875886144e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -6.0264917344858106e-07, -6.6291409079343197e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -1.2052983468971533e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.4463580162765965e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.0847685122074321e-06, -2.4105966937943072e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -7.8344392548314513e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -5.0622530569680805e-06, -4.8211933875886144e-07, -5.3033127263474609e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -4.82119338758864e-06, -9.6423867751772266e-07, -4.8814583049335143e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -5.0622530569680788e-06, -4.8211933875886696e-06, -4.8211933875886366e-06, -4.8211933875886485e-06, -6.0264917344857666e-08, -2.4105966937943061e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -6.0264917344858307e-07, -1.2052983468971581e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -4.8211933875886133e-07, -1.4463580162765978e-06, -1.8079475203457345e-07, -5.3033127263475032e-06, -9.6423867751772266e-07, -4.3390740488297463e-06, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.5066229336214492e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.218544214140047e-07, -2.4105966937943061e-07, -1.2052983468971533e-07, -4.3390740488297463e-06, -1.2052983468971533e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297446e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344858053e-07, -1.8079475203457472e-07, -4.8211933875886144e-07, -9.0397376017287196e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -3.6158950406915134e-07, -1.8079475203457694e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -1.5668878509663093e-06, -1.3860930989317323e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -3.6158950406914436e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886485e-06, -4.8211933875886366e-06, -9.7629166098670557e-06, -4.8211933875886366e-06, -4.82119338758864e-06, -2.4105966937943061e-07, -1.2052983468971536e-07, -4.8211933875886112e-07, -5.4238425610371394e-07, -2.4105966937943061e-07, -6.6291409079343589e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.7629166098670354e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.8079475203457467e-07, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943061e-07, -7.231790081382993e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.0847685122074321e-06, -6.0264917344857679e-08, -2.4105966937943051e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.0132458672429053e-07, -2.4105966937943072e-07, -1.2052983468971533e-07, -3.6158950406914933e-07, -5.1225179743129167e-06, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, -2.772186197863452e-06, 0.00024491662408950254, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.8501329624871534e-05, -4.8211933875886133e-07, -1.20529834689716e-05, -4.8211933875886144e-07, -1.2052983468971533e-07, -3.615895040691465e-06, -7.2317900813829888e-07, -3.0132458672429005e-07, -3.615895040691506e-06, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670354e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.3800666071972396e-05, -1.8079475203457456e-07, -1.2052983468971611e-05, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670557e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.6271527683111758e-06, -5.7854320651063859e-06, -4.8211933875886144e-07, -4.2788091314848829e-06, -7.2317900813828808e-07, -7.2317900813828808e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344858328e-07, -4.8211933875886122e-07, -6.0264917344858201e-07, -1.2655632642420189e-06, -4.8211933875886144e-07, -3.0132458672429132e-07, -1.386093098931726e-06, -4.8211933875886144e-07, -7.2317900813829888e-07, -1.8079475203457697e-07, -3.0132458672429005e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -7.2317900813829867e-07, -3.6158950406915198e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.4463580162765969e-06, -4.8211933875886144e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610371765e-07, -2.0490071897251643e-06, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -5.4238425610371765e-07, -1.5668878509663104e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.0245035948625699e-06, -1.8079475203457342e-06, -7.2317900813829888e-07, -3.6158950406915134e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -9.6423867751772266e-07, -1.4463580162765971e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -7.2317900813829888e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -5.4238425610371669e-07, -3.0132458672428952e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.3390740488297547e-06, -2.4105966937943061e-07, -6.0264917344857679e-08, -3.6158950406914607e-06, -4.8211933875886144e-07, -2.8927160325532379e-06, -2.8927160325531947e-06, -3.0132458672428882e-06, -2.8927160325532379e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.2185442141400493e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -3.6761599580363371e-06, -1.2052983468971533e-07, -4.3390740488297446e-06, -4.3390740488297463e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.3390740488297463e-06, -4.3390740488297369e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.8079475203457467e-07, -9.6423867751772287e-07, -3.8569547100708873e-06, -3.8569547100708873e-06, -3.8569547100708881e-06, -3.8569547100708873e-06, -1.928477355035444e-06, -1.928477355035444e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -4.8211933875886091e-07, -4.8211933875886101e-07, -9.6905987090531648e-05, -9.6423867751772058e-05, -2.4105966937943018e-06, -4.8211933875886091e-07, -1.4463580162765848e-06, -4.8211933875886391e-06, -3.8569547100709201e-05, -9.6423867751772202e-07, -4.4354979165815706e-05, -4.8211933875886112e-07, -7.7139094201417711e-06, -7.7139094201417711e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -3.8569547100709201e-05, -3.8569547100709201e-05, -3.8569547100708873e-06, -0.00010944108989826179, -9.6423867751772181e-07, -9.6423867751773182e-05, -7.7139094201417711e-06, -3.8569547100708881e-06, -3.8569547100708873e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -9.6423867751772181e-07, -9.6423867751772181e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, 0.0019602972313935395, -2.4105966937943077e-06, -1.4463580162765855e-06, -1.928477355035444e-06, -1.928477355035444e-06, -4.8211933875886091e-07, -7.2317900813829875e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -4.3390740488297395e-06, -3.8569547100708889e-06, -7.2317900813829672e-06, -9.6423867751772181e-07, -4.8211933875886091e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886112e-07, -4.8211933875886101e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -9.6423867751772202e-07, -4.8211933875886101e-07, -3.8569547100708889e-06, -7.7139094201417762e-06, -4.8211933875886256e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -4.8211933875886112e-07, -3.8569547100708881e-06, -8.1960287589006318e-06, -3.8569547100708873e-06, -3.8569547100708881e-06, -7.7139094201417762e-06, -1.5427818840283542e-05, -1.2052983468971528e-05, -3.8569547100708881e-06, -7.7139094201417762e-06, -7.7139094201417745e-06, -1.928477355035444e-06, -3.8569547100708881e-06, -4.8211933875886281e-06, -5.3033127263474753e-06, -1.928477355035444e-06, -7.7139094201417745e-06, -3.8569547100708881e-06, -3.8569547100708873e-06, -3.8569547100708873e-06, -9.6423867751772202e-07, -3.8569547100708889e-06, -3.8569547100708881e-06, -4.8211933875886069e-07, -3.8569547100708881e-06, 0.00024455503458543356, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886101e-07, -7.7139094201417745e-06, -7.7139094201417745e-06, -4.8211933875886101e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -4.8211933875886091e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -1.1570864130212687e-05, -3.8569547100708881e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708881e-06, -7.7139094201417762e-06, -1.928477355035444e-06, -8.6781480976594197e-06, -1.928477355035444e-06, 0.00024503715392419238, -9.6423867751772202e-07, -6.2675514038652424e-06, -3.8569547100708889e-06, -7.7139094201417762e-06, -4.0498024455744657e-05, -3.8569547100708881e-06, -4.2426501810779734e-05, -3.8569547100708881e-06, -3.8569547100708881e-06, -7.7139094201417745e-06, -3.8569547100708964e-05, -7.7139094201417762e-06, -3.9051666439467965e-05, -4.8211933875886101e-07, -7.7139094201417762e-06, -7.7139094201417745e-06, -1.9284773550354436e-06, -4.0498024455744657e-05, -3.8569547100709201e-05, -3.856954710070893e-05, -3.8569547100709032e-05, -4.8211933875886112e-07, -1.928477355035444e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -4.8211933875886091e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -4.8211933875886112e-07, -3.8569547100708889e-06, -4.8211933875886434e-06, -9.6423867751772647e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -3.8569547100708889e-06, -1.1570864130212685e-05, -1.4463580162766071e-06, -4.2426501810780046e-05, -7.7139094201417745e-06, -3.4712592390638214e-05, -4.8211933875886112e-07, -4.8211933875886101e-07, -1.2052983468971641e-05, -7.7139094201417762e-06, -3.8569547100708881e-06, -3.3748353713120634e-06, -1.9284773550354436e-06, -9.6423867751772181e-07, -3.47125923906382e-05, -9.6423867751772181e-07, -1.928477355035444e-06, -1.928477355035444e-06, -3.47125923906382e-05, -3.8569547100708889e-06, -4.8211933875886101e-07, -3.8569547100708889e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -4.8211933875886281e-06, -1.4463580162765855e-06, -3.8569547100708889e-06, -7.2317900813829418e-06, -4.8211933875886101e-07, -3.8569547100708889e-06, -9.6423867751772181e-07, -9.6423867751772181e-07, -9.6423867751772181e-07, -4.8211933875886101e-07, -2.892716032553187e-06, -1.4463580162766033e-06, -3.8569547100708873e-06, -3.8569547100708873e-06, -7.7139094201417762e-06, -1.2535102807730448e-05, -1.1088744791453928e-05, -4.8211933875886101e-07, -7.7139094201417779e-06, -3.8569547100708881e-06, -2.8927160325531921e-06, -9.6423867751772224e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -3.8569547100709032e-05, -3.856954710070893e-05, -7.8103332878936134e-05, -3.856954710070893e-05, -3.8569547100708964e-05, -1.928477355035444e-06, -9.6423867751772224e-07, -3.8569547100708873e-06, -4.3390740488297429e-06, -1.928477355035444e-06, -5.3033127263474922e-06, -4.8211933875886101e-07, -4.8211933875886112e-07, -7.7139094201417779e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886101e-07, -4.8211933875886091e-07, -1.928477355035444e-06, -1.928477355035444e-06, -7.7139094201417779e-06, -3.8569547100708881e-06, -4.8211933875886101e-07, -7.8103332878935985e-05, -3.8569547100708873e-06, -3.8569547100708873e-06, -4.8211933875886101e-07, -1.928477355035444e-06, -1.928477355035444e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.4463580162765855e-06, -4.8211933875886091e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.9284773550354436e-06, -5.7854320651063436e-06, -3.8569547100708889e-06, -4.8211933875886101e-07, -4.8211933875886112e-07, -8.6781480976595365e-06, -4.8211933875886101e-07, -1.9284773550354428e-06, -9.6423867751772202e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -2.4105966937943136e-06, -1.928477355035444e-06, -9.6423867751772202e-07, -2.8927160325531709e-06, -4.0980143794503334e-05, -4.8211933875886101e-07, -1.928477355035444e-06, -1.928477355035444e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886101e-07, -2.217748958290767e-05, -4.821193387588629e-06, -4.8211933875886112e-07, -3.8569547100708873e-06, -3.8569547100708856e-06, -3.8569547100708873e-06, -7.7139094201417762e-06, -3.8569547100708856e-06, -7.7139094201417762e-06, -3.8569547100708856e-06, -3.8569547100708856e-06, -0.0001480106369989713, -3.8569547100708881e-06, -9.6423867751772654e-05, -3.8569547100708889e-06, -9.6423867751772181e-07, -2.8927160325531692e-05, -5.7854320651063639e-06, -2.4105966937943102e-06, -2.8927160325531903e-05, -4.8211933875886101e-07, -3.8569547100708873e-06, -3.8569547100708873e-06, -7.8103332878935985e-05, -3.8569547100708881e-06, -3.8569547100708881e-06, -0.00011040532857577958, -1.446358016276585e-06, -9.64238677517726e-05, -3.8569547100708881e-06, -3.8569547100708881e-06, -4.8211933875886101e-07, -3.8569547100708873e-06, -3.8569547100708873e-06, -4.8211933875886101e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -9.6423867751772181e-07, -1.928477355035444e-06, -1.928477355035444e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -7.8103332878936134e-05, -3.8569547100708873e-06, -3.8569547100708873e-06, -1.3017222146489252e-05, -4.6283456520850755e-05, -3.8569547100708881e-06, -3.4230473051879111e-05, -5.7854320651064384e-06, -5.7854320651064384e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -4.8211933875886459e-06, -3.8569547100708881e-06, -4.8211933875886357e-06, -1.0124506113936151e-05, -3.8569547100708889e-06, -2.4105966937943208e-06, 0.0012165076215233017, -3.8569547100708881e-06, -5.7854320651063673e-06, -1.4463580162766037e-06, -2.4105966937943098e-06, -9.6423867751772181e-07, -4.8211933875886112e-07, -4.8211933875886101e-07, -3.8569547100708873e-06, -5.785432065106408e-06, -2.8927160325531921e-06, -1.928477355035444e-06, -3.8569547100708881e-06, -3.8569547100708873e-06, -3.8569547100708856e-06, -7.7139094201417711e-06, -3.8569547100708881e-06, -1.928477355035444e-06, -7.7139094201417745e-06, -3.8569547100708881e-06, -1.928477355035444e-06, -3.8569547100708856e-06, -4.8211933875886101e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417745e-06, -1.157086413021268e-05, -3.8569547100708889e-06, -7.7139094201417711e-06, -7.7139094201417711e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -4.3390740488297047e-06, -1.6392057517801389e-05, -9.6423867751772202e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -4.3390740488296997e-06, -1.2535102807730454e-05, -3.8569547100708873e-06, -3.8569547100708889e-06, -3.8569547100708873e-06, -1.928477355035444e-06, -1.928477355035444e-06, 0.00024503715392419233, -4.8211933875886091e-07, -4.8211933875886112e-07, -9.6423867751772202e-07, -8.1960287589005827e-06, -1.4463580162765799e-05, -5.7854320651063537e-06, -2.892716032553187e-06, -4.8211933875886101e-07, -1.928477355035444e-06, -7.7139094201417745e-06, -1.1570864130212684e-05, -3.8569547100708881e-06, -1.928477355035444e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -1.928477355035444e-06, -5.7854320651063436e-06, -3.8569547100708881e-06, -4.8211933875886091e-07, -9.6423867751772224e-07, -1.928477355035444e-06, -1.9284773550354445e-06, -4.3390740488296963e-06, -2.410596693794317e-06, -3.8569547100708881e-06, -7.7139094201417762e-06, -3.471259239063816e-05, -1.9284773550354436e-06, -4.8211933875886101e-07, -2.8927160325531584e-05, -3.8569547100708881e-06, -2.3141728260425706e-05, -2.3141728260425361e-05, -2.4105966937943042e-05, -2.3141728260425706e-05, -1.9284773550354436e-06, -1.9284773550354436e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.8569547100708889e-06, -4.8211933875886091e-07, -3.8569547100708889e-06, -4.8211933875886112e-07, -4.8211933875886091e-07, -3.3748353713120679e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.9409279664290697e-05, -9.6423867751772181e-07, -3.47125923906382e-05, -3.47125923906382e-05, -3.8569547100708881e-06, -4.8211933875886101e-07, -3.8569547100708881e-06, -3.4712592390638214e-05, -3.4712592390638146e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -7.7139094201417779e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.4463580162765872e-06, -7.7139094201417779e-06, -2.4105966937943272e-06, -2.410596693794323e-06, -2.4105966937943221e-06, -2.410596693794328e-06, -1.2052983468971534e-06, -1.2052983468971534e-06, -2.4105966937943043e-06, -2.4105966937943052e-06, -3.0132458672428968e-07, -3.0132458672428973e-07, -6.0566241931582531e-05, -6.0264917344858256e-05, -1.5066229336214407e-06, -3.0132458672428968e-07, -9.0397376017285639e-07, -3.0132458672428971e-06, -2.4105966937942896e-05, -6.0264917344857947e-07, -2.7721861978634863e-05, -3.0132458672428804e-07, -4.8211933875886442e-06, -4.8211933875886459e-06, -2.4105966937943052e-06, -2.4105966937943043e-06, -2.4105966937942896e-05, -2.4105966937942903e-05, -2.4105966937943263e-06, -6.8400681186413492e-05, -6.0264917344858201e-07, -6.026491734485808e-05, -4.8211933875886425e-06, -2.410596693794323e-06, -2.4105966937943272e-06, -3.0132458672428762e-07, -3.0132458672429005e-07, -2.4105966937943196e-06, -2.4105966937943179e-06, -6.0264917344858201e-07, -6.0264917344858201e-07, -3.0132458672428793e-07, -3.013245867242892e-07, -2.4105966937943077e-06, 0.0012260897433811308, -9.0397376017286867e-07, -1.205298346897153e-06, -1.2052983468971534e-06, -3.0132458672428968e-07, -4.5198688008644209e-06, -2.4105966937943119e-06, -2.4105966937943115e-06, -2.7119212805186086e-06, -2.410596693794306e-06, -4.5198688008643929e-06, -6.0264917344857947e-07, -3.0132458672429069e-07, -2.4105966937943052e-06, -2.4105966937943052e-06, -3.0132458672429005e-07, -3.0132458672428926e-07, -2.4105966937943111e-06, -2.4105966937943124e-06, -6.0264917344858392e-07, -3.0132458672428889e-07, -2.4105966937943094e-06, -4.8211933875886357e-06, -3.0132458672428925e-06, -2.410596693794317e-06, -4.8211933875886307e-06, -3.0132458672429016e-07, -2.4105966937943102e-06, -5.1225179743129175e-06, -2.4105966937943158e-06, -2.4105966937943128e-06, -4.8211933875886425e-06, -9.6423867751773393e-06, -7.5331146681072752e-06, -2.4105966937943026e-06, -4.8211933875886408e-06, -4.8211933875886425e-06, -1.205298346897164e-06, -2.4105966937943119e-06, -3.0132458672428891e-06, -3.3145704539671743e-06, -1.205298346897164e-06, -4.821193387588673e-06, -2.4105966937943145e-06, -2.4105966937943153e-06, -2.4105966937943149e-06, -6.0264917344858392e-07, -2.4105966937943246e-06, -2.4105966937943026e-06, -3.0132458672429069e-07, -2.4105966937943026e-06, -6.026491734485801e-07, -2.4105966937943246e-06, -2.4105966937943179e-06, -2.410596693794317e-06, -3.0132458672429016e-07, -4.8211933875886459e-06, -4.8211933875886442e-06, -3.0132458672428963e-07, -2.4105966937943153e-06, -2.4105966937943153e-06, -3.0132458672428952e-07, -2.4105966937943272e-06, -2.410596693794328e-06, -2.4105966937943128e-06, -2.410596693794328e-06, -7.2317900813829358e-06, -2.4105966937943255e-06, -2.4105966937943102e-06, -2.4105966937943094e-06, -3.0132458672428899e-07, -2.4105966937943086e-06, -2.4105966937943094e-06, -4.8211933875886307e-06, -1.2052983468971534e-06, -5.4238425610372137e-06, -1.205298346897153e-06, -3.0132458672429079e-07, 0.00049043589735245363, -3.9172196274157387e-06, -2.410596693794317e-06, -4.8211933875886544e-06, -2.5311265284840369e-05, -2.4105966937943111e-06, -2.6516563631737367e-05, -2.4105966937943119e-06, -2.4105966937943128e-06, -4.8211933875886425e-06, -2.4105966937943133e-05, -4.8211933875886408e-06, -2.4407291524667486e-05, -3.0132458672428767e-07, -4.8211933875886391e-06, -4.8211933875886442e-06, -1.2052983468971627e-06, -2.5311265284840369e-05, -2.4105966937942896e-05, -2.4105966937943072e-05, -2.4105966937943163e-05, -3.0132458672429005e-07, -1.2052983468971539e-06, -3.0132458672428878e-07, -3.0132458672429048e-07, -3.013245867242909e-07, -2.4105966937943187e-06, -2.4105966937943187e-06, -2.4105966937943179e-06, -2.410596693794317e-06, -3.0132458672428878e-07, -3.0132458672428889e-07, -3.0132458672428857e-07, -2.4105966937943221e-06, -3.0132458672429064e-06, -6.0264917344857883e-06, -4.8211933875886629e-06, -4.8211933875886273e-06, -2.410596693794323e-06, -7.2317900813829833e-06, -9.039737601728727e-07, -2.6516563631737519e-05, -4.821193387588629e-06, -2.1695370244148706e-05, -3.0132458672428995e-07, -3.0132458672428931e-07, -7.5331146681072634e-06, -4.8211933875886307e-06, -2.4105966937943119e-06, -2.1092721070700365e-06, -1.2052983468971503e-06, -6.0264917344857947e-07, -2.1695370244148706e-05, -6.0264917344857947e-07, -1.2052983468971534e-06, -1.2052983468971534e-06, -2.1695370244148706e-05, -2.4105966937943077e-06, -3.013245867242892e-07, -2.4105966937943128e-06, -3.0132458672428857e-07, -2.4105966937943136e-06, -3.0132458672428988e-06, -9.0397376017287354e-07, -2.4105966937943128e-06, -4.5198688008643243e-06, -3.0132458672428793e-07, -2.4105966937943077e-06, -6.0264917344858201e-07, -6.0264917344858201e-07, -6.0264917344858116e-07, -3.0132458672428963e-07, -1.8079475203457378e-06, -9.0397376017286899e-07, -2.4105966937943204e-06, -2.4105966937943187e-06, -4.8211933875886374e-06, -7.8344392548314977e-06, -6.9304654946586227e-06, -3.0132458672428793e-07, -4.821193387588651e-06, -2.4105966937943221e-06, -1.8079475203457382e-06, -6.0264917344857714e-07, -3.0132458672428889e-07, -3.0132458672429048e-07, -2.4105966937943163e-05, -2.4105966937943072e-05, -4.8814583049335494e-05, -2.4105966937943011e-05, -2.4105966937943133e-05, -1.205298346897164e-06, -6.0264917344857841e-07, -2.4105966937943238e-06, -2.7119212805186128e-06, -1.205298346897164e-06, -3.3145704539671904e-06, -3.0132458672428973e-07, -3.0132458672428804e-07, -4.8211933875886273e-06, -2.4105966937943069e-06, -2.4105966937943102e-06, -3.0132458672428942e-07, 0.00024521794867622687, -1.2052983468971594e-06, -1.2052983468971594e-06, -4.821193387588651e-06, -2.4105966937943213e-06, -3.0132458672428846e-07, -4.8814583049334999e-05, -2.4105966937943196e-06, -2.4105966937943196e-06, -3.0132458672428963e-07, -1.2052983468971594e-06, -1.2052983468971594e-06, -6.0264917344857566e-07, -6.0264917344857566e-07, -9.0397376017286147e-07, -3.0132458672428973e-07, -6.0264917344857566e-07, -6.0264917344857566e-07, -3.0132458672428889e-07, -3.0132458672429005e-07, -1.2052983468971539e-06, -3.6158950406914662e-06, -2.4105966937943077e-06, -3.0132458672428868e-07, -3.0132458672428804e-07, -5.4238425610371858e-06, -3.013245867242892e-07, -1.2052983468971653e-06, -6.0264917344858137e-07, -4.8211933875886137e-06, -4.821193387588612e-06, -1.5066229336214484e-06, -1.2052983468971568e-06, -6.0264917344858349e-07, -1.8079475203457259e-06, -2.5612589871564606e-05, -3.013245867242892e-07, -1.2052983468971568e-06, -1.2052983468971564e-06, -4.8211933875886103e-06, -4.8211933875886154e-06, -1.2052983468971577e-06, -1.2052983468971551e-06, -1.2052983468971551e-06, -3.0132458672428868e-07, -1.3860930989317349e-05, -3.0132458672428844e-06, -3.0132458672429016e-07, -2.4105966937943196e-06, -2.4105966937943263e-06, -2.4105966937943196e-06, -4.8211933875886154e-06, -2.4105966937943119e-06, -4.8211933875886103e-06, -2.4105966937943263e-06, -2.4105966937943263e-06, -9.2506648124356293e-05, -2.410596693794323e-06, -6.0264917344858053e-05, -2.4105966937943086e-06, -6.0264917344857957e-07, -1.8079475203457412e-05, -3.6158950406914645e-06, -1.506622933621445e-06, -1.8079475203457541e-05, -3.0132458672428815e-07, -2.4105966937943149e-06, -2.4105966937943153e-06, -4.8814583049334999e-05, -2.410596693794306e-06, -2.410596693794306e-06, -6.9003330359861933e-05, -9.0397376017287418e-07, -6.0264917344858053e-05, -2.4105966937943153e-06, -2.4105966937943153e-06, -3.0132458672428868e-07, -2.4105966937943158e-06, -2.4105966937943145e-06, -3.0132458672428857e-07, -4.821193387588612e-06, -4.8211933875886137e-06, -6.0264917344858116e-07, -1.2052983468971594e-06, -1.2052983468971594e-06, -2.4105966937943221e-06, -2.4105966937943221e-06, -4.8814583049335494e-05, -2.4105966937943187e-06, -2.4105966937943204e-06, -8.1357638415558015e-06, -2.8927160325531855e-05, -2.4105966937943145e-06, -2.1394045657424526e-05, -3.6158950406914865e-06, -3.6158950406914857e-06, -2.410596693794323e-06, -2.410596693794328e-06, -3.0132458672429069e-06, -2.4105966937943272e-06, -3.0132458672428984e-06, -6.3278163212100947e-06, -2.4105966937943094e-06, -1.506622933621442e-06, -6.9304654946587091e-06, -2.4105966937943052e-06, -3.6158950406914662e-06, -9.0397376017287206e-07, -1.5066229336214437e-06, -6.0264917344858137e-07, -3.0132458672429005e-07, -3.013245867242892e-07, -2.4105966937943272e-06, -3.6158950406914976e-06, -1.8079475203457378e-06, -1.2052983468971543e-06, -2.410596693794323e-06, -2.4105966937943263e-06, -2.4105966937943263e-06, -4.8211933875886307e-06, -2.4105966937943052e-06, -1.2052983468971564e-06, -4.8211933875886078e-06, -2.4105966937943043e-06, -1.2052983468971568e-06, -2.4105966937943263e-06, -3.0132458672428815e-07, -2.4105966937943052e-06, -2.4105966937943052e-06, -4.8211933875886442e-06, -7.2317900813829833e-06, -2.4105966937943136e-06, -4.8211933875886425e-06, -4.8211933875886468e-06, -2.4105966937943052e-06, -2.4105966937943043e-06, -2.4105966937943052e-06, -2.4105966937943069e-06, -2.711921280518587e-06, -1.0245035948625838e-05, -6.026491734485854e-07, -2.4105966937943255e-06, -2.4105966937943052e-06, -2.7119212805185929e-06, -7.8344392548315113e-06, -2.410596693794323e-06, -2.4105966937943128e-06, -2.4105966937943272e-06, -1.2052983468971568e-06, -1.2052983468971568e-06, -3.0132458672428995e-07, -3.013245867242909e-07, -3.0132458672429016e-07, -6.0264917344857926e-07, -5.1225179743129184e-06, -9.039737601728652e-06, -3.6158950406914755e-06, -1.8079475203457378e-06, -3.013245867242891e-07, -1.205298346897156e-06, -4.821193387588629e-06, -7.2317900813829528e-06, -2.4105966937943255e-06, -1.205298346897156e-06, -4.8211933875886256e-06, -4.8211933875886273e-06, -1.205298346897156e-06, -3.6158950406914696e-06, -2.410596693794306e-06, -3.0132458672429058e-07, -6.0264917344858455e-07, -1.205298346897156e-06, -1.2052983468971577e-06, -2.7119212805186009e-06, -1.5066229336214479e-06, -2.4105966937943196e-06, -4.8211933875886357e-06, -2.1695370244148814e-05, -1.2052983468971627e-06, -3.0132458672428878e-07, -1.8079475203457412e-05, -2.4105966937943094e-06, -1.4463580162765953e-05, -1.4463580162765946e-05, 0.00047597231718968827, -1.4463580162765953e-05, -1.2052983468971627e-06, -1.2052983468971627e-06, -2.4105966937943111e-06, -2.4105966937943128e-06, -1.2052983468971555e-06, -1.2052983468971555e-06, -2.4105966937943246e-06, -3.0132458672429048e-07, -2.4105966937943246e-06, -3.0132458672428899e-07, -3.0132458672428952e-07, -2.1092721070700241e-05, -1.2052983468971555e-06, -1.2052983468971555e-06, -1.8380799790181755e-05, -6.0264917344858032e-07, -2.1695370244148706e-05, -2.1695370244148706e-05, -2.4105966937943102e-06, -3.0132458672428846e-07, -2.4105966937943086e-06, -2.1695370244148706e-05, -2.1695370244148926e-05, -2.4105966937943102e-06, -2.4105966937943111e-06, -6.0264917344857693e-07, -6.0264917344857989e-07, -4.8211933875886069e-06, -2.4105966937943111e-06, -2.4105966937943102e-06, -9.0397376017286423e-07, -4.8211933875886069e-06, -1.4463580162766115e-06, -1.4463580162766054e-06, -1.4463580162766066e-06, -1.4463580162766111e-06, -7.2317900813829507e-07, -7.2317900813829507e-07, -1.4463580162765901e-06, -1.4463580162765897e-06, -1.8079475203457551e-07, -1.8079475203457141e-07, -3.6339745158949429e-05, -3.6158950406914493e-05, -9.0397376017287196e-07, -1.8079475203457546e-07, -5.4238425610371765e-07, -1.8079475203457481e-06, -1.4463580162765884e-05, 0.0004906769570218332, -1.6633117187180693e-05, -1.8079475203457355e-07, -2.8927160325532133e-06, -2.8927160325532116e-06, -1.4463580162765893e-06, -1.4463580162765906e-06, -1.4463580162765856e-05, -1.4463580162765856e-05, -1.4463580162765863e-06, 0.00020447886455110314, -3.6158950406915309e-07, -3.6158950406914527e-05, -2.892716032553215e-06, -1.4463580162766058e-06, -1.4463580162766119e-06, -1.8079475203457342e-07, -1.8079475203457551e-07, -1.4463580162766007e-06, -1.446358016276602e-06, -3.6158950406915309e-07, -3.6158950406915309e-07, -1.8079475203457345e-07, -1.8079475203457467e-07, -1.4463580162765855e-06, -9.0397376017286867e-07, 0.00073601543553274563, -7.2317900813829528e-07, -7.2317900813829485e-07, -1.8079475203457546e-07, -2.7119212805185836e-06, -1.4463580162765973e-06, -1.4463580162765978e-06, -1.6271527683111548e-06, -1.4463580162765889e-06, -2.7119212805185887e-06, -3.6158950406915103e-07, -1.8079475203457625e-07, -1.4463580162765893e-06, -1.4463580162765897e-06, -1.8079475203457557e-07, -1.8079475203457504e-07, -1.4463580162765986e-06, -1.4463580162765969e-06, -3.6158950406914658e-07, -1.807947520345744e-07, -1.4463580162765935e-06, -2.8927160325532137e-06, -1.8079475203457367e-06, -1.4463580162766011e-06, -2.8927160325531879e-06, -1.8079475203457562e-07, -1.4463580162765973e-06, -3.0735107845877935e-06, -1.4463580162766003e-06, -1.4463580162765961e-06, -2.8927160325532116e-06, -5.7854320651064097e-06, -4.5198688008643929e-06, -1.4463580162765897e-06, -2.8927160325531451e-06, -2.8927160325531434e-06, -7.2317900813830597e-07, -1.4463580162765791e-06, -1.8079475203457371e-06, -1.9887422723802832e-06, -7.2317900813830618e-07, -2.8927160325532023e-06, -1.4463580162765745e-06, -1.4463580162766007e-06, -1.4463580162766011e-06, -3.6158950406914658e-07, -1.4463580162766088e-06, -1.4463580162765897e-06, -1.8079475203457649e-07, -1.4463580162765901e-06, -3.615895040691488e-07, -1.4463580162766079e-06, -1.4463580162766003e-06, -1.4463580162766016e-06, -1.8079475203457567e-07, -2.8927160325532082e-06, -2.8927160325532099e-06, -1.8079475203457514e-07, -1.4463580162765757e-06, -1.446358016276577e-06, -1.807947520345753e-07, -1.4463580162766119e-06, -1.44635801627661e-06, -1.4463580162765956e-06, -1.4463580162766105e-06, -4.3390740488298293e-06, -1.44635801627661e-06, -1.4463580162765927e-06, -1.4463580162765969e-06, -1.8079475203457461e-07, -1.4463580162765939e-06, -1.4463580162765965e-06, -2.8927160325531955e-06, -7.2317900813829485e-07, -3.2543055366223088e-06, -7.2317900813829528e-07, -1.8079475203457625e-07, -3.6158950406914965e-07, -2.3503317764494431e-06, -1.4463580162766016e-06, -2.8927160325531731e-06, -1.5186759170904292e-05, -1.4463580162765986e-06, -1.5909938179042269e-05, -1.4463580162765969e-06, -1.4463580162765956e-06, -2.8927160325531434e-06, -1.4463580162765939e-05, -2.8927160325531451e-06, -1.4644374914800556e-05, -1.8079475203457348e-07, -2.8927160325531472e-06, -2.8927160325531417e-06, -7.2317900813830459e-07, -1.5186759170904292e-05, -1.4463580162765884e-05, -1.4463580162765892e-05, -1.446358016276598e-05, -1.8079475203457551e-07, -7.2317900813830078e-07, -1.8079475203457424e-07, -1.8079475203457594e-07, -1.8079475203457655e-07, -1.4463580162766011e-06, -1.4463580162766016e-06, -1.4463580162766007e-06, -1.4463580162766011e-06, -1.8079475203457424e-07, -1.807947520345744e-07, -1.8079475203457419e-07, -1.4463580162766066e-06, -1.8079475203457534e-06, -3.6158950406914912e-06, -2.8927160325531726e-06, -2.892716032553193e-06, -1.4463580162766062e-06, -4.3390740488297954e-06, -5.4238425610371373e-07, -1.5909938179042361e-05, -2.8927160325531913e-06, -1.3017222146489222e-05, -1.8079475203457541e-07, -1.8079475203457483e-07, -4.519868800864326e-06, -2.8927160325531955e-06, -1.4463580162765973e-06, -1.265563264242025e-06, -7.2317900813829337e-07, -3.6158950406915092e-07, -1.3017222146489222e-05, -3.6158950406915103e-07, -7.2317900813829507e-07, -7.2317900813829507e-07, -1.3017222146489222e-05, -1.4463580162765927e-06, -1.8079475203457472e-07, -1.4463580162765973e-06, -1.8079475203457424e-07, -1.4463580162765961e-06, -1.8079475203457509e-06, -5.4238425610372485e-07, -1.4463580162765969e-06, -2.7119212805186077e-06, -1.8079475203457345e-07, -1.4463580162765922e-06, -3.6158950406915309e-07, -3.6158950406915309e-07, -3.6158950406914446e-07, -1.8079475203457509e-07, -1.0847685122074383e-06, -5.4238425610371479e-07, -1.4463580162766037e-06, -1.4463580162766054e-06, -2.8927160325531896e-06, -4.7006635528988888e-06, -4.1582792967951233e-06, -1.8079475203457345e-07, -2.8927160325531726e-06, -1.4463580162766045e-06, -1.0847685122074357e-06, -3.6158950406914679e-07, -1.807947520345744e-07, -1.8079475203457594e-07, -1.446358016276598e-05, -1.4463580162765892e-05, -2.9288749829600928e-05, -1.4463580162765892e-05, -1.4463580162765939e-05, -7.2317900813830618e-07, -3.6158950406914679e-07, -1.4463580162765859e-06, -1.6271527683111548e-06, -7.2317900813830597e-07, -1.9887422723802908e-06, -1.8079475203457546e-07, -1.8079475203457355e-07, -2.8927160325531743e-06, -1.4463580162765922e-06, -1.4463580162765952e-06, -1.8079475203457488e-07, -1.8079475203457546e-07, -7.2317900813830057e-07, -7.2317900813830099e-07, -2.8927160325531726e-06, -1.4463580162766054e-06, -1.8079475203457398e-07, -2.928874982960124e-05, -1.4463580162766045e-06, -1.4463580162766041e-06, -1.807947520345752e-07, -7.2317900813830099e-07, -7.2317900813830078e-07, -3.61589504069147e-07, -3.61589504069147e-07, -5.4238425610372209e-07, -1.8079475203457551e-07, -3.61589504069147e-07, -3.61589504069147e-07, -1.8079475203457445e-07, -1.8079475203457557e-07, -7.2317900813829549e-07, -2.1695370244148901e-06, -1.4463580162765918e-06, -1.8079475203457419e-07, -1.8079475203457355e-07, -3.2543055366223059e-06, -1.8079475203457504e-07, -7.2317900813830057e-07, -3.6158950406914849e-07, -2.8927160325531794e-06, -2.8927160325531811e-06, -9.0397376017287651e-07, -7.231790081382993e-07, -3.6158950406914658e-07, -1.0847685122074455e-06, -1.5367553922938771e-05, -1.8079475203457472e-07, -7.2317900813829909e-07, -7.2317900813829951e-07, -2.8927160325531828e-06, -2.8927160325531777e-06, -7.2317900813829972e-07, -7.2317900813829718e-07, -7.2317900813829697e-07, -1.8079475203457419e-07, -8.3165585935903398e-06, -1.807947520345734e-06, -1.8079475203457567e-07, -1.4463580162766041e-06, -1.4463580162765863e-06, -1.4463580162766045e-06, -2.8927160325531777e-06, -1.4463580162765863e-06, -2.8927160325531828e-06, -1.4463580162765863e-06, -1.4463580162765863e-06, -5.5503988874613888e-05, -1.4463580162766041e-06, -3.6158950406914628e-05, -1.4463580162765939e-06, -3.6158950406915113e-07, -1.0847685122074341e-05, -2.1695370244148951e-06, -9.0397376017287238e-07, -1.0847685122074341e-05, -1.8079475203457377e-07, -1.4463580162766011e-06, -1.4463580162766007e-06, -2.928874982960124e-05, -1.4463580162765931e-06, -1.4463580162765935e-06, -4.1401998215917279e-05, -5.4238425610372675e-07, -3.6158950406914561e-05, -1.446358016276577e-06, -1.4463580162765757e-06, -1.8079475203457451e-07, -1.4463580162766003e-06, -1.4463580162766016e-06, -1.8079475203457403e-07, -2.8927160325531811e-06, -2.8927160325531794e-06, -3.6158950406914446e-07, -7.2317900813830078e-07, -7.2317900813830099e-07, -1.4463580162766045e-06, -1.446358016276605e-06, -2.9288749829600928e-05, -1.4463580162766054e-06, -1.4463580162766037e-06, -4.8814583049335143e-06, -1.7356296195319175e-05, -1.4463580162765745e-06, -1.2836427394454678e-05, -2.169537024414907e-06, -2.169537024414907e-06, -1.4463580162766054e-06, -1.44635801627661e-06, -1.8079475203457522e-06, -1.4463580162766119e-06, -1.8079475203457501e-06, -3.796689792726068e-06, -1.4463580162765931e-06, -9.0397376017287545e-07, -4.158279296795164e-06, -1.4463580162765927e-06, -2.1695370244148943e-06, -5.4238425610371479e-07, -9.0397376017287301e-07, -3.6158950406915251e-07, -1.8079475203457551e-07, -1.8079475203457472e-07, -1.4463580162766119e-06, -2.1695370244149002e-06, -1.0847685122074361e-06, -7.2317900813829634e-07, -1.4463580162766062e-06, -1.4463580162765863e-06, -1.4463580162765863e-06, -2.8927160325531726e-06, -1.4463580162765893e-06, -7.2317900813829951e-07, -2.8927160325531726e-06, -1.4463580162765893e-06, -7.2317900813829909e-07, -1.4463580162765863e-06, -1.8079475203457371e-07, -1.4463580162765897e-06, -1.4463580162765893e-06, -2.8927160325532099e-06, -4.3390740488298038e-06, -1.4463580162765965e-06, -2.892716032553215e-06, -2.8927160325532099e-06, -1.4463580162765897e-06, -1.4463580162765901e-06, -1.4463580162765927e-06, -1.4463580162765939e-06, -1.6271527683111523e-06, -6.1470215691755615e-06, -3.6158950406914647e-07, -1.44635801627661e-06, -1.4463580162765889e-06, -1.6271527683111515e-06, -4.7006635528988685e-06, -1.4463580162766054e-06, -1.4463580162765973e-06, -1.4463580162766115e-06, -7.231790081382993e-07, -7.2317900813829951e-07, -1.8079475203457541e-07, -1.8079475203457655e-07, -1.8079475203457567e-07, -3.6158950406915018e-07, -3.0735107845877913e-06, -5.4238425610371714e-06, -2.1695370244148918e-06, -1.0847685122074383e-06, -1.8079475203457461e-07, -7.2317900813829888e-07, -2.8927160325531913e-06, -4.3390740488298072e-06, -1.4463580162766096e-06, -7.2317900813829888e-07, -2.8927160325531947e-06, -2.892716032553193e-06, -7.2317900813829888e-07, -2.1695370244148841e-06, -1.4463580162765931e-06, -1.8079475203457234e-07, -3.6158950406914658e-07, -7.2317900813829888e-07, -7.2317900813829972e-07, -1.6271527683111529e-06, -9.0397376017287386e-07, -1.4463580162766037e-06, -2.892716032553212e-06, -1.3017222146489218e-05, -7.2317900813830459e-07, -1.807947520345743e-07, -1.0847685122074341e-05, -1.4463580162765969e-06, -8.678148097659423e-06, -8.678148097659584e-06, -9.0397376017286537e-06, -8.678148097659423e-06, -7.2317900813830459e-07, -7.2317900813830438e-07, -1.4463580162765778e-06, -1.4463580162765817e-06, -7.2317900813829782e-07, -7.2317900813829782e-07, -1.4463580162766079e-06, -1.8079475203457223e-07, -1.4463580162766088e-06, -1.8079475203457456e-07, -1.8079475203457535e-07, -1.2655632642420178e-05, -7.2317900813829782e-07, -7.2317900813829782e-07, -1.102847987410913e-05, -3.6158950406915177e-07, -1.3017222146489222e-05, -1.3017222146489222e-05, -1.4463580162765973e-06, -1.807947520345743e-07, -1.4463580162765961e-06, -1.3017222146489222e-05, -1.3017222146489222e-05, -1.4463580162765952e-06, -1.4463580162765939e-06, -3.6158950406914796e-07, -3.6158950406915081e-07, -2.892716032553176e-06, -1.4463580162765944e-06, -1.4463580162765948e-06, -5.4238425610372548e-07, -2.892716032553176e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -2.4105966937943072e-07, -4.8452993545265838e-05, -4.8211933875885961e-05, -1.205298346897153e-06, -2.4105966937943066e-07, -7.2317900813829485e-07, -2.4105966937943213e-06, -1.9284773550354624e-05, -4.8211933875886144e-07, -2.2177489582907778e-05, -2.4105966937943072e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354624e-05, -1.9284773550354624e-05, -1.9284773550354449e-06, -5.47205449491307e-05, -4.8211933875886122e-07, -4.8211933875886605e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.928477355035444e-06, -1.205298346897153e-06, -7.2317900813829528e-07, 0.00098111285437428629, -9.6423867751772287e-07, -2.4105966937943066e-07, -3.6158950406915009e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.1695370244148714e-06, -1.9284773550354457e-06, -3.6158950406914887e-06, -4.8211933875886133e-07, -2.4105966937943061e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.9284773550354457e-06, -3.8569547100708915e-06, -2.4105966937943162e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -2.4105966937943066e-07, -1.9284773550354457e-06, -4.0980143794503151e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -7.7139094201417779e-06, -6.0264917344857604e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -2.410596693794317e-06, -2.6516563631737321e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -2.4105966937943061e-07, -1.9284773550354457e-06, -4.8211933875886133e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -5.7854320651063571e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -4.3390740488297751e-06, 0.00098111285437428629, -2.4105966937943061e-07, -4.8211933875886144e-07, -3.1337757019326093e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -2.0249012227872308e-05, -1.9284773550354457e-06, -2.1213250905389884e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -1.9284773550354502e-05, -3.8569547100708906e-06, -1.952583321973401e-05, -2.4105966937943072e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -2.0249012227872302e-05, -1.9284773550354624e-05, -1.9284773550354485e-05, -1.9284773550354536e-05, -2.4105966937943066e-07, -9.6423867751772245e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -2.4105966937943255e-06, -4.8211933875886391e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -5.7854320651063639e-06, -7.2317900813830597e-07, -2.121325090539005e-05, -3.8569547100708906e-06, -1.7356296195319066e-05, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857587e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.6874176856560222e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -1.7356296195319066e-05, -4.8211933875886133e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.735629619531906e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -2.4105966937943145e-06, -7.2317900813829549e-07, -1.9284773550354457e-06, -3.6158950406914777e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.4463580162765986e-06, -7.2317900813830428e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -6.2675514038652e-06, -5.5443723957269471e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.446358016276602e-06, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.9284773550354536e-05, -1.9284773550354485e-05, -3.9051666439468141e-05, -1.9284773550354485e-05, -1.9284773550354502e-05, -9.6423867751772245e-07, -4.8211933875886144e-07, -1.9284773550354445e-06, -2.1695370244148668e-06, -9.6423867751772245e-07, -2.6516563631737469e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.8569547100708898e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.9051666439468053e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -7.2317900813829528e-07, -2.4105966937943066e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -9.6423867751772245e-07, -2.8927160325531836e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297598e-06, -2.4105966937943072e-07, -9.6423867751772202e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.2052983468971583e-06, -9.6423867751772287e-07, -4.8211933875886133e-07, -1.4463580162765906e-06, -2.0490071897251667e-05, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.1088744791453848e-05, -2.410596693794306e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.4005318499485798e-05, -1.9284773550354453e-06, -4.8211933875886259e-05, -1.9284773550354457e-06, -4.8211933875886133e-07, -1.4463580162765823e-05, -2.892716032553182e-06, -1.2052983468971568e-06, -1.4463580162765982e-05, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.9051666439468053e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -5.5202664287889816e-05, -7.2317900813829485e-07, -4.82119338758863e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.9051666439468141e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -6.508611073244616e-06, -2.3141728260425456e-05, -1.9284773550354457e-06, -1.7115236525939518e-05, -2.8927160325531786e-06, -2.8927160325531786e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943263e-06, -1.9284773550354449e-06, -2.4105966937943204e-06, -5.062253056968072e-06, -1.9284773550354457e-06, -1.2052983468971619e-06, -5.5443723957269209e-06, -1.9284773550354457e-06, -2.892716032553182e-06, -7.2317900813830438e-07, -1.2052983468971568e-06, -4.8211933875886122e-07, -2.4105966937943066e-07, -2.4105966937943072e-07, -1.9284773550354449e-06, -2.8927160325531667e-06, -1.4463580162765897e-06, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -3.8569547100708898e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -1.9284773550354449e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -5.7854320651063605e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.1695370244148935e-06, -8.1960287589006775e-06, -4.8211933875886112e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -2.1695370244148816e-06, -6.2675514038652373e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -2.4105966937943066e-07, -4.8211933875886144e-07, -4.0980143794502905e-06, -7.2317900813829147e-06, -2.892716032553182e-06, -1.4463580162765986e-06, -2.4105966937943072e-07, -9.6423867751772287e-07, -3.8569547100708906e-06, -5.7854320651063614e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -2.892716032553182e-06, -1.9284773550354457e-06, -2.4105966937943061e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.1695370244148892e-06, -1.2052983468971598e-06, -1.9284773550354453e-06, -3.8569547100708915e-06, -1.7356296195319039e-05, -9.6423867751772245e-07, -2.4105966937943072e-07, -1.4463580162765819e-05, -1.9284773550354457e-06, -1.1570864130212897e-05, -1.1570864130212724e-05, -1.2052983468971519e-05, -1.1570864130212897e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.6874176856560245e-05, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4704639832145308e-05, -4.8211933875886133e-07, -1.735629619531906e-05, -1.7356296195319066e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.7356296195319066e-05, -1.7356296195319032e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.2317900813829507e-07, -3.8569547100708915e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -2.4105966937943072e-07, -4.8452993545265811e-05, -4.821193387588592e-05, -1.2052983468971534e-06, -2.4105966937943066e-07, -7.2317900813829443e-07, -2.4105966937943221e-06, -1.9284773550354631e-05, -4.8211933875886144e-07, -2.2177489582907799e-05, -2.4105966937943072e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354631e-05, -1.9284773550354631e-05, -1.9284773550354449e-06, -5.4720544949130727e-05, -4.8211933875886122e-07, -4.8211933875886564e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.928477355035444e-06, -1.2052983468971534e-06, -7.2317900813829485e-07, -9.6423867751772287e-07, 0.00098111285437428629, -2.4105966937943066e-07, -3.6158950406914993e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.1695370244148723e-06, -1.9284773550354457e-06, -3.615895040691487e-06, -4.8211933875886133e-07, -2.4105966937943061e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.9284773550354457e-06, -3.8569547100708915e-06, -2.410596693794317e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -2.4105966937943066e-07, -1.9284773550354457e-06, -4.0980143794503168e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -7.7139094201417779e-06, -6.0264917344857553e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -2.4105966937943179e-06, -2.6516563631737321e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -2.4105966937943061e-07, -1.9284773550354457e-06, -4.8211933875886133e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -5.7854320651063537e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, 0.00098111285437428629, -4.3390740488297666e-06, -9.6423867751772287e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -3.133775701932611e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -2.0249012227872308e-05, -1.9284773550354457e-06, -2.1213250905389877e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -1.9284773550354509e-05, -3.8569547100708906e-06, -1.9525833219734017e-05, -2.4105966937943072e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -2.0249012227872302e-05, -1.9284773550354631e-05, -1.9284773550354492e-05, -1.9284773550354543e-05, -2.4105966937943066e-07, -9.6423867751772245e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -2.4105966937943255e-06, -4.8211933875886391e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -5.7854320651063605e-06, -7.2317900813830555e-07, -2.1213250905390047e-05, -3.8569547100708906e-06, -1.735629619531908e-05, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857655e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.687417685656023e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -1.7356296195319073e-05, -4.8211933875886133e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.7356296195319073e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -2.4105966937943162e-06, -7.2317900813829507e-07, -1.9284773550354457e-06, -3.615895040691476e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.4463580162765978e-06, -7.2317900813830385e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -6.2675514038652051e-06, -5.5443723957269505e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.4463580162766011e-06, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.9284773550354543e-05, -1.9284773550354492e-05, -3.9051666439468141e-05, -1.9284773550354492e-05, -1.9284773550354509e-05, -9.6423867751772245e-07, -4.8211933875886144e-07, -1.9284773550354445e-06, -2.1695370244148676e-06, -9.6423867751772245e-07, -2.6516563631737461e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.8569547100708898e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.905166643946806e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -7.2317900813829485e-07, -2.4105966937943066e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -9.6423867751772245e-07, -2.892716032553182e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297632e-06, -2.4105966937943072e-07, -9.6423867751772202e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.2052983468971587e-06, -9.6423867751772287e-07, -4.8211933875886133e-07, -1.4463580162765897e-06, -2.0490071897251667e-05, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.1088744791453855e-05, -2.4105966937943069e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.4005318499485744e-05, -1.9284773550354453e-06, -4.8211933875886232e-05, -1.9284773550354457e-06, -4.8211933875886133e-07, -1.4463580162765816e-05, -2.8927160325531803e-06, -1.2052983468971572e-06, -1.4463580162765975e-05, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.905166643946806e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -5.5202664287889843e-05, -7.2317900813829443e-07, -4.8211933875886259e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.9051666439468141e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -6.508611073244616e-06, -2.3141728260425449e-05, -1.9284773550354457e-06, -1.7115236525939522e-05, -2.8927160325531803e-06, -2.8927160325531803e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943272e-06, -1.9284773550354449e-06, -2.4105966937943213e-06, -5.0622530569680737e-06, -1.9284773550354457e-06, -1.2052983468971619e-06, -5.5443723957269242e-06, -1.9284773550354457e-06, -2.8927160325531803e-06, -7.2317900813830396e-07, -1.2052983468971568e-06, -4.8211933875886122e-07, -2.4105966937943066e-07, -2.4105966937943072e-07, -1.9284773550354449e-06, -2.8927160325531701e-06, -1.4463580162765884e-06, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -3.8569547100708898e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -1.9284773550354449e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -5.7854320651063571e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.1695370244148892e-06, -8.1960287589006742e-06, -4.8211933875886112e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -2.1695370244148824e-06, -6.2675514038652373e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -2.4105966937943066e-07, -4.8211933875886144e-07, -4.0980143794502922e-06, -7.2317900813829113e-06, -2.8927160325531803e-06, -1.4463580162765978e-06, -2.4105966937943072e-07, -9.6423867751772287e-07, -3.8569547100708906e-06, -5.785432065106358e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -2.8927160325531803e-06, -1.9284773550354457e-06, -2.4105966937943061e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.1695370244148858e-06, -1.2052983468971606e-06, -1.9284773550354453e-06, -3.8569547100708915e-06, -1.7356296195319053e-05, -9.6423867751772245e-07, -2.4105966937943072e-07, -1.4463580162765812e-05, -1.9284773550354457e-06, -1.157086413021289e-05, -1.1570864130212718e-05, -1.2052983468971511e-05, -1.157086413021289e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.6874176856560251e-05, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4704639832145301e-05, -4.8211933875886133e-07, -1.7356296195319073e-05, -1.7356296195319073e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.735629619531908e-05, -1.7356296195319046e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.2317900813829549e-07, -3.8569547100708915e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -1.211324838631652e-05, -1.2052983468971551e-05, -3.0132458672428973e-07, 0.00024545900834560633, -1.8079475203457535e-07, -6.0264917344858307e-07, -4.8211933875886798e-06, -1.2052983468971531e-07, -5.5443723957269082e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886798e-06, -4.8211933875886789e-06, -4.8211933875886112e-07, -1.3680136237282611e-05, -1.2052983468971528e-07, -1.2052983468971712e-05, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.8211933875886091e-07, -3.0132458672428968e-07, -1.8079475203457546e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, 0.00024545900834560633, -9.0397376017287979e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -5.4238425610371225e-07, -4.8211933875886133e-07, -9.0397376017287725e-07, -1.2052983468971531e-07, -6.026491734485764e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971525e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -9.6423867751772245e-07, -6.0264917344858201e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -1.0245035948625709e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -1.928477355035444e-06, -1.5066229336214477e-06, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -2.4105966937943056e-07, -4.8211933875886133e-07, -6.0264917344858222e-07, -6.6291409079343166e-07, -2.4105966937943056e-07, -9.6423867751772202e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -9.6423867751772224e-07, -9.6423867751772224e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886112e-07, -1.4463580162766026e-06, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -1.0847685122074266e-06, -2.4105966937943066e-07, -6.0264917344857653e-08, -1.2052983468971533e-07, -7.8344392548315742e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -5.0622530569680856e-06, -4.8211933875886122e-07, -5.3033127263474575e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772224e-07, -4.8211933875886501e-06, -9.6423867751772245e-07, -4.8814583049335143e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772224e-07, -2.4105966937943056e-07, -5.0622530569680847e-06, -4.8211933875886798e-06, -4.8211933875886298e-06, -4.821193387588662e-06, -6.0264917344857653e-08, -2.4105966937943045e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -6.026491734485764e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.8211933875886122e-07, -6.0264917344858413e-07, -1.2052983468971653e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -4.8211933875886122e-07, -1.4463580162766041e-06, -1.8079475203457813e-07, -5.3033127263474956e-06, -9.6423867751772245e-07, -4.3390740488297234e-06, -6.0264917344857653e-08, -6.0264917344857666e-08, -1.5066229336214435e-06, -9.6423867751772266e-07, -4.8211933875886122e-07, -4.2185442141400999e-07, -2.4105966937943056e-07, -1.2052983468971531e-07, -4.3390740488297234e-06, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.3390740488297234e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -6.0264917344858159e-07, -1.8079475203457549e-07, -4.8211933875886133e-07, -9.0397376017287397e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -6.0264917344857666e-08, -3.6158950406915299e-07, -1.807947520345713e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.5668878509663106e-06, -1.3860930989317277e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.6158950406915378e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.821193387588662e-06, -4.8211933875886298e-06, -9.762916609867076e-06, -4.8211933875886383e-06, -4.8211933875886501e-06, -2.4105966937943056e-07, -1.2052983468971531e-07, -4.8211933875886101e-07, -5.4238425610371119e-07, -2.4105966937943056e-07, -6.6291409079343504e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -9.762916609867054e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -1.8079475203457554e-07, -6.0264917344857653e-08, -1.2052983468971533e-07, -1.2052983468971533e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -2.4105966937943056e-07, -7.2317900813830237e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -1.0847685122074292e-06, -6.0264917344857679e-08, -2.4105966937943045e-07, -1.2052983468971528e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.0132458672429122e-07, -2.4105966937943066e-07, -1.2052983468971531e-07, -3.6158950406915103e-07, -5.1225179743129167e-06, -6.0264917344857666e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857666e-08, -2.7721861978634448e-06, -6.0264917344857936e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.8501329624871622e-05, -4.8211933875886122e-07, -1.2052983468971627e-05, -4.8211933875886133e-07, -1.2052983468971531e-07, -3.6158950406914722e-06, -7.2317900813830216e-07, -3.0132458672429063e-07, -3.6158950406915132e-06, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.762916609867054e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.3800666071972352e-05, -1.8079475203457538e-07, -1.2052983468971639e-05, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971528e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.762916609867076e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.6271527683111519e-06, -5.7854320651064164e-06, -4.8211933875886133e-07, -4.2788091314848431e-06, -7.2317900813830152e-07, -7.2317900813830152e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -6.0264917344858444e-07, -4.8211933875886112e-07, -6.0264917344858349e-07, -1.2655632642420205e-06, -4.8211933875886133e-07, -3.0132458672429185e-07, -1.3860930989317201e-06, -4.8211933875886133e-07, -7.2317900813830216e-07, -1.8079475203457779e-07, -3.0132458672429058e-07, -1.2052983468971528e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -4.8211933875886112e-07, -7.2317900813830184e-07, -3.6158950406915362e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772224e-07, -1.4463580162766035e-06, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610371479e-07, -2.0490071897251546e-06, -1.2052983468971531e-07, -4.8211933875886112e-07, -4.8211933875886133e-07, -5.4238425610371479e-07, -1.5668878509662735e-06, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886112e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857653e-08, -6.026491734485764e-08, -6.0264917344857653e-08, -1.2052983468971533e-07, -1.0245035948625671e-06, -1.8079475203457382e-06, -7.2317900813830216e-07, -3.6158950406915299e-07, -6.0264917344857666e-08, -2.4105966937943066e-07, -9.6423867751772245e-07, -1.4463580162766033e-06, -4.8211933875886112e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -7.2317900813830205e-07, -4.8211933875886133e-07, -6.026491734485764e-08, -1.2052983468971528e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -5.4238425610371394e-07, -3.0132458672429143e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.3390740488297183e-06, -2.4105966937943056e-07, -6.0264917344857666e-08, -3.6158950406914722e-06, -4.8211933875886133e-07, -2.8927160325532506e-06, -2.8927160325532074e-06, -3.013245867242895e-06, -2.8927160325532506e-06, -2.4105966937943056e-07, -2.4105966937943056e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -6.026491734485764e-08, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.2185442141400349e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -3.6761599580363363e-06, -1.2052983468971531e-07, -4.3390740488297234e-06, -4.3390740488297234e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.3390740488297234e-06, -4.3390740488297166e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.8079475203457546e-07, -9.6423867751772266e-07, -7.2317900813830629e-06, -7.2317900813830426e-06, -7.2317900813830493e-06, -7.2317900813830595e-06, -3.6158950406915001e-06, -3.6158950406915009e-06, -7.2317900813829943e-06, -7.2317900813829943e-06, -9.0397376017288e-07, -9.0397376017287968e-07, -0.00018169872579474407, -0.00018079475203457222, -4.5198688008644226e-06, -9.0397376017287979e-07, -2.7119212805186005e-06, -9.0397376017288519e-06, -7.2317900813830666e-05, -1.8079475203457594e-06, -8.3165585935903672e-05, -9.0397376017287428e-07, -1.4463580162766097e-05, -1.446358016276609e-05, -7.2317900813829909e-06, -7.2317900813829985e-06, -7.2317900813830666e-05, -7.2317900813830639e-05, -7.2317900813830612e-06, -0.00020520204355924045, -1.8079475203457492e-06, -0.00018079475203457076, -1.4463580162766107e-05, -7.2317900813830459e-06, -7.2317900813830646e-06, -9.0397376017287354e-07, -9.0397376017288032e-07, -7.231790081383029e-06, -7.2317900813830358e-06, -1.8079475203457492e-06, -1.8079475203457486e-06, -9.0397376017287407e-07, -9.0397376017287778e-07, -7.2317900813829875e-06, -4.5198688008644209e-06, -2.7119212805185836e-06, -3.6158950406915009e-06, -3.6158950406914993e-06, -9.0397376017287979e-07, 0.0036692294925416841, -7.2317900813830163e-06, -7.2317900813830197e-06, -8.135763841555766e-06, -7.2317900813829926e-06, -1.3559606402592859e-05, -1.80794752034576e-06, -9.0397376017287407e-07, -7.2317900813829943e-06, -7.2317900813829985e-06, -9.0397376017288074e-07, -9.0397376017287852e-07, -7.2317900813830214e-06, -7.2317900813830146e-06, -1.8079475203457371e-06, -9.0397376017287693e-07, -7.2317900813830087e-06, -1.4463580162765945e-05, -9.0397376017288519e-06, -7.2317900813830324e-06, -1.4463580162766024e-05, -9.0397376017288074e-07, -7.231790081383007e-06, -1.5367553922938761e-05, -7.2317900813830248e-06, -7.2317900813830155e-06, -1.4463580162765985e-05, -2.8927160325531869e-05, -2.2599344004321511e-05, -7.2317900813829943e-06, -1.4463580162766085e-05, -1.4463580162766078e-05, -3.6158950406915331e-06, -7.2317900813830188e-06, -9.0397376017288824e-06, -9.9437113619016227e-06, -3.6158950406915331e-06, -1.4463580162765914e-05, -7.2317900813830307e-06, -7.2317900813830265e-06, -7.2317900813830282e-06, -1.8079475203457388e-06, -7.2317900813830544e-06, -7.2317900813829943e-06, -9.0397376017288275e-07, -7.2317900813829909e-06, -1.8079475203457522e-06, -7.2317900813830527e-06, -7.2317900813830273e-06, -7.2317900813830341e-06, -9.0397376017288074e-07, -1.4463580162765985e-05, -1.4463580162765985e-05, -9.0397376017287947e-07, -7.231790081383029e-06, -7.2317900813830256e-06, -9.0397376017287947e-07, -7.2317900813830629e-06, -7.2317900813830561e-06, -7.2317900813830121e-06, -7.2317900813830595e-06, -2.1695370244148797e-05, -7.2317900813830595e-06, -7.2317900813830053e-06, -7.2317900813830087e-06, -9.0397376017287778e-07, -7.2317900813830121e-06, -7.2317900813830121e-06, -1.4463580162766051e-05, -3.6158950406914993e-06, -1.6271527683111478e-05, -3.6158950406915009e-06, -9.0397376017288244e-07, -1.8079475203457564e-06, -1.1751658882247352e-05, -7.2317900813830341e-06, -1.4463580162765933e-05, -7.5933795854521316e-05, -7.2317900813830214e-06, -7.9549690895212684e-05, -7.2317900813830188e-06, -7.2317900813830121e-06, -1.4463580162766078e-05, -7.2317900813830829e-05, -1.4463580162766085e-05, -7.3221874574003329e-05, -9.0397376017287365e-07, -1.4463580162766095e-05, -1.4463580162766068e-05, -3.6158950406915297e-06, -7.5933795854521533e-05, -7.2317900813830666e-05, -7.2317900813830815e-05, -7.2317900813831777e-05, -9.0397376017288053e-07, -3.6158950406915238e-06, -9.0397376017287651e-07, -9.0397376017288159e-07, -9.039737601728746e-07, -7.2317900813830307e-06, -7.2317900813830324e-06, -7.231790081383029e-06, -7.2317900813830324e-06, -9.0397376017287651e-07, -9.0397376017287693e-07, -9.0397376017287651e-07, -7.2317900813830493e-06, -9.0397376017288383e-06, -1.807947520345788e-05, -1.4463580162765931e-05, -1.4463580162766031e-05, -7.2317900813830476e-06, -2.1695370244148702e-05, -2.7119212805185772e-06, -7.9549690895212738e-05, -1.4463580162766021e-05, -6.508611073244648e-05, -9.0397376017288032e-07, -9.039737601728782e-07, -2.2599344004321517e-05, -1.4463580162766051e-05, -7.2317900813830163e-06, -6.327816321210115e-06, -3.6158950406914933e-06, -1.8079475203457594e-06, -6.5086110732446399e-05, -1.80794752034576e-06, -3.6158950406915009e-06, -3.6158950406915001e-06, -6.508611073244629e-05, -7.231790081383007e-06, -9.039737601728782e-07, -7.2317900813830222e-06, -9.0397376017287651e-07, -7.2317900813830155e-06, -9.0397376017288502e-06, -2.7119212805185997e-06, -7.2317900813830188e-06, -1.3559606402593319e-05, -9.0397376017287386e-07, -7.2317900813830053e-06, -1.8079475203457492e-06, -1.8079475203457486e-06, -1.8079475203457645e-06, -9.0397376017287905e-07, -5.4238425610371815e-06, -2.7119212805185798e-06, -7.2317900813830358e-06, -7.2317900813830426e-06, -1.4463580162766024e-05, -2.3503317764494766e-05, 0.0036619977024602507, -9.0397376017287386e-07, -1.4463580162765934e-05, -7.2317900813830409e-06, -5.4238425610371748e-06, -1.8079475203457456e-06, -9.0397376017287693e-07, -9.0397376017288159e-07, -7.2317900813831777e-05, -7.2317900813830815e-05, -0.00014644374914800622, -7.2317900813830815e-05, -7.2317900813830829e-05, -3.6158950406915331e-06, -1.8079475203457452e-06, -7.2317900813830426e-06, -8.135763841555766e-06, -3.6158950406915331e-06, -9.9437113619015821e-06, -9.039737601728799e-07, -9.039737601728746e-07, -1.4463580162765965e-05, -7.231790081383007e-06, -7.2317900813830155e-06, -9.0397376017287841e-07, -9.0397376017287979e-07, -3.6158950406915179e-06, -3.6158950406915196e-06, -1.4463580162765938e-05, -7.2317900813830459e-06, -9.0397376017287566e-07, -0.00014644374914800696, -7.2317900813830392e-06, -7.2317900813830358e-06, -9.0397376017287947e-07, -3.6158950406915179e-06, -3.6158950406915179e-06, -1.8079475203457477e-06, -1.8079475203457477e-06, -2.7119212805185942e-06, -9.0397376017288e-07, -1.8079475203457477e-06, -1.8079475203457477e-06, -9.0397376017287735e-07, -9.0397376017288074e-07, -3.6158950406915162e-06, -1.0847685122074373e-05, -7.2317900813830053e-06, -9.039737601728763e-07, -9.0397376017287428e-07, -1.6271527683111484e-05, -9.0397376017287852e-07, -3.6158950406915145e-06, -1.8079475203457448e-06, -1.4463580162765989e-05, -1.4463580162765997e-05, -4.5198688008644209e-06, -3.615895040691512e-06, -1.8079475203457378e-06, -5.4238425610371849e-06, -7.6837769614694791e-05, -9.0397376017287778e-07, -3.6158950406915111e-06, -3.6158950406915128e-06, -1.4463580162766007e-05, -1.4463580162765982e-05, -3.6158950406915145e-06, -3.6158950406915069e-06, -3.615895040691506e-06, -9.0397376017287651e-07, -4.158279296795187e-05, -9.0397376017288536e-06, -9.0397376017288074e-07, -7.2317900813830358e-06, -7.2317900813829579e-06, -7.2317900813830392e-06, -1.4463580162765982e-05, -7.2317900813830121e-06, -1.4463580162766007e-05, -7.2317900813829579e-06, -7.2317900813829579e-06, -0.00027751994437307225, -7.2317900813830392e-06, -0.00018079475203457168, -7.2317900813830121e-06, -1.8079475203457604e-06, -5.4238425610371997e-05, -1.084768512207437e-05, -4.5198688008644251e-06, -5.4238425610371373e-05, -9.0397376017287524e-07, -7.2317900813830282e-06, -7.2317900813830265e-06, -0.00014644374914800696, -7.2317900813830002e-06, -7.2317900813829985e-06, -0.00020700999107958672, -2.7119212805185988e-06, -0.00018079475203457157, -7.2317900813830256e-06, -7.231790081383029e-06, -9.0397376017287693e-07, -7.2317900813830248e-06, -7.2317900813830315e-06, -9.0397376017287587e-07, -1.4463580162765997e-05, -1.4463580162765989e-05, -1.8079475203457645e-06, -3.6158950406915179e-06, -3.6158950406915179e-06, -7.2317900813830409e-06, -7.2317900813830426e-06, -0.00014644374914800622, -7.2317900813830426e-06, -7.2317900813830358e-06, -2.4407291524667598e-05, -8.6781480976595176e-05, -7.2317900813830307e-06, -6.4182136972273194e-05, -1.0847685122074295e-05, -1.0847685122074295e-05, -7.2317900813830426e-06, -7.2317900813830561e-06, -9.039737601728901e-06, -7.2317900813830629e-06, -9.0397376017289315e-06, -1.8983448963630478e-05, -7.231790081383007e-06, -4.519868800864492e-06, -2.0791396483975908e-05, -7.2317900813830019e-06, -1.0847685122074366e-05, -2.7119212805185798e-06, -4.5198688008644226e-06, -1.8079475203457477e-06, -9.0397376017288053e-07, -9.039737601728782e-07, -7.2317900813830646e-06, -1.0847685122074316e-05, -5.4238425610371765e-06, -3.6158950406915043e-06, -7.2317900813830476e-06, -7.2317900813830612e-06, -7.2317900813829579e-06, -1.4463580162766017e-05, -7.2317900813829909e-06, -3.6158950406915128e-06, -1.446358016276597e-05, -7.2317900813829968e-06, -3.6158950406915111e-06, -7.2317900813829579e-06, -9.0397376017287503e-07, -7.2317900813829985e-06, -7.2317900813829943e-06, -1.4463580162765985e-05, -2.1695370244148811e-05, -7.2317900813830171e-06, -1.4463580162766107e-05, -1.446358016276608e-05, -7.2317900813829943e-06, -7.2317900813829943e-06, -7.2317900813830019e-06, -7.2317900813829968e-06, -8.135763841555705e-06, -3.0735107845877522e-05, -1.8079475203457354e-06, -7.2317900813830595e-06, -7.2317900813829943e-06, -8.1357638415557118e-06, -2.3503317764494769e-05, -7.2317900813830426e-06, -7.2317900813830222e-06, -7.2317900813830629e-06, -3.615895040691512e-06, -3.615895040691512e-06, -9.0397376017288032e-07, -9.0397376017287428e-07, -9.0397376017288074e-07, -1.8079475203457581e-06, -1.5367553922938761e-05, -2.7119212805186459e-05, -1.084768512207438e-05, -5.4238425610371815e-06, -9.0397376017287778e-07, -3.6158950406915111e-06, -1.4463580162766021e-05, -2.1695370244148702e-05, -7.2317900813830561e-06, -3.6158950406915103e-06, -1.4463580162766041e-05, -1.4463580162766031e-05, -3.6158950406915103e-06, -1.0847685122074377e-05, -7.2317900813830002e-06, -9.0397376017288244e-07, -1.8079475203457384e-06, -3.6158950406915111e-06, -3.6158950406915145e-06, -8.1357638415557253e-06, -4.5198688008644776e-06, -7.2317900813830392e-06, -1.4463580162765941e-05, -6.5086110732446345e-05, -3.6158950406915297e-06, -9.0397376017287651e-07, -5.4238425610372024e-05, -7.2317900813830087e-06, -4.3390740488297229e-05, -4.3390740488297256e-05, -4.5198688008643028e-05, -4.3390740488297229e-05, -3.6158950406915289e-06, -3.6158950406915281e-06, -7.2317900813830205e-06, -7.2317900813830138e-06, -3.6158950406915094e-06, -3.6158950406915086e-06, -7.2317900813830527e-06, -9.0397376017288223e-07, -7.2317900813830544e-06, -9.0397376017287757e-07, -9.0397376017287947e-07, -6.3278163212100423e-05, -3.6158950406915086e-06, -3.6158950406915094e-06, -5.5142399370544402e-05, -1.8079475203457623e-06, -6.508611073244629e-05, -6.5086110732446399e-05, -7.231790081383007e-06, -9.039737601728763e-07, -7.2317900813830138e-06, -6.508611073244648e-05, -6.5086110732446317e-05, -7.2317900813830155e-06, -7.2317900813830087e-06, -1.8079475203457513e-06, -1.8079475203457606e-06, -1.4463580162765997e-05, -7.2317900813830104e-06, -7.2317900813830121e-06, -2.7119212805185971e-06, -1.4463580162765997e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6905987090531865e-05, -9.6423867751772139e-05, -2.4105966937943119e-06, -4.8211933875886122e-07, -1.4463580162765961e-06, -4.8211933875886544e-06, -3.8569547100709343e-05, -9.6423867751772266e-07, -4.4354979165815428e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.856954710070935e-05, -3.8569547100709343e-05, -3.8569547100708898e-06, -0.0001094410898982612, -9.6423867751772224e-07, -9.6423867751773426e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.4105966937943119e-06, -1.4463580162765973e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -7.2317900813830163e-06, 0.0019602972313935386, -3.8569547100708915e-06, -4.33907404882972e-06, -3.8569547100708906e-06, -7.2317900813829951e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772224e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886451e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -8.1960287589005844e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971548e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -4.8211933875886459e-06, -5.30331272634746e-06, -1.9284773550354445e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212768e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594569e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652551e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -4.0498024455744671e-05, -3.8569547100708915e-06, -4.2426501810779714e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.856954710070912e-05, -7.7139094201417796e-06, -3.905166643946806e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.0498024455744664e-05, -3.8569547100709343e-05, -3.8569547100708944e-05, -3.8569547100709208e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886612e-06, -9.6423867751772986e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -1.157086413021278e-05, -1.4463580162766185e-06, -4.2426501810780019e-05, -7.7139094201417813e-06, -3.471259239063797e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971524e-05, -7.713909420141783e-06, 0.0019602972313935386, -3.3748353713120626e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.471259239063797e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.471259239063797e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886425e-06, -1.4463580162765973e-06, -3.8569547100708906e-06, -7.2317900813829697e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325532103e-06, -1.4463580162765808e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730476e-05, -1.1088744791453862e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532167e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709208e-05, -3.8569547100708944e-05, -7.81033328789365e-05, -3.8569547100709011e-05, -3.856954710070912e-05, -1.9284773550354445e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297115e-06, -1.9284773550354445e-06, -5.3033127263474871e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936324e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4463580162765994e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651063927e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -8.678148097659479e-06, -4.8211933875886144e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -7.713909420141783e-06, -7.713909420141783e-06, -2.4105966937943242e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325531947e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886144e-07, -2.2177489582907639e-05, -4.8211933875886239e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00014801063699897227, -3.8569547100708906e-06, -9.6423867751772749e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.8927160325531689e-05, -5.785432065106391e-06, -2.4105966937943196e-06, -2.8927160325532018e-05, -4.8211933875886144e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936324e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577917, -1.4463580162765965e-06, -9.6423867751772844e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.81033328789365e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.301722214648922e-05, -4.6283456520851128e-05, -3.8569547100708906e-06, -3.4230473051878908e-05, -5.7854320651063859e-06, -5.7854320651063859e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886645e-06, -3.8569547100708898e-06, -4.8211933875886569e-06, -1.0124506113936161e-05, -3.8569547100708906e-06, -2.4105966937943293e-06, -1.1088744791453803e-05, -3.8569547100708906e-06, -5.785432065106391e-06, -1.4463580162766158e-06, -2.4105966937943191e-06, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063885e-06, -2.8927160325532154e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.1570864130212775e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297412e-06, -1.6392057517801274e-05, -9.6423867751772202e-07, -3.8569547100708889e-06, -3.8569547100708915e-06, -4.3390740488297412e-06, -1.2535102807730295e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -8.1960287589005607e-06, -1.4463580162765861e-05, -5.785432065106391e-06, -2.8927160325532103e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417813e-06, -1.1570864130212775e-05, -3.8569547100708889e-06, -1.9284773550354453e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354453e-06, -5.7854320651063902e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.3390740488297335e-06, -2.4105966937943255e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -3.4712592390637929e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531689e-05, -3.8569547100708906e-06, -2.3141728260425899e-05, -2.3141728260425551e-05, -2.4105966937943092e-05, -2.3141728260425899e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.3748353713120428e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.9409279664290629e-05, -9.6423867751772245e-07, -3.471259239063797e-05, -3.471259239063797e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.471259239063797e-05, -3.4712592390637916e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765971e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6905987090531919e-05, -9.6423867751772166e-05, -2.4105966937943119e-06, -4.8211933875886122e-07, -1.4463580162765965e-06, -4.8211933875886527e-06, -3.8569547100709343e-05, -9.6423867751772266e-07, -4.4354979165815414e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100709343e-05, -3.8569547100709337e-05, -3.8569547100708898e-06, -0.00010944108989826116, -9.6423867751772224e-07, -9.6423867751773454e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.4105966937943115e-06, -1.4463580162765978e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -7.2317900813830197e-06, -3.8569547100708915e-06, 0.0019602972313935386, -4.3390740488297183e-06, -3.8569547100708906e-06, -7.2317900813829985e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772224e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886442e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -8.1960287589005861e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971551e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -4.8211933875886459e-06, -5.3033127263474609e-06, -1.9284773550354445e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212772e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594535e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652551e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -4.0498024455744671e-05, -3.8569547100708915e-06, -4.2426501810779721e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709106e-05, -7.7139094201417796e-06, -3.9051666439468047e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.0498024455744664e-05, -3.8569547100709343e-05, -3.8569547100708944e-05, -3.8569547100709201e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886612e-06, -9.6423867751772986e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -1.1570864130212784e-05, -1.4463580162766189e-06, -4.2426501810780026e-05, -7.7139094201417813e-06, -3.4712592390637956e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, 0.0019521012026346384, -7.713909420141783e-06, -3.8569547100708915e-06, -3.3748353713120651e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390637943e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390637943e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886408e-06, -1.4463580162765978e-06, -3.8569547100708906e-06, -7.2317900813829714e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325532112e-06, -1.4463580162765817e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730476e-05, -1.1088744791453859e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532175e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709201e-05, -3.8569547100708944e-05, -7.8103332878936473e-05, -3.8569547100709011e-05, -3.8569547100709106e-05, -1.9284773550354445e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297098e-06, -1.9284773550354445e-06, -5.3033127263474871e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.810333287893631e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.446358016276599e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651063944e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -8.6781480976594705e-06, -4.8211933875886144e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -7.713909420141783e-06, -7.713909420141783e-06, -2.4105966937943238e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325531955e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886144e-07, -2.2177489582907626e-05, -4.821193387588623e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00014801063699897236, -3.8569547100708906e-06, -9.6423867751772776e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.8927160325531703e-05, -5.7854320651063927e-06, -2.4105966937943191e-06, -2.8927160325532025e-05, -4.8211933875886144e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.810333287893631e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577914, -1.4463580162765969e-06, -9.6423867751772871e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936473e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489224e-05, -4.6283456520851142e-05, -3.8569547100708906e-06, -3.4230473051878887e-05, -5.7854320651063876e-06, -5.7854320651063876e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886637e-06, -3.8569547100708898e-06, -4.8211933875886561e-06, -1.0124506113936161e-05, -3.8569547100708906e-06, -2.4105966937943289e-06, -1.1088744791453799e-05, -3.8569547100708906e-06, -5.7854320651063927e-06, -1.4463580162766162e-06, -2.4105966937943187e-06, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063902e-06, -2.8927160325532163e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.1570864130212779e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297395e-06, -1.6392057517801277e-05, -9.6423867751772202e-07, -3.8569547100708889e-06, -3.8569547100708915e-06, -4.3390740488297395e-06, -1.2535102807730288e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -8.196028758900559e-06, -1.4463580162765867e-05, -5.7854320651063927e-06, -2.8927160325532112e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417813e-06, -1.1570864130212779e-05, -3.8569547100708889e-06, -1.9284773550354453e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354453e-06, -5.7854320651063919e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.3390740488297319e-06, -2.4105966937943255e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -3.4712592390637895e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531696e-05, -3.8569547100708906e-06, -2.3141728260425906e-05, -2.3141728260425557e-05, -2.4105966937943099e-05, -2.3141728260425906e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.3748353713120401e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.9409279664290636e-05, -9.6423867751772245e-07, -3.4712592390637943e-05, -3.4712592390637943e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390637956e-05, -3.4712592390637882e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765975e-06, -7.713909420141783e-06, -4.3390740488296759e-06, -4.3390740488296963e-06, -4.3390740488296895e-06, -4.3390740488296776e-06, -2.1695370244148723e-06, -2.1695370244148714e-06, -4.3390740488297446e-06, -4.3390740488297463e-06, -5.4238425610371225e-07, -5.4238425610371288e-07, -0.00010901923547684772, -0.00010847685122074525, -2.71192128051862e-06, -5.4238425610371225e-07, -1.6271527683111498e-06, -5.4238425610372061e-06, -4.339074048829754e-05, -1.0847685122074258e-06, -4.9899351561542645e-05, -5.4238425610371934e-07, -8.6781480976593756e-06, -8.6781480976593858e-06, -4.3390740488297479e-06, -4.3390740488297412e-06, -4.339074048829752e-05, -4.339074048829754e-05, -4.3390740488297751e-06, -0.00012312122613554431, -1.0847685122074177e-06, -0.00010847685122074378, -8.6781480976593688e-06, -4.3390740488296946e-06, -4.3390740488296743e-06, -5.423842561037186e-07, -5.4238425610371246e-07, -4.3390740488297115e-06, -4.3390740488297047e-06, -1.0847685122074177e-06, -1.0847685122074181e-06, -5.423842561037187e-07, -5.42384256103715e-07, -4.3390740488297395e-06, -2.7119212805186086e-06, -1.6271527683111548e-06, -2.1695370244148714e-06, -2.1695370244148723e-06, -5.4238425610371225e-07, -8.135763841555766e-06, -4.33907404882972e-06, -4.3390740488297183e-06, 0.0022047920010616275, -4.339074048829753e-06, -8.1357638415557931e-06, -1.0847685122074245e-06, -5.4238425610370992e-07, -4.3390740488297564e-06, -4.3390740488297598e-06, -5.4238425610371436e-07, -5.4238425610371373e-07, -4.3390740488297166e-06, -4.3390740488297217e-06, -1.0847685122074467e-06, -5.4238425610371585e-07, -4.339074048829753e-06, -8.6781480976595365e-06, -5.4238425610372197e-06, -4.3390740488297268e-06, -8.6781480976595196e-06, -5.4238425610371415e-07, -4.3390740488297302e-06, -9.2205323537632207e-06, -4.3390740488297115e-06, -4.3390740488297268e-06, -8.6781480976593824e-06, -1.7356296195319175e-05, -1.3559606402592952e-05, -4.3390740488297429e-06, -8.6781480976593959e-06, -8.6781480976594061e-06, -2.1695370244148456e-06, -4.3390740488297234e-06, -5.423842561037218e-06, -5.9662268171410013e-06, -2.1695370244148456e-06, -8.6781480976595433e-06, -4.3390740488297098e-06, -4.3390740488297098e-06, -4.3390740488297064e-06, -1.0847685122074421e-06, -4.3390740488296844e-06, -4.3390740488297429e-06, -5.4238425610370886e-07, -4.3390740488297463e-06, -1.0847685122074383e-06, -4.3390740488296861e-06, -4.3390740488297319e-06, -4.3390740488297251e-06, -5.4238425610371182e-07, -8.6781480976593993e-06, -8.6781480976593926e-06, -5.4238425610371352e-07, -4.3390740488297115e-06, -4.3390740488297149e-06, -5.4238425610371267e-07, -4.3390740488296743e-06, -4.339074048829681e-06, -4.3390740488297285e-06, -4.3390740488296793e-06, -1.3017222146489201e-05, -4.339074048829698e-06, -4.3390740488297564e-06, -4.3390740488297285e-06, -5.4238425610371521e-07, -4.3390740488297496e-06, -4.3390740488297251e-06, -8.67814809765944e-06, -2.1695370244148723e-06, -9.7629166098670252e-06, -2.1695370244148714e-06, -5.4238425610370992e-07, -1.0847685122074292e-06, -7.0509953293484264e-06, -4.3390740488297251e-06, -8.6781480976595196e-06, -4.5560277512712419e-05, -4.3390740488297166e-06, -4.7729814537127542e-05, -4.3390740488297234e-06, -4.3390740488297285e-06, -8.6781480976594061e-06, -4.3390740488297764e-05, -8.6781480976593959e-06, -4.3933124744401509e-05, -5.4238425610371849e-07, -8.6781480976593892e-06, -8.6781480976594129e-06, -2.1695370244148414e-06, -4.5560277512712433e-05, -4.339074048829754e-05, -4.3390740488297771e-05, -4.3390740488297737e-05, -5.4238425610371436e-07, -2.1695370244148841e-06, -5.4238425610371648e-07, -5.4238425610371076e-07, -5.4238425610370907e-07, -4.3390740488297098e-06, -4.3390740488297081e-06, -4.3390740488297285e-06, -4.3390740488297268e-06, -5.4238425610371627e-07, -5.4238425610371585e-07, -5.4238425610371627e-07, -4.3390740488297081e-06, -5.423842561037201e-06, -1.0847685122074429e-05, -8.6781480976595298e-06, -8.6781480976594468e-06, -4.3390740488297098e-06, -1.3017222146489246e-05, -1.6271527683111553e-06, -4.7729814537127847e-05, -8.6781480976594569e-06, -3.9051666439468263e-05, -5.4238425610371479e-07, -5.4238425610371458e-07, -1.355960640259297e-05, -8.67814809765944e-06, -4.33907404882972e-06, -3.7966897927260638e-06, -2.1695370244148795e-06, -1.0847685122074249e-06, -3.9051666439468263e-05, -1.0847685122074245e-06, -2.1695370244148714e-06, -2.1695370244148723e-06, -3.9051666439468263e-05, -4.3390740488297352e-06, -5.4238425610371479e-07, -4.3390740488297395e-06, -5.4238425610371627e-07, -4.3390740488297463e-06, -5.4238425610372214e-06, -1.6271527683111542e-06, -4.3390740488297412e-06, -8.1357638415558066e-06, -5.4238425610371892e-07, -4.3390740488297369e-06, -1.0847685122074177e-06, -1.0847685122074181e-06, -1.0847685122074203e-06, -5.4238425610371373e-07, -3.2543055366223156e-06, -1.6271527683111555e-06, -4.3390740488296997e-06, -4.3390740488296929e-06, -8.678148097659479e-06, -1.4101990658696785e-05, -1.2474837890385668e-05, -5.4238425610371892e-07, -8.6781480976595535e-06, -4.339074048829698e-06, -3.2543055366223139e-06, -1.0847685122074395e-06, -5.4238425610371585e-07, -5.4238425610371098e-07, -4.3390740488297737e-05, -4.3390740488297771e-05, -8.7866249488803411e-05, -4.3390740488297771e-05, -4.3390740488297764e-05, -2.1695370244148456e-06, -1.0847685122074408e-06, -4.3390740488297598e-06, -4.8814583049334974e-06, -2.1695370244148456e-06, -5.9662268171409699e-06, -5.4238425610371225e-07, -5.4238425610371955e-07, -8.6781480976595264e-06, -4.3390740488297352e-06, -4.3390740488297285e-06, -5.4238425610371436e-07, -5.4238425610371225e-07, -2.1695370244148541e-06, -2.1695370244148524e-06, -8.6781480976595535e-06, -4.3390740488296946e-06, -5.4238425610371712e-07, -8.7866249488802666e-05, -4.3390740488296963e-06, -4.339074048829698e-06, -5.4238425610371352e-07, -2.1695370244148532e-06, -2.1695370244148532e-06, -1.0847685122074374e-06, -1.084768512207437e-06, -1.6271527683111553e-06, -5.4238425610371203e-07, -1.084768512207437e-06, -1.0847685122074374e-06, -5.4238425610371563e-07, -5.4238425610371436e-07, -2.1695370244148723e-06, -6.5086110732446312e-06, -4.3390740488297369e-06, -5.4238425610371648e-07, -5.4238425610371934e-07, 0.00023575635665308456, -5.4238425610371373e-07, -2.1695370244148858e-06, -1.0847685122074442e-06, -8.6781480976594925e-06, -8.6781480976594823e-06, -2.7119212805186064e-06, -2.1695370244148575e-06, -1.0847685122074463e-06, -3.2543055366223211e-06, -4.6102661768816395e-05, -5.42384256103715e-07, -2.1695370244148583e-06, -2.1695370244148566e-06, -8.6781480976594739e-06, -8.6781480976594993e-06, -2.1695370244148659e-06, -2.1695370244148651e-06, -2.1695370244148651e-06, -5.4238425610371648e-07, -2.4949675780771177e-05, -5.4238425610372307e-06, -5.4238425610371394e-07, -4.339074048829698e-06, -4.3390740488297751e-06, -4.3390740488296963e-06, -8.6781480976594993e-06, -4.3390740488297615e-06, -8.6781480976594739e-06, -4.3390740488297751e-06, -4.3390740488297767e-06, -0.00016651196662384221, -4.3390740488296997e-06, -0.00010847685122074456, -4.3390740488297496e-06, -1.0847685122074236e-06, -3.2543055366223308e-05, -6.5086110732446524e-06, -2.7119212805186115e-06, -3.2543055366223091e-05, -5.4238425610371807e-07, -4.3390740488297064e-06, -4.3390740488297098e-06, -8.7866249488802666e-05, -4.3390740488297369e-06, -4.3390740488297395e-06, -0.00012420599464775168, -1.6271527683111527e-06, -0.00010847685122074451, -4.3390740488297149e-06, -4.3390740488297115e-06, -5.4238425610371542e-07, -4.3390740488297115e-06, -4.3390740488297047e-06, -5.423842561037169e-07, -8.6781480976594823e-06, -8.6781480976594925e-06, -1.0847685122074203e-06, -2.1695370244148532e-06, -2.1695370244148532e-06, -4.339074048829698e-06, -4.3390740488296963e-06, -8.7866249488803411e-05, -4.3390740488296929e-06, -4.3390740488296997e-06, -1.4644374914800606e-05, -5.2068888585956955e-05, -4.3390740488297098e-06, -3.8509282183364213e-05, -6.5086110732446109e-06, -6.5086110732446109e-06, -4.3390740488297132e-06, -4.339074048829681e-06, -5.4238425610372044e-06, -4.3390740488296743e-06, -5.4238425610372053e-06, -1.1390069378178101e-05, -4.3390740488297547e-06, -2.7119212805186039e-06, -1.247483789038561e-05, -4.3390740488297335e-06, -6.5086110732446507e-06, -1.6271527683111618e-06, -2.7119212805186107e-06, -1.0847685122074198e-06, -5.4238425610371436e-07, -5.4238425610371479e-07, -4.3390740488296743e-06, -6.5086110732446211e-06, -3.2543055366223148e-06, -2.1695370244148676e-06, -4.3390740488296929e-06, -4.3390740488297751e-06, -4.3390740488297767e-06, -8.6781480976595298e-06, -4.3390740488297479e-06, -2.1695370244148566e-06, -8.6781480976595061e-06, -4.3390740488297463e-06, -2.1695370244148583e-06, -4.3390740488297751e-06, -5.4238425610371807e-07, -4.3390740488297598e-06, -4.3390740488297564e-06, -8.6781480976593926e-06, -1.3017222146489235e-05, -4.3390740488297429e-06, -8.6781480976593688e-06, -8.6781480976593926e-06, -4.3390740488297463e-06, -4.3390740488297446e-06, -4.3390740488297335e-06, -4.3390740488297412e-06, -4.8814583049335312e-06, -1.8441064707526458e-05, -1.0847685122074476e-06, -4.339074048829698e-06, -4.3390740488297479e-06, -4.8814583049335262e-06, -1.4101990658696895e-05, -4.3390740488296963e-06, -4.3390740488297395e-06, -4.3390740488296759e-06, -2.1695370244148575e-06, -2.1695370244148566e-06, -5.4238425610371267e-07, -5.4238425610370907e-07, -5.4238425610371415e-07, -1.0847685122074275e-06, -9.2205323537633613e-06, -1.6271527683111545e-05, 0.0019576455750303619, -3.2543055366223156e-06, -5.4238425610371521e-07, -2.1695370244148583e-06, -8.6781480976594569e-06, -1.3017222146489225e-05, -4.3390740488296997e-06, -2.1695370244148591e-06, -8.67814809765944e-06, -8.6781480976594468e-06, -2.1695370244148591e-06, -6.5086110732446262e-06, -4.3390740488297369e-06, -5.4238425610370992e-07, -1.0847685122074425e-06, -2.1695370244148583e-06, -2.1695370244148659e-06, -4.8814583049335211e-06, -2.7119212805186056e-06, -4.3390740488297014e-06, -8.6781480976595365e-06, -3.9051666439467979e-05, -2.1695370244148414e-06, -5.4238425610371627e-07, -3.2543055366223254e-05, -4.3390740488297285e-06, -2.6034444292978498e-05, -2.6034444292978494e-05, -2.711921280518611e-05, -2.6034444292978498e-05, -2.1695370244148414e-06, -2.1695370244148422e-06, -4.33907404882972e-06, -4.3390740488297268e-06, -2.1695370244148625e-06, -2.1695370244148634e-06, -4.3390740488296861e-06, -5.4238425610371013e-07, -4.3390740488296844e-06, -5.4238425610371521e-07, -5.4238425610371267e-07, -3.7966897927260414e-05, -2.1695370244148634e-06, -2.1695370244148625e-06, -3.3085439622326782e-05, -1.084768512207422e-06, -3.9051666439468263e-05, -3.9051666439468263e-05, -4.3390740488297302e-06, -5.4238425610371606e-07, -4.3390740488297234e-06, -3.9051666439468263e-05, -3.905166643946785e-05, -4.3390740488297285e-06, -4.3390740488297335e-06, -1.0847685122074387e-06, -1.0847685122074296e-06, -8.6781480976594993e-06, -4.3390740488297319e-06, -4.3390740488297302e-06, -1.6271527683111578e-06, -8.6781480976594993e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.690598709053154e-05, -9.6423867751771787e-05, -2.410596693794306e-06, -4.8211933875886133e-07, -1.4463580162765878e-06, -4.8211933875886425e-06, -3.8569547100709249e-05, -9.6423867751772266e-07, -4.4354979165815624e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100709249e-05, -3.8569547100709249e-05, -3.8569547100708898e-06, -0.0001094410898982616, -9.6423867751772245e-07, -9.6423867751773047e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708889e-06, -2.410596693794306e-06, -1.4463580162765889e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813829926e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.339074048829753e-06, 0.0019602972313935386, -7.2317900813829672e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886324e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -8.1960287589006386e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.20529834689715e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.8211933875886341e-06, -5.3033127263474693e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212724e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976595162e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652475e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.0498024455744617e-05, -3.8569547100708906e-06, -4.2426501810779755e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709011e-05, -7.7139094201417796e-06, -3.9051666439468033e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.0498024455744603e-05, -3.8569547100709249e-05, -3.8569547100708978e-05, -3.8569547100709079e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886391e-06, -9.6423867751772749e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -1.1570864130212713e-05, -1.4463580162766096e-06, -4.2426501810780093e-05, -7.7139094201417813e-06, -3.47125923906382e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971544e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120503e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390638187e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390638187e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886188e-06, -1.4463580162765889e-06, -3.8569547100708915e-06, -7.2317900813829451e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325531938e-06, -1.4463580162766066e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730461e-05, -1.1088744791453911e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325531997e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709079e-05, -3.8569547100708978e-05, -7.810333287893631e-05, -3.8569547100708978e-05, -3.8569547100709011e-05, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297412e-06, -1.9284773550354449e-06, -5.3033127263474922e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936134e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162765889e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -5.7854320651063571e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976595365e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.410596693794317e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -2.8927160325531769e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.2177489582907717e-05, -4.821193387588612e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897135, -3.8569547100708906e-06, -9.6423867751772383e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -2.8927160325531604e-05, -5.7854320651063571e-06, -2.4105966937943136e-06, -2.8927160325531923e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936134e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577966, -1.4463580162765906e-06, -9.6423867751772464e-05, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.810333287893631e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489259e-05, -4.6283456520850844e-05, -3.8569547100708915e-06, -3.423047305187907e-05, -5.7854320651063521e-06, -5.7854320651063521e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886425e-06, -3.8569547100708898e-06, -4.8211933875886408e-06, -1.0124506113936147e-05, -3.8569547100708915e-06, -2.4105966937943179e-06, -1.1088744791453859e-05, -3.8569547100708906e-06, -5.7854320651063571e-06, -1.4463580162765973e-06, -2.4105966937943136e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063537e-06, -2.8927160325531989e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.1570864130212728e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.33907404882977e-06, -1.6392057517801348e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488297683e-06, -1.2535102807730471e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -8.1960287589005895e-06, 0.0019496906059408446, -5.785432065106347e-06, -2.8927160325531938e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417813e-06, -1.157086413021273e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651063673e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.3390740488297632e-06, -2.4105966937943204e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.4712592390638146e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531598e-05, -3.8569547100708906e-06, -2.3141728260425761e-05, -2.3141728260425415e-05, -2.4105966937942997e-05, -2.3141728260425761e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.3748353713120516e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.9409279664290582e-05, -9.6423867751772245e-07, -3.4712592390638187e-05, -3.4712592390638187e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.47125923906382e-05, -3.4712592390638133e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765884e-06, -7.713909420141783e-06, -7.2317900813830375e-06, -7.2317900813830188e-06, -7.2317900813830256e-06, -7.2317900813830358e-06, -3.615895040691487e-06, -3.6158950406914887e-06, -7.2317900813829739e-06, -7.2317900813829723e-06, -9.0397376017287735e-07, -9.0397376017287693e-07, -0.00018169872579474483, -0.00018079475203457292, -4.5198688008643955e-06, -9.0397376017287725e-07, -2.711921280518606e-06, -9.0397376017287977e-06, -7.2317900813830341e-05, -1.8079475203457539e-06, -8.3165585935903754e-05, -9.0397376017287132e-07, -1.4463580162766055e-05, -1.4463580162766048e-05, -7.2317900813829706e-06, -7.2317900813829773e-06, -7.2317900813830327e-05, -7.2317900813830327e-05, -7.2317900813830358e-06, -0.00020520204355924053, -1.8079475203457606e-06, -0.00018079475203457146, -1.4463580162766065e-05, -7.2317900813830205e-06, -7.2317900813830392e-06, -9.039737601728709e-07, -9.0397376017287735e-07, -7.2317900813830053e-06, -7.2317900813830104e-06, -1.8079475203457606e-06, -1.8079475203457606e-06, -9.039737601728709e-07, -9.0397376017287481e-07, -7.2317900813829672e-06, -4.5198688008643929e-06, -2.7119212805185887e-06, -3.6158950406914887e-06, -3.615895040691487e-06, -9.0397376017287725e-07, -1.3559606402592859e-05, -7.2317900813829951e-06, -7.2317900813829985e-06, -8.1357638415557931e-06, -7.2317900813829672e-06, 0.0036692294925416806, -1.8079475203457547e-06, -9.0397376017287947e-07, -7.2317900813829706e-06, -7.2317900813829723e-06, -9.0397376017287757e-07, -9.0397376017287598e-07, -7.2317900813830002e-06, -7.2317900813829926e-06, -1.8079475203457367e-06, -9.0397376017287386e-07, -7.2317900813829841e-06, -1.4463580162765907e-05, -9.039737601728796e-06, -7.2317900813830087e-06, -1.4463580162765972e-05, -9.0397376017287778e-07, -7.2317900813829858e-06, -1.5367553922938761e-05, -7.2317900813830036e-06, -7.2317900813829892e-06, -1.4463580162766051e-05, -2.892716032553176e-05, -2.2599344004321595e-05, -7.2317900813829739e-06, -1.4463580162766038e-05, -1.4463580162766031e-05, -3.6158950406915213e-06, -7.2317900813829943e-06, -9.0397376017288248e-06, -9.9437113619016075e-06, -3.6158950406915213e-06, -1.4463580162765867e-05, -7.2317900813830087e-06, -7.2317900813830061e-06, -7.2317900813830078e-06, -1.8079475203457325e-06, -7.231790081383029e-06, -7.2317900813829739e-06, -9.0397376017288021e-07, -7.2317900813829706e-06, -1.8079475203457456e-06, -7.231790081383029e-06, -7.2317900813830019e-06, -7.2317900813830087e-06, -9.0397376017287778e-07, -1.4463580162766038e-05, -1.4463580162766044e-05, -9.0397376017287651e-07, -7.2317900813830053e-06, -7.2317900813830019e-06, -9.039737601728709e-07, -7.2317900813830392e-06, -7.2317900813830324e-06, -7.2317900813829875e-06, -7.2317900813830341e-06, -2.1695370244148848e-05, -7.2317900813830358e-06, -7.231790081382979e-06, -7.2317900813829875e-06, -9.0397376017287481e-07, -7.2317900813829858e-06, -7.2317900813829909e-06, -1.4463580162766004e-05, -3.615895040691487e-06, -1.6271527683111525e-05, -3.6158950406914887e-06, -9.0397376017287947e-07, -1.8079475203457505e-06, -1.1751658882247317e-05, -7.2317900813830087e-06, -1.4463580162765899e-05, -7.5933795854521113e-05, -7.2317900813830002e-06, -7.9549690895212806e-05, -7.2317900813829943e-06, -7.2317900813829875e-06, -1.4463580162766031e-05, -7.2317900813830409e-05, -1.4463580162766038e-05, -7.3221874574002949e-05, -9.03973760172871e-07, -1.4463580162766051e-05, -1.4463580162766024e-05, -3.615895040691517e-06, -7.5933795854521099e-05, -7.2317900813830341e-05, -7.2317900813830382e-05, -7.2317900813831357e-05, -9.0397376017287735e-07, -3.615895040691506e-06, -9.0397376017287323e-07, -9.0397376017287863e-07, -9.0397376017288032e-07, -7.2317900813830053e-06, -7.2317900813830087e-06, -7.2317900813830053e-06, -7.2317900813830087e-06, -9.0397376017287344e-07, -9.0397376017287386e-07, -9.0397376017287344e-07, -7.2317900813830256e-06, -9.0397376017287841e-06, -1.8079475203457772e-05, -1.446358016276588e-05, -1.4463580162765934e-05, -7.2317900813830222e-06, -2.1695370244148862e-05, -2.7119212805185836e-06, -7.9549690895212589e-05, -1.4463580162765934e-05, -6.5086110732446643e-05, -9.0397376017287714e-07, -9.0397376017287524e-07, -2.2599344004321605e-05, -1.4463580162766004e-05, -7.2317900813829951e-06, -6.3278163212101133e-06, -3.6158950406914959e-06, -1.8079475203457409e-06, -6.5086110732446561e-05, -1.8079475203457547e-06, -3.6158950406914887e-06, -3.615895040691487e-06, -6.5086110732446453e-05, -7.2317900813829807e-06, -9.0397376017287503e-07, -7.2317900813829968e-06, -9.0397376017287344e-07, -7.2317900813829909e-06, -9.0397376017287841e-06, -2.7119212805185793e-06, -7.2317900813829943e-06, -1.3559606402592953e-05, -9.039737601728709e-07, -7.2317900813829807e-06, -1.8079475203457606e-06, -1.8079475203457606e-06, -1.8079475203457589e-06, -9.0397376017287608e-07, -5.4238425610371951e-06, -2.7119212805185865e-06, -7.2317900813830138e-06, -7.2317900813830205e-06, -1.4463580162765972e-05, -2.3503317764494695e-05, -2.0791396483975935e-05, -9.039737601728709e-07, -1.4463580162765887e-05, -7.2317900813830155e-06, -5.4238425610371875e-06, -1.8079475203457405e-06, -9.0397376017287386e-07, -9.0397376017287863e-07, -7.2317900813831357e-05, -7.2317900813830382e-05, -0.00014644374914800549, -7.2317900813830382e-05, -7.2317900813830409e-05, -3.6158950406915213e-06, -1.8079475203457393e-06, -7.2317900813830392e-06, -8.1357638415557931e-06, -3.6158950406915213e-06, -9.9437113619015702e-06, -9.0397376017287735e-07, -9.0397376017287132e-07, -1.4463580162765921e-05, -7.2317900813829824e-06, -7.2317900813829892e-06, -9.0397376017287524e-07, -9.0397376017287725e-07, -3.6158950406915052e-06, -3.6158950406915069e-06, -1.4463580162765887e-05, -7.2317900813830205e-06, -9.0397376017287259e-07, -0.0001464437491480062, -7.2317900813830188e-06, -7.2317900813830155e-06, -9.0397376017287651e-07, -3.615895040691506e-06, -3.615895040691506e-06, -1.8079475203457426e-06, -1.8079475203457426e-06, -2.7119212805186009e-06, -9.0397376017287746e-07, -1.8079475203457426e-06, -1.8079475203457426e-06, -9.0397376017287428e-07, -9.0397376017287757e-07, -3.6158950406915052e-06, -1.0847685122074399e-05, -7.2317900813829807e-06, -9.0397376017287301e-07, -9.0397376017287132e-07, -1.6271527683111535e-05, -9.0397376017287598e-07, -3.6158950406914895e-06, -1.8079475203457359e-06, -1.4463580162765934e-05, -1.4463580162765934e-05, -4.5198688008643946e-06, -3.6158950406915009e-06, -1.8079475203457335e-06, -5.4238425610371951e-06, -7.6837769614694575e-05, -9.0397376017287481e-07, -3.6158950406915009e-06, -3.6158950406915026e-06, -1.4463580162765934e-05, -1.4463580162765934e-05, -3.6158950406915026e-06, -3.6158950406914946e-06, -3.6158950406914937e-06, -9.0397376017287323e-07, -4.158279296795187e-05, -9.0397376017287977e-06, -9.0397376017287778e-07, -7.2317900813830155e-06, -7.2317900813829392e-06, -7.2317900813830188e-06, -1.4463580162765934e-05, -7.2317900813829917e-06, -1.4463580162765934e-05, -7.2317900813829384e-06, -7.2317900813829392e-06, 0.0034052691545712146, -7.2317900813830138e-06, -0.00018079475203457241, -7.2317900813829858e-06, -1.8079475203457551e-06, -5.4238425610372166e-05, -1.0847685122074397e-05, -4.5198688008643972e-06, -5.4238425610371543e-05, -9.0397376017287196e-07, -7.2317900813830078e-06, -7.2317900813830061e-06, -0.0001464437491480062, -7.231790081382979e-06, -7.2317900813829773e-06, -0.00020700999107958672, -2.711921280518581e-06, -0.00018079475203457225, -7.2317900813830019e-06, -7.2317900813830053e-06, -9.039737601728709e-07, -7.2317900813830036e-06, -7.2317900813830104e-06, -9.0397376017287259e-07, -1.4463580162765934e-05, -1.4463580162765934e-05, -1.8079475203457589e-06, -3.615895040691506e-06, -3.615895040691506e-06, -7.2317900813830155e-06, -7.2317900813830188e-06, -0.00014644374914800549, -7.2317900813830205e-06, -7.2317900813830138e-06, -2.440729152466753e-05, -8.6781480976595311e-05, -7.2317900813830087e-06, -6.4182136972273357e-05, -1.0847685122074321e-05, -1.0847685122074321e-05, -7.2317900813830188e-06, -7.2317900813830324e-06, -9.0397376017288468e-06, -7.2317900813830392e-06, -9.0397376017287841e-06, -1.8983448963630383e-05, -7.2317900813829807e-06, -4.5198688008644649e-06, -2.0791396483975915e-05, -7.2317900813829807e-06, -1.0847685122074394e-05, -2.7119212805185861e-06, -4.5198688008643955e-06, -1.8079475203457594e-06, -9.0397376017287735e-07, -9.0397376017287503e-07, -7.2317900813830392e-06, -1.0847685122074341e-05, -5.4238425610371892e-06, -3.6158950406914912e-06, -7.2317900813830222e-06, -7.2317900813830358e-06, -7.2317900813829392e-06, -1.4463580162765978e-05, -7.2317900813829706e-06, -3.6158950406915026e-06, -1.4463580162765936e-05, -7.2317900813829706e-06, -3.6158950406915009e-06, -7.2317900813829392e-06, -9.0397376017287174e-07, -7.2317900813829723e-06, -7.2317900813829706e-06, -1.4463580162766044e-05, -2.1695370244148692e-05, -7.2317900813829909e-06, -1.4463580162766065e-05, -1.4463580162766038e-05, -7.2317900813829723e-06, -7.2317900813829739e-06, -7.2317900813829807e-06, -7.2317900813829739e-06, -8.1357638415557355e-06, -3.0735107845877522e-05, -1.807947520345731e-06, -7.2317900813830358e-06, -7.2317900813829689e-06, -8.1357638415557389e-06, -2.3503317764494678e-05, -7.2317900813830188e-06, -7.2317900813829968e-06, -7.2317900813830375e-06, -3.6158950406915009e-06, -3.6158950406915018e-06, -9.0397376017287714e-07, -9.0397376017288032e-07, -9.0397376017287778e-07, -1.8079475203457522e-06, -1.5367553922938761e-05, -2.7119212805186042e-05, -1.0847685122074407e-05, -5.4238425610371951e-06, -9.0397376017287481e-07, -3.6158950406915009e-06, -1.4463580162765934e-05, -2.1695370244148862e-05, -7.2317900813830324e-06, -3.6158950406915001e-06, -1.4463580162765934e-05, -1.4463580162765934e-05, -3.6158950406915001e-06, -1.08476851220744e-05, -7.231790081382979e-06, -9.0397376017287947e-07, -1.8079475203457321e-06, -3.6158950406915009e-06, -3.6158950406915026e-06, -8.135763841555749e-06, -4.5198688008644505e-06, -7.2317900813830155e-06, -1.4463580162765904e-05, -6.5086110732446561e-05, -3.615895040691517e-06, -9.0397376017287344e-07, -5.423842561037218e-05, -7.2317900813829875e-06, -4.3390740488297656e-05, -4.3390740488297669e-05, -4.5198688008643116e-05, -4.3390740488297656e-05, -3.6158950406915162e-06, -3.6158950406915162e-06, -7.2317900813829985e-06, -7.2317900813829909e-06, -3.6158950406914971e-06, -3.6158950406914963e-06, -7.231790081383029e-06, -9.0397376017287947e-07, -7.231790081383029e-06, -9.039737601728746e-07, -9.039737601728709e-07, -6.3278163212100559e-05, -3.6158950406914963e-06, -3.6158950406914971e-06, -5.5142399370544632e-05, -1.8079475203457568e-06, -6.5086110732446453e-05, -6.5086110732446561e-05, -7.2317900813829858e-06, -9.0397376017287344e-07, -7.2317900813829909e-06, -6.5086110732446643e-05, -6.5086110732446507e-05, -7.2317900813829892e-06, -7.2317900813829841e-06, -1.8079475203457452e-06, -1.8079475203457543e-06, -1.4463580162765945e-05, -7.2317900813829841e-06, -7.2317900813829875e-06, -2.7119212805186035e-06, -1.4463580162765945e-05, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -2.4226496772633041e-05, -2.4105966937943106e-05, -6.0264917344857947e-07, -1.2052983468971531e-07, -3.6158950406915071e-07, -1.2052983468971666e-06, -9.6423867751773596e-06, -2.4105966937943061e-07, -1.1088744791453816e-05, -1.2052983468971531e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751773613e-06, -9.6423867751773596e-06, -9.6423867751772224e-07, -2.7360272474565218e-05, -2.4105966937943051e-07, -2.4105966937943428e-05, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943051e-07, -2.4105966937943051e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -9.6423867751772181e-07, -6.0264917344857947e-07, -3.6158950406915103e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -1.80794752034576e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.0847685122074245e-06, -9.6423867751772245e-07, -1.8079475203457547e-06, 0.00049079748685652283, -1.2052983468971528e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971528e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943051e-07, -1.2052983468971533e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.2052983468971642e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.2052983468971528e-07, -9.6423867751772245e-07, -2.0490071897251414e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -1.9284773550354445e-06, -3.8569547100708873e-06, -3.0132458672428959e-06, -9.6423867751772245e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -1.2052983468971644e-06, -1.3258281815868631e-06, -4.8211933875886101e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943056e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -2.4105966937943056e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772266e-07, -9.6423867751772224e-07, -2.8927160325532057e-06, -9.6423867751772202e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -4.8211933875886133e-07, -2.1695370244148532e-06, -4.8211933875886133e-07, -1.2052983468971528e-07, -2.4105966937943066e-07, -1.5668878509663148e-06, -9.6423867751772245e-07, -1.9284773550354445e-06, -1.0124506113936171e-05, -9.6423867751772245e-07, -1.0606625452694913e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354445e-06, -9.6423867751773037e-06, -1.9284773550354445e-06, -9.7629166098670286e-06, -1.2052983468971531e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886112e-07, -1.0124506113936169e-05, -9.6423867751773596e-06, -9.6423867751772596e-06, -9.6423867751773257e-06, -1.2052983468971528e-07, -4.8211933875886091e-07, -1.2052983468971533e-07, -1.2052983468971528e-07, -1.2052983468971525e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -9.6423867751772224e-07, -1.2052983468971683e-06, -2.4105966937943306e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -2.8927160325532086e-06, -3.6158950406915632e-07, -1.0606625452694989e-05, -1.9284773550354449e-06, -8.6781480976594468e-06, -1.2052983468971531e-07, -1.2052983468971533e-07, -3.0132458672428878e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -8.437088428280204e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -8.6781480976594434e-06, 0.00049079748685652283, -4.8211933875886133e-07, -4.8211933875886133e-07, -8.6781480976594434e-06, -9.6423867751772266e-07, -1.2052983468971533e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.2052983468971636e-06, -3.6158950406915103e-07, -9.6423867751772245e-07, -1.8079475203457479e-06, -1.2052983468971533e-07, -9.6423867751772266e-07, -2.4105966937943051e-07, -2.4105966937943051e-07, -2.4105966937943056e-07, -1.2052983468971533e-07, -7.2317900813830608e-07, -3.615895040691424e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -3.1337757019326212e-06, -2.7721861978634553e-06, -1.2052983468971533e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -7.2317900813830766e-07, -2.4105966937943056e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -9.6423867751773257e-06, -9.6423867751772596e-06, -1.9525833219734152e-05, -9.6423867751772766e-06, -9.6423867751773037e-06, -4.8211933875886101e-07, -2.4105966937943061e-07, -9.6423867751772202e-07, -1.0847685122074224e-06, -4.8211933875886101e-07, -1.3258281815868699e-06, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -9.6423867751772245e-07, -1.2052983468971533e-07, -1.9525833219734111e-05, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -3.6158950406915113e-07, -1.2052983468971531e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -4.8211933875886101e-07, -1.446358016276605e-06, -9.6423867751772245e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -2.1695370244148575e-06, -1.2052983468971531e-07, -4.8211933875886091e-07, -2.4105966937943056e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -6.0264917344858254e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -7.2317900813830205e-07, -1.0245035948625833e-05, -1.2052983468971533e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971533e-07, -5.5443723957268895e-06, -1.2052983468971589e-06, -1.2052983468971528e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.7002659249743252e-05, -9.6423867751772245e-07, -2.4105966937943258e-05, -9.6423867751772245e-07, -2.4105966937943061e-07, -7.231790081382946e-06, -1.4463580162766045e-06, -6.0264917344858137e-07, -7.2317900813830265e-06, -1.2052983468971533e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9525833219734111e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.7601332143944705e-05, -3.6158950406915081e-07, -2.4105966937943282e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971533e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943056e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9525833219734152e-05, -9.6423867751772224e-07, -9.6423867751772224e-07, -3.2543055366223033e-06, -1.1570864130212835e-05, -9.6423867751772245e-07, -8.5576182629696863e-06, -1.4463580162766033e-06, -1.4463580162766033e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971691e-06, -9.6423867751772224e-07, -1.2052983468971672e-06, -2.5311265284840411e-06, -9.6423867751772245e-07, -6.0264917344858381e-07, -2.7721861978634401e-06, -9.6423867751772245e-07, -1.4463580162766045e-06, -3.6158950406915563e-07, -6.0264917344858127e-07, -2.4105966937943051e-07, -1.2052983468971528e-07, -1.2052983468971533e-07, -9.6423867751772224e-07, -1.4463580162766039e-06, -7.2317900813830735e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.9284773550354445e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -9.6423867751772266e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.2052983468971533e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354445e-06, -2.8927160325532074e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.0847685122074296e-06, -4.0980143794503083e-06, -2.4105966937943051e-07, -9.6423867751772202e-07, -9.6423867751772266e-07, -1.0847685122074296e-06, -3.1337757019325462e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -1.2052983468971525e-07, -1.2052983468971528e-07, -2.4105966937943066e-07, -2.0490071897251338e-06, -3.6158950406914768e-06, -1.4463580162766045e-06, -7.2317900813830608e-07, -1.2052983468971533e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -2.8927160325532074e-06, -9.6423867751772202e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -1.4463580162766043e-06, -9.6423867751772245e-07, -1.2052983468971528e-07, -2.4105966937943056e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.0847685122074279e-06, -6.0264917344858286e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -8.6781480976594332e-06, -4.8211933875886112e-07, -1.2052983468971533e-07, -7.2317900813829443e-06, -9.6423867751772245e-07, -5.785432065106502e-06, -5.7854320651064147e-06, -6.0264917344857909e-06, -5.785432065106502e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772224e-07, -1.2052983468971528e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -8.4370884282800698e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.3523199160726726e-06, -2.4105966937943056e-07, -8.6781480976594434e-06, -8.6781480976594434e-06, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -8.6781480976594468e-06, -8.6781480976594298e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943061e-07, -2.4105966937943056e-07, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.6158950406915097e-07, -1.9284773550354453e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.026491734485764e-08, -6.0264917344857653e-08, -1.2113248386316544e-05, -1.2052983468971582e-05, -3.0132458672429069e-07, -6.026491734485764e-08, -1.8079475203457612e-07, -6.0264917344858519e-07, -4.8211933875886866e-06, -1.2052983468971531e-07, -5.544372395726898e-06, -6.0264917344857653e-08, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886696e-06, -4.8211933875886781e-06, -4.8211933875886101e-07, -1.3680136237282573e-05, -1.2052983468971552e-07, -1.2052983468971739e-05, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971552e-07, -1.2052983468971552e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886091e-07, -3.0132458672429069e-07, -1.8079475203457625e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.026491734485764e-08, -9.0397376017287407e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -5.4238425610370992e-07, -4.8211933875886122e-07, -9.0397376017287947e-07, -1.2052983468971528e-07, 0.00024545900834560639, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.026491734485764e-08, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971525e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -9.6423867751772245e-07, -6.0264917344858392e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -6.026491734485764e-08, -4.8211933875886122e-07, -1.0245035948625709e-06, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354479e-06, -1.5066229336214517e-06, -4.8211933875886122e-07, -9.6423867751772224e-07, -9.6423867751772202e-07, -2.4105966937943051e-07, -4.8211933875886122e-07, -6.0264917344858413e-07, -6.6291409079343028e-07, -2.4105966937943051e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.2052983468971525e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -6.0264917344857627e-08, -4.8211933875886122e-07, -1.2052983468971528e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.026491734485764e-08, -4.8211933875886101e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -1.4463580162766088e-06, -4.8211933875886101e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -1.084768512207422e-06, -2.4105966937943061e-07, -6.026491734485764e-08, -1.2052983468971531e-07, -7.8344392548315826e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -5.062253056968072e-06, -4.8211933875886122e-07, -5.3033127263474456e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772202e-07, -4.8211933875886645e-06, -9.6423867751772224e-07, -4.8814583049335329e-06, -6.0264917344857653e-08, -9.6423867751772224e-07, -9.6423867751772202e-07, -2.4105966937943051e-07, -5.0622530569680686e-06, -4.8211933875886866e-06, -4.8211933875886603e-06, -4.821193387588673e-06, -6.026491734485764e-08, -2.4105966937943051e-07, -6.0264917344857653e-08, -6.026491734485764e-08, -6.0264917344857759e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886112e-07, -6.0264917344858603e-07, -1.2052983468971691e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -4.8211933875886112e-07, -1.4463580162766102e-06, -1.8079475203457887e-07, -5.3033127263474888e-06, -9.6423867751772224e-07, -4.3390740488297047e-06, -6.0264917344857653e-08, -6.0264917344857653e-08, -1.5066229336214568e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.2185442141400279e-07, 0.00024527821359357163, -1.2052983468971528e-07, -4.3390740488297031e-06, -1.2052983468971528e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.3390740488297031e-06, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.026491734485837e-07, -1.8079475203457046e-07, -4.8211933875886122e-07, -9.0397376017287407e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -1.2052983468971552e-07, -1.2052983468971552e-07, -1.2052983468971525e-07, -6.0264917344857653e-08, -3.6158950406915457e-07, -1.807947520345785e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -1.5668878509663119e-06, -1.386093098931715e-06, -6.0264917344857653e-08, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.6158950406915531e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.821193387588673e-06, -4.8211933875886603e-06, -9.762916609867098e-06, -4.8211933875886603e-06, -4.8211933875886645e-06, -2.4105966937943051e-07, -1.2052983468971531e-07, -4.8211933875886101e-07, -5.4238425610370886e-07, -2.4105966937943051e-07, -6.6291409079343377e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.026491734485764e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -9.6423867751772224e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -9.7629166098670743e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.8079475203457625e-07, -6.026491734485764e-08, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -6.026491734485764e-08, -2.4105966937943051e-07, -7.2317900813830576e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -1.0847685122074245e-06, -6.0264917344857653e-08, -2.4105966937943051e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.0132458672429201e-07, -2.4105966937943061e-07, -1.2052983468971528e-07, -3.615895040691524e-07, -5.1225179743129167e-06, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.0264917344857653e-08, -2.772186197863435e-06, -6.0264917344858137e-07, -6.026491734485764e-08, -4.8211933875886112e-07, -4.8211933875886101e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -4.8211933875886101e-07, -9.6423867751772245e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -1.85013296248717e-05, -4.8211933875886122e-07, -1.2052983468971658e-05, -4.8211933875886122e-07, -1.2052983468971528e-07, -3.6158950406914836e-06, -7.2317900813830523e-07, -3.0132458672429153e-07, -3.6158950406915247e-06, -6.0264917344857653e-08, -4.8211933875886112e-07, -4.8211933875886112e-07, -9.7629166098670743e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.3800666071972319e-05, -1.8079475203457035e-07, -1.2052983468971668e-05, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886112e-07, -4.8211933875886112e-07, -6.0264917344857653e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971525e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.762916609867098e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.627152768311151e-06, -5.7854320651064418e-06, -4.8211933875886122e-07, -4.2788091314848245e-06, -7.2317900813830459e-07, -7.2317900813830459e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -6.0264917344858646e-07, -4.8211933875886101e-07, -6.0264917344858497e-07, -1.2655632642420205e-06, -4.8211933875886122e-07, -3.0132458672429291e-07, -1.3860930989317171e-06, -4.8211933875886122e-07, -7.2317900813830523e-07, -1.8079475203457856e-07, -3.0132458672429153e-07, -1.2052983468971552e-07, -6.026491734485764e-08, -6.0264917344857653e-08, -4.8211933875886101e-07, -7.2317900813830481e-07, -3.6158950406915521e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -4.8211933875886101e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.4463580162765753e-06, -4.8211933875886122e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -5.4238425610371246e-07, -2.0490071897251541e-06, -1.2052983468971525e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -5.4238425610371246e-07, -1.5668878509663134e-06, -4.8211933875886101e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.0264917344857653e-08, -6.0264917344857759e-08, -6.026491734485764e-08, -1.2052983468971531e-07, -1.0245035948626046e-06, -1.807947520345746e-06, -7.2317900813830523e-07, -3.6158950406915457e-07, -6.0264917344857653e-08, -2.4105966937943061e-07, -9.6423867751772224e-07, -1.4463580162766094e-06, -4.8211933875886101e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -7.2317900813830512e-07, -4.8211933875886122e-07, -6.0264917344857627e-08, -1.2052983468971525e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -5.4238425610371161e-07, -3.0132458672429238e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.339074048829698e-06, -2.4105966937943051e-07, -6.0264917344857653e-08, -3.6158950406914836e-06, -4.8211933875886122e-07, -2.8927160325532628e-06, -2.8927160325532192e-06, -3.0132458672429031e-06, -2.8927160325532628e-06, -2.4105966937943051e-07, -2.4105966937943051e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886112e-07, -6.0264917344857627e-08, -4.8211933875886112e-07, -6.0264917344857653e-08, -6.026491734485764e-08, -4.2185442141400154e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -3.6761599580363465e-06, -1.2052983468971528e-07, -4.3390740488297031e-06, -4.3390740488297031e-06, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.3390740488297047e-06, -4.3390740488296963e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.807947520345762e-07, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6905987090531567e-05, -9.6423867751771814e-05, -2.410596693794306e-06, -4.8211933875886133e-07, -1.4463580162765882e-06, -4.8211933875886425e-06, -3.8569547100709249e-05, -9.6423867751772266e-07, -4.4354979165815611e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100709249e-05, -3.8569547100709235e-05, -3.8569547100708898e-06, -0.00010944108989826158, -9.6423867751772245e-07, -9.6423867751773101e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708889e-06, -2.4105966937943052e-06, -1.4463580162765893e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813829943e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297564e-06, -3.8569547100708915e-06, -7.2317900813829706e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, 0.0019602972313935386, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886315e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -8.1960287589006369e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.2052983468971507e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.8211933875886332e-06, -5.3033127263474693e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212721e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976595128e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652475e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.0498024455744617e-05, -3.8569547100708906e-06, -4.2426501810779768e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100708998e-05, -7.7139094201417796e-06, -3.9051666439468033e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.0498024455744603e-05, -3.8569547100709249e-05, -3.8569547100708971e-05, -3.8569547100709072e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886391e-06, -9.6423867751772749e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -1.1570864130212716e-05, -1.4463580162766105e-06, -4.24265018107801e-05, -7.7139094201417813e-06, -3.4712592390638187e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971544e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.374835371312052e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390638173e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390638173e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886188e-06, -1.4463580162765893e-06, -3.8569547100708915e-06, -7.2317900813829468e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325531938e-06, -1.4463580162766071e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730461e-05, -1.1088744791453908e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532006e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709072e-05, -3.8569547100708971e-05, -7.8103332878936283e-05, -3.8569547100708971e-05, -3.8569547100708998e-05, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297395e-06, -1.9284773550354449e-06, -5.3033127263474922e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.810333287893612e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162765893e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -5.7854320651063605e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976595298e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943166e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -2.8927160325531777e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.2177489582907711e-05, -4.8211933875886112e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897141, -3.8569547100708906e-06, -9.642386775177241e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -2.8927160325531611e-05, -5.7854320651063521e-06, -2.4105966937943136e-06, -2.8927160325531936e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.810333287893612e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577963, -1.4463580162765901e-06, -9.6423867751772491e-05, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936283e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489266e-05, -4.6283456520850844e-05, -3.8569547100708915e-06, -3.4230473051879064e-05, -5.7854320651063537e-06, -5.7854320651063537e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886425e-06, -3.8569547100708898e-06, -4.8211933875886408e-06, -1.0124506113936147e-05, -3.8569547100708915e-06, -2.4105966937943179e-06, -1.1088744791453855e-05, -3.8569547100708906e-06, -5.7854320651063521e-06, -1.4463580162765982e-06, -2.4105966937943128e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063571e-06, -2.8927160325531989e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, 0.0019602972313935386, -7.7139094201417796e-06, -1.1570864130212728e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297683e-06, -1.6392057517801355e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488297734e-06, -1.2535102807730471e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -8.1960287589005878e-06, -1.4463580162765823e-05, -5.7854320651063436e-06, -2.8927160325531938e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417813e-06, -1.1570864130212726e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651063656e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.3390740488297615e-06, -2.4105966937943196e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.4712592390638133e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531611e-05, -3.8569547100708906e-06, -2.3141728260425767e-05, -2.3141728260425422e-05, -2.4105966937943011e-05, -2.3141728260425767e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.3748353713120516e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.9409279664290589e-05, -9.6423867751772245e-07, -3.4712592390638173e-05, -3.4712592390638173e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390638187e-05, -3.4712592390638119e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.446358016276588e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6905987090531621e-05, -9.6423867751771841e-05, -2.4105966937943052e-06, -4.8211933875886133e-07, -1.4463580162765886e-06, -4.8211933875886408e-06, -3.8569547100709235e-05, -9.6423867751772266e-07, -4.4354979165815597e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100709235e-05, -3.8569547100709235e-05, -3.8569547100708898e-06, -0.00010944108989826155, -9.6423867751772245e-07, -9.6423867751773101e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708889e-06, -2.4105966937943052e-06, -1.4463580162765897e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813829985e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297598e-06, -3.8569547100708915e-06, -7.2317900813829723e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, 0.0019602972313935386, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886307e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -8.1960287589006352e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.2052983468971511e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.8211933875886324e-06, -5.3033127263474693e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212718e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976595061e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652458e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.0498024455744617e-05, -3.8569547100708906e-06, -4.2426501810779768e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100708998e-05, -7.7139094201417796e-06, -3.9051666439468019e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.0498024455744603e-05, -3.8569547100709235e-05, -3.8569547100708964e-05, -3.8569547100709066e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886391e-06, -9.6423867751772749e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -1.1570864130212719e-05, -1.4463580162766105e-06, -4.24265018107801e-05, -7.7139094201417813e-06, -3.471259239063816e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971551e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120545e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.471259239063816e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390638146e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886188e-06, -1.4463580162765897e-06, -3.8569547100708915e-06, -7.2317900813829502e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325531955e-06, -1.4463580162766075e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730461e-05, -1.1088744791453901e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532014e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709066e-05, -3.8569547100708964e-05, -7.8103332878936283e-05, -3.8569547100708964e-05, -3.8569547100708998e-05, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297352e-06, -1.9284773550354449e-06, -5.3033127263474939e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936107e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162765897e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -5.7854320651063605e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976595264e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943162e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -2.8927160325531786e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.2177489582907697e-05, -4.8211933875886103e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897149, -3.8569547100708906e-06, -9.6423867751772437e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -2.8927160325531625e-05, -5.785432065106347e-06, -2.4105966937943128e-06, -2.8927160325531943e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936107e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577958, -1.4463580162765897e-06, -9.6423867751772518e-05, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936283e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489273e-05, -4.6283456520850871e-05, -3.8569547100708915e-06, -3.4230473051879064e-05, -5.7854320651063554e-06, -5.7854320651063554e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886425e-06, -3.8569547100708898e-06, -4.8211933875886391e-06, -1.0124506113936147e-05, -3.8569547100708915e-06, -2.4105966937943179e-06, -1.1088744791453848e-05, -3.8569547100708906e-06, -5.785432065106347e-06, -1.446358016276599e-06, -2.4105966937943119e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063571e-06, -2.8927160325532006e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886144e-07, 0.0019602972313935386, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.1570864130212721e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297666e-06, -1.6392057517801355e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488297784e-06, -1.2535102807730471e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -8.1960287589005861e-06, -1.4463580162765819e-05, -5.7854320651063402e-06, -2.8927160325531955e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417813e-06, -1.1570864130212723e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651063639e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.3390740488297581e-06, -2.4105966937943187e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.4712592390638119e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531618e-05, -3.8569547100708906e-06, -2.3141728260425778e-05, -2.3141728260425429e-05, -2.4105966937943018e-05, -2.3141728260425778e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.3748353713120503e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.9409279664290602e-05, -9.6423867751772245e-07, -3.4712592390638146e-05, -3.471259239063816e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.471259239063816e-05, -3.4712592390638092e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765876e-06, -7.713909420141783e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -1.211324838631652e-05, -1.2052983468971558e-05, -3.0132458672429005e-07, -6.0264917344857653e-08, -1.8079475203457546e-07, -6.0264917344858392e-07, -4.8211933875886849e-06, -1.2052983468971531e-07, -5.5443723957269048e-06, -6.0264917344857666e-08, -9.6423867751772224e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886849e-06, -4.8211933875886849e-06, -4.8211933875886112e-07, -1.3680136237282604e-05, -1.2052983468971525e-07, -1.2052983468971719e-05, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971525e-07, -1.2052983468971525e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.8211933875886112e-07, -3.0132458672429005e-07, -1.8079475203457557e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857653e-08, -9.0397376017288074e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -5.4238425610371436e-07, -4.8211933875886133e-07, -9.0397376017287757e-07, -1.2052983468971528e-07, -6.026491734485764e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, 0.00024545900834560644, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -9.6423867751772245e-07, -6.0264917344858264e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -1.024503594862573e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -1.928477355035444e-06, -1.5066229336214488e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -6.0264917344858286e-07, -6.6291409079343367e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857627e-08, -4.8211933875886122e-07, -1.2052983468971533e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -9.6423867751772224e-07, -9.6423867751772224e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886112e-07, -1.4463580162766045e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -1.0847685122074262e-06, -2.4105966937943066e-07, -6.0264917344857653e-08, -1.2052983468971533e-07, -7.8344392548315742e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -5.0622530569680822e-06, -4.8211933875886122e-07, -5.3033127263474524e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772224e-07, -4.8211933875886552e-06, -9.6423867751772245e-07, -4.8814583049335245e-06, -6.0264917344857653e-08, -9.6423867751772245e-07, -9.6423867751772224e-07, -2.4105966937943056e-07, -5.0622530569680822e-06, -4.8211933875886849e-06, -4.821193387588651e-06, -4.8211933875886637e-06, -6.0264917344857666e-08, -2.4105966937943051e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -6.0264917344857627e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.8211933875886133e-07, -6.0264917344858032e-07, -1.205298346897167e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -1.446358016276605e-06, -1.8079475203457824e-07, -5.3033127263474947e-06, -9.6423867751772245e-07, -4.3390740488297217e-06, -6.0264917344857666e-08, -6.0264917344857666e-08, -1.5066229336214534e-06, -9.6423867751772266e-07, -4.8211933875886122e-07, -4.2185442141401216e-07, -2.4105966937943056e-07, -1.2052983468971528e-07, -4.33907404882972e-06, -1.2052983468971528e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.33907404882972e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -6.0264917344857989e-07, -1.8079475203457557e-07, -4.8211933875886133e-07, -9.0397376017287481e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -1.2052983468971525e-07, -1.2052983468971525e-07, -1.2052983468971528e-07, -6.0264917344857666e-08, -3.615895040691532e-07, -1.8079475203457784e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.5668878509663106e-06, -1.3860930989317268e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.6158950406915394e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.8211933875886637e-06, -4.821193387588651e-06, -9.7629166098670811e-06, -4.821193387588651e-06, -4.8211933875886552e-06, -2.4105966937943061e-07, -1.2052983468971531e-07, -4.8211933875886112e-07, -5.4238425610371098e-07, -2.4105966937943061e-07, -6.6291409079343441e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -9.6423867751772266e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -9.7629166098670574e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.8079475203457557e-07, -6.026491734485764e-08, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -2.4105966937943061e-07, -7.2317900813830269e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -1.0847685122074283e-06, -6.0264917344857653e-08, -2.4105966937943051e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.0132458672429143e-07, -2.4105966937943061e-07, -1.2052983468971528e-07, -3.6158950406915103e-07, -5.1225179743129167e-06, -6.0264917344857666e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943066e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.0264917344857666e-08, -2.7721861978634401e-06, -6.0264917344858021e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.8211933875886101e-07, -9.6423867751772245e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -1.8501329624871629e-05, -4.8211933875886122e-07, -1.2052983468971634e-05, -4.8211933875886133e-07, -1.2052983468971528e-07, -3.6158950406914768e-06, -7.2317900813829655e-07, -3.01324586724291e-07, -3.615895040691517e-06, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.7629166098670574e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.3800666071972349e-05, -1.8079475203457551e-07, -1.2052983468971644e-05, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971528e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.7629166098670811e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.6271527683111911e-06, -5.7854320651064198e-06, -4.8211933875886122e-07, -4.2788091314848397e-06, -7.2317900813830184e-07, -7.2317900813830184e-07, -4.8211933875886133e-07, -4.8211933875886112e-07, -6.0264917344858053e-07, -4.8211933875886112e-07, -6.026491734485837e-07, -1.2655632642420197e-06, -4.8211933875886133e-07, -3.0132458672429005e-07, 0.00024413318016401947, -4.8211933875886122e-07, -7.231790081382957e-07, -1.8079475203457109e-07, -3.013245867242909e-07, -1.2052983468971525e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.8211933875886112e-07, -7.2317900813830227e-07, -3.6158950406915383e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886101e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.4105966937943061e-07, -4.8211933875886101e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772224e-07, -1.4463580162766045e-06, -4.8211933875886133e-07, -9.6423867751772224e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -5.4238425610371458e-07, -2.0490071897251584e-06, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -5.4238425610373035e-07, -1.5668878509663123e-06, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886112e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.0264917344857653e-08, -6.0264917344857627e-08, -6.0264917344857666e-08, -1.2052983468971533e-07, -1.0245035948625669e-06, -1.8079475203457384e-06, -7.2317900813829909e-07, -3.615895040691532e-07, -6.0264917344857666e-08, -2.4105966937943061e-07, -9.6423867751772245e-07, -1.446358016276605e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -7.2317900813830227e-07, -4.8211933875886122e-07, -6.026491734485764e-08, -1.2052983468971531e-07, -2.4105966937943061e-07, -2.4105966937943066e-07, -5.4238425610371373e-07, -3.0132458672429175e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.3390740488297149e-06, -2.4105966937943056e-07, -6.0264917344857666e-08, -3.615895040691476e-06, -4.8211933875886122e-07, -2.8927160325532523e-06, -2.8927160325532091e-06, -3.0132458672428959e-06, -2.8927160325532523e-06, -2.4105966937943056e-07, -2.4105966937943056e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -6.026491734485764e-08, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.2185442141400273e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -3.6761599580363414e-06, -1.2052983468971531e-07, -4.33907404882972e-06, -4.33907404882972e-06, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.3390740488297217e-06, -4.3390740488297132e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.807947520345753e-07, -9.6423867751772266e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -1.2113248386316503e-05, -1.2052983468971536e-05, -3.0132458672428931e-07, -6.0264917344857653e-08, -1.8079475203457493e-07, -6.0264917344858222e-07, -4.821193387588673e-06, -1.2052983468971533e-07, -5.5443723957269183e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.821193387588673e-06, -4.8211933875886722e-06, -4.8211933875886122e-07, -1.3680136237282628e-05, -1.2052983468971528e-07, -1.2052983468971697e-05, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886101e-07, -3.0132458672428926e-07, -1.8079475203457504e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857653e-08, -9.0397376017287852e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610371373e-07, -4.8211933875886133e-07, -9.0397376017287598e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, 0.00024545900834560633, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971528e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -9.6423867751772266e-07, -6.0264917344858116e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -1.0245035948625726e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.928477355035444e-06, -1.5066229336214458e-06, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943056e-07, -4.8211933875886133e-07, -6.0264917344858137e-07, -6.6291409079343229e-07, -2.4105966937943056e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.4463580162765992e-06, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.0847685122074296e-06, -2.4105966937943072e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -7.834439254831571e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -5.0622530569680839e-06, -4.8211933875886144e-07, -5.3033127263474626e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -4.8211933875886434e-06, -9.6423867751772245e-07, -4.8814583049335092e-06, -6.0264917344857679e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -5.0622530569680839e-06, -4.821193387588673e-06, -4.821193387588623e-06, -4.8211933875886552e-06, -6.0264917344857653e-08, -2.4105966937943051e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.026491734485764e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886122e-07, -6.0264917344858328e-07, -1.2052983468971636e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -1.4463580162766007e-06, -1.8079475203457771e-07, -5.3033127263475007e-06, -9.6423867751772266e-07, -4.3390740488297352e-06, -6.0264917344857666e-08, -6.0264917344857679e-08, -1.5066229336214418e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.2185442141400914e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -4.3390740488297335e-06, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297335e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -6.0264917344858074e-07, -1.8079475203457506e-07, -4.8211933875886133e-07, -9.039737601728727e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -3.6158950406915209e-07, -1.8079475203457228e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -1.56688785096631e-06, -1.3860930989317302e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -3.6158950406915293e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886552e-06, -4.821193387588623e-06, -9.7629166098670659e-06, -4.8211933875886315e-06, -4.8211933875886434e-06, -2.4105966937943056e-07, -1.2052983468971533e-07, -4.8211933875886112e-07, -5.4238425610371267e-07, -2.4105966937943056e-07, 0.00024485635917215778, -6.0264917344857666e-08, -6.0264917344857666e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.7629166098670438e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -1.8079475203457506e-07, -6.0264917344857653e-08, -1.2052983468971533e-07, -1.2052983468971533e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -2.4105966937943056e-07, -7.2317900813830068e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -1.0847685122074317e-06, -6.0264917344857679e-08, -2.4105966937943051e-07, -1.2052983468971531e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.0132458672429079e-07, -2.4105966937943066e-07, -1.2052983468971531e-07, -3.6158950406915007e-07, -5.1225179743129167e-06, -6.0264917344857679e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857679e-08, -2.7721861978634498e-06, -6.0264917344857852e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.8501329624871578e-05, -4.8211933875886133e-07, -1.2052983468971612e-05, -4.8211933875886133e-07, -1.2052983468971531e-07, -3.6158950406914671e-06, -7.2317900813830047e-07, -3.0132458672429021e-07, -3.6158950406915081e-06, -6.0264917344857679e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.7629166098670438e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.3800666071972374e-05, -1.8079475203457496e-07, -1.2052983468971624e-05, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670659e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.6271527683111525e-06, -5.785432065106402e-06, -4.8211933875886133e-07, -4.2788091314848525e-06, -7.2317900813829983e-07, -7.2317900813829983e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.026491734485836e-07, -4.8211933875886122e-07, -6.0264917344858264e-07, -1.2655632642420203e-06, -4.8211933875886133e-07, -3.0132458672429143e-07, -1.3860930989317228e-06, -4.8211933875886133e-07, -7.2317900813830047e-07, -1.8079475203457737e-07, -3.0132458672429016e-07, -1.2052983468971528e-07, -6.0264917344857653e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -7.2317900813830015e-07, -3.6158950406915277e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -1.4463580162766001e-06, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610371627e-07, -2.049007189725158e-06, -1.2052983468971525e-07, -4.8211933875886112e-07, -4.8211933875886144e-07, -5.4238425610371627e-07, -1.5668878509662812e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857666e-08, -6.026491734485764e-08, -6.0264917344857653e-08, -1.2052983468971536e-07, -1.0245035948625686e-06, -1.8079475203457357e-06, -7.2317900813830047e-07, -3.6158950406915209e-07, -6.0264917344857679e-08, -2.4105966937943066e-07, -9.6423867751772266e-07, -1.4463580162765999e-06, -4.8211933875886112e-07, -2.4105966937943066e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -7.2317900813830036e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -5.4238425610371542e-07, -3.01324586724291e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -4.3390740488297285e-06, -2.4105966937943061e-07, -6.0264917344857679e-08, -3.6158950406914671e-06, -4.8211933875886133e-07, -2.8927160325532438e-06, -2.8927160325532006e-06, -3.0132458672428912e-06, -2.8927160325532438e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.2185442141400434e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -3.6761599580363329e-06, -1.2052983468971531e-07, -4.3390740488297335e-06, -4.3390740488297335e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.3390740488297352e-06, -4.3390740488297268e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.8079475203457504e-07, -9.6423867751772287e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6905987090531947e-05, -9.6423867751772207e-05, -2.4105966937943111e-06, -4.8211933875886122e-07, -1.4463580162765973e-06, -4.8211933875886527e-06, -3.856954710070933e-05, -9.6423867751772266e-07, -4.4354979165815401e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100709337e-05, -3.856954710070933e-05, -3.8569547100708898e-06, -0.00010944108989826113, -9.6423867751772224e-07, -9.6423867751773494e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.4105966937943111e-06, -1.4463580162765986e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -7.2317900813830214e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.3390740488297166e-06, -3.8569547100708906e-06, -7.2317900813830002e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, 0.0019602972313935386, -3.8569547100708915e-06, -9.6423867751772224e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886434e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -8.1960287589005878e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971556e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -4.8211933875886442e-06, -5.3033127263474609e-06, -1.9284773550354445e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212779e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594502e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652543e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -4.0498024455744671e-05, 0.0019602972313935386, -4.2426501810779721e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709106e-05, -7.7139094201417796e-06, -3.9051666439468047e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.0498024455744664e-05, -3.856954710070933e-05, -3.856954710070893e-05, -3.8569547100709194e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886595e-06, -9.6423867751772952e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -1.1570864130212791e-05, -1.4463580162766198e-06, -4.2426501810780026e-05, -7.7139094201417813e-06, -3.4712592390637943e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971524e-05, -7.713909420141783e-06, -3.8569547100708915e-06, -3.3748353713120676e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390637929e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390637929e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886408e-06, -1.4463580162765986e-06, -3.8569547100708906e-06, -7.2317900813829731e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325532129e-06, -1.4463580162765825e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730475e-05, -1.1088744791453855e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532192e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709194e-05, -3.856954710070893e-05, -7.8103332878936473e-05, -3.8569547100708998e-05, -3.8569547100709106e-05, -1.9284773550354445e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297081e-06, -1.9284773550354445e-06, -5.303312726347488e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936296e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4463580162765986e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651063978e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -8.6781480976594671e-06, -4.8211933875886144e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -7.713909420141783e-06, -7.713909420141783e-06, -2.4105966937943234e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325531964e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886144e-07, -2.2177489582907619e-05, -4.8211933875886222e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00014801063699897241, -3.8569547100708906e-06, -9.6423867751772817e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.8927160325531709e-05, -5.7854320651063961e-06, -2.4105966937943187e-06, -2.8927160325532031e-05, -4.8211933875886144e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936296e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577912, -1.4463580162765978e-06, -9.6423867751772911e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936473e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489224e-05, -4.6283456520851155e-05, -3.8569547100708906e-06, -3.4230473051878874e-05, -5.785432065106391e-06, -5.785432065106391e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886629e-06, -3.8569547100708898e-06, -4.8211933875886552e-06, -1.0124506113936161e-05, -3.8569547100708906e-06, -2.4105966937943285e-06, -1.1088744791453794e-05, -3.8569547100708906e-06, -5.7854320651063961e-06, -1.446358016276617e-06, -2.4105966937943183e-06, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063936e-06, -2.892716032553218e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.1570864130212785e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297369e-06, -1.6392057517801281e-05, -9.6423867751772202e-07, -3.8569547100708889e-06, -3.8569547100708915e-06, -4.3390740488297369e-06, -1.253510280773028e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -8.1960287589005573e-06, -1.446358016276587e-05, -5.7854320651063961e-06, -2.8927160325532129e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417813e-06, -1.1570864130212785e-05, -3.8569547100708889e-06, -1.9284773550354453e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354453e-06, -5.7854320651063953e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.3390740488297302e-06, -2.4105966937943246e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -3.4712592390637882e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531703e-05, -3.8569547100708906e-06, -2.314172826042592e-05, -2.3141728260425571e-05, -2.4105966937943109e-05, -2.314172826042592e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.3748353713120388e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.940927966429065e-05, -9.6423867751772245e-07, -3.4712592390637929e-05, -3.4712592390637929e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390637943e-05, -3.4712592390637868e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765984e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6905987090531838e-05, -9.6423867751772098e-05, -2.4105966937943128e-06, -4.8211933875886122e-07, -1.4463580162765956e-06, -4.8211933875886544e-06, -3.8569547100709357e-05, -9.6423867751772266e-07, -4.4354979165815455e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100709357e-05, -3.856954710070935e-05, -3.8569547100708898e-06, -0.00010944108989826124, -9.6423867751772224e-07, -9.6423867751773386e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.4105966937943124e-06, -1.4463580162765969e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -7.2317900813830146e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.3390740488297217e-06, -3.8569547100708906e-06, -7.2317900813829926e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, 0.0019602972313935386, -9.6423867751772224e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886459e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -8.1960287589005827e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971543e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -4.8211933875886476e-06, -5.3033127263474592e-06, -1.9284773550354445e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212765e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594603e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652551e-06, -3.8569547100708906e-06, 0.0019564402766834681, -4.0498024455744671e-05, -3.8569547100708915e-06, -4.2426501810779707e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.856954710070912e-05, -7.7139094201417796e-06, -3.905166643946806e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.0498024455744671e-05, -3.8569547100709357e-05, -3.8569547100708957e-05, -3.8569547100709215e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886629e-06, -9.642386775177302e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -1.1570864130212777e-05, -1.4463580162766181e-06, -4.2426501810780012e-05, -7.7139094201417813e-06, -3.4712592390637984e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971531e-05, -7.713909420141783e-06, -3.8569547100708915e-06, -3.37483537131206e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390637984e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390637984e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886425e-06, -1.4463580162765969e-06, -3.8569547100708906e-06, -7.2317900813829663e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325532095e-06, -1.44635801627658e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730476e-05, -1.1088744791453869e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532158e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709215e-05, -3.8569547100708957e-05, -7.81033328789365e-05, -3.8569547100709025e-05, -3.856954710070912e-05, -1.9284773550354445e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297132e-06, -1.9284773550354445e-06, -5.3033127263474863e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936337e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4463580162765999e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.785432065106391e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -8.6781480976594823e-06, -4.8211933875886144e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -7.713909420141783e-06, -7.713909420141783e-06, -2.4105966937943246e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325531938e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886144e-07, -2.2177489582907646e-05, -4.8211933875886247e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00014801063699897222, -3.8569547100708906e-06, -9.6423867751772708e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.8927160325531682e-05, -5.7854320651063893e-06, -2.41059669379432e-06, -2.8927160325532004e-05, -4.8211933875886144e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936337e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577921, -1.4463580162765961e-06, -9.6423867751772803e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.81033328789365e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.301722214648922e-05, -4.6283456520851115e-05, -3.8569547100708906e-06, -3.4230473051878921e-05, -5.7854320651063842e-06, -5.7854320651063842e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886654e-06, -3.8569547100708898e-06, -4.8211933875886578e-06, -1.0124506113936163e-05, -3.8569547100708906e-06, -2.4105966937943297e-06, -1.1088744791453808e-05, -3.8569547100708906e-06, -5.7854320651063893e-06, -1.4463580162766153e-06, -2.4105966937943196e-06, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063868e-06, -2.8927160325532146e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.1570864130212772e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297429e-06, -1.639205751780127e-05, -9.6423867751772202e-07, -3.8569547100708889e-06, -3.8569547100708915e-06, -4.3390740488297429e-06, -1.2535102807730302e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -8.1960287589005624e-06, -1.4463580162765856e-05, -5.7854320651063893e-06, -2.8927160325532095e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417813e-06, -1.1570864130212772e-05, -3.8569547100708889e-06, -1.9284773550354453e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354453e-06, -5.7854320651063885e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.3390740488297352e-06, -2.4105966937943263e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -3.4712592390637943e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531676e-05, -3.8569547100708906e-06, -2.3141728260425893e-05, -2.3141728260425544e-05, -2.4105966937943082e-05, -2.3141728260425893e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.3748353713120442e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.9409279664290616e-05, -9.6423867751772245e-07, -3.4712592390637984e-05, -3.4712592390637984e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390637984e-05, -3.4712592390637929e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765967e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971525e-07, -1.2052983468971531e-07, -2.4226496772632624e-05, -2.4105966937942716e-05, -6.026491734485837e-07, -1.2052983468971525e-07, -3.6158950406914626e-07, -1.2052983468971759e-06, -9.6423867751774341e-06, -2.4105966937943061e-07, -1.1088744791454001e-05, -1.2052983468971531e-07, -1.928477355035444e-06, -1.9284773550354436e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751774341e-06, -9.6423867751774324e-06, -9.6423867751772245e-07, -2.736027247456559e-05, -2.4105966937943051e-07, -2.4105966937943035e-05, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971528e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943051e-07, -2.4105966937943051e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772202e-07, -6.0264917344858392e-07, -3.6158950406914658e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971525e-07, -1.8079475203457371e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.0847685122074467e-06, -9.6423867751772245e-07, -1.8079475203457367e-06, -2.4105966937943051e-07, -1.2052983468971525e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, 0.00049079748685652272, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.2052983468971729e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.2052983468971531e-07, -9.6423867751772224e-07, -2.0490071897251596e-06, -9.6423867751772202e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -3.8569547100708881e-06, -3.0132458672428472e-06, -9.6423867751772224e-07, -1.928477355035444e-06, -1.928477355035444e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -1.2052983468971733e-06, -1.3258281815868574e-06, -4.8211933875886101e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -2.4105966937943051e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.2052983468971523e-07, -9.6423867751772224e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, 0.00024539874342826136, -1.928477355035444e-06, -1.928477355035444e-06, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772245e-07, -9.6423867751772202e-07, -2.8927160325531701e-06, -9.6423867751772202e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -4.8211933875886122e-07, -2.1695370244148651e-06, -4.8211933875886122e-07, -1.2052983468971531e-07, -2.4105966937943061e-07, -1.5668878509663148e-06, -9.6423867751772245e-07, -1.9284773550354445e-06, -1.0124506113936178e-05, -9.6423867751772224e-07, -1.0606625452694868e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.928477355035444e-06, -9.6423867751773748e-06, -1.928477355035444e-06, -9.7629166098671014e-06, -1.2052983468971528e-07, -1.928477355035444e-06, -1.928477355035444e-06, -4.8211933875886122e-07, -1.0124506113936175e-05, -9.6423867751774341e-06, -9.6423867751773681e-06, -9.6423867751773918e-06, -1.2052983468971531e-07, -4.8211933875886112e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971525e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.2052983468971776e-06, -2.4105966937943492e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -2.8927160325532002e-06, -3.6158950406915177e-07, -1.0606625452694959e-05, -1.9284773550354449e-06, -8.6781480976596213e-06, -1.2052983468971531e-07, -1.2052983468971531e-07, -3.0132458672428904e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -8.4370884282801998e-07, -4.8211933875886101e-07, -2.4105966937943051e-07, -8.6781480976596179e-06, -2.4105966937943051e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -8.6781480976596179e-06, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.2052983468971725e-06, -3.6158950406914658e-07, -9.6423867751772245e-07, -1.8079475203457257e-06, -1.2052983468971531e-07, -9.6423867751772245e-07, -2.4105966937943051e-07, -2.4105966937943051e-07, -2.4105966937943051e-07, -1.2052983468971531e-07, -7.2317900813829697e-07, -3.6158950406915103e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.9284773550354449e-06, -3.1337757019326212e-06, -2.7721861978635015e-06, -1.2052983468971531e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -7.2317900813829867e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751773918e-06, -9.6423867751773681e-06, -1.952583321973426e-05, -9.6423867751773681e-06, -9.6423867751773748e-06, -4.8211933875886101e-07, -2.4105966937943061e-07, -9.6423867751772202e-07, -1.0847685122074446e-06, -4.8211933875886101e-07, -1.3258281815868648e-06, -1.2052983468971525e-07, -1.2052983468971531e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971525e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.9525833219734216e-05, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -3.6158950406914658e-07, -1.2052983468971525e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -4.8211933875886112e-07, -1.446358016276587e-06, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -2.1695370244149019e-06, -1.2052983468971528e-07, -4.8211933875886069e-07, -2.4105966937943056e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -6.0264917344858677e-07, -4.8211933875886112e-07, -2.4105966937943056e-07, -7.2317900813829316e-07, -1.0245035948625833e-05, -1.2052983468971531e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -5.5443723957269785e-06, -1.2052983468971678e-06, -1.2052983468971531e-07, -9.6423867751772202e-07, -9.6423867751772181e-07, -9.6423867751772202e-07, -1.9284773550354449e-06, -9.6423867751772139e-07, -1.9284773550354449e-06, -9.6423867751772181e-07, -9.6423867751772181e-07, -3.7002659249742567e-05, -9.6423867751772245e-07, -2.4105966937942865e-05, -9.6423867751772245e-07, -2.4105966937943051e-07, -7.2317900813828571e-06, -1.4463580162765867e-06, -6.0264917344858582e-07, -7.2317900813829384e-06, -1.2052983468971531e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.9525833219734216e-05, -9.6423867751772224e-07, -9.6423867751772224e-07, -2.7601332143945044e-05, -3.6158950406914637e-07, -2.4105966937942886e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971525e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.2052983468971531e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943051e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.952583321973426e-05, -9.6423867751772202e-07, -9.6423867751772202e-07, -3.2543055366222978e-06, -1.1570864130212692e-05, -9.6423867751772245e-07, -8.5576182629698303e-06, -1.4463580162766014e-06, -1.4463580162766005e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.2052983468971782e-06, -9.6423867751772202e-07, -1.2052983468971676e-06, -2.5311265284840411e-06, -9.6423867751772245e-07, -6.0264917344858836e-07, -2.7721861978634905e-06, -9.6423867751772224e-07, -1.4463580162765867e-06, -3.6158950406915113e-07, -6.0264917344858582e-07, -2.4105966937943051e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.4463580162766052e-06, -7.2317900813828808e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772181e-07, -1.9284773550354436e-06, -9.6423867751772245e-07, -4.8211933875886112e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -4.8211933875886112e-07, -9.6423867751772181e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.928477355035444e-06, -2.8927160325531718e-06, -9.6423867751772245e-07, -1.928477355035444e-06, -1.9284773550354436e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.0847685122074283e-06, -4.0980143794503083e-06, -2.4105966937943051e-07, -9.6423867751772202e-07, -9.6423867751772245e-07, -1.0847685122074518e-06, -3.1337757019326318e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.2052983468971531e-07, -1.2052983468971525e-07, -1.2052983468971531e-07, -2.4105966937943061e-07, -2.0490071897251478e-06, 0.00024190337822226006, -1.4463580162765867e-06, -7.2317900813829697e-07, -1.2052983468971531e-07, -4.8211933875886112e-07, -1.9284773550354449e-06, -2.8927160325531972e-06, -9.6423867751772202e-07, -4.8211933875886112e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886112e-07, -1.4463580162765863e-06, -9.6423867751772224e-07, -1.2052983468971525e-07, -2.4105966937943051e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -1.0847685122074275e-06, -6.0264917344858751e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -8.6781480976596077e-06, -4.8211933875886122e-07, -1.2052983468971531e-07, -7.2317900813828571e-06, -9.6423867751772224e-07, -5.7854320651063063e-06, -5.7854320651064088e-06, -6.0264917344857816e-06, -5.7854320651063063e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.2052983468971525e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -8.4370884282802002e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.3523199160725718e-06, -2.4105966937943051e-07, -8.6781480976596179e-06, -8.6781480976596179e-06, -9.6423867751772224e-07, -1.2052983468971528e-07, -9.6423867751772224e-07, -8.6781480976596213e-06, -8.6781480976596043e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.6158950406914923e-07, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -1.2113248386316476e-05, -1.2052983468971511e-05, -3.0132458672428889e-07, -6.0264917344857666e-08, -1.8079475203457427e-07, -6.0264917344858159e-07, -4.8211933875886662e-06, -1.2052983468971536e-07, -5.5443723957269319e-06, -6.0264917344857679e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886662e-06, -4.8211933875886662e-06, -4.8211933875886122e-07, -1.3680136237282655e-05, -1.2052983468971531e-07, -1.2052983468971672e-05, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886101e-07, -3.0132458672428889e-07, -1.807947520345744e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857666e-08, -9.0397376017287693e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610371585e-07, -4.8211933875886144e-07, -9.0397376017287386e-07, -1.2052983468971533e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, 0.00024545900834560644, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344858032e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344857666e-08, -4.8211933875886144e-07, -1.0245035948625792e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6423867751772266e-07, -1.9284773550354445e-06, -1.5066229336214426e-06, -4.8211933875886144e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -6.0264917344858053e-07, -6.6291409079343261e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -1.2052983468971533e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.4463580162765939e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.0847685122074338e-06, -2.4105966937943072e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -7.8344392548315657e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -5.0622530569680788e-06, -4.8211933875886144e-07, -5.3033127263474643e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -4.8211933875886357e-06, -9.6423867751772266e-07, -4.8814583049335092e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -5.0622530569680788e-06, -4.8211933875886662e-06, -4.8211933875886315e-06, -4.8211933875886442e-06, -6.0264917344857666e-08, -2.4105966937943061e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -6.0264917344858243e-07, -1.2052983468971619e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -4.8211933875886133e-07, -1.4463580162765954e-06, -1.8079475203457708e-07, -5.3033127263475066e-06, -9.6423867751772266e-07, -4.339074048829753e-06, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.5066229336214477e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.2185442141400491e-07, -2.4105966937943061e-07, -1.2052983468971533e-07, -4.339074048829753e-06, -1.2052983468971533e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297513e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857989e-07, -1.807947520345744e-07, -4.8211933875886144e-07, -9.0397376017287111e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -3.6158950406914499e-07, -1.8079475203457665e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -1.5668878509663059e-06, -1.3860930989317336e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -3.6158950406915156e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886442e-06, -4.8211933875886315e-06, -9.7629166098670489e-06, -4.8211933875886315e-06, -4.8211933875886357e-06, -2.4105966937943061e-07, -1.2052983468971536e-07, -4.8211933875886112e-07, -5.4238425610371786e-07, -2.4105966937943061e-07, -6.629140907934361e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.7629166098670269e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.807947520345744e-07, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943061e-07, -7.2317900813829782e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.0847685122074366e-06, -6.0264917344857679e-08, -2.4105966937943051e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.0132458672429021e-07, -2.4105966937943072e-07, -1.2052983468971533e-07, -3.615895040691487e-07, -5.1225179743129167e-06, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, 0.00024274708706508797, -6.0264917344857777e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.8501329624871507e-05, -4.8211933875886133e-07, -1.205298346897159e-05, -4.8211933875886144e-07, -1.2052983468971533e-07, -3.6158950406914675e-06, -7.2317900813829782e-07, -3.0132458672428984e-07, -3.6158950406914904e-06, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670269e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.3800666071972413e-05, -1.807947520345743e-07, -1.20529834689716e-05, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670489e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.6271527683111536e-06, -5.7854320651063842e-06, -4.8211933875886144e-07, -4.2788091314848736e-06, -7.2317900813829718e-07, -7.2317900813829718e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344858286e-07, -4.8211933875886122e-07, -6.0264917344858137e-07, -1.265563264242018e-06, -4.8211933875886144e-07, -3.0132458672429111e-07, -1.3860930989317272e-06, -4.8211933875886144e-07, -7.2317900813829782e-07, -1.807947520345767e-07, -3.0132458672428984e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -7.2317900813829718e-07, -3.6158950406915134e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.4463580162765952e-06, -4.8211933875886144e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610371849e-07, -2.0490071897251668e-06, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -5.4238425610371849e-07, -1.5668878509663074e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.0245035948625707e-06, -1.8079475203457325e-06, -7.2317900813829761e-07, -3.6158950406914499e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -9.6423867751772266e-07, -1.4463580162765946e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -7.2317900813829771e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -5.4238425610371765e-07, -3.0132458672429058e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.3390740488297369e-06, -2.4105966937943061e-07, -6.0264917344857679e-08, -3.6158950406914666e-06, -4.8211933875886144e-07, -2.8927160325532332e-06, -2.8927160325531896e-06, -3.0132458672428853e-06, -2.8927160325532332e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.2185442141400764e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -3.6761599580363405e-06, -1.2052983468971533e-07, -4.3390740488297513e-06, -4.339074048829753e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.339074048829753e-06, -4.3390740488297446e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.807947520345744e-07, -9.6423867751772287e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.690598709053173e-05, -9.6423867751772003e-05, -2.4105966937943094e-06, -4.8211933875886133e-07, -1.4463580162765925e-06, -4.8211933875886493e-06, -3.8569547100709303e-05, -9.6423867751772266e-07, -4.4354979165815509e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100709303e-05, -3.8569547100709289e-05, -3.8569547100708898e-06, -0.00010944108989826137, -9.6423867751772245e-07, -9.6423867751773264e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708889e-06, -2.4105966937943094e-06, -1.4463580162765935e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813830087e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.339074048829753e-06, -3.8569547100708915e-06, -7.2317900813829841e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, 0.0019602972313935386, -7.713909420141783e-06, -4.8211933875886383e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -8.1960287589006233e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.2052983468971531e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.82119338758864e-06, -5.3033127263474693e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212748e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594857e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652509e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.049802445574463e-05, -3.8569547100708906e-06, -4.2426501810779728e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709052e-05, -7.7139094201417796e-06, -3.9051666439468074e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.049802445574463e-05, -3.8569547100709303e-05, -3.8569547100709025e-05, -3.8569547100709127e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886391e-06, -9.6423867751772884e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -1.157086413021275e-05, -1.4463580162766149e-06, -4.2426501810780066e-05, -7.7139094201417813e-06, -3.4712592390638078e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971572e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120655e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390638065e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390638065e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886188e-06, -1.4463580162765935e-06, -3.8569547100708915e-06, -7.2317900813829604e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325532023e-06, -1.4463580162766115e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730464e-05, -1.1088744791453879e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532091e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709127e-05, -3.8569547100709025e-05, -7.8103332878936364e-05, -3.8569547100709025e-05, -3.8569547100709052e-05, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297251e-06, -1.9284773550354449e-06, -5.3033127263474888e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936202e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162765935e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -5.7854320651063741e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976595027e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.41059669379432e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -2.8927160325531862e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.2177489582907656e-05, -4.821193387588618e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897184, -3.8569547100708906e-06, -9.64238677517726e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -2.8927160325531665e-05, -5.7854320651063334e-06, -2.410596693794317e-06, -2.8927160325531994e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936202e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577942, -1.4463580162765935e-06, -9.6423867751772695e-05, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936364e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489335e-05, -4.6283456520850979e-05, -3.8569547100708915e-06, -3.4230473051878989e-05, -5.7854320651063707e-06, -5.7854320651063707e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886425e-06, -3.8569547100708898e-06, -4.8211933875886476e-06, -1.0124506113936151e-05, -3.8569547100708915e-06, -2.4105966937943179e-06, -1.1088744791453832e-05, -3.8569547100708906e-06, 0.001958368754038502, -1.4463580162765914e-06, -2.4105966937943162e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063741e-06, -2.8927160325532074e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.1570864130212755e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297547e-06, -1.6392057517801321e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488297937e-06, -1.2535102807730478e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -8.1960287589005742e-06, -1.4463580162765833e-05, -5.785432065106347e-06, -2.8927160325532023e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417813e-06, -1.1570864130212753e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651063792e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.3390740488297479e-06, -2.410596693794323e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.4712592390638024e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531665e-05, -3.8569547100708906e-06, -2.3141728260425839e-05, -2.314172826042549e-05, -2.4105966937943052e-05, -2.3141728260425839e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.3748353713120435e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.9409279664290629e-05, -9.6423867751772245e-07, -3.4712592390638065e-05, -3.4712592390638065e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390638078e-05, -3.4712592390638011e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765914e-06, -7.713909420141783e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -0.00019381197418106208, -0.00019284773550354271, -4.8211933875886408e-06, -9.6423867751772245e-07, -2.8927160325532069e-06, -9.6423867751773359e-06, -7.7139094201418931e-05, -1.9284773550354457e-06, -8.8709958331631615e-05, -9.6423867751772287e-07, -1.5427818840283556e-05, -1.5427818840283556e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201418931e-05, -7.7139094201418904e-05, -7.7139094201417796e-06, -0.00021888217979652283, -1.9284773550354449e-06, -0.00019284773550354525, -1.5427818840283556e-05, -7.7139094201417813e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.713909420141783e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -7.7139094201417762e-06, -4.8211933875886357e-06, -2.8927160325532137e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -1.4463580162765945e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -8.6781480976595365e-06, -7.713909420141783e-06, -1.4463580162765907e-05, -1.9284773550354449e-06, -9.6423867751772245e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -7.713909420141783e-06, 0.003912880553366937, -9.6423867751772783e-06, -7.7139094201417813e-06, -1.5427818840283563e-05, -9.6423867751772245e-07, -7.7139094201417813e-06, -1.6392057517801311e-05, -7.7139094201417796e-06, -7.713909420141783e-06, -1.5427818840283559e-05, -3.0855637680567112e-05, -2.410596693794316e-05, -7.7139094201417813e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -7.713909420141783e-06, -9.642386775177285e-06, -1.0606625452694905e-05, -3.8569547100708898e-06, -1.5427818840283556e-05, -7.713909420141783e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -9.6423867751772224e-07, -7.7139094201417813e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -9.6423867751772266e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -7.7139094201417796e-06, -2.3141728260425371e-05, -7.7139094201417796e-06, -7.713909420141783e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -7.7139094201417813e-06, -1.5427818840283566e-05, -3.8569547100708915e-06, -1.7356296195319107e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.2535102807730527e-05, -7.7139094201417813e-06, -1.5427818840283563e-05, -8.0996048911489342e-05, -7.7139094201417813e-06, -8.485300362155932e-05, -7.713909420141783e-06, -7.713909420141783e-06, -1.5427818840283559e-05, -7.7139094201418457e-05, -1.5427818840283559e-05, -7.8103332878936364e-05, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -8.0996048911489342e-05, -7.7139094201418931e-05, -7.7139094201418402e-05, -7.7139094201418592e-05, -9.6423867751772245e-07, -3.8569547100708881e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -7.713909420141783e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -7.7139094201417796e-06, -9.6423867751773528e-06, -1.9284773550354658e-05, -1.5427818840283559e-05, -1.5427818840283563e-05, -7.7139094201417796e-06, -2.3141728260425395e-05, -2.8927160325532158e-06, -8.4853003621559929e-05, -1.5427818840283559e-05, -6.9425184781275994e-05, -9.6423867751772266e-07, -9.6423867751772287e-07, -2.4105966937942981e-05, -1.5427818840283566e-05, -7.7139094201417813e-06, -6.7496707426241268e-06, -3.8569547100708889e-06, -1.9284773550354449e-06, -6.9425184781275967e-05, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -6.9425184781275967e-05, -7.713909420141783e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -9.6423867751773121e-06, -2.8927160325531739e-06, -7.713909420141783e-06, -1.446358016276585e-05, -9.6423867751772287e-07, -7.713909420141783e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -5.7854320651063792e-06, -2.8927160325532095e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283563e-05, -2.5070205615460983e-05, -2.2177489582907921e-05, -9.6423867751772287e-07, -1.5427818840283563e-05, -7.7139094201417813e-06, -5.7854320651063919e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.7139094201418592e-05, -7.7139094201418402e-05, -0.00015620666575787316, -7.7139094201418402e-05, -7.7139094201418457e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -7.7139094201417779e-06, -8.6781480976595196e-06, -3.8569547100708898e-06, -1.0606625452694964e-05, -9.6423867751772245e-07, -9.6423867751772287e-07, -1.5427818840283566e-05, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.5427818840283559e-05, -7.7139094201417813e-06, -9.6423867751772287e-07, -0.00015620666575787281, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.8927160325531803e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -3.8569547100708898e-06, -1.1570864130212702e-05, -7.713909420141783e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.7356296195319148e-05, -9.6423867751772266e-07, -3.8569547100708881e-06, -1.9284773550354453e-06, -1.5427818840283563e-05, -1.5427818840283563e-05, -4.8211933875886417e-06, -3.8569547100708906e-06, -1.9284773550354449e-06, -5.785432065106347e-06, -8.1960287589006667e-05, -9.6423867751772287e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.5427818840283563e-05, -1.5427818840283563e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -4.4354979165815645e-05, -9.6423867751772732e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -7.7139094201417796e-06, -1.5427818840283563e-05, -7.7139094201417779e-06, -1.5427818840283563e-05, -7.7139094201417779e-06, -7.7139094201417779e-06, -0.00029602127399794135, -7.7139094201417813e-06, -0.00019284773550354474, -7.713909420141783e-06, -1.9284773550354449e-06, -5.7854320651063033e-05, -1.1570864130212699e-05, -4.8211933875886527e-06, -5.785432065106367e-05, -9.6423867751772287e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00015620666575787281, -7.7139094201417813e-06, -7.7139094201417813e-06, -0.00022081065715155992, -2.8927160325531722e-06, -0.00019284773550354409, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772266e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772287e-07, -1.5427818840283563e-05, -1.5427818840283563e-05, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -0.00015620666575787316, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.603444429297843e-05, -9.2566913041701579e-05, -7.713909420141783e-06, -6.8460946103758466e-05, -1.1570864130212689e-05, -1.1570864130212689e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751773562e-06, -7.7139094201417796e-06, -9.6423867751773376e-06, -2.0249012227872329e-05, -7.713909420141783e-06, -4.821193387588673e-06, -2.2177489582907768e-05, -7.7139094201417813e-06, -1.1570864130212699e-05, -2.8927160325532103e-06, -4.8211933875886527e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -7.7139094201417796e-06, -1.1570864130212694e-05, -5.7854320651063893e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.5427818840283556e-05, -7.7139094201417813e-06, -3.8569547100708906e-06, -1.5427818840283559e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -7.7139094201417779e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -7.713909420141783e-06, -1.5427818840283559e-05, -2.3141728260425384e-05, -7.713909420141783e-06, -1.5427818840283556e-05, -1.5427818840283556e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -8.6781480976595772e-06, -3.2784115035602832e-05, -1.9284773550354445e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -8.6781480976595772e-06, -2.507020561546101e-05, -7.7139094201417796e-06, -7.713909420141783e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.6392057517801223e-05, -2.8927160325531543e-05, -1.1570864130212699e-05, -5.7854320651063792e-06, -9.6423867751772287e-07, -3.8569547100708906e-06, -1.5427818840283559e-05, -2.3141728260425381e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -1.5427818840283563e-05, -1.5427818840283563e-05, -3.8569547100708906e-06, -1.1570864130212741e-05, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -8.6781480976595637e-06, -4.8211933875886662e-06, -7.7139094201417813e-06, -1.5427818840283563e-05, -6.9425184781276645e-05, -3.8569547100708898e-06, -9.6423867751772287e-07, -5.7854320651063019e-05, -7.7139094201417813e-06, -4.628345652085146e-05, -4.6283456520850776e-05, -4.8211933875885785e-05, -4.628345652085146e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.713909420141783e-06, 0.0019564402766834681, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -6.7496707426241141e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -5.8818559328580825e-05, -1.9284773550354449e-06, -6.9425184781275967e-05, -6.9425184781275967e-05, -7.7139094201417813e-06, -9.6423867751772266e-07, 0.0019564402766834681, -6.9425184781275994e-05, -6.9425184781276455e-05, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -1.5427818840283566e-05, -7.713909420141783e-06, -7.713909420141783e-06, -2.8927160325531735e-06, -1.5427818840283566e-05, -4.8211933875886747e-06, -4.8211933875886662e-06, -4.8211933875886645e-06, -4.8211933875886756e-06, -2.4105966937943166e-06, -2.4105966937943166e-06, -4.8211933875886298e-06, -4.8211933875886307e-06, -6.0264917344858201e-07, -6.0264917344857936e-07, -0.00012113248386316485, -0.00012052983468971605, -3.0132458672429022e-06, -6.0264917344858201e-07, -1.8079475203457236e-06, -6.02649173448584e-06, -4.821193387588613e-05, -1.2052983468971587e-06, -5.5443723957269259e-05, -6.0264917344857852e-07, -9.6423867751773308e-06, -9.6423867751773342e-06, -4.8211933875886315e-06, -4.821193387588629e-06, -4.8211933875886158e-05, -4.8211933875886158e-05, -4.8211933875886722e-06, -0.00013680136237282712, -1.2052983468971691e-06, -0.00012052983468971573, -9.6423867751773274e-06, -4.8211933875886654e-06, -4.8211933875886739e-06, -6.0264917344857777e-07, -6.0264917344858264e-07, -4.8211933875886586e-06, -4.8211933875886561e-06, -1.2052983468971691e-06, -1.2052983468971691e-06, -6.0264917344857841e-07, -6.0264917344858084e-07, -4.8211933875886256e-06, -3.0132458672428925e-06, -1.8079475203457367e-06, -2.4105966937943162e-06, -2.410596693794317e-06, -6.0264917344858201e-07, -9.0397376017288519e-06, -4.8211933875886451e-06, -4.8211933875886442e-06, -5.4238425610372197e-06, -4.8211933875886324e-06, -9.039737601728796e-06, -1.2052983468971642e-06, -6.0264917344858392e-07, -4.8211933875886315e-06, -4.8211933875886307e-06, -6.0264917344858264e-07, -6.0264917344858116e-07, -4.8211933875886434e-06, -4.8211933875886459e-06, -1.2052983468971729e-06, -6.0264917344858032e-07, -4.8211933875886383e-06, -9.6423867751772783e-06, 0.0024491662408950175, -4.8211933875886544e-06, -9.642386775177302e-06, -6.0264917344858275e-07, -4.8211933875886408e-06, 0.00023527423731432574, -4.8211933875886535e-06, -4.8211933875886459e-06, -9.6423867751773257e-06, -1.9284773550354679e-05, -1.5066229336214476e-05, -4.8211933875886256e-06, -9.6423867751772833e-06, -9.6423867751772867e-06, -2.4105966937943382e-06, -4.8211933875886247e-06, -6.026491734485729e-06, -6.6291409079343434e-06, -2.4105966937943382e-06, -9.642386775177346e-06, -4.8211933875886298e-06, -4.8211933875886527e-06, -4.8211933875886518e-06, -1.2052983468971727e-06, -4.8211933875886688e-06, -4.8211933875886256e-06, -6.0264917344858402e-07, -4.8211933875886273e-06, -1.2052983468971653e-06, -4.8211933875886696e-06, -4.8211933875886561e-06, -4.8211933875886535e-06, -6.0264917344858286e-07, -9.6423867751773325e-06, -9.6423867751773291e-06, -6.026491734485818e-07, -4.8211933875886298e-06, -4.8211933875886315e-06, -6.0264917344858169e-07, -4.8211933875886739e-06, -4.8211933875886764e-06, -4.8211933875886468e-06, -4.8211933875886756e-06, -1.4463580162765782e-05, -4.8211933875886705e-06, -4.82119338758864e-06, -4.8211933875886408e-06, -6.0264917344858063e-07, -4.8211933875886374e-06, -4.8211933875886391e-06, -9.642386775177302e-06, -2.410596693794317e-06, -1.0847685122074404e-05, -2.4105966937943162e-06, -6.0264917344858402e-07, -1.2052983468971625e-06, -7.8344392548314977e-06, -4.8211933875886535e-06, -9.6423867751773393e-06, -5.0622530569680636e-05, -4.8211933875886434e-06, -5.3033127263474775e-05, -4.8211933875886442e-06, -4.8211933875886468e-06, -9.6423867751772867e-06, -4.8211933875886632e-05, -9.6423867751772833e-06, -4.8814583049334857e-05, -6.0264917344857788e-07, -9.64238677517728e-06, -9.6423867751772901e-06, -2.4105966937943352e-06, -5.0622530569680636e-05, -4.821193387588613e-05, -4.8211933875886354e-05, -4.8211933875886679e-05, -6.0264917344858254e-07, -2.4105966937943119e-06, -6.0264917344858e-07, -6.0264917344858349e-07, -6.0264917344858434e-07, -4.8211933875886578e-06, -4.8211933875886569e-06, -4.8211933875886552e-06, -4.8211933875886544e-06, -6.0264917344858e-07, -6.0264917344858032e-07, -6.0264917344857979e-07, -4.8211933875886645e-06, -6.0264917344858485e-06, -1.2052983468971663e-05, -9.6423867751773596e-06, -9.6423867751772952e-06, -4.8211933875886654e-06, -1.4463580162765934e-05, -1.8079475203457526e-06, -5.3033127263475141e-05, -9.6423867751772986e-06, -4.3390740488297324e-05, -6.0264917344858233e-07, -6.0264917344858116e-07, -1.5066229336214506e-05, -9.642386775177302e-06, -4.8211933875886451e-06, -4.2185442141400459e-06, -2.4105966937943107e-06, -1.205298346897164e-06, -4.339074048829733e-05, -1.2052983468971642e-06, -2.4105966937943166e-06, -2.4105966937943166e-06, -4.339074048829733e-05, -4.8211933875886349e-06, -6.0264917344858084e-07, -4.8211933875886451e-06, -6.0264917344857979e-07, -4.8211933875886476e-06, -6.0264917344858349e-06, -1.8079475203457553e-06, -4.8211933875886459e-06, -9.0397376017286588e-06, -6.0264917344857841e-07, -4.8211933875886357e-06, -1.2052983468971691e-06, -1.2052983468971691e-06, -1.2052983468971621e-06, -6.0264917344858169e-07, -3.6158950406914853e-06, -1.8079475203457498e-06, -4.8211933875886612e-06, -4.8211933875886586e-06, -9.6423867751773138e-06, -1.5668878509663036e-05, -1.3860930989317145e-05, -6.0264917344857841e-07, -9.6423867751773426e-06, -4.8211933875886645e-06, -3.6158950406914904e-06, -1.2052983468971589e-06, -6.0264917344858032e-07, -6.0264917344858349e-07, -4.8211933875886679e-05, -4.8211933875886354e-05, -9.7629166098670743e-05, -4.8211933875886354e-05, -4.8211933875886632e-05, -2.4105966937943382e-06, -1.2052983468971619e-06, -4.8211933875886578e-06, -5.423842561037223e-06, -2.4105966937943382e-06, -6.6291409079343756e-06, -6.0264917344858212e-07, -6.0264917344857852e-07, -9.6423867751772952e-06, -4.8211933875886349e-06, -4.82119338758864e-06, -6.0264917344858127e-07, -6.0264917344858201e-07, -2.4105966937943289e-06, -2.4105966937943285e-06, -9.6423867751773409e-06, -4.8211933875886629e-06, -6.0264917344857936e-07, -9.7629166098669754e-05, -4.8211933875886595e-06, -4.8211933875886603e-06, -6.026491734485818e-07, -2.4105966937943285e-06, -2.4105966937943289e-06, -1.2052983468971566e-06, -1.2052983468971564e-06, -1.8079475203457346e-06, -6.0264917344858212e-07, -1.2052983468971564e-06, -1.2052983468971566e-06, -6.0264917344858032e-07, -6.0264917344858264e-07, -2.410596693794317e-06, -7.2317900813829706e-06, -4.8211933875886357e-06, -6.0264917344857989e-07, -6.0264917344857852e-07, -1.0847685122074395e-05, -6.0264917344858106e-07, -2.4105966937943348e-06, -1.2052983468971678e-06, -9.6423867751772681e-06, -9.6423867751772647e-06, -3.01324586724292e-06, -2.4105966937943238e-06, -1.2052983468971719e-06, -3.6158950406914857e-06, -5.122517974312924e-05, -6.0264917344858095e-07, -2.4105966937943246e-06, -2.4105966937943238e-06, -9.6423867751772613e-06, -9.6423867751772715e-06, -2.4105966937943255e-06, -2.4105966937943204e-06, -2.4105966937943204e-06, -6.0264917344857989e-07, -2.7721861978634559e-05, -6.0264917344857866e-06, -6.0264917344858286e-07, -4.8211933875886603e-06, -4.8211933875886747e-06, -4.8211933875886595e-06, -9.6423867751772715e-06, -4.8211933875886197e-06, -9.6423867751772613e-06, -4.8211933875886747e-06, -4.8211933875886747e-06, -0.00018501329624871386, -4.8211933875886654e-06, -0.00012052983468971554, -4.8211933875886374e-06, -1.2052983468971644e-06, -3.6158950406914635e-05, -7.2317900813829553e-06, -3.0132458672429124e-06, -3.6158950406914947e-05, -6.0264917344857883e-07, -4.8211933875886518e-06, -4.8211933875886527e-06, -9.7629166098669754e-05, -4.8211933875886324e-06, -4.8211933875886341e-06, -0.00013800666071972471, -1.8079475203457496e-06, -0.00012052983468971567, -4.8211933875886315e-06, -4.8211933875886298e-06, -6.0264917344858e-07, -4.8211933875886535e-06, -4.821193387588651e-06, -6.0264917344857957e-07, -9.6423867751772647e-06, -9.6423867751772681e-06, -1.2052983468971621e-06, -2.4105966937943289e-06, -2.4105966937943285e-06, -4.8211933875886645e-06, -4.8211933875886637e-06, -9.7629166098670743e-05, -4.8211933875886586e-06, -4.8211933875886612e-06, -1.6271527683111593e-05, -5.785432065106348e-05, -4.8211933875886298e-06, -4.2788091314848929e-05, -7.2317900813830019e-06, -7.2317900813830002e-06, -4.8211933875886662e-06, -4.8211933875886764e-06, -6.0264917344858527e-06, -4.8211933875886739e-06, -6.02649173448584e-06, -1.2655632642420171e-05, -4.8211933875886391e-06, -3.0132458672429225e-06, -1.3860930989317296e-05, -4.8211933875886324e-06, -7.2317900813829587e-06, -1.8079475203457505e-06, -3.0132458672429124e-06, -1.2052983468971678e-06, -6.0264917344858254e-07, -6.0264917344858084e-07, -4.8211933875886739e-06, -7.2317900813829968e-06, -3.6158950406914895e-06, -2.4105966937943187e-06, -4.8211933875886654e-06, -4.8211933875886722e-06, -4.8211933875886747e-06, -9.6423867751772529e-06, -4.8211933875886315e-06, -2.4105966937943238e-06, -9.6423867751772444e-06, -4.821193387588629e-06, -2.4105966937943246e-06, -4.8211933875886747e-06, -6.0264917344857883e-07, -4.8211933875886307e-06, -4.8211933875886315e-06, -9.6423867751773291e-06, -1.4463580162765972e-05, -4.8211933875886468e-06, -9.6423867751773274e-06, -9.6423867751773359e-06, -4.8211933875886307e-06, -4.8211933875886298e-06, -4.8211933875886324e-06, -4.8211933875886341e-06, -5.4238425610371748e-06, -2.0490071897251677e-05, -1.2052983468971757e-06, -4.8211933875886705e-06, -4.8211933875886298e-06, -5.4238425610371765e-06, -1.5668878509663023e-05, -4.8211933875886662e-06, -4.8211933875886451e-06, -4.8211933875886747e-06, -2.4105966937943238e-06, -2.4105966937943238e-06, -6.0264917344858233e-07, -6.0264917344858434e-07, -6.0264917344858275e-07, -1.2052983468971634e-06, -1.0245035948625837e-05, -1.8079475203457314e-05, -7.2317900813829519e-06, -3.6158950406914853e-06, -6.0264917344858063e-07, -2.4105966937943221e-06, -9.6423867751772986e-06, -1.4463580162765914e-05, -4.8211933875886713e-06, -2.410596693794323e-06, -9.6423867751772918e-06, -9.6423867751772952e-06, -2.410596693794323e-06, -7.2317900813829418e-06, -4.8211933875886324e-06, -6.0264917344858127e-07, -1.205298346897174e-06, -2.4105966937943221e-06, -2.4105966937943255e-06, -5.4238425610371892e-06, -3.0132458672429192e-06, -4.8211933875886595e-06, -9.6423867751772783e-06, -4.3390740488297479e-05, -2.4105966937943352e-06, -6.026491734485801e-07, -3.6158950406914635e-05, -4.8211933875886408e-06, -2.8927160325532028e-05, -2.8927160325532014e-05, -3.0132458672429006e-05, -2.8927160325532028e-05, -2.4105966937943352e-06, -2.4105966937943357e-06, 0.0019593329927160203, -4.8211933875886264e-06, -2.4105966937943217e-06, -2.4105966937943217e-06, -4.8211933875886696e-06, -6.0264917344858106e-07, -4.8211933875886688e-06, -6.0264917344858053e-07, -6.0264917344858169e-07, -4.2185442141400454e-05, -2.4105966937943217e-06, -2.4105966937943217e-06, 0.00020875767368258778, -1.2052983468971659e-06, -4.339074048829733e-05, -4.339074048829733e-05, -4.8211933875886408e-06, -6.0264917344857968e-07, -4.8211933875886391e-06, -4.3390740488297324e-05, -4.3390740488297771e-05, -4.82119338758864e-06, -4.8211933875886425e-06, -1.2052983468971589e-06, -1.2052983468971649e-06, -9.6423867751772545e-06, -4.8211933875886417e-06, -4.8211933875886408e-06, -1.8079475203457304e-06, -9.6423867751772545e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6905987090532028e-05, -9.6423867751772302e-05, -2.410596693794317e-06, -4.8211933875886122e-07, -1.4463580162766001e-06, -4.8211933875886645e-06, -3.8569547100709425e-05, -9.6423867751772245e-07, -4.4354979165815333e-05, -4.8211933875886144e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100709425e-05, -3.8569547100709425e-05, -3.8569547100708898e-06, -0.00010944108989826105, -9.6423867751772224e-07, -9.6423867751773589e-05, -7.7139094201417779e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708889e-06, -2.410596693794317e-06, -1.4463580162766011e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -7.2317900813830324e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297268e-06, -3.8569547100708906e-06, -7.2317900813830087e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886544e-06, 0.0019602972313935386, -7.7139094201417813e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -8.1960287589005962e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.2052983468971568e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -4.8211933875886561e-06, -5.3033127263474676e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212813e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594332e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652576e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.0498024455744644e-05, -3.8569547100708906e-06, -4.242650181077966e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709188e-05, -7.7139094201417796e-06, -3.9051666439468169e-05, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.049802445574463e-05, -3.8569547100709425e-05, -3.8569547100709154e-05, -3.8569547100709255e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, 0.0019602972313935386, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886391e-06, -9.6423867751773223e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -1.1570864130212811e-05, -1.4463580162766225e-06, -4.2426501810779992e-05, -7.7139094201417796e-06, -3.4712592390637868e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971607e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120905e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390637868e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390637855e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886324e-06, -1.4463580162766011e-06, -3.8569547100708906e-06, -7.2317900813829841e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325532175e-06, -1.4463580162766191e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.2535102807730478e-05, -1.1088744791453838e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -2.8927160325532247e-06, -9.6423867751772266e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -3.8569547100709255e-05, -3.8569547100709154e-05, -7.8103332878936554e-05, -3.8569547100709154e-05, -3.8569547100709188e-05, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.8569547100708889e-06, -4.3390740488296997e-06, -1.9284773550354449e-06, -5.3033127263474803e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -7.8103332878936391e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4463580162766011e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -5.7854320651064046e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976594535e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.410596693794328e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325532014e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886144e-07, -2.2177489582907561e-05, -4.8211933875886349e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897263, -3.8569547100708898e-06, -9.6423867751772911e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.892716032553176e-05, -5.7854320651063571e-06, -2.4105966937943246e-06, -2.8927160325532089e-05, -4.8211933875886144e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936391e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577901, -1.4463580162766016e-06, -9.6423867751772993e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936554e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489464e-05, -4.628345652085125e-05, -3.8569547100708906e-06, -3.4230473051878813e-05, -5.7854320651064012e-06, -5.7854320651064012e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886425e-06, -3.8569547100708898e-06, -4.8211933875886629e-06, -1.0124506113936154e-05, -3.8569547100708906e-06, -2.4105966937943179e-06, -1.1088744791453781e-05, -3.8569547100708906e-06, -5.7854320651063504e-06, -1.4463580162765753e-06, -2.4105966937943238e-06, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651064046e-06, -2.892716032553223e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.1570864130212809e-05, -3.8569547100708906e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297302e-06, -1.6392057517801287e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488298259e-06, -1.2535102807730492e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -8.1960287589005471e-06, -1.446358016276588e-05, -5.7854320651063775e-06, -2.8927160325532175e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417796e-06, -1.1570864130212818e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651064029e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.3390740488297217e-06, -2.4105966937943306e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.4712592390637828e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.892716032553176e-05, -3.8569547100708906e-06, -2.314172826042596e-05, -2.3141728260425611e-05, -2.4105966937943126e-05, -2.314172826042596e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.3748353713120313e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.9409279664290697e-05, -9.6423867751772245e-07, -3.4712592390637855e-05, -3.4712592390637868e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390637868e-05, -3.4712592390637801e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765994e-06, -7.713909420141783e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -0.00019381197418106324, -0.00019284773550354379, -4.8211933875886307e-06, -9.6423867751772245e-07, -2.8927160325531862e-06, -9.6423867751773223e-06, -7.7139094201418795e-05, -1.9284773550354449e-06, -8.8709958331631086e-05, -9.6423867751772287e-07, -1.5427818840283556e-05, -1.5427818840283556e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201418795e-05, -7.7139094201418795e-05, -7.7139094201417796e-06, -0.00021888217979652275, -1.9284773550354445e-06, -0.00019284773550354631, -1.5427818840283556e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -7.7139094201417796e-06, -7.7139094201417813e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -7.7139094201417779e-06, -4.8211933875886307e-06, -2.8927160325531879e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -1.4463580162766024e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -8.6781480976595196e-06, -7.7139094201417813e-06, -1.4463580162765972e-05, -1.9284773550354449e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -1.5427818840283563e-05, -9.642386775177302e-06, -7.7139094201417813e-06, 0.003912880553366937, -9.6423867751772266e-07, -7.7139094201417813e-06, -1.639205751780124e-05, -7.7139094201417796e-06, -7.713909420141783e-06, -1.5427818840283559e-05, -3.0855637680567112e-05, -2.4105966937943028e-05, -7.7139094201417813e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -7.7139094201417813e-06, -9.6423867751773054e-06, -1.0606625452694952e-05, -3.8569547100708898e-06, -1.5427818840283559e-05, -7.7139094201417813e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -9.6423867751772224e-07, -7.7139094201417813e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -7.7139094201417796e-06, -2.3141728260425584e-05, -7.7139094201417796e-06, -7.713909420141783e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.5427818840283566e-05, -3.8569547100708915e-06, -1.7356296195318999e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.2535102807730512e-05, -7.7139094201417813e-06, -1.5427818840283566e-05, -8.0996048911489261e-05, -7.7139094201417813e-06, -8.4853003621559374e-05, -7.713909420141783e-06, -7.713909420141783e-06, -1.5427818840283559e-05, -7.7139094201418321e-05, -1.5427818840283559e-05, -7.8103332878936256e-05, -9.6423867751772245e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -8.0996048911489261e-05, -7.7139094201418795e-05, -7.7139094201418253e-05, -7.7139094201418457e-05, -9.6423867751772266e-07, -3.8569547100708898e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, 0.0019564402766834685, -7.7139094201417813e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.7139094201417813e-06, -9.6423867751772749e-06, -1.9284773550354631e-05, -1.5427818840283559e-05, -1.5427818840283563e-05, -7.7139094201417813e-06, -2.314172826042551e-05, -2.8927160325532307e-06, -8.4853003621560051e-05, -1.5427818840283559e-05, -6.9425184781276265e-05, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943116e-05, -1.5427818840283566e-05, -7.7139094201417813e-06, -6.7496707426241209e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -6.9425184781276265e-05, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -6.9425184781276238e-05, -7.713909420141783e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -9.6423867751772579e-06, -2.8927160325531887e-06, -7.7139094201417813e-06, -1.4463580162765928e-05, -9.6423867751772287e-07, -7.713909420141783e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -5.785432065106408e-06, -2.8927160325532243e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -2.5070205615460949e-05, -2.2177489582907775e-05, -9.6423867751772287e-07, -1.5427818840283559e-05, -7.7139094201417796e-06, -5.7854320651064215e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -7.7139094201418457e-05, -7.7139094201418253e-05, -0.00015620666575787295, -7.7139094201418253e-05, -7.7139094201418321e-05, -3.8569547100708898e-06, -1.9284773550354449e-06, -7.7139094201417779e-06, -8.6781480976594637e-06, -3.8569547100708898e-06, -1.0606625452694967e-05, -9.6423867751772245e-07, -9.6423867751772266e-07, -1.5427818840283563e-05, -7.7139094201417813e-06, -7.713909420141783e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.5427818840283559e-05, -7.7139094201417796e-06, -9.6423867751772287e-07, -0.00015620666575787262, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.8927160325531879e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.8569547100708898e-06, -1.1570864130212755e-05, -7.7139094201417813e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.7356296195319046e-05, -9.6423867751772266e-07, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.5427818840283563e-05, -1.5427818840283563e-05, -4.8211933875886527e-06, -3.8569547100708906e-06, -1.9284773550354449e-06, -5.7854320651063758e-06, -8.1960287589006667e-05, -9.6423867751772287e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.5427818840283563e-05, -1.5427818840283563e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772287e-07, -4.4354979165815353e-05, -9.642386775177263e-06, -9.6423867751772266e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -7.7139094201417796e-06, -1.5427818840283563e-05, -7.7139094201417779e-06, -1.5427818840283563e-05, -7.7139094201417779e-06, -7.7139094201417779e-06, -0.00029602127399794314, -7.7139094201417796e-06, -0.00019284773550354498, -7.7139094201417813e-06, -1.9284773550354449e-06, -5.7854320651063358e-05, -1.1570864130212663e-05, -4.8211933875886459e-06, -5.7854320651064002e-05, -9.6423867751772287e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00015620666575787262, -7.7139094201417813e-06, -7.7139094201417813e-06, -0.00022081065715155883, -2.892716032553198e-06, -0.00019284773550354515, -7.7139094201417796e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772287e-07, -1.5427818840283563e-05, -1.5427818840283563e-05, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00015620666575787295, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.6034444292978671e-05, -9.2566913041702039e-05, -7.7139094201417813e-06, -6.8460946103758141e-05, -1.1570864130212748e-05, -1.1570864130212748e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772783e-06, -7.7139094201417796e-06, -9.6423867751773189e-06, -2.0249012227872302e-05, 0.0019564402766834681, -4.8211933875886307e-06, -2.2177489582907683e-05, -7.7139094201417813e-06, -1.1570864130212653e-05, -2.8927160325531557e-06, -4.8211933875886442e-06, -1.9284773550354445e-06, -9.6423867751772266e-07, -9.6423867751772287e-07, -7.7139094201417796e-06, -1.1570864130212752e-05, -5.7854320651064181e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.5427818840283556e-05, -7.7139094201417813e-06, -3.8569547100708906e-06, -1.5427818840283559e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -7.7139094201417779e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.5427818840283559e-05, -2.3141728260425537e-05, -7.7139094201417813e-06, -1.5427818840283556e-05, -1.5427818840283556e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -8.6781480976595264e-06, -3.2784115035602588e-05, -1.9284773550354445e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -8.6781480976595027e-06, -2.5070205615460976e-05, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772266e-07, -1.9284773550354457e-06, -1.6392057517801142e-05, -2.8927160325531679e-05, -1.1570864130212701e-05, -5.785432065106408e-06, -9.6423867751772287e-07, -3.8569547100708906e-06, -1.5427818840283559e-05, -2.3141728260425595e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -1.5427818840283563e-05, -1.5427818840283563e-05, -3.8569547100708906e-06, -1.1570864130212792e-05, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -8.6781480976595094e-06, -4.8211933875886578e-06, -7.7139094201417796e-06, -1.5427818840283563e-05, -6.9425184781276184e-05, -3.8569547100708898e-06, -9.6423867751772287e-07, -5.7854320651063344e-05, -7.7139094201417813e-06, -4.6283456520851697e-05, -4.6283456520851006e-05, -4.8211933875886049e-05, -4.6283456520851697e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -6.7496707426241114e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -5.8818559328581205e-05, -1.9284773550354449e-06, -6.9425184781276238e-05, -6.9425184781276265e-05, -7.7139094201417813e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -6.9425184781276265e-05, -6.942518478127613e-05, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.5427818840283566e-05, -7.713909420141783e-06, -7.713909420141783e-06, -2.8927160325531938e-06, -1.5427818840283566e-05, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -1.2113248386316524e-05, -1.2052983468971558e-05, -3.0132458672429016e-07, -6.0264917344857653e-08, -1.8079475203457551e-07, -6.0264917344858413e-07, -4.8211933875886866e-06, -1.2052983468971531e-07, -5.5443723957269048e-06, -6.0264917344857666e-08, -9.6423867751772224e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886866e-06, -4.8211933875886849e-06, -4.8211933875886112e-07, -1.36801362372826e-05, -1.2052983468971525e-07, -1.2052983468971719e-05, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971525e-07, -1.2052983468971525e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.8211933875886112e-07, -3.0132458672429016e-07, -1.8079475203457562e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857653e-08, -9.0397376017288074e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -5.4238425610371415e-07, -4.8211933875886133e-07, -9.0397376017287778e-07, -1.2052983468971528e-07, -6.026491734485764e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -9.6423867751772245e-07, -6.0264917344858275e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, 0.00024545900834560644, -4.8211933875886122e-07, -1.0245035948625728e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -1.928477355035444e-06, -1.5066229336214488e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -6.0264917344858296e-07, -6.6291409079343367e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857627e-08, -4.8211933875886122e-07, -1.2052983468971533e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -9.6423867751772224e-07, -9.6423867751772224e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886112e-07, -1.4463580162766045e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -1.0847685122074258e-06, -2.4105966937943066e-07, -6.0264917344857653e-08, -1.2052983468971533e-07, -7.8344392548315763e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -5.0622530569680822e-06, -4.8211933875886122e-07, -5.3033127263474524e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772224e-07, -4.8211933875886552e-06, -9.6423867751772245e-07, -4.8814583049335262e-06, -6.0264917344857653e-08, -9.6423867751772245e-07, -9.6423867751772224e-07, -2.4105966937943056e-07, -5.0622530569680822e-06, -4.8211933875886866e-06, -4.8211933875886518e-06, -4.8211933875886645e-06, -6.0264917344857666e-08, -2.4105966937943051e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -6.0264917344857627e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.8211933875886133e-07, -6.0264917344858032e-07, -1.205298346897167e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -1.4463580162766054e-06, -1.8079475203457829e-07, -5.3033127263474939e-06, -9.6423867751772245e-07, -4.33907404882972e-06, -6.0264917344857666e-08, -6.0264917344857666e-08, -1.5066229336214539e-06, -9.6423867751772266e-07, -4.8211933875886122e-07, -4.2185442141401216e-07, -2.4105966937943056e-07, -1.2052983468971528e-07, -4.3390740488297183e-06, -1.2052983468971528e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.3390740488297183e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -6.0264917344857989e-07, -1.8079475203457567e-07, -4.8211933875886133e-07, -9.0397376017287503e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -1.2052983468971525e-07, -1.2052983468971525e-07, -1.2052983468971528e-07, -6.0264917344857666e-08, -3.615895040691533e-07, -1.807947520345779e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.566887850966311e-06, -1.3860930989317264e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.6158950406915415e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.8211933875886645e-06, -4.8211933875886518e-06, -9.7629166098670811e-06, -4.8211933875886518e-06, -4.8211933875886552e-06, -2.4105966937943061e-07, -1.2052983468971531e-07, -4.8211933875886112e-07, -5.4238425610371076e-07, -2.4105966937943061e-07, -6.6291409079343441e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -9.6423867751772266e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -9.7629166098670591e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.8079475203457562e-07, -6.026491734485764e-08, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -2.4105966937943061e-07, -7.2317900813830269e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -1.0847685122074279e-06, -6.0264917344857653e-08, -2.4105966937943051e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.0132458672429148e-07, -2.4105966937943061e-07, -1.2052983468971528e-07, -3.6158950406915124e-07, -5.1225179743129167e-06, -6.0264917344857666e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943066e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.0264917344857666e-08, 0.00024274708706508813, -6.0264917344858032e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.8211933875886101e-07, -9.6423867751772245e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -1.8501329624871636e-05, -4.8211933875886122e-07, -1.2052983468971634e-05, -4.8211933875886133e-07, -1.2052983468971528e-07, -3.6158950406914768e-06, -7.2317900813829676e-07, -3.0132458672429111e-07, -3.6158950406915179e-06, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.7629166098670591e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.3800666071972349e-05, -1.8079475203457557e-07, -1.2052983468971644e-05, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971528e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.7629166098670811e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.6271527683111919e-06, -5.7854320651064215e-06, -4.8211933875886122e-07, -4.2788091314848381e-06, -7.2317900813830227e-07, -7.2317900813830227e-07, -4.8211933875886133e-07, -4.8211933875886112e-07, -6.0264917344858053e-07, -4.8211933875886112e-07, -6.0264917344858392e-07, -1.2655632642420197e-06, -4.8211933875886133e-07, -3.0132458672429005e-07, -1.3860930989317196e-06, -4.8211933875886122e-07, -7.2317900813829591e-07, -1.8079475203457104e-07, -3.01324586724291e-07, -1.2052983468971525e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.8211933875886112e-07, -7.2317900813830248e-07, -3.6158950406915394e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886101e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.4105966937943061e-07, -4.8211933875886101e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772224e-07, -1.446358016276605e-06, -4.8211933875886133e-07, -9.6423867751772224e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -5.4238425610371436e-07, -2.0490071897251575e-06, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -5.4238425610373078e-07, -1.5668878509663123e-06, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886112e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.0264917344857653e-08, -6.0264917344857627e-08, -6.0264917344857666e-08, -1.2052983468971533e-07, -1.0245035948625667e-06, -1.8079475203457388e-06, -7.231790081382993e-07, -3.615895040691533e-07, -6.0264917344857666e-08, -2.4105966937943061e-07, -9.6423867751772245e-07, -1.4463580162766054e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -7.2317900813830248e-07, -4.8211933875886122e-07, -6.026491734485764e-08, -1.2052983468971531e-07, -2.4105966937943061e-07, -2.4105966937943066e-07, -5.4238425610371352e-07, -3.0132458672429185e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.3390740488297132e-06, -2.4105966937943056e-07, -6.0264917344857666e-08, -3.6158950406914768e-06, -4.8211933875886122e-07, -2.8927160325532531e-06, -2.8927160325532099e-06, -3.0132458672428959e-06, -2.8927160325532531e-06, -2.4105966937943056e-07, -2.4105966937943056e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -6.026491734485764e-08, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.2185442141400273e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -3.6761599580363422e-06, -1.2052983468971531e-07, -4.3390740488297183e-06, -4.3390740488297183e-06, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.33907404882972e-06, -4.3390740488297115e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.8079475203457535e-07, -9.6423867751772266e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.690598709053173e-05, -9.6423867751772003e-05, -2.4105966937943102e-06, -4.8211933875886133e-07, -1.4463580162765965e-06, -4.821193387588651e-06, -3.8569547100709316e-05, -9.6423867751772266e-07, -4.4354979165815502e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100709323e-05, -3.8569547100709316e-05, -3.8569547100708898e-06, -0.00010944108989826139, -9.6423867751772224e-07, -9.6423867751773291e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.4105966937943102e-06, -1.4463580162765973e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.231790081383007e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297302e-06, -3.8569547100708906e-06, -7.2317900813829858e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886408e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886122e-07, 0.0019602972313935386, -8.1960287589006183e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971528e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -4.8211933875886425e-06, -5.3033127263474617e-06, -1.9284773550354445e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.8211933875886112e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212748e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.678148097659479e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652534e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -4.0498024455744657e-05, -3.8569547100708906e-06, -4.2426501810779728e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709106e-05, -7.7139094201417796e-06, -3.9051666439468101e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.0498024455744657e-05, -3.8569547100709316e-05, -3.8569547100709072e-05, -3.8569547100709174e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886578e-06, -9.6423867751772918e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -1.157086413021276e-05, -1.446358016276616e-06, -4.2426501810780019e-05, -7.7139094201417813e-06, -3.4712592390637895e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971572e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120418e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390637882e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390637882e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886391e-06, -1.4463580162765948e-06, -3.8569547100708906e-06, -7.2317900813829604e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325532052e-06, -1.4463580162766128e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730471e-05, -1.1088744791453881e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532116e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709174e-05, -3.8569547100709072e-05, -7.8103332878936446e-05, -3.8569547100709072e-05, -3.8569547100709106e-05, -1.9284773550354445e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297217e-06, -1.9284773550354445e-06, -5.3033127263474897e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936269e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4463580162765872e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651063825e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -8.6781480976594959e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -7.713909420141783e-06, -7.713909420141783e-06, -2.4105966937943111e-06, -1.9284773550354457e-06, -9.6423867751772245e-07, -2.8927160325531887e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886144e-07, -2.217748958290767e-05, -4.8211933875886205e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00014801063699897195, -3.8569547100708906e-06, -9.64238677517726e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.8927160325531652e-05, -5.7854320651063809e-06, -2.4105966937943179e-06, -2.8927160325531977e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936269e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -0.00011040532857577933, -1.4463580162765939e-06, -9.6423867751772708e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936446e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489225e-05, -4.6283456520851047e-05, -3.8569547100708906e-06, -3.4230473051878989e-05, -5.7854320651063758e-06, -5.7854320651063758e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886612e-06, -3.8569547100708898e-06, -4.8211933875886527e-06, -1.0124506113936161e-05, -3.8569547100708906e-06, -2.4105966937943276e-06, -1.1088744791453835e-05, -3.8569547100708915e-06, -5.7854320651063809e-06, -1.4463580162766132e-06, -2.4105966937943174e-06, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063783e-06, -2.8927160325532103e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354457e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.1570864130212755e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.3390740488297513e-06, -1.6392057517801342e-05, -9.6423867751772224e-07, -3.8569547100708889e-06, -3.8569547100708915e-06, -4.3390740488297513e-06, -1.2535102807730483e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -8.1960287589005708e-06, -1.4463580162765843e-05, -5.7854320651063809e-06, -2.8927160325532052e-06, -4.8211933875886144e-07, -1.9284773550354457e-06, -7.7139094201417813e-06, -1.1570864130212755e-05, -3.8569547100708889e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -5.7854320651063393e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354453e-06, -4.3390740488297446e-06, -2.4105966937943238e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -3.4712592390637997e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531652e-05, -3.8569547100708915e-06, -2.3141728260425859e-05, -2.3141728260425483e-05, -2.4105966937943028e-05, -2.3141728260425859e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.3748353713120489e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.9409279664290602e-05, -9.6423867751772245e-07, -3.4712592390637882e-05, -3.4712592390637882e-05, 0.0019602972313935386, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.4712592390637895e-05, -3.4712592390637929e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765946e-06, -7.713909420141783e-06, -8.1960287589005607e-06, -8.1960287589005759e-06, -8.1960287589005793e-06, -8.1960287589005607e-06, -4.0980143794503159e-06, -4.0980143794503151e-06, -8.1960287589006301e-06, -8.1960287589006318e-06, -1.0245035948625709e-06, -1.0245035948625739e-06, -0.00020592522256737859, -0.00020490071897251672, -5.1225179743129201e-06, -1.0245035948625709e-06, -3.0735107845877791e-06, -1.024503594862584e-05, -8.1960287589006762e-05, -2.0490071897251474e-06, -9.4254330727357307e-05, -1.0245035948625794e-06, -1.6392057517801094e-05, -1.6392057517801091e-05, -8.1960287589006352e-06, -8.1960287589006284e-06, -8.1960287589006762e-05, -8.1960287589006762e-05, -8.1960287589005691e-06, -0.00023256231603380607, -2.0490071897251393e-06, -0.00020490071897251655, -1.6392057517801101e-05, -8.1960287589005759e-06, -8.1960287589005624e-06, -1.0245035948625792e-06, -1.0245035948625733e-06, -8.1960287589005912e-06, -8.1960287589005945e-06, -2.0490071897251393e-06, -2.0490071897251393e-06, -1.0245035948625798e-06, -1.024503594862576e-06, -8.1960287589006318e-06, -5.1225179743129175e-06, -3.0735107845877935e-06, -4.0980143794503151e-06, -4.0980143794503168e-06, -1.0245035948625709e-06, -1.5367553922938761e-05, -8.1960287589005844e-06, -8.1960287589005861e-06, -9.2205323537632207e-06, -8.1960287589006386e-06, -1.5367553922938761e-05, -2.0490071897251414e-06, -1.0245035948625709e-06, -8.1960287589006369e-06, -8.1960287589006352e-06, -1.024503594862573e-06, -1.0245035948625726e-06, -8.1960287589005878e-06, -8.1960287589005827e-06, -2.0490071897251596e-06, -1.0245035948625792e-06, -8.1960287589006233e-06, -1.6392057517801311e-05, 0.00023527423731432574, -8.1960287589005962e-06, -1.639205751780124e-05, -1.0245035948625728e-06, -8.1960287589006183e-06, 0.0041564110843575145, -8.1960287589005691e-06, -8.1960287589006233e-06, -1.6392057517801155e-05, -3.2784115035602622e-05, -2.5612589871564596e-05, -8.1960287589006301e-06, -1.6392057517801152e-05, -1.6392057517801145e-05, -4.0980143794502795e-06, -8.1960287589006115e-06, -1.024503594862584e-05, -1.1269539543488349e-05, -4.0980143794502795e-06, -1.6392057517801277e-05, -8.1960287589005996e-06, -8.1960287589005708e-06, -8.1960287589005725e-06, -2.049007189725152e-06, -8.1960287589005725e-06, -8.1960287589006301e-06, -1.0245035948625675e-06, -8.1960287589006335e-06, -2.0490071897251508e-06, -8.1960287589005708e-06, -8.1960287589005928e-06, -8.1960287589005979e-06, -1.0245035948625728e-06, -1.6392057517801142e-05, -1.6392057517801148e-05, -1.0245035948625745e-06, -8.1960287589005979e-06, -8.1960287589005979e-06, -1.0245035948625733e-06, -8.196028758900564e-06, -8.196028758900559e-06, -8.1960287589006233e-06, -8.1960287589005607e-06, -2.4588086276702273e-05, -8.1960287589005691e-06, -8.1960287589006284e-06, -8.1960287589006166e-06, -1.0245035948625762e-06, -8.1960287589006216e-06, -8.1960287589006132e-06, -1.6392057517801209e-05, -4.0980143794503168e-06, -1.8441064707526567e-05, -4.0980143794503151e-06, -1.0245035948625709e-06, -2.0490071897251546e-06, -1.3318546733213431e-05, -8.1960287589005979e-06, -1.6392057517801199e-05, -8.6058301968455579e-05, -8.1960287589005878e-06, -9.0156316347907812e-05, -8.1960287589006267e-06, -8.1960287589006233e-06, -1.6392057517801145e-05, -8.1960287589006843e-05, -1.6392057517801152e-05, -8.2984791183869495e-05, -1.024503594862579e-06, -1.6392057517801155e-05, -1.6392057517801142e-05, -4.0980143794502846e-06, -8.6058301968455579e-05, -8.1960287589006762e-05, -8.1960287589006775e-05, -8.1960287589006748e-05, -1.0245035948625733e-06, -4.0980143794503447e-06, -1.0245035948625796e-06, -1.0245035948625718e-06, -1.0245035948625697e-06, -8.1960287589005928e-06, -8.1960287589005945e-06, -8.1960287589005945e-06, -8.1960287589005962e-06, -1.0245035948625796e-06, -1.024503594862579e-06, -1.0245035948625773e-06, -8.1960287589005793e-06, -1.024503594862584e-05, -2.049007189725168e-05, -1.6392057517801243e-05, -1.6392057517801206e-05, -8.1960287589005776e-06, 0.0019395660998269089, -3.0735107845878011e-06, -9.0156316347907772e-05, -1.6392057517801209e-05, -7.3764258830105386e-05, -1.0245035948625737e-06, -1.0245035948625775e-06, -2.56125898715646e-05, -1.6392057517801209e-05, -8.1960287589005844e-06, -7.1715251640381369e-06, -4.0980143794503278e-06, -2.0490071897251457e-06, -7.3764258830105386e-05, -2.0490071897251414e-06, -4.0980143794503151e-06, -4.0980143794503159e-06, -7.3764258830105386e-05, -8.196028758900625e-06, -1.024503594862576e-06, -8.1960287589006115e-06, -1.0245035948625773e-06, -8.1960287589006166e-06, -1.024503594862584e-05, -3.0735107845878057e-06, -8.1960287589006132e-06, -1.5367553922938761e-05, -1.0245035948625798e-06, -8.1960287589006267e-06, -2.0490071897251393e-06, -2.0490071897251393e-06, -2.0490071897251414e-06, -1.0245035948625747e-06, -6.1470215691755065e-06, -3.0735107845877244e-06, -8.1960287589005776e-06, -8.196028758900581e-06, -1.6392057517801209e-05, -2.6637093466426899e-05, -2.3563582681839357e-05, -1.0245035948625798e-06, -1.6392057517801287e-05, -8.196028758900581e-06, -6.1470215691755852e-06, -2.0490071897251609e-06, -1.024503594862579e-06, -1.0245035948625718e-06, -8.1960287589006748e-05, -8.1960287589006775e-05, -0.00016596958236773839, -8.1960287589006775e-05, -8.1960287589006843e-05, -4.0980143794502795e-06, -2.0490071897251605e-06, -8.1960287589006081e-06, -9.2205323537632445e-06, -4.0980143794502795e-06, -1.1269539543488405e-05, -1.024503594862573e-06, -1.0245035948625794e-06, -1.6392057517801311e-05, -8.1960287589006233e-06, -8.1960287589006183e-06, -1.0245035948625773e-06, -1.0245035948625709e-06, -4.0980143794502956e-06, -4.0980143794502964e-06, -1.6392057517801294e-05, -8.1960287589005827e-06, -1.0245035948625781e-06, -0.00016596958236773853, -8.1960287589005793e-06, -8.1960287589005793e-06, -1.0245035948625745e-06, -4.0980143794502964e-06, -4.0980143794502964e-06, -2.0490071897251584e-06, -2.049007189725158e-06, -3.0735107845877867e-06, -1.0245035948625707e-06, -2.049007189725158e-06, -2.0490071897251584e-06, -1.0245035948625766e-06, -1.024503594862573e-06, -4.0980143794503269e-06, -1.2294043138351154e-05, -8.1960287589006267e-06, -1.0245035948625796e-06, -1.0245035948625794e-06, -1.8441064707526377e-05, -1.0245035948625726e-06, -4.0980143794503278e-06, -2.0490071897251618e-06, -1.6392057517801253e-05, -1.6392057517801247e-05, -5.1225179743129201e-06, -4.0980143794503015e-06, -2.0490071897251444e-06, -6.1470215691755708e-06, -8.7082805563321158e-05, -1.024503594862576e-06, -4.0980143794503015e-06, -4.0980143794502998e-06, -1.6392057517801237e-05, -1.6392057517801264e-05, -4.0980143794503015e-06, -4.0980143794503083e-06, -4.0980143794503091e-06, -1.0245035948625796e-06, -4.7127165363678694e-05, -1.024503594862584e-05, -1.0245035948625728e-06, -8.1960287589005793e-06, -8.1960287589005437e-06, -8.1960287589005793e-06, -1.6392057517801264e-05, -8.1960287589005861e-06, -1.6392057517801237e-05, -8.1960287589005386e-06, -8.196028758900542e-06, -0.00031452260362281636, -8.1960287589005793e-06, -0.00020490071897251682, -8.1960287589006216e-06, -2.049007189725141e-06, -6.1470215691755044e-05, -1.2294043138351147e-05, -5.1225179743129201e-06, -6.1470215691755112e-05, -1.024503594862579e-06, -8.1960287589005725e-06, -8.1960287589005708e-06, -0.00016596958236773853, -8.196028758900625e-06, -8.1960287589006267e-06, -0.00023461132322352934, -3.0735107845877985e-06, -0.00020490071897251682, -8.1960287589005979e-06, -8.1960287589005979e-06, -1.024503594862576e-06, -8.1960287589005691e-06, 0.0019559581573447096, -1.0245035948625796e-06, -1.6392057517801247e-05, -1.6392057517801253e-05, -2.0490071897251414e-06, -4.0980143794502964e-06, -4.0980143794502964e-06, -8.196028758900581e-06, -8.1960287589005827e-06, -0.00016596958236773839, -8.196028758900581e-06, -8.1960287589005776e-06, -2.7661597061289686e-05, -9.8352345106808957e-05, -8.1960287589005996e-06, -7.2739755235244036e-05, -1.2294043138351201e-05, -1.2294043138351201e-05, -8.1960287589005759e-06, -8.196028758900559e-06, -1.024503594862584e-05, -8.196028758900564e-06, -1.024503594862584e-05, -2.1514575492113922e-05, -8.196028758900625e-06, -5.1225179743129201e-06, -2.3563582681839418e-05, -8.1960287589006233e-06, -1.229404313835115e-05, -3.0735107845877994e-06, -5.1225179743129192e-06, -2.049007189725141e-06, -1.0245035948625733e-06, -1.0245035948625758e-06, -8.1960287589005624e-06, -1.2294043138351201e-05, -6.1470215691755835e-06, -4.0980143794503201e-06, -8.1960287589005776e-06, -8.1960287589005691e-06, -8.196028758900542e-06, -1.6392057517801172e-05, -8.1960287589006352e-06, -4.0980143794502998e-06, -1.6392057517801152e-05, -8.1960287589006386e-06, -4.0980143794503015e-06, -8.1960287589005437e-06, -1.024503594862579e-06, -8.1960287589006352e-06, -8.1960287589006369e-06, -1.6392057517801148e-05, -2.4588086276702388e-05, -8.1960287589006149e-06, -1.6392057517801101e-05, -1.6392057517801084e-05, -8.1960287589006318e-06, -8.1960287589006301e-06, -8.1960287589006233e-06, -8.1960287589006284e-06, -9.2205323537633681e-06, -3.483312222532762e-05, -2.049007189725138e-06, -8.1960287589005691e-06, -8.1960287589006386e-06, -9.220532353763341e-06, -2.6637093466426892e-05, -8.1960287589005759e-06, -8.1960287589006115e-06, -8.1960287589005607e-06, -4.0980143794503015e-06, -4.0980143794502998e-06, -1.0245035948625737e-06, -1.0245035948625701e-06, -1.0245035948625728e-06, -2.0490071897251495e-06, -1.7416561112663844e-05, -3.0735107845877522e-05, -1.229404313835115e-05, -6.1470215691755065e-06, -1.0245035948625762e-06, -4.0980143794503015e-06, -1.6392057517801209e-05, -2.4588086276702341e-05, -8.1960287589005674e-06, -4.0980143794503024e-06, -1.6392057517801203e-05, -1.6392057517801206e-05, -4.0980143794503024e-06, -1.2294043138351137e-05, -8.196028758900625e-06, -1.0245035948625707e-06, -2.049007189725158e-06, -4.0980143794503015e-06, -4.0980143794503015e-06, -9.2205323537633224e-06, -5.1225179743129201e-06, -8.1960287589005861e-06, -1.6392057517801314e-05, -7.376425883010624e-05, -4.0980143794502846e-06, -1.0245035948625796e-06, -6.1470215691755044e-05, -8.1960287589006166e-06, -4.9176172553404777e-05, -4.9176172553404763e-05, -5.1225179743129192e-05, -4.9176172553404777e-05, -4.0980143794502846e-06, -4.0980143794502837e-06, -8.1960287589006098e-06, -8.1960287589006166e-06, -4.0980143794503057e-06, -4.0980143794503066e-06, -8.1960287589005708e-06, -1.0245035948625709e-06, -8.1960287589005725e-06, -1.0245035948625762e-06, -1.0245035948625733e-06, -7.1715251640381574e-05, -4.0980143794503066e-06, -4.0980143794503057e-06, -6.2494719286617588e-05, -2.0490071897251431e-06, -7.3764258830105386e-05, -7.3764258830105386e-05, -8.1960287589006183e-06, -1.0245035948625769e-06, -8.1960287589006115e-06, -7.3764258830105386e-05, -7.3764258830105441e-05, -8.1960287589006183e-06, -8.1960287589006233e-06, -2.0490071897251563e-06, -2.0490071897251469e-06, -1.639205751780127e-05, -8.1960287589006216e-06, -8.1960287589006199e-06, -3.0735107845877799e-06, -1.639205751780127e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6905987090531947e-05, -9.642386775177222e-05, -2.4105966937943162e-06, -4.8211933875886122e-07, -1.446358016276599e-06, -4.8211933875886629e-06, -3.8569547100709411e-05, -9.6423867751772245e-07, -4.435497916581536e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100709418e-05, -3.8569547100709411e-05, -3.8569547100708889e-06, -0.00010944108989826109, -9.6423867751772224e-07, -9.6423867751773508e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708873e-06, -2.4105966937943158e-06, -1.4463580162766003e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -7.2317900813830248e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488297115e-06, -3.8569547100708906e-06, -7.2317900813830036e-06, -9.6423867751772245e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -7.7139094201417796e-06, -4.8211933875886535e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -8.1960287589005691e-06, 0.0019602972313935386, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971558e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -4.8211933875886544e-06, -5.3033127263474549e-06, -1.9284773550354445e-06, -7.7139094201417762e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708889e-06, -1.1570864130212792e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -8.67814809765944e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -6.2675514038652585e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.0498024455744685e-05, -3.8569547100708898e-06, -4.2426501810779673e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417779e-06, -3.8569547100709188e-05, -7.7139094201417796e-06, -3.9051666439468101e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.9284773550354445e-06, -4.0498024455744678e-05, -3.8569547100709411e-05, -3.8569547100709011e-05, -3.8569547100709276e-05, -4.8211933875886122e-07, -1.9284773550354436e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886696e-06, -9.6423867751773155e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -1.1570864130212804e-05, -1.4463580162766215e-06, -4.2426501810779978e-05, -7.7139094201417796e-06, -3.4712592390637895e-05, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.2052983468971524e-05, -7.7139094201417813e-06, -3.8569547100708898e-06, -3.3748353713120668e-06, -1.9284773550354445e-06, -9.6423867751772245e-07, -3.4712592390637882e-05, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.4712592390637882e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.821193387588651e-06, -1.4463580162766003e-06, -3.8569547100708906e-06, -7.2317900813829765e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.8927160325532163e-06, -1.4463580162765726e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.2535102807730483e-05, -1.1088744791453845e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -2.892716032553223e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100709276e-05, -3.8569547100709011e-05, -7.8103332878936581e-05, -3.8569547100709079e-05, -3.8569547100709188e-05, -1.9284773550354445e-06, -9.6423867751772245e-07, -3.8569547100708881e-06, -4.3390740488297031e-06, -1.9284773550354445e-06, -5.303312726347482e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.8103332878936418e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4463580162766037e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651064046e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -8.6781480976594569e-06, -4.8211933875886144e-07, -1.9284773550354436e-06, -9.6423867751772224e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943285e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325532006e-06, -4.0980143794503334e-05, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -2.2177489582907606e-05, -4.8211933875886324e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00014801063699897255, -3.8569547100708898e-06, -9.642386775177283e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.8927160325531723e-05, -5.7854320651064029e-06, -2.4105966937943238e-06, -2.8927160325532045e-05, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936418e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577904, -1.4463580162765994e-06, -9.6423867751772925e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, 0.0019602972313935386, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936581e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489213e-05, -4.6283456520851223e-05, -3.8569547100708906e-06, -3.4230473051878847e-05, -5.7854320651063978e-06, -5.7854320651063978e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.821193387588673e-06, -3.8569547100708889e-06, -4.8211933875886654e-06, -1.0124506113936164e-05, -3.8569547100708906e-06, -2.4105966937943335e-06, -1.1088744791453786e-05, -3.8569547100708906e-06, -5.7854320651064029e-06, -1.4463580162766187e-06, -2.4105966937943234e-06, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708889e-06, -5.7854320651064003e-06, -2.8927160325532218e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417779e-06, -1.1570864130212799e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297319e-06, -1.639205751780124e-05, -9.6423867751772202e-07, -3.8569547100708889e-06, -3.8569547100708906e-06, -4.3390740488297319e-06, -1.2535102807730243e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -8.196028758900542e-06, -1.4463580162765877e-05, -5.7854320651064029e-06, -2.8927160325532163e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -7.7139094201417796e-06, -1.1570864130212799e-05, -3.8569547100708889e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.785432065106402e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -9.6423867751772224e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.3390740488297251e-06, -2.4105966937943297e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.4712592390637841e-05, -1.9284773550354445e-06, -4.8211933875886133e-07, -2.8927160325531716e-05, -3.8569547100708906e-06, -2.3141728260425947e-05, -2.3141728260425598e-05, -2.4105966937943113e-05, -2.3141728260425947e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.3748353713120374e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.9409279664290643e-05, -9.6423867751772245e-07, -3.4712592390637882e-05, -3.4712592390637882e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390637895e-05, -3.4712592390637828e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.4463580162766001e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6905987090531784e-05, -9.6423867751772085e-05, -2.4105966937943128e-06, -4.8211933875886133e-07, -1.446358016276595e-06, -4.8211933875886561e-06, -3.8569547100709357e-05, -9.6423867751772287e-07, -4.4354979165815455e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100709357e-05, -3.8569547100709357e-05, -3.8569547100708898e-06, -0.00010944108989826126, -9.6423867751772245e-07, -9.6423867751773372e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.4105966937943128e-06, -1.4463580162765961e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813830155e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.3390740488297268e-06, -3.8569547100708915e-06, -7.2317900813829892e-06, -9.6423867751772266e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886459e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -8.1960287589006233e-06, -3.8569547100708906e-06, 0.0019602972313935386, -7.7139094201417813e-06, -1.5427818840283556e-05, -1.2052983468971541e-05, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.8211933875886476e-06, -5.3033127263474575e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -3.8569547100708915e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212765e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594705e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652559e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -4.0498024455744644e-05, -3.8569547100708915e-06, -4.2426501810779687e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709113e-05, -7.7139094201417813e-06, -3.9051666439468114e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.049802445574463e-05, -3.8569547100709357e-05, -3.8569547100709079e-05, -3.8569547100709181e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886629e-06, -9.642386775177302e-06, 0.0019564402766834681, -7.713909420141783e-06, -3.8569547100708906e-06, -1.1570864130212774e-05, -1.4463580162766174e-06, -4.2426501810780026e-05, -7.7139094201417813e-06, -3.4712592390638024e-05, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971578e-05, -7.713909420141783e-06, -3.8569547100708915e-06, -3.374835371312041e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.4712592390638024e-05, -9.6423867751772266e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390638011e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886425e-06, -1.4463580162765961e-06, -3.8569547100708915e-06, -7.2317900813829689e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325531616e-06, -1.4463580162766141e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -1.2535102807730451e-05, -1.1088744791453869e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532141e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709181e-05, -3.8569547100709079e-05, -7.8103332878936446e-05, -3.8569547100709079e-05, -3.8569547100709113e-05, -1.9284773550354449e-06, -9.6423867751772287e-07, -3.8569547100708889e-06, -4.3390740488297429e-06, -1.9284773550354449e-06, -5.3033127263474854e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936283e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162765961e-06, -4.8211933875886133e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -5.7854320651063859e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976594925e-06, -4.8211933875886144e-07, -1.928477355035444e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -7.713909420141783e-06, -2.4105966937943234e-06, -1.9284773550354457e-06, -9.6423867751772266e-07, -2.8927160325531913e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.217748958290765e-05, -4.8211933875886256e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00014801063699897206, -3.8569547100708906e-06, -9.6423867751772695e-05, -3.8569547100708915e-06, -9.6423867751772266e-07, -2.8927160325531781e-05, -5.7854320651063859e-06, -2.4105966937943204e-06, -2.892716032553193e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936283e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -0.00011040532857577931, -1.4463580162765952e-06, -9.6423867751772776e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936446e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.3017222146489225e-05, -4.6283456520851155e-05, -3.8569547100708915e-06, -3.4230473051879016e-05, -5.7854320651063809e-06, -5.7854320651063809e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886662e-06, -3.8569547100708898e-06, -4.8211933875886544e-06, -1.0124506113936147e-05, -3.8569547100708915e-06, -2.4105966937943306e-06, -1.1088744791453818e-05, -3.8569547100708915e-06, -5.7854320651063859e-06, -1.4463580162766145e-06, -2.4105966937943204e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063809e-06, -2.8927160325532124e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.1570864130212768e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.3390740488297479e-06, -1.6392057517801335e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488297479e-06, -1.2535102807730463e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -8.1960287589005691e-06, -1.4463580162765856e-05, -5.7854320651063842e-06, -2.8927160325531616e-06, -4.8211933875886144e-07, -1.9284773550354457e-06, -7.7139094201417813e-06, -1.1570864130212763e-05, -3.8569547100708898e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -5.7854320651063851e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.3390740488297412e-06, -2.4105966937943263e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.4712592390637882e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531774e-05, -3.8569547100708915e-06, -2.3141728260425879e-05, -2.314172826042553e-05, -2.4105966937943079e-05, -2.3141728260425879e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.3748353713120543e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.9409279664290779e-05, -9.6423867751772266e-07, -3.4712592390638011e-05, -3.4712592390638024e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.4712592390638024e-05, -3.4712592390637956e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765961e-06, -7.713909420141783e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -0.00019381197418106438, -0.00019284773550354493, -4.8211933875886425e-06, -9.6423867751772245e-07, -2.8927160325532095e-06, -9.642386775177346e-06, -7.713909420141885e-05, -1.9284773550354449e-06, -8.8709958331630585e-05, -9.6423867751772245e-07, -1.5427818840283556e-05, -1.5427818840283552e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201418578e-05, -7.7139094201418714e-05, -7.7139094201417779e-06, -0.0002188821797965215, -1.9284773550354449e-06, -0.0001928477355035475, -1.5427818840283556e-05, -7.7139094201417796e-06, -7.7139094201417779e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -7.7139094201417762e-06, -4.8211933875886425e-06, -2.8927160325532116e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -1.4463580162765985e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -8.6781480976593824e-06, -7.7139094201417796e-06, -1.4463580162766051e-05, -1.9284773550354445e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -7.7139094201417796e-06, -1.5427818840283559e-05, -9.6423867751773257e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -9.6423867751772245e-07, -7.7139094201417796e-06, -1.6392057517801155e-05, -7.7139094201417796e-06, -7.7139094201417813e-06, 0.003912880553366937, -3.0855637680567139e-05, -2.410596693794318e-05, -7.7139094201417796e-06, -1.5427818840283559e-05, -1.5427818840283556e-05, -3.8569547100708881e-06, -7.7139094201417796e-06, -9.6423867751773291e-06, -1.0606625452694898e-05, -3.8569547100708881e-06, -1.5427818840283552e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772202e-07, -7.7139094201417796e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -7.7139094201417813e-06, -7.7139094201417779e-06, -2.3141728260425672e-05, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283563e-05, -3.8569547100708906e-06, -1.7356296195318799e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.2535102807730519e-05, -7.7139094201417796e-06, -1.5427818840283559e-05, -8.0996048911489098e-05, -7.7139094201417796e-06, -8.4853003621559211e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.5427818840283556e-05, -7.7139094201418497e-05, -1.5427818840283559e-05, -7.8103332878936418e-05, -9.6423867751772245e-07, -1.5427818840283559e-05, -1.5427818840283556e-05, -3.8569547100708889e-06, -8.0996048911489044e-05, -7.713909420141885e-05, -7.7139094201418429e-05, -7.7139094201418633e-05, -9.6423867751772245e-07, -3.8569547100708881e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751773596e-06, -1.9284773550354672e-05, -1.5427818840283559e-05, -1.5427818840283559e-05, -7.7139094201417796e-06, -2.3141728260425696e-05, -2.8927160325532535e-06, -8.4853003621559916e-05, -1.5427818840283559e-05, -6.9425184781275466e-05, -9.6423867751772245e-07, -9.6423867751772266e-07, -2.4105966937943255e-05, -1.5427818840283563e-05, -7.7139094201417796e-06, -6.7496707426240548e-06, -3.8569547100708898e-06, -1.9284773550354445e-06, -6.9425184781275466e-05, -1.9284773550354445e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -6.9425184781275439e-05, -7.7139094201417813e-06, -9.6423867751772266e-07, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751773257e-06, -2.8927160325531349e-06, -7.7139094201417796e-06, -1.4463580162765972e-05, -9.6423867751772266e-07, -7.7139094201417813e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354445e-06, -9.6423867751772266e-07, -5.7854320651064562e-06, -2.8927160325532476e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -2.507020561546097e-05, -2.2177489582907514e-05, -9.6423867751772266e-07, -1.5427818840283559e-05, -7.7139094201417796e-06, -5.7854320651064681e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.7139094201418633e-05, -7.7139094201418429e-05, -0.00015620666575787335, -7.7139094201418429e-05, -7.7139094201418497e-05, -3.8569547100708881e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -8.6781480976593654e-06, -3.8569547100708881e-06, -1.0606625452694954e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.5427818840283563e-05, -7.7139094201417796e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.5427818840283559e-05, -7.7139094201417796e-06, -9.6423867751772266e-07, -0.00015620666575787297, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.8927160325532116e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.8569547100708889e-06, -1.1570864130212853e-05, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -1.7356296195318839e-05, -9.6423867751772245e-07, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -4.8211933875886637e-06, -3.8569547100708898e-06, -1.9284773550354445e-06, -5.7854320651064215e-06, -8.1960287589006667e-05, -9.6423867751772266e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772266e-07, -4.4354979165815069e-05, -9.642386775177285e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -7.7139094201417762e-06, -1.5427818840283559e-05, -7.7139094201417762e-06, -7.7139094201417762e-06, -0.00029602127399794639, -7.7139094201417796e-06, -0.00019284773550354615, -7.7139094201417796e-06, -1.9284773550354445e-06, -5.7854320651063656e-05, -1.157086413021285e-05, -4.8211933875886578e-06, -5.7854320651064313e-05, -9.6423867751772266e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00015620666575787297, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00022081065715155748, -2.8927160325531341e-06, -0.00019284773550354631, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -1.9284773550354445e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00015620666575787335, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.603444429297843e-05, -9.2566913041702798e-05, -7.7139094201417796e-06, -6.8460946103757395e-05, -1.157086413021284e-05, -1.157086413021284e-05, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751773664e-06, -7.7139094201417779e-06, -9.6423867751773426e-06, -2.0249012227872308e-05, -7.7139094201417796e-06, -4.8211933875886764e-06, -2.2177489582907528e-05, -7.7139094201417796e-06, -1.157086413021285e-05, -2.8927160325532484e-06, -4.8211933875886561e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -7.7139094201417779e-06, -1.1570864130212843e-05, -5.7854320651064664e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -1.5427818840283552e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -1.5427818840283556e-05, -7.7139094201417813e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -9.6423867751772266e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -2.3141728260425134e-05, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.5427818840283552e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -8.678148097659423e-06, -3.2784115035602507e-05, -1.928477355035444e-06, -7.7139094201417762e-06, -7.7139094201417813e-06, -8.678148097659423e-06, -2.507020561546099e-05, -7.7139094201417779e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.6392057517801694e-05, 0.0038993812118816918, -1.157086413021285e-05, -5.7854320651064562e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -1.5427818840283559e-05, -2.3141728260425683e-05, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -1.1570864130212848e-05, -7.7139094201417796e-06, -9.6423867751772224e-07, -1.9284773550354445e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -8.6781480976594095e-06, -4.8211933875886696e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -6.9425184781275384e-05, -3.8569547100708889e-06, -9.6423867751772266e-07, -5.7854320651063656e-05, -7.7139094201417796e-06, -4.628345652085207e-05, -4.6283456520851372e-05, -4.8211933875886354e-05, -4.628345652085207e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.7496707426240409e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -5.8818559328581489e-05, -1.9284773550354449e-06, -6.9425184781275439e-05, -6.9425184781275466e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -6.9425184781275466e-05, -6.942518478127533e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.5427818840283563e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.8927160325532108e-06, -1.5427818840283563e-05, -1.5427818840283549e-05, -1.5427818840283549e-05, -1.5427818840283556e-05, -1.5427818840283549e-05, -7.7139094201417779e-06, -7.7139094201417779e-06, -1.5427818840283552e-05, -1.5427818840283552e-05, -1.928477355035444e-06, -1.9284773550354445e-06, -0.00038762394836212231, -0.00038569547100708389, -9.6423867751773393e-06, -1.928477355035444e-06, -5.7854320651064071e-06, -1.92847735503548e-05, -0.00015427818840283862, -3.8569547100708889e-06, -0.0001774199166632616, -1.9284773550354445e-06, -3.0855637680567098e-05, -3.0855637680567084e-05, -1.5427818840283552e-05, -1.5427818840283552e-05, -0.00015427818840283808, -0.0001542781884028383, -1.5427818840283549e-05, -0.00043776435959304641, -3.8569547100708957e-06, -0.00038569547100708899, -3.0855637680567098e-05, -1.5427818840283556e-05, -1.5427818840283549e-05, -1.928477355035444e-06, -1.9284773550354445e-06, -1.5427818840283556e-05, -1.5427818840283556e-05, -3.8569547100708957e-06, -3.8569547100708957e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -1.5427818840283542e-05, -9.6423867751773393e-06, -5.7854320651064097e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -1.928477355035444e-06, -2.8927160325531869e-05, -1.5427818840283552e-05, -1.5427818840283552e-05, -1.7356296195319175e-05, -1.5427818840283556e-05, -2.892716032553176e-05, -3.8569547100708873e-06, -1.9284773550354479e-06, -1.5427818840283556e-05, -1.5427818840283556e-05, -1.928477355035444e-06, -1.928477355035444e-06, -1.5427818840283552e-05, -1.5427818840283552e-05, -3.8569547100708881e-06, -1.9284773550354445e-06, -1.5427818840283556e-05, -3.0855637680567112e-05, -1.9284773550354679e-05, -1.5427818840283556e-05, -3.0855637680567112e-05, -1.928477355035444e-06, -1.5427818840283552e-05, -3.2784115035602622e-05, -1.5427818840283552e-05, -1.5427818840283556e-05, -3.0855637680567139e-05, 0.0077949054690533209, -4.8211933875886422e-05, -1.5427818840283552e-05, -3.0855637680567132e-05, -3.0855637680567132e-05, -7.7139094201417745e-06, -1.5427818840283556e-05, -1.9284773550354679e-05, -2.1213250905389769e-05, -7.7139094201417745e-06, -3.0855637680567105e-05, -1.5427818840283556e-05, -1.5427818840283552e-05, -1.5427818840283552e-05, -3.8569547100708873e-06, -1.5427818840283552e-05, -1.5427818840283552e-05, -1.9284773550354428e-06, -1.5427818840283552e-05, -3.8569547100708881e-06, -1.5427818840283552e-05, -1.5427818840283556e-05, -1.5427818840283556e-05, -1.9284773550354445e-06, -3.0855637680567139e-05, -3.0855637680567139e-05, -1.9284773550354445e-06, -1.5427818840283556e-05, -1.5427818840283556e-05, -1.928477355035444e-06, -1.5427818840283549e-05, -1.5427818840283549e-05, -1.5427818840283556e-05, -1.5427818840283549e-05, -4.6283456520850722e-05, -1.5427818840283549e-05, -1.5427818840283556e-05, -1.5427818840283552e-05, -1.9284773550354445e-06, -1.5427818840283556e-05, -1.5427818840283552e-05, -3.0855637680567112e-05, -7.7139094201417779e-06, -3.4712592390638417e-05, -7.7139094201417779e-06, -1.928477355035444e-06, -3.8569547100708889e-06, -2.5070205615461119e-05, -1.5427818840283556e-05, -3.0855637680567105e-05, -0.00016199209782297852, -1.5427818840283552e-05, -0.00016970600724311853, -1.5427818840283556e-05, -1.5427818840283556e-05, -3.0855637680567132e-05, -0.00015427818840283789, -3.0855637680567132e-05, -0.00015620666575787341, -1.928477355035444e-06, -3.0855637680567132e-05, 0.0038974527345266557, -7.7139094201417745e-06, -0.00016199209782297841, -0.00015427818840283862, -0.00015427818840283778, -0.00015427818840283816, -1.928477355035444e-06, -7.7139094201417762e-06, -1.9284773550354445e-06, -1.928477355035444e-06, -1.9284773550354479e-06, -1.5427818840283556e-05, -1.5427818840283556e-05, -1.5427818840283556e-05, -1.5427818840283556e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -1.5427818840283552e-05, -1.9284773550354834e-05, -3.8569547100709574e-05, -3.0855637680567105e-05, -3.0855637680567105e-05, -1.5427818840283552e-05, -4.6283456520850769e-05, -5.7854320651064283e-06, -0.00016970600724311962, -3.0855637680567105e-05, -0.00013885036956255421, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875885771e-05, -3.0855637680567112e-05, -1.5427818840283552e-05, -1.3499341485248311e-05, -7.7139094201417779e-06, -3.8569547100708873e-06, -0.00013885036956255416, -3.8569547100708873e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -0.00013885036956255416, -1.5427818840283556e-05, -1.9284773550354445e-06, -1.5427818840283556e-05, -1.9284773550354445e-06, -1.5427818840283556e-05, -1.92847735503548e-05, -5.7854320651064308e-06, -1.5427818840283556e-05, -2.8927160325531814e-05, -1.9284773550354445e-06, -1.5427818840283556e-05, -3.8569547100708957e-06, -3.8569547100708957e-06, -3.8569547100708949e-06, -1.9284773550354445e-06, -1.1570864130212755e-05, -5.7854320651064164e-06, -1.5427818840283552e-05, -1.5427818840283552e-05, -3.0855637680567112e-05, -5.0140411230922115e-05, -4.4354979165815055e-05, -1.9284773550354445e-06, -3.0855637680567112e-05, -1.5427818840283556e-05, -1.1570864130212779e-05, -3.8569547100708889e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -0.00015427818840283816, -0.00015427818840283778, -0.00031241333151574768, -0.00015427818840283778, -0.00015427818840283789, -7.7139094201417745e-06, -3.8569547100708889e-06, -1.5427818840283552e-05, -1.7356296195319141e-05, -7.7139094201417745e-06, -2.1213250905389881e-05, -1.928477355035444e-06, -1.9284773550354445e-06, -3.0855637680567112e-05, -1.5427818840283556e-05, -1.5427818840283556e-05, -1.9284773550354445e-06, -1.928477355035444e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -3.0855637680567105e-05, -1.5427818840283556e-05, -1.9284773550354445e-06, -0.00031241333151574703, -1.5427818840283552e-05, -1.5427818840283552e-05, -1.9284773550354445e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -5.7854320651063453e-06, -1.9284773550354436e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -1.9284773550354445e-06, -1.928477355035444e-06, -7.7139094201417745e-06, -2.3141728260425401e-05, -1.5427818840283556e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.4712592390638499e-05, -1.928477355035444e-06, -7.7139094201417762e-06, -3.8569547100708889e-06, -3.0855637680567105e-05, -3.0855637680567105e-05, -9.6423867751773833e-06, -7.7139094201417762e-06, -3.8569547100708881e-06, -1.1570864130212687e-05, -0.00016392057517801333, -1.9284773550354445e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -3.0855637680567105e-05, -3.0855637680567105e-05, -7.7139094201417779e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -1.9284773550354445e-06, -8.8709958331631506e-05, -1.9284773550354679e-05, -1.928477355035444e-06, -1.5427818840283552e-05, -1.5427818840283542e-05, -1.5427818840283552e-05, -3.0855637680567105e-05, -1.5427818840283542e-05, -3.0855637680567105e-05, -1.5427818840283542e-05, -1.5427818840283542e-05, -0.00059204254799587967, -1.5427818840283556e-05, -0.00038569547100708791, -1.5427818840283556e-05, -3.8569547100708873e-06, -0.00011570864130212596, -2.3141728260425388e-05, -9.6423867751773697e-06, -0.0001157086413021272, -1.9284773550354445e-06, -1.5427818840283552e-05, -1.5427818840283552e-05, -0.00031241333151574703, -1.5427818840283552e-05, -1.5427818840283552e-05, -0.00044162131430312157, -5.7854320651064283e-06, -0.0003856954710070866, -1.5427818840283556e-05, -1.5427818840283556e-05, -1.928477355035444e-06, -1.5427818840283552e-05, -1.5427818840283552e-05, -1.9284773550354445e-06, -3.0855637680567105e-05, -3.0855637680567105e-05, -3.8569547100708949e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -1.5427818840283556e-05, -1.5427818840283556e-05, -0.00031241333151574768, -1.5427818840283552e-05, -1.5427818840283552e-05, -5.2068888585956752e-05, -0.00018513382608340305, -1.5427818840283556e-05, -0.00013692189220751731, -2.3141728260425368e-05, -2.3141728260425368e-05, -1.5427818840283549e-05, -1.5427818840283549e-05, -1.9284773550354841e-05, -1.5427818840283549e-05, -1.9284773550354797e-05, -4.0498024455744712e-05, -1.5427818840283556e-05, -9.6423867751774104e-06, -4.4354979165815753e-05, -1.5427818840283552e-05, -2.3141728260425388e-05, -5.7854320651064181e-06, -9.6423867751773664e-06, -3.8569547100708957e-06, -1.928477355035444e-06, -1.9284773550354445e-06, -1.5427818840283549e-05, -2.3141728260425374e-05, -1.1570864130212775e-05, -7.7139094201417779e-06, -1.5427818840283556e-05, -1.5427818840283549e-05, -1.5427818840283542e-05, -3.0855637680567084e-05, -1.5427818840283552e-05, -7.7139094201417762e-06, -3.0855637680567098e-05, -1.5427818840283556e-05, -7.7139094201417762e-06, -1.5427818840283542e-05, -1.9284773550354445e-06, -1.5427818840283556e-05, -1.5427818840283556e-05, -3.0855637680567139e-05, -4.6283456520851304e-05, -1.5427818840283556e-05, -3.0855637680567098e-05, -3.0855637680567084e-05, -1.5427818840283552e-05, -1.5427818840283552e-05, -1.5427818840283552e-05, -1.5427818840283552e-05, -1.7356296195319256e-05, -6.5568230071205664e-05, -3.8569547100708873e-06, -1.5427818840283549e-05, -1.5427818840283556e-05, -1.7356296195319256e-05, -5.0140411230922156e-05, -1.5427818840283549e-05, -1.5427818840283556e-05, -1.5427818840283549e-05, -7.7139094201417762e-06, -7.7139094201417762e-06, -1.9284773550354445e-06, -1.9284773550354479e-06, -1.928477355035444e-06, -3.8569547100708889e-06, 0.0038955242571716195, -5.7854320651063792e-05, -2.3141728260425388e-05, -1.1570864130212755e-05, -1.9284773550354445e-06, -7.7139094201417762e-06, -3.0855637680567105e-05, -4.6283456520850742e-05, -1.5427818840283549e-05, -7.7139094201417762e-06, -3.0855637680567105e-05, -3.0855637680567105e-05, -7.7139094201417762e-06, -2.3141728260425384e-05, -1.5427818840283552e-05, -1.9284773550354474e-06, -3.8569547100708873e-06, -7.7139094201417762e-06, -7.7139094201417779e-06, -1.7356296195319229e-05, -9.6423867751773969e-06, -1.5427818840283556e-05, -3.0855637680567112e-05, -0.00013885036956255394, -7.7139094201417745e-06, -1.9284773550354445e-06, -0.0001157086413021259, -1.5427818840283552e-05, -9.256691304170288e-05, -9.2566913041701497e-05, -9.6423867751771217e-05, -9.256691304170288e-05, -7.7139094201417745e-06, -7.7139094201417745e-06, -1.5427818840283556e-05, -1.5427818840283556e-05, -7.7139094201417779e-06, -7.7139094201417779e-06, -1.5427818840283552e-05, -1.9284773550354474e-06, -1.5427818840283552e-05, -1.9284773550354445e-06, -1.928477355035444e-06, -0.00013499341485248299, -7.7139094201417779e-06, -7.7139094201417779e-06, -0.00011763711865716123, -3.8569547100708881e-06, -0.00013885036956255416, -0.00013885036956255416, -1.5427818840283552e-05, -1.928477355035444e-06, -1.5427818840283552e-05, -0.00013885036956255421, -0.00013885036956255394, -1.5427818840283556e-05, -1.5427818840283556e-05, -3.8569547100708889e-06, -3.8569547100708881e-06, -3.0855637680567112e-05, -1.5427818840283556e-05, -1.5427818840283556e-05, -5.7854320651063436e-06, -3.0855637680567112e-05, -1.2052983468971621e-05, -1.2052983468971587e-05, -1.20529834689716e-05, -1.2052983468971614e-05, -6.026491734485757e-06, -6.0264917344857587e-06, -1.2052983468971512e-05, -1.2052983468971509e-05, -1.5066229336214479e-06, -1.5066229336214223e-06, -0.00030283120965790816, -0.00030132458672428629, -7.5331146681072498e-06, -1.5066229336214477e-06, -4.5198688008643988e-06, -1.5066229336214506e-05, -0.00012052983468971624, -3.0132458672428446e-06, -0.00013860930989317415, -1.5066229336214384e-06, -2.4105966937943177e-05, -2.4105966937943157e-05, -1.2052983468971504e-05, -1.2052983468971517e-05, -0.00012052983468971624, -0.00012052983468971624, -1.2052983468971426e-05, -0.00034200340593206987, -3.0132458672429069e-06, -0.00030132458672428895, -2.4105966937943197e-05, -1.205298346897159e-05, -1.2052983468971624e-05, -1.5066229336214378e-06, -1.5066229336214484e-06, -1.2052983468971561e-05, -1.2052983468971575e-05, -3.013245867242906e-06, -3.013245867242906e-06, -1.506622933621438e-06, -1.5066229336214443e-06, -1.2052983468971528e-05, -7.5331146681072752e-06, -4.5198688008643929e-06, -6.0264917344857604e-06, -6.0264917344857553e-06, -1.5066229336214477e-06, -2.2599344004321511e-05, -1.2052983468971548e-05, -1.2052983468971551e-05, -1.3559606402592952e-05, -1.20529834689715e-05, -2.2599344004321595e-05, -3.0132458672428959e-06, -1.5066229336214517e-06, -1.2052983468971507e-05, -1.2052983468971511e-05, -1.5066229336214488e-06, -1.5066229336214458e-06, -1.2052983468971556e-05, -1.2052983468971543e-05, -3.0132458672428472e-06, -1.5066229336214426e-06, -1.2052983468971531e-05, -2.410596693794316e-05, -1.5066229336214476e-05, -1.2052983468971568e-05, -2.4105966937943028e-05, -1.5066229336214488e-06, -1.2052983468971528e-05, -2.5612589871564596e-05, -1.2052983468971558e-05, -1.2052983468971541e-05, -2.410596693794318e-05, -4.8211933875886422e-05, 0.0061003162582332557, -1.2052983468971511e-05, -2.410596693794273e-05, -2.4105966937942757e-05, -6.0264917344858104e-06, -1.2052983468971436e-05, -1.5066229336214466e-05, -1.6572852269835702e-05, -6.026491734485812e-06, -2.4105966937943082e-05, -1.2052983468971399e-05, -1.2052983468971563e-05, -1.2052983468971568e-05, 0.00024250602739570875, -1.2052983468971611e-05, -1.2052983468971511e-05, -1.506622933621453e-06, 0.0019521012026346379, -3.0132458672428785e-06, -1.2052983468971604e-05, -1.2052983468971558e-05, -1.2052983468971572e-05, -1.5066229336214492e-06, -2.4105966937943136e-05, -2.4105966937943157e-05, -1.5066229336214464e-06, -1.2052983468971409e-05, -1.2052983468971419e-05, -1.5066229336214471e-06, -1.2052983468971624e-05, -1.2052983468971607e-05, -1.2052983468971534e-05, -1.2052983468971614e-05, -3.6158950406914554e-05, -1.2052983468971614e-05, -1.2052983468971521e-05, -1.2052983468971533e-05, -1.5066229336214439e-06, -1.2052983468971534e-05, -1.2052983468971538e-05, -2.4105966937943089e-05, -6.0264917344857553e-06, -2.7119212805185812e-05, -6.0264917344857604e-06, -1.5066229336214517e-06, -3.0132458672428895e-06, -1.9586098137078916e-05, -1.2052983468971572e-05, -2.4105966937942855e-05, -0.00012655632642420079, -1.2052983468971556e-05, -0.000132582818158687, -1.2052983468971551e-05, -1.2052983468971534e-05, -2.4105966937942757e-05, -0.00012052983468971611, -2.410596693794273e-05, -0.00012203645762333714, -1.5066229336214378e-06, 0.0039042024052692794, -2.4105966937942777e-05, -6.0264917344858053e-06, -0.00012655632642420079, -0.00012052983468971624, -0.00012052983468971605, -0.00012052983468971598, -1.5066229336214484e-06, -6.0264917344858324e-06, -1.5066229336214418e-06, -1.5066229336214505e-06, -1.506622933621453e-06, -1.2052983468971565e-05, -1.2052983468971572e-05, -1.2052983468971561e-05, -1.2052983468971568e-05, -1.5066229336214418e-06, -1.5066229336214426e-06, -1.5066229336214418e-06, -1.20529834689716e-05, -1.5066229336214537e-05, -3.0132458672428979e-05, -2.4105966937942825e-05, -2.4105966937943065e-05, -1.2052983468971594e-05, -3.6158950406914615e-05, -4.5198688008644124e-06, -0.00013258281815868692, -2.4105966937943045e-05, -0.00010847685122074416, -1.5066229336214477e-06, -1.5066229336214448e-06, -3.7665573340536024e-05, -2.4105966937943089e-05, -1.2052983468971548e-05, -1.0546360535350061e-05, -6.0264917344857604e-06, -3.013245867242895e-06, -0.00010847685122074416, -3.0132458672428959e-06, -6.0264917344857587e-06, -6.026491734485757e-06, -0.00010847685122074416, -1.2052983468971528e-05, -1.5066229336214443e-06, -1.2052983468971551e-05, -1.5066229336214418e-06, -1.2052983468971538e-05, -1.5066229336214544e-05, -4.519868800864326e-06, -1.2052983468971548e-05, -2.2599344004321853e-05, -1.506622933621438e-06, -1.2052983468971524e-05, -3.0132458672429069e-06, -3.013245867242906e-06, -3.0132458672428438e-06, -1.506622933621446e-06, -9.0397376017287198e-06, -4.519868800864398e-06, -1.2052983468971575e-05, -1.2052983468971592e-05, -2.4105966937943021e-05, -3.9172196274157778e-05, -3.4652327473293565e-05, -1.506622933621438e-06, -2.4105966937942852e-05, -1.2052983468971582e-05, -9.0397376017287435e-06, -3.0132458672428709e-06, -1.5066229336214426e-06, -1.5066229336214505e-06, -0.00012052983468971598, -0.00012052983468971605, -0.00024407291524667445, -0.00012052983468971604, -0.00012052983468971611, -6.026491734485812e-06, -3.0132458672428666e-06, -1.2052983468971483e-05, -1.3559606402592959e-05, -6.0264917344858104e-06, -1.6572852269835871e-05, -1.5066229336214477e-06, -1.5066229336214384e-06, -2.410596693794294e-05, -1.2052983468971528e-05, -1.2052983468971541e-05, -1.5066229336214452e-06, -1.5066229336214479e-06, -6.0264917344857841e-06, -6.0264917344857875e-06, -2.4105966937942859e-05, -1.2052983468971594e-05, -1.5066229336214405e-06, -0.00024407291524667374, -1.2052983468971587e-05, -1.205298346897158e-05, -1.5066229336214464e-06, -6.0264917344857875e-06, -6.0264917344857858e-06, -3.013245867242876e-06, -3.0132458672428764e-06, -4.5198688008643345e-06, -1.5066229336214484e-06, -3.0132458672428764e-06, -3.013245867242876e-06, -1.5066229336214431e-06, -1.5066229336214488e-06, -6.0264917344857731e-06, -1.8079475203457304e-05, -1.2052983468971524e-05, -1.5066229336214418e-06, -1.5066229336214384e-06, -2.7119212805185815e-05, -1.5066229336214458e-06, -6.0264917344857951e-06, -3.0132458672428599e-06, -2.4105966937943001e-05, -2.4105966937943018e-05, -7.5331146681072617e-06, -6.0264917344857765e-06, -3.0132458672428488e-06, -9.0397376017286503e-06, -0.00012806294935782263, -1.5066229336214443e-06, -6.0264917344857748e-06, -6.026491734485779e-06, -2.4105966937943038e-05, -2.4105966937942981e-05, -6.026491734485779e-06, -6.0264917344857672e-06, -6.0264917344857672e-06, -1.5066229336214418e-06, -6.9304654946586791e-05, -1.506622933621451e-05, -1.5066229336214492e-06, -1.205298346897158e-05, -1.2052983468971414e-05, -1.2052983468971587e-05, -2.4105966937942981e-05, -1.2052983468971521e-05, -2.4105966937943038e-05, -1.2052983468971412e-05, -1.2052983468971414e-05, -0.00046253324062178058, -1.2052983468971578e-05, -0.00030132458672429036, -1.2052983468971534e-05, -3.0132458672428967e-06, -9.0397376017287519e-05, -1.8079475203457318e-05, -7.5331146681072498e-06, -9.0397376017286232e-05, -1.5066229336214392e-06, -1.2052983468971568e-05, -1.2052983468971563e-05, -0.00024407291524667374, -1.2052983468971519e-05, -1.2052983468971514e-05, -0.00034501665179930584, -4.5198688008643226e-06, -0.00030132458672428846, -1.2052983468971419e-05, -1.2052983468971409e-05, -1.5066229336214431e-06, -1.2052983468971558e-05, -1.2052983468971573e-05, -1.5066229336214409e-06, -2.4105966937943018e-05, -2.4105966937943001e-05, -3.0132458672428438e-06, -6.0264917344857858e-06, -6.0264917344857875e-06, -1.2052983468971582e-05, -1.205298346897159e-05, -0.00024407291524667445, -1.2052983468971592e-05, -1.2052983468971575e-05, -4.0678819207779296e-05, -0.00014463580162765849, -1.2052983468971399e-05, -0.00010697022828712223, -1.807947520345729e-05, -1.807947520345729e-05, -1.2052983468971582e-05, -1.2052983468971607e-05, -1.5066229336214517e-05, -1.2052983468971624e-05, -1.5066229336214513e-05, -3.1639081606050218e-05, -1.2052983468971524e-05, -7.5331146681072532e-06, -3.4652327473293355e-05, -1.2052983468971524e-05, -1.8079475203457318e-05, -4.5198688008644005e-06, -7.5331146681072566e-06, -3.0132458672429035e-06, -1.5066229336214484e-06, -1.5066229336214443e-06, -1.2052983468971624e-05, -1.8079475203457304e-05, -9.0397376017287401e-06, -6.0264917344857655e-06, -1.2052983468971594e-05, -1.2052983468971426e-05, -1.2052983468971414e-05, -2.4105966937943021e-05, -1.2052983468971504e-05, -6.026491734485779e-06, -2.4105966937943028e-05, -1.2052983468971514e-05, -6.0264917344857748e-06, -1.2052983468971414e-05, -1.5066229336214392e-06, -1.2052983468971511e-05, -1.2052983468971507e-05, -2.4105966937943157e-05, -3.6158950406914608e-05, -1.2052983468971541e-05, -2.4105966937943197e-05, -2.4105966937943136e-05, -1.2052983468971509e-05, -1.2052983468971512e-05, -1.2052983468971524e-05, -1.2052983468971511e-05, -1.3559606402592837e-05, -5.1225179743129206e-05, -3.0132458672428425e-06, -1.2052983468971614e-05, -1.2052983468971507e-05, -1.355960640259287e-05, -3.9172196274157954e-05, -1.2052983468971587e-05, -1.2052983468971551e-05, -1.2052983468971621e-05, -6.0264917344857765e-06, -6.0264917344857782e-06, -1.5066229336214477e-06, -1.506622933621453e-06, -1.5066229336214492e-06, -3.013245867242892e-06, -2.5612589871564606e-05, -4.5198688008643739e-05, -1.8079475203457324e-05, -9.0397376017287198e-06, -1.5066229336214439e-06, -6.0264917344857765e-06, -2.4105966937943045e-05, -3.6158950406914588e-05, -1.2052983468971611e-05, -6.0264917344857748e-06, -2.4105966937943086e-05, -2.4105966937943065e-05, -6.0264917344857748e-06, -1.8079475203457345e-05, -1.2052983468971519e-05, -1.5066229336214223e-06, -3.0132458672428463e-06, -6.0264917344857765e-06, -6.026491734485779e-06, -1.3559606402592879e-05, -7.5331146681072515e-06, -1.2052983468971582e-05, -2.4105966937943157e-05, -0.00010847685122074426, -6.0264917344858053e-06, -1.5066229336214422e-06, -9.0397376017287547e-05, -1.2052983468971533e-05, -7.2317900813830612e-05, -7.2317900813829257e-05, -7.5331146681071736e-05, -7.2317900813830612e-05, -6.0264917344858053e-06, -6.0264917344858036e-06, -1.2052983468971426e-05, -1.2052983468971456e-05, -6.0264917344857722e-06, -6.0264917344857722e-06, -1.2052983468971604e-05, -1.5066229336214219e-06, -1.2052983468971611e-05, -1.5066229336214435e-06, -1.5066229336214471e-06, -0.00010546360535350042, -6.0264917344857722e-06, -6.0264917344857722e-06, -9.1903998950908867e-05, -3.0132458672428997e-06, -0.00010847685122074416, -0.00010847685122074416, -1.2052983468971528e-05, -1.5066229336214416e-06, -1.2052983468971541e-05, -0.00010847685122074416, -0.00010847685122074367, -1.2052983468971541e-05, -1.2052983468971528e-05, -3.013245867242881e-06, -3.0132458672428954e-06, -2.4105966937943001e-05, -1.2052983468971531e-05, -1.2052983468971538e-05, -4.519868800864326e-06, -2.4105966937943001e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6905987090531648e-05, -9.6423867751771868e-05, -2.4105966937943026e-06, -4.8211933875886133e-07, -1.4463580162765889e-06, -4.8211933875886357e-06, -3.8569547100709194e-05, -9.6423867751772266e-07, -4.4354979165815584e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100709201e-05, -3.8569547100709194e-05, -3.8569547100708898e-06, -0.00010944108989826154, -9.6423867751772224e-07, -9.6423867751773155e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.4105966937943026e-06, -1.4463580162765897e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813829943e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297429e-06, -3.8569547100708906e-06, -7.2317900813829739e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886256e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886122e-07, -3.8569547100708915e-06, -8.1960287589006301e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971511e-05, 0.0019602972313935386, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -4.8211933875886273e-06, -5.3033127263474702e-06, -1.9284773550354445e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, 0.0019602972313935386, -4.8211933875886112e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212707e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976595027e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652458e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -4.049802445574463e-05, -3.8569547100708906e-06, -4.2426501810779795e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100708984e-05, -7.7139094201417796e-06, -3.9051666439468006e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.049802445574463e-05, -3.8569547100709194e-05, -3.856954710070895e-05, -3.8569547100709052e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886425e-06, -9.6423867751772613e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -1.1570864130212719e-05, -1.4463580162766109e-06, -4.24265018107801e-05, -7.7139094201417813e-06, -3.4712592390638146e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971555e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120443e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390638133e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390638133e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886239e-06, -1.4463580162765897e-06, -3.8569547100708906e-06, -7.2317900813829468e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325531951e-06, -1.4463580162766075e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730458e-05, -1.1088744791453901e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532014e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709052e-05, -3.856954710070895e-05, -7.8103332878936256e-05, -3.856954710070895e-05, -3.8569547100708984e-05, -1.9284773550354445e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297335e-06, -1.9284773550354445e-06, -5.3033127263474981e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.810333287893608e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4463580162765855e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651063622e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -8.678148097659523e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -7.713909420141783e-06, -7.713909420141783e-06, -2.4105966937943111e-06, -1.9284773550354457e-06, -9.6423867751772245e-07, -2.8927160325531786e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886144e-07, -2.2177489582907711e-05, -4.8211933875886053e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00014801063699897154, -3.8569547100708906e-06, -9.6423867751772464e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.8927160325531604e-05, -5.7854320651063605e-06, -2.4105966937943102e-06, -2.8927160325531923e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.810333287893608e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -0.00011040532857577955, -1.4463580162765889e-06, -9.6423867751772559e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936256e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489235e-05, -4.6283456520850884e-05, -3.8569547100708906e-06, -3.423047305187907e-05, -5.7854320651063554e-06, -5.7854320651063554e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886459e-06, -3.8569547100708898e-06, -4.8211933875886374e-06, -1.0124506113936154e-05, -3.8569547100708906e-06, -2.41059669379432e-06, -1.1088744791453852e-05, -3.8569547100708915e-06, -5.7854320651063605e-06, -1.4463580162766079e-06, -2.4105966937943098e-06, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.785432065106358e-06, -2.8927160325532002e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354457e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.1570864130212714e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.3390740488297632e-06, -1.6392057517801362e-05, -9.6423867751772224e-07, -3.8569547100708889e-06, -3.8569547100708915e-06, -4.3390740488297632e-06, -1.2535102807730468e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -8.1960287589005827e-06, -1.4463580162765819e-05, -5.7854320651063605e-06, -2.8927160325531951e-06, -4.8211933875886144e-07, -1.9284773550354457e-06, -7.7139094201417813e-06, -1.1570864130212714e-05, -3.8569547100708889e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -5.7854320651063427e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354453e-06, -4.3390740488297564e-06, -2.4105966937943162e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -3.4712592390638106e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531598e-05, -3.8569547100708915e-06, -2.3141728260425778e-05, -2.3141728260425401e-05, -2.4105966937942994e-05, -2.3141728260425778e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.3748353713120543e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.9409279664290582e-05, -9.6423867751772245e-07, -3.4712592390638133e-05, -3.4712592390638133e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.4712592390638146e-05, -3.4712592390638092e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765895e-06, -7.713909420141783e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -0.00019381197418106416, -0.00019284773550354471, -4.8211933875886408e-06, -9.6423867751772245e-07, -2.8927160325532108e-06, -9.6423867751773426e-06, -7.7139094201418985e-05, -1.9284773550354449e-06, -8.8709958331630558e-05, -9.6423867751772245e-07, -1.5427818840283556e-05, -1.5427818840283552e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201418985e-05, -7.7139094201418972e-05, -7.7139094201417779e-06, -0.00021888217979652253, -1.928477355035444e-06, -0.00019284773550354729, -1.5427818840283556e-05, -7.7139094201417796e-06, -7.7139094201417779e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.928477355035444e-06, -1.928477355035444e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -7.7139094201417762e-06, -4.8211933875886408e-06, -2.8927160325531451e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -1.4463580162766085e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -8.6781480976593959e-06, -7.7139094201417796e-06, -1.4463580162766038e-05, -1.9284773550354445e-06, -9.6423867751772224e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.928477355035444e-06, -9.6423867751772266e-07, -7.7139094201417796e-06, -1.5427818840283559e-05, -9.6423867751772833e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -9.6423867751772245e-07, -7.7139094201417796e-06, -1.6392057517801152e-05, -7.7139094201417796e-06, -7.7139094201417813e-06, -1.5427818840283559e-05, -3.0855637680567132e-05, -2.410596693794273e-05, -7.7139094201417796e-06, 0.003912880553366937, -1.5427818840283559e-05, -3.8569547100708881e-06, -7.7139094201417796e-06, -9.6423867751772833e-06, -1.0606625452694898e-05, -3.8569547100708881e-06, -1.5427818840283556e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772202e-07, -7.7139094201417796e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -1.5427818840283556e-05, -1.5427818840283556e-05, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -7.7139094201417813e-06, -7.7139094201417779e-06, -2.3141728260425645e-05, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283563e-05, -3.8569547100708906e-06, -1.7356296195318826e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.2535102807730519e-05, -7.7139094201417796e-06, -1.5427818840283559e-05, -8.0996048911489288e-05, -7.7139094201417796e-06, -8.4853003621559238e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.5427818840283559e-05, -7.7139094201418497e-05, 0.003912880553366937, -7.8103332878936418e-05, -9.6423867751772245e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708889e-06, -8.0996048911489261e-05, -7.7139094201418985e-05, -7.7139094201418429e-05, -7.7139094201418633e-05, -9.6423867751772245e-07, -3.8569547100708881e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -9.6423867751772202e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751773596e-06, -1.9284773550354672e-05, -1.5427818840283559e-05, -1.5427818840283559e-05, -7.7139094201417796e-06, -2.3141728260425669e-05, -2.8927160325532501e-06, -8.4853003621559916e-05, -1.5427818840283559e-05, -6.9425184781275574e-05, -9.6423867751772245e-07, -9.6423867751772266e-07, -2.4105966937943231e-05, -1.5427818840283563e-05, -7.7139094201417796e-06, -6.7496707426240607e-06, -3.8569547100708889e-06, -1.9284773550354445e-06, -6.9425184781275547e-05, -1.9284773550354445e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -6.9425184781275547e-05, -7.7139094201417813e-06, -9.6423867751772266e-07, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751773189e-06, -2.8927160325532082e-06, -7.7139094201417796e-06, -1.4463580162765989e-05, -9.6423867751772266e-07, -7.7139094201417813e-06, -1.928477355035444e-06, -1.928477355035444e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -5.7854320651064495e-06, -2.8927160325532442e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -2.507020561546097e-05, -2.217748958290765e-05, -9.6423867751772266e-07, -1.5427818840283559e-05, -7.7139094201417796e-06, -5.7854320651064613e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.7139094201418633e-05, -7.7139094201418429e-05, -0.00015620666575787335, -7.7139094201418429e-05, -7.7139094201418497e-05, -3.8569547100708881e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -8.678148097659379e-06, -3.8569547100708881e-06, -1.0606625452694954e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.5427818840283559e-05, -7.7139094201417796e-06, -9.6423867751772266e-07, -0.00015620666575787297, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.8927160325532082e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.8569547100708889e-06, -1.157086413021284e-05, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -1.7356296195318866e-05, -9.6423867751772245e-07, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -4.8211933875886629e-06, -3.8569547100708898e-06, -1.9284773550354445e-06, -5.7854320651064147e-06, -8.196028758900664e-05, -9.6423867751772266e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772266e-07, -4.4354979165815123e-05, -9.6423867751772833e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -7.7139094201417762e-06, -1.5427818840283559e-05, -7.7139094201417762e-06, -7.7139094201417762e-06, -0.0002960212739979459, -7.7139094201417796e-06, -0.0001928477355035452, -7.7139094201417796e-06, -1.9284773550354445e-06, -5.7854320651063588e-05, -1.1570864130212836e-05, -4.8211933875886569e-06, -5.7854320651064232e-05, -9.6423867751772266e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00015620666575787297, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00022081065715155769, -2.8927160325532065e-06, -0.00019284773550354609, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00015620666575787335, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.603444429297843e-05, -9.2566913041702663e-05, -7.7139094201417796e-06, -6.8460946103757626e-05, -1.1570864130212826e-05, -1.1570864130212826e-05, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751773647e-06, -7.7139094201417779e-06, -9.6423867751773426e-06, -2.0249012227872308e-05, -7.7139094201417796e-06, -4.8211933875886764e-06, -2.2177489582907555e-05, -7.7139094201417796e-06, -1.1570864130212836e-05, -2.8927160325532451e-06, -4.8211933875886561e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -7.7139094201417779e-06, -1.1570864130212829e-05, -5.7854320651064596e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -1.5427818840283552e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -1.5427818840283556e-05, -7.7139094201417813e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -9.6423867751772266e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -2.3141728260425659e-05, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.5427818840283552e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -8.6781480976594366e-06, -3.2784115035602507e-05, -1.928477355035444e-06, -7.7139094201417762e-06, -7.7139094201417813e-06, -8.6781480976594366e-06, -2.507020561546099e-05, -7.7139094201417779e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -9.6423867751772202e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.6392057517801057e-05, -2.8927160325531828e-05, -1.1570864130212836e-05, -5.7854320651064495e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -1.5427818840283559e-05, -2.3141728260425656e-05, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -1.1570864130212835e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -1.9284773550354445e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -8.678148097659423e-06, -4.8211933875886696e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -6.9425184781275574e-05, -3.8569547100708889e-06, -9.6423867751772266e-07, -5.7854320651063575e-05, -7.7139094201417796e-06, -4.6283456520852016e-05, -4.6283456520851318e-05, -4.8211933875886286e-05, -4.6283456520852016e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.7496707426240545e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -5.8818559328581421e-05, -1.9284773550354449e-06, -6.9425184781275547e-05, -6.9425184781275547e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -6.9425184781275574e-05, -6.9425184781275439e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.5427818840283563e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.8927160325532074e-06, -1.5427818840283563e-05, -7.7139094201417762e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -0.00019381197418106406, -0.00019284773550354455, -4.8211933875886425e-06, -9.6423867751772224e-07, -2.8927160325532124e-06, -9.642386775177346e-06, -7.7139094201419012e-05, -1.9284773550354449e-06, -8.8709958331630639e-05, -9.6423867751772245e-07, -1.5427818840283552e-05, -1.5427818840283552e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201419012e-05, -7.7139094201418999e-05, -7.7139094201417762e-06, -0.00021888217979652264, -1.928477355035444e-06, -0.00019284773550354712, -1.5427818840283552e-05, -7.7139094201417796e-06, -7.7139094201417762e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.928477355035444e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417745e-06, -4.8211933875886425e-06, -2.8927160325531434e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -1.4463580162766078e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -8.6781480976594061e-06, -7.7139094201417796e-06, -1.4463580162766031e-05, -1.9284773550354445e-06, -9.6423867751772202e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -1.5427818840283559e-05, -9.6423867751772867e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -9.6423867751772224e-07, -7.7139094201417796e-06, -1.6392057517801145e-05, -7.7139094201417779e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -3.0855637680567132e-05, -2.4105966937942757e-05, -7.7139094201417796e-06, -1.5427818840283559e-05, 0.003912880553366937, -3.8569547100708881e-06, -7.7139094201417796e-06, -9.6423867751772867e-06, -1.0606625452694895e-05, -3.8569547100708881e-06, -1.5427818840283556e-05, -7.7139094201417796e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -1.928477355035444e-06, -7.7139094201417779e-06, -7.7139094201417796e-06, -9.6423867751772202e-07, -7.7139094201417796e-06, -1.9284773550354445e-06, -7.7139094201417779e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -1.5427818840283552e-05, -1.5427818840283552e-05, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -2.3141728260425632e-05, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -3.8569547100708898e-06, -1.7356296195318846e-05, -3.8569547100708898e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.2535102807730519e-05, -7.7139094201417796e-06, -1.5427818840283556e-05, -8.0996048911489288e-05, -7.7139094201417796e-06, -8.4853003621559238e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, 0.003912880553366937, -7.7139094201418524e-05, -1.5427818840283559e-05, -7.8103332878936446e-05, -9.6423867751772245e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708881e-06, -8.0996048911489288e-05, -7.7139094201419012e-05, -7.7139094201418457e-05, -7.713909420141866e-05, -9.6423867751772224e-07, -3.8569547100708881e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772202e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417779e-06, -9.642386775177363e-06, -1.9284773550354679e-05, -1.5427818840283556e-05, -1.5427818840283559e-05, -7.7139094201417779e-06, -2.3141728260425656e-05, -2.8927160325532484e-06, -8.4853003621559889e-05, -1.5427818840283556e-05, -6.9425184781275655e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943214e-05, -1.5427818840283559e-05, -7.7139094201417796e-06, -6.7496707426240658e-06, -3.8569547100708881e-06, -1.9284773550354445e-06, -6.9425184781275628e-05, -1.9284773550354445e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -6.9425184781275628e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751773223e-06, -2.8927160325532065e-06, -7.7139094201417796e-06, -1.4463580162765982e-05, -9.6423867751772245e-07, -7.7139094201417796e-06, -1.928477355035444e-06, -1.928477355035444e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -5.7854320651064461e-06, -2.8927160325532425e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -1.5427818840283559e-05, -2.507020561546097e-05, -2.217748958290767e-05, -9.6423867751772245e-07, -1.5427818840283559e-05, -7.7139094201417796e-06, -5.7854320651064579e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.713909420141866e-05, -7.7139094201418457e-05, -0.00015620666575787335, -7.7139094201418457e-05, -7.7139094201418524e-05, -3.8569547100708881e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -8.6781480976593892e-06, -3.8569547100708881e-06, -1.0606625452694951e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.5427818840283556e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -0.000156206665757873, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.8927160325532065e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -3.8569547100708881e-06, -1.1570864130212833e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.7356296195318887e-05, -9.6423867751772245e-07, -3.8569547100708881e-06, -1.9284773550354445e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -4.8211933875886645e-06, -3.8569547100708898e-06, -1.9284773550354445e-06, -5.7854320651064113e-06, -8.196028758900664e-05, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -4.435497916581515e-05, -9.6423867751772867e-06, -9.6423867751772224e-07, -7.7139094201417779e-06, -7.7139094201417762e-06, -7.7139094201417779e-06, -1.5427818840283559e-05, -7.7139094201417762e-06, -1.5427818840283559e-05, -7.7139094201417762e-06, -7.7139094201417762e-06, -0.00029602127399794563, -7.7139094201417796e-06, -0.00019284773550354509, -7.7139094201417796e-06, -1.9284773550354445e-06, -5.7854320651063561e-05, -1.1570864130212829e-05, -4.8211933875886586e-06, -5.7854320651064205e-05, -9.6423867751772245e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -0.000156206665757873, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.0002208106571515578, -2.8927160325532048e-06, -0.00019284773550354593, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772245e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00015620666575787335, -7.7139094201417779e-06, -7.7139094201417779e-06, -2.603444429297843e-05, -9.2566913041702609e-05, -7.7139094201417796e-06, -6.8460946103757707e-05, -1.1570864130212819e-05, -1.1570864130212819e-05, -7.7139094201417762e-06, -7.7139094201417762e-06, -9.6423867751773681e-06, -7.7139094201417762e-06, -9.642386775177346e-06, -2.0249012227872315e-05, -7.7139094201417796e-06, -4.8211933875886781e-06, -2.2177489582907575e-05, -7.7139094201417796e-06, -1.1570864130212829e-05, -2.8927160325532434e-06, -4.8211933875886578e-06, -1.928477355035444e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -7.7139094201417762e-06, -1.1570864130212823e-05, -5.7854320651064562e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -1.5427818840283552e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -1.5427818840283552e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -2.3141728260425645e-05, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.5427818840283552e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -8.6781480976594468e-06, -3.2784115035602493e-05, -1.928477355035444e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -8.6781480976594468e-06, -2.507020561546099e-05, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.639205751780105e-05, -2.8927160325531814e-05, -1.1570864130212829e-05, -5.7854320651064461e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -1.5427818840283556e-05, -2.3141728260425642e-05, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -1.1570864130212828e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -1.928477355035444e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -8.6781480976594332e-06, -4.8211933875886713e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -6.9425184781275655e-05, -3.8569547100708881e-06, -9.6423867751772245e-07, -5.7854320651063548e-05, -7.7139094201417796e-06, -4.6283456520851989e-05, -4.6283456520851291e-05, -4.8211933875886252e-05, -4.6283456520851989e-05, -3.8569547100708881e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -9.6423867751772245e-07, -7.7139094201417779e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -6.7496707426240626e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -5.8818559328581381e-05, -1.9284773550354445e-06, -6.9425184781275628e-05, -6.9425184781275628e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -6.9425184781275655e-05, -6.942518478127552e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354445e-06, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.8927160325532057e-06, -1.5427818840283559e-05, -1.928477355035444e-06, -1.928477355035444e-06, -1.9284773550354445e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943056e-07, -2.4105966937943056e-07, -4.8452993545266217e-05, -4.8211933875886374e-05, -1.205298346897164e-06, -2.4105966937943056e-07, -7.2317900813830555e-07, -2.4105966937943433e-06, -1.92847735503548e-05, -4.8211933875886112e-07, -2.2177489582907545e-05, -2.4105966937943061e-07, -3.8569547100708881e-06, -3.8569547100708873e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.92847735503548e-05, -1.92847735503548e-05, -1.928477355035444e-06, -5.4720544949130253e-05, -4.8211933875886101e-07, -4.8211933875887011e-05, -3.8569547100708881e-06, -1.9284773550354445e-06, -1.928477355035444e-06, -2.4105966937943056e-07, -2.4105966937943061e-07, -1.9284773550354445e-06, -1.9284773550354449e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.928477355035444e-06, -1.205298346897164e-06, -7.2317900813830597e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943056e-07, -3.6158950406915331e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.1695370244148456e-06, -1.9284773550354449e-06, -3.6158950406915213e-06, -4.8211933875886101e-07, -2.4105966937943051e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -2.4105966937943056e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886101e-07, -2.4105966937943061e-07, -1.9284773550354449e-06, -3.8569547100708898e-06, -2.4105966937943382e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -2.4105966937943061e-07, -1.9284773550354445e-06, -4.0980143794502795e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -7.7139094201417745e-06, -6.0264917344858104e-06, -1.9284773550354445e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, 0.00098111285437428651, -1.9284773550354449e-06, -2.410596693794339e-06, -2.651656363173733e-06, -9.6423867751772901e-07, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886122e-07, -1.928477355035444e-06, -1.9284773550354445e-06, -2.4105966937943045e-07, -1.9284773550354445e-06, -4.8211933875886122e-07, -1.928477355035444e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943056e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -2.4105966937943056e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -2.4105966937943056e-07, -1.928477355035444e-06, -1.928477355035444e-06, -1.9284773550354449e-06, -1.928477355035444e-06, -5.7854320651064461e-06, -1.9284773550354487e-06, -1.9284773550354449e-06, -1.9284773550354445e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -4.339074048829681e-06, -9.6423867751772245e-07, -2.4105966937943051e-07, -4.8211933875886122e-07, -3.1337757019326331e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -2.0249012227872336e-05, -1.9284773550354445e-06, -2.1213250905389776e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -1.9284773550354682e-05, -3.8569547100708881e-06, -1.9525833219734145e-05, -2.4105966937943056e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -9.6423867751772202e-07, -2.0249012227872329e-05, -1.92847735503548e-05, -1.9284773550354665e-05, -1.9284773550354716e-05, -2.4105966937943061e-07, -9.6423867751772202e-07, -2.4105966937943061e-07, -2.4105966937943051e-07, -2.4105966937943051e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.410596693794328e-06, -4.8211933875886815e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354449e-06, -5.7854320651064495e-06, -7.2317900813831656e-07, -2.1213250905389945e-05, -3.8569547100708889e-06, -1.7356296195318792e-05, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.0264917344858307e-06, -3.8569547100708898e-06, -1.9284773550354445e-06, -1.6874176856560448e-06, -9.6423867751772202e-07, -4.8211933875886101e-07, -1.7356296195318792e-05, -4.8211933875886101e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.7356296195318785e-05, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.410596693794328e-06, -7.2317900813830618e-07, -1.9284773550354449e-06, -3.6158950406915094e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -1.44635801627662e-06, -7.2317900813831497e-07, -1.928477355035444e-06, -1.928477355035444e-06, -3.8569547100708889e-06, -6.2675514038652492e-06, -5.5443723957268887e-06, -2.4105966937943061e-07, -3.8569547100708889e-06, -1.9284773550354445e-06, -1.4463580162766234e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943056e-07, -1.9284773550354716e-05, -1.9284773550354665e-05, -3.9051666439468419e-05, -1.9284773550354665e-05, -1.9284773550354682e-05, -9.6423867751772901e-07, -4.8211933875886112e-07, -1.928477355035444e-06, -2.169537024414832e-06, 0.00098111285437428651, -2.6516563631737334e-06, -2.4105966937943056e-07, -2.4105966937943061e-07, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -2.4105966937943056e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -3.8569547100708881e-06, -1.9284773550354445e-06, -2.4105966937943061e-07, -3.9051666439468331e-05, -1.928477355035444e-06, -1.928477355035444e-06, -2.4105966937943056e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.2317900813830597e-07, -2.4105966937943051e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -9.6423867751772224e-07, -2.8927160325532247e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.3390740488296912e-06, -2.4105966937943056e-07, -9.6423867751772139e-07, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.2052983468971695e-06, -9.6423867751772224e-07, -4.8211933875886112e-07, -1.4463580162766119e-06, -2.0490071897251667e-05, -2.4105966937943061e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -1.1088744791453727e-05, -2.4105966937943285e-06, -2.4105966937943061e-07, -1.928477355035444e-06, -1.9284773550354436e-06, -1.928477355035444e-06, -3.8569547100708889e-06, -1.9284773550354436e-06, -3.8569547100708889e-06, -1.9284773550354436e-06, -1.9284773550354436e-06, -7.4005318499486896e-05, -1.9284773550354445e-06, -4.8211933875886673e-05, -1.9284773550354449e-06, -4.8211933875886101e-07, -1.4463580162765948e-05, -2.8927160325532006e-06, -1.2052983468971678e-06, -1.4463580162766112e-05, -2.4105966937943061e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.9051666439468331e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -5.520266428788922e-05, -7.2317900813830576e-07, -4.8211933875886713e-05, -1.9284773550354445e-06, -1.9284773550354449e-06, -2.4105966937943056e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.4105966937943061e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886101e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.9051666439468419e-05, -1.928477355035444e-06, -1.928477355035444e-06, -6.5086110732447727e-06, -2.3141728260425791e-05, -1.9284773550354449e-06, -1.7115236525939278e-05, -2.892716032553223e-06, -2.892716032553223e-06, -1.9284773550354449e-06, -1.928477355035444e-06, -2.410596693794328e-06, -1.928477355035444e-06, -2.4105966937943424e-06, -5.0622530569680805e-06, -1.9284773550354449e-06, -1.205298346897164e-06, -5.5443723957268599e-06, -1.9284773550354445e-06, -2.8927160325531972e-06, -7.2317900813828765e-07, -1.2052983468971678e-06, -4.8211933875886101e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.928477355035444e-06, -2.8927160325532239e-06, -1.4463580162766225e-06, -9.6423867751772245e-07, -1.9284773550354445e-06, -1.928477355035444e-06, -1.9284773550354436e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -3.8569547100708881e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -1.9284773550354436e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -5.7854320651064478e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -3.8569547100708873e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.1695370244148473e-06, -8.1960287589006064e-06, -4.8211933875886091e-07, -1.9284773550354487e-06, -1.9284773550354449e-06, -2.1695370244149239e-06, -6.2675514038652559e-06, -1.928477355035444e-06, -1.9284773550354449e-06, -1.928477355035444e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -2.4105966937943056e-07, -2.4105966937943051e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -4.0980143794502549e-06, -7.2317900813829739e-06, -2.8927160325532108e-06, -1.44635801627662e-06, -2.4105966937943061e-07, -9.6423867751772224e-07, -3.8569547100708889e-06, -5.7854320651064495e-06, -1.928477355035447e-06, -9.6423867751772224e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772224e-07, -2.8927160325532239e-06, -1.9284773550354445e-06, -2.4105966937943051e-07, -4.8211933875886101e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -2.1695370244148431e-06, -1.2052983468971712e-06, -1.9284773550354445e-06, -3.8569547100708898e-06, -1.7356296195318772e-05, -9.6423867751772202e-07, -2.4105966937943061e-07, -1.4463580162765948e-05, -1.9284773550354445e-06, -1.1570864130213067e-05, -1.1570864130212896e-05, -1.2052983468971619e-05, -1.1570864130213067e-05, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.928477355035444e-06, -2.4105966937943051e-07, -1.928477355035444e-06, -2.4105966937943061e-07, -2.4105966937943056e-07, -1.6874176856560041e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.4704639832145396e-05, -4.8211933875886101e-07, -1.7356296195318785e-05, -1.7356296195318792e-05, -1.9284773550354445e-06, -2.4105966937943056e-07, -1.9284773550354445e-06, -1.7356296195318792e-05, -1.7356296195318758e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.2317900813830459e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -9.6905987090531838e-05, -9.6423867751772139e-05, -2.4105966937943119e-06, -4.8211933875886133e-07, -1.4463580162765969e-06, -4.8211933875886544e-06, -3.8569547100709343e-05, -9.6423867751772245e-07, -4.4354979165815428e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.856954710070935e-05, -3.8569547100709343e-05, -3.8569547100708898e-06, -0.00010944108989826163, -9.6423867751772245e-07, -9.6423867751773426e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.4105966937943119e-06, -1.4463580162765791e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813830188e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297234e-06, -3.8569547100708915e-06, -7.2317900813829943e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886247e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -8.1960287589006115e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.2052983468971436e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, 0.0019602972313935386, -4.821193387588623e-06, -5.3033127263474592e-06, -1.9284773550354449e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212765e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594637e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652543e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.0498024455744644e-05, -3.8569547100708906e-06, -4.24265018107797e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709106e-05, -7.7139094201417796e-06, -3.9051666439468114e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.049802445574463e-05, -3.8569547100709343e-05, -3.8569547100709079e-05, -3.8569547100709174e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -4.8211933875886612e-06, -9.6423867751772986e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -1.1570864130212777e-05, -1.4463580162766183e-06, -4.2426501810780033e-05, -7.7139094201417813e-06, -3.4712592390637984e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971589e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120388e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390637984e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.471259239063797e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886425e-06, -1.4463580162765969e-06, -3.8569547100708915e-06, -7.2317900813829706e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325532091e-06, -1.4463580162766149e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730475e-05, -1.1088744791453862e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532158e-06, -9.6423867751772266e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709174e-05, -3.8569547100709079e-05, -7.8103332878936446e-05, -3.8569547100709079e-05, -3.8569547100709106e-05, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297149e-06, -1.9284773550354449e-06, -5.3033127263474871e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936283e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162765969e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.785432065106391e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976594857e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.410596693794323e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.892716032553193e-06, -4.0980143794503347e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.2177489582907629e-05, -4.8211933875886239e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897217, -3.8569547100708906e-06, -9.6423867751772383e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -2.8927160325531692e-05, -5.7854320651063893e-06, -2.4105966937943196e-06, -2.8927160325532021e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936283e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577923, -1.4463580162765961e-06, -9.642386775177283e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936446e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489225e-05, -4.6283456520851087e-05, -3.8569547100708915e-06, -3.4230473051878935e-05, -5.7854320651063842e-06, -5.7854320651063842e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886645e-06, -3.8569547100708898e-06, -4.8211933875886535e-06, -1.0124506113936154e-05, -3.8569547100708915e-06, -2.4105966937943293e-06, -1.1088744791453815e-05, -3.8569547100708906e-06, -5.7854320651063893e-06, -1.4463580162766153e-06, -2.4105966937943191e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063876e-06, -2.8927160325532141e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.1570864130212772e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297446e-06, -1.6392057517801328e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488297446e-06, -1.2535102807730485e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -8.196028758900564e-06, -1.4463580162765863e-05, -5.7854320651063893e-06, -2.8927160325532091e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417813e-06, -1.157086413021277e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651063885e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.3390740488297369e-06, -2.4105966937943255e-06, -3.8569547100708906e-06, -7.713909420141783e-06, 0.0019294415937129734, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531692e-05, -3.8569547100708906e-06, -2.3141728260425893e-05, -2.3141728260425544e-05, -2.4105966937943089e-05, -2.3141728260425893e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.3748353713120408e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.940927966429065e-05, -9.6423867751772245e-07, -3.471259239063797e-05, -3.4712592390637984e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390637984e-05, -3.4712592390637916e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765969e-06, -7.713909420141783e-06, -4.8211933875886764e-06, -4.8211933875886679e-06, -4.8211933875886662e-06, -4.8211933875886772e-06, -2.4105966937943174e-06, -2.4105966937943174e-06, -4.8211933875886315e-06, -4.8211933875886324e-06, -6.0264917344858222e-07, -6.0264917344857936e-07, -0.00012113248386316482, -0.00012052983468971605, 0.00024250602739570848, -6.0264917344858222e-07, -1.8079475203457249e-06, -6.0264917344858324e-06, -4.8211933875886083e-05, -1.2052983468971587e-06, -5.54437239572693e-05, -6.0264917344857873e-07, -9.6423867751773325e-06, -9.6423867751773359e-06, -4.8211933875886332e-06, -4.8211933875886307e-06, -4.8211933875886083e-05, -4.8211933875886083e-05, -4.8211933875886739e-06, -0.00013680136237282669, -1.2052983468971695e-06, -0.00012052983468971573, -9.6423867751773291e-06, -4.8211933875886671e-06, -4.8211933875886756e-06, -6.0264917344857799e-07, -6.0264917344858286e-07, -4.8211933875886603e-06, -4.8211933875886578e-06, -1.2052983468971695e-06, -1.2052983468971695e-06, -6.0264917344857862e-07, -6.0264917344858106e-07, -4.8211933875886281e-06, -3.0132458672428891e-06, -1.8079475203457371e-06, -2.410596693794317e-06, -2.4105966937943179e-06, -6.0264917344858222e-07, -9.0397376017288824e-06, -4.8211933875886459e-06, -4.8211933875886459e-06, -5.423842561037218e-06, -4.8211933875886341e-06, -9.0397376017288248e-06, -1.2052983468971644e-06, -6.0264917344858413e-07, -4.8211933875886332e-06, -4.8211933875886324e-06, -6.0264917344858286e-07, -6.0264917344858137e-07, -4.8211933875886442e-06, -4.8211933875886476e-06, -1.2052983468971733e-06, -6.0264917344858053e-07, -4.82119338758864e-06, -9.642386775177285e-06, -6.026491734485729e-06, -4.8211933875886561e-06, -9.6423867751773054e-06, -6.0264917344858296e-07, -4.8211933875886425e-06, -1.024503594862584e-05, -4.8211933875886544e-06, -4.8211933875886476e-06, -9.6423867751773291e-06, -1.9284773550354679e-05, -1.5066229336214466e-05, -4.8211933875886273e-06, -9.6423867751772833e-06, -9.6423867751772867e-06, -2.410596693794339e-06, -4.821193387588623e-06, 0.0024491662408950357, -6.629140907934346e-06, -2.410596693794339e-06, -9.642386775177346e-06, -4.8211933875886298e-06, -4.8211933875886544e-06, -4.8211933875886527e-06, -1.2052983468971731e-06, -4.8211933875886705e-06, -4.8211933875886273e-06, -6.0264917344858413e-07, -4.821193387588629e-06, -1.2052983468971657e-06, -4.8211933875886713e-06, -4.8211933875886578e-06, -4.8211933875886552e-06, -6.0264917344858307e-07, -9.6423867751773359e-06, -9.6423867751773325e-06, -6.0264917344858201e-07, -4.8211933875886298e-06, -4.8211933875886315e-06, -6.026491734485819e-07, -4.8211933875886756e-06, -4.8211933875886781e-06, -4.8211933875886485e-06, -4.8211933875886772e-06, -1.4463580162765775e-05, -4.8211933875886722e-06, -4.8211933875886417e-06, -4.8211933875886425e-06, -6.0264917344858084e-07, -4.8211933875886391e-06, -4.8211933875886408e-06, -9.6423867751773054e-06, -2.4105966937943179e-06, -1.0847685122074399e-05, -2.410596693794317e-06, -6.0264917344858423e-07, -1.205298346897163e-06, -7.8344392548314977e-06, -4.8211933875886552e-06, -9.6423867751773426e-06, -5.0622530569680683e-05, -4.8211933875886442e-06, -5.3033127263474781e-05, -4.8211933875886459e-06, -4.8211933875886485e-06, -9.6423867751772867e-06, -4.8211933875886578e-05, -9.6423867751772833e-06, -4.8814583049334857e-05, -6.0264917344857809e-07, -9.64238677517728e-06, -9.6423867751772901e-06, -2.4105966937943361e-06, -5.0622530569680683e-05, -4.8211933875886083e-05, -4.8211933875886293e-05, -4.8211933875886632e-05, -6.0264917344858275e-07, -2.4105966937943128e-06, -6.0264917344858021e-07, -6.026491734485837e-07, -6.0264917344858455e-07, -4.8211933875886595e-06, -4.8211933875886586e-06, -4.8211933875886569e-06, -4.8211933875886561e-06, -6.0264917344858021e-07, -6.0264917344858053e-07, -6.0264917344858e-07, -4.8211933875886662e-06, -6.0264917344858459e-06, -1.2052983468971651e-05, -9.642386775177363e-06, -9.6423867751772986e-06, -4.8211933875886671e-06, -1.4463580162765928e-05, -1.8079475203457517e-06, -5.3033127263475073e-05, -9.642386775177302e-06, -4.3390740488297317e-05, -6.0264917344858254e-07, -6.0264917344858137e-07, -1.5066229336214506e-05, -9.6423867751773054e-06, -4.8211933875886459e-06, -4.2185442141400493e-06, -2.4105966937943115e-06, -1.2052983468971644e-06, -4.3390740488297317e-05, -1.2052983468971644e-06, -2.4105966937943174e-06, -2.4105966937943174e-06, -4.339074048829733e-05, -4.8211933875886366e-06, -6.0264917344858106e-07, -4.8211933875886468e-06, -6.0264917344858e-07, -4.8211933875886493e-06, -6.0264917344858273e-06, -1.8079475203457545e-06, -4.8211933875886476e-06, -9.0397376017286859e-06, -6.0264917344857862e-07, -4.8211933875886374e-06, -1.2052983468971695e-06, -1.2052983468971695e-06, -1.2052983468971621e-06, -6.026491734485819e-07, -3.6158950406914836e-06, -1.8079475203457488e-06, -4.8211933875886629e-06, -4.8211933875886603e-06, -9.6423867751773172e-06, -1.5668878509663036e-05, -1.3860930989317156e-05, -6.0264917344857862e-07, -9.642386775177346e-06, -4.8211933875886662e-06, -3.6158950406914887e-06, -1.2052983468971594e-06, -6.0264917344858053e-07, -6.026491734485837e-07, -4.8211933875886632e-05, -4.8211933875886293e-05, -9.7629166098670757e-05, -4.8211933875886293e-05, -4.8211933875886578e-05, -2.410596693794339e-06, -1.2052983468971623e-06, -4.8211933875886595e-06, -5.4238425610372197e-06, -2.410596693794339e-06, -6.6291409079343739e-06, -6.0264917344858233e-07, -6.0264917344857873e-07, -9.6423867751772986e-06, -4.8211933875886366e-06, -4.8211933875886417e-06, -6.0264917344858148e-07, -6.0264917344858222e-07, -2.4105966937943297e-06, -2.4105966937943293e-06, -9.6423867751773443e-06, -4.8211933875886645e-06, -6.0264917344857957e-07, -9.7629166098669754e-05, -4.8211933875886612e-06, -4.821193387588662e-06, -6.0264917344858201e-07, -2.4105966937943293e-06, -2.4105966937943297e-06, -1.205298346897157e-06, -1.2052983468971568e-06, -1.8079475203457335e-06, -6.0264917344858222e-07, -1.2052983468971568e-06, -1.205298346897157e-06, -6.0264917344858053e-07, -6.0264917344858286e-07, -2.4105966937943179e-06, -7.2317900813829604e-06, -4.8211933875886374e-06, -6.026491734485801e-07, -6.0264917344857873e-07, -1.0847685122074392e-05, -6.0264917344858116e-07, -2.4105966937943365e-06, -1.2052983468971687e-06, -9.6423867751772715e-06, -9.6423867751772681e-06, -3.0132458672429162e-06, -2.4105966937943246e-06, -1.2052983468971725e-06, 0.00024190337822225993, -5.1225179743129823e-05, -6.0264917344858116e-07, -2.4105966937943255e-06, -2.4105966937943246e-06, -9.6423867751772647e-06, -9.6423867751772749e-06, -2.4105966937943263e-06, -2.4105966937943213e-06, -2.4105966937943213e-06, -6.026491734485801e-07, -2.772186197863464e-05, -6.026491734485779e-06, -6.0264917344858307e-07, -4.821193387588662e-06, -4.8211933875886764e-06, -4.8211933875886612e-06, -9.6423867751772749e-06, -4.8211933875886213e-06, -9.6423867751772647e-06, -4.8211933875886764e-06, -4.8211933875886764e-06, -0.00018501329624871378, -4.8211933875886671e-06, -0.00012052983468971554, -4.8211933875886391e-06, -1.2052983468971649e-06, -3.6158950406914757e-05, -7.2317900813829519e-06, -3.0132458672429086e-06, -3.6158950406914838e-05, -6.0264917344857904e-07, -4.8211933875886527e-06, -4.8211933875886544e-06, -9.7629166098669754e-05, -4.8211933875886341e-06, -4.8211933875886357e-06, -0.00013800666071972476, -1.8079475203457486e-06, -0.00012052983468971564, -4.8211933875886315e-06, -4.8211933875886298e-06, -6.0264917344858021e-07, -4.8211933875886544e-06, -4.8211933875886527e-06, -6.0264917344857979e-07, -9.6423867751772681e-06, -9.6423867751772715e-06, -1.2052983468971621e-06, -2.4105966937943297e-06, -2.4105966937943293e-06, -4.8211933875886662e-06, -4.8211933875886654e-06, -9.7629166098670757e-05, -4.8211933875886603e-06, -4.8211933875886629e-06, -1.6271527683111606e-05, -5.7854320651063466e-05, -4.8211933875886298e-06, -4.2788091314848902e-05, -7.2317900813829985e-06, -7.2317900813829985e-06, -4.8211933875886679e-06, -4.8211933875886781e-06, -6.0264917344858434e-06, -4.8211933875886756e-06, -6.0264917344858417e-06, -1.2655632642420171e-05, -4.8211933875886408e-06, -3.0132458672429196e-06, -1.3860930989317305e-05, -4.8211933875886341e-06, -7.231790081382957e-06, -1.8079475203457496e-06, -3.0132458672429094e-06, -1.2052983468971683e-06, -6.0264917344858275e-07, -6.0264917344858106e-07, -4.8211933875886756e-06, -7.2317900813829943e-06, -3.6158950406914887e-06, -2.4105966937943196e-06, -4.8211933875886671e-06, -4.8211933875886739e-06, -4.8211933875886764e-06, -9.6423867751772562e-06, -4.8211933875886332e-06, -2.4105966937943246e-06, -9.6423867751772478e-06, -4.8211933875886307e-06, -2.4105966937943255e-06, -4.8211933875886764e-06, -6.0264917344857904e-07, -4.8211933875886324e-06, -4.8211933875886332e-06, -9.6423867751773325e-06, -1.4463580162765968e-05, -4.8211933875886485e-06, -9.6423867751773291e-06, -9.6423867751773393e-06, -4.8211933875886324e-06, -4.8211933875886315e-06, -4.8211933875886341e-06, -4.8211933875886357e-06, -5.4238425610371731e-06, -2.0490071897251677e-05, -1.2052983468971763e-06, -4.8211933875886722e-06, -4.8211933875886315e-06, -5.4238425610371748e-06, -1.5668878509663029e-05, -4.8211933875886679e-06, -4.8211933875886468e-06, -4.8211933875886764e-06, -2.4105966937943246e-06, -2.4105966937943246e-06, -6.0264917344858254e-07, -6.0264917344858455e-07, -6.0264917344858296e-07, -1.2052983468971638e-06, -1.0245035948625838e-05, -1.8079475203457372e-05, -7.2317900813829485e-06, -3.6158950406914836e-06, -6.0264917344858084e-07, -2.410596693794323e-06, -9.642386775177302e-06, -1.4463580162765907e-05, -4.821193387588673e-06, -2.4105966937943238e-06, -9.6423867751772952e-06, -9.6423867751772986e-06, -2.4105966937943238e-06, -7.2317900813829401e-06, -4.8211933875886341e-06, -6.0264917344858127e-07, -1.2052983468971744e-06, -2.410596693794323e-06, -2.4105966937943263e-06, -5.4238425610371883e-06, -3.0132458672429145e-06, -4.8211933875886612e-06, 0.0019545117993284319, -4.3390740488297452e-05, -2.4105966937943361e-06, -6.0264917344858032e-07, -3.6158950406914757e-05, -4.8211933875886425e-06, -2.8927160325532014e-05, -2.8927160325532001e-05, -3.0132458672429013e-05, -2.8927160325532014e-05, -2.4105966937943361e-06, -2.4105966937943365e-06, -4.821193387588623e-06, -4.8211933875886264e-06, -2.4105966937943225e-06, -2.4105966937943225e-06, -4.8211933875886713e-06, -6.0264917344858106e-07, -4.8211933875886705e-06, -6.0264917344858074e-07, -6.026491734485819e-07, -4.2185442141400454e-05, -2.4105966937943225e-06, -2.4105966937943225e-06, -3.6761599580363429e-05, -1.2052983468971663e-06, -4.339074048829733e-05, -4.3390740488297317e-05, -4.8211933875886425e-06, -6.0264917344857989e-07, -4.8211933875886408e-06, -4.3390740488297317e-05, -4.3390740488297757e-05, -4.8211933875886417e-06, -4.8211933875886442e-06, -1.2052983468971594e-06, -1.2052983468971653e-06, -9.6423867751772562e-06, -4.8211933875886434e-06, -4.8211933875886425e-06, -1.8079475203457299e-06, -9.6423867751772562e-06, -5.303312726347438e-06, -5.3033127263474439e-06, -5.3033127263474456e-06, -5.303312726347438e-06, -2.6516563631737321e-06, -2.6516563631737321e-06, -5.3033127263474676e-06, -5.3033127263474676e-06, -6.6291409079343166e-07, -6.6291409079343155e-07, -0.00013324573224948201, -0.00013258281815868613, -3.3145704539671764e-06, -6.6291409079343166e-07, -1.9887422723802697e-06, -6.6291409079343358e-06, -5.3033127263474605e-05, -1.3258281815868631e-06, -6.0988096352996409e-05, -6.6291409079343367e-07, -1.0606625452694898e-05, -1.0606625452694895e-05, -5.3033127263474676e-06, -5.3033127263474676e-06, -5.3033127263474619e-05, -5.3033127263474619e-05, -5.3033127263474397e-06, -0.00015048149861011001, -1.3258281815868595e-06, -0.00013258281815868632, -1.0606625452694901e-05, -5.3033127263474456e-06, -5.3033127263474397e-06, -6.6291409079343398e-07, -6.6291409079343113e-07, -5.3033127263474507e-06, -5.3033127263474507e-06, -1.3258281815868595e-06, -1.3258281815868595e-06, -6.6291409079343346e-07, -6.6291409079343197e-07, -5.3033127263474753e-06, -3.3145704539671743e-06, -1.9887422723802832e-06, -2.6516563631737321e-06, -2.6516563631737321e-06, -6.6291409079343166e-07, -9.9437113619016227e-06, -5.30331272634746e-06, -5.3033127263474609e-06, -5.9662268171410013e-06, -5.3033127263474693e-06, -9.9437113619016075e-06, -1.3258281815868631e-06, -6.6291409079343028e-07, -5.3033127263474693e-06, -5.3033127263474693e-06, -6.6291409079343367e-07, -6.6291409079343229e-07, -5.3033127263474609e-06, -5.3033127263474592e-06, -1.3258281815868574e-06, -6.6291409079343261e-07, -5.3033127263474693e-06, -1.0606625452694905e-05, -6.6291409079343434e-06, -5.3033127263474676e-06, -1.0606625452694952e-05, -6.6291409079343367e-07, -5.3033127263474617e-06, -1.1269539543488349e-05, -5.3033127263474549e-06, -5.3033127263474575e-06, -1.0606625452694898e-05, -2.1213250905389769e-05, -1.6572852269835702e-05, -5.3033127263474702e-06, -1.0606625452694898e-05, -1.0606625452694895e-05, -2.651656363173733e-06, -5.3033127263474592e-06, -6.629140907934346e-06, 0.0026934199508937434, -2.651656363173733e-06, -1.0606625452694915e-05, -5.3033127263474558e-06, -5.3033127263474558e-06, -5.3033127263474558e-06, -1.3258281815868644e-06, -5.3033127263474439e-06, -5.3033127263474702e-06, -6.6291409079343049e-07, -5.3033127263474702e-06, -1.3258281815868673e-06, -5.3033127263474439e-06, -5.3033127263474693e-06, -5.3033127263474676e-06, -6.6291409079343091e-07, -1.0606625452694895e-05, -1.0606625452694895e-05, -6.6291409079343155e-07, -5.3033127263474541e-06, -5.3033127263474541e-06, -6.6291409079343176e-07, -5.3033127263474397e-06, -5.303312726347438e-06, -5.3033127263474575e-06, -5.3033127263474397e-06, -1.5909938179042235e-05, -5.3033127263474693e-06, -5.3033127263474693e-06, -5.3033127263474626e-06, -6.6291409079343218e-07, -5.3033127263474693e-06, -5.3033127263474626e-06, -1.0606625452694912e-05, -2.6516563631737321e-06, -1.1932453634282113e-05, -2.6516563631737321e-06, -6.6291409079343028e-07, -1.3258281815868639e-06, -8.6178831803147554e-06, -5.3033127263474676e-06, -1.0606625452694929e-05, -5.5684783626648147e-05, -5.3033127263474609e-06, -5.8336439989822522e-05, -5.3033127263474592e-06, -5.3033127263474575e-06, -1.0606625452694895e-05, -5.303312726347468e-05, -1.0606625452694898e-05, -5.3696041354268062e-05, -6.6291409079343398e-07, -1.0606625452694901e-05, -1.0606625452694895e-05, -2.6516563631737211e-06, -5.5684783626648147e-05, -5.3033127263474605e-05, -5.3033127263474748e-05, -5.3033127263474775e-05, -6.6291409079343367e-07, -2.6516563631737618e-06, -6.6291409079343261e-07, 0.00024485635917215784, -6.6291409079342996e-07, -5.3033127263474507e-06, -5.3033127263474507e-06, -5.3033127263474676e-06, -5.3033127263474676e-06, -6.6291409079343261e-07, -6.629140907934324e-07, -6.6291409079343282e-07, -5.3033127263474676e-06, -6.6291409079345213e-06, -1.3258281815868695e-05, -1.0606625452694929e-05, -1.0606625452694918e-05, -5.3033127263474676e-06, -1.5909938179042283e-05, -1.9887422723802841e-06, -5.8336439989822861e-05, -1.0606625452694915e-05, -4.7729814537127868e-05, -6.6291409079343367e-07, -6.6291409079343197e-07, -1.6572852269835756e-05, -1.0606625452694912e-05, -5.30331272634746e-06, -4.6403986355540865e-06, -2.6516563631737465e-06, -1.3258281815868635e-06, -4.7729814537127875e-05, -1.3258281815868631e-06, -2.6516563631737321e-06, -2.6516563631737321e-06, -4.7729814537127868e-05, -5.3033127263474626e-06, -6.6291409079343197e-07, -5.3033127263474693e-06, -6.6291409079343261e-07, -5.3033127263474693e-06, -6.6291409079344485e-06, -1.9887422723802824e-06, -5.3033127263474693e-06, -9.9437113619015753e-06, -6.6291409079343346e-07, -5.3033127263474609e-06, -1.3258281815868595e-06, -1.3258281815868595e-06, -1.325828181586861e-06, -6.6291409079343155e-07, -3.9774845447605817e-06, -1.9887422723802866e-06, -5.303312726347449e-06, -5.3033127263474507e-06, -1.0606625452694905e-05, -1.7235766360629524e-05, -1.524702408824908e-05, -6.6291409079343346e-07, -1.0606625452694888e-05, -5.3033127263474473e-06, -3.9774845447605783e-06, -1.3258281815868654e-06, -6.629140907934324e-07, -6.629140907934307e-07, -5.3033127263474775e-05, -5.3033127263474748e-05, -0.0001073920827085353, -5.3033127263474748e-05, -5.303312726347468e-05, -2.651656363173733e-06, -1.3258281815868644e-06, -5.3033127263474897e-06, -5.9662268171410318e-06, -2.651656363173733e-06, -7.2920549987278491e-06, -6.6291409079343155e-07, -6.6291409079343367e-07, -1.0606625452694918e-05, -5.3033127263474626e-06, -5.3033127263474592e-06, -6.6291409079343197e-07, -6.6291409079343166e-07, -2.6516563631737253e-06, -2.6516563631737253e-06, -1.0606625452694891e-05, -5.3033127263474473e-06, -6.6291409079343282e-07, -0.00010739208270853604, -5.3033127263474507e-06, -5.3033127263474507e-06, -6.6291409079343155e-07, -2.6516563631737253e-06, -2.6516563631737253e-06, -1.3258281815868673e-06, -1.3258281815868673e-06, -1.9887422723802849e-06, -6.6291409079343155e-07, -1.3258281815868673e-06, -1.3258281815868673e-06, 0.00024485635917215778, -6.6291409079343367e-07, -2.6516563631737423e-06, -7.9549690895211718e-06, -5.3033127263474626e-06, -6.6291409079343282e-07, -6.6291409079343367e-07, -1.1932453634282086e-05, -6.6291409079343229e-07, -2.6516563631737313e-06, -1.3258281815868606e-06, -1.0606625452694935e-05, -1.0606625452694939e-05, -3.3145704539671679e-06, -2.6516563631737292e-06, 0.00024419344508136448, -3.9774845447605876e-06, -5.6347697717442898e-05, -6.6291409079343197e-07, -2.6516563631737292e-06, -2.6516563631737296e-06, -1.0606625452694939e-05, -1.0606625452694932e-05, -2.6516563631737347e-06, -2.6516563631737304e-06, -2.6516563631737304e-06, -6.6291409079343282e-07, -3.0494048176498208e-05, -6.6291409079343536e-06, -6.6291409079343367e-07, -5.3033127263474507e-06, -5.3033127263474422e-06, -5.3033127263474507e-06, -1.0606625452694932e-05, -5.3033127263474964e-06, -1.0606625452694939e-05, -5.3033127263474422e-06, -5.3033127263474422e-06, -0.0002035146258735845, -5.3033127263474473e-06, -0.00013258281815868665, -5.3033127263474693e-06, -1.3258281815868631e-06, -3.9774845447606464e-05, -7.95496908952116e-06, -3.3145704539671764e-06, -3.977484544760645e-05, -6.6291409079343303e-07, -5.3033127263474558e-06, -5.3033127263474558e-06, -0.00010739208270853604, -5.3033127263474668e-06, -5.3033127263474668e-06, -0.00015180732679169592, -1.9887422723802832e-06, -0.00013258281815868651, -5.3033127263474541e-06, -5.3033127263474541e-06, -6.6291409079343282e-07, -5.3033127263474549e-06, -5.3033127263474566e-06, -6.6291409079343282e-07, -1.0606625452694939e-05, -1.0606625452694935e-05, -1.325828181586861e-06, -2.6516563631737253e-06, -2.6516563631737253e-06, -5.3033127263474473e-06, -5.3033127263474473e-06, -0.0001073920827085353, -5.3033127263474507e-06, -5.303312726347449e-06, -1.7898680451422527e-05, -6.363975271616928e-05, -5.3033127263474558e-06, -4.7066900446334736e-05, -7.9549690895211057e-06, -7.9549690895211057e-06, -5.3033127263474676e-06, -5.303312726347438e-06, -6.6291409079345239e-06, -5.3033127263474397e-06, -6.6291409079343307e-06, -1.392119590666203e-05, -5.3033127263474693e-06, -3.3145704539672505e-06, -1.5247024088249067e-05, -5.3033127263474676e-06, -7.9549690895211583e-06, -1.9887422723802925e-06, -3.3145704539671764e-06, -1.3258281815868606e-06, -6.6291409079343367e-07, -6.6291409079343197e-07, -5.3033127263474397e-06, -7.9549690895211295e-06, -3.9774845447605783e-06, -2.6516563631737321e-06, -5.3033127263474456e-06, -5.3033127263474397e-06, -5.3033127263474422e-06, -1.0606625452694984e-05, -5.3033127263474676e-06, -2.6516563631737296e-06, -1.0606625452694935e-05, -5.3033127263474659e-06, -2.6516563631737292e-06, -5.3033127263474422e-06, -6.6291409079343303e-07, -5.3033127263474693e-06, -5.3033127263474693e-06, -1.0606625452694895e-05, -1.5909938179042286e-05, -5.3033127263474693e-06, -1.0606625452694901e-05, -1.0606625452694895e-05, -5.3033127263474676e-06, -5.3033127263474676e-06, -5.3033127263474676e-06, -5.3033127263474659e-06, -5.9662268171410893e-06, -2.2539079086976635e-05, -1.3258281815868561e-06, -5.3033127263474693e-06, -5.3033127263474659e-06, -5.9662268171408513e-06, -1.7235766360629592e-05, -5.3033127263474439e-06, -5.3033127263474693e-06, -5.303312726347438e-06, -2.6516563631737292e-06, -2.6516563631737296e-06, -6.6291409079343113e-07, -6.6291409079342996e-07, -6.6291409079343367e-07, -1.3258281815868631e-06, -1.1269539543488217e-05, -1.9887422723803235e-05, -7.9549690895211617e-06, -3.9774845447605817e-06, -6.6291409079343197e-07, -2.6516563631737304e-06, -1.0606625452694915e-05, -1.5909938179042317e-05, 0.0019588508733772627, -2.6516563631737304e-06, -1.0606625452694922e-05, -1.0606625452694918e-05, -2.6516563631737304e-06, -7.9549690895211633e-06, -5.3033127263474668e-06, -6.6291409079343028e-07, -1.3258281815868606e-06, -2.6516563631737304e-06, -2.6516563631737347e-06, -5.966226817141069e-06, -3.3145704539671721e-06, -5.303312726347449e-06, -1.0606625452694908e-05, -4.7729814537127956e-05, -2.6516563631737211e-06, -6.6291409079343261e-07, -3.9774845447606464e-05, -5.3033127263474626e-06, -3.1819876358084565e-05, -3.1819876358084592e-05, -3.314570453967139e-05, -3.1819876358084565e-05, -2.6516563631737211e-06, -2.6516563631737211e-06, -5.3033127263474592e-06, -5.3033127263474575e-06, -2.6516563631737296e-06, -2.6516563631737296e-06, -5.3033127263474439e-06, -6.6291409079343049e-07, -5.3033127263474439e-06, -6.629140907934324e-07, -6.6291409079343176e-07, -4.6403986355541748e-05, -2.6516563631737296e-06, -2.6516563631737296e-06, -4.043775953839971e-05, -1.3258281815868618e-06, -4.7729814537127868e-05, -4.7729814537127875e-05, -5.3033127263474617e-06, -6.6291409079343314e-07, -5.3033127263474634e-06, -4.7729814537127868e-05, -4.7729814537128301e-05, -5.3033127263474592e-06, -5.3033127263474575e-06, -1.3258281815868673e-06, -1.3258281815868673e-06, -1.0606625452694935e-05, -5.3033127263474575e-06, -5.3033127263474592e-06, -1.9887422723802887e-06, -1.0606625452694935e-05, -1.928477355035444e-06, -1.928477355035444e-06, -1.9284773550354445e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943056e-07, -2.4105966937943056e-07, -4.8452993545266217e-05, -4.8211933875886388e-05, -1.205298346897164e-06, -2.4105966937943056e-07, -7.2317900813830576e-07, -2.4105966937943433e-06, -1.92847735503548e-05, -4.8211933875886112e-07, -2.2177489582907538e-05, -2.4105966937943061e-07, -3.8569547100708881e-06, -3.8569547100708873e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.92847735503548e-05, -1.92847735503548e-05, -1.928477355035444e-06, -5.4720544949130253e-05, -4.8211933875886101e-07, -4.8211933875887011e-05, -3.8569547100708881e-06, -1.9284773550354445e-06, -1.928477355035444e-06, -2.4105966937943056e-07, -2.4105966937943061e-07, -1.9284773550354445e-06, -1.9284773550354449e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.928477355035444e-06, -1.205298346897164e-06, -7.2317900813830618e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943056e-07, -3.6158950406915331e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.1695370244148456e-06, -1.9284773550354449e-06, -3.6158950406915213e-06, -4.8211933875886101e-07, -2.4105966937943051e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -2.4105966937943056e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886101e-07, -2.4105966937943061e-07, -1.9284773550354449e-06, -3.8569547100708898e-06, -2.4105966937943382e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -2.4105966937943061e-07, -1.9284773550354445e-06, -4.0980143794502795e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -7.7139094201417745e-06, -6.026491734485812e-06, -1.9284773550354445e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -9.6423867751772901e-07, -1.9284773550354449e-06, -2.410596693794339e-06, -2.651656363173733e-06, 0.00098111285437428651, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886122e-07, -1.928477355035444e-06, -1.9284773550354445e-06, -2.4105966937943045e-07, -1.9284773550354445e-06, -4.8211933875886122e-07, -1.928477355035444e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943056e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -2.4105966937943056e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -2.4105966937943056e-07, -1.928477355035444e-06, -1.928477355035444e-06, -1.9284773550354449e-06, -1.928477355035444e-06, -5.7854320651064495e-06, -1.9284773550354487e-06, -1.9284773550354449e-06, -1.9284773550354445e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -4.339074048829681e-06, -9.6423867751772245e-07, -2.4105966937943051e-07, -4.8211933875886122e-07, -3.1337757019326331e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -2.0249012227872336e-05, -1.9284773550354445e-06, -2.1213250905389776e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -1.9284773550354682e-05, -3.8569547100708881e-06, -1.9525833219734145e-05, -2.4105966937943056e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -9.6423867751772202e-07, -2.0249012227872329e-05, -1.92847735503548e-05, -1.9284773550354665e-05, -1.9284773550354716e-05, -2.4105966937943061e-07, -9.6423867751772202e-07, -2.4105966937943061e-07, -2.4105966937943051e-07, -2.4105966937943051e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.410596693794328e-06, -4.8211933875886815e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354449e-06, -5.7854320651064512e-06, -7.2317900813831677e-07, -2.1213250905389945e-05, -3.8569547100708889e-06, -1.7356296195318792e-05, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.0264917344858341e-06, -3.8569547100708898e-06, -1.9284773550354445e-06, -1.6874176856560444e-06, -9.6423867751772202e-07, -4.8211933875886101e-07, -1.7356296195318785e-05, -4.8211933875886101e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.7356296195318785e-05, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.410596693794328e-06, -7.2317900813830618e-07, -1.9284773550354449e-06, -3.6158950406915103e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -1.4463580162766204e-06, -7.2317900813831518e-07, -1.928477355035444e-06, -1.928477355035444e-06, -3.8569547100708889e-06, -6.2675514038652492e-06, -5.5443723957268853e-06, -2.4105966937943061e-07, -3.8569547100708889e-06, -1.9284773550354445e-06, -1.4463580162766234e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943056e-07, -1.9284773550354716e-05, -1.9284773550354665e-05, -3.9051666439468419e-05, -1.9284773550354665e-05, -1.9284773550354682e-05, 0.00098111285437428651, -4.8211933875886112e-07, -1.928477355035444e-06, -2.169537024414832e-06, -9.6423867751772901e-07, -2.6516563631737334e-06, -2.4105966937943056e-07, -2.4105966937943061e-07, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -2.4105966937943056e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -3.8569547100708881e-06, -1.9284773550354445e-06, -2.4105966937943061e-07, -3.9051666439468331e-05, -1.928477355035444e-06, -1.928477355035444e-06, -2.4105966937943056e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.2317900813830618e-07, -2.4105966937943051e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -9.6423867751772224e-07, -2.8927160325532264e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.3390740488296912e-06, -2.4105966937943056e-07, -9.6423867751772139e-07, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.2052983468971695e-06, -9.6423867751772224e-07, -4.8211933875886112e-07, -1.4463580162766119e-06, -2.0490071897251667e-05, -2.4105966937943061e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -1.1088744791453723e-05, -2.4105966937943285e-06, -2.4105966937943061e-07, -1.928477355035444e-06, -1.9284773550354436e-06, -1.928477355035444e-06, -3.8569547100708889e-06, -1.9284773550354436e-06, -3.8569547100708889e-06, -1.9284773550354436e-06, -1.9284773550354436e-06, -7.400531849948691e-05, -1.9284773550354445e-06, -4.8211933875886686e-05, -1.9284773550354449e-06, -4.8211933875886101e-07, -1.4463580162765948e-05, -2.8927160325532014e-06, -1.2052983468971678e-06, -1.4463580162766112e-05, -2.4105966937943061e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.9051666439468331e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -5.5202664287889206e-05, -7.2317900813830597e-07, -4.8211933875886727e-05, -1.9284773550354445e-06, -1.9284773550354449e-06, -2.4105966937943056e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.4105966937943061e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886101e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.9051666439468419e-05, -1.928477355035444e-06, -1.928477355035444e-06, -6.5086110732447727e-06, -2.3141728260425798e-05, -1.9284773550354449e-06, -1.7115236525939274e-05, -2.892716032553223e-06, -2.892716032553223e-06, -1.9284773550354449e-06, -1.928477355035444e-06, -2.410596693794328e-06, -1.928477355035444e-06, -2.4105966937943424e-06, -5.0622530569680805e-06, -1.9284773550354449e-06, -1.205298346897164e-06, -5.5443723957268582e-06, -1.9284773550354445e-06, -2.892716032553198e-06, -7.2317900813828787e-07, -1.2052983468971678e-06, -4.8211933875886101e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.928477355035444e-06, -2.8927160325532247e-06, -1.446358016276623e-06, -9.6423867751772245e-07, -1.9284773550354445e-06, -1.928477355035444e-06, -1.9284773550354436e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -3.8569547100708881e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -1.9284773550354436e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -5.7854320651064495e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -3.8569547100708873e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.1695370244148473e-06, -8.1960287589006064e-06, -4.8211933875886091e-07, -1.9284773550354487e-06, -1.9284773550354449e-06, -2.1695370244149239e-06, -6.2675514038652559e-06, -1.928477355035444e-06, -1.9284773550354449e-06, -1.928477355035444e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -2.4105966937943056e-07, -2.4105966937943051e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -4.0980143794502549e-06, -7.2317900813829756e-06, -2.8927160325532116e-06, -1.4463580162766204e-06, -2.4105966937943061e-07, -9.6423867751772224e-07, -3.8569547100708889e-06, -5.7854320651064512e-06, -1.928477355035447e-06, -9.6423867751772224e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772224e-07, -2.8927160325532247e-06, -1.9284773550354445e-06, -2.4105966937943051e-07, -4.8211933875886101e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -2.1695370244148431e-06, -1.2052983468971712e-06, -1.9284773550354445e-06, -3.8569547100708898e-06, -1.7356296195318765e-05, -9.6423867751772202e-07, -2.4105966937943061e-07, -1.4463580162765948e-05, -1.9284773550354445e-06, -1.157086413021307e-05, -1.1570864130212899e-05, -1.2052983468971622e-05, -1.157086413021307e-05, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.928477355035444e-06, -2.4105966937943051e-07, -1.928477355035444e-06, -2.4105966937943061e-07, -2.4105966937943056e-07, -1.6874176856560035e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.4704639832145396e-05, -4.8211933875886101e-07, -1.7356296195318785e-05, -1.7356296195318785e-05, -1.9284773550354445e-06, -2.4105966937943056e-07, -1.9284773550354445e-06, -1.7356296195318792e-05, -1.7356296195318758e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.2317900813830481e-07, -3.8569547100708898e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772202e-07, -9.6423867751772224e-07, -0.00019381197418106099, -0.00019284773550354173, -4.821193387588673e-06, -9.6423867751772202e-07, -2.8927160325531951e-06, -9.642386775177407e-06, -7.7139094201419473e-05, -1.9284773550354445e-06, -8.8709958331631953e-05, -9.6423867751772245e-07, -1.5427818840283549e-05, -1.5427818840283549e-05, -7.7139094201417779e-06, -7.7139094201417779e-06, -7.7139094201419473e-05, -7.7139094201419473e-05, -7.7139094201417762e-06, -0.00021888217979652353, -1.928477355035444e-06, -0.00019284773550354428, -1.5427818840283549e-05, -7.7139094201417762e-06, -7.7139094201417762e-06, -9.6423867751772202e-07, -9.6423867751772245e-07, -7.7139094201417762e-06, -7.7139094201417796e-06, -1.928477355035444e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417745e-06, -4.821193387588673e-06, -2.8927160325532023e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -1.4463580162765914e-05, -7.7139094201417779e-06, -7.7139094201417779e-06, -8.6781480976595433e-06, -7.7139094201417796e-06, -1.4463580162765867e-05, -1.928477355035444e-06, -9.6423867751772202e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -1.5427818840283556e-05, -9.642386775177346e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -9.6423867751772245e-07, -7.7139094201417779e-06, -1.6392057517801277e-05, -7.7139094201417762e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -3.0855637680567105e-05, -2.4105966937943082e-05, -7.7139094201417779e-06, -1.5427818840283556e-05, -1.5427818840283556e-05, -3.8569547100708898e-06, -7.7139094201417779e-06, -9.642386775177346e-06, -1.0606625452694915e-05, -3.8569547100708898e-06, 0.0039128805533669387, -7.7139094201417796e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -7.7139094201417779e-06, -9.6423867751772181e-07, -7.7139094201417779e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772202e-07, -1.5427818840283552e-05, -1.5427818840283552e-05, -9.6423867751772202e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772202e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -2.3141728260425727e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.5427818840283559e-05, -3.8569547100708898e-06, -1.7356296195319182e-05, -3.8569547100708898e-06, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.2535102807730559e-05, -7.7139094201417796e-06, -1.5427818840283556e-05, -8.0996048911489423e-05, -7.7139094201417779e-06, -8.4853003621559008e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -7.7139094201418999e-05, -1.5427818840283556e-05, -7.8103332878936784e-05, -9.6423867751772202e-07, -1.5427818840283556e-05, -1.5427818840283556e-05, -3.8569547100708881e-06, -8.0996048911489423e-05, -7.7139094201419473e-05, -7.7139094201418944e-05, -7.7139094201419134e-05, -9.6423867751772245e-07, -3.8569547100708881e-06, -9.6423867751772245e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.642386775177346e-06, -1.9284773550354797e-05, -1.5427818840283559e-05, -1.5427818840283556e-05, -7.7139094201417796e-06, -2.3141728260425378e-05, -2.8927160325532141e-06, -8.4853003621559672e-05, -1.5427818840283552e-05, -6.9425184781276997e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937942859e-05, -1.5427818840283559e-05, -7.7139094201417779e-06, -6.7496707426240938e-06, -3.8569547100708881e-06, -1.928477355035444e-06, -6.942518478127697e-05, -1.928477355035444e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -6.942518478127697e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751773443e-06, -2.8927160325531718e-06, -7.7139094201417796e-06, -1.4463580162765829e-05, -9.6423867751772245e-07, -7.7139094201417796e-06, -1.928477355035444e-06, -1.928477355035444e-06, -1.9284773550354445e-06, -9.6423867751772245e-07, -5.7854320651063758e-06, -2.8927160325532074e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -1.5427818840283552e-05, -2.5070205615461044e-05, -2.2177489582908005e-05, -9.6423867751772245e-07, -1.5427818840283552e-05, -7.7139094201417762e-06, -5.7854320651063876e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772202e-07, -7.7139094201419134e-05, -7.7139094201418944e-05, -0.000156206665757874, -7.7139094201418944e-05, -7.7139094201418999e-05, -3.8569547100708898e-06, -1.928477355035444e-06, -7.7139094201417762e-06, -8.6781480976595569e-06, -3.8569547100708898e-06, -1.060662545269492e-05, -9.6423867751772202e-07, -9.6423867751772245e-07, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772202e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -1.5427818840283552e-05, -7.7139094201417762e-06, -9.6423867751772245e-07, -0.00015620666575787368, -7.7139094201417762e-06, -7.7139094201417762e-06, -9.6423867751772202e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.8927160325531718e-06, -9.6423867751772202e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.8569547100708889e-06, -1.1570864130212691e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.7356296195319222e-05, -9.6423867751772224e-07, -3.8569547100708856e-06, -1.9284773550354445e-06, -1.5427818840283556e-05, -1.5427818840283556e-05, -4.821193387588695e-06, -3.8569547100708889e-06, -1.9284773550354445e-06, -5.7854320651063419e-06, -8.1960287589006694e-05, -9.6423867751772245e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.5427818840283556e-05, -1.5427818840283556e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -4.4354979165815794e-05, -9.6423867751773477e-06, -9.6423867751772245e-07, -7.7139094201417762e-06, -7.7139094201417745e-06, -7.7139094201417762e-06, -1.5427818840283556e-05, -7.7139094201417745e-06, -1.5427818840283556e-05, -7.7139094201417745e-06, -7.7139094201417745e-06, -0.00029602127399794016, -7.7139094201417762e-06, -0.00019284773550354374, -7.7139094201417796e-06, -1.928477355035444e-06, -5.7854320651062924e-05, -1.1570864130212752e-05, -4.8211933875886874e-06, -5.7854320651063561e-05, -9.6423867751772245e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -0.00015620666575787368, -7.7139094201417779e-06, -7.7139094201417779e-06, -0.00022081065715156057, -2.8927160325532065e-06, -0.00019284773550354309, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -9.6423867751772245e-07, -1.5427818840283556e-05, -1.5427818840283556e-05, -1.9284773550354445e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -0.000156206665757874, -7.7139094201417762e-06, -7.7139094201417762e-06, -2.603444429297843e-05, -9.2566913041701606e-05, -7.7139094201417796e-06, 0.0018956932399998576, -1.157086413021268e-05, -1.157086413021268e-05, -7.7139094201417796e-06, -7.7139094201417762e-06, -9.6423867751773477e-06, -7.7139094201417762e-06, -9.6423867751774036e-06, -2.0249012227872349e-05, -7.7139094201417796e-06, -4.8211933875886739e-06, -2.2177489582907897e-05, -7.7139094201417779e-06, -1.1570864130212745e-05, -2.8927160325531358e-06, -4.8211933875886866e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417762e-06, -1.1570864130212687e-05, -5.7854320651063859e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -7.7139094201417745e-06, -1.5427818840283549e-05, -7.7139094201417779e-06, -3.8569547100708889e-06, -1.5427818840283552e-05, -7.7139094201417796e-06, -3.8569547100708889e-06, -7.7139094201417745e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -2.3141728260425537e-05, -7.7139094201417796e-06, -1.5427818840283549e-05, -1.5427818840283549e-05, -7.7139094201417779e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -8.6781480976596179e-06, -3.278411503560252e-05, -1.9284773550354436e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -8.6781480976593858e-06, -2.5070205615461071e-05, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.6392057517801179e-05, -2.892716032553155e-05, -1.1570864130212711e-05, -5.7854320651063758e-06, -9.6423867751772245e-07, -3.8569547100708889e-06, -1.5427818840283552e-05, 0.0019410124578431874, -7.7139094201417796e-06, -3.8569547100708889e-06, -1.5427818840283556e-05, -1.5427818840283556e-05, -3.8569547100708889e-06, -1.1570864130212792e-05, -7.7139094201417779e-06, -9.6423867751772224e-07, -1.928477355035444e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -8.6781480976596009e-06, -4.821193387588701e-06, -7.7139094201417762e-06, -1.5427818840283556e-05, -6.9425184781276889e-05, -3.8569547100708881e-06, -9.6423867751772245e-07, -5.7854320651062911e-05, -7.7139094201417779e-06, -4.6283456520851426e-05, -4.6283456520850749e-05, -4.8211933875885548e-05, -4.6283456520851426e-05, -3.8569547100708881e-06, -3.8569547100708881e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -9.6423867751772224e-07, -7.7139094201417762e-06, -9.6423867751772245e-07, -9.6423867751772202e-07, -6.7496707426241575e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -5.8818559328580602e-05, -1.928477355035444e-06, -6.942518478127697e-05, -6.942518478127697e-05, -7.7139094201417779e-06, -9.6423867751772224e-07, -7.7139094201417779e-06, -6.9425184781276997e-05, -6.9425184781276862e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.8927160325532091e-06, -1.5427818840283559e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6905987090532001e-05, -9.6423867751772302e-05, -2.4105966937943145e-06, -4.8211933875886133e-07, -1.4463580162766001e-06, -4.8211933875886595e-06, -3.8569547100709398e-05, -9.6423867751772287e-07, -4.4354979165815333e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100709398e-05, -3.8569547100709391e-05, -3.8569547100708898e-06, -0.00010944108989826143, -9.6423867751772245e-07, -9.6423867751773589e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.4105966937943145e-06, -1.4463580162765745e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813830307e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297098e-06, -3.8569547100708915e-06, -7.2317900813830087e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886298e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -8.1960287589005996e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.2052983468971399e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.8211933875886298e-06, -5.3033127263474558e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, 0.0019602972313935386, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212796e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594366e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652559e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.0498024455744644e-05, -3.8569547100708906e-06, -4.2426501810779673e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709154e-05, -7.7139094201417796e-06, -3.9051666439468141e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.0498024455744644e-05, -3.8569547100709398e-05, -3.856954710070912e-05, -3.8569547100709221e-05, -4.8211933875886122e-07, -1.9284773550354449e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -4.8211933875886679e-06, -9.6423867751773121e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -1.1570864130212806e-05, -1.4463580162766217e-06, -4.2426501810780005e-05, -7.7139094201417813e-06, -3.4712592390637882e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971609e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120338e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390637868e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390637868e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886476e-06, -1.4463580162766005e-06, -3.8569547100708915e-06, -7.2317900813829841e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325532167e-06, -1.4463580162766185e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730478e-05, -1.1088744791453838e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.892716032553223e-06, -9.6423867751772266e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709221e-05, -3.856954710070912e-05, -7.8103332878936527e-05, -3.856954710070912e-05, -3.8569547100709154e-05, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297014e-06, -1.9284773550354449e-06, -5.3033127263474837e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936351e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162766003e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651064046e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976594569e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943255e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325532006e-06, -4.0980143794503347e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.2177489582907582e-05, -4.8211933875886298e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897255, -3.8569547100708906e-06, -9.6423867751772545e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -2.8927160325531747e-05, -5.7854320651064046e-06, -2.4105966937943225e-06, -2.8927160325532075e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936351e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577904, -1.4463580162765994e-06, -9.6423867751772993e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936527e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489222e-05, -4.6283456520851223e-05, 0.0019602972313935386, -3.4230473051878867e-05, -5.7854320651063978e-06, -5.7854320651063978e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886705e-06, -3.8569547100708898e-06, -4.8211933875886595e-06, -1.0124506113936158e-05, -3.8569547100708915e-06, -2.4105966937943323e-06, -1.1088744791453791e-05, -3.8569547100708906e-06, -5.7854320651064046e-06, -1.4463580162766191e-06, -2.4105966937943221e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651064012e-06, -2.8927160325532222e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.1570864130212802e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297302e-06, -1.6392057517801301e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488297302e-06, -1.2535102807730488e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -8.1960287589005522e-06, -1.4463580162765887e-05, -5.7854320651064046e-06, -2.8927160325532167e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417813e-06, -1.1570864130212801e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651064029e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.3390740488297234e-06, -2.4105966937943289e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.4712592390637882e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531747e-05, -3.8569547100708906e-06, -2.314172826042595e-05, -2.3141728260425605e-05, -2.410596693794313e-05, -2.314172826042595e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.3748353713120327e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.9409279664290684e-05, -9.6423867751772245e-07, -3.4712592390637868e-05, -3.4712592390637868e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390637882e-05, -3.4712592390637814e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162766003e-06, -7.713909420141783e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6905987090532001e-05, -9.6423867751772261e-05, -2.4105966937943162e-06, -4.8211933875886122e-07, -1.4463580162765994e-06, -4.8211933875886612e-06, -3.8569547100709411e-05, -9.6423867751772245e-07, -4.4354979165815347e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100709411e-05, -3.8569547100709404e-05, -3.8569547100708889e-06, -0.00010944108989826105, -9.6423867751772224e-07, -9.6423867751773548e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708873e-06, -2.4105966937943153e-06, -1.4463580162766007e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -7.2317900813830265e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488297098e-06, -3.8569547100708906e-06, -7.2317900813830061e-06, -9.6423867751772245e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -7.7139094201417796e-06, -4.8211933875886527e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -8.1960287589005708e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971563e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -4.8211933875886544e-06, -5.3033127263474558e-06, -1.9284773550354445e-06, -7.7139094201417762e-06, -3.8569547100708906e-06, 0.0019602972313935386, -3.8569547100708898e-06, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708889e-06, -1.1570864130212796e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -8.6781480976594366e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -6.2675514038652576e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.0498024455744671e-05, -3.8569547100708898e-06, -4.242650181077968e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417779e-06, -3.8569547100709174e-05, -7.7139094201417796e-06, -3.9051666439468101e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.9284773550354445e-06, -4.0498024455744671e-05, -3.8569547100709411e-05, -3.8569547100709011e-05, -3.8569547100709269e-05, -4.8211933875886122e-07, -1.9284773550354436e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886696e-06, -9.6423867751773155e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -1.1570864130212807e-05, -1.4463580162766219e-06, -4.2426501810779985e-05, -7.7139094201417796e-06, -3.4712592390637882e-05, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.2052983468971531e-05, -7.7139094201417813e-06, -3.8569547100708898e-06, -3.3748353713120693e-06, -1.9284773550354445e-06, -9.6423867751772245e-07, -3.4712592390637868e-05, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.4712592390637868e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886493e-06, -1.4463580162766007e-06, -3.8569547100708906e-06, -7.2317900813829799e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.8927160325532171e-06, -1.4463580162765736e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.2535102807730481e-05, -1.1088744791453842e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -2.8927160325532239e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100709269e-05, -3.8569547100709011e-05, -7.8103332878936581e-05, -3.8569547100709079e-05, -3.8569547100709174e-05, -1.9284773550354445e-06, -9.6423867751772245e-07, -3.8569547100708881e-06, -4.3390740488297014e-06, -1.9284773550354445e-06, -5.3033127263474829e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.8103332878936405e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4463580162766033e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651064063e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -8.6781480976594535e-06, -4.8211933875886144e-07, -1.9284773550354436e-06, -9.6423867751772224e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.410596693794328e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325532014e-06, -4.0980143794503334e-05, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -2.2177489582907599e-05, -4.8211933875886315e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00014801063699897263, -3.8569547100708898e-06, -9.6423867751772871e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.892716032553173e-05, -5.7854320651064046e-06, -2.4105966937943234e-06, -2.8927160325532058e-05, -4.8211933875886133e-07, -3.8569547100708898e-06, 0.0019602972313935386, -7.8103332878936405e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577901, -1.4463580162765999e-06, -9.6423867751772966e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936581e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489217e-05, -4.6283456520851237e-05, -3.8569547100708906e-06, -3.4230473051878826e-05, -5.7854320651063995e-06, -5.7854320651063995e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886722e-06, -3.8569547100708889e-06, -4.8211933875886645e-06, -1.0124506113936163e-05, -3.8569547100708906e-06, -2.4105966937943331e-06, -1.1088744791453781e-05, -3.8569547100708906e-06, -5.7854320651064046e-06, -1.4463580162766191e-06, -2.410596693794323e-06, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708889e-06, -5.785432065106402e-06, -2.8927160325532226e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417779e-06, -1.1570864130212802e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297302e-06, -1.6392057517801243e-05, -9.6423867751772202e-07, -3.8569547100708889e-06, -3.8569547100708906e-06, -4.3390740488297302e-06, -1.2535102807730236e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -8.1960287589005437e-06, -1.4463580162765882e-05, -5.7854320651064046e-06, -2.8927160325532171e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -7.7139094201417796e-06, -1.1570864130212802e-05, -3.8569547100708889e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651064037e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -9.6423867751772224e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.3390740488297234e-06, -2.4105966937943297e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.4712592390637828e-05, -1.9284773550354445e-06, -4.8211933875886133e-07, -2.892716032553173e-05, -3.8569547100708906e-06, -2.3141728260425954e-05, -2.3141728260425605e-05, -2.4105966937943123e-05, -2.3141728260425954e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.374835371312036e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.9409279664290657e-05, -9.6423867751772245e-07, -3.4712592390637868e-05, -3.4712592390637868e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390637882e-05, -3.4712592390637814e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.4463580162766005e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6905987090532028e-05, -9.6423867751772302e-05, -2.4105966937943153e-06, -4.8211933875886122e-07, -1.4463580162765999e-06, -4.8211933875886612e-06, -3.8569547100709398e-05, -9.6423867751772245e-07, -4.4354979165815333e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100709404e-05, -3.8569547100709398e-05, -3.8569547100708889e-06, -0.00010944108989826102, -9.6423867751772224e-07, -9.6423867751773589e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708873e-06, -2.4105966937943149e-06, -1.4463580162766011e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -7.2317900813830282e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488297064e-06, -3.8569547100708906e-06, -7.2317900813830078e-06, -9.6423867751772245e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -7.7139094201417796e-06, -4.8211933875886518e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -8.1960287589005725e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971568e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -4.8211933875886527e-06, -5.3033127263474558e-06, -1.9284773550354445e-06, -7.7139094201417762e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, 0.0019602972313935386, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708889e-06, -1.1570864130212799e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -8.6781480976594298e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -6.2675514038652576e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.0498024455744671e-05, -3.8569547100708898e-06, -4.242650181077968e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417779e-06, -3.8569547100709174e-05, -7.7139094201417796e-06, -3.9051666439468087e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.9284773550354445e-06, -4.0498024455744671e-05, -3.8569547100709398e-05, -3.8569547100708998e-05, -3.8569547100709262e-05, -4.8211933875886122e-07, -1.9284773550354436e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886679e-06, -9.6423867751773121e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -1.1570864130212811e-05, -1.4463580162766223e-06, -4.2426501810779985e-05, -7.7139094201417796e-06, -3.4712592390637855e-05, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.2052983468971534e-05, -7.7139094201417813e-06, -3.8569547100708898e-06, -3.3748353713120719e-06, -1.9284773550354445e-06, -9.6423867751772245e-07, -3.4712592390637855e-05, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.4712592390637855e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886493e-06, -1.4463580162766011e-06, -3.8569547100708906e-06, -7.2317900813829816e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.892716032553218e-06, -1.4463580162765745e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.2535102807730481e-05, -1.1088744791453838e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -2.8927160325532247e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100709262e-05, -3.8569547100708998e-05, -7.8103332878936554e-05, -3.8569547100709066e-05, -3.8569547100709174e-05, -1.9284773550354445e-06, -9.6423867751772245e-07, -3.8569547100708881e-06, -4.339074048829698e-06, -1.9284773550354445e-06, -5.3033127263474829e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.8103332878936391e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4463580162766028e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.785432065106408e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -8.6781480976594502e-06, -4.8211933875886144e-07, -1.9284773550354436e-06, -9.6423867751772224e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943276e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325532023e-06, -4.0980143794503334e-05, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -2.2177489582907585e-05, -4.8211933875886307e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00014801063699897271, -3.8569547100708898e-06, -9.6423867751772911e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.8927160325531737e-05, -5.7854320651064063e-06, -2.410596693794323e-06, -2.8927160325532065e-05, -4.8211933875886133e-07, 0.0019602972313935386, -3.8569547100708898e-06, -7.8103332878936391e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577897, -1.4463580162766003e-06, -9.6423867751773006e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936554e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489217e-05, -4.628345652085125e-05, -3.8569547100708906e-06, -3.4230473051878813e-05, -5.7854320651064012e-06, -5.7854320651064012e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886713e-06, -3.8569547100708889e-06, -4.8211933875886637e-06, -1.0124506113936163e-05, -3.8569547100708906e-06, -2.4105966937943327e-06, -1.1088744791453777e-05, -3.8569547100708906e-06, -5.7854320651064063e-06, -1.4463580162766196e-06, -2.4105966937943225e-06, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708889e-06, -5.7854320651064037e-06, -2.8927160325532235e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417779e-06, -1.1570864130212806e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297268e-06, -1.6392057517801247e-05, -9.6423867751772202e-07, -3.8569547100708889e-06, -3.8569547100708906e-06, -4.3390740488297268e-06, -1.2535102807730229e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -8.1960287589005437e-06, -1.4463580162765885e-05, -5.7854320651064063e-06, -2.892716032553218e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -7.7139094201417796e-06, -1.1570864130212806e-05, -3.8569547100708889e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651064054e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -9.6423867751772224e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.33907404882972e-06, -2.4105966937943289e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.4712592390637814e-05, -1.9284773550354445e-06, -4.8211933875886133e-07, -2.8927160325531737e-05, -3.8569547100708906e-06, -2.314172826042596e-05, -2.3141728260425611e-05, -2.4105966937943133e-05, -2.314172826042596e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.374835371312034e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.9409279664290663e-05, -9.6423867751772245e-07, -3.4712592390637855e-05, -3.4712592390637855e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390637855e-05, -3.4712592390637801e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.4463580162766009e-06, -7.7139094201417813e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971528e-07, -1.2052983468971531e-07, -2.4226496772632624e-05, -2.4105966937942723e-05, -6.0264917344858392e-07, -1.2052983468971528e-07, -3.6158950406914632e-07, -1.2052983468971759e-06, -9.6423867751774307e-06, -2.4105966937943061e-07, -1.1088744791454001e-05, -1.2052983468971531e-07, -1.928477355035444e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751774307e-06, -9.6423867751774307e-06, -9.6423867751772202e-07, -2.736027247456559e-05, -2.4105966937943051e-07, -2.4105966937943042e-05, -1.928477355035444e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -2.4105966937943051e-07, -2.4105966937943051e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772202e-07, -6.0264917344858392e-07, -3.6158950406914658e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971528e-07, -1.8079475203457388e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.0847685122074421e-06, -9.6423867751772245e-07, -1.8079475203457325e-06, -2.4105966937943056e-07, -1.2052983468971525e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943051e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.2052983468971727e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.2052983468971531e-07, -9.6423867751772245e-07, -2.049007189725152e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.9284773550354445e-06, -3.8569547100708873e-06, 0.00024250602739570875, -9.6423867751772245e-07, -1.9284773550354445e-06, -1.928477355035444e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.2052983468971731e-06, -1.3258281815868644e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, 0.00049079748685652272, -9.6423867751772202e-07, -9.6423867751772245e-07, -1.2052983468971525e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -9.6423867751772202e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971525e-07, -1.928477355035444e-06, -1.928477355035444e-06, -1.2052983468971528e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971528e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772245e-07, -9.6423867751772202e-07, -2.8927160325532332e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -4.8211933875886122e-07, -2.169537024414896e-06, -4.8211933875886122e-07, -1.2052983468971525e-07, -2.4105966937943061e-07, -1.5668878509663191e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.0124506113936178e-05, -9.6423867751772245e-07, -1.0606625452694869e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.928477355035444e-06, -9.6423867751773697e-06, -1.9284773550354445e-06, -9.762916609867098e-06, -1.2052983468971531e-07, -1.9284773550354445e-06, -1.928477355035444e-06, -4.8211933875886101e-07, -1.0124506113936178e-05, -9.6423867751774307e-06, -9.6423867751773613e-06, -9.6423867751773867e-06, -1.2052983468971531e-07, -4.8211933875886101e-07, -1.2052983468971531e-07, -1.2052983468971525e-07, -1.2052983468971525e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.2052983468971678e-06, -2.4105966937943492e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -2.8927160325531887e-06, -3.6158950406915177e-07, -1.0606625452694957e-05, -1.9284773550354445e-06, -8.6781480976596179e-06, -1.2052983468971531e-07, -1.2052983468971531e-07, -3.0132458672428582e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -8.4370884282801151e-07, -4.8211933875886101e-07, -2.4105966937943056e-07, -8.6781480976596179e-06, -2.4105966937943056e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -8.6781480976596145e-06, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.2052983468971674e-06, -3.6158950406914658e-07, -9.6423867751772245e-07, -1.8079475203457282e-06, -1.2052983468971531e-07, -9.6423867751772245e-07, -2.4105966937943051e-07, -2.4105966937943051e-07, -2.4105966937943051e-07, -1.2052983468971531e-07, -7.2317900813828956e-07, -3.6158950406915103e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.928477355035444e-06, -3.1337757019326271e-06, -2.7721861978634973e-06, -1.2052983468971531e-07, -1.9284773550354445e-06, -9.6423867751772224e-07, -7.2317900813829867e-07, -2.4105966937943056e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -9.6423867751773867e-06, -9.6423867751773613e-06, -1.9525833219734254e-05, -9.6423867751773613e-06, -9.6423867751773697e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -9.6423867751772202e-07, -1.0847685122074429e-06, -4.8211933875886122e-07, -1.3258281815868646e-06, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.928477355035444e-06, -9.6423867751772224e-07, -1.2052983468971531e-07, -1.952583321973421e-05, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971528e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -3.6158950406914658e-07, -1.2052983468971528e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -4.8211933875886112e-07, 0.00024407291524667466, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -2.1695370244149002e-06, -1.2052983468971531e-07, -4.8211933875886069e-07, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -6.0264917344858656e-07, -4.8211933875886122e-07, -2.4105966937943051e-07, -7.2317900813829295e-07, -1.0245035948625833e-05, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -5.5443723957269742e-06, -1.2052983468971678e-06, -1.2052983468971531e-07, -9.6423867751772224e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -9.6423867751772202e-07, -1.9284773550354449e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -3.700265924974256e-05, -9.6423867751772224e-07, -2.4105966937942879e-05, -9.6423867751772245e-07, -2.4105966937943056e-07, -7.2317900813829062e-06, -1.4463580162765939e-06, -6.0264917344858561e-07, -7.2317900813829536e-06, -1.2052983468971531e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.952583321973421e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.760133214394505e-05, -3.6158950406915092e-07, -2.4105966937942899e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943051e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.9525833219734254e-05, -9.6423867751772224e-07, -9.6423867751772224e-07, -3.2543055366223055e-06, -1.1570864130212768e-05, -9.6423867751772245e-07, -8.5576182629698557e-06, -1.4463580162765855e-06, -1.4463580162765855e-06, -9.6423867751772245e-07, -9.6423867751772202e-07, -1.2052983468971678e-06, -9.6423867751772202e-07, -1.205298346897175e-06, -2.5311265284840411e-06, -9.6423867751772245e-07, -6.0264917344858392e-07, -2.772186197863488e-06, -9.6423867751772245e-07, -1.4463580162765931e-06, -3.6158950406914208e-07, -6.0264917344858561e-07, -2.4105966937943051e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772202e-07, -1.4463580162765914e-06, -7.2317900813829845e-07, -4.8211933875886122e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -9.6423867751772202e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.928477355035444e-06, -2.8927160325531921e-06, -9.6423867751772245e-07, -1.928477355035444e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.0847685122074514e-06, -4.0980143794503066e-06, -2.4105966937943045e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.0847685122074198e-06, -3.1337757019326305e-06, -9.6423867751772202e-07, -9.6423867751772245e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971528e-07, -1.2052983468971525e-07, -1.2052983468971531e-07, -2.4105966937943061e-07, -2.0490071897251431e-06, -3.6158950406914548e-06, -1.4463580162765944e-06, -7.2317900813828956e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -2.8927160325532192e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -1.4463580162765994e-06, -9.6423867751772245e-07, -1.2052983468971525e-07, -2.4105966937943051e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.0847685122074493e-06, -6.026491734485873e-07, -9.6423867751772202e-07, -1.9284773550354449e-06, -8.6781480976595908e-06, -4.8211933875886101e-07, -1.2052983468971531e-07, -7.2317900813829028e-06, -9.6423867751772245e-07, -5.78543206510643e-06, -5.7854320651063436e-06, -6.0264917344856952e-06, -5.78543206510643e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772202e-07, -1.2052983468971525e-07, -9.6423867751772202e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -8.437088428280146e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.3523199160726286e-06, -2.4105966937943056e-07, -8.6781480976596145e-06, -8.6781480976596179e-06, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -8.6781480976596179e-06, -8.6781480976596009e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.6158950406915124e-07, -1.9284773550354449e-06, -3.8569547100708881e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6905987090532326e-05, -9.6423867751772627e-05, -2.4105966937943246e-06, -4.8211933875886122e-07, -1.4463580162766083e-06, -4.8211933875886493e-06, -3.8569547100709533e-05, -9.6423867751772245e-07, -4.4354979165815197e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100709533e-05, -3.8569547100709533e-05, -3.8569547100708881e-06, -0.00010944108989826067, -9.6423867751772202e-07, -9.6423867751773914e-05, -7.7139094201417779e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708889e-06, -2.4105966937943246e-06, -1.4463580162766088e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -7.2317900813830544e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488296844e-06, -3.8569547100708898e-06, -7.231790081383029e-06, -9.6423867751772224e-07, -4.8211933875886112e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886688e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -8.1960287589005725e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971611e-05, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.928477355035444e-06, -3.8569547100708898e-06, -4.8211933875886705e-06, -5.3033127263474439e-06, -1.928477355035444e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, 0.001960297231393539, -3.8569547100708898e-06, -4.8211933875886101e-07, -3.8569547100708898e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.1570864130212867e-05, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -8.6781480976593858e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -6.267551403865123e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.0498024455744671e-05, -3.8569547100708898e-06, -4.2426501810779565e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -3.8569547100709296e-05, -7.7139094201417796e-06, -3.905166643946825e-05, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.9284773550354445e-06, -4.0498024455744657e-05, -3.8569547100709533e-05, -3.8569547100709269e-05, -3.8569547100709364e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886849e-06, -9.642386775177285e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -1.1570864130212874e-05, -1.4463580162765662e-06, -4.2426501810779917e-05, -7.7139094201417796e-06, -3.4712592390637679e-05, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971648e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.3748353713120257e-06, -1.9284773550354445e-06, -9.6423867751772224e-07, -3.4712592390637665e-05, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.4712592390637665e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886662e-06, -1.4463580162766088e-06, -3.8569547100708898e-06, -7.2317900813830087e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.892716032553234e-06, -1.446358016276627e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.2535102807730495e-05, -1.1088744791453791e-05, -4.8211933875886122e-07, -7.7139094201417796e-06, -3.8569547100708906e-06, -2.8927160325531743e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100709364e-05, -3.8569547100709269e-05, -7.8103332878936757e-05, -3.8569547100709269e-05, -3.8569547100709296e-05, -1.928477355035444e-06, -9.6423867751772245e-07, -3.8569547100708873e-06, -4.3390740488296743e-06, -1.928477355035444e-06, -5.3033127263474736e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -7.8103332878936568e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.4463580162766088e-06, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651064401e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -8.6781480976593654e-06, -4.8211933875886122e-07, -1.9284773550354428e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.4105966937943352e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -2.8927160325532167e-06, -4.0980143794503334e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -2.2177489582907494e-05, -4.8211933875886493e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708881e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -0.00014801063699897347, -3.8569547100708906e-06, -9.6423867751773237e-05, -3.8569547100708898e-06, -9.6423867751772224e-07, -2.8927160325531842e-05, -5.7854320651064384e-06, -2.4105966937943323e-06, -2.892716032553217e-05, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936568e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00011040532857577868, -1.4463580162766079e-06, -9.6423867751773318e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936757e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489406e-05, -4.6283456520851453e-05, -3.8569547100708898e-06, -3.4230473051878806e-05, -5.785432065106258e-06, -5.785432065106258e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -4.82119338758869e-06, -3.8569547100708898e-06, -4.8211933875886781e-06, -1.0124506113936158e-05, -3.8569547100708898e-06, -2.4105966937943416e-06, -1.1088744791453743e-05, -3.8569547100708898e-06, -5.7854320651064384e-06, -1.4463580162766276e-06, -2.4105966937943314e-06, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708881e-06, -5.7854320651064351e-06, -2.8927160325532391e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -1.157086413021287e-05, -3.8569547100708898e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488297047e-06, -1.6392057517801247e-05, -9.6423867751772224e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -4.3390740488297047e-06, -1.25351028077305e-05, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -8.1960287589005251e-06, -1.4463580162765938e-05, -5.7854320651064384e-06, -2.892716032553234e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -7.7139094201417796e-06, -1.1570864130212868e-05, -3.8569547100708881e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -5.7854320651064368e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.3390740488296963e-06, -2.4105966937943246e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.4712592390637733e-05, -1.9284773550354445e-06, -4.8211933875886122e-07, -2.8927160325531808e-05, -3.8569547100708898e-06, -2.3141728260426086e-05, -2.314172826042574e-05, -2.4105966937943218e-05, -2.3141728260426086e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, 0.001960297231393539, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.3748353713120177e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.9409279664290792e-05, -9.6423867751772245e-07, -3.4712592390637665e-05, -3.4712592390637665e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.4712592390637679e-05, -3.4712592390637611e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.4463580162766088e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6905987090531648e-05, -9.6423867751771868e-05, -2.4105966937943026e-06, -4.8211933875886133e-07, -1.4463580162765889e-06, -4.8211933875886357e-06, -3.8569547100709194e-05, -9.6423867751772266e-07, -4.4354979165815584e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100709201e-05, -3.8569547100709194e-05, -3.8569547100708898e-06, -0.00010944108989826154, -9.6423867751772224e-07, -9.6423867751773155e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.4105966937943026e-06, -1.4463580162765897e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813829943e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297429e-06, -3.8569547100708906e-06, -7.2317900813829739e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886256e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886122e-07, -3.8569547100708915e-06, -8.1960287589006301e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971511e-05, 0.0019602972313935386, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -4.8211933875886273e-06, -5.3033127263474702e-06, -1.9284773550354445e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, 0.0019602972313935386, -4.8211933875886112e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212707e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976595027e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652458e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -4.049802445574463e-05, -3.8569547100708906e-06, -4.2426501810779795e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100708984e-05, -7.7139094201417796e-06, -3.9051666439468006e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.049802445574463e-05, -3.8569547100709194e-05, -3.856954710070895e-05, -3.8569547100709052e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886425e-06, -9.6423867751772613e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -1.1570864130212719e-05, -1.4463580162766109e-06, -4.24265018107801e-05, -7.7139094201417813e-06, -3.4712592390638146e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971555e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120443e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390638133e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390638133e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886239e-06, -1.4463580162765897e-06, -3.8569547100708906e-06, -7.2317900813829468e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325531951e-06, -1.4463580162766075e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730458e-05, -1.1088744791453901e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532014e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709052e-05, -3.856954710070895e-05, -7.8103332878936256e-05, -3.856954710070895e-05, -3.8569547100708984e-05, -1.9284773550354445e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297335e-06, -1.9284773550354445e-06, -5.3033127263474981e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.810333287893608e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4463580162765855e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651063622e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -8.678148097659523e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -7.713909420141783e-06, -7.713909420141783e-06, -2.4105966937943111e-06, -1.9284773550354457e-06, -9.6423867751772245e-07, -2.8927160325531786e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886144e-07, -2.2177489582907711e-05, -4.8211933875886053e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00014801063699897154, -3.8569547100708906e-06, -9.6423867751772464e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.8927160325531604e-05, -5.7854320651063605e-06, -2.4105966937943102e-06, -2.8927160325531923e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.810333287893608e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -0.00011040532857577955, -1.4463580162765889e-06, -9.6423867751772559e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936256e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489235e-05, -4.6283456520850884e-05, -3.8569547100708906e-06, -3.423047305187907e-05, -5.7854320651063554e-06, -5.7854320651063554e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886459e-06, -3.8569547100708898e-06, -4.8211933875886374e-06, -1.0124506113936154e-05, -3.8569547100708906e-06, -2.41059669379432e-06, -1.1088744791453852e-05, -3.8569547100708915e-06, -5.7854320651063605e-06, -1.4463580162766079e-06, -2.4105966937943098e-06, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.785432065106358e-06, -2.8927160325532002e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354457e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.1570864130212714e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.3390740488297632e-06, -1.6392057517801362e-05, -9.6423867751772224e-07, -3.8569547100708889e-06, -3.8569547100708915e-06, -4.3390740488297632e-06, -1.2535102807730468e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -8.1960287589005827e-06, -1.4463580162765819e-05, -5.7854320651063605e-06, -2.8927160325531951e-06, -4.8211933875886144e-07, -1.9284773550354457e-06, -7.7139094201417813e-06, -1.1570864130212714e-05, -3.8569547100708889e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -5.7854320651063427e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354453e-06, -4.3390740488297564e-06, -2.4105966937943162e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -3.4712592390638106e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531598e-05, -3.8569547100708915e-06, -2.3141728260425778e-05, -2.3141728260425401e-05, -2.4105966937942994e-05, -2.3141728260425778e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.3748353713120543e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.9409279664290582e-05, -9.6423867751772245e-07, -3.4712592390638133e-05, -3.4712592390638133e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.4712592390638146e-05, -3.4712592390638092e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765895e-06, -7.713909420141783e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -4.8211933875886112e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -6.0264917344857653e-08, -6.026491734485764e-08, -1.2113248386316554e-05, -1.2052983468971594e-05, -3.0132458672429069e-07, -6.0264917344857653e-08, -1.8079475203457639e-07, -6.0264917344858519e-07, -4.821193387588695e-06, -1.2052983468971528e-07, -5.5443723957268861e-06, -6.026491734485764e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886959e-06, -4.821193387588695e-06, -4.8211933875886101e-07, -1.3680136237282561e-05, -1.2052983468971523e-07, -1.2052983468971753e-05, -9.6423867751772245e-07, -4.8211933875886112e-07, -4.8211933875886101e-07, -6.0264917344857653e-08, -6.026491734485764e-08, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.2052983468971523e-07, -1.2052983468971523e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886069e-07, -3.0132458672429069e-07, -1.8079475203457649e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.0264917344857653e-08, -9.0397376017288275e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -5.4238425610370886e-07, -4.8211933875886112e-07, -9.0397376017288021e-07, -1.2052983468971531e-07, -6.0264917344857627e-08, -4.8211933875886112e-07, -4.8211933875886112e-07, -6.0264917344857627e-08, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971523e-07, -6.0264917344857653e-08, -4.8211933875886112e-07, -9.6423867751772224e-07, -6.0264917344858402e-07, -4.8211933875886112e-07, -9.6423867751772224e-07, -6.0264917344857627e-08, -4.8211933875886112e-07, -1.0245035948625675e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772202e-07, -1.9284773550354428e-06, -1.506622933621453e-06, -4.8211933875886112e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -2.4105966937943045e-07, -4.8211933875886112e-07, -6.0264917344858413e-07, -6.6291409079343049e-07, -2.4105966937943045e-07, -9.6423867751772181e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971525e-07, -4.8211933875886101e-07, -4.8211933875886112e-07, 0.00024545900834560633, -4.8211933875886112e-07, -1.2052983468971525e-07, -4.8211933875886101e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -6.026491734485764e-08, -9.6423867751772202e-07, -9.6423867751772202e-07, -6.026491734485764e-08, -4.8211933875886112e-07, -4.8211933875886112e-07, -6.026491734485764e-08, -4.8211933875886101e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -1.4463580162766109e-06, -4.8211933875886091e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -6.026491734485764e-08, -4.8211933875886112e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -1.0847685122074198e-06, -2.4105966937943061e-07, -6.0264917344857627e-08, -1.2052983468971531e-07, -7.8344392548315837e-07, -4.8211933875886112e-07, -9.6423867751772202e-07, -5.0622530569680873e-06, -4.8211933875886122e-07, -5.3033127263474482e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772202e-07, -4.8211933875886671e-06, -9.6423867751772202e-07, -4.8814583049335262e-06, -6.0264917344857653e-08, -9.6423867751772202e-07, -9.6423867751772202e-07, -2.4105966937943051e-07, -5.0622530569680873e-06, -4.821193387588695e-06, -4.8211933875886451e-06, -4.8211933875886781e-06, -6.0264917344857627e-08, -2.4105966937943035e-07, -6.0264917344857653e-08, -6.0264917344857627e-08, -6.0264917344857613e-08, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -6.026491734485764e-08, -4.8211933875886101e-07, -6.0264917344858603e-07, -1.2052983468971691e-06, -9.6423867751772202e-07, -9.6423867751772245e-07, -4.8211933875886101e-07, -1.4463580162766124e-06, -1.8079475203457914e-07, -5.3033127263474863e-06, -9.6423867751772224e-07, -4.3390740488296963e-06, -6.026491734485764e-08, -6.0264917344857653e-08, -1.5066229336214488e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, 0.00024509741884153725, -2.4105966937943051e-07, -1.2052983468971525e-07, -4.3390740488296963e-06, -1.2052983468971531e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.3390740488296963e-06, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886112e-07, -6.026491734485764e-08, -4.8211933875886112e-07, -6.026491734485837e-07, -1.8079475203457652e-07, -4.8211933875886112e-07, -9.0397376017287704e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -1.2052983468971523e-07, -1.2052983468971523e-07, -1.2052983468971525e-07, -6.0264917344857653e-08, -3.61589504069155e-07, -1.8079475203457202e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -9.6423867751772224e-07, -1.5668878509663125e-06, -1.3860930989317222e-06, -6.0264917344857653e-08, -9.6423867751772224e-07, -4.8211933875886112e-07, -3.6158950406915579e-07, -1.2052983468971525e-07, -6.0264917344857653e-08, -6.026491734485764e-08, -4.8211933875886781e-06, -4.8211933875886451e-06, -9.7629166098671014e-06, -4.8211933875886535e-06, -4.8211933875886671e-06, -2.4105966937943045e-07, -1.2052983468971528e-07, -4.8211933875886091e-07, -5.423842561037078e-07, -2.4105966937943045e-07, -6.6291409079343388e-07, -6.026491734485764e-08, -6.026491734485764e-08, -9.6423867751772224e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -2.4105966937943056e-07, -2.4105966937943056e-07, -9.6423867751772202e-07, -4.8211933875886112e-07, -6.0264917344857653e-08, -9.7629166098670811e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -6.026491734485764e-08, -2.4105966937943056e-07, -2.4105966937943056e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -1.8079475203457655e-07, -6.0264917344857653e-08, -1.2052983468971528e-07, -1.2052983468971528e-07, -6.026491734485764e-08, -6.0264917344857627e-08, -2.4105966937943045e-07, -7.231790081383065e-07, -4.8211933875886112e-07, -6.0264917344857653e-08, -6.026491734485764e-08, -1.0847685122074224e-06, -6.0264917344857653e-08, -2.4105966937943035e-07, -1.2052983468971525e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.0132458672429222e-07, -2.4105966937943056e-07, -1.2052983468971525e-07, -3.6158950406915299e-07, -5.1225179743129167e-06, -6.0264917344857653e-08, -2.4105966937943056e-07, -2.4105966937943056e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943056e-07, -2.4105966937943056e-07, -2.4105966937943056e-07, -6.0264917344857653e-08, -2.7721861978634337e-06, -6.0264917344858137e-07, -6.0264917344857627e-08, -4.8211933875886101e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.8501329624871734e-05, -4.8211933875886112e-07, -1.2052983468971668e-05, -4.8211933875886112e-07, -1.2052983468971531e-07, -3.615895040691484e-06, -7.2317900813830629e-07, -3.0132458672429164e-07, -3.6158950406915251e-06, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.7629166098670811e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.38006660719723e-05, -1.8079475203457641e-07, -1.205298346897168e-05, -4.8211933875886112e-07, -4.8211933875886112e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971525e-07, -2.4105966937943056e-07, -2.4105966937943056e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -9.7629166098671014e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -1.6271527683111504e-06, -5.7854320651064486e-06, -4.8211933875886112e-07, -4.2788091314848203e-06, -7.2317900813830565e-07, -7.2317900813830565e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -6.0264917344858646e-07, -4.8211933875886101e-07, -6.026491734485855e-07, -1.2655632642420212e-06, -4.8211933875886112e-07, -3.0132458672429286e-07, -1.3860930989317145e-06, -4.8211933875886112e-07, -7.2317900813830629e-07, -1.807947520345788e-07, -3.0132458672429159e-07, -1.2052983468971523e-07, -6.0264917344857627e-08, -6.0264917344857653e-08, -4.8211933875886101e-07, -7.2317900813830597e-07, -3.6158950406915563e-07, -2.4105966937943061e-07, -4.8211933875886112e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -9.6423867751772224e-07, -4.8211933875886112e-07, -2.4105966937943056e-07, -9.6423867751772224e-07, -4.8211933875886122e-07, -2.4105966937943056e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886112e-07, -4.8211933875886112e-07, -9.6423867751772202e-07, -1.4463580162766117e-06, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -5.423842561037114e-07, -2.0490071897251499e-06, -1.2052983468971525e-07, -4.8211933875886091e-07, -4.8211933875886122e-07, -5.423842561037114e-07, -1.5668878509662642e-06, -4.8211933875886101e-07, -4.8211933875886112e-07, -4.8211933875886101e-07, -2.4105966937943056e-07, -2.4105966937943056e-07, -6.026491734485764e-08, -6.0264917344857613e-08, -6.0264917344857627e-08, -1.2052983468971531e-07, -1.0245035948625637e-06, -1.8079475203457441e-06, -7.2317900813830629e-07, -3.61589504069155e-07, -6.0264917344857653e-08, -2.4105966937943056e-07, -9.6423867751772224e-07, -1.4463580162766115e-06, -4.8211933875886091e-07, -2.4105966937943056e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943056e-07, -7.2317900813830618e-07, -4.8211933875886112e-07, -6.0264917344857627e-08, -1.2052983468971525e-07, -2.4105966937943056e-07, -2.4105966937943056e-07, -5.4238425610371055e-07, -3.0132458672429238e-07, -4.8211933875886112e-07, -9.6423867751772224e-07, -4.3390740488296912e-06, -2.4105966937943051e-07, -6.0264917344857653e-08, -3.615895040691484e-06, -4.8211933875886112e-07, -2.8927160325532667e-06, -2.8927160325532239e-06, -3.0132458672429056e-06, -2.8927160325532667e-06, -2.4105966937943051e-07, -2.4105966937943051e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -2.4105966937943056e-07, -2.4105966937943056e-07, -4.8211933875886101e-07, -6.0264917344857627e-08, -4.8211933875886101e-07, -6.026491734485764e-08, -6.026491734485764e-08, -4.2185442141400146e-06, -2.4105966937943056e-07, -2.4105966937943056e-07, -3.6761599580363448e-06, -1.2052983468971525e-07, -4.3390740488296963e-06, -4.3390740488296963e-06, -4.8211933875886112e-07, -6.026491734485764e-08, -4.8211933875886112e-07, -4.3390740488296963e-06, -4.3390740488296895e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971528e-07, -1.2052983468971525e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.8079475203457649e-07, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6905987090531621e-05, -9.6423867751771827e-05, -2.4105966937943026e-06, -4.8211933875886133e-07, -1.4463580162765893e-06, -4.8211933875886357e-06, -3.8569547100709208e-05, -9.6423867751772266e-07, -4.4354979165815604e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100709208e-05, -3.8569547100709201e-05, -3.8569547100708898e-06, -0.00010944108989826156, -9.6423867751772224e-07, -9.6423867751773115e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.4105966937943026e-06, -1.4463580162765901e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813829909e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297463e-06, -3.8569547100708906e-06, -7.2317900813829706e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886273e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886122e-07, -3.8569547100708915e-06, -8.1960287589006335e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, 0.0019521012026346379, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -4.821193387588629e-06, -5.3033127263474702e-06, -1.9284773550354445e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.8211933875886112e-07, 0.0019602972313935386, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212704e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976595094e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652466e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -4.0498024455744644e-05, -3.8569547100708906e-06, -4.2426501810779795e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100708984e-05, -7.7139094201417796e-06, -3.9051666439468019e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.0498024455744644e-05, -3.8569547100709208e-05, -3.8569547100708957e-05, -3.8569547100709059e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886442e-06, -9.6423867751772647e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -1.1570864130212716e-05, -1.4463580162766102e-06, -4.24265018107801e-05, -7.7139094201417813e-06, -3.4712592390638133e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971548e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120452e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390638119e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390638119e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886239e-06, -1.4463580162765893e-06, -3.8569547100708906e-06, -7.2317900813829451e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325531942e-06, -1.4463580162766071e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730458e-05, -1.1088744791453906e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532006e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709059e-05, -3.8569547100708957e-05, -7.8103332878936256e-05, -3.8569547100708957e-05, -3.8569547100708984e-05, -1.9284773550354445e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297369e-06, -1.9284773550354445e-06, -5.3033127263474981e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936093e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4463580162765867e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651063605e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -8.6781480976595264e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -7.713909420141783e-06, -7.713909420141783e-06, -2.4105966937943111e-06, -1.9284773550354457e-06, -9.6423867751772245e-07, -2.8927160325531777e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886144e-07, -2.2177489582907717e-05, -4.8211933875886061e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00014801063699897146, -3.8569547100708906e-06, -9.6423867751772424e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.8927160325531591e-05, -5.7854320651063588e-06, -2.4105966937943107e-06, -2.8927160325531916e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936093e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -0.00011040532857577958, -1.4463580162765884e-06, -9.6423867751772518e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936256e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489232e-05, -4.6283456520850871e-05, -3.8569547100708906e-06, -3.423047305187907e-05, -5.7854320651063537e-06, -5.7854320651063537e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886468e-06, -3.8569547100708898e-06, -4.8211933875886391e-06, -1.0124506113936154e-05, -3.8569547100708906e-06, -2.4105966937943204e-06, -1.1088744791453852e-05, -3.8569547100708915e-06, -5.7854320651063588e-06, -1.4463580162766075e-06, -2.4105966937943102e-06, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063563e-06, -2.8927160325531993e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354457e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.1570864130212711e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.3390740488297666e-06, -1.6392057517801369e-05, -9.6423867751772224e-07, -3.8569547100708889e-06, -3.8569547100708915e-06, -4.3390740488297666e-06, -1.253510280773047e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -8.1960287589005861e-06, -1.4463580162765812e-05, -5.7854320651063588e-06, -2.8927160325531942e-06, -4.8211933875886144e-07, -1.9284773550354457e-06, -7.7139094201417813e-06, -1.1570864130212711e-05, -3.8569547100708889e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -5.7854320651063478e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354453e-06, -4.3390740488297598e-06, -2.410596693794317e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -3.4712592390638119e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531591e-05, -3.8569547100708915e-06, -2.3141728260425767e-05, -2.3141728260425395e-05, -2.4105966937942987e-05, -2.3141728260425767e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.3748353713120543e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.9409279664290568e-05, -9.6423867751772245e-07, -3.4712592390638119e-05, -3.4712592390638119e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.4712592390638133e-05, -3.4712592390638106e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765891e-06, -7.713909420141783e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -2.4226496772632892e-05, -2.4105966937942967e-05, 0.00024491662408950254, -1.2052983468971531e-07, -3.6158950406914854e-07, -1.2052983468971678e-06, -9.6423867751773697e-06, -2.4105966937943061e-07, -1.1088744791453886e-05, -1.2052983468971533e-07, -1.9284773550354445e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751773697e-06, -9.6423867751773697e-06, -9.6423867751772224e-07, -2.7360272474565357e-05, -2.4105966937943051e-07, -2.4105966937943289e-05, -1.9284773550354445e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943051e-07, -2.4105966937943051e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, 0.00024455503458543356, -6.026491734485801e-07, -3.615895040691488e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -1.8079475203457522e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.0847685122074383e-06, -9.6423867751772266e-07, -1.8079475203457456e-06, -2.4105966937943056e-07, -1.2052983468971528e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -1.9284773550354449e-06, -1.2052983468971653e-06, -9.6423867751772266e-07, -1.9284773550354453e-06, -1.2052983468971533e-07, -9.6423867751772245e-07, -2.0490071897251508e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -1.9284773550354449e-06, -3.8569547100708881e-06, -3.0132458672428785e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.2052983468971657e-06, -1.3258281815868673e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971525e-07, -9.6423867751772245e-07, 0.00049079748685652272, -9.6423867751772245e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971531e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772266e-07, -9.6423867751772224e-07, -2.8927160325532074e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -4.8211933875886133e-07, -2.1695370244148714e-06, -4.8211933875886133e-07, -1.2052983468971531e-07, -2.4105966937943066e-07, -1.5668878509663148e-06, -9.6423867751772266e-07, -1.9284773550354453e-06, -1.0124506113936164e-05, -9.6423867751772245e-07, -1.0606625452694905e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354445e-06, -9.6423867751773105e-06, -1.9284773550354449e-06, -9.7629166098670489e-06, -1.2052983468971531e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -4.8211933875886112e-07, -1.0124506113936164e-05, -9.6423867751773697e-06, -9.642386775177302e-06, -9.6423867751773274e-06, -1.2052983468971533e-07, -4.8211933875886101e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -1.2052983468971525e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -9.6423867751772266e-07, -1.2052983468971606e-06, -2.410596693794334e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -2.8927160325531908e-06, -3.6158950406915415e-07, -1.0606625452694989e-05, -1.9284773550354449e-06, -8.6781480976595196e-06, -1.2052983468971533e-07, -1.2052983468971533e-07, -3.0132458672428878e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -8.4370884282801659e-07, -4.8211933875886112e-07, -2.4105966937943056e-07, -8.6781480976595196e-06, -2.4105966937943056e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -8.6781480976595162e-06, -9.6423867751772266e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -1.2052983468971531e-07, -9.6423867751772266e-07, -1.2052983468971598e-06, -3.615895040691488e-07, -9.6423867751772266e-07, -1.8079475203457401e-06, -1.2052983468971533e-07, -9.6423867751772266e-07, -2.4105966937943051e-07, -2.4105966937943051e-07, -2.4105966937943056e-07, -1.2052983468971533e-07, -7.2317900813830142e-07, -3.615895040691533e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -3.1337757019326212e-06, -2.7721861978634727e-06, -1.2052983468971533e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -7.2317900813830311e-07, -2.4105966937943061e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -9.6423867751773274e-06, -9.642386775177302e-06, -1.9525833219734162e-05, -9.642386775177302e-06, -9.6423867751773105e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -9.6423867751772224e-07, -1.0847685122074313e-06, -4.8211933875886122e-07, -1.3258281815868688e-06, -1.2052983468971531e-07, -1.2052983468971533e-07, -1.9284773550354453e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -1.2052983468971533e-07, -1.9525833219734115e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -3.615895040691488e-07, -1.2052983468971528e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -1.2052983468971533e-07, -4.8211933875886122e-07, -1.4463580162765952e-06, -9.6423867751772245e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -2.1695370244148757e-06, -1.2052983468971531e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -6.0264917344858275e-07, -4.8211933875886122e-07, -2.4105966937943056e-07, -7.2317900813829739e-07, -1.0245035948625833e-05, -1.2052983468971533e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971533e-07, -5.5443723957269175e-06, -1.2052983468971602e-06, -1.2052983468971533e-07, -9.6423867751772245e-07, -9.6423867751772202e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -9.6423867751772202e-07, -1.9284773550354449e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -3.700265924974296e-05, -9.6423867751772245e-07, -2.4105966937943116e-05, -9.6423867751772266e-07, -2.4105966937943056e-07, -7.2317900813829163e-06, -1.4463580162765834e-06, -6.0264917344858201e-07, -7.2317900813829968e-06, -1.2052983468971533e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9525833219734115e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.7601332143944854e-05, -3.6158950406915092e-07, -2.4105966937943136e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971533e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943056e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9525833219734162e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.2543055366223448e-06, -1.1570864130212765e-05, -9.6423867751772245e-07, -8.5576182629697557e-06, -1.4463580162765944e-06, -1.4463580162765944e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.2052983468971615e-06, -9.6423867751772224e-07, -1.2052983468971674e-06, -2.5311265284840394e-06, -9.6423867751772266e-07, -6.026491734485801e-07, -2.7721861978634587e-06, -9.6423867751772245e-07, -1.4463580162765817e-06, -3.615895040691424e-07, -6.026491734485818e-07, -2.4105966937943051e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -9.6423867751772224e-07, -1.4463580162765952e-06, -7.2317900813830269e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772202e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -9.6423867751772266e-07, -4.8211933875886122e-07, -9.6423867751772202e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354445e-06, -2.8927160325531921e-06, -9.6423867751772266e-07, -1.9284773550354445e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.0847685122074387e-06, -4.0980143794503151e-06, -2.4105966937943056e-07, -9.6423867751772245e-07, -9.6423867751772266e-07, -1.0847685122074425e-06, -3.1337757019326246e-06, -9.6423867751772224e-07, -9.6423867751772266e-07, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -1.2052983468971525e-07, -1.2052983468971533e-07, -2.4105966937943066e-07, -2.0490071897251385e-06, -3.6158950406914582e-06, -1.4463580162765884e-06, -7.2317900813830142e-07, -1.2052983468971533e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -2.8927160325532086e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -1.4463580162765999e-06, -9.6423867751772245e-07, -1.2052983468971528e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.084768512207437e-06, -6.0264917344858349e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -8.6781480976595094e-06, -4.8211933875886112e-07, -1.2052983468971533e-07, -7.2317900813829147e-06, -9.6423867751772245e-07, -5.7854320651064664e-06, -5.7854320651063792e-06, -6.0264917344857544e-06, -5.7854320651064664e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.2052983468971528e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -8.4370884282801291e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.3523199160726455e-06, -2.4105966937943061e-07, -8.6781480976595162e-06, -8.6781480976595196e-06, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -8.6781480976595196e-06, -8.6781480976595027e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.6158950406915039e-07, -1.9284773550354453e-06, -3.8569547100708881e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6905987090532272e-05, -9.6423867751772573e-05, -2.4105966937943246e-06, -4.8211933875886122e-07, -1.4463580162766075e-06, -4.8211933875886493e-06, -3.8569547100709547e-05, -9.6423867751772245e-07, -4.4354979165815211e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100709547e-05, -3.8569547100709547e-05, -3.8569547100708881e-06, -0.00010944108989826069, -9.6423867751772202e-07, -9.642386775177386e-05, -7.7139094201417779e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708889e-06, -2.4105966937943246e-06, -1.4463580162766079e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -7.2317900813830527e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488296861e-06, -3.8569547100708898e-06, -7.231790081383029e-06, -9.6423867751772224e-07, -4.8211933875886112e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886696e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -8.1960287589005708e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971604e-05, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.928477355035444e-06, -3.8569547100708898e-06, -4.8211933875886713e-06, -5.3033127263474439e-06, -1.928477355035444e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -3.8569547100708898e-06, -9.6423867751772245e-07, 0.001960297231393539, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.157086413021287e-05, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -8.6781480976593892e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -6.267551403865123e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.0498024455744671e-05, -3.8569547100708898e-06, -4.2426501810779565e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -3.8569547100709303e-05, -7.7139094201417796e-06, -3.905166643946825e-05, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.9284773550354445e-06, -4.0498024455744657e-05, -3.8569547100709547e-05, -3.8569547100709269e-05, -3.8569547100709371e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886866e-06, -9.6423867751772884e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -1.1570864130212867e-05, -1.4463580162765654e-06, -4.2426501810779911e-05, -7.7139094201417796e-06, -3.4712592390637692e-05, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971644e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.3748353713120274e-06, -1.9284773550354445e-06, -9.6423867751772224e-07, -3.4712592390637679e-05, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.4712592390637679e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886662e-06, -1.4463580162766079e-06, -3.8569547100708898e-06, -7.231790081383007e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.8927160325532324e-06, -1.4463580162766261e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.2535102807730495e-05, -1.1088744791453798e-05, -4.8211933875886122e-07, -7.7139094201417796e-06, -3.8569547100708906e-06, -2.8927160325531726e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100709371e-05, -3.8569547100709269e-05, -7.8103332878936757e-05, -3.8569547100709269e-05, -3.8569547100709303e-05, -1.928477355035444e-06, -9.6423867751772245e-07, -3.8569547100708873e-06, -4.3390740488296776e-06, -1.928477355035444e-06, -5.3033127263474719e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -7.8103332878936568e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.4463580162766079e-06, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651064368e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -8.6781480976593688e-06, -4.8211933875886122e-07, -1.9284773550354428e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.4105966937943352e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -2.892716032553215e-06, -4.0980143794503334e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -2.21774895829075e-05, -4.8211933875886493e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708881e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -0.00014801063699897339, -3.8569547100708906e-06, -9.642386775177321e-05, -3.8569547100708898e-06, -9.6423867751772224e-07, -2.8927160325531828e-05, -5.7854320651064351e-06, -2.4105966937943323e-06, -2.8927160325532157e-05, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936568e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00011040532857577871, -1.4463580162766071e-06, -9.6423867751773291e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936757e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489403e-05, -4.6283456520851426e-05, -3.8569547100708898e-06, -3.4230473051878826e-05, -5.7854320651062631e-06, -5.7854320651062631e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -4.82119338758869e-06, -3.8569547100708898e-06, -4.8211933875886781e-06, -1.0124506113936158e-05, -3.8569547100708898e-06, -2.4105966937943424e-06, -1.1088744791453747e-05, -3.8569547100708898e-06, -5.7854320651064351e-06, -1.4463580162766268e-06, -2.4105966937943314e-06, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708881e-06, -5.7854320651064317e-06, -2.8927160325532374e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -1.1570864130212863e-05, -3.8569547100708898e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488297064e-06, -1.639205751780124e-05, -9.6423867751772224e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -4.3390740488297064e-06, -1.2535102807730502e-05, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -8.1960287589005217e-06, -1.4463580162765934e-05, -5.7854320651064351e-06, -2.8927160325532324e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -7.7139094201417796e-06, -1.1570864130212862e-05, -3.8569547100708881e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -5.7854320651064334e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.339074048829698e-06, -2.4105966937943246e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.4712592390637746e-05, -1.9284773550354445e-06, -4.8211933875886122e-07, -2.8927160325531801e-05, -3.8569547100708898e-06, -2.3141728260426072e-05, -2.3141728260425727e-05, -2.4105966937943208e-05, -2.3141728260426072e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, 0.001960297231393539, -4.8211933875886112e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.3748353713120191e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.9409279664290779e-05, -9.6423867751772245e-07, -3.4712592390637679e-05, -3.4712592390637679e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.4712592390637692e-05, -3.4712592390637624e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.4463580162766079e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6905987090531947e-05, -9.642386775177222e-05, -2.4105966937943179e-06, -4.8211933875886122e-07, -1.4463580162765992e-06, -4.8211933875886662e-06, -3.8569547100709438e-05, -9.6423867751772245e-07, -4.4354979165815374e-05, -4.8211933875886144e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100709438e-05, -3.8569547100709438e-05, -3.8569547100708898e-06, -0.0001094410898982611, -9.6423867751772224e-07, -9.6423867751773481e-05, -7.7139094201417779e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708889e-06, -2.4105966937943179e-06, -1.4463580162766003e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -7.2317900813830273e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297319e-06, -3.8569547100708906e-06, -7.2317900813830019e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886561e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -8.1960287589005928e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.2052983468971558e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -4.8211933875886578e-06, -5.3033127263474693e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, 0.0019602972313935386, -3.8569547100708906e-06, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212819e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594434e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652576e-06, -3.8569547100708906e-06, 0.0019564402766834685, -4.0498024455744644e-05, -3.8569547100708906e-06, -4.2426501810779646e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709201e-05, -7.7139094201417796e-06, -3.9051666439468182e-05, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.049802445574463e-05, -3.8569547100709438e-05, -3.8569547100709167e-05, -3.8569547100709269e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886391e-06, -9.6423867751773223e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -1.1570864130212804e-05, -1.4463580162766217e-06, -4.2426501810779978e-05, -7.7139094201417796e-06, -3.4712592390637916e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.20529834689716e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120863e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390637895e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390637895e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886357e-06, -1.4463580162766003e-06, -3.8569547100708906e-06, -7.231790081382979e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325532158e-06, -1.4463580162766183e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.2535102807730481e-05, -1.1088744791453845e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -2.892716032553223e-06, -9.6423867751772266e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -3.8569547100709269e-05, -3.8569547100709167e-05, -7.8103332878936581e-05, -3.8569547100709167e-05, -3.8569547100709201e-05, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.8569547100708889e-06, -4.3390740488297047e-06, -1.9284773550354449e-06, -5.3033127263474787e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -7.8103332878936418e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4463580162766003e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -5.7854320651064012e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976594603e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943289e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325531997e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886144e-07, -2.2177489582907575e-05, -4.8211933875886366e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897249, -3.8569547100708898e-06, -9.642386775177283e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.892716032553174e-05, -5.7854320651063537e-06, -2.4105966937943255e-06, -2.8927160325532062e-05, -4.8211933875886144e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936418e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577909, -1.4463580162766024e-06, -9.6423867751772911e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936581e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489451e-05, -4.6283456520851223e-05, -3.8569547100708906e-06, -3.4230473051878847e-05, -5.7854320651063978e-06, -5.7854320651063978e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886425e-06, -3.8569547100708898e-06, -4.8211933875886645e-06, -1.0124506113936154e-05, -3.8569547100708906e-06, -2.4105966937943179e-06, -1.1088744791453791e-05, -3.8569547100708906e-06, -5.785432065106347e-06, -1.4463580162765736e-06, -2.4105966937943255e-06, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651064012e-06, -2.8927160325532209e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.1570864130212802e-05, -3.8569547100708906e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297335e-06, -1.6392057517801281e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488298157e-06, -1.2535102807730492e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -8.1960287589005437e-06, -1.446358016276587e-05, -5.7854320651063741e-06, -2.8927160325532158e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417796e-06, -1.1570864130212824e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651063995e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.3390740488297268e-06, -2.4105966937943323e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.4712592390637855e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531733e-05, -3.8569547100708906e-06, -2.3141728260425947e-05, -2.3141728260425598e-05, -2.4105966937943106e-05, -2.3141728260425947e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.374835371312034e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.9409279664290677e-05, -9.6423867751772245e-07, -3.4712592390637895e-05, -3.4712592390637895e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390637916e-05, -3.4712592390637841e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162766003e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6905987090532055e-05, -9.6423867751772329e-05, -2.410596693794317e-06, -4.8211933875886122e-07, -1.4463580162766005e-06, -4.8211933875886629e-06, -3.8569547100709425e-05, -9.6423867751772245e-07, -4.4354979165815319e-05, -4.8211933875886144e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100709425e-05, -3.8569547100709425e-05, -3.8569547100708898e-06, -0.00010944108989826099, -9.6423867751772224e-07, -9.6423867751773589e-05, -7.7139094201417779e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708889e-06, -2.410596693794317e-06, -1.4463580162766016e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -7.2317900813830341e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297251e-06, -3.8569547100708906e-06, -7.2317900813830087e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886535e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -8.1960287589005979e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.2052983468971572e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -4.8211933875886552e-06, -5.3033127263474676e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, 0.0019602972313935386, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212809e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594298e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652559e-06, 0.0019602972313935386, -7.7139094201417813e-06, -4.0498024455744644e-05, -3.8569547100708906e-06, -4.242650181077966e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709174e-05, -7.7139094201417796e-06, -3.9051666439468155e-05, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.049802445574463e-05, -3.8569547100709425e-05, -3.8569547100709147e-05, -3.8569547100709249e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886391e-06, -9.6423867751773189e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -1.1570864130212814e-05, -1.4463580162766225e-06, -4.2426501810779992e-05, -7.7139094201417796e-06, -3.4712592390637855e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971614e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120922e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390637855e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390637841e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886324e-06, -1.4463580162766016e-06, -3.8569547100708906e-06, -7.2317900813829858e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325532192e-06, -1.4463580162766196e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.2535102807730478e-05, -1.1088744791453832e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -2.8927160325532256e-06, -9.6423867751772266e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -3.8569547100709249e-05, -3.8569547100709147e-05, -7.8103332878936554e-05, -3.8569547100709147e-05, -3.8569547100709174e-05, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.8569547100708889e-06, -4.339074048829698e-06, -1.9284773550354449e-06, -5.3033127263474803e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -7.8103332878936378e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4463580162766016e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -5.785432065106408e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976594468e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943276e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325532023e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886144e-07, -2.2177489582907555e-05, -4.8211933875886341e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897268, -3.8569547100708898e-06, -9.6423867751772939e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.8927160325531767e-05, -5.7854320651063588e-06, -2.4105966937943238e-06, -2.8927160325532089e-05, -4.8211933875886144e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936378e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577898, -1.4463580162766011e-06, -9.642386775177302e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936554e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489471e-05, -4.628345652085125e-05, -3.8569547100708906e-06, -3.4230473051878793e-05, -5.7854320651064029e-06, -5.7854320651064029e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886425e-06, -3.8569547100708898e-06, -4.8211933875886629e-06, -1.0124506113936154e-05, -3.8569547100708906e-06, -2.4105966937943179e-06, -1.1088744791453777e-05, -3.8569547100708906e-06, -5.7854320651063521e-06, -1.4463580162765762e-06, -2.4105966937943238e-06, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651064046e-06, -2.8927160325532247e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.1570864130212809e-05, -3.8569547100708906e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297268e-06, -1.6392057517801294e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.339074048829831e-06, -1.2535102807730492e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -8.1960287589005488e-06, -1.4463580162765884e-05, -5.7854320651063792e-06, -2.8927160325532192e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417796e-06, -1.1570864130212814e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651064046e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.33907404882972e-06, -2.4105966937943306e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.4712592390637814e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.892716032553176e-05, -3.8569547100708906e-06, -2.3141728260425967e-05, -2.3141728260425618e-05, -2.4105966937943133e-05, -2.3141728260425967e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.3748353713120286e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.9409279664290711e-05, -9.6423867751772245e-07, -3.4712592390637841e-05, -3.4712592390637855e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390637855e-05, -3.4712592390637787e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.446358016276599e-06, -7.713909420141783e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -1.2113248386316524e-05, -1.2052983468971561e-05, -3.0132458672429016e-07, -6.0264917344857653e-08, -1.8079475203457554e-07, -6.0264917344858413e-07, -4.8211933875886866e-06, -1.2052983468971531e-07, -5.5443723957269048e-06, -6.0264917344857666e-08, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886866e-06, -4.8211933875886866e-06, -4.8211933875886122e-07, -1.3680136237282594e-05, -1.2052983468971528e-07, -1.2052983468971719e-05, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.8211933875886101e-07, -3.0132458672429016e-07, -1.8079475203457567e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857653e-08, -9.0397376017288074e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610371182e-07, -4.8211933875886133e-07, -9.0397376017287778e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, 0.00024539874342826136, -6.0264917344857666e-08, -4.8211933875886133e-07, -9.6423867751772266e-07, -6.0264917344858286e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -1.0245035948625728e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -1.9284773550354445e-06, -1.5066229336214492e-06, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943056e-07, -4.8211933875886133e-07, -6.0264917344858307e-07, -6.6291409079343091e-07, -2.4105966937943056e-07, -9.6423867751772202e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971525e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.026491734485764e-08, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, 0.00024545900834560644, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886112e-07, -1.4463580162766041e-06, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -1.0847685122074467e-06, -2.4105966937943066e-07, -6.0264917344857653e-08, -1.2052983468971533e-07, -7.8344392548313656e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -5.0622530569680822e-06, -4.8211933875886133e-07, -5.3033127263474524e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -4.8211933875886561e-06, -9.6423867751772245e-07, -4.8814583049335262e-06, -6.0264917344857653e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943066e-07, -5.0622530569680822e-06, -4.8211933875886866e-06, -4.8211933875886518e-06, -4.8211933875886645e-06, -6.0264917344857653e-08, -2.4105966937943061e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -6.026491734485764e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.8211933875886122e-07, -6.0264917344858519e-07, -1.2052983468971674e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -4.8211933875886122e-07, -1.4463580162766056e-06, -1.8079475203457835e-07, -5.3033127263474939e-06, -9.6423867751772245e-07, -4.3390740488297183e-06, -6.0264917344857653e-08, -6.0264917344857666e-08, -1.5066229336214333e-06, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.2185442141400353e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -4.3390740488297183e-06, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.3390740488297166e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -6.0264917344858243e-07, -1.8079475203457567e-07, -4.8211933875886133e-07, -9.0397376017287503e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -3.615895040691533e-07, -1.8079475203457792e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -1.566887850966274e-06, -1.3860930989317264e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.6158950406915415e-07, -1.2052983468971533e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.8211933875886645e-06, -4.8211933875886518e-06, -9.7629166098670811e-06, -4.8211933875886518e-06, -4.8211933875886561e-06, -2.4105966937943056e-07, -1.2052983468971531e-07, -4.8211933875886101e-07, -5.4238425610371076e-07, -2.4105966937943056e-07, -6.6291409079343462e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -9.7629166098670591e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -1.8079475203457567e-07, -6.0264917344857653e-08, -1.2052983468971533e-07, -1.2052983468971533e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -2.4105966937943056e-07, -7.2317900813830311e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -1.0847685122074279e-06, -6.0264917344857666e-08, -2.4105966937943035e-07, -1.2052983468971531e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.0132458672429148e-07, -2.4105966937943066e-07, -1.2052983468971531e-07, -3.6158950406915124e-07, -5.1225179743129167e-06, -6.0264917344857666e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857666e-08, -2.7721861978634435e-06, -6.0264917344858032e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -4.8211933875886112e-07, -9.6423867751772266e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.8501329624871639e-05, -4.8211933875886122e-07, -1.2052983468971638e-05, -4.8211933875886133e-07, -1.2052983468971531e-07, -3.6158950406914777e-06, -7.231790081383029e-07, -3.0132458672429111e-07, -3.6158950406915179e-06, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.7629166098670591e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.3800666071972369e-05, -1.8079475203457557e-07, -1.2052983468971648e-05, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.7629166098670811e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.6271527683111515e-06, -5.7854320651064232e-06, -4.8211933875886133e-07, -4.2788091314848381e-06, -7.2317900813830227e-07, -7.2317900813830227e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -6.026491734485854e-07, -4.8211933875886112e-07, -6.0264917344858392e-07, -1.2655632642420193e-06, -4.8211933875886133e-07, -3.0132458672429238e-07, -1.3860930989317201e-06, -4.8211933875886133e-07, -7.231790081383029e-07, -1.8079475203457798e-07, -3.0132458672429111e-07, -1.2052983468971528e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -4.8211933875886122e-07, -7.2317900813828395e-07, -3.6158950406914616e-07, -2.4105966937943066e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -4.8211933875886112e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -1.4463580162766054e-06, -4.8211933875886133e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610373099e-07, -2.0490071897251541e-06, -1.2052983468971528e-07, -4.8211933875886112e-07, -4.8211933875886133e-07, -5.4238425610371436e-07, -1.5668878509663123e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857666e-08, -6.026491734485764e-08, -6.0264917344857653e-08, -1.2052983468971533e-07, -1.0245035948625667e-06, -1.8079475203457397e-06, -7.231790081383029e-07, -3.615895040691533e-07, -6.0264917344857666e-08, -2.4105966937943066e-07, -9.6423867751772245e-07, -1.4463580162766047e-06, -4.8211933875886112e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -7.2317900813830279e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -5.4238425610372866e-07, -3.0132458672429185e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -4.3390740488297115e-06, -2.4105966937943066e-07, -6.0264917344857666e-08, -3.6158950406914768e-06, -4.8211933875886133e-07, -2.8927160325532535e-06, -2.8927160325532099e-06, -3.013245867242898e-06, -2.8927160325532535e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.2185442141400256e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -3.6761599580363422e-06, -1.2052983468971531e-07, -4.3390740488297166e-06, -4.3390740488297183e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.3390740488297183e-06, -4.3390740488297098e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.8079475203457562e-07, -9.6423867751772266e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -0.00019381197418106411, -0.0001928477355035446, -4.8211933875886459e-06, -9.6423867751772224e-07, -2.8927160325532061e-06, -9.6423867751773528e-06, -7.7139094201418904e-05, -1.9284773550354449e-06, -8.8709958331630747e-05, -9.6423867751772245e-07, -1.5427818840283552e-05, -1.5427818840283552e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201418633e-05, -7.7139094201418768e-05, -7.7139094201417762e-06, -0.00021888217979652177, -1.9284773550354449e-06, -0.00019284773550354718, -1.5427818840283552e-05, -7.7139094201417796e-06, -7.7139094201417762e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417745e-06, -4.8211933875886459e-06, -2.8927160325532082e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -1.4463580162765985e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -8.6781480976593993e-06, -7.7139094201417796e-06, -1.4463580162766038e-05, -1.9284773550354445e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -1.5427818840283559e-05, -9.6423867751773325e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -9.6423867751772224e-07, -7.7139094201417796e-06, -1.6392057517801142e-05, -7.7139094201417779e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -3.0855637680567139e-05, -2.4105966937943136e-05, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.5427818840283552e-05, -3.8569547100708881e-06, -7.7139094201417796e-06, -9.6423867751773359e-06, -1.0606625452694895e-05, -3.8569547100708881e-06, -1.5427818840283552e-05, -7.7139094201417796e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -1.928477355035444e-06, -7.7139094201417779e-06, -7.7139094201417796e-06, -9.6423867751772202e-07, -7.7139094201417796e-06, -1.9284773550354445e-06, -7.7139094201417779e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, 0.003912880553366937, -1.5427818840283559e-05, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -2.3141728260425645e-05, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -3.8569547100708898e-06, -1.7356296195318833e-05, -3.8569547100708898e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.2535102807730522e-05, -7.7139094201417796e-06, -1.5427818840283559e-05, -8.0996048911489125e-05, -7.7139094201417796e-06, -8.4853003621559184e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -7.7139094201418551e-05, -1.5427818840283556e-05, -7.8103332878936473e-05, -9.6423867751772245e-07, -1.5427818840283556e-05, -1.5427818840283552e-05, -3.8569547100708881e-06, -8.0996048911489071e-05, -7.7139094201418904e-05, -7.7139094201418484e-05, -7.7139094201418687e-05, -9.6423867751772224e-07, -3.8569547100708881e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417779e-06, -9.6423867751773664e-06, -1.9284773550354685e-05, -1.5427818840283556e-05, -1.5427818840283559e-05, -7.7139094201417779e-06, -2.3141728260425669e-05, -2.8927160325532501e-06, -8.4853003621559889e-05, -1.5427818840283556e-05, -6.9425184781275601e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943221e-05, -1.5427818840283559e-05, -7.7139094201417796e-06, -6.749670742624065e-06, -3.8569547100708898e-06, -1.9284773550354445e-06, -6.9425184781275601e-05, -1.9284773550354445e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -6.9425184781275574e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751773325e-06, -2.8927160325531451e-06, -7.7139094201417796e-06, -1.4463580162765978e-05, -9.6423867751772245e-07, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -5.7854320651064495e-06, -2.8927160325532442e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -1.5427818840283559e-05, -2.5070205615460976e-05, -2.2177489582907487e-05, -9.6423867751772245e-07, -1.5427818840283559e-05, -7.7139094201417796e-06, -5.7854320651064613e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201418687e-05, -7.7139094201418484e-05, -0.00015620666575787341, -7.7139094201418484e-05, -7.7139094201418551e-05, -3.8569547100708881e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -8.6781480976593824e-06, -3.8569547100708881e-06, -1.0606625452694951e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.5427818840283556e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -0.00015620666575787305, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.8927160325532082e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -3.8569547100708881e-06, -1.157086413021284e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.7356296195318873e-05, -9.6423867751772245e-07, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -4.8211933875886671e-06, -3.8569547100708898e-06, -1.9284773550354445e-06, -5.7854320651064147e-06, -8.1960287589006667e-05, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -4.4354979165815136e-05, -9.6423867751772918e-06, -9.6423867751772224e-07, -7.7139094201417779e-06, -7.7139094201417762e-06, -7.7139094201417779e-06, -1.5427818840283559e-05, -7.7139094201417762e-06, -1.5427818840283559e-05, -7.7139094201417762e-06, -7.7139094201417762e-06, -0.00029602127399794585, -7.7139094201417796e-06, -0.00019284773550354582, -7.7139094201417796e-06, -1.9284773550354445e-06, -5.7854320651063588e-05, -1.1570864130212836e-05, -4.8211933875886612e-06, -5.7854320651064232e-05, -9.6423867751772245e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -0.00015620666575787305, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00022081065715155775, -2.8927160325531443e-06, -0.00019284773550354599, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772245e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -1.928477355035444e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00015620666575787341, -7.7139094201417779e-06, -7.7139094201417779e-06, -2.603444429297843e-05, -9.256691304170269e-05, -7.7139094201417796e-06, -6.8460946103757531e-05, -1.1570864130212826e-05, -1.1570864130212826e-05, -7.7139094201417762e-06, -7.7139094201417762e-06, -9.6423867751773731e-06, -7.7139094201417762e-06, -9.6423867751773494e-06, -2.0249012227872315e-05, -7.7139094201417796e-06, -4.8211933875886798e-06, -2.2177489582907561e-05, -7.7139094201417796e-06, -1.1570864130212836e-05, -2.8927160325532451e-06, -4.8211933875886595e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -7.7139094201417762e-06, -1.1570864130212829e-05, -5.7854320651064596e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -1.5427818840283552e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -1.5427818840283552e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, 0.0039051666439467963, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.5427818840283552e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -8.67814809765944e-06, -3.2784115035602493e-05, -1.928477355035444e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -8.67814809765944e-06, -2.5070205615460997e-05, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.639205751780168e-05, -2.892716032553195e-05, -1.1570864130212836e-05, -5.7854320651064495e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -1.5427818840283556e-05, -2.3141728260425656e-05, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -1.1570864130212835e-05, -7.7139094201417796e-06, -9.6423867751772202e-07, -1.928477355035444e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -8.6781480976594264e-06, -4.821193387588673e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -6.942518478127552e-05, -3.8569547100708881e-06, -9.6423867751772245e-07, -5.7854320651063575e-05, -7.7139094201417796e-06, -4.6283456520852016e-05, -4.6283456520851318e-05, -4.8211933875886266e-05, -4.6283456520852016e-05, -3.8569547100708881e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -9.6423867751772202e-07, -7.7139094201417779e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -6.7496707426240572e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -5.8818559328581408e-05, -1.9284773550354445e-06, -6.9425184781275574e-05, -6.9425184781275601e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -6.9425184781275601e-05, -6.9425184781275466e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354445e-06, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.8927160325532074e-06, -1.5427818840283559e-05, -7.7139094201417762e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -0.00019381197418106427, -0.00019284773550354477, -4.8211933875886442e-06, -9.6423867751772224e-07, -2.8927160325532078e-06, -9.6423867751773494e-06, -7.7139094201418877e-05, -1.9284773550354449e-06, -8.8709958331630693e-05, -9.6423867751772245e-07, -1.5427818840283552e-05, -1.5427818840283552e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201418606e-05, -7.7139094201418741e-05, -7.7139094201417762e-06, -0.00021888217979652166, -1.9284773550354449e-06, -0.00019284773550354729, -1.5427818840283552e-05, -7.7139094201417796e-06, -7.7139094201417762e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417745e-06, -4.8211933875886442e-06, -2.8927160325532099e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -1.4463580162765985e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -8.6781480976593926e-06, -7.7139094201417796e-06, -1.4463580162766044e-05, -1.9284773550354445e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -1.5427818840283559e-05, -9.6423867751773291e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -9.6423867751772224e-07, -7.7139094201417796e-06, -1.6392057517801148e-05, -7.7139094201417779e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -3.0855637680567139e-05, -2.4105966937943157e-05, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.5427818840283552e-05, -3.8569547100708881e-06, -7.7139094201417796e-06, -9.6423867751773325e-06, -1.0606625452694895e-05, -3.8569547100708881e-06, -1.5427818840283552e-05, -7.7139094201417796e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -1.928477355035444e-06, -7.7139094201417779e-06, -7.7139094201417796e-06, -9.6423867751772202e-07, -7.7139094201417796e-06, -1.9284773550354445e-06, -7.7139094201417779e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -1.5427818840283559e-05, 0.003912880553366937, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -2.3141728260425659e-05, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -3.8569547100708898e-06, -1.7356296195318819e-05, -3.8569547100708898e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.2535102807730519e-05, -7.7139094201417796e-06, -1.5427818840283559e-05, -8.0996048911489125e-05, -7.7139094201417796e-06, -8.4853003621559184e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -7.7139094201418524e-05, -1.5427818840283556e-05, -7.8103332878936446e-05, -9.6423867751772245e-07, -1.5427818840283556e-05, -1.5427818840283552e-05, -3.8569547100708881e-06, -8.0996048911489071e-05, -7.7139094201418877e-05, -7.7139094201418457e-05, -7.713909420141866e-05, -9.6423867751772224e-07, -3.8569547100708881e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417779e-06, -9.642386775177363e-06, -1.9284773550354679e-05, -1.5427818840283556e-05, -1.5427818840283559e-05, -7.7139094201417779e-06, -2.3141728260425683e-05, -2.8927160325532518e-06, -8.4853003621559889e-05, -1.5427818840283556e-05, -6.9425184781275547e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943241e-05, -1.5427818840283559e-05, -7.7139094201417796e-06, -6.7496707426240599e-06, -3.8569547100708898e-06, -1.9284773550354445e-06, -6.9425184781275547e-05, -1.9284773550354445e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -6.942518478127552e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751773257e-06, -2.89271603255314e-06, -7.7139094201417796e-06, -1.4463580162765975e-05, -9.6423867751772245e-07, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -5.7854320651064528e-06, -2.8927160325532459e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -1.5427818840283559e-05, -2.507020561546097e-05, -2.21774895829075e-05, -9.6423867751772245e-07, -1.5427818840283559e-05, -7.7139094201417796e-06, -5.7854320651064647e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.713909420141866e-05, -7.7139094201418457e-05, -0.00015620666575787335, -7.7139094201418457e-05, -7.7139094201418524e-05, -3.8569547100708881e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -8.6781480976593756e-06, -3.8569547100708881e-06, -1.0606625452694951e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.5427818840283556e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -0.000156206665757873, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.8927160325532099e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -3.8569547100708881e-06, -1.1570864130212846e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.735629619531886e-05, -9.6423867751772245e-07, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -4.8211933875886654e-06, -3.8569547100708898e-06, -1.9284773550354445e-06, -5.7854320651064181e-06, -8.1960287589006667e-05, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -4.4354979165815109e-05, -9.6423867751772884e-06, -9.6423867751772224e-07, -7.7139094201417779e-06, -7.7139094201417762e-06, -7.7139094201417779e-06, -1.5427818840283559e-05, -7.7139094201417762e-06, -1.5427818840283559e-05, -7.7139094201417762e-06, -7.7139094201417762e-06, -0.00029602127399794612, -7.7139094201417796e-06, -0.00019284773550354599, -7.7139094201417796e-06, -1.9284773550354445e-06, -5.7854320651063629e-05, -1.1570864130212843e-05, -4.8211933875886578e-06, -5.7854320651064286e-05, -9.6423867751772245e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -0.000156206665757873, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00022081065715155758, -2.8927160325531392e-06, -0.00019284773550354615, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772245e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -1.928477355035444e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00015620666575787335, -7.7139094201417779e-06, -7.7139094201417779e-06, -2.603444429297843e-05, -9.2566913041702744e-05, -7.7139094201417796e-06, -6.846094610375745e-05, -1.1570864130212833e-05, -1.1570864130212833e-05, -7.7139094201417762e-06, -7.7139094201417762e-06, -9.6423867751773697e-06, -7.7139094201417762e-06, -9.642386775177346e-06, -2.0249012227872315e-05, -7.7139094201417796e-06, -4.8211933875886798e-06, -2.2177489582907548e-05, -7.7139094201417796e-06, -1.1570864130212843e-05, -2.8927160325532468e-06, -4.8211933875886578e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -7.7139094201417762e-06, -1.1570864130212836e-05, -5.785432065106463e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -1.5427818840283552e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -1.5427818840283552e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, 0.003912880553366937, -2.3141728260425147e-05, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.5427818840283552e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -8.6781480976594332e-06, -3.2784115035602493e-05, -1.928477355035444e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -8.6781480976594332e-06, -2.507020561546099e-05, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.6392057517801687e-05, -2.8927160325531957e-05, -1.1570864130212843e-05, -5.7854320651064528e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -1.5427818840283556e-05, -2.3141728260425669e-05, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -1.1570864130212841e-05, -7.7139094201417796e-06, -9.6423867751772202e-07, -1.928477355035444e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -8.6781480976594197e-06, -4.8211933875886713e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -6.9425184781275466e-05, -3.8569547100708881e-06, -9.6423867751772245e-07, -5.7854320651063629e-05, -7.7139094201417796e-06, -4.6283456520852043e-05, -4.6283456520851345e-05, -4.8211933875886307e-05, -4.6283456520852043e-05, -3.8569547100708881e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -9.6423867751772202e-07, -7.7139094201417779e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -6.749670742624049e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -5.8818559328581449e-05, -1.9284773550354445e-06, -6.942518478127552e-05, -6.9425184781275547e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -6.9425184781275547e-05, -6.9425184781275411e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354445e-06, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.8927160325532091e-06, -1.5427818840283559e-05, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -1.2113248386316507e-05, -1.2052983468971541e-05, -3.0132458672428963e-07, -6.0264917344857653e-08, -1.8079475203457504e-07, -6.0264917344858307e-07, -4.8211933875886781e-06, -1.2052983468971531e-07, -5.5443723957269149e-06, -6.0264917344857666e-08, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886781e-06, -4.8211933875886781e-06, -4.8211933875886122e-07, -1.3680136237282617e-05, -1.2052983468971528e-07, -1.2052983468971702e-05, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886101e-07, -3.0132458672428963e-07, -1.8079475203457514e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857653e-08, -9.0397376017287947e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610371352e-07, -4.8211933875886133e-07, -9.0397376017287651e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -9.6423867751772266e-07, -6.026491734485818e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -1.0245035948625745e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.9284773550354445e-06, -1.5066229336214464e-06, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943056e-07, -4.8211933875886133e-07, -6.0264917344858201e-07, -6.6291409079343155e-07, -2.4105966937943056e-07, -9.6423867751772202e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.026491734485764e-08, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, 0.00024545900834560644, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.4463580162766003e-06, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -2.4105966937943072e-07, -1.0847685122074501e-06, -2.4105966937943072e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -7.8344392548314079e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -5.0622530569680805e-06, -4.8211933875886133e-07, -5.3033127263474575e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -4.8211933875886476e-06, -9.6423867751772245e-07, -4.8814583049335194e-06, -6.0264917344857653e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943066e-07, -5.0622530569680788e-06, -4.8211933875886781e-06, -4.8211933875886434e-06, -4.8211933875886561e-06, -6.0264917344857653e-08, -2.4105966937943061e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.026491734485764e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886122e-07, -6.0264917344858392e-07, -1.2052983468971649e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -4.8211933875886122e-07, -1.4463580162766016e-06, -1.8079475203457782e-07, -5.303312726347499e-06, -9.6423867751772245e-07, -4.3390740488297319e-06, -6.0264917344857653e-08, -6.0264917344857679e-08, -1.5066229336214312e-06, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.2185442141400406e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -4.3390740488297319e-06, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297302e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -6.0264917344858159e-07, -1.8079475203457514e-07, -4.8211933875886133e-07, -9.0397376017287365e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -3.615895040691523e-07, -1.8079475203457742e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -1.5668878509662795e-06, -1.3860930989317289e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -4.8211933875886122e-07, -3.6158950406915309e-07, -1.2052983468971533e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -4.8211933875886561e-06, -4.8211933875886434e-06, -9.7629166098670692e-06, -4.8211933875886434e-06, -4.8211933875886476e-06, -2.4105966937943056e-07, -1.2052983468971536e-07, -4.8211933875886101e-07, -5.4238425610371246e-07, -2.4105966937943056e-07, -6.6291409079343504e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -9.6423867751772287e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -9.7629166098670472e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -1.8079475203457514e-07, -6.0264917344857653e-08, -1.2052983468971533e-07, -1.2052983468971533e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -2.4105966937943056e-07, -7.2317900813830121e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -1.0847685122074313e-06, -6.0264917344857666e-08, -2.4105966937943035e-07, -1.2052983468971531e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.0132458672429095e-07, -2.4105966937943066e-07, -1.2052983468971533e-07, -3.6158950406915039e-07, -5.1225179743129167e-06, -6.0264917344857679e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857679e-08, 0.00024274708706508805, -6.0264917344857926e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -4.8211933875886112e-07, -9.6423867751772266e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.8501329624871585e-05, -4.8211933875886122e-07, -1.2052983468971621e-05, -4.8211933875886133e-07, -1.2052983468971531e-07, -3.6158950406914717e-06, -7.2317900813830099e-07, -3.0132458672429058e-07, -3.6158950406915128e-06, -6.0264917344857679e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.7629166098670472e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.3800666071972393e-05, -1.8079475203457504e-07, -1.2052983468971627e-05, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.7629166098670692e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.6271527683111523e-06, -5.785432065106408e-06, -4.8211933875886133e-07, -4.2788091314848499e-06, -7.2317900813830057e-07, -7.2317900813830057e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344858434e-07, -4.8211933875886122e-07, -6.0264917344858286e-07, -1.2655632642420193e-06, -4.8211933875886133e-07, -3.0132458672429175e-07, -1.386093098931723e-06, -4.8211933875886133e-07, -7.2317900813830099e-07, -1.807947520345775e-07, -3.0132458672429048e-07, -1.2052983468971528e-07, -6.0264917344857653e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -7.2317900813828607e-07, -3.615895040691451e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943066e-07, -4.8211933875886112e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -1.4463580162766011e-06, -4.8211933875886133e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610372887e-07, -2.0490071897251584e-06, -1.2052983468971528e-07, -4.8211933875886112e-07, -4.8211933875886144e-07, -5.4238425610371606e-07, -1.5668878509663114e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857666e-08, -6.026491734485764e-08, -6.0264917344857653e-08, -1.2052983468971536e-07, -1.0245035948625684e-06, -1.8079475203457367e-06, -7.2317900813830099e-07, -3.615895040691523e-07, -6.0264917344857679e-08, -2.4105966937943066e-07, -9.6423867751772245e-07, -1.4463580162766009e-06, -4.8211933875886112e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -7.2317900813830078e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -5.4238425610372781e-07, -3.0132458672429143e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -4.3390740488297251e-06, -2.4105966937943066e-07, -6.0264917344857679e-08, -3.6158950406914717e-06, -4.8211933875886133e-07, -2.8927160325532455e-06, -2.8927160325532023e-06, -3.0132458672428929e-06, -2.8927160325532455e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.2185442141400357e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -3.6761599580363388e-06, -1.2052983468971531e-07, -4.3390740488297302e-06, -4.3390740488297319e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.3390740488297319e-06, -4.3390740488297234e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -9.6423867751772287e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.8079475203457514e-07, -9.6423867751772287e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6905987090531974e-05, -9.6423867751772247e-05, -2.4105966937943153e-06, -4.8211933875886133e-07, -1.4463580162766005e-06, -4.8211933875886612e-06, -3.8569547100709398e-05, -9.6423867751772287e-07, -4.4354979165815347e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100709404e-05, -3.8569547100709398e-05, -3.8569547100708898e-06, -0.00010944108989826145, -9.6423867751772245e-07, -9.6423867751773535e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.4105966937943153e-06, -1.4463580162765757e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.231790081383029e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297115e-06, -3.8569547100708915e-06, -7.2317900813830053e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886298e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -8.1960287589005979e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.2052983468971409e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.8211933875886298e-06, -5.3033127263474541e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, 0.0019602972313935386, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212789e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.67814809765944e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652559e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.0498024455744644e-05, -3.8569547100708906e-06, -4.2426501810779673e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.856954710070916e-05, -7.7139094201417796e-06, -3.9051666439468155e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.0498024455744644e-05, -3.8569547100709398e-05, -3.8569547100709133e-05, -3.8569547100709228e-05, -4.8211933875886122e-07, -1.9284773550354449e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -4.8211933875886679e-06, -9.6423867751773121e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -1.1570864130212802e-05, -1.4463580162766213e-06, -4.2426501810779999e-05, -7.7139094201417813e-06, -3.4712592390637895e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971604e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.374835371312035e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390637882e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390637882e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886493e-06, -1.4463580162766001e-06, -3.8569547100708915e-06, -7.2317900813829807e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325532158e-06, -1.4463580162766181e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730481e-05, -1.1088744791453845e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.892716032553223e-06, -9.6423867751772266e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709228e-05, -3.8569547100709133e-05, -7.8103332878936527e-05, -3.8569547100709133e-05, -3.856954710070916e-05, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297031e-06, -1.9284773550354449e-06, -5.303312726347482e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936364e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162765999e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651064046e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976594603e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943263e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325531997e-06, -4.0980143794503347e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.2177489582907595e-05, -4.8211933875886307e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897249, -3.8569547100708906e-06, -9.6423867751772518e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -2.8927160325531733e-05, -5.7854320651064012e-06, -2.410596693794323e-06, -2.8927160325532062e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936364e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577906, -1.4463580162765994e-06, -9.6423867751772939e-05, -3.8569547100708915e-06, 0.0019602972313935386, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936527e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489222e-05, -4.6283456520851209e-05, -3.8569547100708915e-06, -3.4230473051878881e-05, -5.7854320651063978e-06, -5.7854320651063978e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886713e-06, -3.8569547100708898e-06, -4.8211933875886603e-06, -1.0124506113936158e-05, -3.8569547100708915e-06, -2.4105966937943327e-06, -1.1088744791453794e-05, -3.8569547100708906e-06, -5.7854320651064012e-06, -1.4463580162766183e-06, -2.4105966937943225e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063995e-06, -2.8927160325532209e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.1570864130212796e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297319e-06, -1.6392057517801301e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488297319e-06, -1.2535102807730492e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -8.1960287589005505e-06, -1.4463580162765884e-05, -5.7854320651064012e-06, -2.8927160325532158e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417813e-06, -1.1570864130212797e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651064012e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.3390740488297251e-06, -2.4105966937943289e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.4712592390637895e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531733e-05, -3.8569547100708906e-06, -2.3141728260425944e-05, -2.3141728260425598e-05, -2.4105966937943119e-05, -2.3141728260425944e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.374835371312034e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.9409279664290677e-05, -9.6423867751772245e-07, -3.4712592390637882e-05, -3.4712592390637882e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390637895e-05, -3.4712592390637828e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765999e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -9.6905987090531947e-05, -9.642386775177222e-05, -2.4105966937943153e-06, -4.8211933875886122e-07, -1.4463580162766009e-06, -4.8211933875886612e-06, -3.8569547100709411e-05, -9.6423867751772287e-07, -4.435497916581536e-05, -4.8211933875886133e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100709411e-05, -3.8569547100709404e-05, -3.8569547100708898e-06, -0.00010944108989826151, -9.6423867751772224e-07, -9.6423867751773481e-05, -7.7139094201417779e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.4105966937943153e-06, -1.446358016276577e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -7.2317900813830256e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297149e-06, -3.8569547100708906e-06, -7.2317900813830019e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -7.713909420141783e-06, -4.8211933875886315e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -8.1960287589005979e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.2052983468971419e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -3.8569547100708898e-06, -4.8211933875886315e-06, -5.3033127263474541e-06, -1.9284773550354445e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708915e-06, 0.0019602972313935386, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212789e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594468e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652559e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.0498024455744644e-05, -3.8569547100708906e-06, -4.2426501810779673e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709167e-05, -7.7139094201417796e-06, -3.9051666439468155e-05, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.0498024455744644e-05, -3.8569547100709411e-05, -3.8569547100709133e-05, -3.8569547100709235e-05, -4.8211933875886122e-07, -1.9284773550354449e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886696e-06, -9.6423867751773155e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -1.1570864130212799e-05, -1.4463580162766208e-06, -4.2426501810779999e-05, -7.7139094201417796e-06, -3.4712592390637916e-05, -4.8211933875886122e-07, -4.8211933875886144e-07, -1.2052983468971599e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120363e-06, -1.9284773550354445e-06, -9.6423867751772245e-07, -3.4712592390637916e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390637895e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886493e-06, -1.4463580162765997e-06, -3.8569547100708906e-06, -7.2317900813829773e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.892716032553215e-06, -1.4463580162766177e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.2535102807730481e-05, -1.1088744791453848e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -2.8927160325532209e-06, -9.6423867751772266e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -3.8569547100709235e-05, -3.8569547100709133e-05, -7.8103332878936554e-05, -3.8569547100709133e-05, -3.8569547100709167e-05, -1.9284773550354445e-06, -9.6423867751772245e-07, -3.8569547100708881e-06, -4.3390740488297064e-06, -1.9284773550354445e-06, -5.303312726347482e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -7.8103332878936378e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4463580162765994e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651064012e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -8.6781480976594671e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943263e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325531989e-06, -4.0980143794503347e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886144e-07, -2.2177489582907602e-05, -4.8211933875886315e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897244, -3.8569547100708898e-06, -9.6423867751772464e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.8927160325531726e-05, -5.7854320651064012e-06, -2.4105966937943234e-06, -2.8927160325532048e-05, -4.8211933875886144e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936378e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577912, -1.4463580162765986e-06, -9.6423867751772911e-05, 0.0019602972313935386, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936554e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489222e-05, -4.6283456520851196e-05, -3.8569547100708915e-06, -3.4230473051878901e-05, -5.7854320651063944e-06, -5.7854320651063944e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886722e-06, -3.8569547100708898e-06, -4.8211933875886612e-06, -1.0124506113936158e-05, -3.8569547100708906e-06, -2.4105966937943331e-06, -1.1088744791453798e-05, -3.8569547100708906e-06, -5.7854320651064012e-06, -1.4463580162766183e-06, -2.410596693794323e-06, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063978e-06, -2.8927160325532201e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.1570864130212796e-05, -3.8569547100708906e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297352e-06, -1.6392057517801301e-05, -9.6423867751772224e-07, -3.8569547100708889e-06, -3.8569547100708915e-06, -4.3390740488297352e-06, -1.2535102807730492e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -8.1960287589005505e-06, -1.446358016276588e-05, -5.7854320651064012e-06, -2.892716032553215e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417796e-06, -1.1570864130212794e-05, -3.8569547100708889e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651063995e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.3390740488297285e-06, -2.4105966937943297e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.4712592390637916e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.892716032553172e-05, -3.8569547100708906e-06, -2.3141728260425937e-05, -2.3141728260425591e-05, -2.4105966937943109e-05, -2.3141728260425937e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.3748353713120354e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.940927966429067e-05, -9.6423867751772245e-07, -3.4712592390637895e-05, -3.4712592390637916e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390637916e-05, -3.4712592390637841e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765994e-06, -7.713909420141783e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -1.2113248386316514e-05, -1.2052983468971546e-05, -3.0132458672428958e-07, -6.0264917344857653e-08, -1.807947520345752e-07, -6.0264917344858286e-07, -4.8211933875886772e-06, -1.2052983468971531e-07, -5.5443723957269115e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886781e-06, -4.8211933875886764e-06, -4.8211933875886112e-07, -1.3680136237282619e-05, -1.2052983468971528e-07, -1.2052983468971707e-05, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.8211933875886091e-07, -3.0132458672428952e-07, -1.807947520345753e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857653e-08, -9.0397376017287947e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610371267e-07, -4.8211933875886133e-07, -9.039737601728709e-07, -1.2052983468971531e-07, -6.026491734485764e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -9.6423867751772245e-07, -6.0264917344858169e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -1.0245035948625733e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -1.928477355035444e-06, -1.5066229336214471e-06, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -2.4105966937943056e-07, -4.8211933875886133e-07, -6.026491734485819e-07, -6.6291409079343176e-07, -2.4105966937943056e-07, -9.6423867751772202e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.026491734485764e-08, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -9.6423867751772224e-07, -9.6423867751772224e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -4.8211933875886122e-07, 0.00024545900834560633, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886112e-07, -1.4463580162766014e-06, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -1.0847685122074279e-06, -2.4105966937943066e-07, -6.0264917344857653e-08, -1.2052983468971533e-07, -7.8344392548315731e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -5.0622530569680839e-06, -4.8211933875886133e-07, -5.3033127263474592e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772224e-07, -4.8211933875886501e-06, -9.6423867751772245e-07, -4.8814583049335211e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772224e-07, -2.4105966937943056e-07, -5.0622530569680839e-06, -4.8211933875886772e-06, -4.8211933875886468e-06, -4.8211933875886595e-06, -6.0264917344857653e-08, -2.4105966937943045e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -6.026491734485764e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.8211933875886122e-07, -6.0264917344858381e-07, -1.2052983468971647e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -1.4463580162765817e-06, -1.8079475203457798e-07, -5.3033127263474947e-06, -9.6423867751772287e-07, -4.3390740488297285e-06, -6.0264917344857653e-08, -6.0264917344857666e-08, -1.5066229336214522e-06, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.2185442141400369e-07, -2.4105966937943056e-07, -1.2052983468971531e-07, -4.3390740488297268e-06, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.3390740488297268e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -6.0264917344858137e-07, -1.8079475203457533e-07, -4.8211933875886133e-07, -9.0397376017287344e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -6.0264917344857666e-08, -3.6158950406915261e-07, -1.8079475203457758e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.5668878509663106e-06, -1.3860930989317285e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.6158950406915346e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.8211933875886595e-06, -4.8211933875886468e-06, -9.7629166098670726e-06, -4.8211933875886468e-06, -4.8211933875886501e-06, -2.4105966937943056e-07, -1.2052983468971531e-07, -4.8211933875886101e-07, -5.4238425610371161e-07, -2.4105966937943056e-07, -6.6291409079343536e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -9.7629166098670506e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -1.807947520345753e-07, -6.0264917344857653e-08, -1.2052983468971533e-07, -1.2052983468971533e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -2.4105966937943056e-07, -7.2317900813830174e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -1.08476851220743e-06, -6.0264917344857666e-08, -2.4105966937943045e-07, -1.2052983468971528e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.0132458672429111e-07, -2.4105966937943066e-07, -1.2052983468971528e-07, -3.615895040691506e-07, -5.1225179743129167e-06, -6.0264917344857666e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857666e-08, -2.772186197863446e-06, -6.0264917344857915e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -4.8211933875886101e-07, -9.6423867751772287e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -1.8501329624871616e-05, -4.8211933875886122e-07, -1.2052983468971622e-05, -4.8211933875886133e-07, -1.2052983468971531e-07, -3.61589504069147e-06, -7.2317900813830152e-07, -3.0132458672429048e-07, -3.6158950406915111e-06, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.7629166098670506e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.3800666071972359e-05, -1.8079475203457522e-07, -1.2052983468971634e-05, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971528e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.7629166098670726e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.6271527683111523e-06, -5.7854320651064122e-06, -4.8211933875886133e-07, -4.2788091314848465e-06, -7.2317900813830089e-07, -7.2317900813830089e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, 0.00024491662408950259, -4.8211933875886112e-07, -6.0264917344857926e-07, -1.2655632642420189e-06, -4.8211933875886133e-07, -3.0132458672429175e-07, -1.3860930989317226e-06, -4.8211933875886133e-07, -7.2317900813830152e-07, -1.8079475203457763e-07, -3.0132458672429048e-07, -1.2052983468971528e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -4.8211933875886112e-07, -7.2317900813830121e-07, -3.615895040691533e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886101e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -4.8211933875886101e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772224e-07, -1.4463580162766022e-06, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610371521e-07, -2.0490071897251596e-06, -1.2052983468971525e-07, -4.8211933875886112e-07, -4.8211933875886133e-07, -5.4238425610371521e-07, -1.5668878509663117e-06, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886112e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857653e-08, -6.026491734485764e-08, -6.0264917344857653e-08, -1.2052983468971533e-07, -1.0245035948625675e-06, -1.8079475203457367e-06, -7.2317900813830152e-07, -3.6158950406915261e-07, -6.0264917344857666e-08, -2.4105966937943066e-07, -9.6423867751772287e-07, -1.4463580162765791e-06, -4.8211933875886112e-07, -2.4105966937943066e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -7.2317900813830142e-07, -4.8211933875886133e-07, -6.026491734485764e-08, -1.2052983468971528e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -5.4238425610371458e-07, -3.0132458672429127e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.3390740488297217e-06, -2.4105966937943056e-07, -6.0264917344857666e-08, -3.61589504069147e-06, -4.8211933875886133e-07, -2.8927160325531532e-06, -2.8927160325531421e-06, -3.0132458672428433e-06, -2.8927160325531532e-06, -2.4105966937943056e-07, -2.4105966937943056e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -6.026491734485764e-08, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.2185442141400374e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -3.6761599580363355e-06, -1.2052983468971531e-07, -4.3390740488297268e-06, -4.3390740488297268e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.3390740488297285e-06, -4.33907404882972e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.807947520345753e-07, -9.6423867751772266e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6905987090532407e-05, -9.6423867751772749e-05, -2.4105966937943272e-06, -4.8211933875886112e-07, -1.4463580162766115e-06, -4.8211933875886544e-06, -3.8569547100709574e-05, -9.6423867751772245e-07, -4.435497916581513e-05, -4.8211933875886122e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100709574e-05, -3.8569547100709574e-05, -3.8569547100708881e-06, -0.00010944108989826053, -9.6423867751772202e-07, -9.6423867751774023e-05, -7.7139094201417762e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708881e-06, -2.4105966937943272e-06, -1.4463580162766119e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886112e-07, -7.2317900813830629e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488296743e-06, -3.8569547100708898e-06, -7.2317900813830392e-06, -9.6423867751772224e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886739e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886112e-07, -3.8569547100708898e-06, -8.196028758900564e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -1.5427818840283549e-05, -1.2052983468971624e-05, -3.8569547100708898e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -1.928477355035444e-06, -3.8569547100708898e-06, -4.8211933875886756e-06, -5.3033127263474397e-06, -1.928477355035444e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772202e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -3.8569547100708898e-06, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, 0.001960297231393539, -3.8569547100708991e-06, -3.8569547100708898e-06, -3.8569547100709025e-06, -1.157086413021288e-05, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -8.6781480976593654e-06, -1.9284773550354449e-06, -4.8211933875886218e-07, -9.6423867751772245e-07, -6.2675514038651247e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.0498024455744685e-05, -3.8569547100708898e-06, -4.2426501810779538e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -3.8569547100709337e-05, -7.7139094201417779e-06, -3.9051666439468291e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417762e-06, -1.928477355035444e-06, -4.0498024455744685e-05, -3.8569547100709574e-05, -3.856954710070931e-05, -3.8569547100709404e-05, -4.8211933875886112e-07, -1.928477355035444e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708889e-06, -4.8211933875886916e-06, -9.6423867751772952e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -3.8569547100708889e-06, -1.1570864130212897e-05, -1.4463580162765687e-06, -4.242650181077989e-05, -7.7139094201417779e-06, -3.4712592390637597e-05, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971661e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.3748353713120223e-06, -1.928477355035444e-06, -9.6423867751772224e-07, -3.4712592390637597e-05, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.4712592390637584e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886713e-06, -1.4463580162766119e-06, -3.8569547100708898e-06, -7.2317900813830171e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.89271603255324e-06, -1.4463580162766297e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -1.2535102807730498e-05, -1.1088744791453777e-05, -4.8211933875886122e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -2.8927160325531794e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100709404e-05, -3.856954710070931e-05, -7.8103332878936811e-05, -3.856954710070931e-05, -3.8569547100709337e-05, -1.928477355035444e-06, -9.6423867751772245e-07, -3.8569547100708873e-06, -4.3390740488296658e-06, -1.928477355035444e-06, -5.3033127263474702e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.8103332878936649e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.4463580162766119e-06, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -1.928477355035444e-06, -5.7854320651064512e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -8.6781480976593451e-06, -4.8211933875886122e-07, -1.9284773550354428e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.4105966937943378e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -2.892716032553223e-06, -4.0980143794503334e-05, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -2.2177489582907467e-05, -4.8211933875886544e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708881e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -0.00014801063699897377, -3.8569547100708898e-06, -9.6423867751773345e-05, -3.8569547100708898e-06, -9.6423867751772224e-07, -2.8927160325531869e-05, -5.7854320651064495e-06, -2.410596693794334e-06, -2.8927160325532197e-05, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.8103332878936649e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00011040532857577855, -1.4463580162766111e-06, -9.6423867751773426e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936811e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.30172221464894e-05, -4.6283456520851535e-05, -3.8569547100708898e-06, -3.4230473051878745e-05, -5.7854320651062462e-06, -5.7854320651062462e-06, -3.8569547100708881e-06, -3.8569547100708991e-06, -4.8211933875886933e-06, 0.001960297231393539, -4.8211933875886832e-06, -1.0124506113936161e-05, -3.8569547100708898e-06, -2.4105966937943441e-06, -1.1088744791453727e-05, -3.8569547100708898e-06, -5.7854320651064495e-06, -1.4463580162766302e-06, -2.410596693794334e-06, -9.6423867751772202e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -3.8569547100708881e-06, -5.7854320651064461e-06, -2.8927160325532451e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -1.1570864130212892e-05, -3.8569547100708898e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488296946e-06, -1.6392057517801226e-05, -9.6423867751772224e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -4.3390740488296946e-06, -1.2535102807730505e-05, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -8.1960287589005149e-06, -1.4463580162765955e-05, -5.7854320651064495e-06, -2.89271603255324e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -7.7139094201417779e-06, -1.157086413021289e-05, -3.8569547100708881e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -5.7854320651064486e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.3390740488296878e-06, -2.4105966937943272e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.4712592390637665e-05, -1.928477355035444e-06, -4.8211933875886122e-07, -2.8927160325531842e-05, -3.8569547100708898e-06, -2.314172826042613e-05, -2.3141728260425784e-05, -2.4105966937943245e-05, -2.314172826042613e-05, -1.928477355035444e-06, -1.928477355035444e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.3748353713120123e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.9409279664290819e-05, -9.6423867751772224e-07, -3.4712592390637584e-05, -3.4712592390637597e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.4712592390637597e-05, -3.471259239063753e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.4463580162766119e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6905987090532299e-05, -9.64238677517726e-05, -2.410596693794328e-06, -4.8211933875886112e-07, -1.4463580162766096e-06, -4.8211933875886561e-06, -3.8569547100709601e-05, -9.6423867751772245e-07, -4.4354979165815184e-05, -4.8211933875886122e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100709601e-05, -3.8569547100709601e-05, -3.8569547100708881e-06, -0.00010944108989826064, -9.6423867751772202e-07, -9.6423867751773887e-05, -7.7139094201417762e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708881e-06, -2.410596693794328e-06, -1.44635801627661e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886112e-07, -7.2317900813830561e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.339074048829681e-06, -3.8569547100708898e-06, -7.2317900813830324e-06, -9.6423867751772224e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886764e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886112e-07, -3.8569547100708898e-06, -8.196028758900559e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -1.5427818840283549e-05, -1.2052983468971607e-05, -3.8569547100708898e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -1.928477355035444e-06, -3.8569547100708898e-06, -4.8211933875886781e-06, -5.303312726347438e-06, -1.928477355035444e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772202e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -3.8569547100708898e-06, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -3.8569547100708991e-06, 0.001960297231393539, -3.8569547100708898e-06, -3.8569547100708991e-06, -1.1570864130212889e-05, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -8.678148097659379e-06, -1.9284773550354449e-06, -4.8211933875886218e-07, -9.6423867751772245e-07, -6.2675514038651263e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.0498024455744685e-05, -3.8569547100708898e-06, -4.2426501810779518e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -3.8569547100709357e-05, -7.7139094201417779e-06, -3.9051666439468304e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417762e-06, -1.928477355035444e-06, -4.0498024455744685e-05, -3.8569547100709601e-05, -3.8569547100709323e-05, -3.8569547100709425e-05, -4.8211933875886112e-07, -1.928477355035444e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708889e-06, -4.8211933875886933e-06, -9.642386775177302e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -3.8569547100708889e-06, -1.1570864130212882e-05, -1.446358016276567e-06, -4.2426501810779877e-05, -7.7139094201417779e-06, -3.4712592390637652e-05, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971648e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.3748353713120266e-06, -1.928477355035444e-06, -9.6423867751772224e-07, -3.4712592390637652e-05, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.4712592390637638e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.821193387588673e-06, -1.44635801627661e-06, -3.8569547100708898e-06, -7.2317900813830104e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.8927160325532366e-06, -1.446358016276628e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -1.2535102807730502e-05, -1.1088744791453791e-05, -4.8211933875886122e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -2.892716032553176e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100709425e-05, -3.8569547100709323e-05, -7.8103332878936839e-05, -3.8569547100709323e-05, -3.8569547100709357e-05, -1.928477355035444e-06, -9.6423867751772245e-07, -3.8569547100708873e-06, -4.3390740488296726e-06, -1.928477355035444e-06, -5.3033127263474668e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.8103332878936676e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.44635801627661e-06, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -1.928477355035444e-06, -5.7854320651064444e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -8.6781480976593587e-06, -4.8211933875886122e-07, -1.9284773550354428e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.4105966937943386e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -2.8927160325532192e-06, -4.0980143794503334e-05, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -2.2177489582907494e-05, -4.8211933875886561e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708881e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -0.00014801063699897355, -3.8569547100708898e-06, -9.6423867751773237e-05, -3.8569547100708898e-06, -9.6423867751772224e-07, -2.8927160325531842e-05, -5.7854320651064418e-06, -2.4105966937943357e-06, -2.892716032553217e-05, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.8103332878936676e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00011040532857577863, -1.4463580162766092e-06, -9.6423867751773291e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936839e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.3017222146489396e-05, -4.628345652085148e-05, -3.8569547100708898e-06, -3.4230473051878799e-05, -5.7854320651062546e-06, -5.7854320651062563e-06, -3.8569547100708881e-06, 0.001960297231393539, -4.8211933875886967e-06, -3.8569547100708991e-06, -4.8211933875886849e-06, -1.0124506113936161e-05, -3.8569547100708898e-06, -2.4105966937943458e-06, -1.108874479145374e-05, -3.8569547100708898e-06, -5.7854320651064418e-06, -1.4463580162766285e-06, -2.4105966937943348e-06, -9.6423867751772202e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -3.8569547100708881e-06, -5.7854320651064384e-06, -2.8927160325532417e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -1.1570864130212877e-05, -3.8569547100708898e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488297014e-06, -1.639205751780122e-05, -9.6423867751772224e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -4.3390740488297014e-06, -1.2535102807730509e-05, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -8.1960287589005115e-06, -1.4463580162765941e-05, -5.7854320651064418e-06, -2.8927160325532366e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -7.7139094201417779e-06, -1.1570864130212875e-05, -3.8569547100708881e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -5.785432065106441e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.3390740488296946e-06, -2.410596693794328e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.4712592390637719e-05, -1.928477355035444e-06, -4.8211933875886122e-07, -2.8927160325531814e-05, -3.8569547100708898e-06, -2.3141728260426103e-05, -2.3141728260425754e-05, -2.4105966937943214e-05, -2.3141728260426103e-05, -1.928477355035444e-06, -1.928477355035444e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.3748353713120177e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.9409279664290779e-05, -9.6423867751772224e-07, -3.4712592390637638e-05, -3.4712592390637652e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.4712592390637652e-05, -3.4712592390637584e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.44635801627661e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6905987090531757e-05, -9.642386775177203e-05, -2.4105966937943136e-06, -4.8211933875886133e-07, -1.4463580162765946e-06, -4.8211933875886578e-06, -3.8569547100709357e-05, -9.6423867751772287e-07, -4.4354979165815469e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100709357e-05, -3.8569547100709357e-05, -3.8569547100708898e-06, -0.00010944108989826132, -9.6423867751772245e-07, -9.6423867751773318e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.4105966937943128e-06, -1.4463580162765956e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813830121e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.3390740488297285e-06, -3.8569547100708915e-06, -7.2317900813829875e-06, -9.6423867751772266e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886468e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -8.1960287589006233e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -1.5427818840283556e-05, -1.2052983468971534e-05, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.8211933875886485e-06, -5.3033127263474575e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -3.8569547100708915e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, 0.0019602972313935386, -3.8569547100708898e-06, -1.1570864130212765e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594739e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652559e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -4.0498024455744644e-05, -3.8569547100708915e-06, -4.2426501810779687e-05, -3.8569547100708915e-06, 0.0019602972313935386, -7.7139094201417796e-06, -3.856954710070912e-05, -7.7139094201417813e-06, -3.9051666439468114e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.049802445574463e-05, -3.8569547100709357e-05, -3.8569547100709093e-05, -3.8569547100709188e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886645e-06, -9.642386775177302e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -3.8569547100708906e-06, -1.1570864130212774e-05, -1.4463580162766166e-06, -4.2426501810780026e-05, -7.7139094201417813e-06, -3.4712592390638038e-05, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971575e-05, -7.713909420141783e-06, -3.8569547100708915e-06, -3.3748353713120426e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.4712592390638038e-05, -9.6423867751772266e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390638024e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886442e-06, -1.4463580162765956e-06, -3.8569547100708915e-06, -7.2317900813829655e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325531608e-06, -1.4463580162766136e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -1.2535102807730451e-05, -1.1088744791453872e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532133e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709188e-05, -3.8569547100709093e-05, -7.8103332878936473e-05, -3.8569547100709093e-05, -3.856954710070912e-05, -1.9284773550354449e-06, -9.6423867751772287e-07, -3.8569547100708889e-06, -4.3390740488297446e-06, -1.9284773550354449e-06, -5.3033127263474854e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936296e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162765956e-06, -4.8211933875886133e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -5.7854320651063842e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976594959e-06, -4.8211933875886144e-07, -1.928477355035444e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -7.713909420141783e-06, -2.4105966937943242e-06, -1.9284773550354457e-06, -9.6423867751772266e-07, -2.8927160325531904e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.2177489582907656e-05, -4.8211933875886273e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.000148010636998972, -3.8569547100708906e-06, -9.6423867751772654e-05, -3.8569547100708915e-06, -9.6423867751772266e-07, -2.8927160325531787e-05, -5.7854320651063842e-06, -2.4105966937943204e-06, -2.892716032553193e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936296e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -0.00011040532857577936, -1.4463580162765948e-06, -9.6423867751772749e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936473e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.3017222146489225e-05, -4.6283456520851169e-05, -3.8569547100708915e-06, -3.4230473051879036e-05, -5.7854320651063792e-06, -5.7854320651063792e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886662e-06, -3.8569547100708898e-06, -4.8211933875886561e-06, -1.0124506113936147e-05, -3.8569547100708915e-06, -2.4105966937943306e-06, -1.1088744791453825e-05, -3.8569547100708915e-06, -5.7854320651063842e-06, -1.4463580162766141e-06, -2.4105966937943204e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063792e-06, -2.8927160325532124e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.1570864130212762e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.3390740488297496e-06, -1.6392057517801342e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488297496e-06, -1.2535102807730463e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -8.1960287589005691e-06, -1.4463580162765853e-05, -5.7854320651063809e-06, -2.8927160325531608e-06, -4.8211933875886144e-07, -1.9284773550354457e-06, -7.7139094201417813e-06, -1.157086413021276e-05, -3.8569547100708898e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -5.7854320651063834e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.3390740488297429e-06, -2.4105966937943272e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.4712592390637895e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531781e-05, -3.8569547100708915e-06, -2.3141728260425872e-05, -2.3141728260425523e-05, -2.4105966937943069e-05, -2.3141728260425872e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.374835371312053e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.9409279664290779e-05, -9.6423867751772266e-07, -3.4712592390638024e-05, -3.4712592390638038e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.4712592390638038e-05, -3.471259239063797e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765956e-06, -7.713909420141783e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6905987090532326e-05, -9.6423867751772654e-05, -2.410596693794328e-06, -4.8211933875886112e-07, -1.44635801627661e-06, -4.8211933875886561e-06, -3.8569547100709587e-05, -9.6423867751772245e-07, -4.435497916581517e-05, -4.8211933875886122e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100709587e-05, -3.8569547100709587e-05, -3.8569547100708881e-06, -0.00010944108989826059, -9.6423867751772202e-07, -9.6423867751773914e-05, -7.7139094201417762e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708881e-06, -2.410596693794328e-06, -1.4463580162766105e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886112e-07, -7.2317900813830595e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488296793e-06, -3.8569547100708898e-06, -7.2317900813830341e-06, -9.6423867751772224e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886756e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886112e-07, -3.8569547100708898e-06, -8.1960287589005607e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -1.5427818840283549e-05, -1.2052983468971614e-05, -3.8569547100708898e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -1.928477355035444e-06, -3.8569547100708898e-06, -4.8211933875886772e-06, -5.3033127263474397e-06, -1.928477355035444e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772202e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -3.8569547100708898e-06, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -3.8569547100709025e-06, -3.8569547100708991e-06, -3.8569547100708898e-06, 0.001960297231393539, -1.1570864130212884e-05, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -8.6781480976593756e-06, -1.9284773550354449e-06, -4.8211933875886218e-07, -9.6423867751772245e-07, -6.2675514038651263e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.0498024455744685e-05, -3.8569547100708898e-06, -4.2426501810779538e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -3.856954710070935e-05, -7.7139094201417779e-06, -3.9051666439468291e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417762e-06, -1.928477355035444e-06, -4.0498024455744685e-05, -3.8569547100709587e-05, -3.8569547100709323e-05, -3.8569547100709418e-05, -4.8211933875886112e-07, -1.928477355035444e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708889e-06, -4.8211933875886916e-06, -9.6423867751772986e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -3.8569547100708889e-06, -1.1570864130212887e-05, -1.4463580162765675e-06, -4.2426501810779883e-05, -7.7139094201417779e-06, -3.4712592390637638e-05, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971655e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.3748353713120249e-06, -1.928477355035444e-06, -9.6423867751772224e-07, -3.4712592390637624e-05, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.4712592390637624e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.821193387588673e-06, -1.4463580162766105e-06, -3.8569547100708898e-06, -7.2317900813830138e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.8927160325532366e-06, -1.4463580162766285e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -1.2535102807730498e-05, -1.1088744791453784e-05, -4.8211933875886122e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -2.8927160325531769e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100709418e-05, -3.8569547100709323e-05, -7.8103332878936839e-05, -3.8569547100709323e-05, -3.856954710070935e-05, -1.928477355035444e-06, -9.6423867751772245e-07, -3.8569547100708873e-06, -4.3390740488296709e-06, -1.928477355035444e-06, -5.3033127263474685e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.8103332878936662e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.4463580162766105e-06, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -1.928477355035444e-06, -5.7854320651064461e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -8.6781480976593553e-06, -4.8211933875886122e-07, -1.9284773550354428e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.4105966937943386e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -2.8927160325532201e-06, -4.0980143794503334e-05, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -2.217748958290748e-05, -4.8211933875886561e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708881e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -0.0001480106369989736, -3.8569547100708898e-06, -9.6423867751773264e-05, -3.8569547100708898e-06, -9.6423867751772224e-07, -2.8927160325531855e-05, -5.7854320651064444e-06, -2.4105966937943357e-06, -2.8927160325532184e-05, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.8103332878936662e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.0001104053285757786, -1.4463580162766096e-06, -9.6423867751773345e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936839e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.30172221464894e-05, -4.6283456520851494e-05, -3.8569547100708898e-06, -3.4230473051878779e-05, -5.7854320651062513e-06, 0.0019583687540385025, -3.8569547100708881e-06, -3.8569547100708991e-06, -4.8211933875886967e-06, -3.8569547100709025e-06, -4.8211933875886849e-06, -1.0124506113936161e-05, -3.8569547100708898e-06, -2.410596693794345e-06, -1.1088744791453737e-05, -3.8569547100708898e-06, -5.7854320651064444e-06, -1.4463580162766289e-06, -2.4105966937943348e-06, -9.6423867751772202e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -3.8569547100708881e-06, -5.7854320651064418e-06, -2.8927160325532417e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -1.1570864130212884e-05, -3.8569547100708898e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488296997e-06, -1.639205751780122e-05, -9.6423867751772224e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -4.3390740488296997e-06, -1.2535102807730507e-05, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -8.1960287589005115e-06, -1.4463580162765945e-05, -5.7854320651064444e-06, -2.8927160325532366e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -7.7139094201417779e-06, -1.1570864130212879e-05, -3.8569547100708881e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -5.7854320651064435e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.3390740488296912e-06, -2.410596693794328e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.4712592390637692e-05, -1.928477355035444e-06, -4.8211933875886122e-07, -2.8927160325531828e-05, -3.8569547100708898e-06, -2.314172826042611e-05, -2.3141728260425761e-05, -2.4105966937943224e-05, -2.314172826042611e-05, -1.928477355035444e-06, -1.928477355035444e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.3748353713120164e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.9409279664290792e-05, -9.6423867751772224e-07, -3.4712592390637624e-05, -3.4712592390637624e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.4712592390637638e-05, -3.471259239063757e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.4463580162766105e-06, -7.7139094201417796e-06, -1.1570864130212884e-05, -1.1570864130212833e-05, -1.1570864130212843e-05, -1.1570864130212877e-05, -5.7854320651063571e-06, -5.7854320651063571e-06, -1.1570864130212711e-05, -1.1570864130212707e-05, -1.4463580162766028e-06, -1.4463580162766011e-06, -0.00029071796127159457, -0.00028927160325531545, -7.2317900813828689e-06, -1.4463580162766026e-06, -4.3390740488298394e-06, -1.4463580162765853e-05, -0.00011570864130212563, -2.8927160325532023e-06, -0.0001330649374974466, -1.4463580162765876e-06, -2.3141728260425689e-05, -2.3141728260425676e-05, -1.1570864130212704e-05, -1.1570864130212714e-05, -0.0001157086413021254, -0.0001157086413021254, -1.157086413021268e-05, -0.0003283232696947844, -2.892716032553223e-06, -0.00028927160325531573, -2.3141728260425703e-05, -1.1570864130212836e-05, -1.1570864130212884e-05, -1.4463580162765861e-06, -1.4463580162766033e-06, -1.1570864130212823e-05, -1.1570864130212813e-05, -2.892716032553223e-06, -2.892716032553223e-06, -1.4463580162765867e-06, -1.4463580162765965e-06, -1.1570864130212687e-05, -7.2317900813829358e-06, -4.3390740488298293e-06, -5.7854320651063571e-06, -5.7854320651063537e-06, -1.4463580162766026e-06, -2.1695370244148797e-05, -1.1570864130212768e-05, -1.1570864130212772e-05, -1.3017222146489201e-05, -1.1570864130212724e-05, -2.1695370244148848e-05, -2.8927160325532057e-06, -1.4463580162766088e-06, -1.1570864130212721e-05, -1.1570864130212718e-05, -1.4463580162766045e-06, -1.4463580162765992e-06, -1.1570864130212779e-05, -1.1570864130212765e-05, -2.8927160325531701e-06, -1.4463580162765939e-06, -1.1570864130212748e-05, -2.3141728260425371e-05, -1.4463580162765782e-05, -1.1570864130212813e-05, -2.3141728260425584e-05, -1.4463580162766045e-06, -1.1570864130212748e-05, -2.4588086276702273e-05, -1.1570864130212792e-05, -1.1570864130212765e-05, -2.3141728260425672e-05, -4.6283456520850722e-05, -3.6158950406914554e-05, -1.1570864130212707e-05, -2.3141728260425645e-05, -2.3141728260425632e-05, -5.7854320651064461e-06, -1.1570864130212765e-05, -1.4463580162765775e-05, -1.5909938179042235e-05, -5.7854320651064495e-06, -2.3141728260425727e-05, -1.1570864130212796e-05, -1.1570864130212796e-05, -1.1570864130212799e-05, -2.8927160325532332e-06, -1.1570864130212867e-05, -1.1570864130212707e-05, -1.4463580162766109e-06, -1.1570864130212704e-05, -2.8927160325532074e-06, -1.157086413021287e-05, -1.1570864130212819e-05, -1.1570864130212809e-05, -1.4463580162766041e-06, -2.3141728260425645e-05, -2.3141728260425659e-05, -1.4463580162766003e-06, -1.1570864130212789e-05, -1.1570864130212789e-05, -1.4463580162766014e-06, -1.157086413021288e-05, -1.1570864130212889e-05, -1.1570864130212765e-05, -1.1570864130212884e-05, 0.0058577499659202004, -1.1570864130212877e-05, -1.1570864130212755e-05, -1.1570864130212752e-05, -1.4463580162765956e-06, -1.1570864130212745e-05, -1.1570864130212755e-05, -2.3141728260425551e-05, -5.7854320651063537e-06, -2.6034444292978389e-05, -5.7854320651063571e-06, -1.4463580162766096e-06, -2.8927160325531955e-06, -1.8802654211595941e-05, -1.1570864130212809e-05, -2.3141728260425588e-05, -0.00012149407336723464, -1.1570864130212779e-05, -0.00012727950543233739, 0.0019525833219733973, -1.1570864130212765e-05, -2.3141728260425632e-05, -0.00011570864130212601, -2.3141728260425645e-05, -0.00011715499931840262, -1.4463580162765865e-06, -2.3141728260425659e-05, -2.3141728260425618e-05, -5.7854320651064317e-06, -0.00012149407336723464, -0.00011570864130212563, -0.00011570864130212565, -0.00011570864130212635, -1.4463580162766037e-06, -5.7854320651063368e-06, -1.4463580162765927e-06, -1.4463580162766071e-06, -1.4463580162766111e-06, -1.1570864130212819e-05, -1.1570864130212816e-05, -1.1570864130212816e-05, -1.1570864130212813e-05, -1.4463580162765931e-06, -1.4463580162765944e-06, -1.4463580162765927e-06, -1.1570864130212853e-05, -1.4463580162765921e-05, -2.8927160325531652e-05, -2.3141728260425825e-05, -2.3141728260425523e-05, -1.1570864130212857e-05, -3.4712592390638526e-05, -4.3390740488297166e-06, -0.00012727950543233818, -2.314172826042551e-05, -0.0001041377771719134, -1.4463580162766028e-06, -1.4463580162765978e-06, -3.615895040691454e-05, -2.3141728260425551e-05, -1.1570864130212768e-05, -1.0124506113936203e-05, -5.7854320651063419e-06, -2.8927160325532048e-06, -0.0001041377771719134, -2.8927160325532057e-06, -5.7854320651063571e-06, -5.7854320651063571e-06, -0.0001041377771719134, -1.1570864130212731e-05, -1.4463580162765969e-06, -1.1570864130212772e-05, -1.4463580162765927e-06, -1.1570864130212782e-05, -1.4463580162765863e-05, -4.3390740488298284e-06, -1.1570864130212775e-05, -2.1695370244148987e-05, -1.4463580162765863e-06, -1.1570864130212728e-05, -2.892716032553223e-06, -2.8927160325532222e-06, -2.8927160325532158e-06, -1.4463580162765994e-06, -8.6781480976595433e-06, -4.3390740488297479e-06, -1.1570864130212819e-05, -1.1570864130212833e-05, -2.3141728260425496e-05, -3.7605308423191436e-05, -3.3266234374361217e-05, -1.4463580162765863e-06, -2.3141728260425672e-05, -1.157086413021285e-05, -8.6781480976595196e-06, -2.8927160325531718e-06, -1.4463580162765944e-06, -1.4463580162766071e-06, -0.00011570864130212635, -0.00011570864130212565, -0.00023430999863680377, -0.00011570864130212563, -0.00011570864130212601, -5.7854320651064495e-06, -2.8927160325531836e-06, -1.1570864130212819e-05, -1.3017222146489235e-05, -5.7854320651064461e-06, -1.5909938179042245e-05, -1.4463580162766024e-06, -1.4463580162765876e-06, -2.3141728260425374e-05, -1.1570864130212728e-05, -1.1570864130212752e-05, -1.4463580162765978e-06, -1.4463580162766026e-06, -5.7854320651064012e-06, -5.7854320651064046e-06, -2.3141728260425659e-05, -1.1570864130212843e-05, -1.4463580162765906e-06, -0.00023430999863680621, -1.1570864130212826e-05, -1.1570864130212823e-05, -1.4463580162766003e-06, -5.7854320651064046e-06, -5.7854320651064012e-06, -2.8927160325531735e-06, -2.8927160325531735e-06, -4.3390740488298225e-06, -1.446358016276603e-06, -2.8927160325531735e-06, -2.8927160325531735e-06, -1.4463580162765944e-06, -1.4463580162766037e-06, -5.7854320651063622e-06, -1.7356296195319229e-05, -1.1570864130212728e-05, -1.4463580162765922e-06, -1.4463580162765876e-06, -2.603444429297842e-05, -1.446358016276599e-06, -5.7854320651063368e-06, -2.8927160325531709e-06, -2.3141728260425418e-05, -2.3141728260425432e-05, -7.2317900813828943e-06, -5.7854320651063902e-06, -2.8927160325531701e-06, -8.6781480976596213e-06, -0.00012294043138351017, -1.4463580162765965e-06, -5.7854320651063885e-06, -5.7854320651063919e-06, -2.3141728260425445e-05, -2.3141728260425405e-05, -5.7854320651063944e-06, -5.7854320651063724e-06, -5.7854320651063707e-06, -1.4463580162765927e-06, -6.653246874872265e-05, -1.4463580162765821e-05, -1.4463580162766045e-06, -1.1570864130212823e-05, -1.157086413021268e-05, -1.1570864130212826e-05, -2.3141728260425405e-05, -1.157086413021268e-05, -2.3141728260425445e-05, -1.157086413021268e-05, -1.157086413021268e-05, -0.00044403191099691598, -1.1570864130212853e-05, -0.00028927160325531583, -1.1570864130212745e-05, -2.8927160325532069e-06, -8.6781480976595244e-05, -1.7356296195319154e-05, -7.2317900813828892e-06, -8.6781480976595216e-05, -1.4463580162765889e-06, -1.1570864130212799e-05, -1.1570864130212796e-05, -0.00023430999863680621, -1.1570864130212724e-05, -1.1570864130212721e-05, -0.00033121598572733775, -4.3390740488298259e-06, -0.00028927160325531605, -1.1570864130212789e-05, -1.1570864130212789e-05, -1.4463580162765948e-06, -1.1570864130212792e-05, -1.1570864130212802e-05, -1.4463580162765914e-06, -2.3141728260425432e-05, -2.3141728260425418e-05, -2.8927160325532158e-06, -5.7854320651064012e-06, -5.7854320651064046e-06, -1.157086413021285e-05, -1.1570864130212846e-05, -0.00023430999863680377, -1.1570864130212833e-05, -1.1570864130212819e-05, -3.9051666439468223e-05, -0.00013885036956255372, -1.1570864130212796e-05, -0.00010269141915563754, 0.0019467978899082919, -1.735629619531888e-05, -1.1570864130212863e-05, -1.1570864130212889e-05, -1.4463580162765887e-05, -1.157086413021288e-05, -1.4463580162765809e-05, -3.0373518341808598e-05, -1.1570864130212752e-05, -7.2317900813829333e-06, -3.3266234374361637e-05, -1.1570864130212728e-05, -1.7356296195319141e-05, -4.3390740488297302e-06, -7.2317900813828842e-06, -2.8927160325532175e-06, -1.4463580162766037e-06, -1.4463580162765969e-06, -1.1570864130212884e-05, -1.735629619531929e-05, -8.6781480976595467e-06, -5.7854320651063656e-06, -1.157086413021284e-05, -1.157086413021268e-05, -1.157086413021268e-05, -2.3141728260425361e-05, -1.1570864130212704e-05, -5.7854320651063919e-06, -2.3141728260425374e-05, -1.1570864130212707e-05, -5.7854320651063885e-06, -1.157086413021268e-05, -1.4463580162765884e-06, -1.1570864130212718e-05, -1.1570864130212721e-05, -2.3141728260425659e-05, -3.471259239063858e-05, -1.1570864130212779e-05, -2.3141728260425703e-05, -2.3141728260425662e-05, -1.1570864130212707e-05, -1.1570864130212711e-05, -1.1570864130212728e-05, -1.1570864130212718e-05, -1.3017222146489171e-05, -4.917617255340475e-05, -2.8927160325532184e-06, -1.1570864130212877e-05, -1.1570864130212711e-05, 0.0019511369639571225, -3.760530842319128e-05, -1.1570864130212833e-05, -1.1570864130212772e-05, -1.1570864130212884e-05, -5.7854320651063902e-06, -5.7854320651063919e-06, -1.446358016276602e-06, -1.4463580162766111e-06, -1.4463580162766045e-06, -2.8927160325531997e-06, -2.4588086276702219e-05, -4.3390740488297479e-05, -1.7356296195319161e-05, -8.6781480976595433e-06, -1.4463580162765961e-06, -5.7854320651063868e-06, -2.314172826042551e-05, -3.4712592390638539e-05, -1.1570864130212874e-05, -5.7854320651063868e-06, -2.3141728260425537e-05, -2.3141728260425523e-05, -5.7854320651063868e-06, -1.7356296195319236e-05, -1.1570864130212724e-05, -1.4463580162766088e-06, -2.8927160325532442e-06, -5.7854320651063868e-06, -5.7854320651063944e-06, -1.3017222146489183e-05, -7.231790081382918e-06, -1.1570864130212819e-05, -2.3141728260425371e-05, -0.00010413777717191353, -5.7854320651064317e-06, -1.4463580162765931e-06, -8.6781480976595244e-05, -1.1570864130212752e-05, -6.9425184781275886e-05, -6.942518478127716e-05, -7.231790081382908e-05, -6.9425184781275886e-05, -5.7854320651064317e-06, -5.78543206510643e-06, -1.1570864130212768e-05, -1.1570864130212758e-05, -5.7854320651063775e-06, -5.7854320651063775e-06, -1.157086413021287e-05, -1.4463580162766079e-06, -1.1570864130212867e-05, -1.4463580162765952e-06, -1.4463580162766016e-06, -0.0001012450611393616, -5.7854320651063775e-06, -5.7854320651063775e-06, -8.8227838992871306e-05, -2.8927160325532116e-06, -0.0001041377771719134, -0.0001041377771719134, -1.1570864130212748e-05, -1.4463580162765931e-06, -1.1570864130212758e-05, -0.0001041377771719134, -0.00010413777717191337, -1.1570864130212752e-05, -1.1570864130212741e-05, -2.892716032553182e-06, -2.8927160325532057e-06, -2.3141728260425388e-05, -1.1570864130212745e-05, -1.1570864130212748e-05, -4.3390740488298089e-06, -2.3141728260425388e-05, -3.8569547100708881e-06, -3.8569547100708881e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -9.6905987090532353e-05, -9.6423867751772695e-05, -2.4105966937943255e-06, -4.8211933875886112e-07, -1.446358016276609e-06, -4.8211933875886798e-06, -3.856954710070956e-05, -9.6423867751772224e-07, -4.435497916581513e-05, -4.8211933875886122e-07, -7.7139094201417762e-06, -7.7139094201417745e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.856954710070956e-05, -3.856954710070956e-05, -3.8569547100708881e-06, -0.00010944108989826061, -9.6423867751772202e-07, -9.6423867751773969e-05, -7.7139094201417762e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -4.8211933875886112e-07, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708881e-06, -2.4105966937943255e-06, -1.44635801627661e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886112e-07, -7.2317900813830595e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.339074048829698e-06, -3.8569547100708898e-06, -7.2317900813830358e-06, -9.6423867751772202e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772202e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886705e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -8.1960287589005691e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -1.5427818840283549e-05, -1.2052983468971614e-05, -3.8569547100708889e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -1.9284773550354487e-06, -3.8569547100708898e-06, -4.8211933875886722e-06, -5.3033127263474693e-06, -1.9284773550354487e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772245e-07, -3.8569547100708881e-06, -3.8569547100708889e-06, -4.8211933875886091e-07, -3.8569547100708889e-06, -9.6423867751772245e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -4.8211933875886112e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -4.8211933875886112e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -1.1570864130212877e-05, 0.001960297231393539, -3.8569547100708898e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -8.6781480976593756e-06, -1.9284773550354449e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -6.2675514038652644e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.0498024455744671e-05, -3.8569547100708889e-06, -4.2426501810779578e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -3.856954710070931e-05, -7.7139094201417762e-06, -3.9051666439468263e-05, -4.8211933875886112e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -1.928477355035444e-06, -4.0498024455744657e-05, -3.856954710070956e-05, -3.8569547100709282e-05, -3.8569547100709384e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886493e-06, -9.6423867751773528e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708898e-06, -1.1570864130212882e-05, -1.446358016276631e-06, -4.2426501810779911e-05, -7.7139094201417779e-06, -3.4712592390637638e-05, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971655e-05, -7.7139094201417796e-06, -3.8569547100708889e-06, -3.3748353713120922e-06, -1.928477355035444e-06, -9.6423867751772202e-07, -3.4712592390637624e-05, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.4712592390637624e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886493e-06, -1.44635801627661e-06, -3.8569547100708898e-06, -7.2317900813830121e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.8927160325532366e-06, -1.446358016276628e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -7.7139094201417779e-06, -1.2535102807730495e-05, -1.1088744791453784e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -3.8569547100708889e-06, -2.8927160325532425e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100709384e-05, -3.8569547100709282e-05, -7.8103332878936784e-05, -3.8569547100709282e-05, -3.856954710070931e-05, -1.9284773550354487e-06, -9.6423867751772224e-07, -3.8569547100708881e-06, -4.3390740488296709e-06, -1.9284773550354487e-06, -5.3033127263474702e-06, -4.8211933875886112e-07, -4.8211933875886122e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -7.7139094201417762e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -7.8103332878936595e-05, -3.8569547100708881e-06, -3.8569547100708881e-06, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.44635801627661e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651064418e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -8.6781480976593959e-06, -4.8211933875886112e-07, -1.9284773550354428e-06, -9.6423867751772224e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -2.4105966937943361e-06, -1.9284773550354445e-06, -9.6423867751772224e-07, -2.8927160325532192e-06, -4.0980143794503334e-05, -4.8211933875886122e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -2.2177489582907467e-05, -4.821193387588651e-06, -4.8211933875886122e-07, -3.8569547100708881e-06, -3.8569547100708873e-06, -3.8569547100708881e-06, -7.7139094201417779e-06, -3.8569547100708873e-06, -7.7139094201417779e-06, -3.8569547100708873e-06, -3.8569547100708873e-06, -0.0001480106369989736, -3.8569547100708889e-06, -9.6423867751773291e-05, -3.8569547100708898e-06, -9.6423867751772202e-07, -2.8927160325531869e-05, -5.7854320651063927e-06, -2.4105966937943323e-06, -2.8927160325532197e-05, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.8103332878936595e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00011040532857577855, -1.4463580162766096e-06, -9.6423867751773372e-05, -3.8569547100708889e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772202e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.8103332878936784e-05, -3.8569547100708881e-06, -3.8569547100708881e-06, -1.3017222146489545e-05, -4.6283456520851521e-05, -3.8569547100708898e-06, -3.4230473051878596e-05, -5.7854320651064368e-06, -5.7854320651064368e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -4.8211933875886493e-06, -3.8569547100708881e-06, -4.8211933875886798e-06, -1.0124506113936161e-05, -3.8569547100708898e-06, -2.4105966937943246e-06, -1.108874479145373e-05, -3.8569547100708889e-06, -5.7854320651063859e-06, -1.4463580162765736e-06, -2.4105966937943323e-06, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708881e-06, -5.7854320651064384e-06, -2.8927160325532417e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -3.8569547100708873e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354445e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354445e-06, -3.8569547100708873e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -1.1570864130212877e-05, -3.8569547100708898e-06, -7.7139094201417762e-06, -7.7139094201417745e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.3390740488297014e-06, -1.6392057517801233e-05, -9.6423867751772181e-07, 0.001960297231393539, -3.8569547100708898e-06, -4.3390740488298564e-06, -1.2535102807730505e-05, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886112e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -8.19602875890052e-06, -1.4463580162765934e-05, -5.785432065106413e-06, -2.8927160325532366e-06, -4.8211933875886122e-07, -1.9284773550354445e-06, -7.7139094201417779e-06, -1.1570864130212882e-05, -3.856954710070894e-06, -1.9284773550354445e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -1.9284773550354445e-06, -5.7854320651064384e-06, -3.8569547100708889e-06, -4.8211933875886101e-07, -9.6423867751772202e-07, -1.9284773550354445e-06, -1.9284773550354449e-06, -4.3390740488296929e-06, -2.410596693794339e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.4712592390637584e-05, -1.928477355035444e-06, -4.8211933875886122e-07, -2.8927160325531869e-05, -3.8569547100708889e-06, -2.3141728260426103e-05, -2.3141728260425754e-05, -2.4105966937943224e-05, -2.3141728260426103e-05, -1.928477355035444e-06, -1.928477355035444e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -4.8211933875886101e-07, -3.8569547100708881e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.3748353713120123e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.9409279664290779e-05, -9.6423867751772202e-07, -3.4712592390637624e-05, -3.4712592390637624e-05, -3.8569547100708889e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.4712592390637638e-05, -3.471259239063757e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.4463580162766075e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6905987090531648e-05, -9.6423867751771922e-05, -2.4105966937943102e-06, -4.8211933875886133e-07, -1.4463580162765916e-06, -4.8211933875886493e-06, -3.8569547100709316e-05, -9.6423867751772266e-07, -4.4354979165815557e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100709316e-05, -3.8569547100709316e-05, -3.8569547100708898e-06, -0.00010944108989826145, -9.6423867751772245e-07, -9.642386775177321e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708889e-06, -2.4105966937943102e-06, -1.4463580162765927e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813830053e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297564e-06, -3.8569547100708915e-06, -7.231790081382979e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.713909420141783e-06, -4.82119338758864e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -8.1960287589006284e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.2052983468971521e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.8211933875886417e-06, -5.3033127263474693e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212755e-05, -3.8569547100708898e-06, 0.0019602972313935386, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594925e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652526e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.049802445574463e-05, -3.8569547100708906e-06, -4.2426501810779728e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709066e-05, -7.7139094201417796e-06, -3.9051666439468074e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.049802445574463e-05, -3.8569547100709316e-05, -3.8569547100709039e-05, -3.856954710070914e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886391e-06, -9.6423867751772918e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -1.1570864130212743e-05, -1.4463580162766141e-06, -4.242650181078006e-05, -7.7139094201417813e-06, -3.4712592390638106e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971561e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120613e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390638106e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390638092e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886188e-06, -1.4463580162765927e-06, -3.8569547100708915e-06, -7.231790081382957e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325532006e-06, -1.4463580162766105e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730468e-05, -1.1088744791453894e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532074e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.856954710070914e-05, -3.8569547100709039e-05, -7.8103332878936391e-05, -3.8569547100709039e-05, -3.8569547100709066e-05, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297285e-06, -1.9284773550354449e-06, -5.3033127263474871e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936215e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162765927e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -5.7854320651063707e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976595128e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943208e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -2.8927160325531845e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.217748958290767e-05, -4.8211933875886197e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897171, -3.8569547100708906e-06, -9.6423867751772518e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -2.8927160325531652e-05, 0.001958368754038502, -2.410596693794317e-06, -2.892716032553197e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936215e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577947, -1.4463580162765944e-06, -9.64238677517726e-05, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936391e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489322e-05, -4.6283456520850952e-05, -3.8569547100708915e-06, -3.4230473051879023e-05, -5.7854320651063673e-06, -5.7854320651063673e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886425e-06, -3.8569547100708898e-06, -4.8211933875886493e-06, -1.0124506113936151e-05, -3.8569547100708915e-06, -2.4105966937943179e-06, -1.1088744791453838e-05, -3.8569547100708906e-06, -5.7854320651063334e-06, -1.4463580162765897e-06, -2.410596693794317e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063707e-06, -2.8927160325532057e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.1570864130212762e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297581e-06, -1.6392057517801321e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488297835e-06, -1.2535102807730481e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -8.1960287589005793e-06, -1.4463580162765826e-05, -5.7854320651063436e-06, -2.8927160325532006e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417813e-06, -1.157086413021276e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651063825e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.3390740488297513e-06, -2.4105966937943238e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.4712592390638065e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531645e-05, -3.8569547100708906e-06, -2.3141728260425825e-05, -2.3141728260425476e-05, -2.4105966937943031e-05, -2.3141728260425825e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.3748353713120462e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.9409279664290616e-05, -9.6423867751772245e-07, -3.4712592390638092e-05, -3.4712592390638106e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390638106e-05, -3.4712592390638038e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765922e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6905987090531784e-05, -9.6423867751772044e-05, -2.4105966937943102e-06, -4.8211933875886133e-07, -1.4463580162765961e-06, -4.8211933875886493e-06, -3.8569547100709316e-05, -9.6423867751772266e-07, -4.4354979165815482e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100709316e-05, -3.856954710070931e-05, -3.8569547100708898e-06, -0.00010944108989826133, -9.6423867751772224e-07, -9.6423867751773332e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.4105966937943094e-06, -1.4463580162765969e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813830087e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297285e-06, -3.8569547100708906e-06, -7.2317900813829875e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886408e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886122e-07, -3.8569547100708915e-06, -8.1960287589006166e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971533e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -4.8211933875886425e-06, -5.3033127263474626e-06, -1.9284773550354445e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.8211933875886112e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212752e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, 0.0019602972313935386, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594739e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652534e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -4.0498024455744657e-05, -3.8569547100708906e-06, -4.2426501810779734e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709093e-05, -7.7139094201417796e-06, -3.9051666439468101e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.0498024455744657e-05, -3.8569547100709316e-05, -3.8569547100709066e-05, -3.8569547100709167e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886578e-06, -9.6423867751772918e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -1.1570864130212763e-05, -1.4463580162766164e-06, -4.2426501810780019e-05, -7.7139094201417813e-06, -3.4712592390637916e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971575e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120401e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390637895e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390637895e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886374e-06, -1.4463580162765952e-06, -3.8569547100708906e-06, -7.2317900813829621e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325532061e-06, -1.4463580162766132e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730471e-05, -1.1088744791453876e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532124e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709167e-05, -3.8569547100709066e-05, -7.8103332878936418e-05, -3.8569547100709066e-05, -3.8569547100709093e-05, -1.9284773550354445e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.33907404882972e-06, -1.9284773550354445e-06, -5.3033127263474905e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936256e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4463580162765876e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651063842e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -8.6781480976594925e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -7.713909420141783e-06, -7.713909420141783e-06, -2.4105966937943111e-06, -1.9284773550354457e-06, -9.6423867751772245e-07, -2.8927160325531896e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886144e-07, -2.2177489582907663e-05, -4.8211933875886197e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.000148010636998972, -3.8569547100708906e-06, -9.642386775177264e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.8927160325531659e-05, -5.7854320651063825e-06, -2.4105966937943174e-06, -2.8927160325531987e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936256e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -0.00011040532857577931, -1.4463580162765944e-06, -9.6423867751772749e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936418e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489225e-05, -4.628345652085106e-05, -3.8569547100708906e-06, -3.4230473051878962e-05, -5.7854320651063775e-06, -5.7854320651063775e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886603e-06, -3.8569547100708898e-06, -4.8211933875886527e-06, -1.0124506113936161e-05, -3.8569547100708906e-06, -2.4105966937943272e-06, -1.1088744791453828e-05, -3.8569547100708915e-06, -5.7854320651063825e-06, -1.4463580162766136e-06, -2.410596693794317e-06, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.78543206510638e-06, -2.8927160325532112e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354457e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.1570864130212758e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.3390740488297496e-06, -1.6392057517801335e-05, -9.6423867751772224e-07, -3.8569547100708889e-06, -3.8569547100708915e-06, -4.3390740488297496e-06, -1.2535102807730483e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -8.1960287589005691e-06, -1.4463580162765846e-05, -5.7854320651063825e-06, -2.8927160325532061e-06, -4.8211933875886144e-07, -1.9284773550354457e-06, -7.7139094201417813e-06, -1.1570864130212758e-05, -3.8569547100708889e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -5.785432065106341e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354453e-06, -4.3390740488297429e-06, -2.4105966937943238e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -3.4712592390637984e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531659e-05, 0.0019602972313935386, -2.3141728260425866e-05, -2.314172826042549e-05, -2.4105966937943042e-05, -2.3141728260425866e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.3748353713120462e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.9409279664290609e-05, -9.6423867751772245e-07, -3.4712592390637895e-05, -3.4712592390637895e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.4712592390637916e-05, -3.4712592390637916e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.446358016276595e-06, -7.713909420141783e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -1.2113248386316483e-05, -1.2052983468971521e-05, -3.0132458672428899e-07, -6.0264917344857666e-08, -1.8079475203457448e-07, -6.026491734485818e-07, -4.8211933875886476e-06, -1.2052983468971533e-07, -5.5443723957269149e-06, -6.0264917344857679e-08, -9.6423867751772245e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886493e-06, -4.8211933875886493e-06, -4.8211933875886122e-07, -1.3680136237282651e-05, -1.2052983468971531e-07, -1.2052983468971678e-05, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886112e-07, -3.0132458672428899e-07, -1.8079475203457461e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857666e-08, -9.0397376017287778e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610371521e-07, -4.8211933875886144e-07, -9.0397376017287481e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344858063e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -1.0245035948625762e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.9284773550354445e-06, -1.5066229336214439e-06, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -6.0264917344858084e-07, -6.6291409079343218e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.026491734485764e-08, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857666e-08, -4.8211933875886144e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.4463580162765956e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, 0.00024545900834560639, -4.8211933875886144e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.0847685122074325e-06, -2.4105966937943072e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -7.8344392548315657e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -5.0622530569680754e-06, -4.8211933875886133e-07, -5.3033127263474744e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -4.8211933875886383e-06, -9.6423867751772245e-07, -4.8814583049335126e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -5.0622530569680737e-06, -4.8211933875886476e-06, -4.8211933875886349e-06, -4.8211933875886476e-06, -6.0264917344857653e-08, -2.4105966937943061e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -6.0264917344858264e-07, -1.2052983468971627e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -4.8211933875886122e-07, -1.4463580162765971e-06, -1.8079475203457729e-07, -5.3033127263475049e-06, -9.6423867751772266e-07, -4.3390740488297479e-06, -6.0264917344857666e-08, -6.0264917344857679e-08, -1.5066229336214492e-06, -9.6423867751772287e-07, -4.8211933875886133e-07, -4.218544214140047e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -4.3390740488297463e-06, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297463e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344858032e-07, -1.8079475203457461e-07, -4.8211933875886144e-07, -9.0397376017287174e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -3.6158950406915113e-07, -1.8079475203457686e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -1.5668878509663093e-06, -1.3860930989317328e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -3.6158950406915198e-07, -1.2052983468971533e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886476e-06, -4.8211933875886349e-06, -9.7629166098670523e-06, -4.8211933875886349e-06, -4.8211933875886383e-06, -2.4105966937943061e-07, -1.2052983468971533e-07, -4.8211933875886112e-07, -5.4238425610371415e-07, -2.4105966937943061e-07, -6.6291409079343589e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.762916609867032e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.8079475203457461e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -2.4105966937943056e-07, -7.2317900813829295e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.0847685122074349e-06, -6.0264917344857666e-08, -2.4105966937943051e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.0132458672429037e-07, -2.4105966937943066e-07, -1.2052983468971531e-07, -3.6158950406914552e-07, -5.1225179743129099e-06, -6.0264917344857679e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, 0.00024274708706508794, -6.0264917344857799e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -4.8211933875886112e-07, -9.6423867751772266e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.8501329624871517e-05, -4.8211933875886133e-07, -1.2052983468971597e-05, -4.8211933875886144e-07, -1.2052983468971531e-07, -3.6158950406914633e-06, -7.2317900813829824e-07, -3.0132458672428899e-07, -3.6158950406915043e-06, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.762916609867032e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.3800666071972403e-05, -1.8079475203457451e-07, -1.2052983468971607e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670523e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.6271527683111536e-06, -5.785432065106391e-06, -4.8211933875886144e-07, -4.2788091314848626e-06, -7.2317900813829803e-07, -7.2317900813829803e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344858307e-07, -4.8211933875886122e-07, -6.026491734485818e-07, -1.2655632642420193e-06, -4.8211933875886144e-07, -3.0132458672429122e-07, -1.3860930989317264e-06, -4.8211933875886133e-07, -7.2317900813829824e-07, -1.8079475203457692e-07, -3.0132458672428899e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -7.2317900813829845e-07, -3.6158950406915177e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943066e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943066e-07, -4.8211933875886112e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.4463580162765965e-06, -4.8211933875886144e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610371786e-07, -2.0490071897251652e-06, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -5.4238425610371786e-07, -1.5668878509663102e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -6.0264917344857653e-08, -1.2052983468971536e-07, -1.0245035948625703e-06, -1.8079475203457337e-06, -7.2317900813829867e-07, -3.6158950406915113e-07, -6.0264917344857679e-08, -2.4105966937943066e-07, -9.6423867751772266e-07, -1.4463580162765963e-06, -4.8211933875886122e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -7.2317900813829856e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943072e-07, -5.423842561037169e-07, -3.0132458672429069e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.3390740488297412e-06, -2.4105966937943061e-07, -6.0264917344857679e-08, -3.6158950406914633e-06, -4.8211933875886133e-07, -2.8927160325532366e-06, -2.892716032553193e-06, -3.0132458672428874e-06, -2.8927160325532366e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.2185442141400476e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -3.6761599580363321e-06, -1.2052983468971531e-07, -4.3390740488297463e-06, -4.3390740488297463e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.3390740488297479e-06, -4.3390740488297395e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971536e-07, -1.2052983468971531e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.8079475203457461e-07, -9.6423867751772287e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6905987090531784e-05, -9.642386775177203e-05, -2.4105966937943086e-06, -4.8211933875886133e-07, -1.4463580162765929e-06, -4.8211933875886476e-06, -3.8569547100709289e-05, -9.6423867751772266e-07, -4.4354979165815482e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100709289e-05, -3.8569547100709289e-05, -3.8569547100708898e-06, -0.00010944108989826135, -9.6423867751772245e-07, -9.6423867751773318e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708889e-06, -2.4105966937943086e-06, -1.4463580162765939e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813830121e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297496e-06, -3.8569547100708915e-06, -7.2317900813829858e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886374e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -8.1960287589006216e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.2052983468971534e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.8211933875886391e-06, -5.3033127263474693e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212745e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, 0.0019602972313935386, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.678148097659479e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652492e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.049802445574463e-05, -3.8569547100708906e-06, -4.2426501810779741e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709052e-05, -7.7139094201417796e-06, -3.905166643946806e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.049802445574463e-05, -3.8569547100709289e-05, -3.8569547100709018e-05, -3.856954710070912e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886391e-06, -9.6423867751772884e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -1.1570864130212753e-05, -1.4463580162766149e-06, -4.2426501810780073e-05, -7.7139094201417813e-06, -3.4712592390638051e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971575e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120681e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390638051e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390638038e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886188e-06, -1.4463580162765939e-06, -3.8569547100708915e-06, -7.2317900813829638e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.892716032553204e-06, -1.4463580162766119e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730464e-05, -1.1088744791453876e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532099e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.856954710070912e-05, -3.8569547100709018e-05, -7.8103332878936364e-05, -3.8569547100709018e-05, -3.8569547100709052e-05, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297217e-06, -1.9284773550354449e-06, -5.3033127263474888e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936188e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162765939e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -5.7854320651063775e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976594993e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943196e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -2.892716032553187e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.2177489582907643e-05, -4.8211933875886171e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897192, -3.8569547100708906e-06, -9.6423867751772627e-05, 0.0019602972313935386, -9.6423867751772245e-07, -2.8927160325531679e-05, -5.7854320651063317e-06, -2.4105966937943162e-06, -2.8927160325532001e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936188e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577936, -1.4463580162765931e-06, -9.6423867751772722e-05, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936364e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489342e-05, -4.6283456520851006e-05, -3.8569547100708915e-06, -3.4230473051878975e-05, -5.7854320651063724e-06, -5.7854320651063724e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886425e-06, -3.8569547100708898e-06, -4.8211933875886459e-06, -1.0124506113936151e-05, -3.8569547100708915e-06, -2.4105966937943179e-06, -1.1088744791453825e-05, -3.8569547100708906e-06, -5.7854320651063249e-06, -1.4463580162765922e-06, -2.4105966937943153e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063741e-06, -2.8927160325532091e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.1570864130212748e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.339074048829753e-06, -1.6392057517801328e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488297988e-06, -1.2535102807730478e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -8.1960287589005725e-06, -1.4463580162765839e-05, -5.7854320651063487e-06, -2.892716032553204e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417813e-06, -1.157086413021275e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651063775e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.3390740488297446e-06, -2.4105966937943221e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.4712592390638011e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531672e-05, -3.8569547100708906e-06, -2.3141728260425845e-05, -2.3141728260425496e-05, -2.4105966937943058e-05, -2.3141728260425845e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.3748353713120435e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.9409279664290643e-05, -9.6423867751772245e-07, -3.4712592390638038e-05, -3.4712592390638051e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390638051e-05, -3.4712592390637984e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.446358016276591e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6905987090531811e-05, -9.6423867751772085e-05, -2.4105966937943094e-06, -4.8211933875886133e-07, -1.4463580162765956e-06, -4.8211933875886493e-06, -3.8569547100709303e-05, -9.6423867751772266e-07, -4.4354979165815469e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.856954710070931e-05, -3.8569547100709303e-05, -3.8569547100708898e-06, -0.0001094410898982613, -9.6423867751772224e-07, -9.6423867751773372e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.4105966937943094e-06, -1.4463580162765965e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813830121e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297251e-06, -3.8569547100708906e-06, -7.2317900813829909e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886391e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886122e-07, -3.8569547100708915e-06, -8.1960287589006132e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971538e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -4.8211933875886408e-06, -5.3033127263474626e-06, -1.9284773550354445e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.8211933875886112e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212755e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, 0.0019602972313935386, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594671e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652526e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -4.0498024455744657e-05, -3.8569547100708906e-06, -4.2426501810779734e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709093e-05, -7.7139094201417796e-06, -3.9051666439468101e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.0498024455744657e-05, -3.8569547100709303e-05, -3.8569547100709059e-05, -3.856954710070916e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886561e-06, -9.6423867751772884e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -1.1570864130212767e-05, -1.4463580162766168e-06, -4.2426501810780033e-05, -7.7139094201417813e-06, -3.4712592390637929e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971582e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120393e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390637916e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390637916e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886374e-06, -1.4463580162765956e-06, -3.8569547100708906e-06, -7.2317900813829638e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325532069e-06, -1.4463580162766136e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.253510280773047e-05, -1.1088744791453872e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532133e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.856954710070916e-05, -3.8569547100709059e-05, -7.8103332878936418e-05, -3.8569547100709059e-05, -3.8569547100709093e-05, -1.9284773550354445e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297166e-06, -1.9284773550354445e-06, -5.3033127263474905e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936256e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.446358016276588e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651063859e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -8.6781480976594891e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -7.713909420141783e-06, -7.713909420141783e-06, -2.4105966937943111e-06, -1.9284773550354457e-06, -9.6423867751772245e-07, -2.8927160325531904e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886144e-07, -2.217748958290765e-05, -4.8211933875886188e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00014801063699897208, -3.8569547100708906e-06, -9.6423867751772695e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.8927160325531672e-05, -5.7854320651063842e-06, -2.410596693794317e-06, -2.8927160325531994e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936256e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -0.00011040532857577928, -1.4463580162765948e-06, -9.6423867751772789e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936418e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489229e-05, -4.6283456520851074e-05, -3.8569547100708906e-06, -3.4230473051878948e-05, -5.7854320651063792e-06, -5.7854320651063792e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886595e-06, -3.8569547100708898e-06, -4.821193387588651e-06, -1.0124506113936161e-05, -3.8569547100708906e-06, -2.4105966937943268e-06, -1.1088744791453825e-05, -3.8569547100708915e-06, -5.7854320651063842e-06, -1.4463580162766141e-06, -2.4105966937943166e-06, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063817e-06, -2.892716032553212e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354457e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.1570864130212762e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.3390740488297463e-06, -1.6392057517801328e-05, -9.6423867751772224e-07, -3.8569547100708889e-06, -3.8569547100708915e-06, -4.3390740488297463e-06, -1.2535102807730481e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -8.1960287589005657e-06, -1.4463580162765853e-05, -5.7854320651063842e-06, -2.8927160325532069e-06, -4.8211933875886144e-07, -1.9284773550354457e-06, -7.7139094201417813e-06, -1.1570864130212762e-05, -3.8569547100708889e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -5.7854320651063427e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354453e-06, -4.3390740488297395e-06, -2.410596693794323e-06, -3.8569547100708906e-06, 0.0019564402766834681, -3.471259239063797e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531665e-05, -3.8569547100708915e-06, -2.3141728260425872e-05, -2.3141728260425496e-05, -2.4105966937943048e-05, -2.3141728260425872e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.3748353713120449e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.9409279664290623e-05, -9.6423867751772245e-07, -3.4712592390637916e-05, -3.4712592390637916e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.4712592390637929e-05, -3.4712592390637895e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765954e-06, -7.713909420141783e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772266e-07, -9.6423867751772287e-07, -0.00019381197418106373, -0.00019284773550354422, -4.8211933875886307e-06, -9.6423867751772266e-07, -2.8927160325531938e-06, -9.6423867751773223e-06, -7.7139094201418795e-05, -1.9284773550354457e-06, -8.8709958331630856e-05, -9.6423867751772287e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -7.713909420141783e-06, -7.713909420141783e-06, -7.7139094201418795e-05, -7.7139094201418795e-05, -7.7139094201417796e-06, -0.0002188821797965222, -1.9284773550354449e-06, -0.0001928477355035468, -1.5427818840283559e-05, -7.7139094201417813e-06, -7.7139094201417796e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.713909420141783e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -7.7139094201417762e-06, -4.8211933875886307e-06, -2.8927160325531955e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -1.4463580162766051e-05, -7.713909420141783e-06, -7.713909420141783e-06, -8.67814809765944e-06, -7.713909420141783e-06, -1.4463580162766004e-05, -1.9284773550354453e-06, -9.6423867751772245e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772266e-07, -9.6423867751772287e-07, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -1.5427818840283566e-05, -9.642386775177302e-06, -7.713909420141783e-06, -1.5427818840283566e-05, -9.6423867751772266e-07, -7.713909420141783e-06, -1.6392057517801209e-05, -7.7139094201417813e-06, -7.713909420141783e-06, -1.5427818840283563e-05, -3.0855637680567112e-05, -2.4105966937943089e-05, -7.713909420141783e-06, -1.5427818840283563e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -7.713909420141783e-06, -9.6423867751773054e-06, -1.0606625452694912e-05, -3.8569547100708898e-06, -1.5427818840283559e-05, -7.713909420141783e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -7.713909420141783e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -9.6423867751772266e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772266e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -7.7139094201417796e-06, -2.3141728260425551e-05, -7.7139094201417796e-06, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -7.713909420141783e-06, 0.0039128805533669361, -3.8569547100708915e-06, -1.7356296195319195e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.2535102807730302e-05, -7.713909420141783e-06, -1.5427818840283566e-05, -8.0996048911489261e-05, -7.713909420141783e-06, -8.4853003621559347e-05, -7.713909420141783e-06, -7.713909420141783e-06, -1.5427818840283559e-05, -7.7139094201418307e-05, -1.5427818840283563e-05, -7.8103332878936256e-05, -9.6423867751772287e-07, -1.5427818840283563e-05, -1.5427818840283559e-05, -3.8569547100708906e-06, -8.0996048911489261e-05, -7.7139094201418795e-05, -7.713909420141824e-05, -7.7139094201418443e-05, -9.6423867751772266e-07, -3.8569547100708898e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -7.713909420141783e-06, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -7.7139094201417813e-06, -9.6423867751773359e-06, -1.9284773550354624e-05, -1.5427818840283559e-05, -1.5427818840283566e-05, -7.7139094201417813e-06, -2.3141728260425571e-05, -2.8927160325532383e-06, -8.4853003621560024e-05, -1.5427818840283563e-05, -6.942518478127594e-05, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937942892e-05, 0.0039128805533669361, -7.713909420141783e-06, -6.7496707426240768e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -6.9425184781275913e-05, -1.9284773550354453e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -6.9425184781275913e-05, -7.713909420141783e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -9.6423867751772986e-06, -2.8927160325531955e-06, -7.713909420141783e-06, -1.4463580162765958e-05, -9.6423867751772287e-07, -7.713909420141783e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -5.7854320651064232e-06, -2.8927160325532319e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.5427818840283563e-05, -2.5070205615460553e-05, -2.2177489582907717e-05, -9.6423867751772287e-07, -1.5427818840283563e-05, -7.7139094201417813e-06, -5.7854320651064351e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.7139094201418443e-05, -7.713909420141824e-05, -0.000156206665757873, -7.713909420141824e-05, -7.7139094201418307e-05, -3.8569547100708898e-06, -1.9284773550354457e-06, -7.7139094201417779e-06, -8.678148097659423e-06, -3.8569547100708898e-06, -1.0606625452694967e-05, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.5427818840283566e-05, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.5427818840283559e-05, -7.7139094201417813e-06, -9.6423867751772287e-07, -0.00015620666575787265, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.8927160325531955e-06, -9.6423867751772266e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -3.8569547100708898e-06, -1.1570864130212792e-05, -7.713909420141783e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.7356296195318958e-05, -9.6423867751772287e-07, -3.8569547100708881e-06, -1.9284773550354457e-06, -1.5427818840283566e-05, -1.5427818840283566e-05, -4.8211933875886518e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -5.7854320651063927e-06, -8.1960287589006667e-05, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.5427818840283566e-05, -1.5427818840283566e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -4.4354979165815286e-05, -9.6423867751772613e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -1.5427818840283566e-05, -7.7139094201417796e-06, -1.5427818840283566e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00029602127399794466, -7.7139094201417813e-06, -0.0001928477355035455, -7.713909420141783e-06, -1.9284773550354453e-06, -5.785432065106348e-05, -1.1570864130212789e-05, -4.8211933875886459e-06, -5.7854320651064124e-05, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -0.00015620666575787265, -7.713909420141783e-06, -7.713909420141783e-06, -0.00022081065715155867, -2.8927160325531938e-06, -0.00019284773550354561, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -1.5427818840283566e-05, -1.5427818840283566e-05, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -0.000156206665757873, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.603444429297845e-05, -9.2566913041702283e-05, -7.713909420141783e-06, -6.8460946103757788e-05, -1.1570864130212796e-05, -1.1570864130212796e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751773426e-06, -7.7139094201417796e-06, -9.6423867751773189e-06, -2.0249012227872295e-05, -7.713909420141783e-06, -4.8211933875886645e-06, -2.2177489582907622e-05, -7.713909420141783e-06, -1.1570864130212789e-05, -2.8927160325532332e-06, -4.8211933875886442e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772287e-07, -7.7139094201417796e-06, -1.1570864130212619e-05, -5.785432065106308e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -7.713909420141783e-06, -3.8569547100708915e-06, -1.5427818840283559e-05, -7.713909420141783e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -7.713909420141783e-06, -1.5427818840283559e-05, -2.3141728260425564e-05, -7.713909420141783e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -7.713909420141783e-06, -7.713909420141783e-06, -7.713909420141783e-06, -7.713909420141783e-06, -8.6781480976596043e-06, -3.2784115035602534e-05, -1.9284773550354445e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -8.6781480976594823e-06, -2.507020561546097e-05, -7.7139094201417813e-06, -7.713909420141783e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -9.6423867751772266e-07, -1.9284773550354457e-06, -1.6392057517801111e-05, -2.8927160325531753e-05, -1.1570864130212789e-05, -5.7854320651064232e-06, -9.6423867751772287e-07, -3.8569547100708915e-06, -1.5427818840283563e-05, -2.3141728260425561e-05, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.5427818840283566e-05, -1.5427818840283566e-05, -3.8569547100708915e-06, -1.1570864130212785e-05, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -8.6781480976595908e-06, -4.8211933875886595e-06, -7.7139094201417813e-06, -1.5427818840283566e-05, -6.9425184781275764e-05, -3.8569547100708906e-06, -9.6423867751772287e-07, -5.7854320651063466e-05, -7.713909420141783e-06, -4.6283456520851819e-05, -4.6283456520851128e-05, -4.8211933875886178e-05, -4.6283456520851819e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -6.7496707426240762e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -5.881855932858134e-05, -1.9284773550354453e-06, -6.9425184781275913e-05, -6.9425184781275913e-05, -7.713909420141783e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -6.942518478127594e-05, -6.9425184781275791e-05, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, -1.5427818840283566e-05, -7.713909420141783e-06, -7.713909420141783e-06, -2.8927160325531955e-06, -1.5427818840283566e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -2.4105966937943072e-07, -4.8452993545265811e-05, -4.821193387588592e-05, -1.2052983468971534e-06, -2.4105966937943066e-07, -7.2317900813829443e-07, -2.4105966937943221e-06, -1.9284773550354631e-05, -4.8211933875886144e-07, -2.2177489582907799e-05, -2.4105966937943072e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354631e-05, -1.9284773550354631e-05, -1.9284773550354449e-06, -5.4720544949130727e-05, -4.8211933875886122e-07, -4.8211933875886564e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.928477355035444e-06, -1.2052983468971534e-06, -7.2317900813829485e-07, -9.6423867751772287e-07, 0.00098111285437428629, -2.4105966937943066e-07, -3.6158950406914993e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.1695370244148723e-06, -1.9284773550354457e-06, -3.615895040691487e-06, -4.8211933875886133e-07, -2.4105966937943061e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.9284773550354457e-06, -3.8569547100708915e-06, -2.410596693794317e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -2.4105966937943066e-07, -1.9284773550354457e-06, -4.0980143794503168e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -7.7139094201417779e-06, -6.0264917344857553e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -2.4105966937943179e-06, -2.6516563631737321e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -2.4105966937943061e-07, -1.9284773550354457e-06, -4.8211933875886133e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -5.7854320651063537e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, 0.00098111285437428629, -4.3390740488297666e-06, -9.6423867751772287e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -3.133775701932611e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -2.0249012227872308e-05, -1.9284773550354457e-06, -2.1213250905389877e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -1.9284773550354509e-05, -3.8569547100708906e-06, -1.9525833219734017e-05, -2.4105966937943072e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -2.0249012227872302e-05, -1.9284773550354631e-05, -1.9284773550354492e-05, -1.9284773550354543e-05, -2.4105966937943066e-07, -9.6423867751772245e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -2.4105966937943255e-06, -4.8211933875886391e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -5.7854320651063605e-06, -7.2317900813830555e-07, -2.1213250905390047e-05, -3.8569547100708906e-06, -1.735629619531908e-05, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857655e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.687417685656023e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -1.7356296195319073e-05, -4.8211933875886133e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.7356296195319073e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -2.4105966937943162e-06, -7.2317900813829507e-07, -1.9284773550354457e-06, -3.615895040691476e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.4463580162765978e-06, -7.2317900813830385e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -6.2675514038652051e-06, -5.5443723957269505e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.4463580162766011e-06, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.9284773550354543e-05, -1.9284773550354492e-05, -3.9051666439468141e-05, -1.9284773550354492e-05, -1.9284773550354509e-05, -9.6423867751772245e-07, -4.8211933875886144e-07, -1.9284773550354445e-06, -2.1695370244148676e-06, -9.6423867751772245e-07, -2.6516563631737461e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.8569547100708898e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.905166643946806e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -7.2317900813829485e-07, -2.4105966937943066e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -9.6423867751772245e-07, -2.892716032553182e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297632e-06, -2.4105966937943072e-07, -9.6423867751772202e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.2052983468971587e-06, -9.6423867751772287e-07, -4.8211933875886133e-07, -1.4463580162765897e-06, -2.0490071897251667e-05, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.1088744791453855e-05, -2.4105966937943069e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.4005318499485744e-05, -1.9284773550354453e-06, -4.8211933875886232e-05, -1.9284773550354457e-06, -4.8211933875886133e-07, -1.4463580162765816e-05, -2.8927160325531803e-06, -1.2052983468971572e-06, -1.4463580162765975e-05, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.905166643946806e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -5.5202664287889843e-05, -7.2317900813829443e-07, -4.8211933875886259e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.9051666439468141e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -6.508611073244616e-06, -2.3141728260425449e-05, -1.9284773550354457e-06, -1.7115236525939522e-05, -2.8927160325531803e-06, -2.8927160325531803e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943272e-06, -1.9284773550354449e-06, -2.4105966937943213e-06, -5.0622530569680737e-06, -1.9284773550354457e-06, -1.2052983468971619e-06, -5.5443723957269242e-06, -1.9284773550354457e-06, -2.8927160325531803e-06, -7.2317900813830396e-07, -1.2052983468971568e-06, -4.8211933875886122e-07, -2.4105966937943066e-07, -2.4105966937943072e-07, -1.9284773550354449e-06, -2.8927160325531701e-06, -1.4463580162765884e-06, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -3.8569547100708898e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -1.9284773550354449e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -5.7854320651063571e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.1695370244148892e-06, -8.1960287589006742e-06, -4.8211933875886112e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -2.1695370244148824e-06, -6.2675514038652373e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -2.4105966937943066e-07, -4.8211933875886144e-07, -4.0980143794502922e-06, -7.2317900813829113e-06, -2.8927160325531803e-06, -1.4463580162765978e-06, -2.4105966937943072e-07, -9.6423867751772287e-07, -3.8569547100708906e-06, -5.785432065106358e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -2.8927160325531803e-06, -1.9284773550354457e-06, -2.4105966937943061e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.1695370244148858e-06, -1.2052983468971606e-06, -1.9284773550354453e-06, -3.8569547100708915e-06, -1.7356296195319053e-05, -9.6423867751772245e-07, -2.4105966937943072e-07, -1.4463580162765812e-05, -1.9284773550354457e-06, -1.157086413021289e-05, -1.1570864130212718e-05, -1.2052983468971511e-05, -1.157086413021289e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.6874176856560251e-05, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4704639832145301e-05, -4.8211933875886133e-07, -1.7356296195319073e-05, -1.7356296195319073e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.735629619531908e-05, -1.7356296195319046e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.2317900813829549e-07, -3.8569547100708915e-06, -8.6781480976595365e-06, -8.6781480976595772e-06, -8.6781480976595637e-06, -8.6781480976595399e-06, -4.33907404882977e-06, -4.3390740488297717e-06, -8.6781480976595027e-06, -8.6781480976595061e-06, -1.0847685122074266e-06, -1.0847685122074279e-06, -0.00021803847095369489, -0.00021695370244148983, -5.4238425610372214e-06, -1.0847685122074266e-06, -3.2543055366222987e-06, -1.0847685122074373e-05, -8.6781480976594796e-05, -2.1695370244148558e-06, -9.9798703123085412e-05, -1.0847685122074391e-06, -1.7356296195318785e-05, -1.7356296195318805e-05, -8.6781480976595128e-06, -8.6781480976594993e-06, -8.6781480976594796e-05, -8.6781480976594796e-05, -8.6781480976594332e-06, -0.00024624245227108861, -2.1695370244148397e-06, -0.00021695370244148682, -1.7356296195318772e-05, -8.6781480976595738e-06, -8.6781480976595332e-06, -1.0847685122074395e-06, -1.084768512207427e-06, -8.67814809765944e-06, -8.6781480976594264e-06, -2.1695370244148397e-06, -2.1695370244148405e-06, -1.0847685122074395e-06, -1.0847685122074321e-06, -8.6781480976594197e-06, -5.4238425610372137e-06, -3.2543055366223088e-06, -4.3390740488297751e-06, -4.3390740488297666e-06, -1.0847685122074266e-06, -1.6271527683111478e-05, -8.6781480976594569e-06, -8.6781480976594535e-06, -9.7629166098670252e-06, -8.6781480976595162e-06, -1.6271527683111525e-05, -2.1695370244148532e-06, -1.084768512207422e-06, -8.6781480976595128e-06, -8.6781480976595061e-06, -1.0847685122074262e-06, -1.0847685122074296e-06, -8.6781480976594502e-06, -8.6781480976594603e-06, -2.1695370244148651e-06, -1.0847685122074338e-06, -8.6781480976594857e-06, -1.7356296195319107e-05, -1.0847685122074404e-05, -8.6781480976594332e-06, -1.7356296195318999e-05, -1.0847685122074258e-06, -8.678148097659479e-06, -1.8441064707526567e-05, -8.67814809765944e-06, -8.6781480976594705e-06, -1.7356296195318799e-05, -3.4712592390638417e-05, -2.7119212805185812e-05, -8.6781480976595027e-06, -1.7356296195318826e-05, -1.7356296195318846e-05, -4.339074048829681e-06, -8.6781480976594637e-06, -1.0847685122074399e-05, -1.1932453634282113e-05, -4.339074048829681e-06, -1.7356296195319182e-05, -8.6781480976594366e-06, -8.6781480976594366e-06, -8.6781480976594298e-06, -2.169537024414896e-06, -8.6781480976593858e-06, -8.6781480976595027e-06, -1.0847685122074198e-06, -8.6781480976595094e-06, -2.1695370244148714e-06, -8.6781480976593892e-06, -8.6781480976594434e-06, -8.6781480976594298e-06, -1.0847685122074467e-06, -1.7356296195318833e-05, -1.7356296195318819e-05, -1.0847685122074501e-06, -8.67814809765944e-06, -8.6781480976594468e-06, -1.0847685122074279e-06, -8.6781480976593654e-06, -8.678148097659379e-06, -8.6781480976594739e-06, -8.6781480976593756e-06, -2.6034444292978389e-05, -8.6781480976593756e-06, -8.6781480976594925e-06, -8.6781480976594739e-06, -1.0847685122074325e-06, -8.678148097659479e-06, -8.6781480976594671e-06, -1.7356296195319195e-05, -4.3390740488297666e-06, 0.0043998210855134027, -4.3390740488297751e-06, -1.084768512207422e-06, -2.1695370244148625e-06, -1.4101990658696929e-05, -8.6781480976594298e-06, -1.7356296195319141e-05, -9.1120555025424324e-05, -8.6781480976594502e-06, -9.5459629074255424e-05, -8.6781480976594637e-06, -8.6781480976594739e-06, -1.7356296195318846e-05, -8.678148097659523e-05, -1.7356296195318826e-05, -8.7866249488802693e-05, -1.0847685122074393e-06, -1.7356296195318812e-05, -1.735629619531886e-05, -4.3390740488297751e-06, -9.1120555025424351e-05, -8.6781480976594796e-05, -8.6781480976595257e-05, -8.6781480976595189e-05, -1.0847685122074262e-06, -4.3390740488297369e-06, -1.0847685122074353e-06, -1.0847685122074236e-06, -1.0847685122074203e-06, -8.6781480976594366e-06, -8.6781480976594332e-06, -8.6781480976594366e-06, -8.6781480976594332e-06, -1.0847685122074349e-06, -1.0847685122074338e-06, -1.0847685122074349e-06, -8.6781480976593959e-06, -1.0847685122074353e-05, -2.1695370244148784e-05, -1.7356296195319154e-05, -1.7356296195318927e-05, -8.6781480976593993e-06, -2.6034444292978478e-05, -3.2543055366223088e-06, -9.5459629074256278e-05, -1.7356296195318948e-05, -7.8103332878936757e-05, -1.084768512207427e-06, -1.0847685122074313e-06, 0.0039011891594020391, -1.7356296195319195e-05, -8.6781480976594569e-06, -7.5933795854521275e-06, -4.3390740488297674e-06, 0.00048886900950148766, -7.8103332878936757e-05, -2.1695370244148532e-06, -4.3390740488297717e-06, -4.33907404882977e-06, -7.8103332878936757e-05, -8.678148097659567e-06, -1.0847685122074505e-06, -8.6781480976594569e-06, -1.0847685122074349e-06, -8.6781480976594705e-06, -1.0847685122074399e-05, -3.2543055366223076e-06, -8.6781480976594603e-06, -1.6271527683111566e-05, -1.08476851220744e-06, -8.6781480976595569e-06, -2.1695370244148397e-06, -2.1695370244148405e-06, -2.1695370244148448e-06, -1.0847685122074296e-06, -6.5086110732446278e-06, -3.2543055366223105e-06, -8.6781480976594163e-06, -8.6781480976594027e-06, -1.7356296195319087e-05, -2.8203981317393577e-05, -2.494967578077136e-05, -1.08476851220744e-06, -1.7356296195319012e-05, -8.6781480976594129e-06, -6.5086110732446262e-06, -2.1695370244148706e-06, -1.0847685122074338e-06, -1.0847685122074241e-06, -8.6781480976595189e-05, -8.6781480976595257e-05, -0.0001757324989776062, -8.6781480976595257e-05, -8.678148097659523e-05, -4.339074048829681e-06, -2.169537024414874e-06, -8.6781480976595704e-06, -9.7629166098670252e-06, -4.339074048829681e-06, -1.1932453634281999e-05, -1.0847685122074266e-06, -1.0847685122074391e-06, -1.7356296195318894e-05, -8.6781480976594891e-06, -8.6781480976595874e-06, -1.0847685122074308e-06, -1.0847685122074266e-06, -4.3390740488298005e-06, -4.3390740488297971e-06, -1.7356296195319019e-05, -8.6781480976594061e-06, -1.0847685122074446e-06, -0.00017573249897760471, -8.6781480976594095e-06, -8.6781480976594129e-06, -1.0847685122074501e-06, -4.3390740488297988e-06, -4.3390740488297988e-06, -2.1695370244148782e-06, -2.1695370244148782e-06, -3.2543055366223097e-06, -1.0847685122074262e-06, -2.1695370244148782e-06, -2.1695370244148782e-06, -1.0847685122074334e-06, -1.0847685122074262e-06, -4.33907404882977e-06, -1.3017222146489269e-05, -8.6781480976594925e-06, -1.0847685122074353e-06, -1.0847685122074391e-06, -1.9525833219734105e-05, -1.0847685122074296e-06, -4.339074048829792e-06, -2.1695370244148918e-06, -1.7356296195319012e-05, -1.7356296195318999e-05, -5.4238425610371942e-06, -4.3390740488297234e-06, -2.1695370244148642e-06, -6.5086110732446355e-06, -9.2205323537633427e-05, -1.0847685122074321e-06, -4.3390740488297251e-06, -4.3390740488297217e-06, -1.7356296195318978e-05, -1.7356296195319032e-05, -4.3390740488297217e-06, -4.3390740488297395e-06, -4.3390740488297395e-06, -1.0847685122074353e-06, -4.9899351561542361e-05, -1.0847685122074421e-05, -1.0847685122074253e-06, -8.6781480976594129e-06, -8.6781480976595704e-06, -8.6781480976594095e-06, -1.7356296195319032e-05, -8.6781480976595399e-06, -1.7356296195318978e-05, -8.6781480976595704e-06, -8.6781480976595704e-06, -0.00033302393324768459, -8.6781480976594163e-06, -0.00021695370244148839, -8.678148097659479e-06, -2.1695370244148515e-06, -6.5086110732446616e-05, -1.3017222146489252e-05, -5.4238425610372078e-06, -6.5086110732445965e-05, -1.0847685122074429e-06, -8.6781480976594298e-06, -8.6781480976594366e-06, -0.00017573249897760471, -8.6781480976594925e-06, -8.6781480976594959e-06, -0.00024841198929550308, -3.2543055366223038e-06, -0.00021695370244148828, -8.6781480976594468e-06, -8.67814809765944e-06, -1.084768512207433e-06, -8.67814809765944e-06, -8.6781480976594264e-06, -1.0847685122074361e-06, -1.7356296195318999e-05, -1.7356296195319012e-05, -2.1695370244148448e-06, -4.3390740488297988e-06, -4.3390740488297988e-06, -8.6781480976594129e-06, -8.6781480976594095e-06, -0.0001757324989776062, -8.6781480976594027e-06, -8.6781480976594163e-06, -2.9288749829601294e-05, -0.00010413777717191388, -8.6781480976594366e-06, -7.7018564366728508e-05, -1.3017222146489291e-05, -1.3017222146489295e-05, -8.6781480976594061e-06, -8.678148097659379e-06, -1.084768512207436e-05, -8.6781480976593654e-06, -1.084768512207437e-05, -2.2780138756356081e-05, -8.6781480976594891e-06, -5.4238425610371866e-06, -2.4949675780771245e-05, -8.6781480976594857e-06, -1.3017222146489249e-05, -3.2543055366223105e-06, -5.4238425610372061e-06, -2.1695370244148439e-06, -1.0847685122074262e-06, -1.084768512207451e-06, -8.6781480976595332e-06, -1.301722214648944e-05, -6.5086110732447151e-06, -4.3390740488297446e-06, -8.6781480976595704e-06, -8.6781480976594332e-06, -8.6781480976595704e-06, -1.73562961953191e-05, -8.6781480976595128e-06, -4.3390740488297217e-06, -1.7356296195319039e-05, -8.6781480976595094e-06, -4.3390740488297251e-06, -8.6781480976595704e-06, -1.0847685122074429e-06, -8.6781480976595061e-06, -8.6781480976595128e-06, -1.7356296195318819e-05, -2.6034444292978457e-05, -8.6781480976594637e-06, -1.7356296195318772e-05, -1.7356296195318819e-05, -8.6781480976595061e-06, -8.6781480976595027e-06, -8.6781480976594857e-06, -8.6781480976594993e-06, -9.7629166098670455e-06, -3.6882129415053222e-05, -2.1695370244149002e-06, -8.6781480976593756e-06, -8.6781480976595128e-06, -9.7629166098670947e-06, -2.8203981317393933e-05, -8.6781480976595772e-06, -8.6781480976594569e-06, -8.6781480976595365e-06, -4.3390740488297234e-06, -4.3390740488297217e-06, -1.0847685122074484e-06, -1.0847685122074203e-06, -1.0847685122074258e-06, -2.1695370244148591e-06, -1.8441064707526848e-05, -3.2543055366222996e-05, -1.3017222146489256e-05, -6.5086110732446278e-06, -1.0847685122074501e-06, -4.3390740488297251e-06, -1.7356296195318948e-05, -2.6034444292978437e-05, -8.678148097659379e-06, -4.3390740488297268e-06, -1.7356296195318907e-05, -1.7356296195318927e-05, -4.3390740488297268e-06, -1.3017222146489246e-05, -8.6781480976594925e-06, -1.084768512207422e-06, -2.1695370244148977e-06, -4.3390740488297251e-06, -4.3390740488297217e-06, -9.7629166098670083e-06, -5.4238425610371942e-06, -8.6781480976595874e-06, -1.7356296195319107e-05, -7.8103332878935958e-05, -4.3390740488297751e-06, -1.0847685122074349e-06, -6.5086110732446507e-05, -8.6781480976594739e-06, -5.2068888585956982e-05, -5.2068888585956969e-05, -5.4238425610371658e-05, -5.2068888585956982e-05, -4.3390740488297751e-06, -4.3390740488297767e-06, -8.6781480976594569e-06, -8.6781480976594705e-06, -4.3390740488297335e-06, -4.3390740488297352e-06, -8.6781480976593892e-06, -1.0847685122074224e-06, -8.6781480976593858e-06, -1.0847685122074325e-06, -1.0847685122074279e-06, -7.593379585452114e-05, -4.3390740488297352e-06, -4.3390740488297335e-06, -6.6170879244653564e-05, -2.1695370244148481e-06, -7.8103332878936757e-05, -7.8103332878936757e-05, -8.678148097659479e-06, -1.0847685122074342e-06, -8.6781480976594637e-06, -7.8103332878936757e-05, -7.8103332878935917e-05, -8.6781480976595874e-06, -8.6781480976595569e-06, -2.1695370244148723e-06, -2.1695370244148541e-06, -1.7356296195319026e-05, -8.678148097659567e-06, -8.6781480976595772e-06, -3.254305536622319e-06, -1.7356296195319026e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -2.4105966937943072e-07, -4.8452993545265838e-05, -4.8211933875885961e-05, -1.205298346897153e-06, -2.4105966937943066e-07, -7.2317900813829485e-07, -2.4105966937943213e-06, -1.9284773550354624e-05, -4.8211933875886144e-07, -2.2177489582907778e-05, -2.4105966937943072e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354624e-05, -1.9284773550354624e-05, -1.9284773550354449e-06, -5.47205449491307e-05, -4.8211933875886122e-07, -4.8211933875886605e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.928477355035444e-06, -1.205298346897153e-06, -7.2317900813829528e-07, 0.00098111285437428629, -9.6423867751772287e-07, -2.4105966937943066e-07, -3.6158950406915009e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.1695370244148714e-06, -1.9284773550354457e-06, -3.6158950406914887e-06, -4.8211933875886133e-07, -2.4105966937943061e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.9284773550354457e-06, -3.8569547100708915e-06, -2.4105966937943162e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -2.4105966937943066e-07, -1.9284773550354457e-06, -4.0980143794503151e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -7.7139094201417779e-06, -6.0264917344857604e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -2.410596693794317e-06, -2.6516563631737321e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -2.4105966937943061e-07, -1.9284773550354457e-06, -4.8211933875886133e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -5.7854320651063571e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -4.3390740488297751e-06, 0.00098111285437428629, -2.4105966937943061e-07, -4.8211933875886144e-07, -3.1337757019326093e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -2.0249012227872308e-05, -1.9284773550354457e-06, -2.1213250905389884e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -1.9284773550354502e-05, -3.8569547100708906e-06, -1.952583321973401e-05, -2.4105966937943072e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -2.0249012227872302e-05, -1.9284773550354624e-05, -1.9284773550354485e-05, -1.9284773550354536e-05, -2.4105966937943066e-07, -9.6423867751772245e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -2.4105966937943255e-06, -4.8211933875886391e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -5.7854320651063639e-06, -7.2317900813830597e-07, -2.121325090539005e-05, -3.8569547100708906e-06, -1.7356296195319066e-05, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857587e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.6874176856560222e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -1.7356296195319066e-05, -4.8211933875886133e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.735629619531906e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -2.4105966937943145e-06, -7.2317900813829549e-07, -1.9284773550354457e-06, -3.6158950406914777e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.4463580162765986e-06, -7.2317900813830428e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -6.2675514038652e-06, -5.5443723957269471e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.446358016276602e-06, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.9284773550354536e-05, -1.9284773550354485e-05, -3.9051666439468141e-05, -1.9284773550354485e-05, -1.9284773550354502e-05, -9.6423867751772245e-07, -4.8211933875886144e-07, -1.9284773550354445e-06, -2.1695370244148668e-06, -9.6423867751772245e-07, -2.6516563631737469e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.8569547100708898e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.9051666439468053e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -7.2317900813829528e-07, -2.4105966937943066e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -9.6423867751772245e-07, -2.8927160325531836e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297598e-06, -2.4105966937943072e-07, -9.6423867751772202e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.2052983468971583e-06, -9.6423867751772287e-07, -4.8211933875886133e-07, -1.4463580162765906e-06, -2.0490071897251667e-05, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.1088744791453848e-05, -2.410596693794306e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.4005318499485798e-05, -1.9284773550354453e-06, -4.8211933875886259e-05, -1.9284773550354457e-06, -4.8211933875886133e-07, -1.4463580162765823e-05, -2.892716032553182e-06, -1.2052983468971568e-06, -1.4463580162765982e-05, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.9051666439468053e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -5.5202664287889816e-05, -7.2317900813829485e-07, -4.82119338758863e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.9051666439468141e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -6.508611073244616e-06, -2.3141728260425456e-05, -1.9284773550354457e-06, -1.7115236525939518e-05, -2.8927160325531786e-06, -2.8927160325531786e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943263e-06, -1.9284773550354449e-06, -2.4105966937943204e-06, -5.062253056968072e-06, -1.9284773550354457e-06, -1.2052983468971619e-06, -5.5443723957269209e-06, -1.9284773550354457e-06, -2.892716032553182e-06, -7.2317900813830438e-07, -1.2052983468971568e-06, -4.8211933875886122e-07, -2.4105966937943066e-07, -2.4105966937943072e-07, -1.9284773550354449e-06, -2.8927160325531667e-06, -1.4463580162765897e-06, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -3.8569547100708898e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -1.9284773550354449e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -5.7854320651063605e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.1695370244148935e-06, -8.1960287589006775e-06, -4.8211933875886112e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -2.1695370244148816e-06, -6.2675514038652373e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -2.4105966937943066e-07, -4.8211933875886144e-07, -4.0980143794502905e-06, -7.2317900813829147e-06, -2.892716032553182e-06, -1.4463580162765986e-06, -2.4105966937943072e-07, -9.6423867751772287e-07, -3.8569547100708906e-06, -5.7854320651063614e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -2.892716032553182e-06, -1.9284773550354457e-06, -2.4105966937943061e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.1695370244148892e-06, -1.2052983468971598e-06, -1.9284773550354453e-06, -3.8569547100708915e-06, -1.7356296195319039e-05, -9.6423867751772245e-07, -2.4105966937943072e-07, -1.4463580162765819e-05, -1.9284773550354457e-06, -1.1570864130212897e-05, -1.1570864130212724e-05, -1.2052983468971519e-05, -1.1570864130212897e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.6874176856560245e-05, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4704639832145308e-05, -4.8211933875886133e-07, -1.735629619531906e-05, -1.7356296195319066e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.7356296195319066e-05, -1.7356296195319032e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.2317900813829507e-07, -3.8569547100708915e-06, -4.8211933875886101e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -1.2113248386316544e-05, -1.2052983468971582e-05, -3.0132458672429079e-07, -6.0264917344857653e-08, -1.807947520345762e-07, -6.0264917344858159e-07, -4.821193387588695e-06, -1.2052983468971531e-07, -5.5443723957268963e-06, -6.0264917344857653e-08, -9.6423867751772224e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.821193387588695e-06, -4.821193387588695e-06, -4.8211933875886101e-07, -1.3680136237282573e-05, -1.2052983468971525e-07, -1.2052983468971743e-05, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971525e-07, -1.2052983468971525e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, 0.00024503715392419238, -3.0132458672429079e-07, -1.8079475203457625e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.0264917344857653e-08, -9.0397376017288244e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -5.4238425610370992e-07, -4.8211933875886122e-07, -9.0397376017287947e-07, -1.2052983468971528e-07, -6.026491734485764e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -9.6423867751772245e-07, -6.0264917344858402e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -1.0245035948625709e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.928477355035444e-06, -1.5066229336214517e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -2.4105966937943051e-07, -4.8211933875886122e-07, -6.0264917344858423e-07, -6.6291409079343028e-07, -2.4105966937943051e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971525e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857627e-08, -4.8211933875886122e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -9.6423867751772224e-07, -9.6423867751772224e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886218e-07, -4.8211933875886218e-07, -4.8211933875886122e-07, -4.8211933875886218e-07, -1.4463580162766096e-06, -4.8211933875886101e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -1.084768512207422e-06, -2.4105966937943061e-07, 0.00024545900834560644, -1.2052983468971531e-07, -7.8344392548314058e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -5.0622530569680839e-06, -4.8211933875886122e-07, -5.3033127263474439e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772224e-07, -4.8211933875886654e-06, -9.6423867751772245e-07, -4.8814583049335329e-06, -6.0264917344857653e-08, -9.6423867751772245e-07, -9.6423867751772224e-07, -2.4105966937943056e-07, -5.0622530569680822e-06, -4.821193387588695e-06, -4.821193387588662e-06, -4.8211933875886739e-06, -6.0264917344857653e-08, -2.4105966937943051e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -6.0264917344857627e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344858603e-07, -1.2052983468971615e-06, -9.6423867751772202e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -1.4463580162766102e-06, -1.8079475203457088e-07, -5.303312726347488e-06, -9.6423867751772245e-07, -4.3390740488297047e-06, -6.0264917344857653e-08, -6.0264917344857653e-08, -1.5066229336214568e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.21854421414003e-07, -2.4105966937943056e-07, -1.2052983468971528e-07, -4.3390740488297047e-06, -1.2052983468971528e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.3390740488297031e-06, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.026491734485837e-07, -1.8079475203457625e-07, -4.8211933875886122e-07, -9.0397376017287672e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -1.2052983468971525e-07, -1.2052983468971525e-07, -1.2052983468971528e-07, -6.0264917344857666e-08, -3.6158950406915457e-07, -1.807947520345785e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.5668878509663123e-06, -1.386093098931723e-06, -6.0264917344857653e-08, -9.6423867751772245e-07, -4.8211933875886133e-07, -3.61589504069147e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -4.8211933875886739e-06, -4.821193387588662e-06, -9.762916609867098e-06, -4.821193387588662e-06, -4.8211933875886654e-06, -2.4105966937943051e-07, -1.2052983468971531e-07, -4.8211933875886091e-07, -5.4238425610370886e-07, -2.4105966937943051e-07, -6.6291409079343377e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -9.7629166098670743e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.8079475203457625e-07, -6.026491734485764e-08, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -2.4105966937943056e-07, -7.2317900813830555e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -1.0847685122074194e-06, -6.0264917344857653e-08, -2.4105966937943035e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.0132458672429212e-07, -2.4105966937943061e-07, -1.2052983468971528e-07, -3.615895040691524e-07, -5.1225179743129167e-06, -6.0264917344857666e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.0264917344857653e-08, -2.772186197863435e-06, -6.0264917344858159e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.8211933875886101e-07, -9.6423867751772245e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -1.85013296248717e-05, -4.8211933875886133e-07, -1.2052983468971661e-05, -4.8211933875886122e-07, -1.2052983468971528e-07, -3.6158950406914819e-06, -7.2317900813830523e-07, -3.0132458672429175e-07, -3.615895040691523e-06, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.7629166098670743e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.3800666071972325e-05, -1.8079475203457615e-07, -1.2052983468971668e-05, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971528e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.762916609867098e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.6271527683111754e-06, -5.7854320651064351e-06, -4.8211933875886122e-07, -4.2788091314848465e-06, -7.2317900813828141e-07, -7.2317900813828141e-07, -4.8211933875886112e-07, -4.8211933875886218e-07, -6.0264917344858667e-07, -4.8211933875886218e-07, -6.0264917344858519e-07, -1.2655632642420197e-06, -4.8211933875886122e-07, -3.0132458672429291e-07, -1.3860930989317171e-06, -4.8211933875886122e-07, -7.2317900813830523e-07, -1.8079475203457856e-07, -3.0132458672429164e-07, -1.2052983468971525e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886101e-07, -7.2317900813830481e-07, -3.6158950406915521e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -4.8211933875886101e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772224e-07, -1.4463580162766096e-06, -4.8211933875886122e-07, -9.6423867751772224e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -5.4238425610371246e-07, -2.0490071897251541e-06, -1.2052983468971528e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -5.4238425610371246e-07, -1.5668878509663131e-06, -4.8211933875886112e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.0264917344857653e-08, -6.0264917344857627e-08, -6.0264917344857653e-08, -1.2052983468971533e-07, -1.0245035948625648e-06, -1.8079475203457435e-06, -7.2317900813830523e-07, -3.6158950406915457e-07, -6.0264917344857653e-08, -2.4105966937943061e-07, -9.6423867751772245e-07, -1.4463580162766094e-06, -4.8211933875886101e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -7.2317900813830512e-07, -4.8211933875886122e-07, -6.026491734485764e-08, -1.2052983468971533e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -5.4238425610371161e-07, -3.0132458672429079e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.3390740488297132e-06, -2.4105966937943056e-07, -6.0264917344857653e-08, -3.6158950406914785e-06, -4.8211933875886122e-07, -2.8927160325532628e-06, -2.8927160325532192e-06, -3.0132458672429035e-06, -2.8927160325532628e-06, -2.4105966937943056e-07, -2.4105966937943056e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -6.026491734485764e-08, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.2185442141400188e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -3.676159958036349e-06, -1.2052983468971531e-07, -4.3390740488297031e-06, -4.3390740488297047e-06, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.3390740488297047e-06, -4.3390740488296963e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.8079475203457625e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971533e-07, -1.2052983468971536e-07, -2.4226496772632987e-05, -2.4105966937943055e-05, -6.0264917344857883e-07, -1.2052983468971533e-07, -3.6158950406914944e-07, -1.2052983468971653e-06, -9.642386775177346e-06, -2.4105966937943072e-07, -1.1088744791453843e-05, -1.2052983468971536e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.642386775177346e-06, -9.642386775177346e-06, -9.6423867751772245e-07, -2.7360272474565275e-05, -2.4105966937943061e-07, -2.4105966937943377e-05, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -9.6423867751772266e-07, -9.6423867751772287e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -9.6423867751772202e-07, 0.00049043589735245363, -3.6158950406914965e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971533e-07, -1.8079475203457564e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.0847685122074292e-06, -9.6423867751772287e-07, -1.8079475203457505e-06, -2.4105966937943066e-07, -1.2052983468971531e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971533e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943061e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -1.9284773550354457e-06, -1.2052983468971625e-06, -9.6423867751772287e-07, -1.9284773550354457e-06, -1.2052983468971533e-07, -9.6423867751772287e-07, -2.0490071897251546e-06, -9.6423867751772266e-07, -9.6423867751772287e-07, -1.9284773550354453e-06, -3.8569547100708889e-06, -3.0132458672428895e-06, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -1.205298346897163e-06, -1.3258281815868639e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772287e-07, -1.2052983468971531e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -9.6423867751772245e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971533e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.2052983468971536e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971533e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772287e-07, -9.6423867751772245e-07, -2.8927160325531955e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.1695370244148625e-06, -4.8211933875886144e-07, -1.2052983468971531e-07, 0.00049079748685652272, -1.566887850966314e-06, -9.6423867751772287e-07, -1.9284773550354457e-06, -1.0124506113936161e-05, -9.6423867751772287e-07, -1.0606625452694918e-05, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -9.6423867751772867e-06, -1.9284773550354453e-06, -9.762916609867032e-06, -1.2052983468971536e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -1.0124506113936158e-05, -9.642386775177346e-06, -9.64238677517728e-06, -9.6423867751773037e-06, -1.2052983468971533e-07, -4.8211933875886122e-07, -1.2052983468971536e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -9.6423867751772266e-07, -1.205298346897167e-06, -2.4105966937943272e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -9.6423867751772266e-07, -2.892716032553198e-06, -3.61589504069155e-07, -1.0606625452695003e-05, -1.9284773550354453e-06, -8.6781480976594857e-06, -1.2052983468971536e-07, -1.2052983468971536e-07, -3.0132458672429001e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -8.4370884282800918e-07, -4.8211933875886122e-07, -2.4105966937943066e-07, -8.6781480976594857e-06, -2.4105966937943066e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976594823e-06, -9.6423867751772287e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -1.2052983468971619e-06, -3.6158950406914965e-07, -9.6423867751772287e-07, -1.8079475203457448e-06, -1.2052983468971536e-07, -9.6423867751772287e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971536e-07, -7.2317900813829168e-07, -3.615895040691542e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354453e-06, -3.1337757019326136e-06, -2.772186197863463e-06, -1.2052983468971536e-07, -1.9284773550354453e-06, -9.6423867751772266e-07, -7.2317900813830481e-07, -2.4105966937943072e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -9.6423867751773037e-06, -9.64238677517728e-06, -1.9525833219734118e-05, -9.64238677517728e-06, -9.6423867751772867e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -9.6423867751772224e-07, -1.084768512207433e-06, -4.8211933875886122e-07, -1.3258281815868709e-06, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.9284773550354453e-06, -9.6423867751772266e-07, -1.2052983468971536e-07, -1.9525833219734078e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971536e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -3.6158950406914965e-07, -1.2052983468971533e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -4.8211933875886122e-07, -1.4463580162765994e-06, -9.6423867751772287e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -2.1695370244148676e-06, -1.2052983468971536e-07, -4.8211933875886101e-07, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -6.0264917344858148e-07, -4.8211933875886144e-07, -2.4105966937943066e-07, -7.2317900813829909e-07, -1.0245035948625833e-05, -1.2052983468971536e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971536e-07, -5.5443723957269022e-06, -1.2052983468971577e-06, -1.2052983468971533e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -9.6423867751772266e-07, -1.9284773550354457e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.7002659249743096e-05, -9.6423867751772266e-07, -2.4105966937943214e-05, -9.6423867751772287e-07, -2.4105966937943066e-07, -7.2317900813829485e-06, -1.4463580162765994e-06, -6.0264917344858053e-07, -7.2317900813829807e-06, -1.2052983468971536e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9525833219734078e-05, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.7601332143944786e-05, -3.6158950406914944e-07, -2.4105966937943228e-05, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971536e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971536e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9525833219734118e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.2543055366223055e-06, -1.1570864130212796e-05, -9.6423867751772287e-07, -8.557618262969732e-06, -1.4463580162765982e-06, -1.4463580162765982e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971674e-06, -9.6423867751772245e-07, -1.2052983468971649e-06, -2.5311265284840369e-06, -9.6423867751772287e-07, -6.0264917344858307e-07, -2.7721861978634503e-06, -9.6423867751772287e-07, -1.4463580162765994e-06, -3.6158950406915436e-07, -6.0264917344858053e-07, -2.4105966937943061e-07, -1.2052983468971533e-07, -1.2052983468971536e-07, -9.6423867751772245e-07, -1.4463580162765978e-06, -7.2317900813830459e-07, -4.8211933875886144e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -1.9284773550354449e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -2.8927160325531972e-06, -9.6423867751772287e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.0847685122074342e-06, -4.0980143794503269e-06, -2.4105966937943056e-07, -9.6423867751772245e-07, -9.6423867751772287e-07, -1.0847685122074342e-06, -3.1337757019326165e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971536e-07, -1.2052983468971531e-07, -1.2052983468971533e-07, -2.4105966937943072e-07, -2.0490071897251389e-06, -3.61589504069147e-06, -1.4463580162765986e-06, -7.2317900813829168e-07, -1.2052983468971536e-07, -4.8211933875886144e-07, -1.9284773550354453e-06, -2.8927160325531968e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -1.446358016276599e-06, -9.6423867751772287e-07, -1.2052983468971531e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.0847685122074325e-06, -6.0264917344858222e-07, -9.6423867751772266e-07, -1.9284773550354457e-06, -8.6781480976594468e-06, -4.8211933875886122e-07, -1.2052983468971536e-07, -7.2317900813829468e-06, -9.6423867751772287e-07, -5.7854320651064808e-06, -5.7854320651063944e-06, -6.026491734485779e-06, -5.7854320651064808e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -8.4370884282801257e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -7.3523199160726946e-06, -2.4105966937943066e-07, -8.6781480976594823e-06, -8.6781480976594857e-06, -9.6423867751772287e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -8.6781480976594857e-06, -8.6781480976594671e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.6158950406914965e-07, -1.9284773550354457e-06, -6.2675514038650654e-06, -6.2675514038650925e-06, -6.2675514038650823e-06, -6.2675514038650654e-06, -3.133775701932611e-06, -3.1337757019326093e-06, -6.2675514038652475e-06, -6.2675514038652475e-06, -7.8344392548315742e-07, -7.8344392548315742e-07, -0.00015747222902211369, -0.00015668878509663203, -3.9172196274157438e-06, -7.8344392548315742e-07, -2.350331776449494e-06, -7.8344392548315113e-06, -6.2675514038651928e-05, -1.5668878509663148e-06, -7.2076841144450024e-05, -7.8344392548315572e-07, -1.2535102807730524e-05, -1.2535102807730524e-05, -6.2675514038652492e-06, -6.2675514038652458e-06, -6.26755140386519e-05, -6.26755140386519e-05, -6.2675514038652458e-06, -0.00017784177108467577, -1.5668878509663165e-06, -0.00015668878509663111, -1.253510280773052e-05, -6.2675514038650891e-06, -6.2675514038650654e-06, -7.8344392548315551e-07, -7.8344392548313995e-07, -6.2675514038651314e-06, 0.0019578866346997444, -1.566887850966317e-06, -1.5668878509663165e-06, -7.8344392548315572e-07, -7.8344392548314513e-07, -6.2675514038652424e-06, -3.9172196274157387e-06, -2.3503317764494431e-06, -3.1337757019326093e-06, -3.133775701932611e-06, -7.8344392548315742e-07, -1.1751658882247352e-05, -6.2675514038652551e-06, -6.2675514038652551e-06, -7.0509953293484264e-06, -6.2675514038652475e-06, -1.1751658882247317e-05, -1.5668878509663148e-06, -7.8344392548315826e-07, -6.2675514038652475e-06, -6.2675514038652458e-06, -7.8344392548315742e-07, -7.834439254831571e-07, -6.2675514038652543e-06, -6.2675514038652551e-06, -1.5668878509663148e-06, -7.8344392548315657e-07, -6.2675514038652509e-06, -1.2535102807730527e-05, -7.8344392548314977e-06, -6.2675514038652576e-06, -1.2535102807730512e-05, -7.8344392548315763e-07, -6.2675514038652534e-06, -1.3318546733213431e-05, -6.2675514038652585e-06, -6.2675514038652559e-06, -1.2535102807730519e-05, -2.5070205615461119e-05, -1.9586098137078916e-05, -6.2675514038652458e-06, -1.2535102807730519e-05, -1.2535102807730519e-05, -3.1337757019326331e-06, -6.2675514038652543e-06, -7.8344392548314977e-06, -8.6178831803147554e-06, -3.1337757019326331e-06, -1.2535102807730559e-05, -6.2675514038652559e-06, -6.2675514038652576e-06, -6.2675514038652576e-06, -1.5668878509663191e-06, -6.267551403865123e-06, -6.2675514038652458e-06, -7.8344392548315837e-07, -6.2675514038652466e-06, -1.5668878509663148e-06, -6.267551403865123e-06, -6.2675514038652576e-06, -6.2675514038652559e-06, -7.8344392548313656e-07, -1.2535102807730522e-05, -1.2535102807730519e-05, -7.8344392548314079e-07, -6.2675514038652559e-06, -6.2675514038652559e-06, -7.8344392548315731e-07, -6.2675514038651247e-06, -6.2675514038651263e-06, -6.2675514038652559e-06, -6.2675514038651263e-06, -1.8802654211595941e-05, -6.2675514038652644e-06, -6.2675514038652526e-06, -6.2675514038652534e-06, -7.8344392548315657e-07, -6.2675514038652492e-06, -6.2675514038652526e-06, -1.2535102807730302e-05, -3.133775701932611e-06, -1.4101990658696929e-05, -3.1337757019326093e-06, -7.8344392548314058e-07, -1.566887850966314e-06, 0.0031815657813870964, -6.2675514038652559e-06, -1.2535102807730541e-05, -6.5809289740584586e-05, -6.2675514038652543e-06, -6.8943065442517474e-05, -6.2675514038652543e-06, -6.2675514038652559e-06, -1.2535102807730519e-05, -6.2675514038652009e-05, -1.2535102807730519e-05, -6.3458957964134696e-05, -7.8344392548315562e-07, -1.2535102807730515e-05, -1.2535102807730522e-05, -3.1337757019325327e-06, -6.5809289740584586e-05, -6.2675514038651928e-05, -6.2675514038652022e-05, -6.267551403865209e-05, -7.8344392548315742e-07, -3.1337757019326407e-06, -7.8344392548315657e-07, -7.8344392548314037e-07, -7.8344392548315826e-07, -6.267551403865128e-06, -6.2675514038651247e-06, -6.2675514038652576e-06, -6.2675514038652576e-06, -7.8344392548315657e-07, -7.8344392548315657e-07, -7.8344392548315615e-07, -6.267551403865261e-06, -7.8344392548314909e-06, -1.5668878509663036e-05, -1.2535102807730546e-05, -1.2535102807730509e-05, -6.2675514038652627e-06, -1.8802654211595569e-05, -2.3503317764494876e-06, -6.8943065442517569e-05, -1.2535102807730509e-05, -5.640796263478737e-05, -7.8344392548315742e-07, -7.8344392548315699e-07, -1.9586098137078889e-05, -1.2535102807730302e-05, -6.2675514038652551e-06, -5.4841074783820745e-06, -3.1337757019326326e-06, -1.5668878509663148e-06, -5.640796263478737e-05, -1.5668878509663148e-06, -3.1337757019326093e-06, -3.133775701932611e-06, -5.640796263478737e-05, -6.2675514038652017e-06, -7.8344392548314471e-07, -6.2675514038652526e-06, -7.8344392548315615e-07, -6.2675514038652543e-06, -7.834439254831474e-06, -2.3503317764494325e-06, -6.2675514038652543e-06, -1.1751658882247178e-05, -7.8344392548315572e-07, -6.2675514038652051e-06, -1.5668878509663165e-06, -1.566887850966317e-06, -1.5668878509663161e-06, -7.8344392548314185e-07, -4.7006635528989193e-06, -2.3503317764494736e-06, -6.267551403865261e-06, -6.2675514038652593e-06, -1.2535102807730356e-05, -2.036954206256205e-05, -1.8019210286112499e-05, -7.8344392548315572e-07, -1.2535102807730492e-05, -6.2675514038651213e-06, -4.7006635528989447e-06, -1.5668878509663114e-06, -7.8344392548315657e-07, -7.8344392548314037e-07, -6.267551403865209e-05, -6.2675514038652022e-05, -0.00012691791592826877, -6.2675514038652022e-05, -6.2675514038652009e-05, -3.1337757019326331e-06, -1.5668878509663127e-06, -6.2675514038652814e-06, -7.050995329348423e-06, -3.1337757019326331e-06, -8.6178831803146995e-06, -7.8344392548315742e-07, -7.8344392548315572e-07, -1.2535102807730495e-05, -6.2675514038652475e-06, -6.2675514038651814e-06, -7.8344392548315699e-07, -7.8344392548315742e-07, -3.1337757019325632e-06, -3.1337757019325598e-06, -1.2535102807730492e-05, -6.2675514038651196e-06, -7.8344392548315106e-07, -0.00012691791592826917, -6.2675514038652593e-06, -6.267551403865261e-06, -7.8344392548314079e-07, -3.1337757019325615e-06, -3.1337757019325615e-06, -1.5668878509663114e-06, -1.5668878509663114e-06, -2.3503317764494529e-06, -7.8344392548315752e-07, -1.5668878509663114e-06, -1.5668878509663114e-06, -7.8344392548315636e-07, -7.8344392548315742e-07, -3.1337757019326373e-06, -9.401327105797781e-06, -6.2675514038652475e-06, -7.8344392548315636e-07, -7.8344392548315572e-07, -1.4101990658696827e-05, -7.834439254831571e-07, -3.1337757019326504e-06, -1.5668878509663165e-06, -1.2535102807730495e-05, -1.2535102807730495e-05, -3.9172196274157438e-06, -3.1337757019326284e-06, -1.5668878509663148e-06, -4.7006635528988558e-06, -6.6592733666068492e-05, -7.8344392548314513e-07, -3.1337757019326284e-06, -3.1337757019326284e-06, -1.2535102807730492e-05, -1.2535102807730498e-05, -3.1337757019326288e-06, -3.1337757019326254e-06, -3.1337757019326254e-06, -7.8344392548315657e-07, -3.6038420572224978e-05, -7.834439254831496e-06, -7.8344392548315763e-07, -6.267551403865261e-06, -6.2675514038652678e-06, -6.2675514038652593e-06, -1.2535102807730498e-05, -6.267551403865267e-06, -1.2535102807730492e-05, -6.2675514038652678e-06, -6.2675514038652678e-06, -0.00024051728512332972, -6.2675514038651213e-06, -0.00015668878509663079, -6.2675514038652492e-06, -1.566887850966315e-06, -4.7006635528988956e-05, -9.4013271057977962e-06, -3.9172196274157522e-06, -4.7006635528989356e-05, -7.8344392548315276e-07, -6.2675514038652576e-06, -6.2675514038652576e-06, -0.00012691791592826917, -6.2675514038652492e-06, -6.2675514038652492e-06, -0.00017940865893564386, -2.3503317764494397e-06, -0.00015668878509663084, -6.2675514038652559e-06, -6.2675514038652559e-06, -7.8344392548315657e-07, -6.2675514038652585e-06, -6.2675514038652568e-06, -7.8344392548315615e-07, -1.2535102807730495e-05, -1.2535102807730495e-05, -1.5668878509663161e-06, -3.1337757019325615e-06, -3.1337757019325615e-06, -6.2675514038651213e-06, -6.2675514038651213e-06, -0.00012691791592826877, -6.2675514038652593e-06, -6.267551403865261e-06, -2.1152985988045181e-05, -7.5210616846382777e-05, -6.2675514038652559e-06, -5.5624518709303837e-05, -9.4013271057978386e-06, -9.4013271057978386e-06, -6.2675514038652627e-06, -6.2675514038651263e-06, -7.8344392548314876e-06, -6.2675514038651247e-06, -7.8344392548314943e-06, -1.645232243514618e-05, -6.2675514038652509e-06, -3.9172196274157472e-06, -1.8019210286112492e-05, -6.2675514038652483e-06, -9.4013271057977929e-06, -2.350331776449474e-06, -3.9172196274157455e-06, -1.5668878509663165e-06, -7.8344392548315742e-07, -7.8344392548314471e-07, -6.2675514038650654e-06, -9.4013271057978759e-06, -4.700663552898921e-06, -3.1337757019326254e-06, -6.2675514038650857e-06, -6.2675514038652458e-06, -6.2675514038652678e-06, -1.2535102807730541e-05, -6.2675514038652492e-06, -3.1337757019326284e-06, -1.253510280773049e-05, -6.2675514038652458e-06, -3.1337757019326284e-06, -6.2675514038652678e-06, -7.8344392548315276e-07, -6.2675514038652458e-06, -6.2675514038652475e-06, -1.2535102807730519e-05, -1.8802654211595538e-05, -6.2675514038652543e-06, -1.253510280773052e-05, -1.2535102807730527e-05, -6.2675514038652475e-06, -6.2675514038652475e-06, -6.2675514038652483e-06, -6.26755140386525e-06, -7.0509953293485136e-06, -2.6637093466426763e-05, -1.5668878509663163e-06, -6.2675514038652644e-06, -6.2675514038652458e-06, -7.0509953293485052e-06, 0.00022514973120039007, -6.2675514038650925e-06, -6.2675514038652526e-06, -6.2675514038650654e-06, -3.1337757019326284e-06, -3.1337757019326284e-06, -7.8344392548313868e-07, -7.8344392548315826e-07, -7.8344392548315763e-07, -1.5668878509662833e-06, -1.3318546733213444e-05, -2.3503317764494349e-05, -9.4013271057977979e-06, -4.7006635528989193e-06, -7.8344392548314556e-07, -3.1337757019326275e-06, -1.2535102807730509e-05, -1.8802654211595592e-05, -6.2675514038652644e-06, -3.1337757019326275e-06, -1.2535102807730509e-05, -1.2535102807730509e-05, -3.1337757019326275e-06, -9.4013271057978081e-06, -6.2675514038652492e-06, -7.8344392548315805e-07, -1.5668878509663157e-06, -3.1337757019326275e-06, -3.1337757019326288e-06, -7.0509953293484865e-06, -3.9172196274157556e-06, -6.267551403865106e-06, -1.2535102807730529e-05, -5.6407962634787248e-05, -3.1337757019325327e-06, -7.8344392548315657e-07, -4.7006635528988712e-05, -6.2675514038652534e-06, -3.7605308423191632e-05, -3.7605308423190968e-05, -3.9172196274157819e-05, -3.7605308423191632e-05, -3.1337757019325327e-06, 0.00097894331734987221, -6.2675514038652526e-06, -6.2675514038652543e-06, -3.1337757019326263e-06, -3.1337757019326263e-06, -6.267551403865123e-06, -7.8344392548315805e-07, -6.267551403865123e-06, -7.8344392548315657e-07, -7.8344392548315731e-07, -5.4841074783820127e-05, -3.1337757019326263e-06, -3.1337757019326263e-06, -4.7790079454472517e-05, -1.5668878509663157e-06, -5.640796263478737e-05, -5.640796263478737e-05, -6.2675514038652534e-06, -7.8344392548315636e-07, -6.2675514038652526e-06, -5.640796263478737e-05, -5.640796263478737e-05, -6.2675514038651814e-06, -6.2675514038651916e-06, -1.5668878509663123e-06, -1.5668878509663148e-06, -1.2535102807730464e-05, -6.2675514038651882e-06, -6.2675514038651848e-06, -2.3503317764494444e-06, -1.2535102807730464e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6905987090532055e-05, -9.6423867751772329e-05, -2.410596693794317e-06, -4.8211933875886122e-07, -1.4463580162766005e-06, -4.8211933875886629e-06, -3.8569547100709425e-05, -9.6423867751772245e-07, -4.4354979165815319e-05, -4.8211933875886144e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100709425e-05, -3.8569547100709425e-05, -3.8569547100708898e-06, -0.00010944108989826099, -9.6423867751772224e-07, -9.6423867751773589e-05, -7.7139094201417779e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708889e-06, -2.410596693794317e-06, -1.4463580162766016e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -7.2317900813830341e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297251e-06, -3.8569547100708906e-06, -7.2317900813830087e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886535e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -8.1960287589005979e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.2052983468971572e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -4.8211933875886552e-06, -5.3033127263474676e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, 0.0019602972313935386, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212809e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594298e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652559e-06, 0.0019602972313935386, -7.7139094201417813e-06, -4.0498024455744644e-05, -3.8569547100708906e-06, -4.242650181077966e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709174e-05, -7.7139094201417796e-06, -3.9051666439468155e-05, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.049802445574463e-05, -3.8569547100709425e-05, -3.8569547100709147e-05, -3.8569547100709249e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886391e-06, -9.6423867751773189e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -1.1570864130212814e-05, -1.4463580162766225e-06, -4.2426501810779992e-05, -7.7139094201417796e-06, -3.4712592390637855e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971614e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120922e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390637855e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390637841e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886324e-06, -1.4463580162766016e-06, -3.8569547100708906e-06, -7.2317900813829858e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325532192e-06, -1.4463580162766196e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.2535102807730478e-05, -1.1088744791453832e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -2.8927160325532256e-06, -9.6423867751772266e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -3.8569547100709249e-05, -3.8569547100709147e-05, -7.8103332878936554e-05, -3.8569547100709147e-05, -3.8569547100709174e-05, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.8569547100708889e-06, -4.339074048829698e-06, -1.9284773550354449e-06, -5.3033127263474803e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -7.8103332878936378e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4463580162766016e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -5.785432065106408e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976594468e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943276e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325532023e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886144e-07, -2.2177489582907555e-05, -4.8211933875886341e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897268, -3.8569547100708898e-06, -9.6423867751772939e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.8927160325531767e-05, -5.7854320651063588e-06, -2.4105966937943238e-06, -2.8927160325532089e-05, -4.8211933875886144e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936378e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577898, -1.4463580162766011e-06, -9.642386775177302e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936554e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489471e-05, -4.628345652085125e-05, -3.8569547100708906e-06, -3.4230473051878793e-05, -5.7854320651064029e-06, -5.7854320651064029e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886425e-06, -3.8569547100708898e-06, -4.8211933875886629e-06, -1.0124506113936154e-05, -3.8569547100708906e-06, -2.4105966937943179e-06, -1.1088744791453777e-05, -3.8569547100708906e-06, -5.7854320651063521e-06, -1.4463580162765762e-06, -2.4105966937943238e-06, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651064046e-06, -2.8927160325532247e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.1570864130212809e-05, -3.8569547100708906e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297268e-06, -1.6392057517801294e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.339074048829831e-06, -1.2535102807730492e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -8.1960287589005488e-06, -1.4463580162765884e-05, -5.7854320651063792e-06, -2.8927160325532192e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417796e-06, -1.1570864130212814e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651064046e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.33907404882972e-06, -2.4105966937943306e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.4712592390637814e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.892716032553176e-05, -3.8569547100708906e-06, -2.3141728260425967e-05, -2.3141728260425618e-05, -2.4105966937943133e-05, -2.3141728260425967e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.3748353713120286e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.9409279664290711e-05, -9.6423867751772245e-07, -3.4712592390637841e-05, -3.4712592390637855e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390637855e-05, -3.4712592390637787e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.446358016276599e-06, -7.713909420141783e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -0.00019381197418106175, -0.00019284773550354235, -4.8211933875886476e-06, -9.6423867751772245e-07, -2.8927160325531709e-06, -9.6423867751773596e-06, -7.7139094201419093e-05, -1.9284773550354449e-06, -8.870995833163175e-05, -9.6423867751772287e-07, -1.5427818840283552e-05, -1.5427818840283552e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201419121e-05, -7.7139094201419093e-05, -7.7139094201417796e-06, -0.00021888217979652426, -1.9284773550354445e-06, -0.0001928477355035449, -1.5427818840283552e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -7.7139094201417796e-06, -7.7139094201417813e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -7.7139094201417762e-06, -4.8211933875886544e-06, -2.8927160325531731e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -1.4463580162765933e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -8.6781480976595196e-06, -7.7139094201417813e-06, -1.4463580162765899e-05, -1.9284773550354445e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, 0.0019564402766834681, -1.9284773550354445e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -1.5427818840283563e-05, -9.6423867751773393e-06, -7.7139094201417813e-06, -1.5427818840283566e-05, -9.6423867751772266e-07, -7.7139094201417796e-06, -1.6392057517801199e-05, -7.7139094201417796e-06, -7.713909420141783e-06, -1.5427818840283559e-05, -3.0855637680567105e-05, -2.4105966937942855e-05, -7.7139094201417796e-06, -1.5427818840283559e-05, -1.5427818840283556e-05, -3.8569547100708898e-06, -7.7139094201417813e-06, -9.6423867751773426e-06, -1.0606625452694929e-05, -3.8569547100708898e-06, -1.5427818840283556e-05, -7.7139094201417813e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772202e-07, -7.7139094201417796e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, 0.0019564402766834685, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -7.7139094201417796e-06, -2.3141728260425588e-05, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417796e-06, -1.5427818840283566e-05, -3.8569547100708915e-06, -1.7356296195319141e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.2535102807730541e-05, -7.7139094201417813e-06, 0.0039128805533669379, -8.0996048911489396e-05, -7.7139094201417796e-06, -8.4853003621559238e-05, -7.713909420141783e-06, -7.713909420141783e-06, -1.5427818840283556e-05, -7.7139094201418592e-05, -1.5427818840283559e-05, -7.8103332878936337e-05, -9.6423867751772245e-07, -1.5427818840283559e-05, -1.5427818840283556e-05, -3.8569547100708898e-06, -8.0996048911489369e-05, -7.7139094201419093e-05, -7.7139094201418267e-05, -7.7139094201418782e-05, -9.6423867751772266e-07, -3.8569547100708881e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.7139094201417813e-06, -9.6423867751773189e-06, -1.9284773550354706e-05, -1.5427818840283559e-05, -1.5427818840283559e-05, -7.7139094201417813e-06, -2.3141728260425388e-05, -2.892716032553215e-06, -8.4853003621559889e-05, -1.5427818840283559e-05, -6.9425184781276807e-05, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943062e-05, -1.5427818840283566e-05, -7.7139094201417796e-06, -6.7496707426240192e-06, -3.8569547100708881e-06, -1.9284773550354445e-06, -6.9425184781276807e-05, -1.9284773550354445e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -6.942518478127678e-05, -7.713909420141783e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -9.6423867751772986e-06, -2.8927160325531731e-06, -7.7139094201417813e-06, -1.4463580162765848e-05, -9.6423867751772287e-07, -7.713909420141783e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -9.6423867751772287e-07, -5.7854320651063775e-06, -2.8927160325531676e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -1.5427818840283559e-05, -2.5070205615461007e-05, -2.2177489582907944e-05, -9.6423867751772287e-07, -1.5427818840283559e-05, -7.7139094201417796e-06, -5.7854320651063902e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -7.7139094201418782e-05, -7.7139094201418267e-05, -0.00015620666575787346, -7.7139094201418402e-05, -7.7139094201418592e-05, -3.8569547100708898e-06, -1.9284773550354449e-06, -7.7139094201417779e-06, -8.6781480976595365e-06, -3.8569547100708898e-06, -1.0606625452694951e-05, -9.6423867751772245e-07, -9.6423867751772266e-07, -1.5427818840283563e-05, -7.7139094201417813e-06, -7.713909420141783e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.5427818840283559e-05, -7.7139094201417796e-06, -9.6423867751772287e-07, -0.00015620666575787308, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.892716032553193e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.8569547100708898e-06, -1.1570864130212694e-05, -7.7139094201417813e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.7356296195319175e-05, -9.6423867751772245e-07, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -4.8211933875886713e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -5.7854320651063453e-06, -8.1960287589006667e-05, -9.6423867751772287e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772287e-07, -4.4354979165815712e-05, -9.6423867751772986e-06, -9.6423867751772266e-07, -7.7139094201417779e-06, -7.7139094201417762e-06, -7.7139094201417779e-06, -1.5427818840283559e-05, -7.7139094201417762e-06, -1.5427818840283559e-05, -7.7139094201417762e-06, -7.7139094201417762e-06, -0.00029602127399794086, -7.7139094201417796e-06, -0.00019284773550354357, -7.7139094201417813e-06, -1.9284773550354445e-06, -5.7854320651062999e-05, -1.1570864130212753e-05, -4.8211933875886645e-06, -5.7854320651063636e-05, -9.6423867751772287e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00015620666575787308, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00022081065715156016, -2.8927160325531985e-06, -0.00019284773550354374, -7.7139094201417796e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772287e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -1.9284773550354445e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00015620666575787346, -7.7139094201417779e-06, -7.7139094201417779e-06, -2.6034444292978457e-05, -9.2566913041701606e-05, -7.7139094201417813e-06, -6.846094610375852e-05, -1.1570864130212685e-05, -1.1570864130212685e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751773223e-06, -7.7139094201417796e-06, -9.6423867751773596e-06, -2.0249012227872342e-05, -7.7139094201417813e-06, -4.8211933875886561e-06, -2.2177489582907866e-05, -7.7139094201417796e-06, -1.1570864130212746e-05, -2.8927160325531553e-06, -4.8211933875886629e-06, -1.9284773550354445e-06, -9.6423867751772266e-07, -9.6423867751772287e-07, -7.7139094201417796e-06, -1.1570864130212691e-05, -5.7854320651063876e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -1.5427818840283552e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -1.5427818840283556e-05, -7.713909420141783e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.5427818840283559e-05, -2.3141728260425544e-05, -7.7139094201417813e-06, -1.5427818840283552e-05, -1.5427818840283552e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -8.6781480976595975e-06, -3.2784115035602371e-05, -1.9284773550354445e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -8.6781480976594298e-06, -2.5070205615460973e-05, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772266e-07, -1.9284773550354457e-06, -1.639205751780124e-05, -2.8927160325531587e-05, -1.1570864130212713e-05, -5.7854320651063775e-06, -9.6423867751772287e-07, -3.8569547100708898e-06, -1.5427818840283559e-05, -2.3141728260425598e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -1.1570864130212797e-05, -7.7139094201417796e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -8.6781480976595806e-06, -4.8211933875886781e-06, -7.7139094201417796e-06, -1.5427818840283563e-05, -6.9425184781276726e-05, -3.8569547100708898e-06, -9.6423867751772287e-07, -5.7854320651062985e-05, -7.7139094201417796e-06, -4.6283456520851447e-05, -4.6283456520850762e-05, -4.8211933875885704e-05, -4.6283456520851447e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -6.7496707426241304e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -5.8818559328580737e-05, -1.9284773550354445e-06, -6.942518478127678e-05, -6.9425184781276807e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -6.9425184781276807e-05, -6.9425184781276672e-05, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, -1.5427818840283566e-05, -7.713909420141783e-06, -7.713909420141783e-06, -2.8927160325531993e-06, -1.5427818840283566e-05, -4.0498024455744671e-05, -4.0498024455744671e-05, -4.0498024455744671e-05, -4.0498024455744671e-05, -2.0249012227872308e-05, -2.0249012227872308e-05, -4.049802445574463e-05, -4.049802445574463e-05, -5.0622530569680856e-06, -5.0622530569680805e-06, -0.0010175128644505736, -0.0010124506113936057, -2.5311265284840348e-05, -5.0622530569680856e-06, -1.5186759170904323e-05, -5.0622530569680656e-05, -0.00040498024455744438, -1.0124506113936161e-05, -0.00046572728124106395, -5.0622530569680754e-06, -8.0996048911489342e-05, -8.0996048911489369e-05, -4.0498024455744644e-05, -4.049802445574463e-05, -0.00040498024455744405, 0.019236561616478708, -4.0498024455744671e-05, -0.0011491314439317462, -1.0124506113936147e-05, -0.0010124506113936068, -8.0996048911489342e-05, -4.0498024455744671e-05, -4.0498024455744671e-05, -5.0622530569680788e-06, -5.0622530569680822e-06, -4.0498024455744657e-05, -4.0498024455744644e-05, -1.0124506113936147e-05, -1.0124506113936147e-05, -5.0622530569680754e-06, -5.0622530569680805e-06, -4.0498024455744657e-05, -2.5311265284840369e-05, -1.5186759170904292e-05, -2.0249012227872308e-05, -2.0249012227872308e-05, -5.0622530569680856e-06, -7.5933795854521316e-05, -4.0498024455744671e-05, -4.0498024455744671e-05, -4.5560277512712419e-05, -4.0498024455744617e-05, -7.5933795854521113e-05, -1.0124506113936171e-05, -5.062253056968072e-06, -4.0498024455744617e-05, -4.0498024455744617e-05, -5.0622530569680822e-06, -5.0622530569680839e-06, -4.0498024455744671e-05, -4.0498024455744671e-05, -1.0124506113936178e-05, -5.0622530569680788e-06, -4.049802445574463e-05, -8.0996048911489342e-05, -5.0622530569680636e-05, -4.0498024455744644e-05, -8.0996048911489261e-05, -5.0622530569680822e-06, -4.0498024455744657e-05, -8.6058301968455579e-05, -4.0498024455744685e-05, -4.0498024455744644e-05, -8.0996048911489098e-05, -0.00016199209782297852, -0.00012655632642420079, -4.049802445574463e-05, -8.0996048911489288e-05, -8.0996048911489288e-05, -2.0249012227872336e-05, -4.0498024455744644e-05, -5.0622530569680683e-05, -5.5684783626648147e-05, -2.0249012227872336e-05, -8.0996048911489423e-05, -4.0498024455744644e-05, -4.0498024455744671e-05, -4.0498024455744671e-05, -1.0124506113936178e-05, -4.0498024455744671e-05, -4.049802445574463e-05, -5.0622530569680873e-06, -4.0498024455744644e-05, -1.0124506113936164e-05, -4.0498024455744671e-05, -4.0498024455744644e-05, -4.0498024455744644e-05, -5.0622530569680822e-06, -8.0996048911489125e-05, -8.0996048911489125e-05, -5.0622530569680805e-06, -4.0498024455744644e-05, -4.0498024455744644e-05, -5.0622530569680839e-06, -4.0498024455744685e-05, -4.0498024455744685e-05, -4.0498024455744644e-05, -4.0498024455744685e-05, -0.00012149407336723464, -4.0498024455744671e-05, -4.049802445574463e-05, -4.0498024455744657e-05, -5.0622530569680754e-06, -4.049802445574463e-05, -4.0498024455744657e-05, -8.0996048911489261e-05, -2.0249012227872308e-05, -9.1120555025424324e-05, -2.0249012227872308e-05, -5.0622530569680839e-06, -1.0124506113936161e-05, -6.5809289740584586e-05, -4.0498024455744644e-05, -8.0996048911489396e-05, 0.020198389697302716, -4.0498024455744671e-05, -0.00044547826901318723, -4.0498024455744644e-05, -4.0498024455744644e-05, -8.0996048911489288e-05, -0.00040498024455744546, -8.0996048911489288e-05, -0.00041004249761441273, -5.0622530569680788e-06, -8.0996048911489288e-05, -8.0996048911489288e-05, -2.0249012227872329e-05, -0.00042522925678531659, -0.00040498024455744438, -0.00040498024455744525, -0.00040498024455744503, -5.0622530569680822e-06, -2.0249012227872393e-05, -5.0622530569680788e-06, -5.0622530569680822e-06, -5.0622530569680737e-06, -4.0498024455744657e-05, -4.0498024455744644e-05, -4.0498024455744644e-05, -4.0498024455744644e-05, -5.0622530569680788e-06, -5.0622530569680788e-06, -5.0622530569680754e-06, -4.0498024455744657e-05, -5.0622530569680737e-05, -0.0001012450611393612, -8.0996048911489396e-05, -8.0996048911489315e-05, -4.0498024455744671e-05, -0.00012149407336723428, -1.5186759170904292e-05, -0.00044547826901319184, -8.0996048911489315e-05, -0.00036448222010170087, -5.0622530569680805e-06, -5.0622530569680805e-06, -0.00012655632642420079, -8.0996048911489261e-05, -4.0498024455744671e-05, -3.5435771398776638e-05, -2.0249012227872315e-05, -1.0124506113936168e-05, -0.00036448222010170087, -1.0124506113936171e-05, -2.0249012227872308e-05, -2.0249012227872308e-05, -0.00036448222010170082, -4.049802445574463e-05, -5.0622530569680805e-06, -4.0498024455744644e-05, -5.0622530569680754e-06, -4.0498024455744644e-05, -5.0622530569680669e-05, -1.5186759170904263e-05, -4.0498024455744644e-05, -7.5933795854520584e-05, -5.0622530569680754e-06, -4.049802445574463e-05, -1.0124506113936147e-05, -1.0124506113936147e-05, -1.0124506113936168e-05, -5.0622530569680805e-06, -3.0373518341808551e-05, -1.5186759170904286e-05, -4.0498024455744685e-05, -4.0498024455744685e-05, -8.0996048911489261e-05, -0.00013161857948116996, -0.00011643182031026596, -5.0622530569680754e-06, -8.0996048911489342e-05, -4.0498024455744657e-05, -3.0373518341808557e-05, -1.0124506113936158e-05, -5.0622530569680788e-06, -5.0622530569680822e-06, -0.00040498024455744503, -0.00040498024455744525, -0.0008200849952288247, -0.00040498024455744525, -0.00040498024455744546, -2.0249012227872336e-05, -1.0124506113936161e-05, -4.0498024455744657e-05, -4.5560277512712447e-05, -2.0249012227872336e-05, -5.5684783626648811e-05, -5.0622530569680839e-06, -5.0622530569680754e-06, -8.0996048911489207e-05, -4.0498024455744603e-05, -4.049802445574463e-05, -5.0622530569680805e-06, -5.0622530569680856e-06, -2.0249012227872329e-05, -2.0249012227872329e-05, -8.0996048911489342e-05, -4.0498024455744657e-05, -5.0622530569680771e-06, -0.0008200849952288234, -4.0498024455744685e-05, -4.0498024455744685e-05, -5.0622530569680805e-06, -2.0249012227872329e-05, -2.0249012227872329e-05, -1.0124506113936154e-05, -1.0124506113936154e-05, -1.5186759170904289e-05, -5.0622530569680856e-06, -1.0124506113936154e-05, -1.0124506113936154e-05, -5.0622530569680754e-06, -5.0622530569680822e-06, -2.0249012227872356e-05, -6.0747036683617047e-05, -4.0498024455744603e-05, -5.0622530569680788e-06, -5.0622530569680754e-06, -9.1120555025425151e-05, -5.0622530569680839e-06, -2.0249012227872349e-05, -1.0124506113936151e-05, -8.0996048911489288e-05, -8.0996048911489261e-05, -2.5311265284840345e-05, -2.0249012227872329e-05, -1.0124506113936178e-05, -3.0373518341808557e-05, -0.00043029150984229112, -5.0622530569680805e-06, -2.0249012227872329e-05, -2.0249012227872329e-05, -8.0996048911489261e-05, -8.0996048911489288e-05, -2.0249012227872322e-05, -2.0249012227872302e-05, -2.0249012227872302e-05, -5.0622530569680788e-06, -0.00023286364062053027, -5.0622530569680649e-05, -5.0622530569680822e-06, -4.0498024455744685e-05, -4.0498024455744712e-05, -4.0498024455744685e-05, -8.0996048911489288e-05, -4.0498024455744705e-05, -8.0996048911489261e-05, -4.0498024455744712e-05, -4.0498024455744712e-05, -0.0015541116884891888, -4.0498024455744657e-05, -0.0010124506113936092, -4.049802445574463e-05, -1.0124506113936171e-05, -0.00030373518341807979, -6.0747036683617115e-05, -2.531126528484007e-05, -0.00030373518341808461, -5.0622530569680771e-06, -4.0498024455744671e-05, -4.0498024455744671e-05, -0.0008200849952288234, -4.0498024455744644e-05, -4.0498024455744657e-05, -0.0011592559500456798, -1.5186759170904279e-05, -0.00101245061139361, -4.0498024455744644e-05, -4.0498024455744644e-05, -5.0622530569680822e-06, -4.0498024455744685e-05, -4.0498024455744671e-05, -5.0622530569680788e-06, -8.0996048911489261e-05, -8.0996048911489288e-05, -1.0124506113936168e-05, -2.0249012227872329e-05, -2.0249012227872329e-05, -4.0498024455744657e-05, -4.0498024455744657e-05, -0.0008200849952288247, -4.0498024455744685e-05, -4.0498024455744685e-05, -0.00013668083253813782, -0.00048597629346893692, -4.0498024455744644e-05, -0.00035941996704473393, -6.0747036683617251e-05, -6.0747036683617251e-05, -4.0498024455744671e-05, -4.0498024455744685e-05, -5.0622530569680676e-05, -4.0498024455744685e-05, -5.0622530569680724e-05, -0.00010630731419632834, -4.049802445574463e-05, -2.5311265284840328e-05, -0.00011643182031026485, -4.0498024455744644e-05, -6.0747036683617115e-05, -1.5186759170904286e-05, -2.5311265284840098e-05, -1.0124506113936147e-05, -5.0622530569680822e-06, -5.0622530569680805e-06, -4.0498024455744671e-05, -6.0747036683617196e-05, -3.0373518341808557e-05, -2.0249012227872315e-05, -4.0498024455744671e-05, -4.0498024455744671e-05, -4.0498024455744712e-05, -8.0996048911489464e-05, -4.0498024455744644e-05, -2.0249012227872329e-05, -8.0996048911489274e-05, -4.0498024455744617e-05, -2.0249012227872329e-05, -4.0498024455744712e-05, -5.0622530569680771e-06, -4.0498024455744617e-05, -4.0498024455744617e-05, -8.0996048911489125e-05, -0.00012149407336723412, -4.0498024455744644e-05, -8.0996048911489342e-05, -8.0996048911489369e-05, -4.049802445574463e-05, -4.049802445574463e-05, -4.0498024455744644e-05, -4.0498024455744657e-05, -4.5560277512711877e-05, -0.00017211660393691186, -1.0124506113936183e-05, -4.0498024455744671e-05, -4.0498024455744617e-05, -4.5560277512711904e-05, -0.00013161857948116914, -4.0498024455744671e-05, -4.0498024455744644e-05, -4.0498024455744671e-05, -2.0249012227872329e-05, -2.0249012227872329e-05, -5.0622530569680822e-06, -5.0622530569680737e-06, -5.0622530569680822e-06, -1.0124506113936161e-05, -8.6058301968455579e-05, -0.0001518675917090409, -6.0747036683617115e-05, -3.0373518341808551e-05, -5.0622530569680788e-06, -2.0249012227872329e-05, -8.0996048911489315e-05, -0.00012149407336723439, -4.0498024455744671e-05, -2.0249012227872329e-05, -8.0996048911489288e-05, -8.0996048911489315e-05, -2.0249012227872329e-05, -6.0747036683617156e-05, -4.0498024455744644e-05, -5.0622530569680839e-06, -1.0124506113936178e-05, -2.0249012227872329e-05, -2.0249012227872322e-05, -4.5560277512712006e-05, -2.5311265284840314e-05, -4.0498024455744657e-05, -8.0996048911489342e-05, -0.00036448222010170077, -2.0249012227872329e-05, -5.0622530569680788e-06, -0.00030373518341807979, -4.0498024455744657e-05, -0.00024298814673446884, -0.00024298814673446846, -0.00025311265284840175, -0.00024298814673446884, 0.00096182808082393486, -2.0249012227872329e-05, -4.0498024455744644e-05, -4.0498024455744644e-05, -2.0249012227872302e-05, -2.0249012227872302e-05, -4.0498024455744671e-05, -5.0622530569680839e-06, -4.0498024455744671e-05, -5.0622530569680754e-06, -5.0622530569680839e-06, -0.00035435771398776195, -2.0249012227872302e-05, -2.0249012227872302e-05, -0.00030879743647505714, -1.0124506113936171e-05, -0.00036448222010170082, -0.00036448222010170087, -4.0498024455744657e-05, -5.0622530569680822e-06, -4.0498024455744657e-05, -0.00036448222010170087, -0.00036448222010170087, -4.049802445574463e-05, -4.049802445574463e-05, -1.0124506113936154e-05, -1.0124506113936161e-05, -8.0996048911489179e-05, -4.049802445574463e-05, -4.049802445574463e-05, -1.5186759170904299e-05, -8.0996048911489179e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6905987090531947e-05, -9.6423867751772207e-05, -2.4105966937943111e-06, -4.8211933875886122e-07, -1.4463580162765973e-06, -4.8211933875886527e-06, -3.856954710070933e-05, -9.6423867751772266e-07, -4.4354979165815401e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100709337e-05, -3.856954710070933e-05, -3.8569547100708898e-06, -0.00010944108989826113, -9.6423867751772224e-07, -9.6423867751773494e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.4105966937943111e-06, -1.4463580162765986e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -7.2317900813830214e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.3390740488297166e-06, -3.8569547100708906e-06, -7.2317900813830002e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, 0.0019602972313935386, -3.8569547100708915e-06, -9.6423867751772224e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886434e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -8.1960287589005878e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971556e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -4.8211933875886442e-06, -5.3033127263474609e-06, -1.9284773550354445e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212779e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594502e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652543e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -4.0498024455744671e-05, 0.0019602972313935386, -4.2426501810779721e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709106e-05, -7.7139094201417796e-06, -3.9051666439468047e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.0498024455744664e-05, -3.856954710070933e-05, -3.856954710070893e-05, -3.8569547100709194e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886595e-06, -9.6423867751772952e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -1.1570864130212791e-05, -1.4463580162766198e-06, -4.2426501810780026e-05, -7.7139094201417813e-06, -3.4712592390637943e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971524e-05, -7.713909420141783e-06, -3.8569547100708915e-06, -3.3748353713120676e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390637929e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390637929e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886408e-06, -1.4463580162765986e-06, -3.8569547100708906e-06, -7.2317900813829731e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325532129e-06, -1.4463580162765825e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730475e-05, -1.1088744791453855e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532192e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709194e-05, -3.856954710070893e-05, -7.8103332878936473e-05, -3.8569547100708998e-05, -3.8569547100709106e-05, -1.9284773550354445e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297081e-06, -1.9284773550354445e-06, -5.303312726347488e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936296e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4463580162765986e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651063978e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -8.6781480976594671e-06, -4.8211933875886144e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -7.713909420141783e-06, -7.713909420141783e-06, -2.4105966937943234e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325531964e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886144e-07, -2.2177489582907619e-05, -4.8211933875886222e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00014801063699897241, -3.8569547100708906e-06, -9.6423867751772817e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.8927160325531709e-05, -5.7854320651063961e-06, -2.4105966937943187e-06, -2.8927160325532031e-05, -4.8211933875886144e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936296e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577912, -1.4463580162765978e-06, -9.6423867751772911e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936473e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489224e-05, -4.6283456520851155e-05, -3.8569547100708906e-06, -3.4230473051878874e-05, -5.785432065106391e-06, -5.785432065106391e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886629e-06, -3.8569547100708898e-06, -4.8211933875886552e-06, -1.0124506113936161e-05, -3.8569547100708906e-06, -2.4105966937943285e-06, -1.1088744791453794e-05, -3.8569547100708906e-06, -5.7854320651063961e-06, -1.446358016276617e-06, -2.4105966937943183e-06, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063936e-06, -2.892716032553218e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.1570864130212785e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297369e-06, -1.6392057517801281e-05, -9.6423867751772202e-07, -3.8569547100708889e-06, -3.8569547100708915e-06, -4.3390740488297369e-06, -1.253510280773028e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -8.1960287589005573e-06, -1.446358016276587e-05, -5.7854320651063961e-06, -2.8927160325532129e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417813e-06, -1.1570864130212785e-05, -3.8569547100708889e-06, -1.9284773550354453e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354453e-06, -5.7854320651063953e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.3390740488297302e-06, -2.4105966937943246e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -3.4712592390637882e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531703e-05, -3.8569547100708906e-06, -2.314172826042592e-05, -2.3141728260425571e-05, -2.4105966937943109e-05, -2.314172826042592e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.3748353713120388e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.940927966429065e-05, -9.6423867751772245e-07, -3.4712592390637929e-05, -3.4712592390637929e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390637943e-05, -3.4712592390637868e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765984e-06, -7.713909420141783e-06, -4.2426501810779551e-05, -4.2426501810779592e-05, -4.2426501810779606e-05, -4.2426501810779551e-05, -2.1213250905389884e-05, -2.1213250905389884e-05, -4.2426501810779782e-05, -4.2426501810779768e-05, -5.3033127263474575e-06, -5.3033127263474558e-06, -0.0010659658579958448, -0.0010606625452695005, -2.6516563631737425e-05, -5.3033127263474575e-06, -1.5909938179042164e-05, -5.3033127263474714e-05, -0.00042426501810779879, -1.0606625452694912e-05, -0.00048790477082396954, -5.3033127263474727e-06, -8.4853003621559252e-05, -8.4853003621559225e-05, -4.2426501810779768e-05, -4.2426501810779782e-05, 0.019217276842928351, -0.00042426501810779944, -4.2426501810779565e-05, -0.0012038519888808855, -1.0606625452694884e-05, -0.0010606625452695021, -8.4853003621559279e-05, -4.2426501810779606e-05, -4.2426501810779565e-05, -5.3033127263474761e-06, -5.3033127263474507e-06, 0.0019217276842928342, -4.2426501810779633e-05, -1.0606625452694884e-05, -1.0606625452694879e-05, -5.3033127263474727e-06, -5.3033127263474609e-06, -4.2426501810779734e-05, -2.6516563631737367e-05, -1.5909938179042269e-05, -2.1213250905389884e-05, -2.1213250905389877e-05, -5.3033127263474575e-06, -7.9549690895212684e-05, -4.2426501810779714e-05, -4.2426501810779721e-05, -4.7729814537127542e-05, -4.2426501810779755e-05, -7.9549690895212806e-05, -1.0606625452694913e-05, -5.3033127263474456e-06, -4.2426501810779768e-05, -4.2426501810779768e-05, -5.3033127263474524e-06, -5.3033127263474626e-06, -4.2426501810779721e-05, -4.2426501810779707e-05, -1.0606625452694868e-05, -5.3033127263474643e-06, -4.2426501810779728e-05, -8.485300362155932e-05, -5.3033127263474775e-05, -4.242650181077966e-05, -8.4853003621559374e-05, -5.3033127263474524e-06, -4.2426501810779728e-05, -9.0156316347907812e-05, -4.2426501810779673e-05, -4.2426501810779687e-05, -8.4853003621559211e-05, -0.00016970600724311853, -0.000132582818158687, -4.2426501810779795e-05, -8.4853003621559238e-05, -8.4853003621559238e-05, -2.1213250905389776e-05, -4.24265018107797e-05, -5.3033127263474781e-05, -5.8336439989822522e-05, -2.1213250905389776e-05, -8.4853003621559008e-05, -4.2426501810779673e-05, -4.242650181077968e-05, -4.242650181077968e-05, -1.0606625452694869e-05, -4.2426501810779565e-05, -4.2426501810779795e-05, -5.3033127263474482e-06, -4.2426501810779795e-05, -1.0606625452694905e-05, -4.2426501810779565e-05, -4.2426501810779646e-05, -4.242650181077966e-05, -5.3033127263474524e-06, -8.4853003621559184e-05, -8.4853003621559184e-05, -5.3033127263474575e-06, -4.2426501810779673e-05, -4.2426501810779673e-05, -5.3033127263474592e-06, -4.2426501810779538e-05, -4.2426501810779518e-05, -4.2426501810779687e-05, -4.2426501810779538e-05, -0.00012727950543233739, -4.2426501810779578e-05, -4.2426501810779728e-05, -4.2426501810779734e-05, -5.3033127263474744e-06, -4.2426501810779741e-05, -4.2426501810779734e-05, -8.4853003621559347e-05, -2.1213250905389877e-05, -9.5459629074255424e-05, -2.1213250905389884e-05, -5.3033127263474439e-06, -1.0606625452694918e-05, -6.8943065442517474e-05, -4.242650181077966e-05, -8.4853003621559238e-05, -0.00044547826901318723, -4.2426501810779721e-05, 0.021139004527221204, -4.24265018107797e-05, -4.2426501810779687e-05, -8.4853003621559238e-05, -0.00042426501810779766, -8.4853003621559238e-05, -0.00042956833083414449, -5.3033127263474761e-06, -8.4853003621559293e-05, -8.4853003621559238e-05, -2.1213250905389789e-05, -0.00044547826901318723, -0.00042426501810779879, -0.0004242650181077982, -0.00042426501810779841, -5.3033127263474524e-06, -2.1213250905390115e-05, -5.3033127263474659e-06, -5.3033127263474473e-06, -5.3033127263474422e-06, -4.2426501810779633e-05, -4.2426501810779633e-05, -4.2426501810779646e-05, -4.242650181077966e-05, -5.3033127263474659e-06, -5.3033127263474643e-06, -5.3033127263474744e-06, -4.2426501810779606e-05, -5.3033127263474673e-05, -0.00010606625452694962, -8.485300362155913e-05, -8.4853003621559401e-05, -4.2426501810779606e-05, -0.00012727950543233832, -1.5909938179042276e-05, -0.00046669151991857698, -8.4853003621559374e-05, -0.0003818385162970172, -5.3033127263474541e-06, -5.3033127263474592e-06, -0.00013258281815868743, -8.4853003621559347e-05, -4.2426501810779714e-05, -3.7123189084432021e-05, -2.1213250905389952e-05, -1.0606625452694915e-05, -0.00038183851629701725, -1.0606625452694913e-05, -2.1213250905389884e-05, -2.1213250905389884e-05, -0.0003818385162970172, -4.2426501810779755e-05, -5.3033127263474626e-06, -4.24265018107797e-05, -5.3033127263474744e-06, -4.2426501810779687e-05, -5.3033127263474836e-05, -1.5909938179042317e-05, -4.24265018107797e-05, -7.9549690895212548e-05, -5.3033127263474727e-06, -4.2426501810779741e-05, -1.0606625452694884e-05, -1.0606625452694879e-05, -1.0606625452694898e-05, -5.3033127263474575e-06, -3.181987635808466e-05, -1.5909938179042293e-05, -4.2426501810779633e-05, -4.2426501810779646e-05, -8.4853003621559293e-05, -0.00013788613088503446, -0.00012197619270599242, -5.3033127263474727e-06, -8.4853003621559211e-05, -4.2426501810779592e-05, -3.1819876358084633e-05, -1.0606625452694935e-05, -5.3033127263474643e-06, -5.3033127263474473e-06, -0.00042426501810779841, -0.0004242650181077982, -0.00085913666166828238, -0.0004242650181077982, -0.00042426501810779766, -2.1213250905389776e-05, -1.0606625452694925e-05, -4.2426501810779728e-05, -4.7729814537127515e-05, -2.1213250905389776e-05, -5.8336439989821973e-05, -5.3033127263474558e-06, -5.3033127263474727e-06, -8.4853003621559509e-05, -4.2426501810779795e-05, -4.2426501810779728e-05, -5.3033127263474592e-06, -5.3033127263474575e-06, -2.1213250905389823e-05, -2.1213250905389823e-05, -8.4853003621559238e-05, -4.2426501810779592e-05, -5.3033127263474693e-06, -0.00085913666166828834, -4.2426501810779633e-05, -4.2426501810779633e-05, -5.3033127263474575e-06, -2.1213250905389823e-05, -2.1213250905389823e-05, -1.0606625452694949e-05, -1.0606625452694949e-05, -1.5909938179042283e-05, -5.3033127263474566e-06, -1.0606625452694949e-05, -1.0606625452694949e-05, -5.3033127263474744e-06, -5.3033127263474524e-06, -2.1213250905389976e-05, -6.3639752716169442e-05, -4.2426501810779795e-05, -5.3033127263474659e-06, -5.3033127263474727e-06, -9.5459629074255424e-05, -5.3033127263474626e-06, -2.1213250905389965e-05, -1.0606625452694912e-05, -8.4853003621559536e-05, -8.4853003621559564e-05, -2.651656363173737e-05, -2.121325090538985e-05, -1.0606625452694873e-05, -3.1819876358084755e-05, -0.0004507815817395376, -5.3033127263474592e-06, -2.121325090538985e-05, -2.1213250905389854e-05, -8.4853003621559564e-05, -8.4853003621559509e-05, -2.1213250905389837e-05, -2.1213250905389898e-05, -2.1213250905389898e-05, -5.3033127263474659e-06, -0.00024395238541198577, -5.3033127263474734e-05, -5.3033127263474524e-06, -4.2426501810779633e-05, -4.2426501810779578e-05, -4.2426501810779633e-05, -8.4853003621559509e-05, -4.2426501810780005e-05, -8.4853003621559564e-05, -4.2426501810779578e-05, -4.2426501810779578e-05, -0.001628117006988676, -4.2426501810779592e-05, -0.0010606625452695044, -4.2426501810779741e-05, -1.0606625452694913e-05, -0.00031819876358085139, -6.3639752716169293e-05, -2.6516563631737692e-05, -0.00031819876358085117, -5.303312726347471e-06, -4.242650181077968e-05, -4.242650181077968e-05, -0.00085913666166828834, -4.2426501810779768e-05, -4.2426501810779768e-05, -0.0012144586143335743, -1.5909938179042269e-05, -0.0010606625452695038, -4.2426501810779673e-05, -4.2426501810779673e-05, -5.3033127263474676e-06, -4.2426501810779673e-05, -4.2426501810779687e-05, -5.3033127263474676e-06, -8.4853003621559564e-05, -8.4853003621559536e-05, -1.0606625452694898e-05, -2.1213250905389823e-05, -2.1213250905389823e-05, -4.2426501810779592e-05, -4.2426501810779592e-05, -0.00085913666166828238, -4.2426501810779646e-05, -4.2426501810779633e-05, -0.00014318944361138293, -0.00050911802172935348, -4.2426501810779673e-05, -0.0003765352035706722, -6.3639752716168914e-05, -6.3639752716168914e-05, -4.2426501810779592e-05, -4.2426501810779518e-05, -5.3033127263474666e-05, -4.2426501810779538e-05, -5.3033127263474673e-05, -0.00011136956725329785, -4.2426501810779728e-05, -2.651656363173735e-05, -0.0001219761927059927, -4.2426501810779775e-05, -6.363975271616932e-05, -1.5909938179042293e-05, -2.6516563631737692e-05, -1.0606625452694888e-05, -5.3033127263474524e-06, -5.3033127263474609e-06, -4.2426501810779565e-05, -6.3639752716169076e-05, -3.181987635808464e-05, -2.1213250905389871e-05, -4.2426501810779606e-05, -4.2426501810779565e-05, -4.2426501810779578e-05, -8.4853003621559943e-05, -4.2426501810779768e-05, -2.1213250905389854e-05, -8.4853003621559564e-05, -4.2426501810779768e-05, -2.121325090538985e-05, -4.2426501810779578e-05, -5.303312726347471e-06, -4.2426501810779768e-05, -4.2426501810779768e-05, -8.4853003621559184e-05, -0.00012727950543233845, -4.24265018107797e-05, -8.4853003621559279e-05, -8.4853003621559225e-05, -4.2426501810779768e-05, -4.2426501810779782e-05, -4.2426501810779775e-05, -4.2426501810779761e-05, -4.7729814537127956e-05, -0.00018031263269581622, -1.0606625452694859e-05, -4.2426501810779578e-05, -4.2426501810779768e-05, -4.7729814537127922e-05, -0.00013788613088503522, -4.2426501810779592e-05, -4.24265018107797e-05, -4.2426501810779551e-05, -2.121325090538985e-05, -2.1213250905389854e-05, -5.3033127263474541e-06, -5.3033127263474422e-06, -5.3033127263474524e-06, -1.0606625452694915e-05, -9.0156316347907026e-05, -0.00015909938179042529, -6.3639752716169293e-05, -3.181987635808466e-05, -5.3033127263474626e-06, -2.121325090538986e-05, -8.4853003621559374e-05, -0.00012727950543233794, -4.2426501810779578e-05, -2.121325090538986e-05, -8.4853003621559428e-05, -8.4853003621559401e-05, -2.121325090538986e-05, -6.3639752716169158e-05, -4.2426501810779768e-05, -5.3033127263474473e-06, -1.0606625452694869e-05, -2.121325090538986e-05, -2.1213250905389837e-05, -4.7729814537127814e-05, -2.6516563631737377e-05, -4.2426501810779633e-05, -8.485300362155932e-05, -0.00038183851629701795, -2.1213250905389789e-05, -5.3033127263474659e-06, -0.00031819876358085139, -4.2426501810779734e-05, -0.00025455901086467652, -0.00025455901086467674, -0.00026516563631737394, -0.00025455901086467652, -2.1213250905389789e-05, -2.1213250905389789e-05, -4.24265018107797e-05, -4.24265018107797e-05, -2.1213250905389898e-05, -2.1213250905389898e-05, -4.2426501810779565e-05, -5.303312726347449e-06, -4.2426501810779565e-05, -5.3033127263474744e-06, -5.3033127263474592e-06, -0.00037123189084432807, -2.1213250905389898e-05, -2.1213250905389898e-05, -0.00032350207630719768, -1.0606625452694905e-05, -0.0003818385162970172, -0.00038183851629701725, -4.2426501810779728e-05, -5.3033127263474693e-06, -4.2426501810779741e-05, -0.0003818385162970172, -0.00038183851629702061, -4.2426501810779728e-05, -4.2426501810779714e-05, -1.0606625452694935e-05, -1.0606625452694908e-05, -8.4853003621559564e-05, -4.2426501810779714e-05, -4.2426501810779728e-05, -1.5909938179042256e-05, -8.4853003621559564e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6905987090531865e-05, -9.6423867751772166e-05, -2.4105966937943119e-06, -4.8211933875886133e-07, -1.4463580162765958e-06, -4.8211933875886544e-06, -3.8569547100709343e-05, -9.6423867751772287e-07, -4.4354979165815414e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100709343e-05, -3.8569547100709343e-05, -3.8569547100708898e-06, -0.00010944108989826121, -9.6423867751772245e-07, -9.6423867751773426e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.4105966937943119e-06, -1.4463580162765969e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813830188e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.3390740488297234e-06, -3.8569547100708915e-06, -7.2317900813829943e-06, -9.6423867751772266e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886442e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -8.1960287589006267e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -1.5427818840283556e-05, -1.2052983468971551e-05, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.8211933875886459e-06, -5.3033127263474592e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -3.8569547100708915e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, 0.0019525833219733973, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594637e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652543e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -4.0498024455744644e-05, -3.8569547100708915e-06, -4.24265018107797e-05, 0.0019602972313935386, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.85695471007091e-05, -7.7139094201417813e-06, -3.9051666439468101e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.049802445574463e-05, -3.8569547100709343e-05, -3.8569547100709066e-05, -3.8569547100709167e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886612e-06, -9.6423867751772986e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -3.8569547100708906e-06, -1.1570864130212777e-05, -1.4463580162766183e-06, -4.2426501810780039e-05, -7.7139094201417813e-06, -3.4712592390637997e-05, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971594e-05, -7.713909420141783e-06, -3.8569547100708915e-06, -3.3748353713120384e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.4712592390637984e-05, -9.6423867751772266e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390637984e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886425e-06, -1.4463580162765969e-06, -3.8569547100708915e-06, -7.2317900813829723e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325531633e-06, -1.4463580162766149e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -1.2535102807730451e-05, -1.1088744791453859e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532158e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709167e-05, -3.8569547100709066e-05, -7.8103332878936418e-05, -3.8569547100709066e-05, -3.85695471007091e-05, -1.9284773550354449e-06, -9.6423867751772287e-07, -3.8569547100708889e-06, -4.3390740488297369e-06, -1.9284773550354449e-06, -5.3033127263474871e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936256e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162765969e-06, -4.8211933875886133e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -5.7854320651063893e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976594823e-06, -4.8211933875886144e-07, -1.928477355035444e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -7.713909420141783e-06, -2.4105966937943225e-06, -1.9284773550354457e-06, -9.6423867751772266e-07, -2.892716032553193e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.2177489582907629e-05, -4.8211933875886239e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00014801063699897217, -3.8569547100708906e-06, -9.6423867751772776e-05, -3.8569547100708915e-06, -9.6423867751772266e-07, -2.8927160325531767e-05, -5.7854320651063893e-06, -2.4105966937943187e-06, -2.892716032553193e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936256e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -0.00011040532857577925, -1.4463580162765961e-06, -9.6423867751772857e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936418e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.3017222146489225e-05, -4.6283456520851128e-05, -3.8569547100708915e-06, -3.4230473051878975e-05, -5.7854320651063842e-06, -5.7854320651063842e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886645e-06, -3.8569547100708898e-06, -4.8211933875886527e-06, -1.0124506113936147e-05, -3.8569547100708915e-06, -2.4105966937943289e-06, -1.1088744791453811e-05, -3.8569547100708915e-06, -5.7854320651063893e-06, -1.4463580162766153e-06, -2.4105966937943187e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063842e-06, -2.8927160325532141e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.1570864130212775e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.3390740488297446e-06, -1.6392057517801328e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488297446e-06, -1.2535102807730463e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -8.1960287589005657e-06, -1.4463580162765867e-05, -5.7854320651063876e-06, -2.8927160325531633e-06, -4.8211933875886144e-07, -1.9284773550354457e-06, -7.7139094201417813e-06, -1.157086413021277e-05, -3.8569547100708898e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -5.7854320651063885e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.3390740488297352e-06, -2.4105966937943255e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.4712592390637855e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.892716032553176e-05, -3.8569547100708915e-06, -2.3141728260425893e-05, -2.3141728260425544e-05, -2.4105966937943099e-05, -2.3141728260425893e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.374835371312057e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.9409279664290765e-05, -9.6423867751772266e-07, -3.4712592390637984e-05, -3.4712592390637984e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.4712592390637997e-05, -3.4712592390637929e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765969e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6905987090531757e-05, -9.642386775177203e-05, -2.4105966937943136e-06, -4.8211933875886133e-07, -1.4463580162765946e-06, -4.8211933875886578e-06, -3.8569547100709357e-05, -9.6423867751772287e-07, -4.4354979165815469e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100709357e-05, -3.8569547100709357e-05, -3.8569547100708898e-06, -0.00010944108989826132, -9.6423867751772245e-07, -9.6423867751773318e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.4105966937943128e-06, -1.4463580162765956e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813830121e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.3390740488297285e-06, -3.8569547100708915e-06, -7.2317900813829875e-06, -9.6423867751772266e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886468e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -8.1960287589006233e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -1.5427818840283556e-05, -1.2052983468971534e-05, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.8211933875886485e-06, -5.3033127263474575e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -3.8569547100708915e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, 0.0019602972313935386, -3.8569547100708898e-06, -1.1570864130212765e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594739e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652559e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -4.0498024455744644e-05, -3.8569547100708915e-06, -4.2426501810779687e-05, -3.8569547100708915e-06, 0.0019602972313935386, -7.7139094201417796e-06, -3.856954710070912e-05, -7.7139094201417813e-06, -3.9051666439468114e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.049802445574463e-05, -3.8569547100709357e-05, -3.8569547100709093e-05, -3.8569547100709188e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886645e-06, -9.642386775177302e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -3.8569547100708906e-06, -1.1570864130212774e-05, -1.4463580162766166e-06, -4.2426501810780026e-05, -7.7139094201417813e-06, -3.4712592390638038e-05, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971575e-05, -7.713909420141783e-06, -3.8569547100708915e-06, -3.3748353713120426e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.4712592390638038e-05, -9.6423867751772266e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390638024e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886442e-06, -1.4463580162765956e-06, -3.8569547100708915e-06, -7.2317900813829655e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325531608e-06, -1.4463580162766136e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -1.2535102807730451e-05, -1.1088744791453872e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532133e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709188e-05, -3.8569547100709093e-05, -7.8103332878936473e-05, -3.8569547100709093e-05, -3.856954710070912e-05, -1.9284773550354449e-06, -9.6423867751772287e-07, -3.8569547100708889e-06, -4.3390740488297446e-06, -1.9284773550354449e-06, -5.3033127263474854e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936296e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162765956e-06, -4.8211933875886133e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -5.7854320651063842e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976594959e-06, -4.8211933875886144e-07, -1.928477355035444e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -7.713909420141783e-06, -2.4105966937943242e-06, -1.9284773550354457e-06, -9.6423867751772266e-07, -2.8927160325531904e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.2177489582907656e-05, -4.8211933875886273e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.000148010636998972, -3.8569547100708906e-06, -9.6423867751772654e-05, -3.8569547100708915e-06, -9.6423867751772266e-07, -2.8927160325531787e-05, -5.7854320651063842e-06, -2.4105966937943204e-06, -2.892716032553193e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936296e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -0.00011040532857577936, -1.4463580162765948e-06, -9.6423867751772749e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936473e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.3017222146489225e-05, -4.6283456520851169e-05, -3.8569547100708915e-06, -3.4230473051879036e-05, -5.7854320651063792e-06, -5.7854320651063792e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886662e-06, -3.8569547100708898e-06, -4.8211933875886561e-06, -1.0124506113936147e-05, -3.8569547100708915e-06, -2.4105966937943306e-06, -1.1088744791453825e-05, -3.8569547100708915e-06, -5.7854320651063842e-06, -1.4463580162766141e-06, -2.4105966937943204e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063792e-06, -2.8927160325532124e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.1570864130212762e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.3390740488297496e-06, -1.6392057517801342e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488297496e-06, -1.2535102807730463e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -8.1960287589005691e-06, -1.4463580162765853e-05, -5.7854320651063809e-06, -2.8927160325531608e-06, -4.8211933875886144e-07, -1.9284773550354457e-06, -7.7139094201417813e-06, -1.157086413021276e-05, -3.8569547100708898e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -5.7854320651063834e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.3390740488297429e-06, -2.4105966937943272e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.4712592390637895e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531781e-05, -3.8569547100708915e-06, -2.3141728260425872e-05, -2.3141728260425523e-05, -2.4105966937943069e-05, -2.3141728260425872e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.374835371312053e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.9409279664290779e-05, -9.6423867751772266e-07, -3.4712592390638024e-05, -3.4712592390638038e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.4712592390638038e-05, -3.471259239063797e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765956e-06, -7.713909420141783e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -0.00019381197418106406, -0.00019284773550354455, -4.8211933875886425e-06, -9.6423867751772224e-07, -2.8927160325532124e-06, -9.642386775177346e-06, -7.7139094201419012e-05, -1.9284773550354449e-06, -8.8709958331630639e-05, -9.6423867751772245e-07, -1.5427818840283552e-05, -1.5427818840283552e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201419012e-05, -7.7139094201418999e-05, -7.7139094201417762e-06, -0.00021888217979652264, -1.928477355035444e-06, -0.00019284773550354712, -1.5427818840283552e-05, -7.7139094201417796e-06, -7.7139094201417762e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.928477355035444e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417745e-06, -4.8211933875886425e-06, -2.8927160325531434e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -1.4463580162766078e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -8.6781480976594061e-06, -7.7139094201417796e-06, -1.4463580162766031e-05, -1.9284773550354445e-06, -9.6423867751772202e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -1.5427818840283559e-05, -9.6423867751772867e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -9.6423867751772224e-07, -7.7139094201417796e-06, -1.6392057517801145e-05, -7.7139094201417779e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -3.0855637680567132e-05, -2.4105966937942757e-05, -7.7139094201417796e-06, -1.5427818840283559e-05, 0.003912880553366937, -3.8569547100708881e-06, -7.7139094201417796e-06, -9.6423867751772867e-06, -1.0606625452694895e-05, -3.8569547100708881e-06, -1.5427818840283556e-05, -7.7139094201417796e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -1.928477355035444e-06, -7.7139094201417779e-06, -7.7139094201417796e-06, -9.6423867751772202e-07, -7.7139094201417796e-06, -1.9284773550354445e-06, -7.7139094201417779e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -1.5427818840283552e-05, -1.5427818840283552e-05, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -2.3141728260425632e-05, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -3.8569547100708898e-06, -1.7356296195318846e-05, -3.8569547100708898e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.2535102807730519e-05, -7.7139094201417796e-06, -1.5427818840283556e-05, -8.0996048911489288e-05, -7.7139094201417796e-06, -8.4853003621559238e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, 0.003912880553366937, -7.7139094201418524e-05, -1.5427818840283559e-05, -7.8103332878936446e-05, -9.6423867751772245e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708881e-06, -8.0996048911489288e-05, -7.7139094201419012e-05, -7.7139094201418457e-05, -7.713909420141866e-05, -9.6423867751772224e-07, -3.8569547100708881e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772202e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417779e-06, -9.642386775177363e-06, -1.9284773550354679e-05, -1.5427818840283556e-05, -1.5427818840283559e-05, -7.7139094201417779e-06, -2.3141728260425656e-05, -2.8927160325532484e-06, -8.4853003621559889e-05, -1.5427818840283556e-05, -6.9425184781275655e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943214e-05, -1.5427818840283559e-05, -7.7139094201417796e-06, -6.7496707426240658e-06, -3.8569547100708881e-06, -1.9284773550354445e-06, -6.9425184781275628e-05, -1.9284773550354445e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -6.9425184781275628e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751773223e-06, -2.8927160325532065e-06, -7.7139094201417796e-06, -1.4463580162765982e-05, -9.6423867751772245e-07, -7.7139094201417796e-06, -1.928477355035444e-06, -1.928477355035444e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -5.7854320651064461e-06, -2.8927160325532425e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -1.5427818840283559e-05, -2.507020561546097e-05, -2.217748958290767e-05, -9.6423867751772245e-07, -1.5427818840283559e-05, -7.7139094201417796e-06, -5.7854320651064579e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.713909420141866e-05, -7.7139094201418457e-05, -0.00015620666575787335, -7.7139094201418457e-05, -7.7139094201418524e-05, -3.8569547100708881e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -8.6781480976593892e-06, -3.8569547100708881e-06, -1.0606625452694951e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.5427818840283556e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -0.000156206665757873, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.8927160325532065e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -3.8569547100708881e-06, -1.1570864130212833e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.7356296195318887e-05, -9.6423867751772245e-07, -3.8569547100708881e-06, -1.9284773550354445e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -4.8211933875886645e-06, -3.8569547100708898e-06, -1.9284773550354445e-06, -5.7854320651064113e-06, -8.196028758900664e-05, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -4.435497916581515e-05, -9.6423867751772867e-06, -9.6423867751772224e-07, -7.7139094201417779e-06, -7.7139094201417762e-06, -7.7139094201417779e-06, -1.5427818840283559e-05, -7.7139094201417762e-06, -1.5427818840283559e-05, -7.7139094201417762e-06, -7.7139094201417762e-06, -0.00029602127399794563, -7.7139094201417796e-06, -0.00019284773550354509, -7.7139094201417796e-06, -1.9284773550354445e-06, -5.7854320651063561e-05, -1.1570864130212829e-05, -4.8211933875886586e-06, -5.7854320651064205e-05, -9.6423867751772245e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -0.000156206665757873, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.0002208106571515578, -2.8927160325532048e-06, -0.00019284773550354593, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772245e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00015620666575787335, -7.7139094201417779e-06, -7.7139094201417779e-06, -2.603444429297843e-05, -9.2566913041702609e-05, -7.7139094201417796e-06, -6.8460946103757707e-05, -1.1570864130212819e-05, -1.1570864130212819e-05, -7.7139094201417762e-06, -7.7139094201417762e-06, -9.6423867751773681e-06, -7.7139094201417762e-06, -9.642386775177346e-06, -2.0249012227872315e-05, -7.7139094201417796e-06, -4.8211933875886781e-06, -2.2177489582907575e-05, -7.7139094201417796e-06, -1.1570864130212829e-05, -2.8927160325532434e-06, -4.8211933875886578e-06, -1.928477355035444e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -7.7139094201417762e-06, -1.1570864130212823e-05, -5.7854320651064562e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -1.5427818840283552e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -1.5427818840283552e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -2.3141728260425645e-05, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.5427818840283552e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -8.6781480976594468e-06, -3.2784115035602493e-05, -1.928477355035444e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -8.6781480976594468e-06, -2.507020561546099e-05, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.639205751780105e-05, -2.8927160325531814e-05, -1.1570864130212829e-05, -5.7854320651064461e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -1.5427818840283556e-05, -2.3141728260425642e-05, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -1.1570864130212828e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -1.928477355035444e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -8.6781480976594332e-06, -4.8211933875886713e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -6.9425184781275655e-05, -3.8569547100708881e-06, -9.6423867751772245e-07, -5.7854320651063548e-05, -7.7139094201417796e-06, -4.6283456520851989e-05, -4.6283456520851291e-05, -4.8211933875886252e-05, -4.6283456520851989e-05, -3.8569547100708881e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -9.6423867751772245e-07, -7.7139094201417779e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -6.7496707426240626e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -5.8818559328581381e-05, -1.9284773550354445e-06, -6.9425184781275628e-05, -6.9425184781275628e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -6.9425184781275655e-05, -6.942518478127552e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354445e-06, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.8927160325532057e-06, -1.5427818840283559e-05, -3.8569547100709343e-05, -3.8569547100709276e-05, -3.8569547100709262e-05, -3.856954710070935e-05, -1.9284773550354506e-05, -1.9284773550354506e-05, -3.8569547100708998e-05, -3.8569547100709011e-05, -4.8211933875886501e-06, -4.8211933875886501e-06, -0.00096905987090531898, -0.00096423867751772971, -2.4105966937943235e-05, -4.8211933875886501e-06, -1.4463580162765745e-05, -4.8211933875886713e-05, -0.0003856954710070891, -9.6423867751773003e-06, -0.00044354979165815527, -4.8211933875886213e-06, -7.7139094201418565e-05, -7.7139094201418592e-05, -3.8569547100709011e-05, -3.8569547100708998e-05, -0.00038569547100708915, -0.00038569547100708915, -3.8569547100709323e-05, -0.0010944108989826206, -9.6423867751773393e-06, -0.00096423867751772711, -7.7139094201418538e-05, -3.8569547100709269e-05, -3.8569547100709337e-05, -4.8211933875886188e-06, -4.8211933875886544e-06, -3.8569547100709215e-05, -3.8569547100709194e-05, -9.6423867751773393e-06, -9.6423867751773409e-06, -4.8211933875886205e-06, -4.82119338758864e-06, -3.8569547100708964e-05, -2.4105966937943133e-05, -1.4463580162765939e-05, -1.9284773550354502e-05, -1.9284773550354509e-05, -4.8211933875886501e-06, -7.2317900813830829e-05, -3.856954710070912e-05, -3.8569547100709106e-05, -4.3390740488297764e-05, -3.8569547100709011e-05, -7.2317900813830409e-05, -9.6423867751773037e-06, -4.8211933875886645e-06, -3.8569547100708998e-05, -3.8569547100708998e-05, -4.8211933875886552e-06, -4.8211933875886434e-06, -3.8569547100709106e-05, -3.856954710070912e-05, -9.6423867751773748e-06, -4.8211933875886357e-06, -3.8569547100709052e-05, -7.7139094201418457e-05, -4.8211933875886632e-05, -3.8569547100709188e-05, -7.7139094201418321e-05, -4.8211933875886552e-06, -3.8569547100709106e-05, -8.1960287589006843e-05, -3.8569547100709188e-05, -3.8569547100709113e-05, -7.7139094201418497e-05, -0.00015427818840283789, -0.00012052983468971611, -3.8569547100708984e-05, -7.7139094201418497e-05, -7.7139094201418524e-05, -1.9284773550354682e-05, -3.8569547100709106e-05, -4.8211933875886578e-05, -5.303312726347468e-05, -1.9284773550354682e-05, -7.7139094201418999e-05, -3.8569547100709154e-05, -3.8569547100709174e-05, -3.8569547100709174e-05, -9.6423867751773697e-06, -3.8569547100709296e-05, -3.8569547100708984e-05, -4.8211933875886671e-06, -3.8569547100708984e-05, -9.6423867751773105e-06, -3.8569547100709303e-05, -3.8569547100709201e-05, -3.8569547100709174e-05, -4.8211933875886561e-06, -7.7139094201418551e-05, -7.7139094201418524e-05, -4.8211933875886476e-06, -3.856954710070916e-05, -3.8569547100709167e-05, -4.8211933875886501e-06, -3.8569547100709337e-05, -3.8569547100709357e-05, -3.856954710070912e-05, -3.856954710070935e-05, -0.00011570864130212601, -3.856954710070931e-05, -3.8569547100709066e-05, -3.8569547100709093e-05, -4.8211933875886383e-06, -3.8569547100709052e-05, -3.8569547100709093e-05, -7.7139094201418307e-05, -1.9284773550354509e-05, -8.678148097659523e-05, -1.9284773550354502e-05, -4.8211933875886654e-06, -9.6423867751772867e-06, -6.2675514038652009e-05, -3.8569547100709174e-05, -7.7139094201418592e-05, -0.00040498024455744546, -3.8569547100709106e-05, -0.00042426501810779766, -3.85695471007091e-05, -3.856954710070912e-05, -7.7139094201418524e-05, 0.019255846390029058, -7.7139094201418497e-05, -0.00039051666439467473, -4.8211933875886188e-06, -7.713909420141847e-05, -7.7139094201418551e-05, -1.9284773550354655e-05, -0.00040498024455744546, -0.0003856954710070891, -0.00038569547100709034, -0.00038569547100708866, -4.8211933875886535e-06, -1.9284773550354472e-05, -4.8211933875886332e-06, -4.8211933875886612e-06, -4.8211933875886688e-06, -3.8569547100709208e-05, -3.8569547100709201e-05, -3.8569547100709188e-05, -3.8569547100709188e-05, -4.8211933875886332e-06, -4.8211933875886357e-06, -4.8211933875886315e-06, -3.8569547100709269e-05, -4.8211933875886788e-05, -9.6423867751773304e-05, -7.7139094201418782e-05, -7.7139094201418321e-05, -3.8569547100709269e-05, -0.0001157086413021273, -1.4463580162765987e-05, -0.00042426501810780031, -7.7139094201418348e-05, -0.00034712592390637881, -4.8211933875886518e-06, -4.8211933875886425e-06, -0.00012052983468971616, -7.7139094201418307e-05, -3.856954710070912e-05, -3.3748353713120354e-05, -1.9284773550354472e-05, -9.6423867751773071e-06, -0.00034712592390637881, -9.6423867751773037e-06, -1.9284773550354506e-05, -1.9284773550354506e-05, -0.00034712592390637886, -3.8569547100709025e-05, -4.82119338758864e-06, -3.8569547100709106e-05, -4.8211933875886315e-06, -3.8569547100709133e-05, -4.8211933875886666e-05, -1.4463580162766019e-05, -3.856954710070912e-05, -7.231790081382927e-05, -4.8211933875886205e-06, -3.8569547100709032e-05, -9.6423867751773393e-06, -9.6423867751773409e-06, -9.6423867751773274e-06, -4.8211933875886468e-06, -2.8927160325531821e-05, -1.4463580162765958e-05, -3.8569547100709255e-05, -3.8569547100709242e-05, -7.7139094201418402e-05, -0.00012535102807730434, -0.00011088744791453745, -4.8211933875886205e-06, -7.7139094201418633e-05, -3.8569547100709262e-05, -2.8927160325531862e-05, -9.6423867751772613e-06, -4.8211933875886357e-06, -4.8211933875886612e-06, -0.00038569547100708866, -0.00038569547100709034, -0.00078103332878936605, -0.00038569547100708942, 0.019255846390029058, -1.9284773550354682e-05, -9.6423867751772817e-06, -3.8569547100709215e-05, -4.3390740488297791e-05, -1.9284773550354682e-05, -5.3033127263474924e-05, -4.8211933875886535e-06, -4.8211933875886213e-06, -7.7139094201418267e-05, -3.8569547100709025e-05, -3.8569547100709066e-05, -4.8211933875886434e-06, -4.8211933875886501e-06, -1.9284773550354604e-05, -1.9284773550354601e-05, -7.7139094201418619e-05, -3.8569547100709249e-05, -4.8211933875886281e-06, -0.00078103332878935814, -3.8569547100709242e-05, -3.8569547100709255e-05, -4.8211933875886476e-06, -1.9284773550354601e-05, -1.9284773550354604e-05, -9.6423867751772427e-06, -9.6423867751772427e-06, -1.4463580162765851e-05, -4.8211933875886518e-06, -9.6423867751772427e-06, -9.6423867751772427e-06, -4.8211933875886366e-06, -4.8211933875886552e-06, -1.9284773550354512e-05, -5.7854320651063588e-05, -3.8569547100709039e-05, -4.8211933875886324e-06, -4.8211933875886213e-06, -8.6781480976595176e-05, -4.8211933875886434e-06, -1.9284773550354655e-05, -9.6423867751773342e-06, -7.7139094201418104e-05, -7.7139094201418077e-05, -2.4105966937943357e-05, -1.928477355035458e-05, -9.642386775177363e-06, -2.8927160325531838e-05, -0.0004098014379450337, -4.8211933875886408e-06, -1.928477355035458e-05, -1.9284773550354573e-05, -7.713909420141805e-05, -7.7139094201418131e-05, -1.928477355035458e-05, -1.928477355035454e-05, -1.928477355035454e-05, -4.8211933875886324e-06, -0.00022177489582907712, -4.8211933875886266e-05, -4.8211933875886569e-06, -3.8569547100709255e-05, -3.856954710070935e-05, -3.8569547100709242e-05, -7.7139094201418131e-05, -3.8569547100708937e-05, -7.713909420141805e-05, -3.856954710070935e-05, -3.856954710070935e-05, -0.0014801063699897115, -3.8569547100709269e-05, -0.00096423867751772667, -3.8569547100709052e-05, -9.6423867751773037e-06, -0.00028927160325531719, -5.7854320651063521e-05, -2.4105966937943296e-05, -0.00028927160325531784, -4.8211933875886239e-06, -3.8569547100709174e-05, -3.8569547100709174e-05, -0.00078103332878935814, -3.8569547100709039e-05, -3.8569547100709039e-05, -0.0011040532857577942, -1.4463580162765965e-05, -0.00096423867751772667, -3.8569547100709167e-05, -3.856954710070916e-05, -4.8211933875886366e-06, -3.8569547100709188e-05, -3.856954710070916e-05, -4.8211933875886298e-06, -7.7139094201418077e-05, -7.7139094201418104e-05, -9.6423867751773274e-06, -1.9284773550354604e-05, -1.9284773550354601e-05, -3.8569547100709262e-05, -3.8569547100709255e-05, -0.00078103332878936605, -3.8569547100709242e-05, -3.8569547100709255e-05, -0.00013017222146489315, -0.00046283456520850719, -3.8569547100709154e-05, -0.00034230473051879171, -5.7854320651063886e-05, -5.785432065106388e-05, -3.8569547100709282e-05, -3.8569547100709357e-05, -4.8211933875886801e-05, -3.8569547100709337e-05, -4.821193387588672e-05, -0.00010124506113936146, -3.8569547100709066e-05, -2.4105966937943384e-05, -0.00011088744791453865, -3.8569547100709025e-05, -5.7854320651063548e-05, -1.4463580162765972e-05, -2.4105966937943299e-05, -9.6423867751773308e-06, -4.8211933875886535e-06, -4.82119338758864e-06, -3.8569547100709337e-05, -5.7854320651063853e-05, -2.8927160325531859e-05, -1.9284773550354523e-05, -3.8569547100709269e-05, -3.8569547100709323e-05, -3.856954710070935e-05, -7.7139094201417982e-05, -3.8569547100709011e-05, -1.9284773550354573e-05, -7.7139094201417901e-05, -3.8569547100708978e-05, -1.928477355035458e-05, -3.856954710070935e-05, -4.8211933875886239e-06, -3.8569547100708998e-05, -3.8569547100708998e-05, -7.7139094201418524e-05, -0.00011570864130212754, -3.856954710070912e-05, -7.7139094201418538e-05, -7.7139094201418592e-05, -3.8569547100709011e-05, -3.8569547100708998e-05, -3.8569547100709025e-05, -3.8569547100709052e-05, -4.3390740488297391e-05, -0.00016392057517801366, -9.6423867751773918e-06, -3.856954710070931e-05, -3.8569547100708984e-05, -4.3390740488297405e-05, -0.00012535102807730437, -3.8569547100709276e-05, -3.8569547100709106e-05, -3.8569547100709343e-05, -1.928477355035458e-05, -1.928477355035458e-05, -4.8211933875886518e-06, -4.8211933875886688e-06, -4.8211933875886552e-06, -9.6423867751772935e-06, -8.1960287589006775e-05, -0.00014463580162765859, -5.7854320651063487e-05, -2.8927160325531821e-05, -4.8211933875886383e-06, -1.9284773550354567e-05, -7.7139094201418348e-05, -0.00011570864130212714, -3.8569547100709323e-05, -1.9284773550354567e-05, -7.7139094201418294e-05, -7.7139094201418321e-05, -1.9284773550354567e-05, -5.7854320651063453e-05, -3.8569547100709039e-05, -4.8211933875886645e-06, -9.6423867751773782e-06, -1.9284773550354567e-05, -1.928477355035458e-05, -4.3390740488297534e-05, -2.4105966937943346e-05, -3.8569547100709221e-05, -7.7139094201418457e-05, -0.00034712592390637967, -1.9284773550354655e-05, -4.8211933875886341e-06, -0.00028927160325531719, -3.8569547100709093e-05, -0.00023141728260425576, -0.00023141728260425565, -0.00024105966937943226, -0.00023141728260425576, -1.9284773550354655e-05, -1.9284773550354658e-05, -3.85695471007091e-05, -3.856954710070912e-05, -1.9284773550354546e-05, -1.9284773550354546e-05, -3.8569547100709303e-05, -4.8211933875886629e-06, -3.8569547100709296e-05, -4.8211933875886383e-06, -4.8211933875886501e-06, -0.00033748353713120304, -1.9284773550354546e-05, -1.9284773550354546e-05, -0.00029409279664290516, -9.6423867751773206e-06, -0.00034712592390637886, -0.00034712592390637881, -3.8569547100709106e-05, -4.8211933875886332e-06, -3.8569547100709079e-05, -0.00034712592390637881, -0.00034712592390638233, -3.8569547100709066e-05, -3.8569547100709086e-05, -9.6423867751772596e-06, -9.6423867751773071e-06, -7.7139094201417928e-05, -3.8569547100709079e-05, -3.8569547100709072e-05, -1.4463580162765816e-05, -7.7139094201417928e-05, -7.7139094201417779e-06, -7.7139094201417779e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -0.00019381197418106416, -0.00019284773550354471, -4.8211933875886408e-06, -9.6423867751772245e-07, -2.8927160325532108e-06, -9.6423867751773426e-06, -7.7139094201418985e-05, -1.9284773550354449e-06, -8.8709958331630558e-05, -9.6423867751772245e-07, -1.5427818840283556e-05, -1.5427818840283552e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201418985e-05, -7.7139094201418972e-05, -7.7139094201417779e-06, -0.00021888217979652253, -1.928477355035444e-06, -0.00019284773550354729, -1.5427818840283556e-05, -7.7139094201417796e-06, -7.7139094201417779e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.928477355035444e-06, -1.928477355035444e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -7.7139094201417762e-06, -4.8211933875886408e-06, -2.8927160325531451e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -1.4463580162766085e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -8.6781480976593959e-06, -7.7139094201417796e-06, -1.4463580162766038e-05, -1.9284773550354445e-06, -9.6423867751772224e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.928477355035444e-06, -9.6423867751772266e-07, -7.7139094201417796e-06, -1.5427818840283559e-05, -9.6423867751772833e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -9.6423867751772245e-07, -7.7139094201417796e-06, -1.6392057517801152e-05, -7.7139094201417796e-06, -7.7139094201417813e-06, -1.5427818840283559e-05, -3.0855637680567132e-05, -2.410596693794273e-05, -7.7139094201417796e-06, 0.003912880553366937, -1.5427818840283559e-05, -3.8569547100708881e-06, -7.7139094201417796e-06, -9.6423867751772833e-06, -1.0606625452694898e-05, -3.8569547100708881e-06, -1.5427818840283556e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772202e-07, -7.7139094201417796e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -1.5427818840283556e-05, -1.5427818840283556e-05, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -7.7139094201417813e-06, -7.7139094201417779e-06, -2.3141728260425645e-05, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283563e-05, -3.8569547100708906e-06, -1.7356296195318826e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.2535102807730519e-05, -7.7139094201417796e-06, -1.5427818840283559e-05, -8.0996048911489288e-05, -7.7139094201417796e-06, -8.4853003621559238e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.5427818840283559e-05, -7.7139094201418497e-05, 0.003912880553366937, -7.8103332878936418e-05, -9.6423867751772245e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708889e-06, -8.0996048911489261e-05, -7.7139094201418985e-05, -7.7139094201418429e-05, -7.7139094201418633e-05, -9.6423867751772245e-07, -3.8569547100708881e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -9.6423867751772202e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751773596e-06, -1.9284773550354672e-05, -1.5427818840283559e-05, -1.5427818840283559e-05, -7.7139094201417796e-06, -2.3141728260425669e-05, -2.8927160325532501e-06, -8.4853003621559916e-05, -1.5427818840283559e-05, -6.9425184781275574e-05, -9.6423867751772245e-07, -9.6423867751772266e-07, -2.4105966937943231e-05, -1.5427818840283563e-05, -7.7139094201417796e-06, -6.7496707426240607e-06, -3.8569547100708889e-06, -1.9284773550354445e-06, -6.9425184781275547e-05, -1.9284773550354445e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -6.9425184781275547e-05, -7.7139094201417813e-06, -9.6423867751772266e-07, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751773189e-06, -2.8927160325532082e-06, -7.7139094201417796e-06, -1.4463580162765989e-05, -9.6423867751772266e-07, -7.7139094201417813e-06, -1.928477355035444e-06, -1.928477355035444e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -5.7854320651064495e-06, -2.8927160325532442e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -2.507020561546097e-05, -2.217748958290765e-05, -9.6423867751772266e-07, -1.5427818840283559e-05, -7.7139094201417796e-06, -5.7854320651064613e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.7139094201418633e-05, -7.7139094201418429e-05, -0.00015620666575787335, -7.7139094201418429e-05, -7.7139094201418497e-05, -3.8569547100708881e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -8.678148097659379e-06, -3.8569547100708881e-06, -1.0606625452694954e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.5427818840283559e-05, -7.7139094201417796e-06, -9.6423867751772266e-07, -0.00015620666575787297, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.8927160325532082e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.8569547100708889e-06, -1.157086413021284e-05, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -1.7356296195318866e-05, -9.6423867751772245e-07, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -4.8211933875886629e-06, -3.8569547100708898e-06, -1.9284773550354445e-06, -5.7854320651064147e-06, -8.196028758900664e-05, -9.6423867751772266e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772266e-07, -4.4354979165815123e-05, -9.6423867751772833e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -7.7139094201417762e-06, -1.5427818840283559e-05, -7.7139094201417762e-06, -7.7139094201417762e-06, -0.0002960212739979459, -7.7139094201417796e-06, -0.0001928477355035452, -7.7139094201417796e-06, -1.9284773550354445e-06, -5.7854320651063588e-05, -1.1570864130212836e-05, -4.8211933875886569e-06, -5.7854320651064232e-05, -9.6423867751772266e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00015620666575787297, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00022081065715155769, -2.8927160325532065e-06, -0.00019284773550354609, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00015620666575787335, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.603444429297843e-05, -9.2566913041702663e-05, -7.7139094201417796e-06, -6.8460946103757626e-05, -1.1570864130212826e-05, -1.1570864130212826e-05, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751773647e-06, -7.7139094201417779e-06, -9.6423867751773426e-06, -2.0249012227872308e-05, -7.7139094201417796e-06, -4.8211933875886764e-06, -2.2177489582907555e-05, -7.7139094201417796e-06, -1.1570864130212836e-05, -2.8927160325532451e-06, -4.8211933875886561e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -7.7139094201417779e-06, -1.1570864130212829e-05, -5.7854320651064596e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -1.5427818840283552e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -1.5427818840283556e-05, -7.7139094201417813e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -9.6423867751772266e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -2.3141728260425659e-05, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.5427818840283552e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -8.6781480976594366e-06, -3.2784115035602507e-05, -1.928477355035444e-06, -7.7139094201417762e-06, -7.7139094201417813e-06, -8.6781480976594366e-06, -2.507020561546099e-05, -7.7139094201417779e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -9.6423867751772202e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.6392057517801057e-05, -2.8927160325531828e-05, -1.1570864130212836e-05, -5.7854320651064495e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -1.5427818840283559e-05, -2.3141728260425656e-05, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -1.1570864130212835e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -1.9284773550354445e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -8.678148097659423e-06, -4.8211933875886696e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -6.9425184781275574e-05, -3.8569547100708889e-06, -9.6423867751772266e-07, -5.7854320651063575e-05, -7.7139094201417796e-06, -4.6283456520852016e-05, -4.6283456520851318e-05, -4.8211933875886286e-05, -4.6283456520852016e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.7496707426240545e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -5.8818559328581421e-05, -1.9284773550354449e-06, -6.9425184781275547e-05, -6.9425184781275547e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -6.9425184781275574e-05, -6.9425184781275439e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.5427818840283563e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.8927160325532074e-06, -1.5427818840283563e-05, -3.9051666439468291e-05, -3.9051666439468236e-05, -3.9051666439468223e-05, -3.9051666439468304e-05, -1.9525833219734017e-05, -1.9525833219734017e-05, -3.9051666439468033e-05, -3.9051666439468033e-05, -4.8814583049335143e-06, -4.8814583049335211e-06, -0.00098117311929163333, -0.00097629166098669583, -2.4407291524667381e-05, -4.8814583049335143e-06, -1.4644374914800313e-05, -4.8814583049334938e-05, -0.00039051666439468032, -9.7629166098670421e-06, -0.0004490941640538826, -4.881458304933499e-06, -7.8103332878936337e-05, -7.8103332878936364e-05, -3.9051666439468033e-05, -3.9051666439468019e-05, -0.00039051666439468032, -0.00039051666439468032, -3.9051666439468263e-05, -0.0011080910352199006, -9.7629166098670726e-06, -0.00097629166098669496, -7.810333287893631e-05, -3.9051666439468236e-05, -3.9051666439468291e-05, -4.8814583049334982e-06, -4.8814583049335245e-06, -3.9051666439468182e-05, -3.9051666439468169e-05, -9.762916609867076e-06, -9.762916609867076e-06, -4.881458304933499e-06, -4.8814583049335143e-06, -3.9051666439467965e-05, -2.4407291524667486e-05, -1.4644374914800556e-05, -1.952583321973401e-05, -1.9525833219734017e-05, -4.8814583049335143e-06, -7.3221874574003329e-05, -3.905166643946806e-05, -3.9051666439468047e-05, -4.3933124744401509e-05, -3.9051666439468033e-05, -7.3221874574002949e-05, -9.7629166098670286e-06, -4.8814583049335329e-06, -3.9051666439468033e-05, -3.9051666439468019e-05, -4.8814583049335245e-06, -4.8814583049335092e-06, -3.9051666439468047e-05, -3.905166643946806e-05, -9.7629166098671014e-06, -4.8814583049335092e-06, -3.9051666439468074e-05, -7.8103332878936364e-05, -4.8814583049334857e-05, -3.9051666439468169e-05, -7.8103332878936256e-05, -4.8814583049335262e-06, -3.9051666439468101e-05, -8.2984791183869495e-05, -3.9051666439468101e-05, -3.9051666439468114e-05, -7.8103332878936418e-05, -0.00015620666575787341, -0.00012203645762333714, -3.9051666439468006e-05, -7.8103332878936418e-05, -7.8103332878936446e-05, -1.9525833219734145e-05, -3.9051666439468114e-05, -4.8814583049334857e-05, -5.3696041354268062e-05, -1.9525833219734145e-05, -7.8103332878936784e-05, -3.9051666439468141e-05, -3.9051666439468101e-05, -3.9051666439468087e-05, -9.762916609867098e-06, -3.905166643946825e-05, -3.9051666439468006e-05, -4.8814583049335262e-06, -3.9051666439468019e-05, -9.7629166098670489e-06, -3.905166643946825e-05, -3.9051666439468182e-05, -3.9051666439468155e-05, -4.8814583049335262e-06, -7.8103332878936473e-05, -7.8103332878936446e-05, -4.8814583049335194e-06, -3.9051666439468155e-05, -3.9051666439468155e-05, -4.8814583049335211e-06, -3.9051666439468291e-05, -3.9051666439468304e-05, -3.9051666439468114e-05, -3.9051666439468291e-05, -0.00011715499931840262, -3.9051666439468263e-05, -3.9051666439468074e-05, -3.9051666439468101e-05, -4.8814583049335126e-06, -3.905166643946806e-05, -3.9051666439468101e-05, -7.8103332878936256e-05, -1.9525833219734017e-05, -8.7866249488802693e-05, -1.952583321973401e-05, -4.8814583049335329e-06, -9.762916609867032e-06, -6.3458957964134696e-05, -3.9051666439468155e-05, -7.8103332878936337e-05, -0.00041004249761441273, -3.9051666439468047e-05, -0.00042956833083414449, -3.9051666439468101e-05, -3.9051666439468114e-05, -7.8103332878936446e-05, -0.00039051666439467473, -7.8103332878936418e-05, 0.019491663011599474, -4.8814583049334982e-06, -7.8103332878936391e-05, -7.8103332878936473e-05, -1.9525833219734132e-05, -0.00041004249761441273, -0.00039051666439468032, -0.00039051666439467679, -0.00039051666439467603, -4.8814583049335245e-06, -1.9525833219733867e-05, -4.8814583049335075e-06, -4.8814583049335295e-06, -4.8814583049335363e-06, -3.9051666439468182e-05, -3.9051666439468169e-05, -3.9051666439468169e-05, -3.9051666439468169e-05, -4.8814583049335092e-06, -4.8814583049335109e-06, -4.8814583049335075e-06, -3.9051666439468223e-05, -4.8814583049335026e-05, -9.762916609866974e-05, -7.8103332878936608e-05, -7.8103332878936283e-05, -3.9051666439468236e-05, -0.0001171549993184043, -1.4644374914800628e-05, -0.00042956833083414742, -7.8103332878936283e-05, -0.000351464997955215, -4.8814583049335228e-06, -4.881458304933516e-06, -0.00012203645762333701, -7.8103332878936256e-05, -3.905166643946806e-05, -3.4170208134534313e-05, -1.9525833219733942e-05, -9.7629166098670455e-06, -0.000351464997955215, -9.7629166098670286e-06, -1.9525833219734017e-05, -1.9525833219734017e-05, -0.000351464997955215, -3.9051666439468047e-05, -4.8814583049335143e-06, -3.9051666439468101e-05, -4.8814583049335075e-06, -3.9051666439468128e-05, -4.8814583049334857e-05, -1.4644374914800647e-05, -3.9051666439468114e-05, -7.322187457400219e-05, -4.881458304933499e-06, -3.905166643946806e-05, -9.7629166098670726e-06, -9.762916609867076e-06, -9.7629166098670659e-06, -4.8814583049335177e-06, -2.9288749829601142e-05, -1.4644374914800598e-05, -3.9051666439468223e-05, -3.9051666439468209e-05, -7.8103332878936337e-05, -0.00012691791592826983, -0.00011227354101346916, -4.881458304933499e-06, -7.81033328789365e-05, -3.9051666439468223e-05, -2.9288749829601169e-05, -9.7629166098670117e-06, -4.8814583049335109e-06, -4.8814583049335295e-06, -0.00039051666439467603, -0.00039051666439467679, -0.00079079624539923042, 0.019251025196641465, -0.00039051666439467473, -1.9525833219734145e-05, -9.7629166098670286e-06, -3.9051666439468101e-05, -4.3933124744401523e-05, -1.9525833219734145e-05, -5.3696041354268394e-05, -4.8814583049335228e-06, -4.8814583049335007e-06, -7.8103332878936202e-05, -3.9051666439468047e-05, -3.9051666439468074e-05, -4.881458304933516e-06, -4.8814583049335143e-06, -1.9525833219734091e-05, -1.9525833219734084e-05, -7.81033328789365e-05, -3.9051666439468209e-05, -4.8814583049335041e-06, -0.00079079624539922001, -3.9051666439468209e-05, -3.9051666439468223e-05, -4.8814583049335194e-06, -1.9525833219734084e-05, -1.9525833219734084e-05, -9.7629166098669981e-06, -9.7629166098669981e-06, -1.4644374914800518e-05, -4.881458304933516e-06, -9.7629166098669981e-06, -9.7629166098669981e-06, -4.8814583049335109e-06, -4.8814583049335245e-06, -1.9525833219733962e-05, -5.8577499659202236e-05, -3.9051666439468047e-05, -4.8814583049335075e-06, -4.881458304933499e-06, -8.7866249488803344e-05, -4.8814583049335092e-06, -1.9525833219734054e-05, -9.7629166098670692e-06, -7.8103332878936093e-05, -7.8103332878936093e-05, -2.4407291524667455e-05, -1.9525833219734071e-05, -9.762916609867076e-06, -2.9288749829601145e-05, -0.00041492395591934616, -4.8814583049335143e-06, -1.9525833219734071e-05, -1.9525833219734064e-05, -7.8103332878936066e-05, -7.810333287893612e-05, -1.9525833219734071e-05, -1.9525833219734037e-05, -1.9525833219734037e-05, -4.8814583049335075e-06, -0.00022454708202694111, -4.8814583049334904e-05, -4.8814583049335262e-06, -3.9051666439468223e-05, -3.9051666439468236e-05, -3.9051666439468209e-05, -7.810333287893612e-05, -3.9051666439467898e-05, -7.8103332878936066e-05, -3.9051666439468243e-05, -3.9051666439468236e-05, -0.0014986076996145793, -3.9051666439468223e-05, -0.0009762916609866954, -3.905166643946806e-05, -9.762916609867032e-06, -0.00029288749829600746, -5.8577499659202073e-05, -2.4407291524667415e-05, -0.00029288749829600909, -4.8814583049335024e-06, -3.9051666439468087e-05, -3.9051666439468101e-05, -0.00079079624539922001, -3.9051666439468047e-05, -3.905166643946806e-05, -0.0011178539518297643, -1.4644374914800569e-05, -0.00097629166098669518, -3.9051666439468155e-05, -3.9051666439468155e-05, -4.8814583049335109e-06, -3.9051666439468101e-05, -3.9051666439468087e-05, -4.8814583049335058e-06, -7.8103332878936093e-05, -7.8103332878936093e-05, -9.7629166098670659e-06, -1.9525833219734084e-05, -1.9525833219734084e-05, -3.9051666439468223e-05, -3.9051666439468223e-05, -0.00079079624539923042, -3.9051666439468209e-05, -3.9051666439468223e-05, -0.00013179937423320396, -0.00022310072401066433, -3.9051666439468141e-05, -0.00034658353965027523, -5.8577499659202317e-05, -5.857749965920231e-05, -3.9051666439468236e-05, -3.9051666439468304e-05, -4.8814583049335013e-05, -3.9051666439468291e-05, -4.8814583049334952e-05, -0.00010251062440360314, -3.9051666439468074e-05, -2.4407291524667486e-05, -0.00011227354101347066, -3.9051666439468047e-05, -5.8577499659202107e-05, -1.4644374914800615e-05, -2.4407291524667415e-05, -9.7629166098670659e-06, -4.8814583049335245e-06, -4.8814583049335143e-06, -3.9051666439468291e-05, -5.8577499659202365e-05, -2.9288749829601162e-05, -1.9525833219734023e-05, -3.9051666439468236e-05, -3.9051666439468263e-05, -3.9051666439468236e-05, -7.8103332878935849e-05, -3.9051666439468033e-05, -1.9525833219734064e-05, -7.8103332878935876e-05, -3.9051666439468006e-05, -1.9525833219734071e-05, -3.9051666439468236e-05, -4.8814583049335024e-06, -3.9051666439468019e-05, -3.9051666439468033e-05, -7.8103332878936446e-05, -0.00011715499931840449, -3.9051666439468114e-05, -7.810333287893631e-05, -7.8103332878936391e-05, -3.9051666439468033e-05, -3.9051666439468033e-05, -3.9051666439468047e-05, -3.905166643946806e-05, -4.3933124744401116e-05, -0.00016596958236773853, -9.7629166098671014e-06, -3.9051666439468263e-05, -3.9051666439468019e-05, -4.393312474440117e-05, -0.00012691791592827004, -3.9051666439468236e-05, -3.9051666439468101e-05, -3.9051666439468291e-05, -1.9525833219734071e-05, -1.9525833219734064e-05, -4.8814583049335228e-06, -4.8814583049335363e-06, -4.8814583049335262e-06, -9.7629166098670388e-06, -8.2984791183869427e-05, -0.00014644374914800378, -5.8577499659202107e-05, -2.9288749829601142e-05, -4.8814583049335126e-06, -1.9525833219734057e-05, -7.8103332878936283e-05, -0.000117154999318404, -3.9051666439468277e-05, -1.9525833219734057e-05, -7.8103332878936256e-05, -7.8103332878936283e-05, -1.9525833219734057e-05, -5.8577499659201985e-05, -3.9051666439468047e-05, -4.8814583049335329e-06, -9.7629166098671048e-06, -1.9525833219734057e-05, -1.9525833219734071e-05, -4.3933124744401238e-05, -2.4407291524667455e-05, -3.9051666439468196e-05, -7.8103332878936364e-05, -0.00035146499795521419, -1.9525833219734132e-05, -4.8814583049335092e-06, -0.00029288749829600746, -3.9051666439468101e-05, -0.00023430999863680992, -0.00023430999863680992, -0.00024407291524667434, -0.00023430999863680992, -1.9525833219734132e-05, -1.9525833219734132e-05, -3.9051666439468101e-05, -3.9051666439468114e-05, -1.9525833219734044e-05, -1.9525833219734044e-05, -3.905166643946825e-05, -4.8814583049335312e-06, -3.905166643946825e-05, -4.8814583049335126e-06, -4.8814583049335211e-06, -0.00034170208134534191, -1.9525833219734044e-05, -1.9525833219734044e-05, -0.00029776895660094078, -9.7629166098670591e-06, -0.000351464997955215, -0.000351464997955215, -3.9051666439468101e-05, -4.8814583049335092e-06, -3.9051666439468087e-05, -0.000351464997955215, -0.00035146499795521164, -3.9051666439468074e-05, -3.9051666439468101e-05, -9.7629166098670117e-06, -9.7629166098670455e-06, -7.8103332878935985e-05, -3.9051666439468087e-05, -3.9051666439468087e-05, -1.4644374914800435e-05, -7.8103332878935985e-05, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -1.2113248386316449e-05, -1.2052983468971473e-05, -3.0132458672428767e-07, -6.0264917344857666e-08, -1.8079475203457332e-07, -6.0264917344857904e-07, -4.8211933875886468e-06, -1.2052983468971531e-07, -5.544372395726953e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886476e-06, -4.8211933875886468e-06, -4.8211933875886122e-07, -1.3680136237282699e-05, -1.2052983468971528e-07, -1.2052983468971634e-05, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886101e-07, -3.0132458672428767e-07, -1.8079475203457348e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857666e-08, -9.0397376017287365e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610371849e-07, -4.8211933875886133e-07, -9.03973760172871e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971528e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -9.6423867751772266e-07, -6.0264917344857788e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -1.024503594862579e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.928477355035444e-06, -1.5066229336214378e-06, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943056e-07, -4.8211933875886133e-07, -6.0264917344857809e-07, -6.6291409079343398e-07, -2.4105966937943056e-07, -9.6423867751772202e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.4463580162765865e-06, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.0847685122074393e-06, -2.4105966937943072e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -7.8344392548315562e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -5.0622530569680788e-06, -4.8211933875886144e-07, -5.3033127263474761e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -4.8211933875886188e-06, -9.6423867751772245e-07, -4.8814583049334982e-06, 0.00024545900834560628, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -5.0622530569680788e-06, -4.8211933875886468e-06, -4.8211933875886163e-06, -4.8211933875886281e-06, -6.0264917344857653e-08, -2.4105966937943051e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.026491734485764e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886122e-07, -6.0264917344858e-07, -1.205298346897157e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -4.8211933875886122e-07, -1.446358016276588e-06, -1.807947520345761e-07, -5.3033127263475142e-06, -9.6423867751772266e-07, -4.3390740488297742e-06, -6.0264917344857653e-08, -6.0264917344857679e-08, -1.5066229336214428e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.218544214140056e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -4.3390740488297734e-06, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297734e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -6.0264917344857756e-07, -1.8079475203457345e-07, -4.8211933875886133e-07, -9.0397376017286783e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -3.6158950406914891e-07, -1.807947520345757e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.566887850966307e-06, -1.3860930989317389e-06, -6.0264917344857679e-08, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.615895040691497e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -4.8211933875886281e-06, -4.8211933875886163e-06, -9.7629166098670252e-06, -4.8211933875886163e-06, -4.8211933875886188e-06, -2.4105966937943056e-07, -1.2052983468971531e-07, -4.8211933875886101e-07, -5.4238425610371743e-07, -2.4105966937943056e-07, -6.6291409079343748e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -9.7629166098670049e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -1.8079475203457348e-07, -6.0264917344857653e-08, -1.2052983468971533e-07, -1.2052983468971533e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -2.4105966937943056e-07, -7.2317900813829432e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, 0.00024443450475074372, -6.0264917344857679e-08, -2.4105966937943051e-07, -1.2052983468971531e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.013245867242892e-07, -2.4105966937943066e-07, -1.2052983468971531e-07, -3.6158950406914684e-07, -5.1225179743129167e-06, -6.0264917344857679e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857679e-08, -2.7721861978634668e-06, -6.0264917344857534e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.8501329624871423e-05, -4.8211933875886122e-07, -1.2052983468971548e-05, -4.8211933875886133e-07, -1.2052983468971531e-07, -3.615895040691448e-06, -7.2317900813829411e-07, -3.0132458672428862e-07, -3.6158950406914882e-06, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670049e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.3800666071972451e-05, -1.8079475203457337e-07, -1.205298346897156e-05, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971531e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.7629166098670252e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.6271527683111544e-06, -5.7854320651063529e-06, -4.8211933875886133e-07, -4.278809131484888e-06, -7.2317900813829348e-07, -7.2317900813829348e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344858042e-07, -4.8211933875886122e-07, -6.0264917344857947e-07, -1.2655632642420189e-06, -4.8211933875886133e-07, -3.0132458672428984e-07, -1.3860930989317325e-06, -4.8211933875886133e-07, -7.2317900813829411e-07, -1.8079475203457575e-07, -3.0132458672428857e-07, -1.2052983468971528e-07, -6.0264917344857653e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -7.2317900813829379e-07, -3.6158950406914954e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -1.4463580162765874e-06, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610372103e-07, -2.0490071897251711e-06, -1.2052983468971528e-07, -4.8211933875886112e-07, -4.8211933875886144e-07, -5.4238425610372103e-07, -1.5668878509663083e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857653e-08, -6.026491734485764e-08, -6.0264917344857653e-08, -1.2052983468971536e-07, -1.0245035948625733e-06, -1.8079475203457259e-06, -7.2317900813829411e-07, -3.6158950406914891e-07, -6.0264917344857679e-08, -2.4105966937943066e-07, -9.6423867751772266e-07, -1.4463580162765874e-06, -4.8211933875886112e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -7.2317900813829401e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -5.4238425610372019e-07, -3.0132458672428936e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -4.3390740488297674e-06, -2.4105966937943061e-07, -6.0264917344857679e-08, -3.6158950406914476e-06, -4.8211933875886133e-07, -2.892716032553218e-06, -2.8927160325531748e-06, -3.0132458672428755e-06, -2.892716032553218e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.218544214140073e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -3.6761599580363194e-06, -1.2052983468971531e-07, -4.3390740488297734e-06, -4.3390740488297734e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.3390740488297742e-06, -4.3390740488297657e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.8079475203457345e-07, -9.6423867751772287e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -0.00019381197418106433, -0.00019284773550354487, -4.8211933875886391e-06, -9.6423867751772245e-07, -2.8927160325532091e-06, -9.6423867751773393e-06, -7.7139094201418958e-05, -1.9284773550354449e-06, -8.8709958331630476e-05, -9.6423867751772245e-07, -1.5427818840283556e-05, -1.5427818840283552e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201418958e-05, -7.7139094201418944e-05, -7.7139094201417779e-06, -0.00021888217979652237, -1.928477355035444e-06, -0.00019284773550354739, -1.5427818840283556e-05, -7.7139094201417796e-06, -7.7139094201417779e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.928477355035444e-06, -1.928477355035444e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -7.7139094201417762e-06, -4.8211933875886391e-06, -2.8927160325531472e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -1.4463580162766095e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -8.6781480976593892e-06, -7.7139094201417796e-06, -1.4463580162766051e-05, -1.9284773550354445e-06, -9.6423867751772224e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.928477355035444e-06, -9.6423867751772266e-07, -7.7139094201417796e-06, -1.5427818840283559e-05, -9.64238677517728e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -9.6423867751772245e-07, -7.7139094201417796e-06, -1.6392057517801155e-05, -7.7139094201417796e-06, -7.7139094201417813e-06, -1.5427818840283559e-05, -3.0855637680567132e-05, 0.0039042024052692794, -7.7139094201417796e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708881e-06, -7.7139094201417796e-06, -9.64238677517728e-06, -1.0606625452694901e-05, -3.8569547100708881e-06, -1.5427818840283556e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772202e-07, -7.7139094201417796e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -1.5427818840283556e-05, -1.5427818840283556e-05, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -7.7139094201417813e-06, -7.7139094201417779e-06, -2.3141728260425659e-05, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283563e-05, -3.8569547100708906e-06, -1.7356296195318812e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.2535102807730515e-05, -7.7139094201417796e-06, -1.5427818840283559e-05, -8.0996048911489288e-05, -7.7139094201417796e-06, -8.4853003621559293e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.5427818840283559e-05, -7.713909420141847e-05, -1.5427818840283559e-05, -7.8103332878936391e-05, -9.6423867751772245e-07, 0.003912880553366937, -1.5427818840283559e-05, -3.8569547100708889e-06, -8.0996048911489261e-05, -7.7139094201418958e-05, -7.7139094201418402e-05, -7.7139094201418606e-05, -9.6423867751772245e-07, -3.8569547100708881e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -9.6423867751772202e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751773562e-06, -1.9284773550354665e-05, -1.5427818840283559e-05, -1.5427818840283559e-05, -7.7139094201417796e-06, -2.3141728260425683e-05, -2.8927160325532518e-06, -8.4853003621559943e-05, -1.5427818840283559e-05, -6.942518478127552e-05, -9.6423867751772245e-07, -9.6423867751772266e-07, -2.4105966937943252e-05, -1.5427818840283563e-05, -7.7139094201417796e-06, -6.7496707426240557e-06, -3.8569547100708889e-06, -1.9284773550354445e-06, -6.9425184781275493e-05, -1.9284773550354445e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -6.9425184781275493e-05, -7.7139094201417813e-06, -9.6423867751772266e-07, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751773155e-06, -2.8927160325532099e-06, -7.7139094201417796e-06, -1.4463580162766004e-05, -9.6423867751772266e-07, -7.7139094201417813e-06, -1.928477355035444e-06, -1.928477355035444e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -5.7854320651064528e-06, -2.8927160325532459e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -2.5070205615460963e-05, -2.2177489582907636e-05, -9.6423867751772266e-07, -1.5427818840283559e-05, -7.7139094201417796e-06, -5.7854320651064647e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.7139094201418606e-05, -7.7139094201418402e-05, -0.0001562066657578733, -7.7139094201418402e-05, -7.713909420141847e-05, -3.8569547100708881e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -8.6781480976593722e-06, -3.8569547100708881e-06, -1.0606625452694957e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.5427818840283559e-05, -7.7139094201417796e-06, -9.6423867751772266e-07, -0.00015620666575787292, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.8927160325532099e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.8569547100708889e-06, -1.1570864130212846e-05, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -1.7356296195318853e-05, -9.6423867751772245e-07, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -4.8211933875886612e-06, -3.8569547100708898e-06, -1.9284773550354445e-06, -5.7854320651064181e-06, -8.196028758900664e-05, -9.6423867751772266e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772266e-07, -4.4354979165815082e-05, -9.64238677517728e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -7.7139094201417762e-06, -1.5427818840283559e-05, -7.7139094201417762e-06, -7.7139094201417762e-06, -0.00029602127399794618, -7.7139094201417796e-06, -0.00019284773550354539, -7.7139094201417796e-06, -1.9284773550354445e-06, -5.7854320651063629e-05, -1.1570864130212843e-05, -4.8211933875886552e-06, -5.7854320651064286e-05, -9.6423867751772266e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00015620666575787292, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00022081065715155753, -2.8927160325532082e-06, -0.00019284773550354626, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.0001562066657578733, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.6034444292978437e-05, -9.2566913041702717e-05, -7.7139094201417796e-06, -6.8460946103757544e-05, -1.1570864130212833e-05, -1.1570864130212833e-05, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751773613e-06, -7.7139094201417779e-06, -9.6423867751773393e-06, -2.0249012227872308e-05, -7.7139094201417796e-06, -4.8211933875886747e-06, -2.2177489582907534e-05, -7.7139094201417796e-06, -1.1570864130212843e-05, -2.8927160325532468e-06, -4.8211933875886544e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -7.7139094201417779e-06, -1.1570864130212836e-05, -5.785432065106463e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -1.5427818840283552e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -1.5427818840283556e-05, -7.7139094201417813e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -9.6423867751772266e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -2.3141728260425672e-05, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.5427818840283552e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -8.6781480976594298e-06, -3.278411503560252e-05, -1.928477355035444e-06, -7.7139094201417762e-06, -7.7139094201417813e-06, -8.6781480976594298e-06, -2.5070205615460983e-05, -7.7139094201417779e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -9.6423867751772202e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.639205751780106e-05, -2.8927160325531842e-05, -1.1570864130212843e-05, -5.7854320651064528e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -1.5427818840283559e-05, -2.3141728260425669e-05, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -1.1570864130212841e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -1.9284773550354445e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -8.6781480976594163e-06, -4.8211933875886679e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -6.942518478127552e-05, -3.8569547100708889e-06, -9.6423867751772266e-07, -5.7854320651063629e-05, -7.7139094201417796e-06, -4.6283456520852043e-05, -4.6283456520851345e-05, -4.8211933875886327e-05, -4.6283456520852043e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.7496707426240463e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -5.8818559328581449e-05, -1.9284773550354449e-06, -6.9425184781275493e-05, -6.9425184781275493e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -6.942518478127552e-05, -6.9425184781275384e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.5427818840283563e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.8927160325532091e-06, -1.5427818840283563e-05, -7.7139094201417762e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -0.00019381197418106389, -0.00019284773550354439, -4.8211933875886442e-06, -9.6423867751772224e-07, -2.8927160325532141e-06, -9.6423867751773494e-06, -7.7139094201419039e-05, -1.9284773550354449e-06, -8.8709958331630693e-05, -9.6423867751772245e-07, -1.5427818840283552e-05, -1.5427818840283552e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201419039e-05, -7.7139094201419026e-05, -7.7139094201417762e-06, -0.0002188821797965228, -1.928477355035444e-06, -0.00019284773550354696, -1.5427818840283552e-05, -7.7139094201417796e-06, -7.7139094201417762e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.928477355035444e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417745e-06, -4.8211933875886442e-06, -2.8927160325531417e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -1.4463580162766068e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -8.6781480976594129e-06, -7.7139094201417796e-06, -1.4463580162766024e-05, -1.9284773550354445e-06, -9.6423867751772202e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -1.5427818840283559e-05, -9.6423867751772901e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -9.6423867751772224e-07, -7.7139094201417796e-06, -1.6392057517801142e-05, -7.7139094201417779e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, 0.0038974527345266557, -2.4105966937942777e-05, -7.7139094201417796e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708881e-06, -7.7139094201417796e-06, -9.6423867751772901e-06, -1.0606625452694895e-05, -3.8569547100708881e-06, -1.5427818840283556e-05, -7.7139094201417796e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -1.928477355035444e-06, -7.7139094201417779e-06, -7.7139094201417796e-06, -9.6423867751772202e-07, -7.7139094201417796e-06, -1.9284773550354445e-06, -7.7139094201417779e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -1.5427818840283552e-05, -1.5427818840283552e-05, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -2.3141728260425618e-05, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -3.8569547100708898e-06, -1.735629619531886e-05, -3.8569547100708898e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.2535102807730522e-05, -7.7139094201417796e-06, -1.5427818840283556e-05, -8.0996048911489288e-05, -7.7139094201417796e-06, -8.4853003621559238e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -7.7139094201418551e-05, -1.5427818840283559e-05, -7.8103332878936473e-05, -9.6423867751772245e-07, -1.5427818840283559e-05, 0.003912880553366937, -3.8569547100708881e-06, -8.0996048911489288e-05, -7.7139094201419039e-05, -7.7139094201418484e-05, -7.7139094201418687e-05, -9.6423867751772224e-07, -3.8569547100708881e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772202e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417779e-06, -9.6423867751773664e-06, -1.9284773550354685e-05, -1.5427818840283556e-05, -1.5427818840283559e-05, -7.7139094201417779e-06, -2.3141728260425642e-05, -2.8927160325532468e-06, -8.4853003621559889e-05, -1.5427818840283556e-05, -6.942518478127571e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943194e-05, -1.5427818840283559e-05, -7.7139094201417796e-06, -6.7496707426240709e-06, -3.8569547100708881e-06, -1.9284773550354445e-06, -6.9425184781275683e-05, -1.9284773550354445e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -6.9425184781275683e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751773257e-06, -2.8927160325532048e-06, -7.7139094201417796e-06, -1.4463580162765975e-05, -9.6423867751772245e-07, -7.7139094201417796e-06, -1.928477355035444e-06, -1.928477355035444e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -5.7854320651064418e-06, -2.8927160325532408e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -1.5427818840283559e-05, -2.5070205615460976e-05, -2.217748958290769e-05, -9.6423867751772245e-07, -1.5427818840283559e-05, -7.7139094201417796e-06, -5.7854320651064545e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201418687e-05, -7.7139094201418484e-05, -0.00015620666575787341, -7.7139094201418484e-05, -7.7139094201418551e-05, -3.8569547100708881e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -8.6781480976593959e-06, -3.8569547100708881e-06, -1.0606625452694951e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.5427818840283556e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -0.00015620666575787305, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.8927160325532048e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -3.8569547100708881e-06, -1.1570864130212826e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.73562961953189e-05, -9.6423867751772245e-07, -3.8569547100708881e-06, -1.9284773550354445e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -4.8211933875886662e-06, -3.8569547100708898e-06, -1.9284773550354445e-06, -5.785432065106408e-06, -8.196028758900664e-05, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -4.4354979165815191e-05, -9.6423867751772901e-06, -9.6423867751772224e-07, -7.7139094201417779e-06, -7.7139094201417762e-06, -7.7139094201417779e-06, -1.5427818840283559e-05, -7.7139094201417762e-06, -1.5427818840283559e-05, -7.7139094201417762e-06, -7.7139094201417762e-06, -0.00029602127399794536, -7.7139094201417796e-06, -0.00019284773550354493, -7.7139094201417796e-06, -1.9284773550354445e-06, -5.7854320651063521e-05, -1.1570864130212823e-05, -4.8211933875886603e-06, -5.7854320651064178e-05, -9.6423867751772245e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -0.00015620666575787305, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00022081065715155796, -2.8927160325532031e-06, -0.00019284773550354577, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772245e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00015620666575787341, -7.7139094201417779e-06, -7.7139094201417779e-06, -2.603444429297843e-05, -9.2566913041702554e-05, -7.7139094201417796e-06, -6.8460946103757761e-05, -1.1570864130212813e-05, -1.1570864130212813e-05, -7.7139094201417762e-06, -7.7139094201417762e-06, -9.6423867751773714e-06, -7.7139094201417762e-06, -9.6423867751773494e-06, -2.0249012227872315e-05, -7.7139094201417796e-06, -4.8211933875886798e-06, -2.2177489582907589e-05, -7.7139094201417796e-06, -1.1570864130212823e-05, -2.8927160325532417e-06, -4.8211933875886595e-06, -1.928477355035444e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -7.7139094201417762e-06, -1.1570864130212816e-05, -5.7854320651064528e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -1.5427818840283552e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -1.5427818840283552e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -2.3141728260425632e-05, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.5427818840283552e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -8.6781480976594535e-06, -3.2784115035602493e-05, -1.928477355035444e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -8.6781480976594535e-06, -2.5070205615460997e-05, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.6392057517801047e-05, -2.8927160325531787e-05, -1.1570864130212823e-05, -5.7854320651064418e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -1.5427818840283556e-05, -2.3141728260425628e-05, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -1.1570864130212821e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -1.928477355035444e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -8.67814809765944e-06, -4.821193387588673e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -6.942518478127571e-05, -3.8569547100708881e-06, -9.6423867751772245e-07, -5.7854320651063521e-05, -7.7139094201417796e-06, -4.6283456520851962e-05, -4.6283456520851264e-05, -4.8211933875886212e-05, -4.6283456520851962e-05, -3.8569547100708881e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -9.6423867751772245e-07, -7.7139094201417779e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -6.749670742624068e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -5.881855932858134e-05, -1.9284773550354445e-06, -6.9425184781275683e-05, -6.9425184781275683e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -6.942518478127571e-05, -6.9425184781275574e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354445e-06, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.892716032553204e-06, -1.5427818840283559e-05, -1.9284773550354462e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354462e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943056e-07, -2.4105966937943061e-07, -4.8452993545266163e-05, -4.8211933875886313e-05, -1.2052983468971627e-06, -2.4105966937943056e-07, -7.2317900813830407e-07, -2.4105966937943407e-06, -1.9284773550354773e-05, -4.8211933875886122e-07, -2.2177489582907572e-05, -2.4105966937943061e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354773e-05, -1.9284773550354773e-05, -1.9284773550354449e-06, -5.472054494913028e-05, -4.8211933875886101e-07, -4.8211933875886957e-05, -3.8569547100708881e-06, -1.9284773550354453e-06, -1.9284773550354462e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354436e-06, -1.2052983468971627e-06, -7.2317900813830459e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943056e-07, -3.6158950406915297e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.1695370244148414e-06, -1.9284773550354449e-06, -3.615895040691517e-06, -4.8211933875886112e-07, -2.4105966937943051e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943056e-07, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -1.9284773550354449e-06, -3.8569547100708898e-06, -2.4105966937943352e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -2.4105966937943056e-07, -1.9284773550354449e-06, -4.0980143794502846e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -7.7139094201417745e-06, -6.0264917344858053e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -9.6423867751772202e-07, -1.9284773550354449e-06, -2.4105966937943361e-06, -2.6516563631737211e-06, -9.6423867751772202e-07, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886101e-07, -1.9284773550354445e-06, -1.9284773550354449e-06, -2.4105966937943051e-07, -1.9284773550354449e-06, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943056e-07, -1.928477355035444e-06, -1.928477355035444e-06, -1.9284773550354449e-06, -1.928477355035444e-06, -5.7854320651064317e-06, -1.928477355035444e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.3390740488297751e-06, -9.6423867751772245e-07, -2.4105966937943056e-07, -4.8211933875886122e-07, -3.1337757019325327e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -2.0249012227872329e-05, -1.9284773550354449e-06, -2.1213250905389789e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -1.9284773550354655e-05, -3.8569547100708889e-06, -1.9525833219734132e-05, -2.4105966937943061e-07, -3.8569547100708889e-06, -3.8569547100708881e-06, 0.00098111285437428651, -2.0249012227872329e-05, -1.9284773550354773e-05, -1.9284773550354641e-05, -1.9284773550354689e-05, -2.4105966937943056e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -2.4105966937943056e-07, -2.4105966937943051e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354445e-06, -2.4105966937943441e-06, -4.8211933875886764e-06, -3.8569547100708881e-06, -3.8569547100708898e-06, -1.9284773550354445e-06, -5.7854320651064376e-06, -7.2317900813831508e-07, -2.1213250905389959e-05, -3.8569547100708889e-06, -1.7356296195318826e-05, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.0264917344857434e-06, -3.8569547100708906e-06, -1.9284773550354449e-06, -1.6874176856560116e-06, -9.6423867751772202e-07, -4.8211933875886112e-07, -1.7356296195318826e-05, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.7356296195318819e-05, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.410596693794334e-06, -7.2317900813830459e-07, -1.9284773550354449e-06, -3.6158950406915069e-06, -2.4105966937943061e-07, -1.9284773550354453e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -1.4463580162766174e-06, -7.2317900813831359e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.8569547100708898e-06, -6.2675514038650992e-06, -5.5443723957268954e-06, -2.4105966937943061e-07, -3.8569547100708889e-06, -1.9284773550354449e-06, -1.4463580162766204e-06, -4.8211933875886133e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354689e-05, -1.9284773550354641e-05, -3.9051666439468379e-05, -1.9284773550354641e-05, -1.9284773550354655e-05, -9.6423867751772202e-07, -4.8211933875886122e-07, -1.9284773550354436e-06, -2.1695370244148363e-06, -9.6423867751772202e-07, -2.6516563631737359e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -2.4105966937943056e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.8569547100708881e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -3.9051666439468291e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.2317900813830459e-07, -2.4105966937943056e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943056e-07, -9.6423867751772202e-07, -2.8927160325532201e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.3390740488296997e-06, -2.4105966937943061e-07, -9.6423867751772139e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.205298346897168e-06, -9.6423867751772245e-07, -4.8211933875886112e-07, -1.4463580162766092e-06, -2.0490071897251667e-05, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -1.108874479145375e-05, -2.4105966937943255e-06, -2.4105966937943056e-07, -1.9284773550354445e-06, -1.928477355035444e-06, -1.9284773550354445e-06, -3.8569547100708898e-06, -1.928477355035444e-06, -3.8569547100708898e-06, -1.928477355035444e-06, -1.928477355035444e-06, -7.4005318499486761e-05, -1.9284773550354449e-06, -4.8211933875886632e-05, -1.9284773550354449e-06, -4.8211933875886112e-07, -1.4463580162765934e-05, -2.8927160325532192e-06, -1.2052983468971661e-06, -1.4463580162766099e-05, -2.4105966937943061e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.9051666439468291e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -5.5202664287889383e-05, -7.2317900813830417e-07, -4.8211933875886673e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.4105966937943061e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.9051666439468379e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -6.5086110732446024e-06, -2.3141728260425754e-05, -1.9284773550354449e-06, -1.7115236525939308e-05, -2.8927160325532158e-06, -2.8927160325532158e-06, -1.928477355035444e-06, -1.928477355035444e-06, -2.410596693794345e-06, -1.928477355035444e-06, -2.4105966937943399e-06, -5.0622530569680788e-06, -1.9284773550354449e-06, -1.2052983468971712e-06, -5.54437239572687e-06, -1.9284773550354449e-06, -2.8927160325532192e-06, -7.2317900813831381e-07, -1.2052983468971661e-06, -4.8211933875886101e-07, -2.4105966937943056e-07, -2.4105966937943061e-07, -1.9284773550354462e-06, -2.8927160325531383e-06, -1.4463580162765884e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.928477355035444e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.8569547100708881e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -1.928477355035444e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -5.7854320651064351e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.1695370244149324e-06, -8.1960287589006098e-06, -4.8211933875886101e-07, -1.928477355035444e-06, -1.9284773550354449e-06, -2.1695370244148515e-06, -6.2675514038652526e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354462e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -2.4105966937943051e-07, -2.4105966937943056e-07, -4.8211933875886122e-07, -4.09801437945026e-06, -7.2317900813829706e-06, -2.8927160325532192e-06, -1.4463580162766174e-06, -2.4105966937943061e-07, -9.6423867751772245e-07, -3.8569547100708889e-06, -5.7854320651064342e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -2.8927160325532188e-06, -1.9284773550354449e-06, -2.4105966937943051e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.1695370244149087e-06, -1.2052983468971695e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -1.7356296195318805e-05, 0.00098111285437428651, -2.4105966937943061e-07, -1.4463580162765934e-05, -1.9284773550354449e-06, -1.1570864130213045e-05, -1.157086413021287e-05, -1.2052983468971611e-05, -1.1570864130213045e-05, -9.6423867751772308e-07, -9.6423867751772266e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354445e-06, -2.4105966937943051e-07, -1.9284773550354445e-06, -2.4105966937943061e-07, -2.4105966937943056e-07, -1.6874176856560068e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.4704639832145389e-05, -4.8211933875886112e-07, -1.7356296195318819e-05, -1.7356296195318826e-05, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.7356296195318826e-05, -1.7356296195318792e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.2317900813830438e-07, -3.8569547100708898e-06, -4.0498024455744657e-05, -4.0498024455744657e-05, -4.0498024455744657e-05, -4.0498024455744657e-05, -2.0249012227872302e-05, -2.0249012227872302e-05, -4.049802445574463e-05, -4.049802445574463e-05, -5.0622530569680847e-06, -5.0622530569680805e-06, -0.0010175128644505736, -0.0010124506113936057, -2.5311265284840348e-05, -5.0622530569680847e-06, -1.5186759170904326e-05, -5.0622530569680656e-05, -0.0004049802445574446, -1.0124506113936161e-05, 0.019175814579794993, -5.0622530569680754e-06, -8.0996048911489342e-05, -8.0996048911489356e-05, -4.049802445574463e-05, -4.049802445574463e-05, -0.00040498024455744416, -0.00040498024455744427, -4.0498024455744657e-05, -0.0011491314439317462, -1.0124506113936141e-05, -0.0010124506113936066, -8.0996048911489342e-05, -4.0498024455744657e-05, -4.0498024455744657e-05, -5.0622530569680788e-06, -5.0622530569680822e-06, -4.0498024455744657e-05, -4.049802445574463e-05, -1.0124506113936141e-05, -1.0124506113936144e-05, -5.0622530569680754e-06, -5.0622530569680788e-06, -4.0498024455744657e-05, -2.5311265284840369e-05, -1.5186759170904292e-05, -2.0249012227872302e-05, -2.0249012227872302e-05, -5.0622530569680847e-06, -7.5933795854521533e-05, -4.0498024455744664e-05, -4.0498024455744664e-05, -4.5560277512712433e-05, -4.0498024455744603e-05, -7.5933795854521099e-05, -1.0124506113936169e-05, -5.0622530569680686e-06, -4.0498024455744603e-05, -4.0498024455744603e-05, -5.0622530569680822e-06, -5.0622530569680839e-06, -4.0498024455744664e-05, -4.0498024455744671e-05, -1.0124506113936175e-05, -5.0622530569680788e-06, -4.049802445574463e-05, -8.0996048911489342e-05, -5.0622530569680636e-05, -4.049802445574463e-05, -8.0996048911489261e-05, -5.0622530569680822e-06, -4.0498024455744657e-05, -8.6058301968455579e-05, -4.0498024455744678e-05, -4.049802445574463e-05, -8.0996048911489044e-05, -0.00016199209782297841, -0.00012655632642420079, -4.049802445574463e-05, -8.0996048911489261e-05, -8.0996048911489288e-05, -2.0249012227872329e-05, -4.049802445574463e-05, -5.0622530569680683e-05, -5.5684783626648147e-05, -2.0249012227872329e-05, -8.0996048911489423e-05, -4.0498024455744644e-05, -4.0498024455744671e-05, -4.0498024455744671e-05, -1.0124506113936178e-05, -4.0498024455744657e-05, -4.049802445574463e-05, -5.0622530569680873e-06, -4.0498024455744644e-05, -1.0124506113936164e-05, -4.0498024455744657e-05, -4.049802445574463e-05, -4.049802445574463e-05, -5.0622530569680822e-06, -8.0996048911489071e-05, -8.0996048911489071e-05, -5.0622530569680788e-06, -4.0498024455744644e-05, -4.0498024455744644e-05, -5.0622530569680839e-06, -4.0498024455744685e-05, -4.0498024455744685e-05, -4.049802445574463e-05, -4.0498024455744685e-05, -0.00012149407336723464, -4.0498024455744657e-05, -4.049802445574463e-05, -4.0498024455744657e-05, -5.0622530569680737e-06, -4.049802445574463e-05, -4.0498024455744657e-05, -8.0996048911489261e-05, -2.0249012227872302e-05, -9.1120555025424351e-05, -2.0249012227872302e-05, -5.0622530569680822e-06, -1.0124506113936158e-05, -6.5809289740584586e-05, -4.049802445574463e-05, -8.0996048911489369e-05, -0.00042522925678531659, -4.0498024455744664e-05, -0.00044547826901318723, -4.049802445574463e-05, -4.049802445574463e-05, -8.0996048911489288e-05, -0.00040498024455744546, -8.0996048911489261e-05, -0.00041004249761441273, -5.0622530569680788e-06, -8.0996048911489261e-05, -8.0996048911489288e-05, -2.0249012227872329e-05, 0.020198389697302716, -0.0004049802445574446, -0.00040498024455744525, -0.00040498024455744503, -5.0622530569680822e-06, -2.0249012227872393e-05, -5.0622530569680788e-06, -5.0622530569680822e-06, -5.0622530569680703e-06, -4.0498024455744657e-05, -4.049802445574463e-05, -4.049802445574463e-05, -4.049802445574463e-05, -5.0622530569680788e-06, -5.0622530569680788e-06, -5.0622530569680737e-06, -4.0498024455744657e-05, -5.0622530569680737e-05, -0.0001012450611393612, -8.0996048911489369e-05, -8.0996048911489288e-05, -4.0498024455744657e-05, -0.00012149407336723428, -1.5186759170904289e-05, -0.00044547826901319184, -8.0996048911489288e-05, -0.00036448222010170093, -5.0622530569680788e-06, -5.0622530569680788e-06, -0.00012655632642420077, -8.0996048911489261e-05, -4.0498024455744664e-05, -3.5435771398776624e-05, -2.0249012227872308e-05, -1.0124506113936168e-05, -0.00036448222010170087, -1.0124506113936169e-05, -2.0249012227872302e-05, -2.0249012227872302e-05, -0.00036448222010170082, -4.049802445574463e-05, -5.0622530569680788e-06, -4.049802445574463e-05, -5.0622530569680737e-06, -4.049802445574463e-05, -5.0622530569680642e-05, -1.5186759170904253e-05, -4.049802445574463e-05, -7.593379585452053e-05, -5.0622530569680754e-06, -4.049802445574463e-05, -1.0124506113936141e-05, -1.0124506113936144e-05, -1.0124506113936164e-05, -5.0622530569680788e-06, -3.0373518341808551e-05, -1.5186759170904286e-05, -4.0498024455744671e-05, -4.0498024455744671e-05, -8.0996048911489261e-05, -0.00013161857948116996, -0.00011643182031026618, -5.0622530569680754e-06, -8.0996048911489315e-05, -4.0498024455744657e-05, -3.0373518341808557e-05, -1.0124506113936154e-05, -5.0622530569680788e-06, -5.0622530569680822e-06, -0.00040498024455744503, -0.00040498024455744525, -0.0008200849952288247, -0.00040498024455744525, -0.00040498024455744546, -2.0249012227872329e-05, -1.0124506113936158e-05, -4.049802445574463e-05, -4.5560277512712447e-05, -2.0249012227872329e-05, -5.5684783626648797e-05, -5.0622530569680839e-06, -5.0622530569680754e-06, -8.0996048911489207e-05, -4.0498024455744603e-05, -4.049802445574463e-05, -5.0622530569680788e-06, -5.0622530569680847e-06, -2.0249012227872329e-05, -2.0249012227872315e-05, -8.0996048911489315e-05, -4.0498024455744657e-05, -5.0622530569680754e-06, -0.0008200849952288234, -4.0498024455744671e-05, -4.0498024455744671e-05, -5.0622530569680788e-06, -2.0249012227872329e-05, -2.0249012227872329e-05, -1.0124506113936154e-05, -1.0124506113936154e-05, -1.5186759170904289e-05, -5.0622530569680847e-06, -1.0124506113936154e-05, -1.0124506113936154e-05, -5.0622530569680737e-06, -5.0622530569680822e-06, -2.0249012227872356e-05, -6.0747036683617034e-05, -4.0498024455744603e-05, -5.0622530569680788e-06, -5.0622530569680754e-06, -9.1120555025425151e-05, -5.062253056968083e-06, -2.0249012227872336e-05, -1.0124506113936144e-05, -8.0996048911489261e-05, -8.0996048911489261e-05, -2.5311265284840345e-05, -2.0249012227872329e-05, -1.0124506113936178e-05, -3.0373518341808564e-05, -0.00043029150984229112, -5.0622530569680788e-06, -2.0249012227872329e-05, -2.0249012227872329e-05, -8.0996048911489261e-05, -8.0996048911489261e-05, -2.0249012227872315e-05, -2.0249012227872295e-05, -2.0249012227872295e-05, -5.0622530569680788e-06, -0.00023286364062053027, -5.0622530569680649e-05, -5.0622530569680822e-06, -4.0498024455744671e-05, -4.0498024455744712e-05, -4.0498024455744671e-05, -8.0996048911489261e-05, -4.0498024455744705e-05, -8.0996048911489261e-05, -4.0498024455744705e-05, -4.0498024455744705e-05, -0.0015541116884891888, -4.0498024455744657e-05, -0.0010124506113936092, -4.049802445574463e-05, -1.0124506113936169e-05, -0.00030373518341807968, -6.0747036683617115e-05, -2.531126528484007e-05, -0.0003037351834180845, -5.0622530569680754e-06, -4.0498024455744671e-05, -4.0498024455744671e-05, -0.0008200849952288234, -4.0498024455744644e-05, -4.0498024455744657e-05, -0.0011592559500456798, -1.5186759170904269e-05, -0.00101245061139361, -4.0498024455744644e-05, -4.0498024455744644e-05, -5.0622530569680822e-06, -4.0498024455744678e-05, -4.0498024455744671e-05, -5.0622530569680788e-06, -8.0996048911489261e-05, -8.0996048911489261e-05, -1.0124506113936164e-05, -2.0249012227872329e-05, -2.0249012227872329e-05, -4.0498024455744657e-05, -4.0498024455744657e-05, -0.0008200849952288247, -4.0498024455744671e-05, -4.0498024455744671e-05, -0.00013668083253813763, -0.00048597629346893692, -4.0498024455744644e-05, -0.00035941996704473393, -6.0747036683617251e-05, -6.0747036683617251e-05, -4.0498024455744657e-05, -4.0498024455744685e-05, -5.0622530569680676e-05, -4.0498024455744685e-05, -5.0622530569680724e-05, -0.00010630731419632834, -4.049802445574463e-05, -2.5311265284840328e-05, -0.00011643182031026485, -4.0498024455744644e-05, -6.0747036683617115e-05, -1.5186759170904286e-05, -2.5311265284840098e-05, -1.0124506113936141e-05, -5.0622530569680822e-06, -5.0622530569680788e-06, -4.0498024455744657e-05, -6.0747036683617183e-05, -3.0373518341808557e-05, -2.0249012227872315e-05, -4.0498024455744657e-05, -4.0498024455744657e-05, -4.0498024455744705e-05, -8.0996048911489423e-05, -4.049802445574463e-05, -2.0249012227872329e-05, -8.0996048911489274e-05, -4.0498024455744603e-05, -2.0249012227872329e-05, -4.0498024455744712e-05, -5.0622530569680754e-06, -4.0498024455744603e-05, -4.0498024455744603e-05, -8.0996048911489071e-05, -0.00012149407336723404, -4.049802445574463e-05, -8.0996048911489342e-05, -8.0996048911489356e-05, -4.049802445574463e-05, -4.049802445574463e-05, -4.0498024455744644e-05, -4.0498024455744657e-05, -4.5560277512711877e-05, -0.00017211660393691186, -1.0124506113936183e-05, -4.0498024455744657e-05, -4.0498024455744603e-05, -4.5560277512711904e-05, -0.00013161857948116914, -4.0498024455744657e-05, -4.049802445574463e-05, -4.0498024455744657e-05, -2.0249012227872329e-05, -2.0249012227872329e-05, -5.0622530569680822e-06, -5.0622530569680703e-06, -5.0622530569680822e-06, -1.0124506113936158e-05, -8.6058301968455796e-05, -0.00015186759170904241, -6.0747036683617101e-05, -3.0373518341808551e-05, -5.0622530569680788e-06, -2.0249012227872329e-05, -8.0996048911489288e-05, -0.00012149407336723439, -4.0498024455744657e-05, -2.0249012227872329e-05, -8.0996048911489288e-05, -8.0996048911489288e-05, -2.0249012227872329e-05, -6.0747036683617142e-05, -4.0498024455744644e-05, -5.0622530569680822e-06, -1.0124506113936178e-05, -2.0249012227872329e-05, -2.0249012227872315e-05, -4.5560277512712006e-05, -2.5311265284840314e-05, -4.0498024455744657e-05, -8.0996048911489342e-05, 0.00061759487295010886, -2.0249012227872329e-05, -5.0622530569680788e-06, -0.00030373518341807968, -4.0498024455744657e-05, -0.00024298814673446884, -0.00024298814673446846, -0.00025311265284840175, -0.00024298814673446884, -2.0249012227872329e-05, -2.0249012227872329e-05, -4.049802445574463e-05, -4.049802445574463e-05, -2.0249012227872295e-05, -2.0249012227872295e-05, -4.0498024455744657e-05, -5.0622530569680822e-06, -4.0498024455744657e-05, -5.0622530569680737e-06, -5.0622530569680839e-06, -0.00035435771398776195, -2.0249012227872295e-05, -2.0249012227872295e-05, -0.00030879743647505714, -1.0124506113936168e-05, -0.00036448222010170082, -0.00036448222010170087, -4.0498024455744657e-05, -5.0622530569680822e-06, -4.0498024455744657e-05, -0.00036448222010170093, -0.00036448222010170087, -4.049802445574463e-05, -4.049802445574463e-05, -1.0124506113936151e-05, -1.0124506113936158e-05, -8.0996048911489152e-05, -4.049802445574463e-05, -4.049802445574463e-05, -1.5186759170904299e-05, -8.0996048911489152e-05, -3.8569547100709587e-05, -3.856954710070952e-05, -3.8569547100709506e-05, -3.8569547100709587e-05, -1.9284773550354624e-05, -1.9284773550354624e-05, -3.8569547100709228e-05, -3.8569547100709235e-05, -4.8211933875886798e-06, -4.8211933875886798e-06, -0.00096905987090532006, -0.00096423867751773058, -2.4105966937942987e-05, -4.8211933875886798e-06, -1.4463580162765689e-05, -4.8211933875886219e-05, 0.019255846390029061, -9.6423867751773596e-06, -0.00044354979165815548, -4.8211933875886527e-06, -7.7139094201419012e-05, -7.7139094201419039e-05, -3.8569547100709242e-05, -3.8569547100709221e-05, -0.0003856954710070911, -0.00038569547100709262, -3.856954710070956e-05, -0.0010944108989826269, -9.6423867751773833e-06, -0.00096423867751772798, -7.7139094201418985e-05, -3.8569547100709506e-05, -3.8569547100709574e-05, -4.8211933875886459e-06, -4.8211933875886849e-06, -3.8569547100709452e-05, -3.8569547100709438e-05, -9.6423867751773833e-06, -9.6423867751773867e-06, -4.821193387588651e-06, -4.8211933875886696e-06, -3.8569547100709201e-05, -2.4105966937942896e-05, -1.4463580162765884e-05, -1.9284773550354624e-05, -1.9284773550354631e-05, -4.8211933875886798e-06, -7.2317900813830666e-05, -3.8569547100709343e-05, -3.8569547100709343e-05, -4.339074048829754e-05, -3.8569547100709249e-05, -7.2317900813830341e-05, -9.6423867751773596e-06, -4.8211933875886866e-06, -3.8569547100709249e-05, -3.8569547100709235e-05, -4.8211933875886849e-06, -4.821193387588673e-06, -3.856954710070933e-05, -3.8569547100709357e-05, -9.6423867751774341e-06, -4.8211933875886662e-06, -3.8569547100709303e-05, -7.7139094201418931e-05, -4.821193387588613e-05, -3.8569547100709425e-05, -7.7139094201418795e-05, -4.8211933875886866e-06, -3.8569547100709316e-05, -8.1960287589006762e-05, -3.8569547100709411e-05, -3.8569547100709357e-05, -7.713909420141885e-05, -0.00015427818840283862, -0.00012052983468971624, -3.8569547100709194e-05, -7.7139094201418985e-05, -7.7139094201419012e-05, -1.92847735503548e-05, -3.8569547100709343e-05, -4.8211933875886083e-05, -5.3033127263474605e-05, -1.92847735503548e-05, -7.7139094201419473e-05, -3.8569547100709398e-05, -3.8569547100709411e-05, -3.8569547100709398e-05, -9.6423867751774307e-06, -3.8569547100709533e-05, -3.8569547100709194e-05, -4.821193387588695e-06, -3.8569547100709208e-05, -9.6423867751773697e-06, -3.8569547100709547e-05, -3.8569547100709438e-05, -3.8569547100709425e-05, -4.8211933875886866e-06, -7.7139094201418904e-05, -7.7139094201418877e-05, -4.8211933875886781e-06, -3.8569547100709398e-05, -3.8569547100709411e-05, -4.8211933875886772e-06, -3.8569547100709574e-05, -3.8569547100709601e-05, -3.8569547100709357e-05, -3.8569547100709587e-05, -0.00011570864130212563, -3.856954710070956e-05, -3.8569547100709316e-05, -3.8569547100709316e-05, -4.8211933875886476e-06, -3.8569547100709289e-05, -3.8569547100709303e-05, -7.7139094201418795e-05, -1.9284773550354631e-05, -8.6781480976594796e-05, -1.9284773550354624e-05, -4.821193387588695e-06, -9.642386775177346e-06, -6.2675514038651928e-05, -3.8569547100709425e-05, -7.7139094201419093e-05, -0.00040498024455744438, -3.856954710070933e-05, -0.00042426501810779879, -3.8569547100709343e-05, -3.8569547100709357e-05, -7.7139094201419012e-05, -0.0003856954710070891, -7.7139094201418985e-05, -0.00039051666439468032, -4.8211933875886468e-06, -7.7139094201418958e-05, -7.7139094201419039e-05, -1.9284773550354773e-05, -0.0004049802445574446, 0.019255846390029061, -0.00038569547100708688, -0.00038569547100708948, -4.8211933875886849e-06, -1.9284773550354584e-05, -4.8211933875886629e-06, -4.8211933875886916e-06, -4.8211933875886916e-06, -3.8569547100709452e-05, -3.8569547100709438e-05, -3.8569547100709438e-05, -3.8569547100709425e-05, -4.8211933875886629e-06, -4.8211933875886662e-06, -4.8211933875886476e-06, -3.8569547100709506e-05, -4.8211933875886286e-05, -9.6423867751772302e-05, -7.7139094201419256e-05, -7.7139094201418741e-05, -3.856954710070952e-05, -0.00011570864130212682, -1.4463580162765941e-05, -0.00042426501810779939, -7.7139094201418768e-05, -0.00034712592390637702, -4.8211933875886832e-06, -4.821193387588673e-06, -0.00012052983468971627, -7.7139094201418795e-05, -3.8569547100709343e-05, -3.3748353713120516e-05, -1.928477355035458e-05, -9.6423867751773596e-06, -0.00034712592390637702, -9.6423867751773596e-06, -1.9284773550354624e-05, -1.9284773550354624e-05, -0.00034712592390637702, -3.8569547100709262e-05, -4.8211933875886696e-06, -3.8569547100709357e-05, -4.8211933875886476e-06, -3.8569547100709371e-05, -4.8211933875886151e-05, -1.4463580162765939e-05, -3.8569547100709357e-05, -7.2317900813829284e-05, -4.821193387588651e-06, -3.8569547100709276e-05, -9.6423867751773833e-06, -9.6423867751773867e-06, -9.6423867751773867e-06, -4.8211933875886764e-06, -2.8927160325531733e-05, -1.4463580162765916e-05, -3.8569547100709479e-05, -3.8569547100709459e-05, -7.7139094201418877e-05, -0.00012535102807730413, -0.00011088744791453836, -4.821193387588651e-06, -7.7139094201419121e-05, -3.8569547100709506e-05, -2.8927160325531774e-05, -9.6423867751773189e-06, -4.8211933875886662e-06, -4.8211933875886916e-06, -0.00038569547100708948, -0.00038569547100708688, -0.00078103332878936887, -0.00038569547100708688, -0.0003856954710070891, -1.92847735503548e-05, -9.6423867751773426e-06, -3.8569547100709452e-05, -4.3390740488297568e-05, -1.92847735503548e-05, -5.3033127263474842e-05, -4.8211933875886806e-06, -4.8211933875886527e-06, -7.7139094201418578e-05, -3.8569547100709167e-05, -3.8569547100709303e-05, -4.821193387588673e-06, -4.8211933875886798e-06, -1.9284773550354726e-05, -1.9284773550354719e-05, -7.7139094201419093e-05, -3.8569547100709493e-05, -4.8211933875886578e-06, -0.00078103332878936118, -3.8569547100709465e-05, -3.8569547100709472e-05, -4.8211933875886781e-06, -1.9284773550354719e-05, -1.9284773550354726e-05, -9.6423867751773003e-06, -9.6423867751772986e-06, -1.4463580162765797e-05, -4.8211933875886798e-06, -9.6423867751772986e-06, -9.6423867751773003e-06, -4.8211933875886476e-06, -4.8211933875886849e-06, -1.9284773550354631e-05, -5.7854320651063453e-05, -3.8569547100709167e-05, -4.8211933875886629e-06, -4.8211933875886527e-06, -8.6781480976594756e-05, -4.8211933875886713e-06, -1.9284773550354746e-05, -9.6423867751773765e-06, -7.7139094201418524e-05, -7.7139094201418497e-05, -2.4105966937943109e-05, -1.9284773550354685e-05, -9.642386775177424e-06, -2.8927160325531794e-05, -0.00040980143794503321, -4.8211933875886713e-06, -1.9284773550354692e-05, -1.9284773550354685e-05, -7.713909420141847e-05, -7.7139094201418551e-05, -1.9284773550354699e-05, -1.928477355035459e-05, -1.928477355035459e-05, -4.8211933875886629e-06, -0.00022177489582907845, -4.8211933875885785e-05, -4.8211933875886866e-06, -3.8569547100709472e-05, -3.8569547100709587e-05, -3.8569547100709465e-05, -7.7139094201418551e-05, -3.8569547100709147e-05, -7.713909420141847e-05, -3.8569547100709587e-05, -3.8569547100709587e-05, -0.0014801063699896996, -3.8569547100709506e-05, -0.00096423867751772754, -3.8569547100709289e-05, -9.642386775177363e-06, -0.00028927160325531703, -5.7854320651063642e-05, -2.4105966937942879e-05, -0.00028927160325531768, -4.8211933875886544e-06, -3.8569547100709398e-05, -3.8569547100709411e-05, -0.00078103332878936118, -3.8569547100709249e-05, -3.8569547100709262e-05, -0.0011040532857578005, -1.4463580162765897e-05, -0.00096423867751772754, -3.8569547100709411e-05, -3.8569547100709398e-05, -4.8211933875886637e-06, -3.8569547100709411e-05, -3.8569547100709398e-05, -4.8211933875886595e-06, -7.7139094201418497e-05, -7.7139094201418524e-05, -9.6423867751773867e-06, -1.9284773550354726e-05, -1.9284773550354719e-05, -3.8569547100709506e-05, -3.8569547100709493e-05, -0.00078103332878936887, -3.8569547100709459e-05, -3.8569547100709479e-05, -0.0001301722214648922, -0.00046283456520850556, -3.8569547100709398e-05, -0.00034230473051879024, -5.785432065106371e-05, -5.7854320651063697e-05, -3.856954710070952e-05, -3.8569547100709601e-05, -4.8211933875886307e-05, -3.8569547100709574e-05, -4.8211933875886225e-05, -0.00010124506113936157, -3.8569547100709303e-05, -2.4105966937943136e-05, -0.00011088744791453926, -3.8569547100709249e-05, -5.7854320651063656e-05, -1.4463580162765928e-05, -2.4105966937942906e-05, -9.6423867751773765e-06, -4.8211933875886849e-06, -4.8211933875886696e-06, -3.8569547100709574e-05, -5.785432065106367e-05, -2.8927160325531767e-05, -1.9284773550354645e-05, -3.8569547100709506e-05, -3.856954710070956e-05, -3.8569547100709587e-05, -7.7139094201418402e-05, -3.8569547100709242e-05, -1.9284773550354685e-05, -7.7139094201418335e-05, -3.8569547100709221e-05, -1.9284773550354692e-05, -3.8569547100709587e-05, -4.8211933875886544e-06, -3.8569547100709235e-05, -3.8569547100709249e-05, -7.7139094201418877e-05, -0.00011570864130212699, -3.8569547100709371e-05, -7.7139094201418985e-05, -7.7139094201419066e-05, -3.8569547100709235e-05, -3.8569547100709228e-05, -3.8569547100709249e-05, -3.8569547100709262e-05, -4.3390740488297168e-05, -0.00016392057517801352, -9.6423867751774544e-06, -3.856954710070956e-05, -3.8569547100709221e-05, -4.3390740488297181e-05, -0.00012535102807730407, -3.856954710070952e-05, -3.8569547100709357e-05, -3.8569547100709587e-05, -1.9284773550354685e-05, -1.9284773550354685e-05, -4.8211933875886815e-06, -4.8211933875886916e-06, -4.8211933875886866e-06, -9.6423867751773528e-06, -8.1960287589006599e-05, -0.00014463580162765878, -5.7854320651063304e-05, -2.8927160325531733e-05, -4.8211933875886679e-06, -1.9284773550354672e-05, -7.7139094201418768e-05, -0.00011570864130212666, -3.856954710070956e-05, -1.9284773550354679e-05, -7.7139094201418714e-05, -7.7139094201418741e-05, -1.9284773550354679e-05, -5.7854320651063222e-05, -3.8569547100709249e-05, -4.821193387588695e-06, -9.6423867751774409e-06, -1.9284773550354672e-05, -1.9284773550354699e-05, -4.3390740488297303e-05, -2.4105966937943096e-05, -3.8569547100709465e-05, -7.7139094201418904e-05, -0.00034712592390637788, -1.9284773550354773e-05, -4.8211933875886645e-06, -0.00028927160325531703, -3.8569547100709316e-05, -0.00023141728260425495, -0.00023141728260425484, -0.00024105966937943264, -0.00023141728260425495, -1.9284773550354773e-05, -1.928477355035478e-05, -3.8569547100709343e-05, -3.8569547100709357e-05, -1.928477355035459e-05, -1.928477355035459e-05, -3.8569547100709547e-05, -4.8211933875886933e-06, -3.8569547100709533e-05, -4.8211933875886476e-06, -4.8211933875886772e-06, -0.00033748353713120309, -1.928477355035459e-05, -1.928477355035459e-05, -0.00029409279664290461, -9.6423867751773748e-06, -0.00034712592390637702, -0.00034712592390637702, -3.8569547100709316e-05, -4.8211933875886612e-06, -3.8569547100709303e-05, -0.00034712592390637702, -0.00034712592390638054, -3.8569547100709303e-05, -3.856954710070933e-05, -9.6423867751773189e-06, -9.6423867751773664e-06, -7.7139094201418416e-05, -3.8569547100709316e-05, -3.8569547100709316e-05, -1.4463580162765772e-05, -7.7139094201418416e-05, -3.856954710070931e-05, -3.8569547100709242e-05, -3.8569547100709228e-05, -3.8569547100709323e-05, -1.9284773550354492e-05, -1.9284773550354492e-05, -3.8569547100708971e-05, -3.8569547100708978e-05, -4.8211933875886298e-06, -4.8211933875886468e-06, -0.00096905987090531876, -0.00096423867751772928, -2.4105966937943092e-05, -4.8211933875886298e-06, -1.4463580162765697e-05, -4.8211933875886435e-05, -0.00038569547100708688, -9.6423867751772935e-06, -0.00044354979165815695, -4.821193387588618e-06, -7.7139094201418213e-05, -7.713909420141824e-05, -3.8569547100708984e-05, -3.8569547100708964e-05, -0.00038569547100708693, -0.00038569547100708698, -3.8569547100709296e-05, -0.0010944108989826211, -9.6423867751773308e-06, -0.00096423867751772667, -7.7139094201418185e-05, -3.8569547100709242e-05, -3.856954710070931e-05, -4.8211933875886163e-06, -4.8211933875886501e-06, -3.8569547100709188e-05, -3.856954710070916e-05, -9.6423867751773308e-06, -9.6423867751773342e-06, -4.8211933875886163e-06, -4.8211933875886366e-06, -3.856954710070893e-05, -2.4105966937943072e-05, -1.4463580162765892e-05, -1.9284773550354485e-05, -1.9284773550354492e-05, -4.8211933875886298e-06, -7.2317900813830815e-05, -3.8569547100708944e-05, -3.8569547100708944e-05, -4.3390740488297771e-05, -3.8569547100708978e-05, -7.2317900813830382e-05, -9.6423867751772596e-06, -4.8211933875886603e-06, -3.8569547100708971e-05, -3.8569547100708964e-05, -4.821193387588651e-06, -4.821193387588623e-06, -3.856954710070893e-05, -3.8569547100708957e-05, -9.6423867751773681e-06, -4.8211933875886315e-06, -3.8569547100709025e-05, -7.7139094201418402e-05, -4.8211933875886354e-05, -3.8569547100709154e-05, -7.7139094201418253e-05, -4.8211933875886518e-06, -3.8569547100709072e-05, -8.1960287589006775e-05, -3.8569547100709011e-05, -3.8569547100709079e-05, -7.7139094201418429e-05, -0.00015427818840283778, -0.00012052983468971605, -3.856954710070895e-05, -7.7139094201418429e-05, -7.7139094201418457e-05, -1.9284773550354665e-05, -3.8569547100709079e-05, -4.8211933875886293e-05, -5.3033127263474748e-05, -1.9284773550354665e-05, -7.7139094201418944e-05, -3.856954710070912e-05, -3.8569547100709011e-05, -3.8569547100708998e-05, -9.6423867751773613e-06, -3.8569547100709269e-05, -3.856954710070895e-05, -4.8211933875886451e-06, -3.8569547100708957e-05, -9.642386775177302e-06, -3.8569547100709269e-05, -3.8569547100709167e-05, -3.8569547100709147e-05, -4.8211933875886518e-06, -7.7139094201418484e-05, -7.7139094201418457e-05, -4.8211933875886434e-06, -3.8569547100709133e-05, -3.8569547100709133e-05, -4.8211933875886468e-06, -3.856954710070931e-05, -3.8569547100709323e-05, -3.8569547100709093e-05, -3.8569547100709323e-05, -0.00011570864130212565, -3.8569547100709282e-05, -3.8569547100709039e-05, -3.8569547100709066e-05, -4.8211933875886349e-06, -3.8569547100709018e-05, -3.8569547100709059e-05, -7.713909420141824e-05, -1.9284773550354492e-05, -8.6781480976595257e-05, -1.9284773550354485e-05, -4.821193387588662e-06, -9.64238677517728e-06, -6.2675514038652022e-05, -3.8569547100709147e-05, -7.7139094201418267e-05, -0.00040498024455744525, -3.856954710070893e-05, -0.0004242650181077982, -3.8569547100709066e-05, -3.8569547100709093e-05, -7.7139094201418457e-05, -0.00038569547100709034, -7.7139094201418429e-05, -0.00039051666439467679, -4.8211933875886163e-06, -7.7139094201418402e-05, -7.7139094201418484e-05, -1.9284773550354641e-05, -0.00040498024455744525, -0.00038569547100708688, 0.01925584639002903, -0.00038569547100709094, -4.8211933875886501e-06, -1.9284773550354458e-05, -4.8211933875886298e-06, -4.8211933875886569e-06, -4.8211933875886654e-06, -3.8569547100709174e-05, -3.8569547100709174e-05, -3.856954710070916e-05, -3.8569547100709154e-05, -4.8211933875886298e-06, -4.8211933875886315e-06, -4.8211933875886281e-06, -3.8569547100709235e-05, -4.8211933875886517e-05, -9.6423867751772762e-05, -7.7139094201418714e-05, -7.7139094201418253e-05, -3.8569547100709242e-05, -0.00011570864130212692, -1.4463580162765939e-05, -0.00042426501810780085, -7.713909420141828e-05, -0.00034712592390637891, -4.8211933875886485e-06, -4.8211933875886383e-06, -0.00012052983468971583, -7.713909420141824e-05, -3.8569547100708944e-05, -3.3748353713120347e-05, -1.9284773550354455e-05, -9.6423867751772986e-06, -0.00034712592390637891, -9.6423867751772596e-06, -1.9284773550354492e-05, -1.9284773550354492e-05, -0.00034712592390637891, -3.8569547100708998e-05, -4.8211933875886366e-06, -3.8569547100709079e-05, -4.8211933875886281e-06, -3.85695471007091e-05, -4.8211933875886395e-05, -1.4463580162765972e-05, -3.8569547100709086e-05, -7.2317900813829243e-05, -4.8211933875886163e-06, -3.8569547100708998e-05, -9.6423867751773308e-06, -9.6423867751773342e-06, -9.6423867751773206e-06, -4.8211933875886434e-06, -2.892716032553173e-05, -1.4463580162765906e-05, -3.8569547100709228e-05, -3.8569547100709208e-05, -7.7139094201418348e-05, -0.00012535102807730437, -0.00011088744791453785, -4.8211933875886163e-06, -7.7139094201418565e-05, -3.8569547100709228e-05, -2.892716032553177e-05, -9.6423867751772529e-06, -4.8211933875886315e-06, -4.8211933875886569e-06, -0.00038569547100709094, 0.01925584639002903, -0.00078103332878936508, -0.00038569547100709018, -0.00038569547100709034, -1.9284773550354665e-05, -9.6423867751772732e-06, -3.8569547100709181e-05, -4.3390740488297798e-05, -1.9284773550354665e-05, -5.3033127263474992e-05, -4.8211933875886493e-06, -4.821193387588618e-06, -7.7139094201418199e-05, -3.8569547100708998e-05, -3.8569547100709039e-05, -4.82119338758864e-06, -4.8211933875886298e-06, -1.9284773550354587e-05, -1.9284773550354587e-05, -7.7139094201418565e-05, -3.8569547100709215e-05, -4.8211933875886247e-06, -0.00078103332878935706, -3.8569547100709215e-05, -3.8569547100709221e-05, -4.8211933875886434e-06, -1.9284773550354587e-05, -1.9284773550354587e-05, -9.6423867751772359e-06, -9.6423867751772342e-06, -1.4463580162765868e-05, -4.8211933875886298e-06, -9.6423867751772342e-06, -9.6423867751772359e-06, -4.8211933875886324e-06, -4.821193387588651e-06, -1.9284773550354499e-05, -5.7854320651063405e-05, -3.8569547100709005e-05, -4.8211933875886281e-06, -4.821193387588618e-06, -8.6781480976595203e-05, -4.8211933875886213e-06, -1.9284773550354641e-05, -9.6423867751773274e-06, -7.7139094201418036e-05, -7.7139094201418009e-05, -2.4105966937943218e-05, -1.9284773550354563e-05, -9.6423867751773206e-06, -2.8927160325531838e-05, -0.00040980143794503392, -4.8211933875886366e-06, -1.9284773550354567e-05, -1.928477355035456e-05, -7.7139094201417982e-05, -7.7139094201418063e-05, -1.9284773550354563e-05, -1.9284773550354523e-05, -1.9284773550354523e-05, -4.8211933875886281e-06, -0.0002217748958290779, -4.8211933875885995e-05, -4.8211933875886527e-06, -3.8569547100709221e-05, -3.8569547100709188e-05, -3.8569547100709215e-05, -7.7139094201418063e-05, -3.8569547100708903e-05, -7.7139094201417982e-05, -3.8569547100709188e-05, -3.8569547100709188e-05, -0.0014801063699897011, -3.8569547100709242e-05, -0.00096423867751772602, -3.8569547100709018e-05, -9.642386775177263e-06, -0.00028927160325531708, -5.7854320651063338e-05, -2.4105966937943153e-05, -0.00028927160325531773, -4.8211933875886197e-06, -3.8569547100708998e-05, -3.8569547100709011e-05, -0.00078103332878935706, -3.8569547100709005e-05, -3.8569547100709011e-05, -0.0011040532857577938, -1.4463580162765919e-05, -0.00096423867751772602, -3.8569547100709133e-05, -3.8569547100709133e-05, -4.8211933875886332e-06, -3.8569547100709011e-05, -3.8569547100708998e-05, -4.8211933875886264e-06, -7.7139094201418009e-05, -7.7139094201418036e-05, -9.6423867751773206e-06, -1.9284773550354587e-05, -1.9284773550354587e-05, -3.8569547100709228e-05, -3.8569547100709228e-05, -0.00078103332878936508, -3.8569547100709208e-05, -3.8569547100709228e-05, -0.0001301722214648935, -0.000462834565208506, -3.856954710070912e-05, -0.00034230473051879176, -5.7854320651063703e-05, -5.785432065106369e-05, -3.8569547100709249e-05, -3.8569547100709323e-05, -4.8211933875886523e-05, -3.856954710070931e-05, -4.8211933875886449e-05, -0.00010124506113936142, -3.8569547100709032e-05, -2.4105966937943245e-05, -0.0001108874479145388, -3.8569547100708998e-05, -5.7854320651063365e-05, -1.4463580162765926e-05, -2.410596693794316e-05, -9.642386775177324e-06, -4.8211933875886501e-06, -4.8211933875886366e-06, -3.856954710070931e-05, -5.7854320651063663e-05, -2.8927160325531764e-05, -1.9284773550354506e-05, -3.8569547100709242e-05, -3.8569547100709296e-05, -3.8569547100709188e-05, -7.7139094201417914e-05, -3.8569547100708984e-05, -1.928477355035456e-05, -7.7139094201417833e-05, -3.8569547100708944e-05, -1.9284773550354567e-05, -3.8569547100709188e-05, -4.8211933875886197e-06, -3.8569547100708964e-05, -3.8569547100708971e-05, -7.7139094201418457e-05, -0.00011570864130212716, -3.8569547100709093e-05, -7.7139094201418185e-05, -7.7139094201418267e-05, -3.8569547100708978e-05, -3.8569547100708971e-05, -3.8569547100708998e-05, -3.8569547100709018e-05, -4.3390740488297405e-05, -0.00016392057517801352, -9.6423867751773511e-06, -3.8569547100709282e-05, -3.8569547100708957e-05, -4.3390740488297418e-05, -0.00012535102807730459, -3.8569547100709242e-05, -3.8569547100709079e-05, -3.856954710070931e-05, -1.9284773550354563e-05, -1.9284773550354563e-05, -4.8211933875886485e-06, -4.8211933875886654e-06, -4.8211933875886518e-06, -9.6423867751772867e-06, -8.1960287589006721e-05, -0.00014463580162765854, -5.7854320651063297e-05, -2.892716032553173e-05, -4.8211933875886349e-06, -1.928477355035455e-05, -7.713909420141828e-05, -0.00011570864130212676, -3.8569547100709289e-05, -1.9284773550354553e-05, -7.7139094201418226e-05, -7.7139094201418253e-05, -1.9284773550354553e-05, -5.785432065106327e-05, -3.8569547100709005e-05, -4.8211933875886603e-06, -9.6423867751773714e-06, -1.928477355035455e-05, -1.9284773550354563e-05, -4.3390740488297547e-05, -2.4105966937943211e-05, -3.8569547100709188e-05, -7.7139094201418402e-05, -0.00034712592390637978, -1.9284773550354641e-05, -4.8211933875886298e-06, -0.00028927160325531708, -3.8569547100709066e-05, -0.000231417282604255, -0.00023141728260425492, -0.00024105966937943216, -0.000231417282604255, -1.9284773550354641e-05, -1.9284773550354641e-05, -3.8569547100709066e-05, -3.8569547100709093e-05, -1.9284773550354533e-05, -1.9284773550354533e-05, -3.8569547100709269e-05, -4.8211933875886586e-06, -3.8569547100709269e-05, -4.8211933875886341e-06, -4.8211933875886468e-06, -0.00033748353713120379, -1.9284773550354533e-05, -1.9284773550354533e-05, -0.00029409279664290548, -9.6423867751773121e-06, -0.00034712592390637891, -0.00034712592390637891, -3.8569547100709072e-05, -4.8211933875886298e-06, -3.8569547100709052e-05, -0.00034712592390637891, -0.00034712592390638244, -3.8569547100709039e-05, -3.8569547100709052e-05, -9.6423867751772512e-06, -9.6423867751772986e-06, -7.713909420141786e-05, -3.8569547100709052e-05, -3.8569547100709039e-05, -1.446358016276577e-05, -7.713909420141786e-05, -3.8569547100709411e-05, -3.8569547100709343e-05, -3.856954710070933e-05, -3.8569547100709418e-05, -1.928477355035454e-05, -1.928477355035454e-05, -3.8569547100709072e-05, -3.8569547100709079e-05, -4.821193387588662e-06, -4.8211933875886586e-06, -0.000969059870905318, -0.00096423867751772873, -2.4105966937943258e-05, -4.821193387588662e-06, -1.4463580162765787e-05, -4.8211933875886767e-05, -0.00038569547100708948, -9.6423867751773172e-06, -0.00044354979165815424, -4.8211933875886307e-06, -7.7139094201418741e-05, -7.7139094201418768e-05, -3.8569547100709086e-05, -3.8569547100709066e-05, -0.00038569547100708953, -0.00038569547100708959, -3.8569547100709391e-05, -0.0010944108989826102, -9.6423867751773562e-06, -0.00096423867751772613, -7.7139094201418714e-05, -3.8569547100709337e-05, -3.8569547100709404e-05, -4.8211933875886281e-06, -4.8211933875886629e-06, -3.8569547100709282e-05, -3.8569547100709262e-05, -9.6423867751773562e-06, -9.6423867751773579e-06, -4.821193387588629e-06, -4.8211933875886485e-06, -3.8569547100709032e-05, -2.4105966937943163e-05, -1.446358016276598e-05, -1.9284773550354536e-05, -1.9284773550354543e-05, -4.821193387588662e-06, -7.2317900813831777e-05, -3.8569547100709208e-05, -3.8569547100709201e-05, -4.3390740488297737e-05, -3.8569547100709079e-05, -7.2317900813831357e-05, -9.6423867751773257e-06, -4.821193387588673e-06, -3.8569547100709072e-05, -3.8569547100709066e-05, -4.8211933875886637e-06, -4.8211933875886552e-06, -3.8569547100709194e-05, -3.8569547100709215e-05, -9.6423867751773918e-06, -4.8211933875886442e-06, -3.8569547100709127e-05, -7.7139094201418592e-05, -4.8211933875886679e-05, -3.8569547100709255e-05, -7.7139094201418457e-05, -4.8211933875886645e-06, -3.8569547100709174e-05, -8.1960287589006748e-05, -3.8569547100709276e-05, -3.8569547100709181e-05, -7.7139094201418633e-05, -0.00015427818840283816, -0.00012052983468971598, -3.8569547100709052e-05, -7.7139094201418633e-05, -7.713909420141866e-05, -1.9284773550354716e-05, -3.8569547100709174e-05, -4.8211933875886632e-05, -5.3033127263474775e-05, -1.9284773550354716e-05, -7.7139094201419134e-05, -3.8569547100709221e-05, -3.8569547100709269e-05, -3.8569547100709262e-05, -9.6423867751773867e-06, -3.8569547100709364e-05, -3.8569547100709052e-05, -4.8211933875886781e-06, -3.8569547100709059e-05, -9.6423867751773274e-06, -3.8569547100709371e-05, -3.8569547100709269e-05, -3.8569547100709249e-05, -4.8211933875886645e-06, -7.7139094201418687e-05, -7.713909420141866e-05, -4.8211933875886561e-06, -3.8569547100709228e-05, -3.8569547100709235e-05, -4.8211933875886595e-06, -3.8569547100709404e-05, -3.8569547100709425e-05, -3.8569547100709188e-05, -3.8569547100709418e-05, -0.00011570864130212635, -3.8569547100709384e-05, -3.856954710070914e-05, -3.8569547100709167e-05, -4.8211933875886476e-06, -3.856954710070912e-05, -3.856954710070916e-05, -7.7139094201418443e-05, -1.9284773550354543e-05, -8.6781480976595189e-05, -1.9284773550354536e-05, -4.8211933875886739e-06, -9.6423867751773037e-06, -6.267551403865209e-05, -3.8569547100709249e-05, -7.7139094201418782e-05, -0.00040498024455744503, -3.8569547100709194e-05, -0.00042426501810779841, -3.8569547100709167e-05, -3.8569547100709188e-05, -7.713909420141866e-05, -0.00038569547100708866, -7.7139094201418633e-05, -0.00039051666439467603, -4.8211933875886281e-06, -7.7139094201418606e-05, -7.7139094201418687e-05, -1.9284773550354689e-05, -0.00040498024455744503, -0.00038569547100708948, -0.00038569547100709094, 0.019255846390029051, -4.8211933875886629e-06, -1.9284773550354506e-05, -4.8211933875886417e-06, -4.8211933875886696e-06, -4.8211933875886772e-06, -3.8569547100709276e-05, -3.8569547100709269e-05, -3.8569547100709262e-05, -3.8569547100709255e-05, -4.8211933875886417e-06, -4.8211933875886442e-06, -4.8211933875886408e-06, -3.8569547100709337e-05, -4.8211933875886842e-05, -9.6423867751773413e-05, -7.7139094201418917e-05, -7.7139094201418457e-05, -3.8569547100709343e-05, -0.00011570864130212764, -1.4463580162766031e-05, -0.00042426501810780107, -7.7139094201418484e-05, -0.00034712592390637859, -4.8211933875886612e-06, -4.821193387588651e-06, -0.00012052983468971601, -7.7139094201418443e-05, -3.8569547100709208e-05, -3.3748353713120015e-05, -1.9284773550354502e-05, -9.642386775177324e-06, -0.00034712592390637864, -9.6423867751773257e-06, -1.928477355035454e-05, -1.928477355035454e-05, -0.00034712592390637864, -3.8569547100709093e-05, -4.8211933875886485e-06, -3.8569547100709181e-05, -4.8211933875886408e-06, -3.8569547100709201e-05, -4.821193387588672e-05, -1.446358016276606e-05, -3.8569547100709188e-05, -7.2317900813830192e-05, -4.821193387588629e-06, -3.85695471007091e-05, -9.6423867751773562e-06, -9.6423867751773579e-06, -9.6423867751773443e-06, -4.8211933875886552e-06, -2.8927160325531906e-05, -1.4463580162766011e-05, -3.856954710070933e-05, -3.856954710070931e-05, -7.7139094201418538e-05, -0.00012535102807730451, -0.00011088744791453719, -4.821193387588629e-06, -7.7139094201418768e-05, -3.856954710070933e-05, -2.8927160325531947e-05, -9.6423867751772783e-06, -4.8211933875886442e-06, -4.8211933875886696e-06, 0.019255846390029051, -0.00038569547100709094, -0.0007810333287893666, -0.00038569547100708921, -0.00038569547100708866, -1.9284773550354716e-05, -9.6423867751772986e-06, -3.8569547100709282e-05, -4.3390740488297764e-05, -1.9284773550354716e-05, -5.3033127263475025e-05, -4.821193387588662e-06, -4.8211933875886307e-06, -7.7139094201418402e-05, -3.85695471007091e-05, -3.8569547100709133e-05, -4.8211933875886518e-06, -4.821193387588662e-06, -1.9284773550354638e-05, -1.9284773550354634e-05, -7.7139094201418755e-05, -3.8569547100709316e-05, -4.8211933875886366e-06, -0.00078103332878935868, -3.8569547100709316e-05, -3.8569547100709323e-05, -4.8211933875886561e-06, -1.9284773550354634e-05, -1.9284773550354638e-05, -9.6423867751772613e-06, -9.6423867751772596e-06, -1.4463580162765892e-05, -4.8211933875886629e-06, -9.6423867751772596e-06, -9.6423867751772613e-06, -4.8211933875886451e-06, -4.8211933875886637e-06, -1.928477355035455e-05, -5.7854320651063758e-05, -3.8569547100709106e-05, -4.8211933875886408e-06, -4.8211933875886307e-06, -8.6781480976595135e-05, -4.8211933875886544e-06, -1.9284773550354689e-05, -9.6423867751773511e-06, -7.713909420141824e-05, -7.7139094201418213e-05, -2.410596693794338e-05, -1.9284773550354614e-05, -9.642386775177385e-06, -2.8927160325531923e-05, -0.00040980143794503343, -4.8211933875886493e-06, -1.9284773550354618e-05, -1.9284773550354611e-05, -7.7139094201418185e-05, -7.7139094201418267e-05, -1.9284773550354614e-05, -1.9284773550354573e-05, -1.9284773550354573e-05, -4.8211933875886408e-06, -0.0002217748958290766, -4.821193387588632e-05, -4.8211933875886654e-06, -3.8569547100709323e-05, -3.8569547100709445e-05, -3.8569547100709316e-05, -7.7139094201418267e-05, -3.8569547100709005e-05, -7.7139094201418185e-05, -3.8569547100709445e-05, -3.8569547100709445e-05, -0.0014801063699897167, -3.8569547100709337e-05, -0.00096423867751772559, -3.856954710070912e-05, -9.6423867751773274e-06, -0.00028927160325532088, -5.785432065106369e-05, -2.4105966937943323e-05, -0.00028927160325532153, -4.8211933875886324e-06, -3.8569547100709262e-05, -3.8569547100709269e-05, -0.00078103332878935868, -3.8569547100709106e-05, -3.8569547100709113e-05, -0.001104053285757784, -1.4463580162766009e-05, -0.00096423867751772559, -3.8569547100709235e-05, -3.8569547100709228e-05, -4.8211933875886459e-06, -3.8569547100709276e-05, -3.8569547100709255e-05, -4.8211933875886383e-06, -7.7139094201418213e-05, -7.713909420141824e-05, -9.6423867751773443e-06, -1.9284773550354638e-05, -1.9284773550354634e-05, -3.856954710070933e-05, -3.8569547100709323e-05, -0.0007810333287893666, -3.856954710070931e-05, -3.856954710070933e-05, -0.0001301722214648928, -0.00046283456520850854, -3.8569547100709221e-05, -0.00034230473051879057, -5.7854320651064063e-05, -5.7854320651064056e-05, -3.856954710070935e-05, -3.8569547100709425e-05, -4.8211933875886856e-05, -3.8569547100709404e-05, -4.8211933875886774e-05, -0.00010124506113936137, -3.8569547100709133e-05, -2.4105966937943411e-05, -0.00011088744791453838, -3.85695471007091e-05, -5.7854320651063717e-05, -1.4463580162766016e-05, -2.4105966937943326e-05, -9.6423867751773477e-06, -4.8211933875886629e-06, -4.8211933875886485e-06, -3.8569547100709404e-05, -5.7854320651064029e-05, -2.8927160325531943e-05, -1.9284773550354557e-05, -3.8569547100709337e-05, -3.8569547100709391e-05, -3.8569547100709445e-05, -7.7139094201418118e-05, -3.8569547100709086e-05, -1.9284773550354611e-05, -7.7139094201418036e-05, -3.8569547100709045e-05, -1.9284773550354618e-05, -3.8569547100709445e-05, -4.8211933875886324e-06, -3.8569547100709066e-05, -3.8569547100709072e-05, -7.713909420141866e-05, -0.00011570864130212788, -3.8569547100709194e-05, -7.7139094201418714e-05, -7.7139094201418782e-05, -3.8569547100709079e-05, -3.8569547100709072e-05, -3.85695471007091e-05, -3.856954710070912e-05, -4.3390740488297371e-05, -0.0001639205751780135, -9.6423867751774155e-06, -3.8569547100709384e-05, -3.8569547100709052e-05, -4.3390740488297385e-05, -0.0001253510280773044, -3.8569547100709343e-05, -3.8569547100709181e-05, -3.8569547100709411e-05, -1.9284773550354614e-05, -1.9284773550354614e-05, -4.8211933875886603e-06, -4.8211933875886772e-06, -4.8211933875886645e-06, -9.6423867751773105e-06, -8.1960287589006721e-05, -0.00014463580162766046, -5.7854320651063656e-05, -2.8927160325531906e-05, -4.8211933875886468e-06, -1.9284773550354601e-05, -7.7139094201418484e-05, -0.00011570864130212747, -3.8569547100709391e-05, -1.9284773550354604e-05, -7.7139094201418429e-05, -7.7139094201418457e-05, -1.9284773550354604e-05, -5.7854320651063622e-05, -3.8569547100709106e-05, -4.821193387588673e-06, -9.6423867751773969e-06, -1.9284773550354601e-05, -1.9284773550354614e-05, -4.33907404882975e-05, -2.4105966937943374e-05, -3.8569547100709289e-05, -7.7139094201418592e-05, -0.00034712592390637946, -1.9284773550354689e-05, -4.8211933875886425e-06, -0.00028927160325532088, -3.8569547100709167e-05, -0.00023141728260425644, -0.00023141728260425636, -0.00024105966937943202, -0.00023141728260425644, -1.9284773550354689e-05, -1.9284773550354692e-05, -3.8569547100709167e-05, -3.8569547100709188e-05, -1.9284773550354584e-05, -1.9284773550354584e-05, -3.8569547100709371e-05, -4.8211933875886713e-06, -3.8569547100709364e-05, -4.8211933875886468e-06, -4.8211933875886595e-06, -0.00033748353713120298, -1.9284773550354584e-05, -1.9284773550354584e-05, -0.00029409279664290895, -9.6423867751773376e-06, -0.00034712592390637864, -0.00034712592390637864, -3.8569547100709174e-05, -4.8211933875886425e-06, -3.8569547100709154e-05, -0.00034712592390637859, -0.00034712592390638211, -3.8569547100709133e-05, -3.8569547100709154e-05, -9.6423867751772766e-06, -9.642386775177324e-06, -7.7139094201418063e-05, -3.8569547100709147e-05, -3.856954710070914e-05, -1.4463580162765858e-05, -7.7139094201418063e-05, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -1.211324838631652e-05, -1.2052983468971555e-05, -3.0132458672429005e-07, -6.0264917344857653e-08, -1.8079475203457541e-07, -6.026491734485837e-07, -4.8211933875886849e-06, -1.2052983468971531e-07, -5.5443723957269065e-06, -6.0264917344857666e-08, -9.6423867751772224e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886849e-06, -4.8211933875886849e-06, -4.8211933875886112e-07, -1.3680136237282607e-05, -1.2052983468971525e-07, -1.2052983468971712e-05, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971525e-07, -1.2052983468971525e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.8211933875886112e-07, -3.0132458672429005e-07, -1.8079475203457551e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857653e-08, -9.0397376017288053e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -5.4238425610371436e-07, -4.8211933875886133e-07, -9.0397376017287735e-07, -1.2052983468971528e-07, -6.026491734485764e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -9.6423867751772245e-07, -6.0264917344858254e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -1.0245035948625733e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -1.928477355035444e-06, -1.5066229336214484e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -6.0264917344858275e-07, -6.6291409079343367e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857627e-08, -4.8211933875886122e-07, -1.2052983468971533e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -9.6423867751772224e-07, -9.6423867751772224e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886112e-07, -1.4463580162766037e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -1.0847685122074262e-06, -2.4105966937943066e-07, -6.0264917344857653e-08, -1.2052983468971533e-07, -7.8344392548315742e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -5.0622530569680822e-06, -4.8211933875886122e-07, -5.3033127263474524e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772224e-07, -4.8211933875886535e-06, -9.6423867751772245e-07, -4.8814583049335245e-06, -6.0264917344857653e-08, -9.6423867751772245e-07, -9.6423867751772224e-07, -2.4105966937943056e-07, -5.0622530569680822e-06, -4.8211933875886849e-06, -4.8211933875886501e-06, -4.8211933875886629e-06, 0.00024545900834560644, -2.4105966937943051e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -6.0264917344857627e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.8211933875886133e-07, -6.0264917344858032e-07, -1.2052983468971666e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -1.4463580162766045e-06, -1.8079475203457819e-07, -5.3033127263474947e-06, -9.6423867751772245e-07, -4.3390740488297217e-06, -6.0264917344857666e-08, -6.0264917344857666e-08, -1.5066229336214534e-06, -9.6423867751772266e-07, -4.8211933875886122e-07, -4.2185442141401227e-07, -2.4105966937943056e-07, -1.2052983468971528e-07, -4.3390740488297217e-06, -1.2052983468971528e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.33907404882972e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -6.0264917344857989e-07, -1.8079475203457557e-07, -4.8211933875886133e-07, -9.039737601728746e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -1.2052983468971525e-07, -1.2052983468971525e-07, -1.2052983468971528e-07, -6.0264917344857666e-08, -3.6158950406915309e-07, -1.8079475203457779e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.5668878509663106e-06, -1.3860930989317272e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.6158950406915394e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.8211933875886629e-06, -4.8211933875886501e-06, -9.7629166098670811e-06, -4.8211933875886501e-06, -4.8211933875886535e-06, -2.4105966937943061e-07, -1.2052983468971531e-07, -4.8211933875886112e-07, -5.4238425610371098e-07, -2.4105966937943061e-07, -6.6291409079343441e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -9.6423867751772266e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -9.7629166098670574e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.8079475203457551e-07, -6.026491734485764e-08, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -2.4105966937943061e-07, -7.2317900813830227e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -1.0847685122074287e-06, -6.0264917344857653e-08, -2.4105966937943051e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.0132458672429138e-07, -2.4105966937943061e-07, -1.2052983468971528e-07, -3.6158950406915103e-07, -5.1225179743129167e-06, -6.0264917344857666e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943066e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.0264917344857666e-08, -2.7721861978634401e-06, -6.026491734485801e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.8211933875886101e-07, -9.6423867751772245e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -1.8501329624871626e-05, -4.8211933875886122e-07, -1.2052983468971631e-05, -4.8211933875886133e-07, -1.2052983468971528e-07, -3.615895040691476e-06, -7.2317900813829634e-07, -3.013245867242909e-07, -3.6158950406915162e-06, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.7629166098670574e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.3800666071972352e-05, -1.8079475203457546e-07, -1.2052983468971641e-05, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971528e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.7629166098670811e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.6271527683111902e-06, -5.7854320651064198e-06, -4.8211933875886122e-07, -4.2788091314848406e-06, -7.2317900813830184e-07, -7.2317900813830184e-07, -4.8211933875886133e-07, -4.8211933875886112e-07, -6.0264917344858053e-07, -4.8211933875886112e-07, -6.026491734485837e-07, -1.2655632642420197e-06, -4.8211933875886133e-07, -3.0132458672428995e-07, -1.3860930989317201e-06, -4.8211933875886122e-07, -7.2317900813829549e-07, -1.807947520345712e-07, -3.013245867242909e-07, -1.2052983468971525e-07, 0.00024545900834560644, -6.0264917344857666e-08, -4.8211933875886112e-07, -7.2317900813830205e-07, -3.6158950406915373e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886101e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.4105966937943061e-07, -4.8211933875886101e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772224e-07, -1.4463580162766041e-06, -4.8211933875886133e-07, -9.6423867751772224e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -5.4238425610371479e-07, -2.0490071897251584e-06, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -5.4238425610373035e-07, -1.5668878509663123e-06, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886112e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.0264917344857653e-08, -6.0264917344857627e-08, -6.0264917344857666e-08, -1.2052983468971533e-07, -1.0245035948625671e-06, -1.807947520345738e-06, -7.2317900813829888e-07, -3.6158950406915309e-07, -6.0264917344857666e-08, -2.4105966937943061e-07, -9.6423867751772245e-07, -1.4463580162766045e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -7.2317900813830205e-07, -4.8211933875886122e-07, -6.026491734485764e-08, -1.2052983468971531e-07, -2.4105966937943061e-07, -2.4105966937943066e-07, -5.4238425610371373e-07, -3.0132458672429175e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.3390740488297166e-06, -2.4105966937943056e-07, -6.0264917344857666e-08, -3.6158950406914751e-06, -4.8211933875886122e-07, -2.8927160325532514e-06, -2.8927160325532082e-06, -3.013245867242895e-06, -2.8927160325532514e-06, -2.4105966937943056e-07, -2.4105966937943056e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -6.026491734485764e-08, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.218544214140029e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -3.6761599580363405e-06, -1.2052983468971531e-07, -4.33907404882972e-06, -4.3390740488297217e-06, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.3390740488297217e-06, -4.3390740488297132e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.8079475203457525e-07, -9.6423867751772266e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.928477355035444e-06, -1.928477355035444e-06, -2.4105966937943045e-07, 0.00024527821359357163, -4.8452993545265824e-05, -4.8211933875886083e-05, -1.2052983468971539e-06, -2.4105966937943045e-07, -7.2317900813829242e-07, -2.410596693794317e-06, -1.9284773550354584e-05, -4.8211933875886101e-07, -2.2177489582907653e-05, -2.4105966937943061e-07, -3.8569547100708856e-06, -3.8569547100708856e-06, -1.928477355035444e-06, -1.928477355035444e-06, -1.9284773550354584e-05, -1.9284773550354584e-05, -1.9284773550354449e-06, -5.472054494913053e-05, -4.8211933875886101e-07, -4.8211933875886727e-05, -3.8569547100708856e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943051e-07, -2.4105966937943051e-07, -1.928477355035444e-06, -1.928477355035444e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.928477355035444e-06, -1.2052983468971539e-06, -7.2317900813830078e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943045e-07, -3.6158950406915238e-06, -1.928477355035444e-06, -1.928477355035444e-06, -2.1695370244148841e-06, -1.9284773550354449e-06, -3.615895040691506e-06, -4.8211933875886091e-07, -2.4105966937943051e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943051e-07, -2.4105966937943051e-07, -1.928477355035444e-06, -1.928477355035444e-06, -4.8211933875886112e-07, -2.4105966937943061e-07, -1.9284773550354449e-06, -3.8569547100708881e-06, -2.4105966937943119e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -2.4105966937943051e-07, -1.928477355035444e-06, -4.0980143794503447e-06, -1.9284773550354436e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -7.7139094201417762e-06, -6.0264917344858324e-06, -1.928477355035444e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -9.6423867751772202e-07, -1.928477355035444e-06, -2.4105966937943128e-06, -2.6516563631737618e-06, -9.6423867751772202e-07, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354436e-06, -1.9284773550354436e-06, -4.8211933875886101e-07, -1.928477355035444e-06, -1.928477355035444e-06, -2.4105966937943035e-07, -1.928477355035444e-06, -4.8211933875886101e-07, -1.928477355035444e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943045e-07, -1.928477355035444e-06, -1.928477355035444e-06, -1.9284773550354449e-06, -1.928477355035444e-06, -5.7854320651063368e-06, -1.928477355035444e-06, -1.9284773550354449e-06, -1.928477355035444e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.928477355035444e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -4.3390740488297369e-06, -9.6423867751772245e-07, -2.4105966937943051e-07, -4.8211933875886122e-07, -3.1337757019326407e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -2.0249012227872393e-05, -1.928477355035444e-06, -2.1213250905390115e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -1.9284773550354472e-05, -3.8569547100708881e-06, -1.9525833219733867e-05, -2.4105966937943051e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -9.6423867751772245e-07, -2.0249012227872393e-05, -1.9284773550354584e-05, -1.9284773550354458e-05, -1.9284773550354506e-05, -2.4105966937943051e-07, 0.00098111285437428694, -2.4105966937943061e-07, -2.4105966937943051e-07, -2.4105966937943051e-07, -1.928477355035444e-06, -1.928477355035444e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.928477355035444e-06, -2.4105966937943263e-06, -4.821193387588629e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -1.928477355035444e-06, -5.7854320651063885e-06, -7.2317900813830332e-07, -2.1213250905390192e-05, -3.8569547100708881e-06, -1.7356296195319148e-05, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.0264917344858341e-06, -3.8569547100708898e-06, -1.928477355035444e-06, -1.6874176856560222e-06, -9.6423867751772139e-07, -4.8211933875886091e-07, -1.7356296195319141e-05, -4.8211933875886091e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.7356296195319141e-05, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.4105966937943102e-06, -7.2317900813829274e-07, -1.9284773550354449e-06, -3.6158950406915001e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -1.4463580162765935e-06, -7.2317900813830163e-07, -1.928477355035444e-06, -1.928477355035444e-06, -3.8569547100708898e-06, -6.2675514038652661e-06, -5.5443723957269226e-06, -2.4105966937943061e-07, -3.8569547100708898e-06, -1.928477355035444e-06, -1.4463580162765965e-06, -4.8211933875886101e-07, -2.4105966937943061e-07, -2.4105966937943051e-07, -1.9284773550354506e-05, -1.9284773550354458e-05, -3.9051666439467843e-05, -1.9284773550354458e-05, -1.9284773550354472e-05, -9.6423867751772202e-07, -4.8211933875886122e-07, -1.928477355035444e-06, -2.1695370244148782e-06, -9.6423867751772202e-07, -2.6516563631737711e-06, -2.4105966937943051e-07, -2.4105966937943061e-07, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -2.4105966937943045e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.8569547100708881e-06, -1.928477355035444e-06, -2.4105966937943061e-07, -3.9051666439467762e-05, -1.928477355035444e-06, -1.928477355035444e-06, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -7.2317900813829274e-07, -2.4105966937943045e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -2.4105966937943051e-07, -9.6423867751772139e-07, -2.8927160325531726e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.3390740488297852e-06, -2.4105966937943051e-07, -9.6423867751772139e-07, -4.8211933875886101e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -1.205298346897156e-06, -9.6423867751772202e-07, -4.8211933875886101e-07, -1.4463580162765855e-06, -2.0490071897251663e-05, -2.4105966937943061e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, 0.00024527821359357157, 0.00023443052847149911, -2.4105966937943018e-06, -2.4105966937943051e-07, -1.928477355035444e-06, -1.9284773550354428e-06, -1.928477355035444e-06, -3.8569547100708881e-06, -1.9284773550354428e-06, -3.8569547100708881e-06, -1.9284773550354428e-06, -1.9284773550354428e-06, -7.4005318499484931e-05, -1.928477355035444e-06, -4.8211933875886415e-05, -1.9284773550354449e-06, -4.8211933875886091e-07, -1.4463580162765948e-05, -2.8927160325531718e-06, -1.2052983468971543e-06, -1.4463580162766058e-05, -2.4105966937943061e-07, -1.9284773550354436e-06, -1.9284773550354436e-06, -3.9051666439467762e-05, -1.928477355035444e-06, -1.928477355035444e-06, -5.5202664287890291e-05, -7.2317900813829231e-07, -4.8211933875886429e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943045e-07, -1.9284773550354436e-06, -1.9284773550354436e-06, -2.4105966937943061e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.928477355035444e-06, -1.928477355035444e-06, -3.9051666439467843e-05, -1.928477355035444e-06, -1.928477355035444e-06, -6.5086110732445804e-06, -2.3141728260425368e-05, -1.9284773550354449e-06, -1.7115236525939589e-05, -2.8927160325531701e-06, -2.8927160325531701e-06, -1.928477355035444e-06, -1.928477355035444e-06, -2.4105966937943213e-06, -1.928477355035444e-06, -2.4105966937943166e-06, -5.0622530569680915e-06, -1.9284773550354449e-06, -1.2052983468971594e-06, -5.5443723957268938e-06, -1.928477355035444e-06, -2.8927160325531718e-06, -7.2317900813830184e-07, -1.2052983468971551e-06, -4.8211933875886101e-07, -2.4105966937943051e-07, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.8927160325532099e-06, -1.4463580162765958e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354428e-06, -3.8569547100708856e-06, -1.928477355035444e-06, -9.6423867751772202e-07, -3.8569547100708881e-06, -1.9284773550354449e-06, -9.6423867751772202e-07, -1.9284773550354428e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -5.785432065106341e-06, -1.9284773550354449e-06, -3.8569547100708856e-06, -3.8569547100708856e-06, -1.928477355035444e-06, -1.928477355035444e-06, -1.928477355035444e-06, -1.928477355035444e-06, -2.1695370244148388e-06, -8.1960287589007114e-06, -4.8211933875886091e-07, -1.928477355035444e-06, -1.9284773550354449e-06, -2.1695370244148943e-06, -6.2675514038652881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -2.4105966937943061e-07, -2.4105966937943051e-07, -2.4105966937943051e-07, -4.8211933875886122e-07, -4.0980143794503244e-06, -7.2317900813829435e-06, -2.8927160325531718e-06, -1.4463580162765935e-06, -2.4105966937943061e-07, -9.6423867751772202e-07, -3.8569547100708881e-06, -5.7854320651063893e-06, -1.928477355035444e-06, -9.6423867751772202e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -9.6423867751772202e-07, -2.8927160325531718e-06, -1.928477355035444e-06, -2.4105966937943051e-07, -4.8211933875886101e-07, -9.6423867751772202e-07, -9.6423867751772245e-07, -2.1695370244148583e-06, -1.2052983468971577e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -1.7356296195319222e-05, -9.6423867751772245e-07, -2.4105966937943061e-07, -1.4463580162765948e-05, -1.928477355035444e-06, -1.1570864130212857e-05, -1.1570864130212813e-05, -1.2052983468971665e-05, -1.1570864130212857e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.928477355035444e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.928477355035444e-06, -2.4105966937943051e-07, -1.928477355035444e-06, -2.4105966937943061e-07, 0.00024527821359357174, -1.6874176856560143e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.4704639832145342e-05, -4.8211933875886101e-07, -1.7356296195319141e-05, -1.7356296195319141e-05, -1.928477355035444e-06, -2.4105966937943051e-07, -1.928477355035444e-06, -1.7356296195319148e-05, -1.7356296195319114e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.2317900813829274e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -1.2113248386316473e-05, -1.2052983468971504e-05, -3.0132458672428878e-07, -6.0264917344857666e-08, -1.8079475203457411e-07, -6.0264917344858137e-07, -4.8211933875886629e-06, -1.2052983468971536e-07, -5.5443723957269353e-06, -6.0264917344857679e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886629e-06, -4.8211933875886629e-06, -4.8211933875886122e-07, -1.3680136237282661e-05, -1.2052983468971531e-07, -1.2052983468971665e-05, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886101e-07, -3.0132458672428878e-07, -1.8079475203457424e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857666e-08, -9.0397376017287651e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610371648e-07, -4.8211933875886144e-07, -9.0397376017287323e-07, -1.2052983468971533e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344858e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344857666e-08, -4.8211933875886144e-07, -1.0245035948625796e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6423867751772266e-07, -1.9284773550354445e-06, -1.5066229336214418e-06, -4.8211933875886144e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -6.0264917344858021e-07, -6.6291409079343261e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -1.2052983468971533e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.4463580162765927e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.0847685122074353e-06, -2.4105966937943072e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -7.8344392548315657e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -5.0622530569680788e-06, -4.8211933875886144e-07, -5.3033127263474659e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -4.8211933875886332e-06, -9.6423867751772266e-07, -4.8814583049335075e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -5.0622530569680788e-06, -4.8211933875886629e-06, -4.8211933875886298e-06, -4.8211933875886417e-06, -6.0264917344857666e-08, -2.4105966937943061e-07, 0.00024545900834560644, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -6.0264917344858222e-07, -1.2052983468971611e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -4.8211933875886133e-07, -1.4463580162765942e-06, -1.8079475203457686e-07, -5.3033127263475075e-06, -9.6423867751772266e-07, -4.3390740488297581e-06, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.5066229336214469e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.2185442141400512e-07, -2.4105966937943061e-07, -1.2052983468971533e-07, -4.3390740488297564e-06, -1.2052983468971533e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297564e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857968e-07, -1.8079475203457424e-07, -4.8211933875886144e-07, -9.0397376017287068e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -3.6158950406914542e-07, -1.8079475203457649e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -1.5668878509663055e-06, -1.3860930989317344e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -3.6158950406915124e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886417e-06, -4.8211933875886298e-06, -9.7629166098670455e-06, -4.8211933875886298e-06, -4.8211933875886332e-06, -2.4105966937943061e-07, -1.2052983468971536e-07, -4.8211933875886112e-07, -5.4238425610371828e-07, -2.4105966937943061e-07, -6.629140907934361e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.7629166098670235e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.8079475203457424e-07, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943061e-07, -7.2317900813829739e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.0847685122074374e-06, -6.0264917344857679e-08, -2.4105966937943051e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.013245867242901e-07, -2.4105966937943072e-07, -1.2052983468971533e-07, -3.6158950406914838e-07, -5.1225179743129167e-06, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, -2.772186197863457e-06, -6.0264917344857756e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.8501329624871487e-05, -4.8211933875886133e-07, -1.2052983468971582e-05, -4.8211933875886144e-07, -1.2052983468971533e-07, -3.615895040691465e-06, -7.2317900813829718e-07, -3.0132458672428963e-07, -3.6158950406914912e-06, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670235e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, 0.00023171860719097928, -1.8079475203457414e-07, -1.2052983468971594e-05, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670455e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.6271527683111536e-06, -5.7854320651063792e-06, -4.8211933875886144e-07, -4.2788091314848753e-06, -7.2317900813829655e-07, -7.2317900813829655e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344858243e-07, -4.8211933875886122e-07, -6.0264917344858116e-07, -1.265563264242018e-06, -4.8211933875886144e-07, -3.013245867242909e-07, -1.3860930989317281e-06, -4.8211933875886144e-07, -7.2317900813829718e-07, -1.8079475203457655e-07, -3.0132458672428963e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -7.2317900813829655e-07, -3.6158950406915113e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.4463580162765935e-06, -4.8211933875886144e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610371913e-07, -2.0490071897251677e-06, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -5.4238425610371913e-07, -1.566887850966307e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.0245035948625716e-06, -1.8079475203457312e-06, -7.2317900813829676e-07, -3.6158950406914542e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -9.6423867751772266e-07, -1.4463580162765933e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -7.2317900813829708e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -5.4238425610371807e-07, -3.0132458672429048e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.3390740488297446e-06, -2.4105966937943061e-07, -6.0264917344857679e-08, -3.6158950406914641e-06, -4.8211933875886144e-07, -2.8927160325532307e-06, -2.892716032553187e-06, -3.0132458672428836e-06, -2.8927160325532307e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.2185442141400832e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -3.6761599580363371e-06, -1.2052983468971533e-07, -4.3390740488297564e-06, -4.3390740488297564e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.3390740488297581e-06, -4.3390740488297496e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.8079475203457424e-07, -9.6423867751772287e-07, -4.8211933875886101e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -1.2113248386316534e-05, -1.2052983468971572e-05, -3.0132458672429048e-07, -6.0264917344857653e-08, -1.8079475203457588e-07, -6.0264917344858095e-07, -4.8211933875886916e-06, -1.2052983468971531e-07, -5.5443723957269014e-06, -6.0264917344857653e-08, -9.6423867751772224e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886916e-06, -4.8211933875886916e-06, -4.8211933875886101e-07, -1.3680136237282587e-05, -1.2052983468971525e-07, -1.2052983468971733e-05, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971525e-07, -1.2052983468971525e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886101e-07, -3.0132458672429048e-07, -1.8079475203457594e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.0264917344857653e-08, -9.0397376017288159e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -5.4238425610371076e-07, -4.8211933875886122e-07, -9.0397376017287863e-07, -1.2052983468971528e-07, -6.026491734485764e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -9.6423867751772245e-07, -6.0264917344858349e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -1.0245035948625718e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.928477355035444e-06, -1.5066229336214505e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -2.4105966937943051e-07, -4.8211933875886122e-07, -6.026491734485837e-07, 0.00024485635917215784, -2.4105966937943051e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971525e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857627e-08, -4.8211933875886122e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -9.6423867751772224e-07, -9.6423867751772224e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.4463580162766071e-06, -4.8211933875886101e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -1.0847685122074236e-06, -2.4105966937943061e-07, -6.0264917344857653e-08, -1.2052983468971531e-07, -7.8344392548314037e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -5.0622530569680822e-06, -4.8211933875886122e-07, -5.3033127263474473e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772224e-07, -4.8211933875886612e-06, -9.6423867751772245e-07, -4.8814583049335295e-06, -6.0264917344857653e-08, -9.6423867751772245e-07, -9.6423867751772224e-07, -2.4105966937943056e-07, -5.0622530569680822e-06, -4.8211933875886916e-06, -4.8211933875886569e-06, -4.8211933875886696e-06, -6.0264917344857653e-08, -2.4105966937943051e-07, -6.0264917344857653e-08, 0.00024545900834560644, -6.0264917344857627e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344858561e-07, -1.2052983468971606e-06, -9.6423867751772202e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -1.4463580162766079e-06, -1.8079475203457067e-07, -5.3033127263474905e-06, -9.6423867751772245e-07, -4.3390740488297115e-06, -6.0264917344857653e-08, -6.0264917344857653e-08, -1.5066229336214556e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.2185442141400332e-07, -2.4105966937943056e-07, -1.2052983468971528e-07, -4.3390740488297115e-06, -1.2052983468971528e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.3390740488297098e-06, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344858328e-07, -1.8079475203457599e-07, -4.8211933875886122e-07, -9.0397376017287587e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -1.2052983468971525e-07, -1.2052983468971525e-07, -1.2052983468971528e-07, -6.0264917344857666e-08, -3.6158950406915394e-07, -1.8079475203457821e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.5668878509663114e-06, -1.3860930989317247e-06, -6.0264917344857653e-08, -9.6423867751772245e-07, -4.8211933875886133e-07, -3.6158950406914647e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -4.8211933875886696e-06, -4.8211933875886569e-06, -9.7629166098670913e-06, -4.8211933875886569e-06, -4.8211933875886612e-06, -2.4105966937943051e-07, -1.2052983468971531e-07, -4.8211933875886091e-07, -5.4238425610370971e-07, -2.4105966937943051e-07, -6.629140907934342e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -9.7629166098670676e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.8079475203457594e-07, -6.026491734485764e-08, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -2.4105966937943056e-07, -7.2317900813830438e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -1.0847685122074211e-06, -6.0264917344857653e-08, -2.4105966937943035e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.013245867242918e-07, -2.4105966937943061e-07, -1.2052983468971528e-07, -3.6158950406915187e-07, -5.1225179743129167e-06, -6.0264917344857666e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.0264917344857653e-08, -2.7721861978634384e-06, -6.0264917344858095e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.8211933875886101e-07, -9.6423867751772245e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -1.8501329624871673e-05, -4.8211933875886133e-07, -1.2052983468971651e-05, -4.8211933875886122e-07, -1.2052983468971528e-07, -3.6158950406914785e-06, -7.2317900813830396e-07, -3.0132458672429132e-07, -3.6158950406915196e-06, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.7629166098670676e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.3800666071972339e-05, -1.8079475203457583e-07, -1.2052983468971661e-05, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971528e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670913e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.6271527683111758e-06, -5.7854320651064266e-06, -4.8211933875886122e-07, -4.2788091314848533e-06, -7.2317900813828247e-07, -7.2317900813828247e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -6.0264917344858603e-07, -4.8211933875886122e-07, -6.0264917344858455e-07, -1.2655632642420197e-06, -4.8211933875886122e-07, -3.0132458672429259e-07, -1.3860930989317184e-06, -4.8211933875886122e-07, -7.2317900813830396e-07, -1.8079475203457824e-07, -3.0132458672429132e-07, -1.2052983468971525e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886101e-07, -7.2317900813830375e-07, -3.6158950406915457e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -4.8211933875886101e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772224e-07, -1.4463580162766071e-06, -4.8211933875886122e-07, -9.6423867751772224e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -5.4238425610371331e-07, -2.0490071897251558e-06, -1.2052983468971528e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -5.4238425610371331e-07, -1.5668878509663127e-06, -4.8211933875886112e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.0264917344857653e-08, -6.0264917344857627e-08, -6.0264917344857653e-08, -1.2052983468971533e-07, -1.0245035948625656e-06, -1.8079475203457418e-06, -7.2317900813830396e-07, -3.6158950406915394e-07, -6.0264917344857653e-08, -2.4105966937943061e-07, -9.6423867751772245e-07, -1.4463580162766073e-06, -4.8211933875886101e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -7.2317900813830396e-07, -4.8211933875886122e-07, -6.026491734485764e-08, -1.2052983468971531e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -5.4238425610371246e-07, -3.0132458672429048e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.33907404882972e-06, -2.4105966937943056e-07, -6.0264917344857653e-08, -3.6158950406914751e-06, -4.8211933875886122e-07, -2.8927160325532582e-06, -2.892716032553215e-06, -3.0132458672429009e-06, -2.8927160325532582e-06, -2.4105966937943056e-07, -2.4105966937943056e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -6.026491734485764e-08, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.2185442141400239e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -3.6761599580363473e-06, -1.2052983468971531e-07, -4.3390740488297098e-06, -4.3390740488297115e-06, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.3390740488297115e-06, -4.3390740488297031e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.8079475203457594e-07, -9.6423867751772245e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -4.8211933875886112e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.026491734485764e-08, -6.026491734485764e-08, -1.2113248386316554e-05, -1.2052983468971594e-05, -3.013245867242909e-07, -6.026491734485764e-08, -1.8079475203457641e-07, -6.0264917344858561e-07, -4.8211933875886916e-06, -1.2052983468971528e-07, -5.5443723957268946e-06, -6.0264917344857653e-08, -9.6423867751772202e-07, -9.6423867751772181e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886747e-06, -4.8211933875886815e-06, -4.8211933875886101e-07, -1.368013623728256e-05, -1.205298346897161e-07, -1.2052983468971753e-05, -9.6423867751772202e-07, -4.8211933875886112e-07, -4.8211933875886101e-07, -6.026491734485764e-08, -6.0264917344857653e-08, -4.8211933875886112e-07, -4.8211933875886122e-07, -1.205298346897161e-07, -1.205298346897161e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886091e-07, -3.013245867242909e-07, -1.8079475203457655e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.026491734485764e-08, -9.039737601728746e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -5.4238425610370907e-07, -4.8211933875886122e-07, -9.0397376017288032e-07, -1.2052983468971525e-07, -6.0264917344857759e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857627e-08, -6.026491734485764e-08, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.2052983468971525e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -9.6423867751772245e-07, -6.0264917344858434e-07, -4.8211933875886112e-07, -9.6423867751772224e-07, -6.0264917344857627e-08, -4.8211933875886112e-07, -1.0245035948625697e-06, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354479e-06, -1.506622933621453e-06, -4.8211933875886112e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -2.4105966937943051e-07, -4.8211933875886122e-07, -6.0264917344858455e-07, -6.6291409079342996e-07, -2.4105966937943051e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.2052983468971525e-07, -4.8211933875886101e-07, -4.8211933875886112e-07, -6.0264917344857613e-08, -4.8211933875886112e-07, -1.2052983468971525e-07, -4.8211933875886101e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -6.026491734485764e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.026491734485764e-08, -4.8211933875886122e-07, -4.8211933875886112e-07, -6.026491734485764e-08, -4.8211933875886101e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -1.4463580162766111e-06, -4.8211933875886101e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -1.0847685122074203e-06, -2.4105966937943061e-07, -6.0264917344857627e-08, -1.2052983468971531e-07, -7.8344392548315826e-07, -4.8211933875886112e-07, -9.6423867751772224e-07, -5.0622530569680737e-06, -4.8211933875886112e-07, -5.3033127263474422e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772202e-07, -4.8211933875886688e-06, -9.6423867751772202e-07, -4.8814583049335363e-06, -6.026491734485764e-08, -9.6423867751772202e-07, -9.6423867751772202e-07, -2.4105966937943051e-07, -5.0622530569680703e-06, -4.8211933875886916e-06, -4.8211933875886654e-06, -4.8211933875886772e-06, -6.0264917344857627e-08, -2.4105966937943051e-07, -6.0264917344857653e-08, -6.0264917344857627e-08, 0.00024545900834560639, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886101e-07, -6.0264917344858667e-07, -1.2052983468971704e-06, -9.6423867751772202e-07, -9.6423867751772224e-07, -4.8211933875886101e-07, -1.4463580162766126e-06, -1.8079475203457919e-07, -5.3033127263474863e-06, -9.6423867751772224e-07, -4.339074048829698e-06, -6.026491734485764e-08, -6.0264917344857653e-08, -1.5066229336214581e-06, -9.6423867751772245e-07, -4.8211933875886112e-07, -4.2185442141400247e-07, -2.4105966937943061e-07, -1.2052983468971525e-07, -4.3390740488296963e-06, -1.2052983468971525e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.3390740488296963e-06, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344858434e-07, -1.8079475203457014e-07, -4.8211933875886122e-07, -9.039737601728746e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -1.205298346897161e-07, -1.205298346897161e-07, -1.2052983468971525e-07, -6.0264917344857653e-08, -3.61589504069155e-07, -1.8079475203457877e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -9.6423867751772224e-07, -1.5668878509663127e-06, -1.3860930989317145e-06, -6.0264917344857653e-08, -9.6423867751772224e-07, -4.8211933875886112e-07, -3.6158950406915584e-07, -1.2052983468971528e-07, -6.0264917344857653e-08, -6.026491734485764e-08, -4.8211933875886772e-06, -4.8211933875886654e-06, -9.7629166098671048e-06, -4.8211933875886654e-06, -4.8211933875886688e-06, -2.4105966937943051e-07, -1.2052983468971528e-07, -4.8211933875886101e-07, -5.4238425610370801e-07, -2.4105966937943051e-07, -6.6291409079343356e-07, -6.026491734485764e-08, -6.0264917344857653e-08, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.026491734485764e-08, -2.4105966937943056e-07, -2.4105966937943056e-07, -9.6423867751772202e-07, -4.8211933875886112e-07, -6.0264917344857653e-08, -9.7629166098670828e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -6.026491734485764e-08, -2.4105966937943056e-07, -2.4105966937943056e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.8079475203457655e-07, -6.0264917344857627e-08, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -6.0264917344857627e-08, -2.4105966937943045e-07, -7.2317900813830661e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -1.0847685122074228e-06, -6.026491734485764e-08, -2.4105966937943051e-07, -1.2052983468971531e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -3.0132458672429228e-07, -2.4105966937943056e-07, -1.2052983468971525e-07, -3.6158950406915299e-07, -5.1225179743129167e-06, -6.0264917344857653e-08, -2.4105966937943056e-07, -2.4105966937943056e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.0264917344857653e-08, 0.00024274708706508821, -6.026491734485819e-07, -6.0264917344857627e-08, -4.8211933875886101e-07, -4.8211933875886091e-07, -4.8211933875886101e-07, -9.6423867751772224e-07, -4.8211933875886091e-07, -9.6423867751772224e-07, -4.8211933875886091e-07, -4.8211933875886091e-07, -1.8501329624871727e-05, -4.8211933875886112e-07, -1.2052983468971668e-05, -4.8211933875886122e-07, -1.2052983468971525e-07, -3.615895040691487e-06, -7.2317900813830639e-07, -3.0132458672429185e-07, -3.6158950406915281e-06, -6.0264917344857653e-08, -4.8211933875886112e-07, -4.8211933875886112e-07, -9.7629166098670828e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.3800666071972305e-05, -1.8079475203457056e-07, -1.2052983468971678e-05, -4.8211933875886112e-07, -4.8211933875886122e-07, -6.026491734485764e-08, -4.8211933875886112e-07, -4.8211933875886112e-07, -6.0264917344857653e-08, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971525e-07, -2.4105966937943056e-07, -2.4105966937943056e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -9.7629166098671048e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -1.6271527683111506e-06, -5.7854320651064512e-06, -4.8211933875886122e-07, -4.2788091314848186e-06, -7.2317900813830576e-07, -7.2317900813830576e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -6.0264917344858699e-07, -4.8211933875886101e-07, -6.026491734485855e-07, -1.265563264242021e-06, -4.8211933875886122e-07, -3.0132458672429312e-07, -1.3860930989317158e-06, -4.8211933875886112e-07, -7.2317900813830639e-07, -1.8079475203457882e-07, -3.0132458672429175e-07, -1.2052983468971557e-07, -6.0264917344857627e-08, -6.0264917344857653e-08, -4.8211933875886101e-07, -7.2317900813830618e-07, -3.6158950406915563e-07, -2.4105966937943061e-07, -4.8211933875886112e-07, -4.8211933875886101e-07, -4.8211933875886091e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.4105966937943056e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.4105966937943056e-07, -4.8211933875886091e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.4463580162765774e-06, -4.8211933875886122e-07, -9.6423867751772202e-07, -9.6423867751772181e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -5.4238425610371161e-07, -2.0490071897251524e-06, -1.2052983468971523e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -5.4238425610371161e-07, -1.5668878509663138e-06, -4.8211933875886101e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -2.4105966937943056e-07, -2.4105966937943056e-07, -6.026491734485764e-08, -6.0264917344858024e-08, -6.0264917344857627e-08, -1.2052983468971531e-07, -1.0245035948626038e-06, -1.8079475203457477e-06, -7.2317900813830639e-07, -3.61589504069155e-07, -6.0264917344857653e-08, -2.4105966937943056e-07, -9.6423867751772224e-07, -1.4463580162766117e-06, -4.8211933875886101e-07, -2.4105966937943056e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -2.4105966937943056e-07, -7.2317900813830629e-07, -4.8211933875886112e-07, -6.0264917344857627e-08, -1.2052983468971525e-07, -2.4105966937943056e-07, -2.4105966937943061e-07, -5.4238425610371076e-07, -3.013245867242927e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -4.3390740488296912e-06, -2.4105966937943051e-07, -6.0264917344857653e-08, -3.615895040691487e-06, -4.8211933875886112e-07, -2.8927160325532671e-06, -2.8927160325532239e-06, -3.0132458672429056e-06, -2.8927160325532671e-06, -2.4105966937943051e-07, -2.4105966937943051e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886101e-07, -6.0264917344857627e-08, -4.8211933875886101e-07, -6.0264917344857653e-08, -6.026491734485764e-08, -4.2185442141400103e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -3.676159958036349e-06, -1.2052983468971525e-07, -4.3390740488296963e-06, -4.3390740488296963e-06, -4.8211933875886112e-07, -6.026491734485764e-08, -4.8211933875886112e-07, -4.339074048829698e-06, -4.3390740488296895e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -1.2052983468971525e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.8079475203457655e-07, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6905987090532001e-05, -9.6423867751772274e-05, -2.4105966937943187e-06, -4.8211933875886133e-07, -1.4463580162766028e-06, -4.8211933875886374e-06, -3.8569547100709452e-05, -9.6423867751772266e-07, 0.0019197992069377972, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100709452e-05, -3.8569547100709452e-05, -3.8569547100708898e-06, -0.00010944108989826102, -9.6423867751772245e-07, -9.6423867751773562e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.4105966937943187e-06, -1.4463580162766011e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813830307e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297098e-06, -3.8569547100708915e-06, -7.2317900813830053e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886578e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -8.1960287589005928e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.2052983468971565e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.8211933875886595e-06, -5.3033127263474507e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212819e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594366e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -9.6423867751772287e-07, -6.267551403865128e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.0498024455744657e-05, -3.8569547100708906e-06, -4.2426501810779633e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709208e-05, -7.7139094201417796e-06, -3.9051666439468182e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.0498024455744657e-05, -3.8569547100709452e-05, -3.8569547100709174e-05, -3.8569547100709276e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, 0.0019602972313935386, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -4.8211933875886747e-06, -9.6423867751772647e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -1.1570864130212811e-05, -1.4463580162765757e-06, -4.2426501810779972e-05, -7.7139094201417813e-06, -3.4712592390637882e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971607e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120325e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390637868e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390637868e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886561e-06, -1.4463580162766011e-06, -3.8569547100708915e-06, -7.2317900813829841e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -2.8927160325532175e-06, -1.4463580162766191e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.2535102807730485e-05, -1.1088744791453838e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325531582e-06, -9.6423867751772266e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709276e-05, -3.8569547100709174e-05, -7.8103332878936581e-05, -3.8569547100709174e-05, -3.8569547100709208e-05, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.8569547100708881e-06, -4.3390740488297014e-06, -1.9284773550354449e-06, -5.3033127263474803e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936418e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162766011e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.785432065106408e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.678148097659423e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943293e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325532014e-06, -4.0980143794503334e-05, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.2177489582907582e-05, -4.8211933875886374e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897263, -3.8569547100708906e-06, -9.6423867751772911e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -2.8927160325531747e-05, -5.7854320651064063e-06, -2.4105966937943255e-06, -2.8927160325532075e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936418e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577909, -1.4463580162766003e-06, -9.6423867751772966e-05, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936581e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.301722214648941e-05, -4.6283456520851196e-05, -3.8569547100708915e-06, -3.4230473051878996e-05, -5.7854320651062978e-06, -5.7854320651062978e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886781e-06, -3.8569547100708898e-06, -4.8211933875886662e-06, -1.0124506113936154e-05, -3.8569547100708915e-06, -2.4105966937943357e-06, -1.1088744791453788e-05, -3.8569547100708906e-06, -5.7854320651064063e-06, -1.4463580162766196e-06, -2.4105966937943255e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651064046e-06, -2.892716032553223e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.1570864130212809e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297302e-06, -1.6392057517801281e-05, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488297302e-06, -1.2535102807730492e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -8.1960287589005454e-06, -1.446358016276589e-05, -5.7854320651064063e-06, -2.8927160325532175e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417813e-06, -1.1570864130212804e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651064054e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.3390740488297217e-06, -2.4105966937943187e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.4712592390637943e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531713e-05, -3.8569547100708906e-06, -2.314172826042596e-05, -2.3141728260425611e-05, -2.410596693794313e-05, -2.314172826042596e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.374835371312034e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.9409279664290711e-05, -9.6423867751772245e-07, -3.4712592390637868e-05, -3.4712592390637868e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390637882e-05, -3.4712592390637814e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162766011e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6905987090532055e-05, -9.6423867751772329e-05, -2.4105966937943187e-06, -4.8211933875886133e-07, -1.4463580162766024e-06, 0.0019593329927160203, -3.8569547100709438e-05, -9.6423867751772266e-07, -4.4354979165815347e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100709438e-05, -3.8569547100709438e-05, -3.8569547100708898e-06, -0.00010944108989826099, -9.6423867751772245e-07, -9.6423867751773589e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.4105966937943187e-06, -1.4463580162766016e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813830324e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297081e-06, -3.8569547100708915e-06, -7.2317900813830087e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886569e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -8.1960287589005945e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.2052983468971572e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.8211933875886586e-06, -5.3033127263474507e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212816e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594332e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -9.6423867751772287e-07, -6.2675514038651247e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.0498024455744644e-05, -3.8569547100708906e-06, -4.2426501810779633e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709201e-05, -7.7139094201417796e-06, -3.9051666439468169e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.049802445574463e-05, -3.8569547100709438e-05, -3.8569547100709174e-05, -3.8569547100709269e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, 0.0019602972313935386, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -4.8211933875886747e-06, -9.6423867751772613e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -1.1570864130212814e-05, -1.4463580162765766e-06, -4.2426501810779978e-05, -7.7139094201417813e-06, -3.4712592390637868e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971614e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120325e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390637855e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390637855e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886544e-06, -1.4463580162766016e-06, -3.8569547100708915e-06, -7.2317900813829858e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -2.8927160325532192e-06, -1.4463580162766196e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.2535102807730481e-05, -1.1088744791453832e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325531591e-06, -9.6423867751772266e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709269e-05, -3.8569547100709174e-05, -7.8103332878936581e-05, -3.8569547100709174e-05, -3.8569547100709201e-05, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.8569547100708881e-06, -4.339074048829698e-06, -1.9284773550354449e-06, -5.3033127263474803e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936405e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162766016e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651064097e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976594197e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943293e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325532023e-06, -4.0980143794503334e-05, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.2177489582907575e-05, -4.8211933875886374e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897271, -3.8569547100708906e-06, -9.6423867751772939e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -2.892716032553176e-05, -5.785432065106408e-06, -2.4105966937943255e-06, -2.8927160325532089e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936405e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577906, -1.4463580162766007e-06, -9.642386775177302e-05, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936581e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489413e-05, -4.6283456520851209e-05, -3.8569547100708915e-06, -3.4230473051878975e-05, -5.7854320651062928e-06, -5.7854320651062928e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886764e-06, -3.8569547100708898e-06, -4.8211933875886662e-06, -1.0124506113936154e-05, -3.8569547100708915e-06, -2.4105966937943357e-06, -1.1088744791453784e-05, -3.8569547100708906e-06, -5.785432065106408e-06, -1.44635801627662e-06, -2.4105966937943255e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651064046e-06, -2.8927160325532247e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.1570864130212809e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297285e-06, -1.6392057517801287e-05, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488297285e-06, -1.253510280773049e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -8.1960287589005454e-06, -1.4463580162765894e-05, -5.785432065106408e-06, -2.8927160325532192e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417813e-06, -1.1570864130212807e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651064071e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.33907404882972e-06, -2.4105966937943187e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.4712592390637929e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531726e-05, -3.8569547100708906e-06, -2.3141728260425967e-05, -2.3141728260425618e-05, -2.410596693794314e-05, -2.3141728260425967e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.3748353713120327e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.9409279664290724e-05, -9.6423867751772245e-07, -3.4712592390637855e-05, -3.4712592390637855e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390637868e-05, -3.4712592390637801e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162766016e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6905987090531974e-05, -9.6423867751772274e-05, -2.4105966937943179e-06, -4.8211933875886122e-07, -1.4463580162765997e-06, -4.8211933875886662e-06, -3.8569547100709438e-05, -9.6423867751772245e-07, -4.4354979165815347e-05, -4.8211933875886144e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100709438e-05, -3.8569547100709425e-05, -3.8569547100708898e-06, -0.00010944108989826107, -9.6423867751772224e-07, -9.6423867751773535e-05, -7.7139094201417779e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708889e-06, -2.4105966937943179e-06, -1.4463580162766007e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -7.231790081383029e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297285e-06, -3.8569547100708906e-06, -7.2317900813830053e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886552e-06, -3.8569547100708906e-06, 0.0019564402766834685, -4.8211933875886133e-07, -3.8569547100708906e-06, -8.1960287589005945e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.2052983468971561e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -4.8211933875886569e-06, -5.3033127263474676e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212816e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594366e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652576e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.0498024455744644e-05, -3.8569547100708906e-06, -4.2426501810779646e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709188e-05, -7.7139094201417796e-06, -3.9051666439468169e-05, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.049802445574463e-05, -3.8569547100709438e-05, -3.856954710070916e-05, -3.8569547100709262e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, 0.0019602972313935386, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886391e-06, -9.6423867751773223e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -1.1570864130212807e-05, -1.4463580162766217e-06, -4.2426501810779985e-05, -7.7139094201417796e-06, -3.4712592390637882e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971607e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.374835371312088e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390637882e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390637868e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886324e-06, -1.4463580162766007e-06, -3.8569547100708906e-06, -7.2317900813829824e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325532175e-06, -1.4463580162766187e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.2535102807730481e-05, -1.1088744791453842e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -2.8927160325532239e-06, -9.6423867751772266e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -3.8569547100709262e-05, -3.856954710070916e-05, -7.8103332878936581e-05, -3.856954710070916e-05, -3.8569547100709188e-05, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.8569547100708889e-06, -4.3390740488297014e-06, -1.9284773550354449e-06, -5.3033127263474787e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -7.8103332878936405e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4463580162766007e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -5.7854320651064046e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976594569e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943285e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325532006e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886144e-07, -2.2177489582907575e-05, -4.8211933875886357e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897255, -3.8569547100708898e-06, -9.6423867751772884e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.8927160325531747e-05, -5.7854320651063554e-06, -2.4105966937943255e-06, -2.8927160325532075e-05, -4.8211933875886144e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936405e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577904, -1.446358016276602e-06, -9.6423867751772966e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936581e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489457e-05, -4.6283456520851223e-05, -3.8569547100708906e-06, -3.4230473051878833e-05, -5.7854320651063995e-06, -5.7854320651063995e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886425e-06, -3.8569547100708898e-06, -4.8211933875886645e-06, -1.0124506113936154e-05, -3.8569547100708906e-06, -2.4105966937943179e-06, -1.1088744791453788e-05, -3.8569547100708906e-06, -5.7854320651063487e-06, -1.4463580162765745e-06, -2.4105966937943246e-06, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651064012e-06, -2.892716032553223e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.1570864130212802e-05, -3.8569547100708906e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297319e-06, -1.6392057517801287e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488298208e-06, -1.2535102807730492e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -8.1960287589005454e-06, -1.4463580162765877e-05, -5.7854320651063758e-06, -2.8927160325532175e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417796e-06, -1.1570864130212821e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651064012e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.3390740488297234e-06, -2.4105966937943314e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.4712592390637841e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531747e-05, -3.8569547100708906e-06, -2.3141728260425954e-05, -2.3141728260425605e-05, -2.4105966937943119e-05, -2.3141728260425954e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.3748353713120327e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.9409279664290684e-05, -9.6423867751772245e-07, -3.4712592390637868e-05, -3.4712592390637882e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390637882e-05, -3.4712592390637814e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765999e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6905987090532028e-05, -9.6423867751772302e-05, -2.410596693794317e-06, -4.8211933875886122e-07, -1.4463580162766001e-06, -4.8211933875886645e-06, -3.8569547100709425e-05, -9.6423867751772245e-07, -4.4354979165815333e-05, -4.8211933875886144e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100709425e-05, -3.8569547100709425e-05, -3.8569547100708898e-06, -0.00010944108989826105, -9.6423867751772224e-07, -9.6423867751773589e-05, -7.7139094201417779e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708889e-06, -2.410596693794317e-06, -1.4463580162766011e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -7.2317900813830324e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297268e-06, -3.8569547100708906e-06, -7.2317900813830087e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886544e-06, 0.0019602972313935386, -7.7139094201417813e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -8.1960287589005962e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.2052983468971568e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -4.8211933875886561e-06, -5.3033127263474676e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212813e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594332e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652576e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.0498024455744644e-05, -3.8569547100708906e-06, -4.242650181077966e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709188e-05, -7.7139094201417796e-06, -3.9051666439468169e-05, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.049802445574463e-05, -3.8569547100709425e-05, -3.8569547100709154e-05, -3.8569547100709255e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, 0.0019602972313935386, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886391e-06, -9.6423867751773223e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -1.1570864130212811e-05, -1.4463580162766225e-06, -4.2426501810779992e-05, -7.7139094201417796e-06, -3.4712592390637868e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971607e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120905e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390637868e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390637855e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886324e-06, -1.4463580162766011e-06, -3.8569547100708906e-06, -7.2317900813829841e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325532175e-06, -1.4463580162766191e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.2535102807730478e-05, -1.1088744791453838e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -2.8927160325532247e-06, -9.6423867751772266e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -3.8569547100709255e-05, -3.8569547100709154e-05, -7.8103332878936554e-05, -3.8569547100709154e-05, -3.8569547100709188e-05, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.8569547100708889e-06, -4.3390740488296997e-06, -1.9284773550354449e-06, -5.3033127263474803e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -7.8103332878936391e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4463580162766011e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -5.7854320651064046e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976594535e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.410596693794328e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325532014e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886144e-07, -2.2177489582907561e-05, -4.8211933875886349e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897263, -3.8569547100708898e-06, -9.6423867751772911e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.892716032553176e-05, -5.7854320651063571e-06, -2.4105966937943246e-06, -2.8927160325532089e-05, -4.8211933875886144e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936391e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577901, -1.4463580162766016e-06, -9.6423867751772993e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936554e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489464e-05, -4.628345652085125e-05, -3.8569547100708906e-06, -3.4230473051878813e-05, -5.7854320651064012e-06, -5.7854320651064012e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886425e-06, -3.8569547100708898e-06, -4.8211933875886629e-06, -1.0124506113936154e-05, -3.8569547100708906e-06, -2.4105966937943179e-06, -1.1088744791453781e-05, -3.8569547100708906e-06, -5.7854320651063504e-06, -1.4463580162765753e-06, -2.4105966937943238e-06, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651064046e-06, -2.892716032553223e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.1570864130212809e-05, -3.8569547100708906e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297302e-06, -1.6392057517801287e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488298259e-06, -1.2535102807730492e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -8.1960287589005471e-06, -1.446358016276588e-05, -5.7854320651063775e-06, -2.8927160325532175e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417796e-06, -1.1570864130212818e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651064029e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.3390740488297217e-06, -2.4105966937943306e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.4712592390637828e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.892716032553176e-05, -3.8569547100708906e-06, -2.314172826042596e-05, -2.3141728260425611e-05, -2.4105966937943126e-05, -2.314172826042596e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.3748353713120313e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.9409279664290697e-05, -9.6423867751772245e-07, -3.4712592390637855e-05, -3.4712592390637868e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390637868e-05, -3.4712592390637801e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765994e-06, -7.713909420141783e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -1.2113248386316473e-05, -1.2052983468971504e-05, -3.0132458672428878e-07, -6.0264917344857666e-08, -1.8079475203457414e-07, -6.0264917344858137e-07, -4.8211933875886629e-06, -1.2052983468971536e-07, -5.5443723957269353e-06, -6.0264917344857679e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886629e-06, -4.8211933875886629e-06, -4.8211933875886122e-07, -1.3680136237282661e-05, -1.2052983468971531e-07, -1.2052983468971665e-05, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886101e-07, -3.0132458672428878e-07, -1.8079475203457424e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857666e-08, -9.0397376017287651e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610371627e-07, -4.8211933875886144e-07, -9.0397376017287344e-07, -1.2052983468971533e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344858e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344857666e-08, -4.8211933875886144e-07, -1.0245035948625796e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6423867751772266e-07, -1.9284773550354445e-06, -1.5066229336214418e-06, -4.8211933875886144e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -6.0264917344858021e-07, -6.6291409079343261e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -1.2052983468971533e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.4463580162765931e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.0847685122074349e-06, -2.4105966937943072e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -7.8344392548315657e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -5.0622530569680788e-06, -4.8211933875886144e-07, -5.3033127263474659e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -4.8211933875886332e-06, -9.6423867751772266e-07, -4.8814583049335092e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -5.0622530569680788e-06, -4.8211933875886629e-06, -4.8211933875886298e-06, -4.8211933875886417e-06, -6.0264917344857666e-08, -2.4105966937943061e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, 0.00024545900834560644, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -6.0264917344858222e-07, -1.2052983468971611e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -4.8211933875886133e-07, -1.4463580162765944e-06, -1.8079475203457692e-07, -5.3033127263475075e-06, -9.6423867751772266e-07, -4.3390740488297564e-06, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.5066229336214469e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.2185442141400512e-07, -2.4105966937943061e-07, -1.2052983468971533e-07, -4.3390740488297564e-06, -1.2052983468971533e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297547e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857968e-07, -1.807947520345743e-07, -4.8211933875886144e-07, -9.0397376017287068e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -3.6158950406914531e-07, -1.8079475203457652e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -1.5668878509663055e-06, -1.3860930989317344e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -3.6158950406915134e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886417e-06, -4.8211933875886298e-06, -9.7629166098670455e-06, -4.8211933875886298e-06, -4.8211933875886332e-06, -2.4105966937943061e-07, -1.2052983468971536e-07, -4.8211933875886112e-07, -5.4238425610371828e-07, -2.4105966937943061e-07, -6.629140907934361e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.7629166098670235e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.8079475203457424e-07, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943061e-07, -7.2317900813829739e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.0847685122074374e-06, -6.0264917344857679e-08, -2.4105966937943051e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.013245867242901e-07, -2.4105966937943072e-07, -1.2052983468971533e-07, -3.6158950406914849e-07, -5.1225179743129167e-06, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, -2.772186197863457e-06, -6.0264917344857756e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.8501329624871494e-05, -4.8211933875886133e-07, -1.2052983468971582e-05, -4.8211933875886144e-07, -1.2052983468971533e-07, -3.615895040691465e-06, -7.2317900813829718e-07, -3.0132458672428963e-07, -3.6158950406914912e-06, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670235e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.380066607197242e-05, -1.8079475203457414e-07, -1.2052983468971594e-05, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670455e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.6271527683111536e-06, -5.7854320651063792e-06, -4.8211933875886144e-07, 0.00024124046413146632, -7.2317900813829655e-07, -7.2317900813829655e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344858243e-07, -4.8211933875886122e-07, -6.0264917344858116e-07, -1.265563264242018e-06, -4.8211933875886144e-07, -3.013245867242909e-07, -1.3860930989317281e-06, -4.8211933875886144e-07, -7.2317900813829718e-07, -1.8079475203457655e-07, -3.0132458672428963e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -7.2317900813829655e-07, -3.6158950406915113e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.4463580162765935e-06, -4.8211933875886144e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610371892e-07, -2.0490071897251677e-06, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -5.4238425610371892e-07, -1.566887850966307e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.0245035948625711e-06, -1.8079475203457316e-06, -7.2317900813829676e-07, -3.6158950406914531e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -9.6423867751772266e-07, -1.4463580162765937e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -7.2317900813829718e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -5.4238425610371807e-07, -3.0132458672429048e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.3390740488297429e-06, -2.4105966937943061e-07, -6.0264917344857679e-08, -3.6158950406914641e-06, -4.8211933875886144e-07, -2.8927160325532311e-06, -2.8927160325531879e-06, -3.0132458672428836e-06, -2.8927160325532311e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.2185442141400815e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -3.6761599580363371e-06, -1.2052983468971533e-07, -4.3390740488297547e-06, -4.3390740488297564e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.3390740488297564e-06, -4.3390740488297479e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.8079475203457424e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -1.211324838631648e-05, -1.2052983468971511e-05, -3.0132458672428889e-07, -6.0264917344857666e-08, -1.807947520345743e-07, -6.0264917344858159e-07, -4.8211933875886662e-06, -1.2052983468971536e-07, -5.5443723957269319e-06, -6.0264917344857679e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886662e-06, -4.8211933875886662e-06, -4.8211933875886122e-07, -1.3680136237282655e-05, -1.2052983468971531e-07, -1.2052983468971672e-05, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886101e-07, -3.0132458672428889e-07, -1.807947520345744e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857666e-08, -9.0397376017287693e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610371585e-07, -4.8211933875886144e-07, -9.0397376017287386e-07, -1.2052983468971533e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344858032e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344857666e-08, -4.8211933875886144e-07, -1.024503594862579e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6423867751772266e-07, -1.9284773550354445e-06, -1.5066229336214426e-06, -4.8211933875886144e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -6.0264917344858053e-07, -6.629140907934324e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -1.2052983468971533e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.4463580162765944e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.0847685122074338e-06, -2.4105966937943072e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -7.8344392548315657e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -5.0622530569680788e-06, -4.8211933875886144e-07, -5.3033127263474643e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -4.8211933875886357e-06, -9.6423867751772266e-07, -4.8814583049335109e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -5.0622530569680788e-06, -4.8211933875886662e-06, -4.8211933875886315e-06, -4.8211933875886442e-06, -6.0264917344857666e-08, -2.4105966937943061e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, 0.00024545900834560644, -6.0264917344857679e-08, -4.8211933875886133e-07, -6.0264917344858243e-07, -1.2052983468971619e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -4.8211933875886133e-07, -1.4463580162765956e-06, -1.8079475203457708e-07, -5.3033127263475058e-06, -9.6423867751772266e-07, -4.339074048829753e-06, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.5066229336214477e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.2185442141400491e-07, -2.4105966937943061e-07, -1.2052983468971533e-07, -4.3390740488297513e-06, -1.2052983468971533e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297513e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857989e-07, -1.807947520345744e-07, -4.8211933875886144e-07, -9.0397376017287111e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -3.6158950406914499e-07, -1.8079475203457668e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -1.5668878509663059e-06, -1.3860930989317336e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -3.6158950406915156e-07, -1.2052983468971536e-07, 0.00024545900834560644, -6.0264917344857666e-08, -4.8211933875886442e-06, -4.8211933875886315e-06, -9.7629166098670489e-06, -4.8211933875886315e-06, -4.8211933875886357e-06, -2.4105966937943061e-07, -1.2052983468971536e-07, -4.8211933875886112e-07, -5.4238425610371765e-07, -2.4105966937943061e-07, -6.6291409079343589e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.7629166098670286e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.807947520345744e-07, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943061e-07, -7.2317900813829803e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.0847685122074361e-06, -6.0264917344857679e-08, -2.4105966937943051e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.0132458672429021e-07, -2.4105966937943072e-07, -1.2052983468971533e-07, -3.615895040691487e-07, -5.1225179743129167e-06, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, -2.7721861978634562e-06, -6.0264917344857777e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.8501329624871507e-05, -4.8211933875886133e-07, -1.205298346897159e-05, -4.8211933875886144e-07, -1.2052983468971533e-07, -3.6158950406914675e-06, -7.2317900813829803e-07, -3.0132458672428984e-07, -3.6158950406914912e-06, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670286e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.3800666071972413e-05, -1.807947520345743e-07, -1.20529834689716e-05, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670489e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.6271527683111536e-06, -5.7854320651063842e-06, -4.8211933875886144e-07, -4.2788091314848728e-06, -7.2317900813829739e-07, -7.2317900813829739e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344858286e-07, -4.8211933875886122e-07, -6.0264917344858137e-07, -1.265563264242018e-06, -4.8211933875886144e-07, -3.0132458672429111e-07, -1.3860930989317272e-06, -4.8211933875886144e-07, -7.2317900813829803e-07, -1.8079475203457676e-07, -3.0132458672428984e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -7.2317900813829718e-07, -3.6158950406915145e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.4463580162765952e-06, -4.8211933875886144e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610371849e-07, -2.0490071897251668e-06, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -5.4238425610371849e-07, -1.5668878509663074e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.0245035948625707e-06, -1.8079475203457325e-06, -7.2317900813829761e-07, -3.6158950406914499e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -9.6423867751772266e-07, -1.446358016276595e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -7.2317900813829782e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -5.4238425610371743e-07, -3.0132458672429058e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.3390740488297369e-06, -2.4105966937943061e-07, -6.0264917344857679e-08, -3.6158950406914666e-06, -4.8211933875886144e-07, -2.8927160325532336e-06, -2.8927160325531904e-06, -3.0132458672428853e-06, -2.8927160325532336e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.2185442141400764e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -3.6761599580363405e-06, -1.2052983468971533e-07, -4.3390740488297513e-06, -4.3390740488297513e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.339074048829753e-06, -4.3390740488297446e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.807947520345744e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -1.2113248386316473e-05, -1.2052983468971504e-05, -3.0132458672428857e-07, -6.0264917344857666e-08, -1.8079475203457408e-07, -6.0264917344858095e-07, -4.8211933875886476e-06, -1.2052983468971533e-07, -5.5443723957269268e-06, -6.0264917344857679e-08, -9.6423867751772245e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886493e-06, -4.8211933875886493e-06, -4.8211933875886122e-07, -1.3680136237282665e-05, -1.2052983468971531e-07, -1.2052983468971665e-05, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886112e-07, -3.0132458672428857e-07, -1.8079475203457419e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857666e-08, -9.0397376017287651e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610371627e-07, -4.8211933875886144e-07, -9.0397376017287344e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344857979e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -1.0245035948625773e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.9284773550354445e-06, -1.5066229336214418e-06, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -6.0264917344858e-07, -6.6291409079343282e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.026491734485764e-08, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857666e-08, -4.8211933875886144e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.4463580162765927e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.0847685122074349e-06, -2.4105966937943072e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -7.8344392548315615e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -5.0622530569680754e-06, -4.8211933875886133e-07, -5.3033127263474744e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -4.8211933875886315e-06, -9.6423867751772245e-07, -4.8814583049335075e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -5.0622530569680737e-06, -4.8211933875886476e-06, -4.8211933875886281e-06, -4.8211933875886408e-06, -6.0264917344857653e-08, -2.4105966937943061e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, 0.00024545900834560639, -4.8211933875886122e-07, -6.026491734485818e-07, -1.2052983468971611e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -4.8211933875886122e-07, -1.4463580162765939e-06, -1.8079475203457686e-07, -5.3033127263475091e-06, -9.6423867751772266e-07, -4.3390740488297564e-06, -6.0264917344857666e-08, -6.0264917344857679e-08, -1.5066229336214464e-06, -9.6423867751772287e-07, -4.8211933875886133e-07, -4.2185442141400512e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -4.3390740488297564e-06, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297547e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857947e-07, -1.8079475203457422e-07, -4.8211933875886144e-07, -9.0397376017287047e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -3.6158950406915039e-07, -1.8079475203457647e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -1.5668878509663085e-06, -1.3860930989317349e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -3.6158950406915113e-07, -1.2052983468971533e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886408e-06, -4.8211933875886281e-06, -9.7629166098670455e-06, -4.8211933875886281e-06, -4.8211933875886315e-06, -2.4105966937943061e-07, -1.2052983468971533e-07, -4.8211933875886112e-07, -5.4238425610371521e-07, -2.4105966937943061e-07, -6.6291409079343653e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.7629166098670235e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.8079475203457419e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -2.4105966937943056e-07, -7.2317900813829125e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.0847685122074374e-06, -6.0264917344857666e-08, -2.4105966937943051e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.0132458672428995e-07, -2.4105966937943066e-07, -1.2052983468971531e-07, -3.615895040691451e-07, -5.1225179743129099e-06, -6.0264917344857679e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, -2.7721861978634579e-06, 0.00024491662408950254, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -4.8211933875886112e-07, -9.6423867751772266e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.850132962487148e-05, -4.8211933875886133e-07, -1.2052983468971578e-05, -4.8211933875886144e-07, -1.2052983468971531e-07, -3.615895040691459e-06, -7.2317900813829718e-07, -3.0132458672428878e-07, -3.6158950406914993e-06, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670235e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.3800666071972424e-05, -1.8079475203457408e-07, -1.205298346897159e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670455e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.6271527683111536e-06, -5.7854320651063775e-06, -4.8211933875886144e-07, -4.2788091314848719e-06, -7.2317900813829634e-07, -7.2317900813829634e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344858222e-07, -4.8211933875886122e-07, -6.0264917344858095e-07, -1.2655632642420189e-06, -4.8211933875886144e-07, -3.0132458672429079e-07, -1.3860930989317285e-06, -4.8211933875886133e-07, -7.2317900813829718e-07, -1.8079475203457655e-07, -3.0132458672428868e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -7.2317900813829676e-07, -3.6158950406915103e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943066e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943066e-07, -4.8211933875886112e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.4463580162765935e-06, -4.8211933875886144e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610371892e-07, -2.0490071897251677e-06, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -5.4238425610371892e-07, -1.5668878509663095e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -6.0264917344857653e-08, -1.2052983468971536e-07, -1.0245035948625714e-06, -1.8079475203457316e-06, -7.2317900813829718e-07, -3.6158950406915039e-07, -6.0264917344857679e-08, -2.4105966937943066e-07, -9.6423867751772266e-07, -1.4463580162765933e-06, -4.8211933875886122e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -7.2317900813829697e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943072e-07, -5.4238425610371807e-07, -3.0132458672429026e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.3390740488297513e-06, -2.4105966937943061e-07, -6.0264917344857679e-08, -3.6158950406914582e-06, -4.8211933875886133e-07, -2.8927160325532302e-06, -2.892716032553187e-06, -3.0132458672428832e-06, -2.8927160325532302e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.2185442141400544e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -3.6761599580363287e-06, -1.2052983468971531e-07, -4.3390740488297547e-06, -4.3390740488297564e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.3390740488297564e-06, -4.3390740488297479e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971536e-07, -1.2052983468971531e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.8079475203457419e-07, -9.6423867751772287e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6905987090532245e-05, -9.6423867751772545e-05, -2.4105966937943221e-06, -4.8211933875886122e-07, -1.4463580162766056e-06, -4.8211933875886747e-06, -3.8569547100709506e-05, -9.6423867751772245e-07, -4.4354979165815197e-05, -4.8211933875886133e-07, -7.7139094201417779e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100709506e-05, -3.8569547100709506e-05, -3.8569547100708889e-06, -0.00010944108989826075, -9.6423867751772202e-07, -9.6423867751773806e-05, -7.7139094201417779e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708889e-06, -2.4105966937943221e-06, -1.4463580162766066e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -7.2317900813830493e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488297081e-06, -3.8569547100708906e-06, -7.2317900813830256e-06, -9.6423867751772224e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -7.7139094201417796e-06, -4.8211933875886645e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -8.1960287589005793e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.20529834689716e-05, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -4.8211933875886662e-06, -5.3033127263474676e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -3.8569547100708898e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708889e-06, -1.1570864130212853e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -8.6781480976593959e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -6.267551403865261e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.0498024455744657e-05, -3.8569547100708898e-06, -4.2426501810779606e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417779e-06, -3.8569547100709269e-05, -7.7139094201417796e-06, -3.9051666439468223e-05, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.9284773550354445e-06, -4.0498024455744657e-05, -3.8569547100709506e-05, -3.8569547100709235e-05, -3.8569547100709337e-05, -4.8211933875886133e-07, -1.928477355035444e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, 0.001960297231393539, -4.8211933875886425e-06, -9.6423867751773426e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -1.1570864130212855e-05, -1.4463580162766276e-06, -4.2426501810779944e-05, -7.7139094201417796e-06, -3.4712592390637719e-05, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971641e-05, -7.7139094201417813e-06, -3.8569547100708898e-06, -3.3748353713120956e-06, -1.9284773550354445e-06, -9.6423867751772224e-07, -3.4712592390637706e-05, -9.6423867751772224e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.4712592390637706e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -4.8211933875886425e-06, -1.4463580162766066e-06, -3.8569547100708906e-06, -7.2317900813830019e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.8927160325532298e-06, -1.4463580162766246e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.2535102807730488e-05, -1.1088744791453804e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -2.8927160325532357e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100709337e-05, -3.8569547100709235e-05, -7.8103332878936703e-05, -3.8569547100709235e-05, -3.8569547100709269e-05, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.8569547100708889e-06, -4.339074048829681e-06, -1.9284773550354449e-06, -5.3033127263474736e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.8103332878936513e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.4463580162766066e-06, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -5.7854320651064283e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -8.6781480976594163e-06, -4.8211933875886122e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.4105966937943331e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -2.8927160325532124e-06, -4.0980143794503334e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886133e-07, -2.2177489582907507e-05, -4.8211933875886451e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708881e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -0.00014801063699897328, -3.8569547100708898e-06, -9.6423867751773155e-05, -3.8569547100708906e-06, -9.6423867751772224e-07, -2.8927160325531828e-05, -5.7854320651063792e-06, -2.4105966937943297e-06, -2.8927160325532157e-05, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936513e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00011040532857577871, -1.4463580162766062e-06, -9.6423867751773237e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936703e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489552e-05, -4.6283456520851413e-05, -3.8569547100708898e-06, -3.4230473051878671e-05, -5.7854320651064232e-06, -5.7854320651064232e-06, -3.8569547100708906e-06, -3.8569547100708889e-06, 0.0019593329927160208, -3.8569547100708889e-06, -4.821193387588673e-06, -1.0124506113936158e-05, -3.8569547100708906e-06, -2.4105966937943221e-06, -1.1088744791453747e-05, -3.8569547100708898e-06, -5.7854320651063724e-06, -1.44635801627657e-06, -2.4105966937943289e-06, -9.6423867751772202e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708889e-06, -5.7854320651064249e-06, -2.8927160325532349e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417779e-06, -1.157086413021285e-05, -3.8569547100708906e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488297115e-06, -1.6392057517801253e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.339074048829853e-06, -1.2535102807730498e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708889e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -8.1960287589005302e-06, -1.4463580162765914e-05, -5.7854320651063995e-06, -2.8927160325532298e-06, -4.8211933875886133e-07, -1.9284773550354449e-06, -7.7139094201417796e-06, -1.1570864130212858e-05, -3.8569547100708898e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -5.7854320651064249e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354453e-06, -4.3390740488297031e-06, -2.4105966937943357e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.4712592390637665e-05, -1.9284773550354445e-06, -4.8211933875886133e-07, -2.8927160325531828e-05, -3.8569547100708898e-06, -2.3141728260426049e-05, -2.31417282604257e-05, -2.4105966937943191e-05, -2.3141728260426049e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.3748353713120177e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.9409279664290751e-05, -9.6423867751772245e-07, -3.4712592390637706e-05, -3.4712592390637706e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.4712592390637719e-05, -3.4712592390637652e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.4463580162766041e-06, -7.7139094201417813e-06, -4.8211933875886916e-06, -4.8211933875886849e-06, -4.8211933875886815e-06, -4.8211933875886933e-06, -2.4105966937943255e-06, -2.4105966937943255e-06, -4.8211933875886468e-06, -4.8211933875886476e-06, -6.0264917344858413e-07, -6.0264917344858413e-07, -0.00012113248386316501, -0.00012052983468971643, -3.0132458672429111e-06, -6.0264917344858413e-07, -1.8079475203457291e-06, -6.0264917344858578e-06, -4.8211933875886286e-05, -1.2052983468971683e-06, -5.5443723957269083e-05, -6.0264917344858032e-07, -9.642386775177363e-06, -9.6423867751773664e-06, -4.8211933875886485e-06, -4.8211933875886459e-06, -4.82119338758863e-05, -4.82119338758863e-05, -4.82119338758869e-06, -0.00013680136237282828, -1.2052983468971733e-06, -0.00012052983468971611, -9.6423867751773596e-06, -4.8211933875886832e-06, -4.8211933875886916e-06, -6.0264917344857989e-07, -6.0264917344858476e-07, -4.8211933875886747e-06, -4.821193387588673e-06, -1.2052983468971733e-06, -1.2052983468971738e-06, -6.0264917344858053e-07, -6.0264917344858307e-07, -4.8211933875886434e-06, -3.0132458672429064e-06, -1.8079475203457534e-06, -2.4105966937943255e-06, -2.4105966937943255e-06, -6.0264917344858413e-07, -9.0397376017288383e-06, -4.8211933875886612e-06, -4.8211933875886612e-06, -5.423842561037201e-06, -4.8211933875886391e-06, -9.0397376017287841e-06, -1.2052983468971683e-06, -6.0264917344858603e-07, -4.8211933875886391e-06, -4.8211933875886391e-06, -6.0264917344858032e-07, -6.0264917344858328e-07, -4.8211933875886595e-06, -4.8211933875886629e-06, -1.2052983468971776e-06, -6.0264917344858243e-07, -4.8211933875886391e-06, -9.6423867751773528e-06, -6.0264917344858485e-06, -4.8211933875886391e-06, -9.6423867751772749e-06, -6.0264917344858032e-07, -4.8211933875886578e-06, -1.024503594862584e-05, -4.8211933875886696e-06, -4.8211933875886629e-06, -9.6423867751773596e-06, -1.9284773550354834e-05, -1.5066229336214537e-05, -4.8211933875886425e-06, -9.6423867751773596e-06, -9.642386775177363e-06, -2.410596693794328e-06, -4.8211933875886612e-06, -6.0264917344858459e-06, -6.6291409079345213e-06, -2.410596693794328e-06, -9.642386775177346e-06, -4.8211933875886679e-06, -4.8211933875886696e-06, -4.8211933875886679e-06, -1.2052983468971678e-06, -4.8211933875886849e-06, -4.8211933875886425e-06, -6.0264917344858603e-07, -4.8211933875886442e-06, -1.2052983468971606e-06, -4.8211933875886866e-06, -4.8211933875886391e-06, -4.8211933875886391e-06, -6.0264917344858519e-07, -9.6423867751773664e-06, -9.642386775177363e-06, -6.0264917344858392e-07, -4.8211933875886679e-06, -4.8211933875886696e-06, -6.0264917344858381e-07, -4.8211933875886916e-06, -4.8211933875886933e-06, -4.8211933875886645e-06, -4.8211933875886916e-06, -1.4463580162765921e-05, -4.8211933875886493e-06, -4.8211933875886391e-06, -4.8211933875886578e-06, -6.0264917344858264e-07, -4.8211933875886391e-06, -4.8211933875886561e-06, -9.6423867751773359e-06, -2.4105966937943255e-06, -1.0847685122074353e-05, -2.4105966937943255e-06, -6.0264917344858603e-07, -1.205298346897167e-06, -7.8344392548314909e-06, -4.8211933875886391e-06, -9.6423867751773189e-06, -5.0622530569680737e-05, -4.8211933875886595e-06, -5.3033127263474673e-05, -4.8211933875886612e-06, -4.8211933875886645e-06, -9.642386775177363e-06, -4.8211933875886788e-05, -9.6423867751773596e-06, -4.8814583049335026e-05, -6.0264917344858e-07, -9.6423867751773562e-06, -9.6423867751773664e-06, -2.4105966937943441e-06, -5.0622530569680737e-05, -4.8211933875886286e-05, -4.8211933875886517e-05, -4.8211933875886842e-05, -6.0264917344858032e-07, -2.4105966937943263e-06, -6.0264917344858222e-07, -6.0264917344858561e-07, -6.0264917344858667e-07, -4.8211933875886747e-06, -4.8211933875886747e-06, -4.8211933875886391e-06, -4.8211933875886391e-06, -6.0264917344858222e-07, -6.0264917344858243e-07, -6.026491734485818e-07, -4.8211933875886425e-06, 0.0024491662408950097, -1.2052983468971702e-05, -9.6423867751773291e-06, -9.6423867751773291e-06, -4.8211933875886442e-06, -1.4463580162765997e-05, -1.8079475203457615e-06, -5.3033127263474951e-05, -9.6423867751773325e-06, -4.3390740488297154e-05, -6.0264917344858032e-07, -6.0264917344858328e-07, -1.506622933621452e-05, -9.6423867751773359e-06, -4.8211933875886612e-06, -4.2185442141399968e-06, -2.4105966937943196e-06, -1.2052983468971683e-06, -4.3390740488297154e-05, -1.2052983468971683e-06, -2.4105966937943255e-06, -2.4105966937943255e-06, -4.3390740488297154e-05, -4.821193387588651e-06, -6.0264917344858307e-07, -4.8211933875886391e-06, -6.026491734485818e-07, -4.8211933875886391e-06, -6.0264917344857553e-06, -1.8079475203457634e-06, -4.8211933875886391e-06, -9.0397376017286469e-06, -6.0264917344858053e-07, -4.8211933875886527e-06, -1.2052983468971733e-06, -1.2052983468971738e-06, -1.2052983468971716e-06, -6.0264917344858392e-07, -3.6158950406915026e-06, -1.8079475203457575e-06, -4.8211933875886781e-06, -4.8211933875886756e-06, -9.6423867751773494e-06, -1.5668878509663016e-05, -1.3860930989317101e-05, -6.0264917344858053e-07, -9.6423867751773833e-06, -4.8211933875886815e-06, -3.6158950406915077e-06, -1.2052983468971636e-06, -6.0264917344858243e-07, -6.0264917344858561e-07, -4.8211933875886842e-05, -4.8211933875886517e-05, -9.7629166098671082e-05, -4.821193387588651e-05, -4.8211933875886788e-05, -2.410596693794328e-06, -1.2052983468971661e-06, -4.8211933875886391e-06, -5.4238425610371976e-06, -2.410596693794328e-06, -6.6291409079343689e-06, -6.0264917344858423e-07, -6.0264917344858032e-07, -9.6423867751773426e-06, -4.821193387588651e-06, -4.8211933875886578e-06, -6.0264917344858349e-07, -6.0264917344858413e-07, -2.4105966937943374e-06, -2.4105966937943374e-06, -9.6423867751773765e-06, -4.8211933875886798e-06, -6.0264917344858137e-07, -9.7629166098670093e-05, -4.8211933875886764e-06, -4.8211933875886772e-06, -6.0264917344858392e-07, -2.4105966937943374e-06, -2.4105966937943374e-06, -1.2052983468971608e-06, -1.2052983468971606e-06, -1.807947520345742e-06, -6.0264917344858413e-07, -1.2052983468971606e-06, -1.2052983468971608e-06, -6.0264917344858243e-07, -6.0264917344858032e-07, -2.4105966937943213e-06, -7.2317900813829943e-06, -4.8211933875886527e-06, -6.0264917344858201e-07, -6.0264917344858032e-07, -1.0847685122074348e-05, -6.0264917344858307e-07, -2.4105966937943433e-06, -1.2052983468971725e-06, -9.642386775177302e-06, -9.6423867751772986e-06, -3.0132458672429268e-06, -2.4105966937943323e-06, -1.2052983468971765e-06, -3.6158950406914929e-06, -5.1225179743129219e-05, -6.0264917344858307e-07, -2.4105966937943331e-06, -2.4105966937943323e-06, -9.6423867751772952e-06, -9.6423867751773054e-06, -2.4105966937943213e-06, -2.4105966937943289e-06, -2.4105966937943289e-06, -6.0264917344858201e-07, 0.0002177974112843153, -6.0264917344858205e-06, -6.0264917344858032e-07, -4.8211933875886772e-06, -4.8211933875886916e-06, -4.8211933875886764e-06, -9.6423867751773054e-06, -4.8211933875886366e-06, -9.6423867751772952e-06, -4.8211933875886916e-06, -4.8211933875886916e-06, -0.00018501329624871497, -4.8211933875886815e-06, -0.00012052983468971602, -4.8211933875886391e-06, -1.2052983468971687e-06, -3.6158950406914588e-05, -7.2317900813829739e-06, -3.0132458672429162e-06, -3.6158950406914669e-05, -6.0264917344858095e-07, -4.8211933875886679e-06, -4.8211933875886696e-06, -9.7629166098670093e-05, -4.8211933875886493e-06, -4.821193387588651e-06, -0.00013800666071972498, -1.8079475203457628e-06, -0.00012052983468971602, -4.8211933875886696e-06, -4.8211933875886679e-06, -6.0264917344858212e-07, -4.8211933875886696e-06, -4.8211933875886679e-06, -6.026491734485818e-07, -9.6423867751772986e-06, -9.642386775177302e-06, -1.2052983468971716e-06, -2.4105966937943374e-06, -2.4105966937943374e-06, -4.8211933875886815e-06, -4.8211933875886815e-06, -9.7629166098671082e-05, -4.8211933875886756e-06, -4.8211933875886781e-06, -1.6271527683111484e-05, -5.7854320651063778e-05, -4.8211933875886679e-06, -4.278809131484874e-05, -7.2317900813830256e-06, -7.2317900813830256e-06, 0.0019593329927160208, -4.8211933875886933e-06, -6.0264917344856782e-06, -4.8211933875886916e-06, -6.0264917344858646e-06, -1.2655632642420193e-05, -4.8211933875886391e-06, -3.0132458672428429e-06, -1.3860930989317267e-05, -4.8211933875886493e-06, -7.2317900813829723e-06, -1.8079475203457456e-06, -3.0132458672429221e-06, -1.2052983468971725e-06, -6.0264917344858032e-07, -6.0264917344858307e-07, -4.8211933875886916e-06, -7.2317900813830222e-06, -3.6158950406915018e-06, -2.4105966937943272e-06, -4.8211933875886832e-06, -4.82119338758869e-06, -4.8211933875886916e-06, -9.6423867751772867e-06, -4.8211933875886485e-06, -2.4105966937943323e-06, -9.6423867751772817e-06, -4.8211933875886459e-06, -2.4105966937943331e-06, -4.8211933875886916e-06, -6.0264917344858095e-07, -4.8211933875886391e-06, -4.8211933875886391e-06, -9.642386775177363e-06, -1.4463580162766058e-05, -4.8211933875886391e-06, -9.6423867751773596e-06, -9.6423867751773697e-06, -4.8211933875886476e-06, -4.8211933875886468e-06, -4.8211933875886493e-06, -4.821193387588651e-06, -5.4238425610371494e-06, 0.00022502920136569806, -1.2052983468971803e-06, -4.8211933875886493e-06, -4.8211933875886476e-06, -5.42384256103719e-06, -1.5668878509662989e-05, -4.8211933875886849e-06, -4.8211933875886391e-06, -4.8211933875886916e-06, -2.4105966937943323e-06, -2.4105966937943323e-06, -6.0264917344858455e-07, -6.0264917344858667e-07, -6.0264917344858032e-07, -1.2052983468971678e-06, -1.0245035948625838e-05, -1.8079475203457351e-05, -7.2317900813829739e-06, -3.6158950406915026e-06, -6.0264917344858286e-07, -2.4105966937943306e-06, -9.6423867751773325e-06, -1.4463580162766048e-05, -4.821193387588651e-06, -2.4105966937943314e-06, -9.6423867751773257e-06, -9.6423867751773291e-06, -2.4105966937943314e-06, -7.2317900813829858e-06, -4.8211933875886493e-06, -6.0264917344858603e-07, -1.2052983468971721e-06, -2.4105966937943306e-06, -2.4105966937943213e-06, -5.4238425610371663e-06, -3.013245867242928e-06, -4.8211933875886781e-06, -9.6423867751773494e-06, -4.3390740488297263e-05, -2.4105966937943441e-06, -6.0264917344858222e-07, -3.6158950406914588e-05, -4.8211933875886578e-06, -2.892716032553215e-05, -2.8927160325532136e-05, -3.0132458672429094e-05, -2.892716032553215e-05, -2.4105966937943441e-06, -2.4105966937943441e-06, -4.8211933875886612e-06, -4.8211933875886629e-06, -2.4105966937943306e-06, -2.4105966937943306e-06, -4.8211933875886866e-06, -6.0264917344858582e-07, -4.8211933875886849e-06, -6.0264917344858264e-07, -6.0264917344858381e-07, -4.2185442141400373e-05, -2.4105966937943306e-06, -2.4105966937943306e-06, -3.676159958036309e-05, -1.2052983468971702e-06, -4.3390740488297154e-05, -4.3390740488297154e-05, -4.8211933875886578e-06, -6.026491734485818e-07, -4.8211933875886561e-06, -4.3390740488297154e-05, -4.3390740488297595e-05, -4.8211933875886578e-06, -4.8211933875886595e-06, -1.2052983468971606e-06, -1.2052983468971606e-06, -9.6423867751772884e-06, -4.8211933875886578e-06, -4.8211933875886578e-06, -1.8079475203457401e-06, -9.6423867751772884e-06, -9.6423867751773596e-06, -9.642386775177346e-06, -9.6423867751773393e-06, -9.642386775177363e-06, -4.8211933875886391e-06, -4.8211933875886391e-06, -9.6423867751772698e-06, -9.6423867751772715e-06, -1.2052983468971653e-06, -1.2052983468971653e-06, -0.0002422649677263298, -0.0002410596693794321, -6.026491734485812e-06, -1.2052983468971653e-06, -3.6158950406914522e-06, -1.2052983468971436e-05, -9.6423867751772302e-05, -2.4105966937943306e-06, -0.00011088744791453855, -1.2052983468971585e-06, -1.9284773550354679e-05, -1.9284773550354685e-05, -9.6423867751772732e-06, -9.6423867751772681e-06, -9.6423867751772329e-05, -9.6423867751772329e-05, -9.6423867751773528e-06, -0.00027360272474565299, -2.4105966937943407e-06, -0.00024105966937943145, -1.9284773550354672e-05, -9.6423867751773426e-06, -9.6423867751773596e-06, -1.2052983468971568e-06, -1.2052983468971589e-06, -9.6423867751772647e-06, -9.6423867751772613e-06, -2.4105966937943407e-06, -2.4105966937943416e-06, -1.2052983468971581e-06, -1.2052983468971581e-06, -9.6423867751772647e-06, -6.0264917344857883e-06, -3.6158950406914912e-06, -4.8211933875886391e-06, -4.8211933875886391e-06, -1.2052983468971653e-06, -1.807947520345788e-05, -9.6423867751772986e-06, -9.6423867751772986e-06, -1.0847685122074429e-05, -9.6423867751772749e-06, -1.8079475203457772e-05, -2.4105966937943306e-06, -1.2052983468971691e-06, -9.6423867751772749e-06, -9.6423867751772749e-06, -1.205298346897167e-06, -1.2052983468971636e-06, -9.6423867751772952e-06, -9.642386775177302e-06, -2.4105966937943492e-06, -1.2052983468971619e-06, -9.6423867751772884e-06, -1.9284773550354658e-05, -1.2052983468971663e-05, -9.6423867751773223e-06, -1.9284773550354631e-05, -1.205298346897167e-06, -9.6423867751772918e-06, -2.049007189725168e-05, -9.6423867751773155e-06, -9.642386775177302e-06, -1.9284773550354672e-05, -3.8569547100709574e-05, -3.0132458672428979e-05, -9.6423867751772613e-06, -1.9284773550354672e-05, -1.9284773550354679e-05, -4.8211933875886815e-06, -9.6423867751772986e-06, -1.2052983468971651e-05, -1.3258281815868695e-05, -4.8211933875886815e-06, -1.9284773550354797e-05, -9.6423867751773121e-06, -9.6423867751773155e-06, -9.6423867751773121e-06, -2.4105966937943492e-06, -9.642386775177285e-06, -9.6423867751772613e-06, -1.2052983468971691e-06, -9.6423867751772647e-06, -2.410596693794334e-06, -9.6423867751772884e-06, -9.6423867751773223e-06, -9.6423867751773189e-06, -1.2052983468971674e-06, -1.9284773550354685e-05, -1.9284773550354679e-05, -1.2052983468971649e-06, -9.6423867751773121e-06, -9.6423867751773155e-06, -1.2052983468971647e-06, -9.6423867751772952e-06, -9.642386775177302e-06, -9.642386775177302e-06, -9.6423867751772986e-06, -2.8927160325531652e-05, -9.6423867751773528e-06, -9.6423867751772918e-06, -9.6423867751772918e-06, -1.2052983468971627e-06, -9.6423867751772884e-06, -9.6423867751772884e-06, -1.9284773550354624e-05, -4.8211933875886391e-06, -2.1695370244148784e-05, -4.8211933875886391e-06, -1.2052983468971615e-06, -2.4105966937943272e-06, -1.5668878509663036e-05, -9.6423867751773189e-06, -1.9284773550354706e-05, -0.0001012450611393612, -9.6423867751772952e-06, -0.00010606625452694962, -9.6423867751772986e-06, -9.642386775177302e-06, -1.9284773550354679e-05, -9.6423867751773304e-05, -1.9284773550354672e-05, -9.762916609866974e-05, -1.205298346897157e-06, -1.9284773550354665e-05, -1.9284773550354685e-05, -4.8211933875886764e-06, -0.0001012450611393612, -9.6423867751772302e-05, -9.6423867751772762e-05, -9.6423867751773413e-05, -1.2052983468971666e-06, -4.821193387588629e-06, -1.2052983468971611e-06, -1.2052983468971606e-06, -1.2052983468971704e-06, -9.6423867751772647e-06, -9.6423867751772613e-06, -9.6423867751773223e-06, -9.6423867751773223e-06, -1.2052983468971611e-06, -1.2052983468971619e-06, -1.2052983468971611e-06, -9.6423867751773426e-06, -1.2052983468971702e-05, 0.0048862794983210306, -1.9284773550354739e-05, -1.9284773550354611e-05, -9.6423867751773426e-06, -2.8927160325531875e-05, -3.6158950406914954e-06, -0.00010606625452695017, -1.9284773550354618e-05, -8.6781480976594607e-05, -1.2052983468971661e-06, -1.2052983468971636e-06, -3.0132458672428986e-05, -1.9284773550354624e-05, -9.6423867751772986e-06, -8.4370884282800003e-06, -4.8211933875886273e-06, -2.4105966937943306e-06, -8.678148097659462e-05, -2.4105966937943306e-06, -4.8211933875886391e-06, -4.8211933875886391e-06, -8.6781480976594634e-05, -9.6423867751772817e-06, -1.2052983468971632e-06, -9.642386775177302e-06, -1.2052983468971611e-06, -9.6423867751773088e-06, -1.2052983468971672e-05, -3.6158950406915115e-06, -9.642386775177302e-06, -1.8079475203457487e-05, -1.2052983468971581e-06, -9.642386775177285e-06, -2.4105966937943407e-06, -2.4105966937943416e-06, -2.4105966937943374e-06, -1.2052983468971568e-06, -7.2317900813829773e-06, -3.6158950406914997e-06, -9.6423867751773325e-06, -9.6423867751773274e-06, -1.9284773550354651e-05, -3.1337757019326086e-05, -2.7721861978634284e-05, -1.2052983468971581e-06, -1.9284773550354611e-05, -9.6423867751772783e-06, -7.2317900813829502e-06, -2.4105966937943213e-06, -1.2052983468971619e-06, -1.2052983468971606e-06, -9.6423867751773413e-05, -9.6423867751772762e-05, -0.00019525833219734157, -9.6423867751772749e-05, -9.6423867751773304e-05, -4.8211933875886815e-06, -2.4105966937943263e-06, -9.6423867751773257e-06, -1.0847685122074429e-05, -4.8211933875886815e-06, -1.3258281815868758e-05, -1.2052983468971655e-06, -1.2052983468971585e-06, -1.9284773550354618e-05, -9.6423867751772817e-06, -9.6423867751772918e-06, -1.2052983468971636e-06, -1.2052983468971653e-06, -4.8211933875886629e-06, -4.8211933875886629e-06, -1.9284773550354604e-05, -9.6423867751772749e-06, -1.2052983468971602e-06, -0.00019525833219733956, -9.6423867751773291e-06, -9.6423867751773308e-06, -1.2052983468971649e-06, -4.8211933875886629e-06, -4.8211933875886629e-06, -2.4105966937943158e-06, -2.4105966937943153e-06, -3.6158950406914688e-06, -1.2052983468971653e-06, -2.4105966937943153e-06, -2.4105966937943158e-06, -1.2052983468971619e-06, -1.205298346897167e-06, -4.8211933875886408e-06, -1.4463580162765934e-05, -9.6423867751772817e-06, -1.2052983468971611e-06, -1.2052983468971585e-06, -2.1695370244148868e-05, -1.2052983468971632e-06, -4.8211933875886764e-06, -2.410596693794339e-06, -1.9284773550354557e-05, -1.928477355035455e-05, -6.0264917344858417e-06, -4.8211933875886527e-06, -2.4105966937943475e-06, -7.2317900813829739e-06, -0.00010245035948625841, -1.2052983468971581e-06, -4.8211933875886544e-06, -4.8211933875886527e-06, -1.9284773550354543e-05, -1.9284773550354563e-05, -4.8211933875886578e-06, -4.8211933875886459e-06, -4.8211933875886459e-06, -1.2052983468971611e-06, -5.5443723957269144e-05, -1.2052983468971572e-05, -1.205298346897167e-06, -9.6423867751773308e-06, -9.6423867751773596e-06, -9.6423867751773291e-06, -1.9284773550354563e-05, -9.6423867751772495e-06, -1.9284773550354543e-05, -9.6423867751773596e-06, -9.6423867751773596e-06, -0.00037002659249742799, -9.6423867751772783e-06, -0.00024105966937943129, -9.6423867751772884e-06, -2.4105966937943314e-06, -7.2317900813829826e-05, -1.4463580162765914e-05, -6.0264917344858273e-06, -7.231790081383007e-05, -1.2052983468971589e-06, -9.6423867751773121e-06, -9.6423867751773155e-06, -0.00019525833219733956, -9.6423867751772749e-06, -9.6423867751772783e-06, -0.00027601332143944676, -3.6158950406915009e-06, -0.00024105966937943129, -9.6423867751773155e-06, -9.6423867751773121e-06, -1.2052983468971613e-06, -9.6423867751773155e-06, -9.6423867751773121e-06, -1.2052983468971602e-06, -1.928477355035455e-05, -1.9284773550354557e-05, -2.4105966937943374e-06, -4.8211933875886629e-06, -4.8211933875886629e-06, -9.6423867751772783e-06, -9.6423867751772749e-06, -0.00019525833219734157, -9.6423867751773274e-06, -9.6423867751773325e-06, 0.0043868038633668918, -0.00011570864130212691, -9.6423867751773121e-06, -8.5576182629697723e-05, -1.4463580162765955e-05, -1.4463580162765951e-05, -9.6423867751773426e-06, -9.642386775177302e-06, -1.2052983468971707e-05, -9.6423867751772952e-06, -1.2052983468971687e-05, -2.5311265284840321e-05, -9.6423867751772884e-06, -6.0264917344858493e-06, -2.7721861978634589e-05, -9.6423867751772749e-06, -1.4463580162765921e-05, -3.6158950406915026e-06, -6.0264917344858273e-06, -2.410596693794339e-06, -1.2052983468971666e-06, -1.2052983468971632e-06, -9.6423867751773596e-06, -1.4463580162766004e-05, -7.2317900813829841e-06, -4.8211933875886425e-06, -9.6423867751773426e-06, -9.6423867751773528e-06, -9.6423867751773596e-06, -1.9284773550354526e-05, -9.6423867751772732e-06, -4.8211933875886527e-06, -1.9284773550354516e-05, -9.6423867751772681e-06, -4.8211933875886544e-06, -9.6423867751773596e-06, -1.2052983468971589e-06, -9.6423867751772749e-06, -9.6423867751772749e-06, -1.9284773550354679e-05, -2.8927160325531964e-05, -9.6423867751773054e-06, -1.9284773550354672e-05, -1.9284773550354692e-05, -9.6423867751772715e-06, -9.6423867751772698e-06, -9.6423867751772749e-06, -9.6423867751772783e-06, -1.0847685122074336e-05, -4.0980143794503347e-05, -2.4105966937943424e-06, -9.6423867751773528e-06, -9.6423867751772681e-06, -1.0847685122074339e-05, -3.1337757019326072e-05, -9.642386775177346e-06, -9.642386775177302e-06, -9.6423867751773596e-06, -4.8211933875886527e-06, -4.8211933875886527e-06, -1.2052983468971661e-06, -1.2052983468971704e-06, -1.205298346897167e-06, 0.00048862794983210776, -2.0490071897251677e-05, -3.6158950406915001e-05, -1.4463580162765914e-05, -7.2317900813829773e-06, -1.2052983468971627e-06, -4.8211933875886493e-06, -1.9284773550354618e-05, -2.8927160325531828e-05, -9.6423867751773562e-06, -4.821193387588651e-06, -1.9284773550354604e-05, -1.9284773550354611e-05, -4.821193387588651e-06, -1.4463580162765887e-05, -9.6423867751772749e-06, -1.2052983468971691e-06, -2.410596693794339e-06, -4.8211933875886493e-06, -4.8211933875886578e-06, -1.084768512207437e-05, -6.026491734485718e-06, -9.6423867751773325e-06, -1.9284773550354651e-05, -8.6781480976595244e-05, -4.8211933875886764e-06, -1.2052983468971615e-06, -7.2317900813829799e-05, -9.6423867751772918e-06, -5.7854320651064056e-05, -5.7854320651064029e-05, -6.0264917344857998e-05, -5.7854320651064056e-05, -4.8211933875886764e-06, -4.8211933875886764e-06, -9.6423867751772986e-06, -9.642386775177302e-06, -4.8211933875886476e-06, -4.8211933875886476e-06, -9.6423867751772884e-06, -1.2052983468971687e-06, -9.642386775177285e-06, -1.2052983468971623e-06, -1.2052983468971647e-06, -8.4370884282800854e-05, -4.8211933875886476e-06, -4.8211933875886476e-06, -7.3523199160726912e-05, -2.4105966937943344e-06, -8.6781480976594634e-05, -8.678148097659462e-05, -9.6423867751772918e-06, -1.2052983468971606e-06, -9.6423867751772884e-06, -8.6781480976594607e-05, -8.6781480976595487e-05, -9.6423867751772918e-06, -9.6423867751772986e-06, -2.4105966937943204e-06, -2.4105966937943323e-06, -1.9284773550354529e-05, -9.6423867751772952e-06, -9.6423867751772918e-06, -3.6158950406914633e-06, -1.9284773550354529e-05, -7.7139094201417762e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -0.00019381197418106137, -0.00019284773550354211, -4.8211933875886595e-06, -9.6423867751772245e-07, -2.8927160325531705e-06, -9.6423867751773799e-06, -7.7139094201419256e-05, -1.9284773550354449e-06, -8.8709958331631845e-05, -9.6423867751772245e-07, -1.5427818840283556e-05, -1.5427818840283552e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201419256e-05, -7.7139094201419256e-05, -7.7139094201417762e-06, -0.0002188821797965244, -1.928477355035444e-06, -0.00019284773550354466, -1.5427818840283556e-05, -7.7139094201417796e-06, -7.7139094201417762e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.928477355035444e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417762e-06, -4.8211933875886629e-06, -2.8927160325531726e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -1.4463580162765931e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -8.6781480976595298e-06, -7.7139094201417813e-06, -1.446358016276588e-05, -1.9284773550354445e-06, -9.6423867751772224e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -1.5427818840283559e-05, -9.6423867751773596e-06, -7.7139094201417813e-06, -1.5427818840283559e-05, -9.6423867751772266e-07, -7.7139094201417796e-06, -1.6392057517801243e-05, -7.7139094201417796e-06, 0.0019564402766834681, -1.5427818840283559e-05, -3.0855637680567105e-05, -2.4105966937942825e-05, -7.7139094201417796e-06, -1.5427818840283559e-05, -1.5427818840283556e-05, -3.8569547100708898e-06, -7.7139094201417796e-06, -9.642386775177363e-06, -1.0606625452694929e-05, -3.8569547100708898e-06, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -9.6423867751772202e-07, -7.7139094201417796e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.5427818840283556e-05, -1.5427818840283556e-05, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -2.3141728260425825e-05, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -3.8569547100708898e-06, -1.7356296195319154e-05, -3.8569547100708898e-06, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.2535102807730546e-05, -7.7139094201417813e-06, -1.5427818840283559e-05, -8.0996048911489396e-05, -7.7139094201417796e-06, -8.485300362155913e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -7.7139094201418782e-05, -1.5427818840283559e-05, -7.8103332878936608e-05, -9.6423867751772245e-07, -1.5427818840283559e-05, -1.5427818840283556e-05, -3.8569547100708881e-06, -8.0996048911489369e-05, -7.7139094201419256e-05, -7.7139094201418714e-05, -7.7139094201418917e-05, -9.6423867751772266e-07, -3.8569547100708881e-06, -9.6423867751772245e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417813e-06, -9.6423867751773291e-06, -1.9284773550354739e-05, 0.0039128805533669387, -1.5427818840283559e-05, -7.7139094201417813e-06, -2.3141728260425523e-05, -2.8927160325532141e-06, -8.4853003621559794e-05, -1.5427818840283559e-05, -6.9425184781276889e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937942906e-05, -1.5427818840283559e-05, -7.7139094201417796e-06, -6.7496707426240819e-06, -3.8569547100708889e-06, -1.9284773550354445e-06, -6.9425184781276889e-05, -1.9284773550354445e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -6.9425184781276862e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -9.6423867751773189e-06, -2.8927160325531726e-06, -7.7139094201417813e-06, -1.4463580162765846e-05, -9.6423867751772245e-07, -7.7139094201417796e-06, -1.928477355035444e-06, -1.928477355035444e-06, -1.9284773550354445e-06, -9.6423867751772245e-07, -5.7854320651063165e-06, -2.8927160325532082e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -2.5070205615461017e-05, -2.2177489582907938e-05, -9.6423867751772245e-07, -1.5427818840283559e-05, -7.7139094201417796e-06, -5.785432065106391e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201418917e-05, -7.7139094201418714e-05, -0.00015620666575787368, -7.7139094201418714e-05, -7.7139094201418782e-05, -3.8569547100708898e-06, -1.9284773550354449e-06, -7.7139094201417779e-06, -8.6781480976595365e-06, -3.8569547100708898e-06, -1.060662545269493e-05, -9.6423867751772245e-07, -9.6423867751772266e-07, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.5427818840283559e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -0.00015620666575787335, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.8927160325531726e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -3.8569547100708889e-06, -1.1570864130212694e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.7356296195319188e-05, -9.6423867751772245e-07, -3.8569547100708856e-06, -1.9284773550354449e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -4.8211933875886815e-06, -3.8569547100708898e-06, -1.9284773550354445e-06, -5.7854320651063453e-06, -8.1960287589006667e-05, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -4.4354979165815699e-05, -9.6423867751773206e-06, -9.6423867751772266e-07, -7.7139094201417796e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -7.7139094201417762e-06, -1.5427818840283559e-05, -7.7139094201417762e-06, -7.7139094201417762e-06, -0.00029602127399794059, -7.7139094201417796e-06, -0.00019284773550354336, -7.7139094201417813e-06, -1.9284773550354445e-06, -5.7854320651063412e-05, -1.1570864130212755e-05, -4.8211933875886747e-06, -5.7854320651063697e-05, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00015620666575787335, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00022081065715156035, -2.8927160325532074e-06, -0.00019284773550354352, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -1.9284773550354445e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00015620666575787368, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.6034444292978457e-05, 0.0018715872730619184, -7.7139094201417796e-06, -6.8460946103758791e-05, -1.1570864130212687e-05, -1.1570864130212687e-05, -7.7139094201417813e-06, -7.7139094201417762e-06, -9.6423867751773257e-06, -7.7139094201417762e-06, -9.6423867751773765e-06, -2.0249012227872322e-05, -7.7139094201417813e-06, -4.8211933875886612e-06, -2.2177489582907863e-05, -7.7139094201417796e-06, -1.1570864130212748e-05, -2.8927160325531366e-06, -4.8211933875886781e-06, -1.928477355035444e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.7139094201417762e-06, -1.1570864130212735e-05, -5.7854320651063876e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -1.5427818840283552e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -1.5427818840283552e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.5427818840283556e-05, -2.3141728260425537e-05, -7.7139094201417813e-06, -1.5427818840283556e-05, -1.5427818840283552e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -8.6781480976596043e-06, -3.2784115035602548e-05, -1.928477355035444e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -8.6781480976593858e-06, -2.5070205615461041e-05, -7.7139094201417762e-06, -7.7139094201417813e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -9.6423867751772202e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.6392057517801192e-05, -2.8927160325531679e-05, -1.1570864130212755e-05, -5.7854320651063165e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -1.5427818840283559e-05, -2.3141728260425696e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -1.1570864130212796e-05, -7.7139094201417796e-06, -9.6423867751772224e-07, -1.9284773550354445e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -8.6781480976595874e-06, -4.8211933875886883e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -6.9425184781276645e-05, -3.8569547100708881e-06, -9.6423867751772245e-07, -5.7854320651063412e-05, -7.7139094201417796e-06, -4.628345652085144e-05, -4.6283456520850749e-05, -4.8211933875885643e-05, -4.628345652085144e-05, -3.8569547100708881e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -9.6423867751772224e-07, -7.7139094201417762e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.7496707426240816e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -5.8818559328581232e-05, -1.9284773550354449e-06, -6.9425184781276862e-05, -6.9425184781276889e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -6.9425184781276889e-05, -6.9425184781276753e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.8927160325532108e-06, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -0.00019381197418106357, -0.00019284773550354403, -4.8211933875886273e-06, -9.6423867751772266e-07, -2.8927160325531904e-06, -9.6423867751773138e-06, -7.7139094201418741e-05, -1.9284773550354453e-06, -8.8709958331630951e-05, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201418741e-05, -7.7139094201418741e-05, -7.7139094201417796e-06, -0.00021888217979652256, -1.9284773550354445e-06, -0.00019284773550354661, -1.5427818840283559e-05, -7.7139094201417813e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -7.7139094201417762e-06, -4.8211933875886273e-06, -2.892716032553193e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -1.4463580162766031e-05, -7.713909420141783e-06, -7.713909420141783e-06, -8.6781480976594468e-06, -7.7139094201417813e-06, -1.4463580162765934e-05, -1.9284773550354449e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -1.5427818840283563e-05, -9.6423867751772952e-06, -7.7139094201417813e-06, -1.5427818840283563e-05, -9.6423867751772245e-07, -7.713909420141783e-06, -1.6392057517801206e-05, -7.7139094201417813e-06, -7.713909420141783e-06, -1.5427818840283559e-05, -3.0855637680567105e-05, -2.4105966937943065e-05, -7.713909420141783e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708889e-06, -7.7139094201417813e-06, -9.6423867751772986e-06, -1.0606625452694918e-05, -3.8569547100708889e-06, -1.5427818840283556e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -7.713909420141783e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -7.7139094201417796e-06, -2.3141728260425523e-05, -7.7139094201417779e-06, -7.7139094201417813e-06, -7.713909420141783e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.713909420141783e-06, -1.5427818840283566e-05, -3.8569547100708915e-06, -1.7356296195318927e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.2535102807730509e-05, -7.7139094201417813e-06, -1.5427818840283559e-05, -8.0996048911489315e-05, -7.713909420141783e-06, -8.4853003621559401e-05, -7.713909420141783e-06, -7.713909420141783e-06, -1.5427818840283559e-05, -7.7139094201418321e-05, -1.5427818840283559e-05, -7.8103332878936283e-05, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -8.0996048911489288e-05, -7.7139094201418741e-05, -7.7139094201418253e-05, -7.7139094201418457e-05, -9.6423867751772245e-07, -3.8569547100708881e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.7139094201417796e-06, -9.6423867751773291e-06, -1.9284773550354611e-05, -1.5427818840283559e-05, 0.0039128805533669361, -7.7139094201417796e-06, -2.3141728260425286e-05, -2.8927160325532353e-06, -8.4853003621560119e-05, -1.5427818840283566e-05, -6.9425184781275994e-05, -9.6423867751772266e-07, -9.6423867751772287e-07, -2.4105966937943143e-05, -1.5427818840283566e-05, -7.713909420141783e-06, -6.7496707426240785e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -6.9425184781275994e-05, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -6.9425184781275967e-05, -7.713909420141783e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -9.6423867751772901e-06, -2.892716032553193e-06, -7.7139094201417813e-06, -1.4463580162765934e-05, -9.6423867751772287e-07, -7.713909420141783e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -5.7854320651064173e-06, -2.892716032553229e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283563e-05, -2.5070205615460949e-05, -2.2177489582907748e-05, -9.6423867751772287e-07, -1.5427818840283563e-05, -7.7139094201417813e-06, -5.78543206510643e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.7139094201418457e-05, -7.7139094201418253e-05, -0.000156206665757873, -7.7139094201418253e-05, -7.7139094201418321e-05, -3.8569547100708889e-06, -1.9284773550354453e-06, -7.7139094201417779e-06, -8.6781480976594298e-06, -3.8569547100708889e-06, -1.0606625452694974e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.5427818840283563e-05, -7.7139094201417813e-06, -7.713909420141783e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.5427818840283559e-05, -7.7139094201417813e-06, -9.6423867751772287e-07, -0.00015620666575787267, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.892716032553193e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -3.8569547100708889e-06, -1.1570864130212779e-05, -7.7139094201417813e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -1.7356296195318965e-05, -9.6423867751772287e-07, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.5427818840283566e-05, -1.5427818840283566e-05, -4.821193387588651e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -5.7854320651063842e-06, -8.1960287589006667e-05, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.5427818840283566e-05, -1.5427818840283566e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772287e-07, -4.4354979165815319e-05, -9.6423867751772545e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283566e-05, -7.7139094201417796e-06, -1.5427818840283566e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00029602127399794449, -7.7139094201417813e-06, -0.00019284773550354523, -7.7139094201417813e-06, -1.9284773550354449e-06, -5.7854320651063371e-05, -1.1570864130212775e-05, -4.8211933875886425e-06, -5.7854320651064015e-05, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -0.00015620666575787267, -7.713909420141783e-06, -7.713909420141783e-06, -0.0002208106571515584, -2.8927160325531913e-06, -0.00019284773550354544, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -1.5427818840283566e-05, -1.5427818840283566e-05, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -0.000156206665757873, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.603444429297845e-05, -9.2566913041702202e-05, -7.7139094201417813e-06, -6.8460946103757897e-05, -1.1570864130212765e-05, -1.1570864130212765e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751773359e-06, -7.7139094201417796e-06, -9.6423867751772579e-06, -2.0249012227872288e-05, -7.7139094201417813e-06, -4.8211933875886612e-06, -2.2177489582907653e-05, -7.713909420141783e-06, -1.1570864130212775e-05, -2.8927160325532298e-06, -4.8211933875886408e-06, -1.9284773550354445e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -7.7139094201417796e-06, -1.157086413021277e-05, -5.7854320651064274e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -7.7139094201417813e-06, -3.8569547100708915e-06, -1.5427818840283556e-05, -7.713909420141783e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.5427818840283559e-05, -2.3141728260425537e-05, -7.7139094201417813e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.713909420141783e-06, -7.713909420141783e-06, -8.6781480976594891e-06, -3.2784115035602622e-05, -1.9284773550354445e-06, -7.7139094201417779e-06, -7.713909420141783e-06, -8.6781480976594891e-06, -2.507020561546097e-05, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.6392057517801115e-05, -2.8927160325531713e-05, -1.1570864130212775e-05, -5.7854320651064173e-06, -9.6423867751772287e-07, -3.8569547100708915e-06, -1.5427818840283566e-05, -2.3141728260425259e-05, -7.7139094201417779e-06, -3.8569547100708915e-06, -1.5427818840283566e-05, 0.0039128805533669361, -3.8569547100708915e-06, -1.1570864130212774e-05, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -8.6781480976594739e-06, -4.8211933875886544e-06, -7.7139094201417813e-06, -1.5427818840283563e-05, -6.9425184781275886e-05, -3.8569547100708898e-06, -9.6423867751772287e-07, -5.7854320651063358e-05, -7.713909420141783e-06, -4.6283456520850572e-05, -4.6283456520850579e-05, -4.8211933875885792e-05, -4.6283456520850572e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772287e-07, -6.7496707426240924e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -5.8818559328581218e-05, -1.9284773550354449e-06, -6.9425184781275967e-05, -6.9425184781275994e-05, -7.713909420141783e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -6.9425184781275994e-05, -6.9425184781275859e-05, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.5427818840283566e-05, -7.713909420141783e-06, -7.713909420141783e-06, -2.8927160325531925e-06, -1.5427818840283566e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6905987090532218e-05, -9.6423867751772491e-05, -2.410596693794323e-06, -4.8211933875886122e-07, -1.4463580162766052e-06, -4.8211933875886764e-06, -3.856954710070952e-05, -9.6423867751772245e-07, -4.4354979165815211e-05, -4.8211933875886133e-07, -7.7139094201417779e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.856954710070952e-05, -3.8569547100709506e-05, -3.8569547100708889e-06, -0.0001094410898982608, -9.6423867751772202e-07, -9.6423867751773752e-05, -7.7139094201417779e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708889e-06, -2.410596693794323e-06, -1.4463580162766062e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -7.2317900813830476e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488297098e-06, -3.8569547100708906e-06, -7.2317900813830222e-06, -9.6423867751772224e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -7.7139094201417796e-06, -4.8211933875886654e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -8.1960287589005776e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971594e-05, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -4.8211933875886671e-06, -5.3033127263474676e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -3.8569547100708898e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708889e-06, -1.1570864130212857e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -8.6781480976593993e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -6.2675514038652627e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.0498024455744671e-05, -3.8569547100708898e-06, -4.2426501810779606e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417779e-06, -3.8569547100709269e-05, -7.7139094201417796e-06, -3.9051666439468236e-05, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.9284773550354445e-06, -4.0498024455744657e-05, -3.856954710070952e-05, -3.8569547100709242e-05, -3.8569547100709343e-05, -4.8211933875886133e-07, -1.928477355035444e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -4.8211933875886442e-06, -9.6423867751773426e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, 0.001960297231393539, -1.1570864130212851e-05, -1.4463580162766276e-06, -4.2426501810779938e-05, -7.7139094201417796e-06, -3.4712592390637733e-05, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971634e-05, -7.7139094201417813e-06, -3.8569547100708898e-06, -3.3748353713120973e-06, -1.9284773550354445e-06, -9.6423867751772224e-07, -3.4712592390637733e-05, -9.6423867751772224e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.4712592390637719e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -4.8211933875886425e-06, -1.4463580162766062e-06, -3.8569547100708906e-06, -7.2317900813830002e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.8927160325532281e-06, -1.4463580162766242e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.2535102807730488e-05, -1.1088744791453808e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -2.8927160325532349e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100709343e-05, -3.8569547100709242e-05, -7.8103332878936703e-05, -3.8569547100709242e-05, -3.8569547100709269e-05, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.8569547100708889e-06, -4.3390740488296827e-06, -1.9284773550354449e-06, -5.3033127263474736e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.8103332878936527e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.4463580162766062e-06, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -5.7854320651064249e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -8.6781480976594197e-06, -4.8211933875886122e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.4105966937943335e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -2.8927160325532116e-06, -4.0980143794503334e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886133e-07, -2.2177489582907514e-05, -4.8211933875886459e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708881e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -0.00014801063699897317, -3.8569547100708898e-06, -9.6423867751773101e-05, -3.8569547100708906e-06, -9.6423867751772224e-07, -2.8927160325531821e-05, -5.7854320651063775e-06, -2.4105966937943306e-06, -2.8927160325532143e-05, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936527e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00011040532857577874, -1.4463580162766058e-06, -9.6423867751773182e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936703e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, 0.001951136963957122, -4.6283456520851413e-05, -3.8569547100708898e-06, -3.4230473051878691e-05, -5.7854320651064215e-06, -5.7854320651064215e-06, -3.8569547100708906e-06, -3.8569547100708889e-06, -4.8211933875886442e-06, -3.8569547100708889e-06, -4.8211933875886747e-06, -1.0124506113936161e-05, -3.8569547100708906e-06, -2.4105966937943221e-06, -1.108874479145375e-05, -3.8569547100708898e-06, -5.7854320651063707e-06, -1.4463580162765696e-06, -2.4105966937943297e-06, -9.6423867751772202e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708889e-06, -5.7854320651064249e-06, -2.8927160325532332e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417779e-06, -1.157086413021285e-05, -3.8569547100708906e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488297132e-06, -1.6392057517801253e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.3390740488298479e-06, -1.2535102807730502e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708889e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -8.1960287589005285e-06, -1.4463580162765911e-05, -5.7854320651063978e-06, -2.8927160325532281e-06, -4.8211933875886133e-07, -1.9284773550354449e-06, -7.7139094201417796e-06, -1.1570864130212862e-05, -3.8569547100708898e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -5.7854320651064232e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354453e-06, -4.3390740488297047e-06, -2.4105966937943365e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.4712592390637692e-05, -1.9284773550354445e-06, -4.8211933875886133e-07, -2.8927160325531814e-05, -3.8569547100708898e-06, -2.3141728260426042e-05, -2.3141728260425693e-05, -2.4105966937943177e-05, -2.3141728260426042e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.3748353713120205e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.9409279664290738e-05, -9.6423867751772245e-07, -3.4712592390637719e-05, -3.4712592390637733e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.4712592390637733e-05, -3.4712592390637665e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.4463580162766037e-06, -7.7139094201417813e-06, -1.1570864130212896e-05, -1.1570864130212845e-05, -1.1570864130212855e-05, -1.1570864130212892e-05, -5.7854320651063622e-06, -5.7854320651063622e-06, -1.1570864130212723e-05, -1.1570864130212719e-05, -1.4463580162766043e-06, -1.4463580162766026e-06, -0.0002907179612715957, -0.000289271603255316, -7.231790081382957e-06, -1.4463580162766041e-06, -4.3390740488298242e-06, -1.4463580162765955e-05, -0.00011570864130212682, -2.8927160325532052e-06, -0.00013306493749744587, -1.4463580162765886e-06, -2.3141728260425713e-05, -2.31417282604257e-05, -1.1570864130212716e-05, -1.1570864130212726e-05, -0.00011570864130212661, -0.00011570864130212661, -1.1570864130212692e-05, -0.00032832326969478462, -2.8927160325532256e-06, -0.00028927160325531621, -2.3141728260425727e-05, -1.1570864130212848e-05, -1.1570864130212899e-05, -1.4463580162765876e-06, -1.4463580162766043e-06, -1.1570864130212807e-05, -1.1570864130212818e-05, -2.8927160325532256e-06, -2.8927160325532256e-06, -1.446358016276588e-06, -1.4463580162765978e-06, -1.1570864130212685e-05, -7.2317900813829833e-06, -4.3390740488297954e-06, -5.7854320651063639e-06, -5.7854320651063605e-06, -1.4463580162766041e-06, -2.1695370244148702e-05, -1.157086413021278e-05, -1.1570864130212784e-05, -1.3017222146489246e-05, -1.1570864130212713e-05, -2.1695370244148862e-05, -2.8927160325532086e-06, -1.4463580162766102e-06, -1.1570864130212716e-05, -1.1570864130212719e-05, -1.446358016276605e-06, -1.4463580162766007e-06, -1.1570864130212791e-05, -1.1570864130212777e-05, -2.8927160325532002e-06, -1.4463580162765954e-06, -1.157086413021275e-05, -2.3141728260425395e-05, -1.4463580162765934e-05, -1.1570864130212811e-05, -2.314172826042551e-05, -1.4463580162766054e-06, -1.157086413021276e-05, 0.0019395660998269089, -1.1570864130212804e-05, -1.1570864130212774e-05, -2.3141728260425696e-05, -4.6283456520850769e-05, -3.6158950406914615e-05, -1.1570864130212719e-05, -2.3141728260425669e-05, -2.3141728260425656e-05, -5.7854320651064495e-06, -1.1570864130212777e-05, -1.4463580162765928e-05, -1.5909938179042283e-05, -5.7854320651064512e-06, -2.3141728260425378e-05, -1.1570864130212806e-05, -1.1570864130212807e-05, -1.1570864130212811e-05, -2.8927160325531887e-06, -1.1570864130212874e-05, -1.1570864130212719e-05, -1.4463580162766124e-06, -1.1570864130212716e-05, -2.8927160325531908e-06, -1.1570864130212867e-05, -1.1570864130212804e-05, -1.1570864130212814e-05, -1.4463580162766056e-06, -2.3141728260425669e-05, -2.3141728260425683e-05, -1.4463580162766016e-06, -1.1570864130212802e-05, -1.1570864130212799e-05, -1.4463580162765817e-06, -1.1570864130212897e-05, -1.1570864130212882e-05, -1.1570864130212774e-05, -1.1570864130212887e-05, -3.4712592390638526e-05, -1.1570864130212882e-05, -1.1570864130212743e-05, -1.1570864130212763e-05, -1.4463580162765971e-06, -1.1570864130212753e-05, -1.1570864130212767e-05, -2.3141728260425571e-05, -5.7854320651063605e-06, -2.6034444292978478e-05, -5.7854320651063639e-06, -1.4463580162766102e-06, -2.892716032553198e-06, -1.8802654211595569e-05, -1.1570864130212814e-05, -2.3141728260425388e-05, -0.00012149407336723428, -1.1570864130212791e-05, -0.00012727950543233832, -1.1570864130212777e-05, -1.1570864130212774e-05, -2.3141728260425656e-05, -0.0001157086413021273, -2.3141728260425669e-05, -0.0001171549993184043, -1.446358016276588e-06, -2.3141728260425683e-05, -2.3141728260425642e-05, -5.7854320651064376e-06, -0.00012149407336723428, -0.00011570864130212682, -0.00011570864130212692, -0.00011570864130212764, -1.4463580162766045e-06, -5.7854320651063885e-06, -1.4463580162765942e-06, -1.4463580162766079e-06, -1.4463580162766126e-06, -1.1570864130212811e-05, -1.1570864130212814e-05, -1.1570864130212807e-05, -1.1570864130212811e-05, -1.4463580162765944e-06, -1.4463580162765956e-06, -1.4463580162765939e-06, -1.1570864130212855e-05, -1.4463580162765997e-05, -2.8927160325531875e-05, -2.3141728260425523e-05, -2.3141728260425286e-05, -1.1570864130212851e-05, 0.0058577499659201934, -4.3390740488297047e-06, -0.0001272795054323391, -2.3141728260425313e-05, -0.00010413777717191375, -1.4463580162766037e-06, -1.446358016276599e-06, -3.6158950406914608e-05, -2.3141728260425571e-05, -1.157086413021278e-05, -1.0124506113936198e-05, -5.7854320651063478e-06, -2.8927160325531659e-06, -0.00010413777717191375, -2.8927160325532086e-06, -5.7854320651063622e-06, -5.7854320651063622e-06, -0.00010413777717191375, -1.1570864130212743e-05, -1.4463580162765982e-06, -1.157086413021278e-05, -1.4463580162765942e-06, -1.157086413021277e-05, -1.4463580162765972e-05, -4.3390740488297937e-06, -1.1570864130212777e-05, -2.1695370244148896e-05, -1.4463580162765878e-06, -1.157086413021274e-05, -2.8927160325532256e-06, -2.8927160325532252e-06, -2.8927160325532188e-06, -1.4463580162766009e-06, -8.6781480976594823e-06, -4.3390740488297132e-06, -1.1570864130212831e-05, -1.1570864130212845e-05, -2.314172826042552e-05, -3.7605308423191104e-05, -3.3266234374361041e-05, -1.4463580162765878e-06, -2.3141728260425388e-05, -1.1570864130212838e-05, -8.678148097659479e-06, -2.8927160325531748e-06, -1.4463580162765956e-06, -1.4463580162766079e-06, -0.00011570864130212764, -0.00011570864130212692, -0.0002343099986368071, -0.00011570864130212693, -0.0001157086413021273, -5.7854320651064512e-06, -2.892716032553187e-06, -1.1570864130212689e-05, -1.3017222146489284e-05, -5.7854320651064495e-06, -1.5909938179042361e-05, -1.4463580162766039e-06, -1.4463580162765889e-06, -2.3141728260425398e-05, -1.1570864130212741e-05, -1.1570864130212763e-05, -1.4463580162765992e-06, -1.4463580162766041e-06, -5.7854320651064063e-06, -5.7854320651064097e-06, -2.3141728260425388e-05, -1.1570864130212845e-05, -1.446358016276592e-06, -0.00023430999863680959, -1.1570864130212838e-05, -1.1570864130212835e-05, -1.4463580162766018e-06, -5.7854320651064097e-06, -5.785432065106408e-06, -2.8927160325531769e-06, -2.8927160325531769e-06, -4.3390740488297886e-06, -1.4463580162766045e-06, -2.8927160325531769e-06, -2.8927160325531769e-06, -1.4463580162765958e-06, -1.4463580162766047e-06, -5.7854320651063648e-06, -1.73562961953191e-05, -1.1570864130212738e-05, -1.4463580162765937e-06, -1.4463580162765886e-06, -2.6034444292978454e-05, -1.4463580162766005e-06, -5.7854320651063419e-06, -2.8927160325531739e-06, -2.3141728260425408e-05, -2.3141728260425368e-05, -7.2317900813829875e-06, -5.7854320651063961e-06, -2.8927160325531726e-06, -8.6781480976595535e-06, -0.0001229404313835102, -1.446358016276598e-06, -5.7854320651063944e-06, -5.7854320651063978e-06, -2.3141728260425327e-05, -2.3141728260425449e-05, -5.7854320651063986e-06, -5.7854320651063783e-06, -5.7854320651063766e-06, -1.4463580162765939e-06, -6.6532468748722908e-05, -1.4463580162765848e-05, -1.4463580162766056e-06, -1.1570864130212835e-05, -1.1570864130212707e-05, -1.1570864130212838e-05, -2.3141728260425449e-05, -1.1570864130212697e-05, -2.3141728260425327e-05, -1.1570864130212701e-05, -1.1570864130212704e-05, -0.00044403191099691197, -1.1570864130212835e-05, -0.00028927160325531638, -1.1570864130212753e-05, -2.8927160325532099e-06, -8.6781480976594878e-05, -1.7356296195319141e-05, -7.2317900813829638e-06, -8.6781480976594878e-05, -1.4463580162765903e-06, -1.1570864130212811e-05, -1.1570864130212807e-05, -0.00023430999863680959, -1.1570864130212736e-05, -1.1570864130212733e-05, -0.00033121598572733856, -4.3390740488298106e-06, -0.00028927160325531654, -1.1570864130212799e-05, -1.1570864130212802e-05, -1.4463580162765787e-06, -1.1570864130212804e-05, -1.1570864130212814e-05, -1.4463580162765927e-06, -2.3141728260425368e-05, -2.3141728260425408e-05, -2.8927160325532188e-06, -5.785432065106408e-06, -5.7854320651064097e-06, -1.1570864130212838e-05, -1.1570864130212841e-05, -0.0002343099986368071, -1.1570864130212845e-05, -1.1570864130212831e-05, -3.905166643946806e-05, -0.00013885036956255296, -1.1570864130212806e-05, -0.00010269141915563746, -1.7356296195319243e-05, -1.7356296195319243e-05, -1.1570864130212845e-05, -1.1570864130212882e-05, -1.4463580162765989e-05, -1.1570864130212897e-05, -1.4463580162765884e-05, -3.037351834180849e-05, -1.1570864130212746e-05, -7.2317900813829875e-06, -3.3266234374361447e-05, -1.157086413021274e-05, -1.7356296195319141e-05, -4.3390740488297149e-06, -7.231790081382957e-06, -2.8927160325532209e-06, -1.4463580162766045e-06, -1.4463580162765982e-06, -1.1570864130212899e-05, -1.7356296195319161e-05, -8.678148097659479e-06, -5.7854320651063707e-06, -1.1570864130212851e-05, -1.1570864130212692e-05, -1.1570864130212704e-05, -2.3141728260425395e-05, -1.1570864130212716e-05, -5.7854320651063978e-06, -2.3141728260425395e-05, -1.1570864130212718e-05, -5.7854320651063944e-06, -1.1570864130212707e-05, -1.4463580162765901e-06, -1.1570864130212719e-05, -1.1570864130212716e-05, -2.3141728260425683e-05, -3.4712592390638404e-05, -1.1570864130212774e-05, -2.3141728260425727e-05, -2.3141728260425686e-05, -1.1570864130212719e-05, -1.1570864130212723e-05, -1.157086413021274e-05, -1.157086413021273e-05, -1.3017222146489225e-05, -4.9176172553404438e-05, -2.8927160325531718e-06, -1.1570864130212882e-05, -1.1570864130212721e-05, -1.3017222146489218e-05, -3.7605308423190948e-05, -1.1570864130212845e-05, -1.157086413021278e-05, -1.1570864130212896e-05, -5.7854320651063961e-06, -5.7854320651063978e-06, -1.4463580162766037e-06, -1.4463580162766126e-06, -1.4463580162766056e-06, -2.8927160325532019e-06, -2.4588086276702304e-05, -4.3390740488297351e-05, -1.7356296195319093e-05, -8.6781480976594823e-06, -1.4463580162765973e-06, -5.7854320651063927e-06, -2.3141728260425313e-05, -3.4712592390637956e-05, -1.1570864130212879e-05, -5.7854320651063927e-06, 0.003905166643946795, -2.3141728260425286e-05, -5.7854320651063927e-06, -1.7356296195319148e-05, -1.1570864130212736e-05, -1.44635801627661e-06, -2.8927160325531726e-06, -5.7854320651063927e-06, -5.7854320651063986e-06, -1.3017222146489229e-05, -7.2317900813829773e-06, -1.1570864130212831e-05, -2.3141728260425395e-05, -0.00010413777717191391, -5.7854320651064376e-06, -1.4463580162765946e-06, -8.6781480976594891e-05, -1.1570864130212763e-05, -6.9425184781275168e-05, -6.9425184781275547e-05, -7.2317900813830016e-05, -6.9425184781275168e-05, -5.7854320651064376e-06, -5.7854320651064359e-06, -1.157086413021278e-05, -1.157086413021277e-05, -5.7854320651063842e-06, -5.7854320651063842e-06, -1.1570864130212867e-05, -1.4463580162766094e-06, -1.1570864130212874e-05, -1.4463580162765969e-06, -1.4463580162765821e-06, -0.00010124506113936127, -5.7854320651063842e-06, -5.7854320651063842e-06, -8.822783899287239e-05, -2.8927160325532146e-06, -0.00010413777717191375, -0.00010413777717191375, -1.157086413021276e-05, -1.4463580162765946e-06, -1.157086413021277e-05, -0.00010413777717191375, -0.00010413777717191372, -1.1570864130212763e-05, -1.1570864130212753e-05, -2.8927160325531845e-06, -2.8927160325532074e-06, -2.3141728260425412e-05, -1.1570864130212757e-05, -1.157086413021276e-05, -4.3390740488297988e-06, -2.3141728260425412e-05, -1.4463580162766327e-06, -1.4463580162766268e-06, -1.4463580162766276e-06, -1.4463580162766323e-06, -7.2317900813830576e-07, -7.2317900813830576e-07, -1.4463580162766115e-06, -1.4463580162766105e-06, -1.8079475203457816e-07, -1.8079475203457792e-07, -3.6339745158950154e-05, -3.6158950406915191e-05, -9.039737601728746e-07, -1.8079475203457813e-07, -5.42384256103715e-07, -1.8079475203457439e-06, -1.4463580162765941e-05, -3.6158950406915584e-07, -1.6633117187180642e-05, -1.807947520345762e-07, -2.8927160325532561e-06, -2.8927160325532544e-06, -1.4463580162766105e-06, -1.4463580162766115e-06, -1.4463580162765914e-05, -1.4463580162765911e-05, -1.4463580162766071e-06, -4.104040871184805e-05, -3.6158950406915839e-07, -3.6158950406915218e-05, -2.8927160325532578e-06, -1.4463580162766268e-06, -1.4463580162766331e-06, -1.8079475203457604e-07, -1.8079475203457165e-07, -1.4463580162765749e-06, -1.4463580162765774e-06, -3.6158950406915839e-07, -3.6158950406915839e-07, -1.807947520345761e-07, -1.8079475203457345e-07, -1.4463580162766071e-06, -9.039737601728727e-07, -5.4238425610371373e-07, -7.2317900813830597e-07, -7.2317900813830555e-07, -1.8079475203457813e-07, -2.7119212805185772e-06, -1.4463580162766185e-06, -1.4463580162766189e-06, -1.6271527683111553e-06, -1.4463580162766096e-06, -2.7119212805185836e-06, -3.6158950406915632e-07, -1.8079475203457887e-07, -1.4463580162766105e-06, -1.4463580162766105e-06, -1.8079475203457824e-07, -1.8079475203457771e-07, -1.4463580162766198e-06, -1.4463580162766181e-06, -3.6158950406915177e-07, -1.8079475203457708e-07, -1.4463580162766149e-06, -2.8927160325532158e-06, -1.8079475203457526e-06, -1.4463580162766225e-06, -2.8927160325532307e-06, -1.8079475203457829e-07, -1.446358016276616e-06, -3.0735107845878011e-06, -1.4463580162766215e-06, -1.4463580162766174e-06, -2.8927160325532535e-06, -5.7854320651064283e-06, -4.5198688008644124e-06, -1.4463580162766109e-06, -2.8927160325532501e-06, -2.8927160325532484e-06, -7.2317900813831656e-07, -1.4463580162766183e-06, -1.8079475203457517e-06, -1.9887422723802841e-06, -7.2317900813831677e-07, -2.8927160325532141e-06, -1.4463580162766217e-06, -1.4463580162766219e-06, -1.4463580162766223e-06, -3.6158950406915177e-07, -1.4463580162765662e-06, -1.4463580162766109e-06, -1.8079475203457914e-07, -1.4463580162766102e-06, -3.6158950406915415e-07, -1.4463580162765654e-06, -1.4463580162766217e-06, -1.4463580162766225e-06, -1.8079475203457835e-07, -2.8927160325532501e-06, -2.8927160325532518e-06, -1.8079475203457782e-07, -1.4463580162766213e-06, -1.4463580162766208e-06, -1.8079475203457798e-07, -1.4463580162765687e-06, -1.446358016276567e-06, -1.4463580162766166e-06, -1.4463580162765675e-06, -4.3390740488297166e-06, -1.446358016276631e-06, -1.4463580162766141e-06, -1.4463580162766164e-06, -1.8079475203457729e-07, -1.4463580162766149e-06, -1.4463580162766168e-06, -2.8927160325532383e-06, -7.2317900813830555e-07, -3.2543055366223088e-06, -7.2317900813830597e-07, -1.8079475203457088e-07, -3.61589504069155e-07, -2.3503317764494876e-06, -1.4463580162766225e-06, -2.892716032553215e-06, -1.5186759170904292e-05, -1.4463580162766198e-06, -1.5909938179042276e-05, -1.4463580162766183e-06, -1.4463580162766166e-06, -2.8927160325532484e-06, -1.4463580162765987e-05, -2.8927160325532501e-06, -1.4644374914800628e-05, -1.807947520345761e-07, -2.8927160325532518e-06, -2.8927160325532468e-06, -7.2317900813831508e-07, -1.5186759170904289e-05, -1.4463580162765941e-05, -1.4463580162765939e-05, -1.4463580162766031e-05, -1.8079475203457819e-07, -7.2317900813830332e-07, -1.8079475203457686e-07, -1.8079475203457067e-07, -1.8079475203457919e-07, -1.4463580162765757e-06, -1.4463580162765766e-06, -1.4463580162766217e-06, -1.4463580162766225e-06, -1.8079475203457692e-07, -1.8079475203457708e-07, -1.8079475203457686e-07, -1.4463580162766276e-06, -1.8079475203457615e-06, -3.6158950406914954e-06, -2.8927160325532141e-06, -2.8927160325532353e-06, -1.4463580162766276e-06, -4.3390740488297047e-06, 0.00073601543553275506, -1.5909938179042381e-05, -2.8927160325532336e-06, -1.3017222146489215e-05, -1.8079475203457808e-07, -1.807947520345775e-07, -4.5198688008644124e-06, -2.8927160325532383e-06, -1.4463580162766185e-06, -1.2655632642420233e-06, -7.2317900813830396e-07, -3.6158950406915621e-07, -1.3017222146489218e-05, -3.6158950406915632e-07, -7.2317900813830576e-07, -7.2317900813830576e-07, -1.3017222146489215e-05, -1.4463580162766141e-06, -1.8079475203457739e-07, -1.4463580162766183e-06, -1.8079475203457686e-07, -1.4463580162766174e-06, -1.8079475203457581e-06, -5.4238425610371352e-07, -1.4463580162766183e-06, -2.7119212805186014e-06, -1.807947520345761e-07, -1.4463580162766132e-06, -3.6158950406915839e-07, -3.6158950406915839e-07, -3.6158950406915754e-07, -1.807947520345726e-07, -1.0847685122074152e-06, -5.4238425610370356e-07, -1.4463580162766249e-06, -1.4463580162766266e-06, -2.8927160325532315e-06, -4.7006635528989583e-06, -4.1582792967951131e-06, -1.807947520345761e-07, -2.8927160325531409e-06, -1.4463580162765683e-06, -1.0847685122074425e-06, -3.6158950406915198e-07, -1.8079475203457708e-07, -1.8079475203457072e-07, -1.4463580162766031e-05, -1.4463580162765939e-05, -2.9288749829601077e-05, -1.4463580162765941e-05, -1.4463580162765987e-05, -7.2317900813831677e-07, -3.6158950406915198e-07, -1.4463580162766066e-06, -1.6271527683111553e-06, -7.2317900813831656e-07, -1.9887422723802921e-06, -1.8079475203457811e-07, -1.807947520345762e-07, -2.8927160325532158e-06, -1.4463580162766136e-06, -1.4463580162766166e-06, -1.807947520345775e-07, -1.8079475203457813e-07, -7.2317900813831126e-07, -7.2317900813831169e-07, -2.8927160325531443e-06, -1.44635801627657e-06, -1.8079475203457665e-07, -2.9288749829601382e-05, -1.4463580162766257e-06, -1.4463580162766253e-06, -1.8079475203457782e-07, -7.2317900813831169e-07, -7.2317900813831148e-07, -3.615895040691523e-07, -3.615895040691523e-07, -5.4238425610371288e-07, -1.8079475203457819e-07, -3.615895040691523e-07, -3.615895040691523e-07, -1.8079475203457708e-07, -1.8079475203457824e-07, -7.2317900813830618e-07, -2.1695370244148439e-06, -1.4463580162766132e-06, -1.8079475203457686e-07, -1.807947520345762e-07, 0.0007333035142522206, -1.8079475203457768e-07, -7.2317900813830311e-07, -3.6158950406915193e-07, -2.8927160325532222e-06, -2.8927160325532239e-06, -9.039737601728782e-07, -7.2317900813830999e-07, -3.6158950406915187e-07, -1.0847685122074228e-06, -1.5367553922938771e-05, -1.807947520345734e-07, -7.2317900813830978e-07, -7.2317900813831021e-07, -2.8927160325532256e-06, -2.8927160325532201e-06, -7.2317900813831042e-07, -7.2317900813830788e-07, -7.2317900813830745e-07, -1.8079475203457686e-07, -8.3165585935903211e-06, -1.8079475203457412e-06, -1.8079475203457835e-07, -1.4463580162766253e-06, -1.4463580162766075e-06, -1.4463580162766257e-06, -2.8927160325532201e-06, -1.4463580162766073e-06, -2.8927160325532256e-06, -1.4463580162766073e-06, -1.4463580162766073e-06, -5.5503988874613712e-05, -1.4463580162765675e-06, -3.6158950406915238e-05, -1.4463580162766149e-06, -3.6158950406915648e-07, -1.0847685122074373e-05, -2.169537024414849e-06, -9.0397376017287608e-07, -1.0847685122074319e-05, -1.8079475203457644e-07, -1.4463580162766223e-06, -1.4463580162766219e-06, -2.9288749829601382e-05, -1.446358016276613e-06, -1.4463580162766126e-06, -4.1401998215917286e-05, -5.4238425610371542e-07, -3.6158950406915252e-05, -1.4463580162766208e-06, -1.4463580162766213e-06, -1.8079475203457715e-07, -1.4463580162766215e-06, -1.4463580162766227e-06, -1.807947520345767e-07, -2.8927160325532239e-06, -2.8927160325532222e-06, -3.6158950406915754e-07, -7.2317900813831148e-07, -7.2317900813831169e-07, -1.4463580162765683e-06, -1.4463580162765692e-06, -2.9288749829601077e-05, -1.4463580162766266e-06, -1.4463580162766249e-06, -4.8814583049335143e-06, -1.7356296195318887e-05, -1.4463580162766217e-06, -1.283642739445476e-05, -2.1695370244148515e-06, -2.1695370244148515e-06, -1.4463580162766268e-06, -1.446358016276567e-06, -1.8079475203457602e-06, -1.4463580162765687e-06, -1.8079475203457556e-06, -3.796689792726068e-06, -1.4463580162766141e-06, -9.0397376017287926e-07, -4.1582792967951606e-06, -1.4463580162766134e-06, -2.169537024414849e-06, -5.4238425610370356e-07, -9.0397376017287672e-07, -3.6158950406915786e-07, -1.8079475203457819e-07, -1.8079475203457739e-07, -1.4463580162766331e-06, -2.1695370244148549e-06, -1.0847685122074131e-06, -7.2317900813830703e-07, -1.4463580162766276e-06, -1.4463580162766071e-06, -1.4463580162766073e-06, -2.8927160325532146e-06, -1.4463580162766105e-06, -7.2317900813831021e-07, -2.8927160325532141e-06, -1.4463580162766105e-06, -7.2317900813830978e-07, -1.4463580162766075e-06, -1.8079475203457639e-07, -1.4463580162766105e-06, -1.4463580162766105e-06, -2.8927160325532518e-06, -4.3390740488297132e-06, -1.4463580162766174e-06, -2.8927160325532578e-06, -2.8927160325532527e-06, -1.4463580162766105e-06, -1.4463580162766115e-06, -1.4463580162766134e-06, -1.4463580162766122e-06, -1.6271527683111527e-06, -6.1470215691755802e-06, -3.6158950406914123e-07, -1.446358016276631e-06, -1.44635801627661e-06, -1.6271527683111519e-06, -4.7006635528989371e-06, -1.4463580162766268e-06, -1.4463580162766183e-06, -1.4463580162766327e-06, -7.2317900813830999e-07, -7.2317900813831021e-07, -1.8079475203457808e-07, -1.8079475203457919e-07, -1.8079475203457835e-07, -3.615895040691451e-07, -3.073510784587796e-06, -5.4238425610371595e-06, -2.1695370244148456e-06, -1.0847685122074152e-06, -1.8079475203457729e-07, -7.2317900813830957e-07, -2.8927160325532336e-06, -4.3390740488297166e-06, -1.446358016276631e-06, -7.2317900813830957e-07, -2.892716032553237e-06, -2.8927160325532353e-06, -7.2317900813830957e-07, -2.1695370244148507e-06, -1.446358016276613e-06, -1.8079475203457887e-07, -3.6158950406914134e-07, -7.2317900813830957e-07, -7.2317900813831042e-07, -1.6271527683111534e-06, -9.0397376017287301e-07, -1.4463580162766251e-06, -2.8927160325532158e-06, -1.3017222146489298e-05, -7.2317900813831508e-07, -1.8079475203457697e-07, -1.0847685122074346e-05, -1.4463580162766164e-06, -8.6781480976592435e-06, -8.6781480976594027e-06, -9.0397376017288231e-06, -8.6781480976592435e-06, -7.2317900813831508e-07, -7.2317900813831508e-07, -1.4463580162766183e-06, -1.4463580162766174e-06, -7.2317900813830851e-07, -7.2317900813830851e-07, -1.4463580162765654e-06, -1.8079475203457877e-07, -1.4463580162765662e-06, -1.8079475203457723e-07, -1.80794752034578e-07, -1.2655632642420164e-05, -7.2317900813830851e-07, -7.2317900813830851e-07, -1.1028479874108991e-05, -3.6158950406915706e-07, -1.3017222146489215e-05, -1.3017222146489218e-05, -1.446358016276616e-06, -1.8079475203457694e-07, -1.4463580162766172e-06, -1.3017222146489215e-05, -1.3017222146489215e-05, -1.4463580162766166e-06, -1.4463580162766149e-06, -3.615895040691533e-07, -3.6158950406915616e-07, -2.8927160325532175e-06, -1.4463580162766158e-06, -1.4463580162766158e-06, -5.4238425610371415e-07, -2.8927160325532175e-06, -4.242650181077989e-05, -4.2426501810779931e-05, -4.2426501810779944e-05, -4.242650181077989e-05, -2.121325090539005e-05, -2.121325090539005e-05, -4.24265018107801e-05, -4.2426501810780093e-05, -5.3033127263474956e-06, -5.3033127263474973e-06, -0.0010659658579958444, -0.001060662545269501, -2.6516563631737587e-05, -5.3033127263474956e-06, -1.5909938179042256e-05, -5.3033127263475012e-05, -0.00042426501810779939, -1.0606625452694995e-05, -0.00048790477082397084, -5.3033127263475142e-06, -8.4853003621559862e-05, -8.4853003621559835e-05, -4.2426501810780093e-05, -4.24265018107801e-05, -0.00042426501810779939, -0.00042426501810779939, -4.2426501810779897e-05, -0.0012038519888808864, -1.0606625452694971e-05, -0.0010606625452695023, -8.4853003621559889e-05, -4.2426501810779938e-05, -4.2426501810779897e-05, -5.3033127263475142e-06, -5.3033127263474947e-06, -4.2426501810779965e-05, -4.2426501810779978e-05, -1.0606625452694971e-05, -1.0606625452694969e-05, -5.3033127263475142e-06, -5.3033127263475032e-06, -4.2426501810780046e-05, -2.6516563631737519e-05, -1.5909938179042361e-05, -2.121325090539005e-05, -2.1213250905390047e-05, -5.3033127263474956e-06, -7.9549690895212738e-05, -4.2426501810780019e-05, -4.2426501810780026e-05, -4.7729814537127847e-05, -4.2426501810780093e-05, -7.9549690895212589e-05, -1.0606625452694989e-05, -5.3033127263474888e-06, -4.24265018107801e-05, -4.24265018107801e-05, -5.3033127263474947e-06, -5.3033127263475007e-06, -4.2426501810780026e-05, -4.2426501810780012e-05, -1.0606625452694959e-05, -5.3033127263475066e-06, -4.2426501810780066e-05, -8.4853003621559929e-05, -5.3033127263475141e-05, -4.2426501810779992e-05, -8.4853003621560051e-05, -5.3033127263474939e-06, -4.2426501810780019e-05, -9.0156316347907772e-05, -4.2426501810779978e-05, -4.2426501810780026e-05, -8.4853003621559916e-05, -0.00016970600724311962, -0.00013258281815868692, -4.24265018107801e-05, -8.4853003621559916e-05, -8.4853003621559889e-05, -2.1213250905389945e-05, -4.2426501810780033e-05, -5.3033127263475073e-05, -5.8336439989822861e-05, -2.1213250905389945e-05, -8.4853003621559672e-05, -4.2426501810780005e-05, -4.2426501810779985e-05, -4.2426501810779985e-05, -1.0606625452694957e-05, -4.2426501810779917e-05, -4.24265018107801e-05, -5.3033127263474863e-06, -4.24265018107801e-05, -1.0606625452694989e-05, -4.2426501810779911e-05, -4.2426501810779978e-05, -4.2426501810779992e-05, -5.3033127263474939e-06, -8.4853003621559889e-05, -8.4853003621559889e-05, -5.303312726347499e-06, -4.2426501810779999e-05, -4.2426501810779999e-05, -5.3033127263474947e-06, -4.242650181077989e-05, -4.2426501810779877e-05, -4.2426501810780026e-05, -4.2426501810779883e-05, -0.00012727950543233818, -4.2426501810779911e-05, -4.242650181078006e-05, -4.2426501810780019e-05, -5.3033127263475049e-06, -4.2426501810780073e-05, -4.2426501810780033e-05, -8.4853003621560024e-05, -2.1213250905390047e-05, -9.5459629074256278e-05, -2.121325090539005e-05, -5.303312726347488e-06, -1.0606625452695003e-05, -6.8943065442517569e-05, -4.2426501810779992e-05, -8.4853003621559889e-05, -0.00044547826901319184, -4.2426501810780026e-05, -0.00046669151991857698, -4.2426501810780039e-05, -4.2426501810780026e-05, -8.4853003621559889e-05, -0.00042426501810780031, -8.4853003621559916e-05, -0.00042956833083414742, -5.3033127263475142e-06, -8.4853003621559943e-05, -8.4853003621559889e-05, -2.1213250905389959e-05, -0.00044547826901319184, -0.00042426501810779939, -0.00042426501810780085, -0.00042426501810780107, -5.3033127263474947e-06, -2.1213250905390192e-05, -5.3033127263475075e-06, -5.3033127263474905e-06, -5.3033127263474863e-06, -4.2426501810779972e-05, -4.2426501810779978e-05, -4.2426501810779985e-05, -4.2426501810779992e-05, -5.3033127263475075e-06, -5.3033127263475058e-06, -5.3033127263475091e-06, -4.2426501810779944e-05, -5.3033127263474951e-05, -0.00010606625452695017, -8.4853003621559794e-05, -8.4853003621560119e-05, -4.2426501810779938e-05, -0.0001272795054323391, -1.5909938179042381e-05, 0.021139004527221193, -8.4853003621560092e-05, -0.00038183851629702321, -5.3033127263474964e-06, -5.3033127263475015e-06, -0.00013258281815868751, -8.4853003621560024e-05, -4.2426501810780019e-05, -3.7123189084432163e-05, -2.1213250905390142e-05, -1.0606625452694988e-05, -0.00038183851629702413, -1.0606625452694989e-05, -2.121325090539005e-05, -2.121325090539005e-05, -0.00038183851629702489, -4.2426501810780087e-05, -5.3033127263475041e-06, -4.2426501810780039e-05, -5.3033127263475083e-06, -4.2426501810780026e-05, -5.3033127263475147e-05, -1.5909938179042367e-05, -4.2426501810780033e-05, -7.9549690895212413e-05, -5.3033127263475142e-06, -4.242650181078008e-05, -1.0606625452694971e-05, -1.0606625452694969e-05, -1.0606625452694979e-05, -5.303312726347499e-06, -3.1819876358084863e-05, -1.5909938179042398e-05, -4.2426501810779829e-05, -4.2426501810779843e-05, -8.485300362155997e-05, -0.00013788613088503522, -0.00012197619270599264, -5.3033127263475142e-06, -8.4853003621559848e-05, -4.2426501810779938e-05, -3.1819876358084836e-05, -1.0606625452695017e-05, -5.3033127263475058e-06, -5.3033127263474905e-06, -0.00042426501810780107, -0.00042426501810780085, -0.00085913666166829094, -0.00042426501810780091, -0.00042426501810780031, -2.1213250905389945e-05, -1.0606625452695008e-05, -4.2426501810780134e-05, -4.7729814537127834e-05, -2.1213250905389945e-05, -5.8336439989822386e-05, -5.303312726347482e-06, -5.3033127263475142e-06, -8.4853003621560106e-05, -4.2426501810780087e-05, -4.242650181078006e-05, -5.3033127263475015e-06, -5.3033127263474956e-06, -2.1213250905389989e-05, -2.1213250905389993e-05, -8.4853003621559875e-05, -4.2426501810779944e-05, -5.3033127263475108e-06, -0.00085913666166829398, -4.2426501810779843e-05, -4.2426501810779843e-05, -5.303312726347499e-06, -2.1213250905389993e-05, -2.1213250905389993e-05, -1.0606625452695028e-05, -1.0606625452695028e-05, -1.5909938179042381e-05, -5.3033127263474947e-06, -1.0606625452695028e-05, -1.0606625452695028e-05, -5.3033127263475066e-06, -5.3033127263474947e-06, -2.1213250905390118e-05, -6.3639752716169795e-05, -4.242650181078008e-05, -5.3033127263475083e-06, -5.3033127263475142e-06, -9.5459629074255315e-05, -5.3033127263475007e-06, -2.1213250905390094e-05, -1.0606625452694976e-05, -8.4853003621560173e-05, -8.4853003621560201e-05, -2.6516563631737516e-05, -2.1213250905389989e-05, -1.0606625452694956e-05, -3.1819876358084918e-05, -0.00045078158173953738, -5.3033127263475032e-06, -2.1213250905389989e-05, -2.1213250905389989e-05, -8.4853003621560201e-05, -8.4853003621560173e-05, -2.1213250905390006e-05, -2.1213250905390033e-05, -2.1213250905390033e-05, -5.3033127263475083e-06, -0.00024395238541198566, -5.3033127263475052e-05, -5.3033127263474939e-06, -4.2426501810779843e-05, -4.2426501810779877e-05, -4.2426501810779843e-05, -8.4853003621560173e-05, -4.242650181078031e-05, -8.4853003621560201e-05, -4.2426501810779877e-05, -4.2426501810779877e-05, -0.0016281170069886786, -4.2426501810779938e-05, -0.0010606625452695049, -4.2426501810780073e-05, -1.0606625452694989e-05, -0.00031819876358085074, -6.3639752716169632e-05, -2.6516563631737553e-05, -0.00031819876358085063, -5.3033127263475125e-06, -4.2426501810779985e-05, -4.2426501810779985e-05, -0.00085913666166829398, -4.2426501810780087e-05, -4.2426501810780073e-05, -0.0012144586143335817, -1.5909938179042317e-05, -0.001060662545269504, -4.2426501810779999e-05, -4.2426501810779999e-05, -5.3033127263475058e-06, -4.2426501810779978e-05, -4.2426501810779992e-05, -5.3033127263475091e-06, -8.4853003621560201e-05, -8.4853003621560173e-05, -1.0606625452694979e-05, -2.1213250905389993e-05, -2.1213250905389993e-05, -4.2426501810779938e-05, -4.2426501810779944e-05, -0.00085913666166829094, -4.2426501810779843e-05, -4.2426501810779829e-05, -0.00014318944361138276, -0.00050911802172935684, -4.2426501810780005e-05, -0.00037653520357067215, -6.3639752716169293e-05, -6.3639752716169293e-05, -4.2426501810779931e-05, -4.2426501810779877e-05, -5.3033127263475046e-05, -4.242650181077989e-05, -5.3033127263475012e-05, -0.00011136956725329724, -4.2426501810780066e-05, -2.6516563631737499e-05, -0.00012197619270599267, -4.2426501810780087e-05, -6.3639752716169646e-05, -1.5909938179042398e-05, -2.6516563631737564e-05, -1.0606625452694976e-05, -5.3033127263474947e-06, -5.3033127263475032e-06, -4.2426501810779897e-05, -6.3639752716169483e-05, -3.1819876358084843e-05, -2.121325090539004e-05, -4.2426501810779938e-05, -4.2426501810779897e-05, -4.2426501810779877e-05, -8.4853003621560553e-05, -4.2426501810780093e-05, -2.1213250905389989e-05, -8.4853003621560214e-05, -4.24265018107801e-05, -2.1213250905389989e-05, -4.2426501810779877e-05, -5.3033127263475125e-06, -4.24265018107801e-05, -4.24265018107801e-05, -8.4853003621559889e-05, -0.00012727950543233886, -4.2426501810780033e-05, -8.4853003621559889e-05, -8.4853003621559835e-05, -4.2426501810780093e-05, -4.24265018107801e-05, -4.2426501810780087e-05, -4.2426501810780073e-05, -4.7729814537128274e-05, -0.00018031263269581627, -1.0606625452694939e-05, -4.2426501810779911e-05, -4.24265018107801e-05, -4.7729814537128247e-05, -0.0001378861308850359, -4.2426501810779931e-05, -4.2426501810780039e-05, -4.242650181077989e-05, -2.1213250905389989e-05, -2.1213250905389989e-05, -5.3033127263474964e-06, -5.3033127263474863e-06, -5.3033127263474939e-06, -1.0606625452694998e-05, -9.0156316347906633e-05, -0.00015909938179042545, -6.36397527161697e-05, -3.1819876358084863e-05, -5.3033127263475049e-06, -2.1213250905390003e-05, -8.4853003621560092e-05, 0.0038010288667748898, -4.2426501810779911e-05, -2.1213250905390003e-05, -8.4853003621560119e-05, -8.4853003621560119e-05, -2.1213250905390003e-05, -6.3639752716169564e-05, -4.2426501810780087e-05, -5.3033127263474888e-06, -1.0606625452694951e-05, -2.1213250905390003e-05, -2.1213250905390006e-05, -4.772981453712824e-05, -2.6516563631737523e-05, -4.2426501810779965e-05, -8.4853003621559902e-05, -0.00038183851629702039, -2.1213250905389959e-05, -5.3033127263475075e-06, -0.00031819876358085074, -4.2426501810780019e-05, -0.00025455901086467782, -0.00025455901086467847, -0.00026516563631737416, -0.00025455901086467782, -2.1213250905389959e-05, -2.1213250905389959e-05, -4.2426501810780039e-05, -4.2426501810780026e-05, -2.1213250905390026e-05, -2.1213250905390026e-05, -4.2426501810779911e-05, -5.3033127263474897e-06, -4.2426501810779917e-05, -5.3033127263475058e-06, -5.3033127263474947e-06, -0.0003712318908443278, -2.1213250905390026e-05, -2.1213250905390026e-05, -0.00032350207630719779, -1.0606625452694954e-05, -0.00038183851629702489, -0.00038183851629702413, -4.2426501810780019e-05, -5.3033127263475075e-06, -4.2426501810780033e-05, -0.00038183851629702321, 0.017295549158635525, -4.242650181078006e-05, -4.2426501810780046e-05, -1.060662545269502e-05, -1.0606625452694993e-05, -8.4853003621560241e-05, -4.2426501810780053e-05, -4.242650181078006e-05, -1.5909938179042357e-05, -8.4853003621560241e-05, -7.7139094201417779e-06, -7.7139094201417779e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -0.00019381197418106341, -0.00019284773550354387, -4.821193387588629e-06, -9.6423867751772245e-07, -2.8927160325531887e-06, -9.6423867751773172e-06, -7.7139094201418768e-05, -1.9284773550354449e-06, -8.8709958331631018e-05, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283556e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201418768e-05, -7.7139094201418768e-05, -7.7139094201417779e-06, -0.00021888217979652269, -1.9284773550354445e-06, -0.00019284773550354645, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417779e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -7.7139094201417796e-06, -7.7139094201417813e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -7.7139094201417745e-06, -4.821193387588629e-06, -2.8927160325531913e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -1.4463580162766021e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -8.6781480976594569e-06, -7.7139094201417813e-06, -1.4463580162765934e-05, -1.9284773550354449e-06, -9.6423867751772224e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -1.5427818840283559e-05, -9.6423867751772986e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -9.6423867751772245e-07, -7.7139094201417813e-06, -1.6392057517801209e-05, -7.7139094201417796e-06, -7.7139094201417813e-06, -1.5427818840283559e-05, -3.0855637680567105e-05, -2.4105966937943045e-05, -7.7139094201417813e-06, -1.5427818840283559e-05, -1.5427818840283556e-05, -3.8569547100708889e-06, -7.7139094201417813e-06, -9.642386775177302e-06, -1.0606625452694915e-05, -3.8569547100708889e-06, -1.5427818840283552e-05, -7.7139094201417813e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -9.6423867751772224e-07, -7.7139094201417813e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -1.5427818840283556e-05, -1.5427818840283556e-05, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417796e-06, -9.6423867751772287e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -7.7139094201417813e-06, -7.7139094201417779e-06, -2.314172826042551e-05, -7.7139094201417779e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.5427818840283563e-05, -3.8569547100708906e-06, -1.7356296195318948e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.2535102807730509e-05, -7.7139094201417796e-06, -1.5427818840283559e-05, -8.0996048911489315e-05, -7.7139094201417813e-06, -8.4853003621559374e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.5427818840283556e-05, -7.7139094201418348e-05, -1.5427818840283559e-05, -7.8103332878936283e-05, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283556e-05, -3.8569547100708889e-06, -8.0996048911489288e-05, -7.7139094201418768e-05, -7.713909420141828e-05, -7.7139094201418484e-05, -9.6423867751772245e-07, -3.8569547100708881e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -7.7139094201417796e-06, -9.6423867751773325e-06, -1.9284773550354618e-05, -1.5427818840283559e-05, -1.5427818840283566e-05, -7.7139094201417796e-06, -2.3141728260425313e-05, -2.8927160325532336e-06, -8.4853003621560092e-05, 0.003912880553366937, -6.9425184781276076e-05, -9.6423867751772245e-07, -9.6423867751772266e-07, -2.4105966937943123e-05, -1.5427818840283563e-05, -7.7139094201417813e-06, -6.7496707426240836e-06, -3.8569547100708889e-06, -1.9284773550354449e-06, -6.9425184781276076e-05, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -6.9425184781276048e-05, -7.7139094201417813e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -9.6423867751772935e-06, -2.8927160325531913e-06, -7.7139094201417813e-06, -1.4463580162765928e-05, -9.6423867751772266e-07, -7.7139094201417813e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -9.6423867751772266e-07, -5.7854320651064139e-06, -2.8927160325532273e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -2.5070205615460949e-05, -2.2177489582907768e-05, -9.6423867751772266e-07, -1.5427818840283559e-05, -7.7139094201417796e-06, -5.7854320651064266e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.7139094201418484e-05, -7.713909420141828e-05, -0.00015620666575787305, -7.713909420141828e-05, -7.7139094201418348e-05, -3.8569547100708889e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -8.67814809765944e-06, -3.8569547100708889e-06, -1.0606625452694971e-05, -9.6423867751772245e-07, -9.6423867751772266e-07, -1.5427818840283563e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.5427818840283559e-05, -7.7139094201417796e-06, -9.6423867751772266e-07, -0.0001562066657578727, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.8927160325531913e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -3.8569547100708889e-06, -1.1570864130212772e-05, -7.7139094201417813e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.7356296195318985e-05, -9.6423867751772266e-07, -3.8569547100708873e-06, -1.9284773550354445e-06, -1.5427818840283566e-05, -1.5427818840283566e-05, -4.8211933875886527e-06, -3.8569547100708906e-06, -1.9284773550354445e-06, -5.7854320651063809e-06, -8.1960287589006667e-05, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.5427818840283566e-05, -1.5427818840283566e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -4.4354979165815353e-05, -9.6423867751772579e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -1.5427818840283566e-05, -7.7139094201417762e-06, -1.5427818840283566e-05, -7.7139094201417762e-06, -7.7139094201417762e-06, -0.00029602127399794422, -7.7139094201417796e-06, -0.00019284773550354506, -7.7139094201417813e-06, -1.9284773550354449e-06, -5.7854320651063331e-05, -1.1570864130212768e-05, -4.8211933875886442e-06, -5.7854320651063988e-05, -9.6423867751772266e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.0001562066657578727, -7.7139094201417813e-06, -7.7139094201417813e-06, -0.00022081065715155856, -2.8927160325531896e-06, -0.00019284773550354525, -7.7139094201417796e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -1.5427818840283566e-05, -1.5427818840283566e-05, -1.9284773550354445e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00015620666575787305, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.603444429297845e-05, -9.2566913041702148e-05, -7.7139094201417813e-06, -6.8460946103757965e-05, -1.1570864130212758e-05, -1.1570864130212758e-05, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751773393e-06, -7.7139094201417779e-06, -9.6423867751772579e-06, -2.0249012227872288e-05, -7.7139094201417813e-06, -4.8211933875886629e-06, -2.217748958290767e-05, -7.7139094201417813e-06, -1.1570864130212768e-05, -2.8927160325532281e-06, -4.8211933875886425e-06, -1.9284773550354445e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -7.7139094201417779e-06, -1.1570864130212763e-05, -5.785432065106424e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -1.5427818840283556e-05, -7.7139094201417813e-06, -3.8569547100708906e-06, -1.5427818840283556e-05, -7.7139094201417813e-06, -3.8569547100708906e-06, -7.7139094201417762e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.5427818840283556e-05, -2.3141728260425523e-05, -7.7139094201417813e-06, -1.5427818840283559e-05, -1.5427818840283556e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -8.6781480976594993e-06, -3.2784115035602629e-05, -1.928477355035444e-06, -7.7139094201417779e-06, -7.7139094201417813e-06, -8.6781480976594993e-06, -2.507020561546097e-05, -7.7139094201417779e-06, -7.7139094201417813e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.6392057517801118e-05, -2.8927160325531692e-05, -1.1570864130212768e-05, -5.7854320651064139e-06, -9.6423867751772266e-07, -3.8569547100708906e-06, 0.003912880553366937, -2.3141728260425286e-05, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.5427818840283566e-05, -1.5427818840283566e-05, -3.8569547100708906e-06, -1.1570864130212767e-05, -7.7139094201417813e-06, -9.6423867751772224e-07, -1.9284773550354445e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -8.6781480976594857e-06, -4.8211933875886561e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -6.9425184781275967e-05, -3.8569547100708889e-06, -9.6423867751772266e-07, -5.7854320651063331e-05, -7.7139094201417813e-06, -4.6283456520850518e-05, -4.6283456520850661e-05, -4.8211933875885873e-05, -4.6283456520850518e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772287e-07, -6.7496707426241005e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -5.8818559328581178e-05, -1.9284773550354449e-06, -6.9425184781276048e-05, -6.9425184781276076e-05, -7.7139094201417813e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -6.9425184781276076e-05, -6.942518478127594e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.5427818840283563e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.8927160325531908e-06, -1.5427818840283563e-05, -3.4712592390637611e-05, -3.471259239063776e-05, -3.4712592390637719e-05, -3.4712592390637624e-05, -1.735629619531908e-05, -1.7356296195319073e-05, -3.471259239063816e-05, -3.4712592390638173e-05, -4.3390740488297234e-06, -4.3390740488297285e-06, -0.00087215388381478782, -0.0008678148097659681, -2.1695370244148747e-05, -4.3390740488297234e-06, -1.3017222146489188e-05, -4.3390740488297236e-05, -0.00034712592390637702, -8.6781480976594569e-06, -0.00039919481249234235, -4.3390740488297734e-06, -6.9425184781275411e-05, -6.9425184781275493e-05, -3.4712592390638187e-05, -3.4712592390638133e-05, -0.00034712592390637691, -0.00034712592390637702, -3.4712592390638404e-05, -0.00098496980908435489, -8.6781480976593926e-06, -0.0008678148097659565, -6.9425184781275357e-05, -3.4712592390637746e-05, -3.4712592390637584e-05, -4.3390740488297751e-06, -4.3390740488297251e-06, -3.4712592390637895e-05, -3.4712592390637841e-05, -8.6781480976593926e-06, -8.6781480976593959e-06, -4.3390740488297751e-06, -4.3390740488297463e-06, -3.4712592390638214e-05, -2.1695370244148706e-05, -1.3017222146489222e-05, -1.7356296195319066e-05, -1.735629619531908e-05, -4.3390740488297234e-06, -6.508611073244648e-05, -3.471259239063797e-05, -3.4712592390637956e-05, -3.9051666439468263e-05, -3.47125923906382e-05, -6.5086110732446643e-05, -8.6781480976594468e-06, -4.3390740488297047e-06, -3.4712592390638187e-05, -3.471259239063816e-05, -4.3390740488297217e-06, -4.3390740488297352e-06, -3.4712592390637943e-05, -3.4712592390637984e-05, -8.6781480976596213e-06, -4.339074048829753e-06, -3.4712592390638078e-05, -6.9425184781275994e-05, -4.3390740488297324e-05, -3.4712592390637868e-05, -6.9425184781276265e-05, -4.33907404882972e-06, -3.4712592390637895e-05, -7.3764258830105386e-05, -3.4712592390637895e-05, -3.4712592390638024e-05, -6.9425184781275466e-05, -0.00013885036956255421, -0.00010847685122074416, -3.4712592390638146e-05, -6.9425184781275574e-05, -6.9425184781275655e-05, -1.7356296195318792e-05, -3.4712592390637984e-05, -4.3390740488297317e-05, -4.7729814537127868e-05, -1.7356296195318792e-05, -6.9425184781276997e-05, -3.4712592390637882e-05, -3.4712592390637882e-05, -3.4712592390637855e-05, -8.6781480976596179e-06, -3.4712592390637679e-05, -3.4712592390638146e-05, -4.3390740488296963e-06, -3.4712592390638133e-05, -8.6781480976595196e-06, -3.4712592390637692e-05, -3.4712592390637916e-05, -3.4712592390637855e-05, -4.3390740488297183e-06, -6.9425184781275601e-05, -6.9425184781275547e-05, -4.3390740488297319e-06, -3.4712592390637895e-05, -3.4712592390637916e-05, -4.3390740488297285e-06, -3.4712592390637597e-05, -3.4712592390637652e-05, -3.4712592390638038e-05, -3.4712592390637638e-05, -0.0001041377771719134, -3.4712592390637638e-05, -3.4712592390638106e-05, -3.4712592390637916e-05, -4.3390740488297479e-06, -3.4712592390638051e-05, -3.4712592390637929e-05, -6.942518478127594e-05, -1.735629619531908e-05, -7.8103332878936757e-05, -1.7356296195319066e-05, -4.3390740488297047e-06, -8.6781480976594857e-06, -5.640796263478737e-05, -3.4712592390637855e-05, -6.9425184781276807e-05, -0.00036448222010170087, -3.4712592390637943e-05, -0.0003818385162970172, -3.4712592390637997e-05, -3.4712592390638038e-05, -6.9425184781275655e-05, -0.00034712592390637881, -6.9425184781275574e-05, -0.000351464997955215, -4.3390740488297742e-06, -6.942518478127552e-05, -6.942518478127571e-05, -1.7356296195318826e-05, -0.00036448222010170093, -0.00034712592390637702, -0.00034712592390637891, -0.00034712592390637859, -4.3390740488297217e-06, -1.7356296195319148e-05, -4.3390740488297581e-06, -4.3390740488297115e-06, -4.339074048829698e-06, -3.4712592390637882e-05, -3.4712592390637868e-05, -3.4712592390637882e-05, -3.4712592390637868e-05, -4.3390740488297564e-06, -4.339074048829753e-06, -4.3390740488297564e-06, -3.4712592390637719e-05, -4.3390740488297154e-05, -8.6781480976594607e-05, -6.9425184781276889e-05, -6.9425184781275994e-05, -3.4712592390637733e-05, -0.00010413777717191375, -1.3017222146489215e-05, -0.00038183851629702321, -6.9425184781276076e-05, 0.0173649743434168, -4.3390740488297251e-06, -4.3390740488297429e-06, -0.00010847685122074454, -6.942518478127594e-05, -3.471259239063797e-05, -3.0373518341808557e-05, -1.7356296195319134e-05, -8.6781480976594502e-06, -0.00031241333151574513, -8.6781480976594468e-06, -1.7356296195319073e-05, -1.735629619531908e-05, -0.00031241333151574546, -3.4712592390638092e-05, -4.3390740488297446e-06, -3.471259239063797e-05, -4.3390740488297564e-06, -3.4712592390638024e-05, -4.3390740488297303e-05, -1.3017222146489207e-05, -3.4712592390637984e-05, -6.5086110732446832e-05, -4.3390740488297767e-06, -3.4712592390638106e-05, -8.6781480976593926e-06, -8.6781480976593959e-06, -8.6781480976594129e-06, -4.3390740488297352e-06, -2.6034444292978471e-05, -1.301722214648922e-05, -3.4712592390637882e-05, -3.4712592390637828e-05, -6.9425184781276211e-05, -0.00011281592526957417, -9.9798703123085616e-05, -4.3390740488297767e-06, -6.9425184781276807e-05, -3.4712592390637787e-05, -2.6034444292978471e-05, -8.6781480976595637e-06, -4.339074048829753e-06, -4.3390740488297132e-06, -0.00034712592390637859, -0.00034712592390637891, -0.00070292999591042773, -0.00034712592390637891, -0.00034712592390637881, -1.7356296195318792e-05, -8.6781480976595772e-06, -3.4712592390638417e-05, -3.905166643946825e-05, -1.7356296195318792e-05, -4.7729814537127407e-05, -4.3390740488297335e-06, -4.3390740488297734e-06, -6.9425184781276618e-05, -3.4712592390638092e-05, -3.4712592390638024e-05, -4.3390740488297412e-06, -4.3390740488297234e-06, -1.7356296195318934e-05, -1.7356296195318921e-05, -6.9425184781276834e-05, -3.471259239063776e-05, -4.3390740488297632e-06, -0.00070292999591042718, -3.4712592390637841e-05, -3.4712592390637855e-05, -4.3390740488297319e-06, -1.7356296195318921e-05, -1.7356296195318927e-05, -8.6781480976595501e-06, -8.6781480976595467e-06, -1.3017222146489222e-05, -4.3390740488297217e-06, -8.6781480976595467e-06, -8.6781480976595501e-06, -4.3390740488297513e-06, -4.3390740488297217e-06, -1.7356296195319127e-05, -5.2068888585956996e-05, -3.4712592390638106e-05, -4.3390740488297581e-06, -4.3390740488297734e-06, -7.810333287893673e-05, -4.3390740488297352e-06, -1.7356296195319236e-05, -8.6781480976595264e-06, -6.9425184781276347e-05, -6.9425184781276292e-05, -2.1695370244148747e-05, -1.73562961953189e-05, -8.6781480976596179e-06, -2.6034444292978518e-05, -0.00036882129415053051, -4.3390740488297463e-06, -1.7356296195318894e-05, -1.7356296195318907e-05, -6.9425184781276211e-05, -6.9425184781276428e-05, -1.7356296195318958e-05, -1.7356296195319026e-05, -1.7356296195319026e-05, -4.3390740488297581e-06, -0.00019959740624616993, -4.3390740488297398e-05, -4.3390740488297183e-06, -3.4712592390637855e-05, -3.4712592390638417e-05, -3.4712592390637841e-05, -6.9425184781276428e-05, -3.4712592390638295e-05, -6.9425184781276211e-05, -3.4712592390638417e-05, -3.4712592390638417e-05, -0.0013320957329907345, -3.4712592390637801e-05, -0.00086781480976596246, -3.4712592390638051e-05, -8.67814809765944e-06, -0.00026034444292978885, -5.2068888585956914e-05, -2.1695370244148679e-05, -0.00026034444292978614, -4.3390740488297683e-06, -3.4712592390637855e-05, -3.4712592390637882e-05, -0.00070292999591042718, -3.4712592390638038e-05, -3.4712592390638024e-05, -0.0009936479571820121, -1.3017222146489195e-05, -0.00086781480976596225, -3.4712592390637916e-05, -3.4712592390637895e-05, -4.3390740488297496e-06, -3.4712592390637895e-05, -3.4712592390637841e-05, -4.3390740488297615e-06, -6.9425184781276292e-05, -6.9425184781276347e-05, -8.6781480976594129e-06, -1.7356296195318927e-05, -1.7356296195318921e-05, -3.4712592390637787e-05, -3.4712592390637773e-05, -0.00070292999591042773, -3.4712592390637828e-05, -3.4712592390637882e-05, -0.00011715499931840388, -0.0004165511086876551, -3.4712592390637882e-05, -0.00030807425746691582, -5.2068888585956779e-05, -5.2068888585956806e-05, -3.471259239063776e-05, -3.4712592390637652e-05, -4.3390740488297168e-05, -3.4712592390637597e-05, -4.3390740488297215e-05, -9.1120555025425246e-05, -3.4712592390638092e-05, -2.1695370244148611e-05, -9.9798703123085182e-05, -3.4712592390638051e-05, -5.2068888585956914e-05, -1.3017222146489222e-05, -2.1695370244148679e-05, -8.6781480976594095e-06, -4.3390740488297217e-06, -4.3390740488297446e-06, -3.4712592390637584e-05, -5.206888858595686e-05, -2.6034444292978471e-05, -1.7356296195319046e-05, -3.4712592390637733e-05, -3.4712592390638404e-05, -3.4712592390638417e-05, -6.9425184781276645e-05, -3.4712592390638187e-05, -1.7356296195318907e-05, -6.9425184781276401e-05, -3.4712592390638173e-05, -1.7356296195318894e-05, -3.4712592390638417e-05, -4.3390740488297683e-06, -3.471259239063816e-05, -3.4712592390638187e-05, -6.9425184781275547e-05, -0.00010413777717191367, -3.4712592390637997e-05, -6.9425184781275357e-05, -6.9425184781275547e-05, -3.4712592390638173e-05, -3.471259239063816e-05, -3.4712592390638051e-05, -3.4712592390638011e-05, -3.9051666439468528e-05, -0.00014752851766021053, -8.6781480976596314e-06, -3.4712592390637638e-05, -3.4712592390638187e-05, -3.9051666439468534e-05, -0.00011281592526957507, -3.471259239063776e-05, -3.471259239063797e-05, -3.4712592390637611e-05, -1.73562961953189e-05, -1.73562961953189e-05, -4.3390740488297251e-06, -4.339074048829698e-06, -4.33907404882972e-06, -8.6781480976594705e-06, -7.3764258830106538e-05, -0.00013017222146489307, -5.2068888585956941e-05, -2.6034444292978471e-05, -4.3390740488297463e-06, -1.7356296195318927e-05, -6.9425184781276076e-05, -0.00010413777717191356, -3.4712592390637652e-05, -1.7356296195318921e-05, -6.942518478127594e-05, -6.9425184781275994e-05, -1.7356296195318921e-05, -5.2068888585956901e-05, -3.4712592390638038e-05, -4.3390740488297047e-06, -8.6781480976596246e-06, -1.7356296195318927e-05, -1.7356296195318958e-05, -3.9051666439468446e-05, -2.1695370244148645e-05, -3.4712592390637801e-05, -6.9425184781276021e-05, -0.00031241333151574513, -1.7356296195318826e-05, -4.3390740488297564e-06, -0.00026034444292978841, -3.4712592390637916e-05, -0.0002082755543438276, -0.00020827555434382766, -0.00021695370244149037, -0.0002082755543438276, -1.7356296195318833e-05, -1.7356296195318833e-05, -3.471259239063797e-05, -3.4712592390638024e-05, -1.7356296195319005e-05, -1.7356296195319012e-05, -3.4712592390637692e-05, -4.3390740488297064e-06, -3.4712592390637679e-05, -4.3390740488297479e-06, -4.3390740488297285e-06, -0.00030373518341808006, -1.7356296195319012e-05, -1.7356296195319005e-05, -0.00026468351697861545, -8.6781480976594434e-06, -0.00031241333151574546, -0.00031241333151574513, -3.4712592390637895e-05, -4.3390740488297479e-06, -3.4712592390637943e-05, 0.0173649743434168, -0.0003124133315157447, -3.4712592390638024e-05, -3.4712592390638078e-05, -8.678148097659523e-06, -8.6781480976594502e-06, -6.9425184781276374e-05, -3.4712592390638065e-05, -3.4712592390638038e-05, -1.3017222146489208e-05, -6.9425184781276374e-05, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -1.2113248386316517e-05, -1.2052983468971551e-05, -3.0132458672428995e-07, -6.0264917344857653e-08, -1.807947520345753e-07, -6.026491734485837e-07, -4.8211933875886832e-06, -1.2052983468971531e-07, -5.5443723957269082e-06, -6.0264917344857679e-08, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886832e-06, -4.8211933875886815e-06, -4.8211933875886122e-07, -1.3680136237282611e-05, -1.2052983468971528e-07, -1.2052983468971712e-05, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886112e-07, -3.0132458672428995e-07, -1.8079475203457541e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857653e-08, -9.0397376017288032e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610371479e-07, -4.8211933875886133e-07, -9.0397376017287714e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -9.6423867751772266e-07, -6.0264917344858233e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -1.0245035948625737e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.9284773550354445e-06, -1.5066229336214477e-06, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -4.8211933875886133e-07, -6.0264917344858254e-07, -6.6291409079343367e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.026491734485764e-08, -4.8211933875886133e-07, -1.2052983468971533e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.4463580162766028e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.084768512207427e-06, -2.4105966937943072e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -7.8344392548315742e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -5.0622530569680805e-06, -4.8211933875886133e-07, -5.3033127263474541e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -4.8211933875886518e-06, -9.6423867751772245e-07, -4.8814583049335228e-06, -6.0264917344857653e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -5.0622530569680788e-06, -4.8211933875886832e-06, -4.8211933875886485e-06, -4.8211933875886612e-06, -6.0264917344857666e-08, -2.4105966937943061e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.026491734485764e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886133e-07, -6.0264917344858032e-07, -1.2052983468971661e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -1.4463580162766037e-06, -1.8079475203457808e-07, -5.3033127263474964e-06, -9.6423867751772245e-07, -4.3390740488297251e-06, 0.00024545900834560644, -6.0264917344857679e-08, -1.506622933621453e-06, -9.6423867751772287e-07, -4.8211933875886133e-07, -4.2185442141401227e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -4.3390740488297251e-06, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297234e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -6.0264917344857947e-07, -1.8079475203457546e-07, -4.8211933875886133e-07, -9.0397376017287428e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -3.6158950406915288e-07, -1.8079475203457768e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.5668878509663102e-06, -1.3860930989317277e-06, -6.0264917344857679e-08, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.6158950406915373e-07, -1.2052983468971533e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -4.8211933875886612e-06, -4.8211933875886485e-06, -9.762916609867076e-06, -4.8211933875886485e-06, -4.8211933875886518e-06, -2.4105966937943061e-07, -1.2052983468971531e-07, -4.8211933875886112e-07, -5.423842561037114e-07, -2.4105966937943061e-07, -6.6291409079343462e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -9.762916609867054e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -1.8079475203457541e-07, -6.0264917344857653e-08, -1.2052983468971533e-07, -1.2052983468971533e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -2.4105966937943061e-07, -7.2317900813830184e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.0847685122074292e-06, -6.0264917344857666e-08, 0.00024527821359357157, -1.2052983468971531e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.0132458672429127e-07, -2.4105966937943066e-07, -1.2052983468971531e-07, -3.6158950406915081e-07, -5.1225179743129167e-06, -6.0264917344857679e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857679e-08, -2.7721861978634418e-06, -6.0264917344857989e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -4.8211933875886112e-07, -9.6423867751772266e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.8501329624871612e-05, -4.8211933875886122e-07, -1.2052983468971627e-05, -4.8211933875886133e-07, -1.2052983468971531e-07, -3.6158950406914751e-06, -7.2317900813829591e-07, -3.013245867242909e-07, -3.6158950406915153e-06, -6.0264917344857679e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.762916609867054e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.3800666071972359e-05, -1.8079475203457541e-07, -1.2052983468971638e-05, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971531e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.762916609867076e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.6271527683111885e-06, -5.7854320651064147e-06, -4.8211933875886133e-07, -4.2788091314848431e-06, -7.2317900813830142e-07, -7.2317900813830142e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344858053e-07, -4.8211933875886122e-07, -6.0264917344858349e-07, -1.2655632642420193e-06, -4.8211933875886133e-07, -3.0132458672428995e-07, -1.3860930989317209e-06, -4.8211933875886133e-07, -7.2317900813829507e-07, -1.8079475203457146e-07, -3.0132458672429079e-07, -1.2052983468971528e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -7.2317900813830163e-07, -3.6158950406915351e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943066e-07, -4.8211933875886112e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -1.4463580162766033e-06, -4.8211933875886133e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.42384256103715e-07, -2.0490071897251592e-06, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -5.4238425610372972e-07, -1.5668878509663119e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857653e-08, -6.026491734485764e-08, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.0245035948625675e-06, -1.8079475203457376e-06, -7.2317900813829845e-07, -3.6158950406915288e-07, -6.0264917344857679e-08, -2.4105966937943066e-07, -9.6423867751772245e-07, -1.4463580162766035e-06, -4.8211933875886122e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -7.2317900813830163e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -5.4238425610371415e-07, -3.0132458672429164e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -4.33907404882972e-06, -2.4105966937943061e-07, -6.0264917344857679e-08, -3.6158950406914743e-06, -4.8211933875886133e-07, -2.8927160325532497e-06, -2.8927160325532065e-06, -3.0132458672428942e-06, -2.8927160325532497e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.2185442141400307e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -3.6761599580363405e-06, -1.2052983468971531e-07, -4.3390740488297234e-06, -4.3390740488297251e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.3390740488297251e-06, -4.3390740488297166e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.8079475203457514e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -1.2113248386316493e-05, -1.2052983468971528e-05, -3.0132458672428931e-07, -6.0264917344857666e-08, -1.8079475203457472e-07, -6.0264917344858243e-07, -4.821193387588673e-06, -1.2052983468971536e-07, 0.00023997490086722446, -6.0264917344857679e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.821193387588673e-06, -4.821193387588673e-06, -4.8211933875886122e-07, -1.3680136237282638e-05, -1.2052983468971531e-07, -1.2052983468971688e-05, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886101e-07, -3.0132458672428931e-07, -1.8079475203457483e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857666e-08, -9.039737601728782e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610371458e-07, -4.8211933875886144e-07, -9.0397376017287524e-07, -1.2052983468971533e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344858116e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344857666e-08, -4.8211933875886144e-07, -1.0245035948625775e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6423867751772266e-07, -1.9284773550354445e-06, -1.5066229336214448e-06, -4.8211933875886144e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -6.0264917344858137e-07, -6.6291409079343197e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -1.2052983468971533e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.4463580162765978e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.0847685122074313e-06, -2.4105966937943072e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -7.8344392548315699e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -5.0622530569680805e-06, -4.8211933875886144e-07, -5.3033127263474592e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -4.8211933875886425e-06, -9.6423867751772266e-07, -4.881458304933516e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -5.0622530569680788e-06, -4.821193387588673e-06, -4.8211933875886383e-06, -4.821193387588651e-06, -6.0264917344857666e-08, -2.4105966937943061e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -6.0264917344858328e-07, -1.2052983468971636e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -4.8211933875886133e-07, -1.446358016276599e-06, -1.807947520345775e-07, -5.3033127263475015e-06, -9.6423867751772266e-07, -4.3390740488297429e-06, -6.0264917344857679e-08, 0.00024545900834560644, -1.50662293362145e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.2185442141400448e-07, -2.4105966937943061e-07, -1.2052983468971533e-07, -4.3390740488297412e-06, -1.2052983468971533e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297412e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344858074e-07, -1.8079475203457483e-07, -4.8211933875886144e-07, -9.0397376017287238e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -3.6158950406914584e-07, -1.807947520345771e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -1.5668878509663068e-06, -1.3860930989317315e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -3.615895040691524e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.821193387588651e-06, -4.8211933875886383e-06, -9.7629166098670591e-06, -4.8211933875886383e-06, -4.8211933875886425e-06, -2.4105966937943061e-07, -1.2052983468971536e-07, -4.8211933875886112e-07, -5.4238425610371627e-07, -2.4105966937943061e-07, -6.6291409079343547e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.7629166098670388e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.8079475203457483e-07, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943061e-07, -7.2317900813829972e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.0847685122074334e-06, -6.0264917344857679e-08, -2.4105966937943051e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.0132458672429063e-07, -2.4105966937943072e-07, -1.2052983468971533e-07, -3.6158950406914954e-07, -5.1225179743129167e-06, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, -2.7721861978634511e-06, -6.0264917344857862e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.8501329624871548e-05, -4.8211933875886133e-07, -1.2052983468971607e-05, -4.8211933875886144e-07, -1.2052983468971533e-07, -3.6158950406914743e-06, -7.2317900813829972e-07, -3.0132458672429026e-07, -3.6158950406914904e-06, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670388e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.3800666071972393e-05, -1.8079475203457472e-07, -1.2052983468971614e-05, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670591e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.6271527683111532e-06, -5.7854320651063978e-06, -4.8211933875886144e-07, -4.278809131484866e-06, -7.2317900813829909e-07, -7.2317900813829909e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.026491734485837e-07, -4.8211933875886122e-07, -6.0264917344858222e-07, -1.2655632642420184e-06, -4.8211933875886144e-07, -3.0132458672429153e-07, -1.3860930989317251e-06, -4.8211933875886144e-07, -7.2317900813829972e-07, -1.8079475203457718e-07, -3.0132458672429026e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -7.2317900813829888e-07, -3.615895040691523e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.4463580162765986e-06, -4.8211933875886144e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610371712e-07, -2.0490071897251643e-06, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -5.4238425610371712e-07, -1.5668878509663083e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.0245035948625694e-06, -1.807947520345735e-06, -7.231790081382993e-07, -3.6158950406914584e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -9.6423867751772266e-07, -1.4463580162765984e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -7.2317900813829951e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -5.4238425610371606e-07, -3.01324586724291e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.3390740488297234e-06, -2.4105966937943061e-07, -6.0264917344857679e-08, -3.6158950406914743e-06, -4.8211933875886144e-07, -2.8927160325532404e-06, -2.8927160325531972e-06, -3.0132458672428895e-06, -2.8927160325532404e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.2185442141400628e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -3.6761599580363473e-06, -1.2052983468971533e-07, -4.3390740488297412e-06, -4.3390740488297412e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.3390740488297429e-06, -4.3390740488297335e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.8079475203457483e-07, -9.6423867751772287e-07, -1.2052983468971494e-05, -1.205298346897146e-05, -1.2052983468971473e-05, -1.205298346897149e-05, -6.0264917344857621e-06, -6.0264917344857587e-06, -1.2052983468971553e-05, -1.205298346897155e-05, -1.5066229336214439e-06, -1.5066229336214522e-06, -0.00030283120965790913, -0.00030132458672428721, -7.5331146681072701e-06, -1.5066229336214435e-06, -4.5198688008643192e-06, -1.5066229336214513e-05, -0.00012052983468971627, -3.0132458672429043e-06, -0.00013860930989317426, -1.5066229336214435e-06, -2.4105966937943109e-05, -2.4105966937943089e-05, -1.2052983468971544e-05, -1.2052983468971558e-05, -0.00012052983468971632, -0.00012052983468971632, -1.2052983468971604e-05, -0.000342003405932069, -3.013245867242917e-06, -0.00030132458672428982, -2.410596693794313e-05, -1.2052983468971467e-05, -1.20529834689715e-05, -1.5066229336214428e-06, -1.5066229336214534e-06, -1.20529834689716e-05, -1.2052983468971617e-05, -3.0132458672429162e-06, -3.0132458672429162e-06, -1.5066229336214431e-06, -1.5066229336214492e-06, -1.2052983468971641e-05, -7.5331146681072634e-06, -4.519868800864326e-06, -6.0264917344857587e-06, -6.0264917344857655e-06, -1.5066229336214435e-06, -2.2599344004321517e-05, -1.2052983468971524e-05, 0.0019521012026346384, -1.355960640259297e-05, -1.2052983468971544e-05, -2.2599344004321605e-05, -3.0132458672428878e-06, -1.5066229336214568e-06, -1.2052983468971544e-05, -1.2052983468971551e-05, -1.5066229336214534e-06, -1.5066229336214418e-06, -1.2052983468971524e-05, -1.2052983468971531e-05, -3.0132458672428904e-06, -1.5066229336214477e-06, -1.2052983468971572e-05, -2.4105966937942981e-05, -1.5066229336214506e-05, -1.2052983468971607e-05, -2.4105966937943116e-05, -1.5066229336214539e-06, -1.2052983468971572e-05, -2.56125898715646e-05, -1.2052983468971524e-05, -1.2052983468971578e-05, -2.4105966937943255e-05, -4.8211933875885771e-05, -3.7665573340536024e-05, -1.2052983468971555e-05, -2.4105966937943231e-05, -2.4105966937943214e-05, -6.0264917344858307e-06, -1.2052983468971589e-05, -1.5066229336214506e-05, -1.6572852269835756e-05, -6.0264917344858341e-06, -2.4105966937942859e-05, -1.2052983468971609e-05, -1.2052983468971531e-05, -1.2052983468971534e-05, -3.0132458672428582e-06, -1.2052983468971648e-05, -1.2052983468971555e-05, -1.5066229336214488e-06, -1.2052983468971548e-05, -3.0132458672428878e-06, -1.2052983468971644e-05, -1.20529834689716e-05, -1.2052983468971614e-05, -1.5066229336214333e-06, -2.4105966937943221e-05, -2.4105966937943241e-05, -1.5066229336214312e-06, -1.2052983468971604e-05, -1.2052983468971599e-05, -1.5066229336214522e-06, -1.2052983468971661e-05, -1.2052983468971648e-05, -1.2052983468971575e-05, -1.2052983468971655e-05, -3.615895040691454e-05, -1.2052983468971655e-05, -1.2052983468971561e-05, -1.2052983468971575e-05, -1.5066229336214492e-06, -1.2052983468971575e-05, -1.2052983468971582e-05, -2.4105966937942892e-05, -6.0264917344857655e-06, 0.0039011891594020391, -6.0264917344857587e-06, -1.5066229336214568e-06, -3.0132458672429001e-06, -1.9586098137078889e-05, -1.2052983468971614e-05, -2.4105966937943062e-05, -0.00012655632642420079, -1.2052983468971524e-05, -0.00013258281815868743, -1.2052983468971594e-05, -1.2052983468971575e-05, -2.4105966937943214e-05, -0.00012052983468971616, -2.4105966937943231e-05, -0.00012203645762333701, -1.5066229336214428e-06, -2.4105966937943252e-05, -2.4105966937943194e-05, -6.0264917344857434e-06, -0.00012655632642420077, -0.00012052983468971627, -0.00012052983468971583, -0.00012052983468971601, -1.5066229336214534e-06, -6.0264917344858341e-06, -1.5066229336214469e-06, -1.5066229336214556e-06, -1.5066229336214581e-06, -1.2052983468971607e-05, -1.2052983468971614e-05, -1.2052983468971607e-05, -1.2052983468971607e-05, -1.5066229336214469e-06, -1.5066229336214477e-06, -1.5066229336214464e-06, -1.2052983468971641e-05, -1.506622933621452e-05, -3.0132458672428986e-05, -2.4105966937942906e-05, -2.4105966937943143e-05, -1.2052983468971634e-05, -3.6158950406914608e-05, -4.5198688008644124e-06, -0.00013258281815868751, -2.4105966937943123e-05, -0.00010847685122074454, -1.506622933621453e-06, -1.50662293362145e-06, 0.0061003162582332574, -2.4105966937942892e-05, -1.2052983468971524e-05, -1.054636053535008e-05, -6.0264917344857807e-06, -3.0132458672429052e-06, -0.00010847685122074454, -3.0132458672428878e-06, -6.0264917344857587e-06, -6.0264917344857621e-06, -0.00010847685122074454, -1.2052983468971504e-05, -1.5066229336214308e-06, -1.2052983468971594e-05, -1.5066229336214469e-06, -1.2052983468971578e-05, -1.5066229336214554e-05, -4.5198688008643243e-06, -1.205298346897159e-05, -2.259934400432186e-05, -1.5066229336214431e-06, -1.2052983468971514e-05, -3.013245867242917e-06, -3.0132458672429153e-06, -3.0132458672429128e-06, -1.5066229336214509e-06, -9.0397376017287198e-06, -4.5198688008643938e-06, -1.2052983468971617e-05, -1.2052983468971633e-05, -2.410596693794296e-05, -3.9172196274157629e-05, -3.4652327473293592e-05, -1.5066229336214431e-06, -2.4105966937943048e-05, -1.2052983468971624e-05, -9.0397376017287435e-06, -3.0132458672428937e-06, -1.5066229336214477e-06, -1.5066229336214551e-06, -0.00012052983468971601, -0.00012052983468971583, -0.00024407291524667434, -0.00012052983468971593, -0.00012052983468971616, -6.0264917344858341e-06, -3.0132458672428895e-06, -1.2052983468971504e-05, -1.3559606402592977e-05, -6.0264917344858307e-06, -1.6572852269835926e-05, -1.506622933621453e-06, -1.5066229336214435e-06, -2.410596693794318e-05, -1.2052983468971568e-05, -1.205298346897148e-05, -1.50662293362145e-06, -1.5066229336214439e-06, -6.0264917344857231e-06, -6.0264917344857265e-06, -2.4105966937943048e-05, -1.2052983468971634e-05, -1.506622933621438e-06, -0.00024407291524667369, -1.2052983468971627e-05, -1.2052983468971622e-05, -1.5066229336214312e-06, -6.0264917344857248e-06, -6.0264917344857231e-06, -3.0132458672428861e-06, -3.0132458672428865e-06, -4.5198688008643277e-06, -1.5066229336214439e-06, -3.0132458672428865e-06, -3.0132458672428861e-06, -1.5066229336214484e-06, -1.5066229336214534e-06, -6.0264917344857943e-06, -1.8079475203457311e-05, -1.2052983468971565e-05, -1.5066229336214464e-06, -1.5066229336214435e-06, -2.711921280518587e-05, -1.5066229336214418e-06, -6.0264917344857468e-06, -3.0132458672428666e-06, -2.4105966937943079e-05, -2.4105966937943096e-05, -7.5331146681072684e-06, -6.0264917344857985e-06, -3.0132458672429124e-06, -9.0397376017286571e-06, -0.00012806294935782371, -1.5066229336214492e-06, -6.0264917344857968e-06, -6.0264917344858019e-06, -2.4105966937943116e-05, -2.4105966937943058e-05, -6.0264917344858002e-06, -6.0264917344857875e-06, -6.0264917344857858e-06, -1.5066229336214464e-06, -6.9304654946586872e-05, -1.5066229336214511e-05, -1.5066229336214543e-06, -1.2052983468971622e-05, -1.2052983468971534e-05, -1.2052983468971627e-05, -2.4105966937943058e-05, -1.2052983468971502e-05, -2.4105966937943116e-05, -1.2052983468971533e-05, -1.2052983468971534e-05, -0.00046253324062178053, -1.2052983468971621e-05, -0.00030132458672428938, -1.2052983468971575e-05, -3.0132458672428878e-06, -9.0397376017287519e-05, -1.8079475203457318e-05, -7.5331146681072498e-06, -9.0397376017286232e-05, -1.5066229336214401e-06, -1.2052983468971534e-05, -1.2052983468971531e-05, -0.00024407291524667369, -1.2052983468971561e-05, -1.2052983468971558e-05, -0.00034501665179930693, -4.5198688008643226e-06, -0.00030132458672428938, -1.2052983468971599e-05, -1.2052983468971604e-05, -1.5066229336214479e-06, -1.2052983468971524e-05, -1.2052983468971541e-05, -1.506622933621446e-06, -2.4105966937943096e-05, -2.4105966937943079e-05, -3.0132458672429128e-06, -6.0264917344857231e-06, -6.0264917344857248e-06, -1.2052983468971624e-05, -1.2052983468971627e-05, -0.00024407291524667434, -1.2052983468971633e-05, -1.2052983468971617e-05, -4.0678819207779302e-05, -0.00014463580162765854, -1.2052983468971609e-05, -0.00010697022828712233, -1.8079475203457487e-05, -1.8079475203457487e-05, -1.2052983468971627e-05, -1.2052983468971648e-05, -1.5066229336214523e-05, -1.2052983468971661e-05, -1.506622933621452e-05, -3.1639081606050225e-05, -1.2052983468971565e-05, -7.5331146681072566e-06, -3.4652327473293416e-05, -1.2052983468971568e-05, -1.8079475203457318e-05, -4.5198688008643988e-06, -7.53311466810726e-06, -3.0132458672429136e-06, -1.5066229336214534e-06, -1.5066229336214308e-06, -1.20529834689715e-05, -1.8079475203457494e-05, -9.0397376017287435e-06, -6.0264917344857858e-06, -1.205298346897147e-05, -1.2052983468971604e-05, -1.2052983468971534e-05, -2.4105966937942981e-05, -1.2052983468971544e-05, -6.0264917344858019e-06, -2.4105966937943014e-05, -1.2052983468971551e-05, -6.0264917344857968e-06, -1.2052983468971534e-05, -1.5066229336214401e-06, -1.2052983468971551e-05, -1.2052983468971544e-05, -2.4105966937943241e-05, -3.6158950406914594e-05, -1.2052983468971587e-05, -2.410596693794313e-05, -2.4105966937943069e-05, -1.205298346897155e-05, -1.2052983468971553e-05, -1.2052983468971568e-05, -1.2052983468971555e-05, -1.3559606402593114e-05, -5.1225179743129206e-05, -3.0132458672428721e-06, -1.2052983468971655e-05, -1.2052983468971548e-05, -1.3559606402592889e-05, -3.9172196274157873e-05, -1.205298346897146e-05, -1.2052983468971594e-05, -1.2052983468971494e-05, -6.0264917344857985e-06, -6.0264917344858002e-06, -1.5066229336214325e-06, -1.5066229336214581e-06, -1.5066229336214543e-06, -3.0132458672429018e-06, -2.5612589871564603e-05, -4.5198688008643767e-05, -1.8079475203457318e-05, -9.0397376017287198e-06, 0.00024401265032932988, -6.0264917344857985e-06, -2.4105966937943123e-05, -3.6158950406914581e-05, -1.2052983468971651e-05, -6.0264917344857968e-06, -2.4105966937943163e-05, -2.4105966937943143e-05, -6.0264917344857968e-06, -1.8079475203457311e-05, -1.2052983468971561e-05, -1.5066229336214566e-06, -3.0132458672428565e-06, -6.0264917344857985e-06, -6.0264917344858002e-06, -1.3559606402593148e-05, -7.5331146681072532e-06, -1.2052983468971456e-05, -2.4105966937942977e-05, -0.00010847685122074439, -6.0264917344857434e-06, -1.5066229336214473e-06, -9.0397376017287547e-05, -1.2052983468971575e-05, -7.2317900813830598e-05, -7.2317900813829202e-05, -7.5331146681071993e-05, -7.2317900813830598e-05, -6.0264917344857417e-06, -6.0264917344857417e-06, -1.2052983468971594e-05, -1.2052983468971577e-05, -6.0264917344857934e-06, -6.0264917344857934e-06, -1.2052983468971644e-05, -1.5066229336214564e-06, -1.2052983468971648e-05, -1.5066229336214488e-06, -1.5066229336214522e-06, -0.00010546360535350065, -6.0264917344857934e-06, -6.0264917344857934e-06, -9.1903998950908895e-05, -3.0132458672429098e-06, -0.00010847685122074454, -0.00010847685122074454, -1.2052983468971572e-05, -1.5066229336214469e-06, -1.2052983468971587e-05, -0.00010847685122074454, -0.00010847685122074372, -1.205298346897148e-05, -1.20529834689715e-05, -3.0132458672428912e-06, -3.0132458672429052e-06, -2.4105966937943069e-05, -1.2052983468971494e-05, -1.2052983468971487e-05, -4.5198688008643684e-06, -2.4105966937943069e-05, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772266e-07, -9.6423867751772287e-07, -0.00019381197418106373, -0.00019284773550354422, -4.8211933875886307e-06, -9.6423867751772266e-07, -2.8927160325531938e-06, -9.6423867751773223e-06, -7.7139094201418795e-05, -1.9284773550354457e-06, -8.8709958331630856e-05, -9.6423867751772287e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -7.713909420141783e-06, -7.713909420141783e-06, -7.7139094201418795e-05, -7.7139094201418795e-05, -7.7139094201417796e-06, -0.0002188821797965222, -1.9284773550354449e-06, -0.0001928477355035468, -1.5427818840283559e-05, -7.7139094201417813e-06, -7.7139094201417796e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.713909420141783e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -7.7139094201417762e-06, -4.8211933875886307e-06, -2.8927160325531955e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -1.4463580162766051e-05, -7.713909420141783e-06, -7.713909420141783e-06, -8.67814809765944e-06, -7.713909420141783e-06, -1.4463580162766004e-05, -1.9284773550354453e-06, -9.6423867751772245e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772266e-07, -9.6423867751772287e-07, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -1.5427818840283566e-05, -9.642386775177302e-06, -7.713909420141783e-06, -1.5427818840283566e-05, -9.6423867751772266e-07, -7.713909420141783e-06, -1.6392057517801209e-05, -7.7139094201417813e-06, -7.713909420141783e-06, -1.5427818840283563e-05, -3.0855637680567112e-05, -2.4105966937943089e-05, -7.713909420141783e-06, -1.5427818840283563e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -7.713909420141783e-06, -9.6423867751773054e-06, -1.0606625452694912e-05, -3.8569547100708898e-06, -1.5427818840283559e-05, -7.713909420141783e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -7.713909420141783e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -9.6423867751772266e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772266e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -7.7139094201417796e-06, -2.3141728260425551e-05, -7.7139094201417796e-06, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -7.713909420141783e-06, 0.0039128805533669361, -3.8569547100708915e-06, -1.7356296195319195e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.2535102807730302e-05, -7.713909420141783e-06, -1.5427818840283566e-05, -8.0996048911489261e-05, -7.713909420141783e-06, -8.4853003621559347e-05, -7.713909420141783e-06, -7.713909420141783e-06, -1.5427818840283559e-05, -7.7139094201418307e-05, -1.5427818840283563e-05, -7.8103332878936256e-05, -9.6423867751772287e-07, -1.5427818840283563e-05, -1.5427818840283559e-05, -3.8569547100708906e-06, -8.0996048911489261e-05, -7.7139094201418795e-05, -7.713909420141824e-05, -7.7139094201418443e-05, -9.6423867751772266e-07, -3.8569547100708898e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -7.713909420141783e-06, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -7.7139094201417813e-06, -9.6423867751773359e-06, -1.9284773550354624e-05, -1.5427818840283559e-05, -1.5427818840283566e-05, -7.7139094201417813e-06, -2.3141728260425571e-05, -2.8927160325532383e-06, -8.4853003621560024e-05, -1.5427818840283563e-05, -6.942518478127594e-05, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937942892e-05, 0.0039128805533669361, -7.713909420141783e-06, -6.7496707426240768e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -6.9425184781275913e-05, -1.9284773550354453e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -6.9425184781275913e-05, -7.713909420141783e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -9.6423867751772986e-06, -2.8927160325531955e-06, -7.713909420141783e-06, -1.4463580162765958e-05, -9.6423867751772287e-07, -7.713909420141783e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -5.7854320651064232e-06, -2.8927160325532319e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.5427818840283563e-05, -2.5070205615460553e-05, -2.2177489582907717e-05, -9.6423867751772287e-07, -1.5427818840283563e-05, -7.7139094201417813e-06, -5.7854320651064351e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.7139094201418443e-05, -7.713909420141824e-05, -0.000156206665757873, -7.713909420141824e-05, -7.7139094201418307e-05, -3.8569547100708898e-06, -1.9284773550354457e-06, -7.7139094201417779e-06, -8.678148097659423e-06, -3.8569547100708898e-06, -1.0606625452694967e-05, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.5427818840283566e-05, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.5427818840283559e-05, -7.7139094201417813e-06, -9.6423867751772287e-07, -0.00015620666575787265, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.8927160325531955e-06, -9.6423867751772266e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -3.8569547100708898e-06, -1.1570864130212792e-05, -7.713909420141783e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.7356296195318958e-05, -9.6423867751772287e-07, -3.8569547100708881e-06, -1.9284773550354457e-06, -1.5427818840283566e-05, -1.5427818840283566e-05, -4.8211933875886518e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -5.7854320651063927e-06, -8.1960287589006667e-05, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.5427818840283566e-05, -1.5427818840283566e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -4.4354979165815286e-05, -9.6423867751772613e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -1.5427818840283566e-05, -7.7139094201417796e-06, -1.5427818840283566e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00029602127399794466, -7.7139094201417813e-06, -0.0001928477355035455, -7.713909420141783e-06, -1.9284773550354453e-06, -5.785432065106348e-05, -1.1570864130212789e-05, -4.8211933875886459e-06, -5.7854320651064124e-05, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -0.00015620666575787265, -7.713909420141783e-06, -7.713909420141783e-06, -0.00022081065715155867, -2.8927160325531938e-06, -0.00019284773550354561, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -1.5427818840283566e-05, -1.5427818840283566e-05, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -0.000156206665757873, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.603444429297845e-05, -9.2566913041702283e-05, -7.713909420141783e-06, -6.8460946103757788e-05, -1.1570864130212796e-05, -1.1570864130212796e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751773426e-06, -7.7139094201417796e-06, -9.6423867751773189e-06, -2.0249012227872295e-05, -7.713909420141783e-06, -4.8211933875886645e-06, -2.2177489582907622e-05, -7.713909420141783e-06, -1.1570864130212789e-05, -2.8927160325532332e-06, -4.8211933875886442e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772287e-07, -7.7139094201417796e-06, -1.1570864130212619e-05, -5.785432065106308e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -7.713909420141783e-06, -3.8569547100708915e-06, -1.5427818840283559e-05, -7.713909420141783e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -7.713909420141783e-06, -1.5427818840283559e-05, -2.3141728260425564e-05, -7.713909420141783e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -7.713909420141783e-06, -7.713909420141783e-06, -7.713909420141783e-06, -7.713909420141783e-06, -8.6781480976596043e-06, -3.2784115035602534e-05, -1.9284773550354445e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -8.6781480976594823e-06, -2.507020561546097e-05, -7.7139094201417813e-06, -7.713909420141783e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -9.6423867751772266e-07, -1.9284773550354457e-06, -1.6392057517801111e-05, -2.8927160325531753e-05, -1.1570864130212789e-05, -5.7854320651064232e-06, -9.6423867751772287e-07, -3.8569547100708915e-06, -1.5427818840283563e-05, -2.3141728260425561e-05, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.5427818840283566e-05, -1.5427818840283566e-05, -3.8569547100708915e-06, -1.1570864130212785e-05, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -8.6781480976595908e-06, -4.8211933875886595e-06, -7.7139094201417813e-06, -1.5427818840283566e-05, -6.9425184781275764e-05, -3.8569547100708906e-06, -9.6423867751772287e-07, -5.7854320651063466e-05, -7.713909420141783e-06, -4.6283456520851819e-05, -4.6283456520851128e-05, -4.8211933875886178e-05, -4.6283456520851819e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -6.7496707426240762e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -5.881855932858134e-05, -1.9284773550354453e-06, -6.9425184781275913e-05, -6.9425184781275913e-05, -7.713909420141783e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -6.942518478127594e-05, -6.9425184781275791e-05, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, -1.5427818840283566e-05, -7.713909420141783e-06, -7.713909420141783e-06, -2.8927160325531955e-06, -1.5427818840283566e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6905987090531865e-05, -9.6423867751772139e-05, -2.4105966937943119e-06, -4.8211933875886122e-07, -1.4463580162765961e-06, -4.8211933875886544e-06, -3.8569547100709343e-05, -9.6423867751772266e-07, -4.4354979165815428e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.856954710070935e-05, -3.8569547100709343e-05, -3.8569547100708898e-06, -0.0001094410898982612, -9.6423867751772224e-07, -9.6423867751773426e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.4105966937943119e-06, -1.4463580162765973e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -7.2317900813830163e-06, 0.0019602972313935386, -3.8569547100708915e-06, -4.33907404882972e-06, -3.8569547100708906e-06, -7.2317900813829951e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772224e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886451e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -8.1960287589005844e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971548e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -4.8211933875886459e-06, -5.30331272634746e-06, -1.9284773550354445e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212768e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594569e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652551e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -4.0498024455744671e-05, -3.8569547100708915e-06, -4.2426501810779714e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.856954710070912e-05, -7.7139094201417796e-06, -3.905166643946806e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.0498024455744664e-05, -3.8569547100709343e-05, -3.8569547100708944e-05, -3.8569547100709208e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886612e-06, -9.6423867751772986e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -1.157086413021278e-05, -1.4463580162766185e-06, -4.2426501810780019e-05, -7.7139094201417813e-06, -3.471259239063797e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971524e-05, -7.713909420141783e-06, 0.0019602972313935386, -3.3748353713120626e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.471259239063797e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.471259239063797e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886425e-06, -1.4463580162765973e-06, -3.8569547100708906e-06, -7.2317900813829697e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325532103e-06, -1.4463580162765808e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730476e-05, -1.1088744791453862e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532167e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709208e-05, -3.8569547100708944e-05, -7.81033328789365e-05, -3.8569547100709011e-05, -3.856954710070912e-05, -1.9284773550354445e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297115e-06, -1.9284773550354445e-06, -5.3033127263474871e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936324e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4463580162765994e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651063927e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -8.678148097659479e-06, -4.8211933875886144e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -7.713909420141783e-06, -7.713909420141783e-06, -2.4105966937943242e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325531947e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886144e-07, -2.2177489582907639e-05, -4.8211933875886239e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00014801063699897227, -3.8569547100708906e-06, -9.6423867751772749e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.8927160325531689e-05, -5.785432065106391e-06, -2.4105966937943196e-06, -2.8927160325532018e-05, -4.8211933875886144e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936324e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577917, -1.4463580162765965e-06, -9.6423867751772844e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.81033328789365e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.301722214648922e-05, -4.6283456520851128e-05, -3.8569547100708906e-06, -3.4230473051878908e-05, -5.7854320651063859e-06, -5.7854320651063859e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886645e-06, -3.8569547100708898e-06, -4.8211933875886569e-06, -1.0124506113936161e-05, -3.8569547100708906e-06, -2.4105966937943293e-06, -1.1088744791453803e-05, -3.8569547100708906e-06, -5.785432065106391e-06, -1.4463580162766158e-06, -2.4105966937943191e-06, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063885e-06, -2.8927160325532154e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.1570864130212775e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297412e-06, -1.6392057517801274e-05, -9.6423867751772202e-07, -3.8569547100708889e-06, -3.8569547100708915e-06, -4.3390740488297412e-06, -1.2535102807730295e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -8.1960287589005607e-06, -1.4463580162765861e-05, -5.785432065106391e-06, -2.8927160325532103e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417813e-06, -1.1570864130212775e-05, -3.8569547100708889e-06, -1.9284773550354453e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354453e-06, -5.7854320651063902e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.3390740488297335e-06, -2.4105966937943255e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -3.4712592390637929e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531689e-05, -3.8569547100708906e-06, -2.3141728260425899e-05, -2.3141728260425551e-05, -2.4105966937943092e-05, -2.3141728260425899e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.3748353713120428e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.9409279664290629e-05, -9.6423867751772245e-07, -3.471259239063797e-05, -3.471259239063797e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.471259239063797e-05, -3.4712592390637916e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765971e-06, -7.713909420141783e-06, -3.3748353713120232e-06, -3.3748353713120308e-06, -3.3748353713120274e-06, -3.374835371312024e-06, -1.6874176856560226e-06, -1.6874176856560222e-06, -3.3748353713120452e-06, -3.3748353713120465e-06, -4.218544214140101e-07, -4.2185442141400385e-07, -8.4792738704214467e-05, -8.4370884282800217e-05, -2.1092721070700128e-06, -4.2185442141400999e-07, -1.2655632642420269e-06, -4.2185442141400425e-06, -3.3748353713120516e-05, -8.437088428280078e-07, -3.881060677008861e-05, -4.218544214140065e-07, -6.7496707426241581e-06, -6.7496707426241565e-06, -3.3748353713120477e-06, -3.3748353713120439e-06, -3.3748353713120394e-05, -3.3748353713120449e-05, -3.3748353713120274e-06, -9.5760953660979021e-05, -8.4370884282800494e-07, -8.4370884282800406e-05, -6.7496707426241598e-06, -3.3748353713120299e-06, -3.3748353713120215e-06, -4.218544214140057e-07, 0.00024509741884153703, -3.3748353713120316e-06, -3.3748353713120333e-06, -8.4370884282800516e-07, -8.4370884282800516e-07, -4.2185442141400586e-07, -4.218544214140047e-07, -3.3748353713120634e-06, -2.1092721070700365e-06, -1.265563264242025e-06, -1.6874176856560222e-06, -1.687417685656023e-06, -4.2185442141400999e-07, -6.327816321210115e-06, -3.3748353713120626e-06, -3.3748353713120651e-06, -3.7966897927260638e-06, -3.3748353713120503e-06, -6.3278163212101133e-06, -8.437088428280204e-07, -4.2185442141400279e-07, -3.374835371312052e-06, -3.3748353713120545e-06, -4.2185442141401216e-07, -4.2185442141400914e-07, -3.3748353713120676e-06, -3.37483537131206e-06, -8.4370884282801998e-07, -4.2185442141400491e-07, -3.3748353713120655e-06, -6.7496707426241268e-06, -4.2185442141400459e-06, -3.3748353713120905e-06, -6.7496707426241209e-06, -4.2185442141401216e-07, -3.3748353713120418e-06, -7.1715251640381369e-06, -3.3748353713120668e-06, -3.374835371312041e-06, -6.7496707426240548e-06, -1.3499341485248311e-05, -1.0546360535350061e-05, -3.3748353713120443e-06, -6.7496707426240607e-06, -6.7496707426240658e-06, -1.6874176856560448e-06, -3.3748353713120388e-06, -4.2185442141400493e-06, -4.6403986355540865e-06, -1.6874176856560444e-06, -6.7496707426240938e-06, -3.3748353713120338e-06, -3.3748353713120693e-06, -3.3748353713120719e-06, -8.4370884282801151e-07, -3.3748353713120257e-06, -3.3748353713120443e-06, 0.00024509741884153725, -3.3748353713120452e-06, -8.4370884282801659e-07, -3.3748353713120274e-06, -3.3748353713120863e-06, -3.3748353713120922e-06, -4.2185442141400353e-07, -6.749670742624065e-06, -6.7496707426240599e-06, -4.2185442141400406e-07, -3.374835371312035e-06, -3.3748353713120363e-06, -4.2185442141400369e-07, -3.3748353713120223e-06, -3.3748353713120266e-06, -3.3748353713120426e-06, -3.3748353713120249e-06, -1.0124506113936203e-05, -3.3748353713120922e-06, -3.3748353713120613e-06, -3.3748353713120401e-06, -4.218544214140047e-07, -3.3748353713120681e-06, -3.3748353713120393e-06, -6.7496707426240768e-06, -1.687417685656023e-06, -7.5933795854521275e-06, -1.6874176856560222e-06, -4.21854421414003e-07, -8.4370884282800918e-07, -5.4841074783820745e-06, -3.3748353713120922e-06, -6.7496707426240192e-06, -3.5435771398776638e-05, -3.3748353713120676e-06, -3.7123189084432021e-05, -3.3748353713120384e-06, -3.3748353713120426e-06, -6.7496707426240658e-06, -3.3748353713120354e-05, -6.7496707426240607e-06, -3.4170208134534313e-05, -4.218544214140056e-07, -6.7496707426240557e-06, -6.7496707426240709e-06, -1.6874176856560116e-06, -3.5435771398776624e-05, -3.3748353713120516e-05, -3.3748353713120347e-05, -3.3748353713120015e-05, -4.2185442141401227e-07, -1.6874176856560222e-06, -4.2185442141400512e-07, -4.2185442141400332e-07, -4.2185442141400247e-07, -3.3748353713120325e-06, -3.3748353713120325e-06, -3.374835371312088e-06, -3.3748353713120905e-06, -4.2185442141400512e-07, -4.2185442141400491e-07, -4.2185442141400512e-07, -3.3748353713120956e-06, -4.2185442141399968e-06, -8.4370884282800003e-06, -6.7496707426240819e-06, -6.7496707426240785e-06, -3.3748353713120973e-06, -1.0124506113936198e-05, -1.2655632642420233e-06, -3.7123189084432163e-05, -6.7496707426240836e-06, -3.0373518341808557e-05, -4.2185442141401227e-07, -4.2185442141400448e-07, -1.054636053535008e-05, -6.7496707426240768e-06, -3.3748353713120626e-06, 0.0017156819318907615, -1.687417685656022e-06, -8.4370884282800706e-07, -3.0373518341808557e-05, -8.437088428280204e-07, -1.6874176856560222e-06, -1.6874176856560226e-06, -3.0373518341808557e-05, -3.3748353713120426e-06, -4.2185442141400459e-07, -3.3748353713120795e-06, -4.2185442141400512e-07, -3.3748353713120723e-06, -4.2185442141400069e-06, -1.2655632642420252e-06, -3.374835371312077e-06, -6.3278163212101159e-06, -4.2185442141400597e-07, -3.3748353713120443e-06, -8.4370884282800494e-07, -8.4370884282800516e-07, -8.437088428280059e-07, -4.2185442141400427e-07, -2.5311265284840466e-06, -1.2655632642420222e-06, -3.3748353713120312e-06, -3.3748353713120274e-06, -6.7496707426240921e-06, -1.0968214956764227e-05, -9.7026516925221932e-06, -4.2185442141400586e-07, -6.7496707426240717e-06, -3.3748353713120316e-06, -2.5311265284840458e-06, -8.437088428280132e-07, -4.2185442141400491e-07, -4.2185442141400332e-07, -3.3748353713120015e-05, -3.3748353713120347e-05, -6.8340416269068273e-05, -3.3748353713120272e-05, -3.3748353713120354e-05, -1.6874176856560444e-06, -8.4370884282801469e-07, -3.3748353713120291e-06, -3.7966897927260646e-06, -1.6874176856560448e-06, -4.6403986355540238e-06, -4.2185442141400358e-07, -4.218544214140065e-07, -6.7496707426241005e-06, -3.3748353713120426e-06, -3.3748353713120401e-06, -4.2185442141400448e-07, -4.218544214140101e-07, -1.6874176856560167e-06, -1.6874176856560158e-06, -6.7496707426240701e-06, -3.3748353713120291e-06, -4.2185442141400533e-07, -6.8340416269068558e-05, -3.3748353713120287e-06, -3.3748353713120299e-06, -4.2185442141400406e-07, -1.6874176856560162e-06, -1.6874176856560162e-06, -8.4370884282801162e-07, -8.4370884282801151e-07, -1.2655632642420229e-06, -4.218544214140102e-07, -8.4370884282801151e-07, -8.4370884282801162e-07, -4.218544214140048e-07, -4.2185442141401216e-07, -1.6874176856560266e-06, -5.0622530569680915e-06, -3.3748353713120426e-06, -4.2185442141400523e-07, -4.218544214140065e-07, 0.00023792589367749957, -4.2185442141400914e-07, -1.6874176856560427e-06, -8.4370884282801744e-07, -6.7496707426240929e-06, -6.7496707426240878e-06, -2.1092721070700255e-06, -1.6874176856560175e-06, -8.4370884282800632e-07, -2.5311265284840483e-06, -3.5857625820190428e-05, -4.218544214140047e-07, -1.6874176856560175e-06, -1.6874176856560167e-06, -6.7496707426240828e-06, -6.749670742624098e-06, -1.6874176856560427e-06, -1.6874176856560196e-06, -1.6874176856560196e-06, -4.2185442141400512e-07, -1.9405303385044325e-05, -4.218544214140073e-06, -4.2185442141401205e-07, -3.3748353713120299e-06, -3.3748353713120037e-06, -3.3748353713120287e-06, -6.749670742624098e-06, -3.3748353713120168e-06, -6.7496707426240828e-06, -3.3748353713120037e-06, -3.3748353713120037e-06, -0.00012950930737410011, -3.3748353713120333e-06, -8.4370884282800718e-05, -3.3748353713120681e-06, 0.00049019483768307438, -2.5311265284840447e-05, -5.0622530569680915e-06, -2.1092721070700196e-06, -2.5311265284840443e-05, -4.2185442141400565e-07, -3.3748353713120719e-06, -3.3748353713120693e-06, -6.8340416269068558e-05, -3.3748353713120426e-06, -3.3748353713120443e-06, -9.6604662503805937e-05, -1.2655632642420246e-06, -8.4370884282800691e-05, -3.3748353713120363e-06, -3.374835371312035e-06, -4.2185442141400464e-07, -3.3748353713120668e-06, -3.3748353713120748e-06, -4.2185442141400533e-07, -6.7496707426240878e-06, -6.7496707426240929e-06, -8.437088428280059e-07, -1.6874176856560162e-06, -1.6874176856560162e-06, -3.3748353713120316e-06, -3.3748353713120308e-06, -6.8340416269068273e-05, -3.3748353713120274e-06, -3.3748353713120312e-06, -1.1390069378178083e-05, -4.0498024455744786e-05, -3.3748353713120338e-06, -2.9951663920394656e-05, -5.0622530569681e-06, -5.0622530569681e-06, -3.3748353713120998e-06, -3.3748353713120266e-06, -4.2185442141400035e-06, -3.3748353713120223e-06, -4.2185442141400595e-06, -8.8589428496941442e-06, -3.3748353713120638e-06, -2.1092721070699984e-06, -9.7026516925221611e-06, -3.3748353713120418e-06, -5.0622530569680915e-06, -1.2655632642420222e-06, -2.1092721070700187e-06, -8.4370884282800558e-07, -4.2185442141401227e-07, -4.2185442141400459e-07, -3.3748353713120215e-06, -5.0622530569680983e-06, -2.5311265284840466e-06, -1.6874176856560209e-06, -3.3748353713120283e-06, -3.3748353713120274e-06, -3.3748353713120037e-06, -6.7496707426240387e-06, -3.3748353713120477e-06, -1.6874176856560167e-06, -6.7496707426240938e-06, -3.374835371312046e-06, -1.6874176856560175e-06, -3.3748353713120037e-06, -4.2185442141400565e-07, -3.3748353713120545e-06, -3.374835371312052e-06, -6.7496707426240599e-06, -1.0124506113936193e-05, -3.3748353713120753e-06, -6.7496707426241598e-06, -6.7496707426241548e-06, -3.3748353713120465e-06, -3.3748353713120452e-06, -3.3748353713120418e-06, -3.3748353713120452e-06, -3.796689792726068e-06, -1.4343050328076274e-05, -8.4370884282800007e-07, -3.3748353713120922e-06, -3.3748353713120477e-06, -3.7966897927260646e-06, -1.0968214956764064e-05, -3.3748353713120308e-06, -3.3748353713120795e-06, -3.3748353713120232e-06, -1.6874176856560175e-06, -1.6874176856560171e-06, -4.2185442141400374e-07, -4.2185442141400258e-07, -4.2185442141401205e-07, -8.4370884282800854e-07, -7.1715251640381318e-06, -1.265563264242023e-05, -5.0622530569680915e-06, -2.5311265284840466e-06, -4.218544214140047e-07, -1.6874176856560175e-06, -6.7496707426240836e-06, -1.0124506113936197e-05, -3.374835371312093e-06, -1.6874176856560175e-06, -6.7496707426240734e-06, -6.7496707426240785e-06, -1.6874176856560175e-06, -5.0622530569680915e-06, -3.3748353713120426e-06, -4.2185442141400284e-07, -8.4370884282800579e-07, -1.6874176856560175e-06, -1.6874176856560427e-06, -3.7966897927260646e-06, -2.1092721070699984e-06, -3.3748353713120316e-06, -6.7496707426241268e-06, -3.0373518341808551e-05, -1.6874176856560116e-06, -4.2185442141400512e-07, -2.5311265284840457e-05, -3.3748353713120401e-06, -2.0249012227872386e-05, -2.0249012227872407e-05, -2.1092721070700122e-05, -2.0249012227872386e-05, -1.687417685656012e-06, -1.6874176856560124e-06, -3.3748353713120376e-06, -3.3748353713120414e-06, -1.6874176856560192e-06, -1.6874176856560192e-06, -3.3748353713120274e-06, -4.218544214140029e-07, -3.3748353713120257e-06, -4.218544214140047e-07, -4.2185442141400369e-07, -2.952980949898052e-05, -1.6874176856560192e-06, -1.6874176856560192e-06, -2.5733119706254202e-05, -8.4370884282800622e-07, -3.0373518341808557e-05, -3.0373518341808557e-05, -3.3748353713120418e-06, -4.218544214140048e-07, -3.3748353713120376e-06, -3.0373518341808557e-05, -3.0373518341808537e-05, -3.3748353713120401e-06, -3.3748353713120443e-06, -8.4370884282801574e-07, 0.00049019483768307417, -6.7496707426240938e-06, -3.3748353713120426e-06, -3.3748353713120418e-06, -1.2655632642420233e-06, -6.7496707426240938e-06, -1.928477355035444e-06, -1.928477355035444e-06, -1.9284773550354449e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943056e-07, -2.4105966937943056e-07, -4.8452993545265811e-05, -4.8211933875885954e-05, -1.2052983468971503e-06, -2.4105966937943056e-07, -7.2317900813829284e-07, -2.4105966937943158e-06, -1.928477355035458e-05, -4.8211933875886112e-07, -2.2177489582907788e-05, -2.4105966937943061e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354584e-05, -1.928477355035458e-05, -1.928477355035444e-06, -5.472054494913068e-05, -4.8211933875886122e-07, -4.8211933875886598e-05, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.928477355035444e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354436e-06, -1.2052983468971503e-06, -7.2317900813829337e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943056e-07, -3.6158950406914933e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.1695370244148795e-06, -1.9284773550354449e-06, -3.6158950406914959e-06, -4.8211933875886101e-07, 0.00024527821359357163, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943056e-07, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886101e-07, -2.4105966937943061e-07, -1.9284773550354449e-06, -3.8569547100708889e-06, -2.4105966937943107e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -2.4105966937943056e-07, -1.9284773550354449e-06, -4.0980143794503278e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -6.0264917344857604e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -9.6423867751772202e-07, -1.9284773550354449e-06, -2.4105966937943115e-06, -2.6516563631737465e-06, -9.6423867751772202e-07, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886101e-07, -1.9284773550354445e-06, -1.9284773550354449e-06, -2.4105966937943051e-07, -1.9284773550354449e-06, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -2.4105966937943056e-07, -1.928477355035444e-06, -1.928477355035444e-06, -1.9284773550354449e-06, -1.928477355035444e-06, -5.7854320651063419e-06, -1.928477355035444e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -4.3390740488297674e-06, -9.6423867751772245e-07, -2.4105966937943056e-07, -4.8211933875886122e-07, -3.1337757019326326e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -2.0249012227872315e-05, -1.9284773550354449e-06, -2.1213250905389952e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -1.9284773550354472e-05, -3.8569547100708889e-06, -1.9525833219733942e-05, -2.4105966937943061e-07, -3.8569547100708889e-06, -3.8569547100708881e-06, -9.6423867751772202e-07, -2.0249012227872308e-05, -1.928477355035458e-05, -1.9284773550354455e-05, -1.9284773550354502e-05, -2.4105966937943056e-07, -9.6423867751772139e-07, -2.4105966937943061e-07, -2.4105966937943056e-07, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354445e-06, -2.4105966937943196e-06, -4.8211933875886273e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -1.9284773550354445e-06, -5.7854320651063478e-06, -7.2317900813830396e-07, -2.1213250905390142e-05, -3.8569547100708889e-06, -1.7356296195319134e-05, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.0264917344857807e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.687417685656022e-06, 0.00098111285437428716, -4.8211933875886101e-07, -1.7356296195319134e-05, -4.8211933875886101e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.7356296195319131e-05, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.4105966937943289e-06, -7.2317900813830565e-07, -1.9284773550354449e-06, -3.6158950406914467e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -1.4463580162765948e-06, -7.2317900813830237e-07, -1.928477355035444e-06, -1.928477355035444e-06, -3.8569547100708898e-06, -6.2675514038652483e-06, -5.5443723957268607e-06, -2.4105966937943061e-07, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.4463580162765978e-06, -4.8211933875886112e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354502e-05, -1.9284773550354455e-05, -3.9051666439468006e-05, -1.9284773550354455e-05, -1.9284773550354472e-05, -9.6423867751772202e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -2.1695370244148752e-06, -9.6423867751772202e-07, -2.6516563631737605e-06, -2.4105966937943056e-07, -2.4105966937943061e-07, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -2.4105966937943056e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.8569547100708889e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -3.9051666439467925e-05, -1.928477355035444e-06, -1.928477355035444e-06, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.2317900813829337e-07, -2.4105966937943051e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943056e-07, -9.6423867751772202e-07, -2.8927160325531756e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.3390740488297767e-06, -2.4105966937943061e-07, -9.6423867751772202e-07, -4.8211933875886112e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.2052983468971562e-06, -9.6423867751772245e-07, -4.8211933875886101e-07, -1.4463580162765865e-06, -2.0490071897251667e-05, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -1.1088744791453833e-05, -2.4105966937943005e-06, -2.4105966937943056e-07, -1.928477355035444e-06, -1.928477355035444e-06, -1.928477355035444e-06, -3.8569547100708898e-06, -1.928477355035444e-06, -3.8569547100708898e-06, -1.928477355035444e-06, -1.928477355035444e-06, 0.00066255250128936815, -1.9284773550354449e-06, -4.8211933875886252e-05, -1.9284773550354449e-06, -4.8211933875886101e-07, -1.4463580162765831e-05, -2.8927160325531743e-06, -1.2052983468971541e-06, -1.4463580162765994e-05, -2.4105966937943061e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.9051666439467925e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -5.5202664287889999e-05, -7.2317900813830523e-07, -4.82119338758863e-05, -1.9284773550354445e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.4105966937943061e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.9051666439468006e-05, -1.928477355035444e-06, -1.928477355035444e-06, -6.5086110732446041e-06, -2.3141728260425395e-05, -1.9284773550354449e-06, -1.7115236525939559e-05, -2.8927160325531718e-06, -2.8927160325531718e-06, -1.928477355035444e-06, -1.928477355035444e-06, -2.4105966937943208e-06, -1.928477355035444e-06, -2.4105966937943166e-06, -5.0622530569680856e-06, -1.9284773550354449e-06, -1.2052983468971589e-06, -5.5443723957269166e-06, -1.9284773550354449e-06, -2.8927160325531743e-06, -7.2317900813830248e-07, -1.2052983468971539e-06, -4.8211933875886122e-07, -2.4105966937943056e-07, -2.4105966937943061e-07, -1.928477355035444e-06, -2.8927160325531735e-06, -1.4463580162765973e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.928477355035444e-06, -1.928477355035444e-06, -3.8569547100708873e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.8569547100708873e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -1.928477355035444e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -5.7854320651064215e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.1695370244148896e-06, -8.196028758900708e-06, -4.8211933875886091e-07, -1.928477355035444e-06, -1.9284773550354449e-06, -2.1695370244148896e-06, -6.2675514038652534e-06, -1.928477355035444e-06, -1.9284773550354449e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -2.4105966937943056e-07, -4.8211933875886122e-07, -4.0980143794502837e-06, -7.2317900813829833e-06, -2.8927160325531743e-06, -1.4463580162765948e-06, -2.4105966937943061e-07, -9.6423867751772245e-07, -3.8569547100708889e-06, -5.7854320651063453e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -2.8927160325531739e-06, -1.9284773550354449e-06, -2.4105966937943051e-07, -4.8211933875886101e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.1695370244148863e-06, -1.2052983468971572e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -1.7356296195319114e-05, -9.6423867751772202e-07, -2.4105966937943061e-07, -1.4463580162765829e-05, -1.9284773550354449e-06, -1.1570864130212865e-05, -1.1570864130212692e-05, -1.2052983468971519e-05, -1.1570864130212865e-05, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354445e-06, -2.4105966937943051e-07, -1.9284773550354445e-06, -2.4105966937943061e-07, -2.4105966937943056e-07, -1.6874176856560265e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.4704639832145276e-05, -4.8211933875886101e-07, -1.7356296195319131e-05, -1.7356296195319134e-05, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.7356296195319134e-05, -1.7356296195319104e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.2317900813829337e-07, -3.8569547100708898e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -2.4226496772633034e-05, -2.4105966937943099e-05, -6.0264917344857947e-07, -1.2052983468971531e-07, -3.615895040691506e-07, -1.2052983468971663e-06, -9.6423867751773596e-06, -2.4105966937943061e-07, -1.1088744791453818e-05, -1.2052983468971531e-07, -1.9284773550354445e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751773596e-06, -9.6423867751773596e-06, -9.6423867751772224e-07, -2.7360272474565228e-05, -2.4105966937943051e-07, -2.4105966937943421e-05, -1.9284773550354445e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943051e-07, -2.4105966937943051e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -9.6423867751772181e-07, -6.0264917344857947e-07, -3.6158950406915092e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -1.8079475203457594e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.0847685122074249e-06, -9.6423867751772245e-07, -1.8079475203457409e-06, -2.4105966937943061e-07, -1.2052983468971528e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971528e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943051e-07, -1.2052983468971533e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.205298346897164e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.2052983468971528e-07, -9.6423867751772245e-07, -2.0490071897251457e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -1.9284773550354445e-06, -3.8569547100708873e-06, -3.013245867242895e-06, -9.6423867751772245e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -1.2052983468971644e-06, -1.3258281815868635e-06, -4.8211933875886101e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943056e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.2052983468971525e-07, -9.6423867751772245e-07, -2.4105966937943056e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772266e-07, -9.6423867751772224e-07, -2.8927160325532048e-06, -9.6423867751772202e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -4.8211933875886133e-07, 0.00048886900950148766, -4.8211933875886133e-07, -1.2052983468971528e-07, -2.4105966937943066e-07, -1.5668878509663148e-06, -9.6423867751772245e-07, -1.9284773550354445e-06, -1.0124506113936168e-05, -9.6423867751772245e-07, -1.0606625452694915e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354445e-06, -9.6423867751773071e-06, -1.9284773550354445e-06, -9.7629166098670455e-06, -1.2052983468971531e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886112e-07, -1.0124506113936168e-05, -9.6423867751773596e-06, -9.6423867751772986e-06, -9.642386775177324e-06, -1.2052983468971528e-07, -4.8211933875886091e-07, -1.2052983468971533e-07, -1.2052983468971528e-07, -1.2052983468971525e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -9.6423867751772224e-07, -1.2052983468971683e-06, -2.4105966937943306e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -2.8927160325531659e-06, -3.6158950406915621e-07, -1.0606625452694988e-05, -1.9284773550354449e-06, -8.6781480976594502e-06, -1.2052983468971531e-07, -1.2052983468971533e-07, -3.0132458672429052e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -8.4370884282800706e-07, -4.8211933875886101e-07, 0.00049079748685652283, -8.6781480976594502e-06, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -8.6781480976594468e-06, -9.6423867751772266e-07, -1.2052983468971533e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.2052983468971634e-06, -3.6158950406915092e-07, -9.6423867751772245e-07, -1.8079475203457477e-06, -1.2052983468971533e-07, -9.6423867751772266e-07, -2.4105966937943051e-07, -2.4105966937943051e-07, -2.4105966937943056e-07, -1.2052983468971533e-07, -7.2317900813830586e-07, -3.6158950406915542e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -3.1337757019326212e-06, -2.7721861978634558e-06, -1.2052983468971533e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -7.2317900813830745e-07, -2.4105966937943056e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -9.642386775177324e-06, -9.6423867751772986e-06, -1.9525833219734152e-05, -9.6423867751772986e-06, -9.6423867751773071e-06, -4.8211933875886101e-07, -2.4105966937943061e-07, -9.6423867751772202e-07, -1.0847685122074228e-06, -4.8211933875886101e-07, -1.3258281815868705e-06, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -9.6423867751772245e-07, -1.2052983468971533e-07, -1.9525833219734108e-05, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -3.6158950406915092e-07, -1.2052983468971531e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -4.8211933875886101e-07, -1.4463580162766045e-06, -9.6423867751772245e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -2.1695370244148583e-06, -1.2052983468971531e-07, -4.8211933875886091e-07, -2.4105966937943056e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -6.0264917344858243e-07, -4.8211933875886122e-07, -2.4105966937943056e-07, -7.2317900813830163e-07, -1.0245035948625833e-05, -1.2052983468971533e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971533e-07, -5.5443723957268904e-06, -1.2052983468971589e-06, -1.2052983468971528e-07, -9.6423867751772224e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -9.6423867751772202e-07, -1.9284773550354449e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -3.7002659249743252e-05, -9.6423867751772245e-07, -2.4105966937943252e-05, -9.6423867751772245e-07, -2.4105966937943061e-07, -7.2317900813829435e-06, -1.4463580162766041e-06, -6.0264917344858137e-07, -7.2317900813830256e-06, -1.2052983468971533e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9525833219734108e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.7601332143944705e-05, -3.6158950406915071e-07, -2.4105966937943275e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971533e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943056e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9525833219734152e-05, -9.6423867751772224e-07, -9.6423867751772224e-07, -3.2543055366223038e-06, -1.1570864130212833e-05, -9.6423867751772245e-07, -8.5576182629696897e-06, -1.4463580162766028e-06, -1.4463580162766028e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971691e-06, -9.6423867751772224e-07, -1.2052983468971589e-06, -2.5311265284840377e-06, -9.6423867751772245e-07, -6.026491734485837e-07, -2.7721861978634439e-06, -9.6423867751772245e-07, -1.4463580162766041e-06, -3.6158950406915553e-07, -6.0264917344858116e-07, -2.4105966937943051e-07, -1.2052983468971528e-07, -1.2052983468971533e-07, -9.6423867751772224e-07, -1.4463580162766035e-06, -7.2317900813830714e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772202e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -1.928477355035444e-06, -9.6423867751772266e-07, -4.8211933875886122e-07, -9.6423867751772202e-07, -1.2052983468971533e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354445e-06, -2.8927160325532065e-06, -9.6423867751772245e-07, -1.9284773550354445e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.08476851220743e-06, -4.0980143794503176e-06, -2.4105966937943051e-07, -9.6423867751772202e-07, -9.6423867751772266e-07, -1.08476851220743e-06, -3.1337757019326237e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -1.2052983468971525e-07, -1.2052983468971528e-07, -2.4105966937943066e-07, -2.0490071897251342e-06, -3.6158950406914743e-06, -1.4463580162766041e-06, -7.2317900813830586e-07, -1.2052983468971533e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -2.8927160325531608e-06, -9.6423867751772202e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -1.4463580162766039e-06, -9.6423867751772245e-07, -1.2052983468971528e-07, -2.4105966937943056e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.0847685122074283e-06, -6.0264917344858286e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -8.6781480976594366e-06, -4.8211933875886112e-07, -1.2052983468971533e-07, -7.2317900813829435e-06, -9.6423867751772245e-07, -5.7854320651062961e-06, -5.7854320651062792e-06, -6.0264917344856816e-06, -5.7854320651062961e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772224e-07, -1.2052983468971528e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -8.4370884282800715e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.3523199160726726e-06, -2.4105966937943056e-07, -8.6781480976594468e-06, -8.6781480976594502e-06, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -8.6781480976594502e-06, -8.6781480976594332e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943061e-07, -2.4105966937943056e-07, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.6158950406915087e-07, -1.9284773550354453e-06, -3.4712592390637597e-05, -3.471259239063776e-05, -3.4712592390637706e-05, -3.4712592390637611e-05, -1.7356296195319073e-05, -1.7356296195319066e-05, -3.4712592390638146e-05, -3.471259239063816e-05, -4.3390740488297217e-06, -4.3390740488297268e-06, -0.0008721538838147876, -0.0008678148097659681, -2.169537024414875e-05, -4.3390740488297234e-06, -1.3017222146489188e-05, -4.3390740488297236e-05, -0.00034712592390637702, -8.6781480976594535e-06, -0.00039919481249234235, -4.3390740488297717e-06, -6.9425184781275411e-05, -6.9425184781275493e-05, -3.4712592390638173e-05, -3.4712592390638119e-05, -0.00034712592390637702, -0.00034712592390637702, -3.471259239063839e-05, -0.00098496980908435489, -8.6781480976593892e-06, -0.0008678148097659565, -6.9425184781275357e-05, -3.4712592390637746e-05, -3.4712592390637584e-05, -4.3390740488297742e-06, -4.3390740488297234e-06, -3.4712592390637882e-05, -3.4712592390637841e-05, -8.6781480976593926e-06, -8.6781480976593926e-06, -4.3390740488297751e-06, -4.3390740488297463e-06, -3.47125923906382e-05, -2.1695370244148706e-05, -1.3017222146489222e-05, -1.7356296195319066e-05, -1.7356296195319073e-05, -4.3390740488297234e-06, -6.5086110732446399e-05, -3.471259239063797e-05, -3.4712592390637943e-05, -3.9051666439468263e-05, -3.4712592390638187e-05, -6.5086110732446561e-05, -8.6781480976594434e-06, -4.3390740488297031e-06, -3.4712592390638173e-05, -3.471259239063816e-05, -4.33907404882972e-06, -4.3390740488297335e-06, -3.4712592390637929e-05, -3.4712592390637984e-05, -8.6781480976596179e-06, -4.339074048829753e-06, -3.4712592390638065e-05, -6.9425184781275967e-05, -4.339074048829733e-05, -3.4712592390637868e-05, -6.9425184781276265e-05, -4.3390740488297183e-06, -3.4712592390637882e-05, -7.3764258830105386e-05, -3.4712592390637882e-05, -3.4712592390638024e-05, -6.9425184781275466e-05, -0.00013885036956255416, -0.00010847685122074416, -3.4712592390638133e-05, -6.9425184781275547e-05, -6.9425184781275628e-05, -1.7356296195318792e-05, -3.4712592390637984e-05, -4.3390740488297317e-05, -4.7729814537127875e-05, -1.7356296195318785e-05, -6.942518478127697e-05, -3.4712592390637868e-05, -3.4712592390637868e-05, -3.4712592390637855e-05, -8.6781480976596179e-06, -3.4712592390637665e-05, -3.4712592390638133e-05, -4.3390740488296963e-06, -3.4712592390638119e-05, -8.6781480976595196e-06, -3.4712592390637679e-05, -3.4712592390637895e-05, -3.4712592390637855e-05, -4.3390740488297183e-06, -6.9425184781275601e-05, -6.9425184781275547e-05, -4.3390740488297319e-06, -3.4712592390637882e-05, -3.4712592390637916e-05, -4.3390740488297268e-06, -3.4712592390637597e-05, -3.4712592390637652e-05, -3.4712592390638038e-05, -3.4712592390637624e-05, -0.0001041377771719134, -3.4712592390637624e-05, -3.4712592390638106e-05, -3.4712592390637895e-05, -4.3390740488297463e-06, -3.4712592390638051e-05, -3.4712592390637916e-05, -6.9425184781275913e-05, -1.7356296195319073e-05, -7.8103332878936757e-05, -1.7356296195319066e-05, -4.3390740488297047e-06, -8.6781480976594857e-06, -5.640796263478737e-05, -3.4712592390637855e-05, -6.9425184781276807e-05, -0.00036448222010170087, -3.4712592390637929e-05, -0.00038183851629701725, -3.4712592390637984e-05, -3.4712592390638038e-05, -6.9425184781275628e-05, -0.00034712592390637881, -6.9425184781275547e-05, -0.000351464997955215, -4.3390740488297734e-06, -6.9425184781275493e-05, -6.9425184781275683e-05, -1.7356296195318826e-05, -0.00036448222010170087, -0.00034712592390637702, -0.00034712592390637891, -0.00034712592390637864, -4.3390740488297217e-06, -1.7356296195319141e-05, -4.3390740488297564e-06, -4.3390740488297115e-06, -4.3390740488296963e-06, -3.4712592390637868e-05, -3.4712592390637855e-05, -3.4712592390637882e-05, -3.4712592390637868e-05, -4.3390740488297564e-06, -4.3390740488297513e-06, -4.3390740488297564e-06, -3.4712592390637706e-05, -4.3390740488297154e-05, -8.678148097659462e-05, -6.9425184781276889e-05, -6.9425184781275994e-05, -3.4712592390637733e-05, -0.00010413777717191375, -1.3017222146489218e-05, -0.00038183851629702413, -6.9425184781276076e-05, -0.00031241333151574513, -4.3390740488297251e-06, -4.3390740488297412e-06, -0.00010847685122074454, -6.9425184781275913e-05, -3.471259239063797e-05, -3.0373518341808557e-05, -1.7356296195319134e-05, -8.6781480976594502e-06, 0.0173649743434168, -8.6781480976594434e-06, -1.7356296195319066e-05, -1.7356296195319073e-05, -0.00031241333151574508, -3.4712592390638078e-05, -4.3390740488297429e-06, -3.4712592390637956e-05, -4.3390740488297564e-06, -3.4712592390638011e-05, -4.3390740488297317e-05, -1.3017222146489207e-05, -3.4712592390637984e-05, -6.5086110732446751e-05, -4.3390740488297751e-06, -3.4712592390638092e-05, -8.6781480976593892e-06, -8.6781480976593959e-06, -8.6781480976594095e-06, -4.3390740488297352e-06, -2.6034444292978478e-05, -1.3017222146489222e-05, -3.4712592390637895e-05, -3.4712592390637841e-05, -6.9425184781276211e-05, -0.00011281592526957417, -9.9798703123085616e-05, -4.3390740488297751e-06, -6.9425184781276807e-05, -3.4712592390637787e-05, -2.6034444292978471e-05, -8.6781480976595637e-06, -4.3390740488297513e-06, -4.3390740488297115e-06, -0.00034712592390637864, -0.00034712592390637891, -0.00070292999591042935, -0.00034712592390637891, -0.00034712592390637881, -1.7356296195318785e-05, -8.6781480976595738e-06, -3.4712592390638404e-05, -3.905166643946825e-05, -1.7356296195318792e-05, -4.7729814537127414e-05, -4.3390740488297352e-06, -4.3390740488297717e-06, -6.9425184781276591e-05, -3.4712592390638078e-05, -3.4712592390638024e-05, -4.3390740488297412e-06, -4.3390740488297217e-06, -1.7356296195318927e-05, -1.7356296195318914e-05, -6.9425184781276807e-05, -3.4712592390637746e-05, -4.3390740488297615e-06, -0.00070292999591042718, -3.4712592390637868e-05, -3.4712592390637882e-05, -4.3390740488297319e-06, -1.7356296195318921e-05, -1.7356296195318921e-05, -8.6781480976595467e-06, -8.6781480976595433e-06, -1.3017222146489222e-05, -4.33907404882972e-06, -8.6781480976595433e-06, -8.6781480976595467e-06, -4.3390740488297496e-06, -4.3390740488297217e-06, -1.7356296195319134e-05, -5.2068888585957009e-05, -3.4712592390638106e-05, -4.3390740488297581e-06, -4.3390740488297717e-06, -7.810333287893673e-05, -4.3390740488297335e-06, -1.7356296195319229e-05, -8.6781480976595264e-06, -6.9425184781276347e-05, -6.9425184781276265e-05, -2.1695370244148753e-05, -1.7356296195318894e-05, -8.6781480976596145e-06, -2.6034444292978518e-05, -0.00036882129415053062, -4.3390740488297446e-06, -1.7356296195318894e-05, -1.73562961953189e-05, -6.9425184781276211e-05, -6.9425184781276401e-05, -1.7356296195318958e-05, -1.7356296195319019e-05, -1.7356296195319026e-05, -4.3390740488297564e-06, -0.00019959740624616993, -4.3390740488297398e-05, -4.3390740488297183e-06, -3.4712592390637882e-05, -3.4712592390638404e-05, -3.4712592390637868e-05, -6.9425184781276401e-05, -3.4712592390638295e-05, -6.9425184781276211e-05, -3.4712592390638404e-05, -3.4712592390638404e-05, -0.0013320957329907342, -3.4712592390637801e-05, -0.00086781480976596246, -3.4712592390638051e-05, -8.67814809765944e-06, -0.00026034444292978852, -5.2068888585956914e-05, -2.1695370244148686e-05, -0.00026034444292978581, -4.3390740488297683e-06, -3.4712592390637855e-05, -3.4712592390637868e-05, -0.00070292999591042718, -3.4712592390638038e-05, -3.4712592390638024e-05, -0.0009936479571820121, -1.3017222146489195e-05, -0.00086781480976596225, -3.4712592390637916e-05, -3.4712592390637882e-05, -4.3390740488297496e-06, -3.4712592390637882e-05, -3.4712592390637841e-05, -4.3390740488297615e-06, -6.9425184781276265e-05, -6.9425184781276347e-05, -8.6781480976594095e-06, -1.7356296195318921e-05, -1.7356296195318921e-05, -3.4712592390637787e-05, -3.471259239063776e-05, -0.00070292999591042935, -3.4712592390637841e-05, -3.4712592390637895e-05, -0.00011715499931840388, -0.0004165511086876551, -3.4712592390637868e-05, -0.00030807425746691582, -5.2068888585956779e-05, -5.2068888585956806e-05, -3.471259239063776e-05, -3.4712592390637652e-05, -4.3390740488297168e-05, -3.4712592390637597e-05, -4.3390740488297222e-05, -9.1120555025425246e-05, -3.4712592390638078e-05, -2.1695370244148611e-05, -9.9798703123085182e-05, -3.4712592390638051e-05, -5.2068888585956914e-05, -1.3017222146489222e-05, -2.1695370244148679e-05, -8.6781480976594061e-06, -4.3390740488297217e-06, -4.3390740488297429e-06, -3.4712592390637584e-05, -5.206888858595686e-05, -2.6034444292978471e-05, -1.7356296195319046e-05, -3.4712592390637733e-05, -3.471259239063839e-05, -3.4712592390638404e-05, -6.9425184781276618e-05, -3.4712592390638173e-05, -1.73562961953189e-05, -6.9425184781276374e-05, -3.471259239063816e-05, -1.7356296195318894e-05, -3.4712592390638404e-05, -4.3390740488297683e-06, -3.471259239063816e-05, -3.4712592390638173e-05, -6.9425184781275547e-05, -0.00010413777717191367, -3.4712592390637997e-05, -6.9425184781275357e-05, -6.9425184781275547e-05, -3.471259239063816e-05, -3.4712592390638146e-05, -3.4712592390638051e-05, -3.4712592390638011e-05, -3.9051666439468528e-05, -0.00014752851766021056, -8.678148097659628e-06, -3.4712592390637624e-05, -3.4712592390638187e-05, -3.9051666439468534e-05, -0.00011281592526957507, -3.471259239063776e-05, -3.4712592390637956e-05, -3.4712592390637597e-05, -1.7356296195318894e-05, -1.73562961953189e-05, -4.3390740488297251e-06, -4.3390740488296963e-06, -4.3390740488297183e-06, -8.6781480976594705e-06, -7.3764258830106552e-05, -0.00013017222146489291, -5.2068888585956941e-05, -2.6034444292978478e-05, -4.3390740488297463e-06, -1.7356296195318921e-05, -6.9425184781276076e-05, -0.00010413777717191357, -3.4712592390637638e-05, -1.7356296195318921e-05, -6.942518478127594e-05, -6.9425184781275994e-05, -1.7356296195318921e-05, -5.2068888585956914e-05, -3.4712592390638038e-05, -4.3390740488297031e-06, -8.6781480976596213e-06, -1.7356296195318921e-05, -1.7356296195318958e-05, -3.9051666439468446e-05, -2.1695370244148645e-05, -3.4712592390637801e-05, -6.9425184781275994e-05, -0.00031241333151574513, -1.7356296195318826e-05, -4.3390740488297547e-06, -0.00026034444292978809, -3.4712592390637895e-05, -0.00020827555434382763, -0.00020827555434382766, -0.00021695370244149032, -0.00020827555434382763, -1.7356296195318826e-05, -1.7356296195318833e-05, -3.4712592390637956e-05, -3.4712592390638011e-05, -1.7356296195318999e-05, -1.7356296195319005e-05, -3.4712592390637679e-05, -4.3390740488297047e-06, -3.4712592390637665e-05, -4.3390740488297479e-06, -4.3390740488297268e-06, -0.00030373518341808006, -1.7356296195319005e-05, -1.7356296195318999e-05, -0.00026468351697861518, -8.6781480976594502e-06, -0.00031241333151574508, 0.0173649743434168, -3.4712592390637882e-05, -4.3390740488297479e-06, -3.4712592390637929e-05, -0.00031241333151574513, -0.00031241333151574481, -3.4712592390638024e-05, -3.4712592390638065e-05, -8.678148097659523e-06, -8.6781480976594502e-06, -6.9425184781276374e-05, -3.4712592390638051e-05, -3.4712592390638038e-05, -1.3017222146489212e-05, -6.9425184781276374e-05, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -2.4226496772633041e-05, -2.4105966937943106e-05, -6.0264917344857947e-07, -1.2052983468971531e-07, -3.6158950406915071e-07, -1.2052983468971666e-06, -9.6423867751773596e-06, -2.4105966937943061e-07, -1.1088744791453816e-05, -1.2052983468971531e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751773613e-06, -9.6423867751773596e-06, -9.6423867751772224e-07, -2.7360272474565218e-05, -2.4105966937943051e-07, -2.4105966937943428e-05, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943051e-07, -2.4105966937943051e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -9.6423867751772181e-07, -6.0264917344857947e-07, -3.6158950406915103e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -1.80794752034576e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.0847685122074245e-06, -9.6423867751772245e-07, -1.8079475203457547e-06, 0.00049079748685652283, -1.2052983468971528e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971528e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943051e-07, -1.2052983468971533e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.2052983468971642e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.2052983468971528e-07, -9.6423867751772245e-07, -2.0490071897251414e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -1.9284773550354445e-06, -3.8569547100708873e-06, -3.0132458672428959e-06, -9.6423867751772245e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -1.2052983468971644e-06, -1.3258281815868631e-06, -4.8211933875886101e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943056e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -2.4105966937943056e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772266e-07, -9.6423867751772224e-07, -2.8927160325532057e-06, -9.6423867751772202e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -4.8211933875886133e-07, -2.1695370244148532e-06, -4.8211933875886133e-07, -1.2052983468971528e-07, -2.4105966937943066e-07, -1.5668878509663148e-06, -9.6423867751772245e-07, -1.9284773550354445e-06, -1.0124506113936171e-05, -9.6423867751772245e-07, -1.0606625452694913e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354445e-06, -9.6423867751773037e-06, -1.9284773550354445e-06, -9.7629166098670286e-06, -1.2052983468971531e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886112e-07, -1.0124506113936169e-05, -9.6423867751773596e-06, -9.6423867751772596e-06, -9.6423867751773257e-06, -1.2052983468971528e-07, -4.8211933875886091e-07, -1.2052983468971533e-07, -1.2052983468971528e-07, -1.2052983468971525e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -9.6423867751772224e-07, -1.2052983468971683e-06, -2.4105966937943306e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -2.8927160325532086e-06, -3.6158950406915632e-07, -1.0606625452694989e-05, -1.9284773550354449e-06, -8.6781480976594468e-06, -1.2052983468971531e-07, -1.2052983468971533e-07, -3.0132458672428878e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -8.437088428280204e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -8.6781480976594434e-06, 0.00049079748685652283, -4.8211933875886133e-07, -4.8211933875886133e-07, -8.6781480976594434e-06, -9.6423867751772266e-07, -1.2052983468971533e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.2052983468971636e-06, -3.6158950406915103e-07, -9.6423867751772245e-07, -1.8079475203457479e-06, -1.2052983468971533e-07, -9.6423867751772266e-07, -2.4105966937943051e-07, -2.4105966937943051e-07, -2.4105966937943056e-07, -1.2052983468971533e-07, -7.2317900813830608e-07, -3.615895040691424e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -3.1337757019326212e-06, -2.7721861978634553e-06, -1.2052983468971533e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -7.2317900813830766e-07, -2.4105966937943056e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -9.6423867751773257e-06, -9.6423867751772596e-06, -1.9525833219734152e-05, -9.6423867751772766e-06, -9.6423867751773037e-06, -4.8211933875886101e-07, -2.4105966937943061e-07, -9.6423867751772202e-07, -1.0847685122074224e-06, -4.8211933875886101e-07, -1.3258281815868699e-06, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -9.6423867751772245e-07, -1.2052983468971533e-07, -1.9525833219734111e-05, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -3.6158950406915113e-07, -1.2052983468971531e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -4.8211933875886101e-07, -1.446358016276605e-06, -9.6423867751772245e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -2.1695370244148575e-06, -1.2052983468971531e-07, -4.8211933875886091e-07, -2.4105966937943056e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -6.0264917344858254e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -7.2317900813830205e-07, -1.0245035948625833e-05, -1.2052983468971533e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971533e-07, -5.5443723957268895e-06, -1.2052983468971589e-06, -1.2052983468971528e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.7002659249743252e-05, -9.6423867751772245e-07, -2.4105966937943258e-05, -9.6423867751772245e-07, -2.4105966937943061e-07, -7.231790081382946e-06, -1.4463580162766045e-06, -6.0264917344858137e-07, -7.2317900813830265e-06, -1.2052983468971533e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9525833219734111e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.7601332143944705e-05, -3.6158950406915081e-07, -2.4105966937943282e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971533e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943056e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9525833219734152e-05, -9.6423867751772224e-07, -9.6423867751772224e-07, -3.2543055366223033e-06, -1.1570864130212835e-05, -9.6423867751772245e-07, -8.5576182629696863e-06, -1.4463580162766033e-06, -1.4463580162766033e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971691e-06, -9.6423867751772224e-07, -1.2052983468971672e-06, -2.5311265284840411e-06, -9.6423867751772245e-07, -6.0264917344858381e-07, -2.7721861978634401e-06, -9.6423867751772245e-07, -1.4463580162766045e-06, -3.6158950406915563e-07, -6.0264917344858127e-07, -2.4105966937943051e-07, -1.2052983468971528e-07, -1.2052983468971533e-07, -9.6423867751772224e-07, -1.4463580162766039e-06, -7.2317900813830735e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.9284773550354445e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -9.6423867751772266e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.2052983468971533e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354445e-06, -2.8927160325532074e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.0847685122074296e-06, -4.0980143794503083e-06, -2.4105966937943051e-07, -9.6423867751772202e-07, -9.6423867751772266e-07, -1.0847685122074296e-06, -3.1337757019325462e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -1.2052983468971525e-07, -1.2052983468971528e-07, -2.4105966937943066e-07, -2.0490071897251338e-06, -3.6158950406914768e-06, -1.4463580162766045e-06, -7.2317900813830608e-07, -1.2052983468971533e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -2.8927160325532074e-06, -9.6423867751772202e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -1.4463580162766043e-06, -9.6423867751772245e-07, -1.2052983468971528e-07, -2.4105966937943056e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.0847685122074279e-06, -6.0264917344858286e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -8.6781480976594332e-06, -4.8211933875886112e-07, -1.2052983468971533e-07, -7.2317900813829443e-06, -9.6423867751772245e-07, -5.785432065106502e-06, -5.7854320651064147e-06, -6.0264917344857909e-06, -5.785432065106502e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772224e-07, -1.2052983468971528e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -8.4370884282800698e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.3523199160726726e-06, -2.4105966937943056e-07, -8.6781480976594434e-06, -8.6781480976594434e-06, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -8.6781480976594468e-06, -8.6781480976594298e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943061e-07, -2.4105966937943056e-07, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.6158950406915097e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, 0.00098111285437428629, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -2.4105966937943072e-07, -4.8452993545265824e-05, -4.8211933875885947e-05, -1.2052983468971534e-06, -2.4105966937943066e-07, -7.2317900813829464e-07, -2.4105966937943221e-06, -1.9284773550354624e-05, -4.8211933875886144e-07, -2.2177489582907785e-05, -2.4105966937943072e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354624e-05, -1.9284773550354624e-05, -1.9284773550354449e-06, -5.4720544949130713e-05, -4.8211933875886122e-07, -4.8211933875886578e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.928477355035444e-06, -1.2052983468971534e-06, -7.2317900813829507e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -3.6158950406915009e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.1695370244148714e-06, -1.9284773550354457e-06, -3.6158950406914887e-06, -4.8211933875886133e-07, -2.4105966937943061e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.9284773550354457e-06, -3.8569547100708915e-06, -2.4105966937943166e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -2.4105966937943066e-07, -1.9284773550354457e-06, -4.0980143794503151e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -7.7139094201417779e-06, -6.0264917344857587e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -2.4105966937943174e-06, -2.6516563631737321e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -2.4105966937943061e-07, -1.9284773550354457e-06, -4.8211933875886133e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -5.7854320651063571e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -4.3390740488297717e-06, -9.6423867751772287e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -3.1337757019326093e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -2.0249012227872308e-05, -1.9284773550354457e-06, -2.1213250905389884e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -1.9284773550354506e-05, -3.8569547100708906e-06, -1.9525833219734017e-05, -2.4105966937943072e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -2.0249012227872302e-05, -1.9284773550354624e-05, -1.9284773550354492e-05, -1.928477355035454e-05, -2.4105966937943066e-07, -9.6423867751772245e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -2.4105966937943255e-06, -4.8211933875886391e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -5.7854320651063622e-06, -7.2317900813830576e-07, -2.121325090539005e-05, -3.8569547100708906e-06, -1.7356296195319073e-05, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857587e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.6874176856560222e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -1.7356296195319066e-05, -4.8211933875886133e-07, 0.00098111285437428629, -9.6423867751772287e-07, -1.7356296195319066e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -2.4105966937943153e-06, -7.2317900813829507e-07, -1.9284773550354457e-06, -3.6158950406914777e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.4463580162765982e-06, -7.2317900813830407e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -6.2675514038652017e-06, -5.5443723957269471e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.4463580162766011e-06, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.928477355035454e-05, -1.9284773550354492e-05, -3.9051666439468141e-05, -1.9284773550354492e-05, -1.9284773550354506e-05, -9.6423867751772245e-07, -4.8211933875886144e-07, -1.9284773550354445e-06, -2.1695370244148668e-06, -9.6423867751772245e-07, -2.6516563631737469e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.8569547100708898e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.905166643946806e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -7.2317900813829507e-07, -2.4105966937943066e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -9.6423867751772245e-07, -2.8927160325531828e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297615e-06, -2.4105966937943072e-07, -9.6423867751772202e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.2052983468971587e-06, -9.6423867751772287e-07, -4.8211933875886133e-07, -1.4463580162765897e-06, -2.0490071897251667e-05, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.1088744791453852e-05, -2.4105966937943069e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.4005318499485785e-05, -1.9284773550354453e-06, -4.8211933875886246e-05, -1.9284773550354457e-06, -4.8211933875886133e-07, -1.4463580162765819e-05, -2.892716032553182e-06, -1.2052983468971568e-06, -1.4463580162765982e-05, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.905166643946806e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -5.520266428788983e-05, -7.2317900813829464e-07, -4.8211933875886286e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.9051666439468141e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -6.508611073244616e-06, -2.3141728260425456e-05, -1.9284773550354457e-06, -1.7115236525939522e-05, -2.8927160325531803e-06, -2.8927160325531803e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943263e-06, -1.9284773550354449e-06, -2.4105966937943213e-06, -5.0622530569680737e-06, -1.9284773550354457e-06, -1.2052983468971619e-06, -5.5443723957269226e-06, -1.9284773550354457e-06, -2.892716032553182e-06, -7.2317900813830438e-07, -1.2052983468971568e-06, -4.8211933875886122e-07, -2.4105966937943066e-07, -2.4105966937943072e-07, -1.9284773550354449e-06, -2.8927160325531676e-06, -1.4463580162765893e-06, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -3.8569547100708898e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -1.9284773550354449e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -5.7854320651063605e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.1695370244148926e-06, -8.1960287589006775e-06, -4.8211933875886112e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -2.1695370244148816e-06, -6.2675514038652373e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -2.4105966937943066e-07, -4.8211933875886144e-07, -4.0980143794502905e-06, -7.2317900813829147e-06, -2.892716032553182e-06, -1.4463580162765982e-06, -2.4105966937943072e-07, -9.6423867751772287e-07, -3.8569547100708906e-06, -5.7854320651063597e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -2.8927160325531811e-06, -1.9284773550354457e-06, -2.4105966937943061e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.1695370244148884e-06, -1.2052983468971602e-06, -1.9284773550354453e-06, -3.8569547100708915e-06, -1.7356296195319046e-05, -9.6423867751772245e-07, -2.4105966937943072e-07, -1.4463580162765819e-05, -1.9284773550354457e-06, -1.1570864130212894e-05, -1.1570864130212721e-05, -1.2052983468971516e-05, -1.1570864130212894e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.6874176856560245e-05, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4704639832145308e-05, -4.8211933875886133e-07, -1.7356296195319066e-05, -1.7356296195319066e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.7356296195319073e-05, -1.7356296195319039e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.2317900813829528e-07, -3.8569547100708915e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, 0.00098111285437428629, -9.6423867751772287e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -2.4105966937943072e-07, -4.8452993545265811e-05, -4.8211933875885934e-05, -1.2052983468971534e-06, -2.4105966937943066e-07, -7.2317900813829464e-07, -2.4105966937943221e-06, -1.9284773550354624e-05, -4.8211933875886144e-07, -2.2177489582907792e-05, -2.4105966937943072e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354624e-05, -1.9284773550354624e-05, -1.9284773550354449e-06, -5.4720544949130727e-05, -4.8211933875886122e-07, -4.8211933875886578e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.928477355035444e-06, -1.2052983468971534e-06, -7.2317900813829507e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -3.6158950406915001e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.1695370244148723e-06, -1.9284773550354457e-06, -3.615895040691487e-06, -4.8211933875886133e-07, -2.4105966937943061e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.9284773550354457e-06, -3.8569547100708915e-06, -2.4105966937943166e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -2.4105966937943066e-07, -1.9284773550354457e-06, -4.0980143794503159e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -7.7139094201417779e-06, -6.026491734485757e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -2.4105966937943174e-06, -2.6516563631737321e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -2.4105966937943061e-07, -1.9284773550354457e-06, -4.8211933875886133e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -5.7854320651063571e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -4.33907404882977e-06, -9.6423867751772287e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -3.133775701932611e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -2.0249012227872308e-05, -1.9284773550354457e-06, -2.1213250905389884e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -1.9284773550354506e-05, -3.8569547100708906e-06, -1.9525833219734017e-05, -2.4105966937943072e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -2.0249012227872302e-05, -1.9284773550354624e-05, -1.9284773550354492e-05, -1.928477355035454e-05, -2.4105966937943066e-07, -9.6423867751772245e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -2.4105966937943255e-06, -4.8211933875886391e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -5.7854320651063622e-06, -7.2317900813830576e-07, -2.121325090539005e-05, -3.8569547100708906e-06, -1.735629619531908e-05, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857621e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.6874176856560226e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -1.7356296195319073e-05, -4.8211933875886133e-07, -9.6423867751772287e-07, 0.00098111285437428629, -1.7356296195319073e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -2.4105966937943153e-06, -7.2317900813829507e-07, -1.9284773550354457e-06, -3.6158950406914768e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.4463580162765982e-06, -7.2317900813830407e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -6.2675514038652034e-06, -5.5443723957269505e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.4463580162766011e-06, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.928477355035454e-05, -1.9284773550354492e-05, -3.9051666439468141e-05, -1.9284773550354492e-05, -1.9284773550354506e-05, -9.6423867751772245e-07, -4.8211933875886144e-07, -1.9284773550354445e-06, -2.1695370244148676e-06, -9.6423867751772245e-07, -2.6516563631737469e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.8569547100708898e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.905166643946806e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -7.2317900813829507e-07, -2.4105966937943066e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -9.6423867751772245e-07, -2.8927160325531828e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297632e-06, -2.4105966937943072e-07, -9.6423867751772202e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.2052983468971587e-06, -9.6423867751772287e-07, -4.8211933875886133e-07, -1.4463580162765897e-06, -2.0490071897251667e-05, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.1088744791453855e-05, -2.4105966937943069e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.4005318499485758e-05, -1.9284773550354453e-06, -4.8211933875886246e-05, -1.9284773550354457e-06, -4.8211933875886133e-07, -1.4463580162765819e-05, -2.892716032553182e-06, -1.2052983468971568e-06, -1.4463580162765978e-05, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.905166643946806e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -5.520266428788983e-05, -7.2317900813829464e-07, -4.8211933875886286e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.9051666439468141e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -6.508611073244616e-06, -2.3141728260425449e-05, -1.9284773550354457e-06, -1.7115236525939522e-05, -2.8927160325531803e-06, -2.8927160325531803e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943263e-06, -1.9284773550354449e-06, -2.4105966937943213e-06, -5.0622530569680737e-06, -1.9284773550354457e-06, -1.2052983468971619e-06, -5.5443723957269242e-06, -1.9284773550354457e-06, -2.892716032553182e-06, -7.2317900813830438e-07, -1.2052983468971568e-06, -4.8211933875886122e-07, -2.4105966937943066e-07, -2.4105966937943072e-07, -1.9284773550354449e-06, -2.8927160325531692e-06, -1.4463580162765889e-06, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -3.8569547100708898e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -1.9284773550354449e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -5.7854320651063605e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.1695370244148909e-06, -8.1960287589006742e-06, -4.8211933875886112e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -2.1695370244148824e-06, -6.2675514038652373e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -2.4105966937943066e-07, -4.8211933875886144e-07, -4.0980143794502913e-06, -7.231790081382913e-06, -2.892716032553182e-06, -1.4463580162765982e-06, -2.4105966937943072e-07, -9.6423867751772287e-07, -3.8569547100708906e-06, -5.7854320651063597e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -2.8927160325531811e-06, -1.9284773550354457e-06, -2.4105966937943061e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.1695370244148875e-06, -1.2052983468971602e-06, -1.9284773550354453e-06, -3.8569547100708915e-06, -1.7356296195319053e-05, -9.6423867751772245e-07, -2.4105966937943072e-07, -1.4463580162765816e-05, -1.9284773550354457e-06, -1.1570864130212894e-05, -1.1570864130212721e-05, -1.2052983468971514e-05, -1.1570864130212894e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.6874176856560245e-05, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4704639832145305e-05, -4.8211933875886133e-07, -1.7356296195319073e-05, -1.7356296195319073e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.735629619531908e-05, -1.7356296195319046e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.2317900813829528e-07, -3.8569547100708915e-06, -3.4712592390637597e-05, -3.4712592390637746e-05, -3.4712592390637706e-05, -3.4712592390637611e-05, -1.7356296195319073e-05, -1.7356296195319066e-05, -3.4712592390638146e-05, -3.471259239063816e-05, -4.3390740488297217e-06, -4.3390740488297268e-06, -0.00087215388381478738, -0.0008678148097659681, -2.169537024414875e-05, -4.3390740488297234e-06, -1.3017222146489188e-05, -4.3390740488297236e-05, -0.00034712592390637702, -8.6781480976594535e-06, -0.00039919481249234235, -4.3390740488297717e-06, -6.9425184781275411e-05, -6.9425184781275493e-05, -3.4712592390638173e-05, -3.4712592390638119e-05, -0.00034712592390637702, -0.00034712592390637702, -3.471259239063839e-05, -0.00098496980908435467, -8.6781480976593892e-06, -0.00086781480976595628, -6.9425184781275357e-05, -3.4712592390637733e-05, -3.471259239063757e-05, -4.3390740488297734e-06, -4.3390740488297234e-06, -3.4712592390637882e-05, -3.4712592390637828e-05, -8.6781480976593892e-06, -8.6781480976593926e-06, -4.3390740488297734e-06, -4.3390740488297446e-06, -3.47125923906382e-05, -2.1695370244148706e-05, -1.3017222146489222e-05, -1.735629619531906e-05, -1.7356296195319073e-05, -4.3390740488297234e-06, -6.508611073244629e-05, -3.471259239063797e-05, -3.4712592390637943e-05, -3.9051666439468263e-05, -3.4712592390638187e-05, -6.5086110732446453e-05, -8.6781480976594434e-06, -4.3390740488297031e-06, -3.4712592390638173e-05, -3.4712592390638146e-05, -4.33907404882972e-06, -4.3390740488297335e-06, -3.4712592390637929e-05, -3.4712592390637984e-05, -8.6781480976596179e-06, -4.3390740488297513e-06, -3.4712592390638065e-05, -6.9425184781275967e-05, -4.339074048829733e-05, -3.4712592390637855e-05, -6.9425184781276238e-05, -4.3390740488297183e-06, -3.4712592390637882e-05, -7.3764258830105386e-05, -3.4712592390637882e-05, -3.4712592390638011e-05, -6.9425184781275439e-05, -0.00013885036956255416, -0.00010847685122074416, -3.4712592390638133e-05, -6.9425184781275547e-05, -6.9425184781275628e-05, -1.7356296195318785e-05, -3.471259239063797e-05, -4.339074048829733e-05, -4.7729814537127868e-05, -1.7356296195318785e-05, -6.942518478127697e-05, -3.4712592390637868e-05, -3.4712592390637868e-05, -3.4712592390637855e-05, -8.6781480976596145e-06, -3.4712592390637665e-05, -3.4712592390638133e-05, -4.3390740488296963e-06, -3.4712592390638119e-05, -8.6781480976595162e-06, -3.4712592390637679e-05, -3.4712592390637895e-05, -3.4712592390637841e-05, -4.3390740488297166e-06, -6.9425184781275574e-05, -6.942518478127552e-05, -4.3390740488297302e-06, -3.4712592390637882e-05, -3.4712592390637895e-05, -4.3390740488297268e-06, -3.4712592390637584e-05, -3.4712592390637638e-05, -3.4712592390638024e-05, -3.4712592390637624e-05, -0.0001041377771719134, -3.4712592390637624e-05, -3.4712592390638092e-05, -3.4712592390637895e-05, -4.3390740488297463e-06, -3.4712592390638038e-05, -3.4712592390637916e-05, -6.9425184781275913e-05, -1.7356296195319073e-05, -7.8103332878936757e-05, -1.735629619531906e-05, -4.3390740488297031e-06, -8.6781480976594823e-06, -5.640796263478737e-05, -3.4712592390637841e-05, -6.942518478127678e-05, -0.00036448222010170082, -3.4712592390637929e-05, -0.0003818385162970172, -3.4712592390637984e-05, -3.4712592390638024e-05, -6.9425184781275628e-05, -0.00034712592390637886, -6.9425184781275547e-05, -0.000351464997955215, -4.3390740488297734e-06, -6.9425184781275493e-05, -6.9425184781275683e-05, -1.7356296195318819e-05, -0.00036448222010170082, -0.00034712592390637702, -0.00034712592390637891, -0.00034712592390637864, -4.33907404882972e-06, -1.7356296195319141e-05, -4.3390740488297564e-06, -4.3390740488297098e-06, -4.3390740488296963e-06, -3.4712592390637868e-05, -3.4712592390637855e-05, -3.4712592390637868e-05, -3.4712592390637855e-05, -4.3390740488297547e-06, -4.3390740488297513e-06, -4.3390740488297547e-06, -3.4712592390637706e-05, -4.3390740488297154e-05, -8.6781480976594634e-05, -6.9425184781276862e-05, -6.9425184781275967e-05, -3.4712592390637719e-05, -0.00010413777717191375, -1.3017222146489215e-05, -0.00038183851629702489, -6.9425184781276048e-05, -0.00031241333151574546, -4.3390740488297234e-06, -4.3390740488297412e-06, -0.00010847685122074454, -6.9425184781275913e-05, -3.471259239063797e-05, -3.0373518341808557e-05, -1.7356296195319131e-05, -8.6781480976594468e-06, -0.00031241333151574508, -8.6781480976594434e-06, -1.7356296195319066e-05, -1.7356296195319073e-05, 0.0173649743434168, -3.4712592390638078e-05, -4.3390740488297429e-06, -3.4712592390637956e-05, -4.3390740488297547e-06, -3.4712592390638011e-05, -4.3390740488297317e-05, -1.3017222146489207e-05, -3.471259239063797e-05, -6.5086110732446643e-05, -4.3390740488297751e-06, -3.4712592390638092e-05, -8.6781480976593892e-06, -8.6781480976593926e-06, -8.6781480976594095e-06, -4.3390740488297335e-06, -2.6034444292978471e-05, -1.301722214648922e-05, -3.4712592390637929e-05, -3.4712592390637868e-05, -6.9425184781276184e-05, -0.00011281592526957417, -9.9798703123085616e-05, -4.3390740488297751e-06, -6.942518478127678e-05, -3.4712592390637773e-05, -2.6034444292978471e-05, -8.6781480976595603e-06, -4.3390740488297513e-06, -4.3390740488297115e-06, -0.00034712592390637864, -0.00034712592390637891, -0.0007029299959104313, -0.00034712592390637891, -0.00034712592390637886, -1.7356296195318785e-05, -8.6781480976595738e-06, -3.4712592390638404e-05, -3.905166643946825e-05, -1.7356296195318785e-05, -4.7729814537127414e-05, -4.3390740488297395e-06, -4.3390740488297717e-06, -6.9425184781276591e-05, -3.4712592390638078e-05, -3.4712592390638011e-05, -4.3390740488297395e-06, -4.3390740488297217e-06, -1.7356296195318927e-05, -1.7356296195318914e-05, -6.9425184781276807e-05, -3.4712592390637746e-05, -4.3390740488297615e-06, -0.00070292999591042718, -3.4712592390637895e-05, -3.4712592390637916e-05, -4.3390740488297302e-06, -1.7356296195318914e-05, -1.7356296195318921e-05, -8.6781480976595467e-06, -8.6781480976595433e-06, -1.3017222146489222e-05, -4.33907404882972e-06, -8.6781480976595433e-06, -8.6781480976595467e-06, -4.3390740488297496e-06, -4.33907404882972e-06, -1.7356296195319134e-05, -5.2068888585956996e-05, -3.4712592390638092e-05, -4.3390740488297564e-06, -4.3390740488297717e-06, -7.810333287893673e-05, -4.3390740488297335e-06, -1.7356296195319229e-05, -8.6781480976595264e-06, -6.9425184781276319e-05, -6.9425184781276265e-05, -2.1695370244148753e-05, -1.7356296195318894e-05, -8.6781480976596145e-06, -2.6034444292978518e-05, -0.00036882129415053056, -4.3390740488297446e-06, -1.7356296195318894e-05, -1.73562961953189e-05, -6.9425184781276184e-05, -6.9425184781276401e-05, -1.7356296195318948e-05, -1.7356296195319019e-05, -1.7356296195319019e-05, -4.3390740488297564e-06, -0.00019959740624616993, -4.3390740488297398e-05, -4.3390740488297166e-06, -3.4712592390637916e-05, -3.4712592390638404e-05, -3.4712592390637895e-05, -6.9425184781276401e-05, -3.4712592390638282e-05, -6.9425184781276184e-05, -3.4712592390638404e-05, -3.4712592390638404e-05, -0.0013320957329907345, -3.4712592390637787e-05, -0.00086781480976596246, -3.4712592390638038e-05, -8.67814809765944e-06, -0.00026034444292978809, -5.2068888585956914e-05, -2.1695370244148686e-05, -0.00026034444292978538, -4.3390740488297666e-06, -3.4712592390637855e-05, -3.4712592390637868e-05, -0.00070292999591042718, -3.4712592390638024e-05, -3.4712592390638011e-05, -0.0009936479571820121, -1.3017222146489195e-05, -0.00086781480976596203, -3.4712592390637895e-05, -3.4712592390637882e-05, -4.3390740488297479e-06, -3.4712592390637882e-05, -3.4712592390637841e-05, -4.3390740488297598e-06, -6.9425184781276265e-05, -6.9425184781276319e-05, -8.6781480976594095e-06, -1.7356296195318921e-05, -1.7356296195318914e-05, -3.4712592390637773e-05, -3.471259239063776e-05, -0.0007029299959104313, -3.4712592390637868e-05, -3.4712592390637929e-05, -0.0001171549993184039, -0.0004165511086876551, -3.4712592390637868e-05, -0.00030807425746691582, -5.2068888585956779e-05, -5.2068888585956806e-05, -3.4712592390637746e-05, -3.4712592390637638e-05, -4.3390740488297168e-05, -3.4712592390637584e-05, -4.3390740488297229e-05, -9.1120555025425218e-05, -3.4712592390638078e-05, -2.1695370244148611e-05, -9.9798703123085182e-05, -3.4712592390638038e-05, -5.2068888585956914e-05, -1.3017222146489222e-05, -2.1695370244148686e-05, -8.6781480976594061e-06, -4.33907404882972e-06, -4.3390740488297429e-06, -3.471259239063757e-05, -5.206888858595686e-05, -2.6034444292978471e-05, -1.7356296195319039e-05, -3.4712592390637719e-05, -3.471259239063839e-05, -3.4712592390638404e-05, -6.9425184781276618e-05, -3.4712592390638173e-05, -1.73562961953189e-05, -6.9425184781276374e-05, -3.471259239063816e-05, -1.7356296195318894e-05, -3.4712592390638404e-05, -4.3390740488297666e-06, -3.4712592390638146e-05, -3.4712592390638173e-05, -6.942518478127552e-05, -0.00010413777717191367, -3.4712592390637984e-05, -6.9425184781275357e-05, -6.9425184781275547e-05, -3.471259239063816e-05, -3.4712592390638146e-05, -3.4712592390638038e-05, -3.4712592390637997e-05, -3.9051666439468528e-05, -0.00014752851766021056, -8.678148097659628e-06, -3.4712592390637624e-05, -3.4712592390638173e-05, -3.9051666439468534e-05, -0.00011281592526957507, -3.4712592390637746e-05, -3.4712592390637956e-05, -3.4712592390637597e-05, -1.7356296195318894e-05, -1.73562961953189e-05, -4.3390740488297234e-06, -4.3390740488296963e-06, -4.3390740488297183e-06, -8.6781480976594671e-06, -7.3764258830106538e-05, -0.00013017222146489269, -5.2068888585956941e-05, -2.6034444292978471e-05, -4.3390740488297446e-06, -1.7356296195318921e-05, -6.9425184781276048e-05, -0.00010413777717191356, -3.4712592390637638e-05, -1.7356296195318921e-05, -6.9425184781275913e-05, -6.9425184781275967e-05, -1.7356296195318921e-05, -5.2068888585956901e-05, -3.4712592390638024e-05, -4.3390740488297031e-06, -8.6781480976596213e-06, -1.7356296195318921e-05, -1.7356296195318948e-05, -3.9051666439468446e-05, -2.1695370244148645e-05, -3.4712592390637787e-05, -6.9425184781275994e-05, -0.00031241333151574513, -1.7356296195318819e-05, -4.3390740488297547e-06, -0.00026034444292978765, -3.4712592390637895e-05, -0.0002082755543438276, -0.00020827555434382766, -0.00021695370244149037, -0.0002082755543438276, -1.7356296195318826e-05, -1.7356296195318826e-05, -3.4712592390637956e-05, -3.4712592390638011e-05, -1.7356296195318999e-05, -1.7356296195319005e-05, -3.4712592390637679e-05, -4.3390740488297047e-06, -3.4712592390637665e-05, -4.3390740488297463e-06, -4.3390740488297268e-06, -0.00030373518341808011, -1.7356296195319005e-05, -1.7356296195318999e-05, -0.00026468351697861463, -8.6781480976594569e-06, 0.0173649743434168, -0.00031241333151574508, -3.4712592390637882e-05, -4.3390740488297463e-06, -3.4712592390637929e-05, -0.00031241333151574546, -0.00031241333151574497, -3.4712592390638011e-05, -3.4712592390638065e-05, -8.6781480976595196e-06, -8.6781480976594468e-06, -6.9425184781276347e-05, -3.4712592390638051e-05, -3.4712592390638024e-05, -1.3017222146489208e-05, -6.9425184781276347e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.690598709053173e-05, -9.6423867751771976e-05, -2.4105966937943077e-06, -4.8211933875886133e-07, -1.4463580162765916e-06, -4.8211933875886459e-06, -3.8569547100709262e-05, -9.6423867751772287e-07, -4.4354979165815509e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100709262e-05, -3.8569547100709262e-05, -3.8569547100708898e-06, -0.00010944108989826135, -9.6423867751772245e-07, -9.6423867751773264e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708889e-06, -2.4105966937943077e-06, -1.4463580162765927e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.231790081383007e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.3390740488297352e-06, -3.8569547100708915e-06, -7.2317900813829807e-06, -9.6423867751772266e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886349e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -8.196028758900625e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -1.5427818840283556e-05, -1.2052983468971528e-05, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.8211933875886366e-06, -5.3033127263474626e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -3.8569547100708915e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212731e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.678148097659567e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652017e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -4.049802445574463e-05, -3.8569547100708915e-06, -4.2426501810779755e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709025e-05, -7.7139094201417813e-06, -3.9051666439468047e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417796e-06, -1.9284773550354453e-06, -4.049802445574463e-05, -3.8569547100709262e-05, -3.8569547100708998e-05, -3.8569547100709093e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.821193387588651e-06, -9.6423867751772817e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -3.8569547100708906e-06, -1.1570864130212743e-05, -1.4463580162766141e-06, -4.2426501810780087e-05, -7.7139094201417813e-06, -3.4712592390638092e-05, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971504e-05, -7.713909420141783e-06, -3.8569547100708915e-06, -3.3748353713120426e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.4712592390638078e-05, -9.6423867751772266e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390638078e-05, 0.0019602972313935386, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886324e-06, -1.4463580162765927e-06, -3.8569547100708915e-06, -7.2317900813829604e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325532006e-06, -1.4463580162766105e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -1.253510280773037e-05, -1.1088744791453884e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532074e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709093e-05, -3.8569547100708998e-05, -7.8103332878936337e-05, -3.8569547100708998e-05, -3.8569547100709025e-05, -1.9284773550354449e-06, -9.6423867751772287e-07, -3.8569547100708889e-06, -4.3390740488297268e-06, -1.9284773550354449e-06, -5.3033127263474905e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, 0.0019564402766834681, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936161e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162765927e-06, -4.8211933875886133e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -5.7854320651063741e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976595094e-06, -4.8211933875886144e-07, -1.928477355035444e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -7.713909420141783e-06, -2.4105966937943183e-06, -1.9284773550354457e-06, -9.6423867751772266e-07, -2.8927160325531845e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.2177489582907683e-05, -4.8211933875886154e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00014801063699897179, -3.8569547100708906e-06, -9.64238677517726e-05, -3.8569547100708915e-06, -9.6423867751772266e-07, -2.8927160325531665e-05, -5.7854320651063724e-06, -2.4105966937943153e-06, -2.8927160325531987e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936161e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -0.00011040532857577955, -1.4463580162765918e-06, -9.6423867751772695e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936337e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.3017222146489229e-05, -4.6283456520850979e-05, -3.8569547100708915e-06, -3.4230473051879003e-05, -5.7854320651063673e-06, -5.7854320651063673e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886561e-06, -3.8569547100708898e-06, -4.8211933875886442e-06, -1.0124506113936147e-05, -3.8569547100708915e-06, -2.4105966937943246e-06, -1.1088744791453832e-05, -3.8569547100708915e-06, -5.7854320651063724e-06, -1.4463580162766111e-06, -2.4105966937943145e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.78543206510633e-06, -2.8927160325531735e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.1570864130212741e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.3390740488297954e-06, -1.6392057517801342e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488297564e-06, -1.2535102807730475e-05, -3.8569547100708906e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -8.1960287589005759e-06, -1.4463580162765839e-05, -5.7854320651063724e-06, -2.8927160325532006e-06, -4.8211933875886144e-07, -1.9284773550354457e-06, -7.7139094201417813e-06, -1.1570864130212736e-05, -3.8569547100708898e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -5.7854320651063715e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.3390740488297869e-06, -2.4105966937943213e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.4712592390638038e-05, -1.9284773550354453e-06, -4.8211933875886144e-07, -2.8927160325531659e-05, -3.8569547100708915e-06, -2.3141728260425825e-05, -2.3141728260425476e-05, -2.4105966937943055e-05, -2.3141728260425825e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.3748353713120462e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.9409279664290636e-05, -9.6423867751772266e-07, -3.4712592390638078e-05, -3.4712592390638078e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.4712592390638092e-05, -3.4712592390638024e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765927e-06, -7.713909420141783e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -1.211324838631649e-05, -1.2052983468971524e-05, -3.013245867242892e-07, -6.0264917344857666e-08, -1.8079475203457461e-07, -6.0264917344858222e-07, -4.8211933875886696e-06, -1.2052983468971536e-07, -5.5443723957269251e-06, -6.0264917344857679e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886696e-06, -4.8211933875886696e-06, -4.8211933875886122e-07, -1.3680136237282638e-05, -1.2052983468971531e-07, -1.2052983468971685e-05, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886101e-07, -3.013245867242892e-07, -1.8079475203457472e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857666e-08, -9.039737601728782e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610371479e-07, -4.8211933875886144e-07, -9.0397376017287503e-07, -1.2052983468971533e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344858084e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344857666e-08, -4.8211933875886144e-07, -1.024503594862576e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6423867751772266e-07, -1.9284773550354445e-06, -1.5066229336214443e-06, -4.8211933875886144e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -6.0264917344858106e-07, -6.6291409079343197e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -1.2052983468971533e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857666e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.4463580162765969e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.0847685122074505e-06, -2.4105966937943072e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -7.8344392548314471e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -5.0622530569680805e-06, -4.8211933875886144e-07, -5.3033127263474626e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -4.82119338758864e-06, -9.6423867751772266e-07, -4.8814583049335143e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943066e-07, -5.0622530569680788e-06, -4.8211933875886696e-06, -4.8211933875886366e-06, -4.8211933875886485e-06, -6.0264917344857666e-08, -2.4105966937943061e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -6.0264917344858307e-07, -1.2052983468971632e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -4.8211933875886133e-07, -1.4463580162765982e-06, -1.8079475203457739e-07, -5.3033127263475041e-06, -9.6423867751772266e-07, -4.3390740488297446e-06, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.5066229336214308e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.2185442141400459e-07, -2.4105966937943061e-07, -1.2052983468971533e-07, -4.3390740488297429e-06, -1.2052983468971533e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297429e-06, -4.8211933875886144e-07, 0.00024545900834560644, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344858053e-07, -1.8079475203457472e-07, -4.8211933875886144e-07, -9.0397376017287238e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -3.6158950406915145e-07, -1.80794752034577e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -1.5668878509662873e-06, -1.3860930989317319e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -3.6158950406915219e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886485e-06, -4.8211933875886366e-06, -9.7629166098670557e-06, -4.8211933875886366e-06, -4.82119338758864e-06, -2.4105966937943061e-07, -1.2052983468971536e-07, -4.8211933875886112e-07, -5.4238425610371373e-07, -2.4105966937943061e-07, -6.6291409079343568e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.7629166098670354e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.8079475203457472e-07, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943061e-07, -7.2317900813829951e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.0847685122074342e-06, -6.0264917344857679e-08, -2.4105966937943051e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.0132458672429053e-07, -2.4105966937943072e-07, -1.2052983468971533e-07, -3.6158950406914933e-07, -5.1225179743129167e-06, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, -2.7721861978634528e-06, -6.0264917344857841e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.8501329624871541e-05, -4.8211933875886133e-07, -1.2052983468971604e-05, -4.8211933875886144e-07, -1.2052983468971533e-07, -3.6158950406914666e-06, -7.231790081382993e-07, -3.0132458672429005e-07, -3.6158950406915077e-06, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670354e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.3800666071972417e-05, -1.8079475203457461e-07, -1.2052983468971614e-05, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670557e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.6271527683111532e-06, -5.7854320651063927e-06, -4.8211933875886144e-07, -4.2788091314848601e-06, -7.2317900813829845e-07, -7.2317900813829845e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344858328e-07, -4.8211933875886122e-07, -6.0264917344858201e-07, -1.2655632642420189e-06, -4.8211933875886144e-07, -3.0132458672429132e-07, -1.3860930989317256e-06, -4.8211933875886144e-07, -7.231790081382993e-07, -1.8079475203457708e-07, -3.0132458672429005e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -7.2317900813828829e-07, -3.6158950406914425e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.4463580162765978e-06, -4.8211933875886144e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610372696e-07, -2.0490071897251618e-06, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -5.4238425610371743e-07, -1.566887850966311e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.0245035948625699e-06, -1.8079475203457342e-06, -7.231790081382993e-07, -3.6158950406915145e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -9.6423867751772266e-07, -1.4463580162765975e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -7.2317900813829909e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -5.423842561037259e-07, -3.013245867242909e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.3390740488297369e-06, -2.4105966937943066e-07, -6.0264917344857679e-08, -3.6158950406914666e-06, -4.8211933875886144e-07, -2.8927160325532387e-06, -2.8927160325531955e-06, -3.0132458672428887e-06, -2.8927160325532387e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.2185442141400442e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -3.6761599580363346e-06, -1.2052983468971533e-07, -4.3390740488297429e-06, -4.3390740488297429e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.3390740488297446e-06, -4.3390740488297352e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, 0.0002453384785109166, -9.6423867751772287e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6905987090531892e-05, -9.6423867751772193e-05, -2.4105966937943128e-06, -4.8211933875886133e-07, -1.4463580162765963e-06, -4.8211933875886561e-06, -3.8569547100709357e-05, -9.6423867751772266e-07, -4.4354979165815414e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100709357e-05, -3.8569547100709343e-05, -3.8569547100708898e-06, -0.00010944108989826118, -9.6423867751772245e-07, -9.6423867751773481e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708889e-06, -2.4105966937943128e-06, -1.4463580162765973e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813830222e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297395e-06, -3.8569547100708915e-06, -7.2317900813829968e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886451e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -8.1960287589006115e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.2052983468971551e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.8211933875886468e-06, -5.3033127263474693e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212772e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594569e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652526e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.0498024455744644e-05, -3.8569547100708906e-06, -4.24265018107797e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709106e-05, -7.7139094201417796e-06, -3.9051666439468101e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.049802445574463e-05, -3.8569547100709357e-05, -3.8569547100709079e-05, -3.8569547100709181e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886391e-06, -9.642386775177302e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -1.157086413021278e-05, -1.4463580162766183e-06, -4.2426501810780039e-05, -7.7139094201417813e-06, -3.471259239063797e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971594e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120795e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390637956e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390637956e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, 0.0019602972313935386, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886222e-06, -1.4463580162765973e-06, -3.8569547100708915e-06, -7.2317900813829739e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325532108e-06, -1.4463580162766153e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730471e-05, -1.1088744791453859e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532167e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709181e-05, -3.8569547100709079e-05, -7.8103332878936446e-05, -3.8569547100709079e-05, -3.8569547100709106e-05, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297115e-06, -1.9284773550354449e-06, -5.3033127263474854e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936269e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162765973e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -5.785432065106391e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.678148097659479e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.410596693794323e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -2.8927160325531938e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.2177489582907602e-05, -4.8211933875886247e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897227, -3.8569547100708906e-06, -9.6423867751772803e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -2.892716032553172e-05, -5.7854320651063419e-06, -2.4105966937943204e-06, -2.8927160325532041e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936269e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.0001104053285757792, -1.4463580162765969e-06, -9.6423867751772884e-05, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936446e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.30172221464894e-05, -4.6283456520851115e-05, -3.8569547100708915e-06, -3.4230473051878894e-05, -5.7854320651063859e-06, -5.7854320651063859e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886425e-06, -3.8569547100708898e-06, -4.8211933875886544e-06, -1.0124506113936154e-05, -3.8569547100708915e-06, -2.4105966937943179e-06, -1.1088744791453804e-05, -3.8569547100708906e-06, -5.7854320651063351e-06, -1.446358016276585e-06, -2.4105966937943196e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063876e-06, -2.8927160325532158e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.1570864130212775e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297412e-06, -1.6392057517801308e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.339074048829814e-06, -1.2535102807730485e-05, -3.8569547100708898e-06, 0.0019602972313935386, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -8.1960287589005624e-06, -1.446358016276586e-05, -5.7854320651063622e-06, -2.8927160325532108e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417813e-06, -1.1570864130212777e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651063927e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.3390740488297335e-06, -2.4105966937943263e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.4712592390637916e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531713e-05, -3.8569547100708906e-06, -2.3141728260425899e-05, -2.3141728260425551e-05, -2.4105966937943099e-05, -2.3141728260425899e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.3748353713120367e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.940927966429067e-05, -9.6423867751772245e-07, -3.4712592390637956e-05, -3.4712592390637956e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.471259239063797e-05, -3.4712592390637895e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765948e-06, -7.713909420141783e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -1.2113248386316473e-05, -1.2052983468971504e-05, -3.0132458672428857e-07, -6.0264917344857666e-08, -1.8079475203457411e-07, 0.00024491662408950254, -4.8211933875886476e-06, -1.2052983468971533e-07, -5.5443723957269268e-06, -6.0264917344857679e-08, -9.6423867751772245e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886493e-06, -4.8211933875886493e-06, -4.8211933875886122e-07, -1.3680136237282665e-05, -1.2052983468971531e-07, -1.2052983468971665e-05, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886112e-07, -3.0132458672428857e-07, -1.8079475203457424e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857666e-08, -9.0397376017287651e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610371627e-07, -4.8211933875886144e-07, -9.0397376017287344e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344857979e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -1.0245035948625773e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.9284773550354445e-06, -1.5066229336214418e-06, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -6.0264917344858e-07, -6.6291409079343261e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.026491734485764e-08, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857666e-08, -4.8211933875886144e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.4463580162765927e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.0847685122074349e-06, -2.4105966937943072e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -7.8344392548315615e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -5.0622530569680754e-06, -4.8211933875886133e-07, -5.3033127263474744e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -4.8211933875886315e-06, -9.6423867751772245e-07, -4.8814583049335075e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -5.0622530569680737e-06, -4.8211933875886476e-06, -4.8211933875886281e-06, -4.8211933875886408e-06, -6.0264917344857653e-08, -2.4105966937943061e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -6.026491734485818e-07, -1.2052983468971611e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -4.8211933875886122e-07, -1.4463580162765942e-06, -1.8079475203457686e-07, -5.3033127263475083e-06, -9.6423867751772266e-07, -4.3390740488297564e-06, -6.0264917344857666e-08, -6.0264917344857679e-08, -1.5066229336214469e-06, -9.6423867751772287e-07, -4.8211933875886133e-07, -4.2185442141400512e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -4.3390740488297564e-06, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297547e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, 0.00024545900834560639, -4.8211933875886144e-07, -6.0264917344857947e-07, -1.8079475203457424e-07, -4.8211933875886144e-07, -9.0397376017287047e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -3.615895040691505e-07, -1.8079475203457649e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -1.5668878509663085e-06, -1.3860930989317349e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -3.6158950406915124e-07, -1.2052983468971533e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886408e-06, -4.8211933875886281e-06, -9.7629166098670455e-06, -4.8211933875886281e-06, -4.8211933875886315e-06, -2.4105966937943061e-07, -1.2052983468971533e-07, -4.8211933875886112e-07, -5.4238425610371521e-07, -2.4105966937943061e-07, -6.6291409079343631e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.7629166098670235e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.8079475203457424e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -2.4105966937943056e-07, -7.2317900813829147e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.0847685122074374e-06, -6.0264917344857666e-08, -2.4105966937943051e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.0132458672428995e-07, -2.4105966937943066e-07, -1.2052983468971531e-07, -3.615895040691451e-07, -5.1225179743129099e-06, -6.0264917344857679e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, -2.7721861978634579e-06, -6.0264917344857714e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -4.8211933875886112e-07, -9.6423867751772266e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.850132962487148e-05, -4.8211933875886133e-07, -1.2052983468971578e-05, -4.8211933875886144e-07, -1.2052983468971531e-07, -3.615895040691459e-06, -7.2317900813829718e-07, -3.0132458672428878e-07, -3.6158950406914993e-06, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670235e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.380066607197242e-05, -1.8079475203457414e-07, -1.205298346897159e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670455e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.6271527683111536e-06, -5.7854320651063775e-06, -4.8211933875886144e-07, -4.2788091314848711e-06, -7.2317900813829655e-07, -7.2317900813829655e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344858222e-07, -4.8211933875886122e-07, -6.0264917344858095e-07, -1.2655632642420189e-06, -4.8211933875886144e-07, -3.0132458672429079e-07, -1.3860930989317285e-06, -4.8211933875886133e-07, -7.2317900813829718e-07, -1.8079475203457655e-07, -3.0132458672428868e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -7.2317900813829676e-07, -3.6158950406915113e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943066e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943066e-07, -4.8211933875886112e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.4463580162765935e-06, -4.8211933875886144e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610371892e-07, -2.0490071897251677e-06, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -5.4238425610371892e-07, -1.5668878509663095e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -6.0264917344857653e-08, -1.2052983468971536e-07, -1.0245035948625714e-06, -1.8079475203457316e-06, -7.2317900813829718e-07, -3.615895040691505e-07, -6.0264917344857679e-08, -2.4105966937943066e-07, -9.6423867751772266e-07, -1.4463580162765933e-06, -4.8211933875886122e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -7.2317900813829708e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943072e-07, -5.4238425610371807e-07, -3.0132458672429026e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.3390740488297513e-06, -2.4105966937943061e-07, -6.0264917344857679e-08, -3.6158950406914582e-06, -4.8211933875886133e-07, -2.8927160325532307e-06, -2.892716032553187e-06, -3.0132458672428832e-06, -2.8927160325532307e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.2185442141400544e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -3.6761599580363287e-06, -1.2052983468971531e-07, -4.3390740488297547e-06, -4.3390740488297564e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.3390740488297564e-06, -4.3390740488297479e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971536e-07, -1.2052983468971531e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.8079475203457419e-07, -9.6423867751772287e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6905987090531784e-05, -9.6423867751772058e-05, -2.4105966937943136e-06, -4.8211933875886133e-07, -1.446358016276595e-06, -4.8211933875886578e-06, -3.8569547100709371e-05, -9.6423867751772266e-07, -4.4354979165815469e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100709371e-05, -3.8569547100709371e-05, -3.8569547100708898e-06, -0.00010944108989826129, -9.6423867751772245e-07, -9.6423867751773318e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708889e-06, -2.4105966937943136e-06, -1.4463580162765961e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813830155e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297463e-06, -3.8569547100708915e-06, -7.2317900813829909e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886476e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -8.1960287589006166e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.2052983468971538e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.8211933875886493e-06, -5.3033127263474693e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212782e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594705e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652543e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.0498024455744644e-05, -3.8569547100708906e-06, -4.2426501810779687e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709133e-05, -7.7139094201417796e-06, -3.9051666439468128e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.049802445574463e-05, -3.8569547100709371e-05, -3.85695471007091e-05, -3.8569547100709201e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886391e-06, -9.6423867751773088e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -1.157086413021277e-05, -1.4463580162766174e-06, -4.2426501810780026e-05, -7.7139094201417813e-06, -3.4712592390638024e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971578e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120723e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390638011e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390638011e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, 0.0019602972313935386, -4.8211933875886256e-06, -1.4463580162765961e-06, -3.8569547100708915e-06, -7.2317900813829672e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325532074e-06, -1.4463580162766141e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730475e-05, -1.1088744791453872e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532141e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709201e-05, -3.85695471007091e-05, -7.8103332878936473e-05, -3.85695471007091e-05, -3.8569547100709133e-05, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297183e-06, -1.9284773550354449e-06, -5.3033127263474837e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.810333287893631e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162765961e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -5.7854320651063842e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976594891e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943242e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -2.8927160325531913e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.2177489582907629e-05, -4.8211933875886273e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897206, -3.8569547100708906e-06, -9.6423867751772654e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -2.8927160325531692e-05, -5.7854320651063368e-06, -2.4105966937943213e-06, -2.8927160325532021e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.810333287893631e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577931, -1.4463580162765982e-06, -9.6423867751772749e-05, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936473e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489379e-05, -4.628345652085106e-05, -3.8569547100708915e-06, -3.4230473051878948e-05, -5.7854320651063809e-06, -5.7854320651063809e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886425e-06, -3.8569547100708898e-06, -4.8211933875886561e-06, -1.0124506113936154e-05, -3.8569547100708915e-06, -2.4105966937943179e-06, -1.1088744791453818e-05, -3.8569547100708906e-06, -5.78543206510633e-06, -1.4463580162765825e-06, -2.4105966937943204e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063842e-06, -2.8927160325532124e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.1570864130212775e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297479e-06, 0.0019477621285858085, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488297988e-06, -1.2535102807730485e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -8.1960287589005674e-06, -1.4463580162765846e-05, -5.7854320651063571e-06, -2.8927160325532074e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417813e-06, -1.1570864130212787e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651063978e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.3390740488297412e-06, -2.4105966937943272e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.471259239063797e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531692e-05, -3.8569547100708906e-06, -2.3141728260425879e-05, -2.314172826042553e-05, -2.4105966937943065e-05, -2.3141728260425879e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.3748353713120421e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.9409279664290643e-05, -9.6423867751772245e-07, -3.4712592390638011e-05, -3.4712592390638011e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390638024e-05, -3.4712592390637956e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765961e-06, -7.713909420141783e-06, -4.821193387588673e-06, -4.8211933875886629e-06, -4.8211933875886629e-06, -4.821193387588673e-06, -2.4105966937943153e-06, -2.4105966937943153e-06, -4.8211933875886273e-06, -4.8211933875886281e-06, -6.0264917344858159e-07, -6.026491734485818e-07, -0.00012113248386316509, -0.00012052983468971648, -3.0132458672429052e-06, -6.0264917344858159e-07, -1.8079475203457261e-06, -6.0264917344858425e-06, -4.8211933875886151e-05, -1.2052983468971636e-06, -5.5443723957268948e-05, -6.0264917344857777e-07, -9.6423867751773257e-06, -9.6423867751773291e-06, -4.821193387588629e-06, -4.8211933875886264e-06, -4.8211933875886401e-05, -4.8211933875886273e-05, -4.8211933875886696e-06, -0.00013680136237282807, -1.2052983468971691e-06, -0.00012052983468971616, -9.6423867751773223e-06, -4.8211933875886629e-06, -4.8211933875886713e-06, -6.0264917344857746e-07, -6.0264917344858243e-07, -4.8211933875886561e-06, -4.8211933875886527e-06, -1.2052983468971691e-06, 0.00048983324817900519, -6.026491734485782e-07, -6.0264917344858053e-07, -4.8211933875886281e-06, -3.0132458672428988e-06, -1.8079475203457509e-06, -2.4105966937943145e-06, -2.4105966937943162e-06, -6.0264917344858159e-07, -9.0397376017288502e-06, -4.8211933875886425e-06, -4.8211933875886408e-06, -5.4238425610372214e-06, -4.8211933875886188e-06, -9.0397376017287841e-06, -1.2052983468971636e-06, -6.026491734485837e-07, -4.8211933875886188e-06, -4.8211933875886188e-06, -6.0264917344857989e-07, -6.0264917344858074e-07, -4.8211933875886408e-06, -4.8211933875886425e-06, -1.2052983468971725e-06, -6.0264917344857989e-07, -4.8211933875886188e-06, -9.6423867751773121e-06, -6.0264917344858349e-06, -4.8211933875886324e-06, -9.6423867751772579e-06, -6.0264917344857989e-07, -4.8211933875886391e-06, -1.024503594862584e-05, -4.821193387588651e-06, -4.8211933875886425e-06, -9.6423867751773257e-06, -1.92847735503548e-05, -1.5066229336214544e-05, -4.8211933875886239e-06, -9.6423867751773189e-06, -9.6423867751773223e-06, -2.410596693794328e-06, -4.8211933875886425e-06, -6.0264917344858273e-06, -6.6291409079344485e-06, -2.410596693794328e-06, -9.6423867751773443e-06, -4.8211933875886476e-06, -4.8211933875886493e-06, -4.8211933875886493e-06, -1.2052983468971674e-06, -4.8211933875886662e-06, -4.8211933875886239e-06, -6.026491734485837e-07, -4.8211933875886239e-06, -1.2052983468971598e-06, -4.8211933875886662e-06, -4.8211933875886357e-06, -4.8211933875886324e-06, -6.0264917344858243e-07, -9.6423867751773325e-06, -9.6423867751773257e-06, -6.0264917344858159e-07, -4.8211933875886493e-06, -4.8211933875886493e-06, -6.0264917344858137e-07, -4.8211933875886713e-06, -4.821193387588673e-06, -4.8211933875886442e-06, -4.821193387588673e-06, -1.4463580162765863e-05, -4.8211933875886493e-06, -4.8211933875886188e-06, -4.8211933875886374e-06, -6.0264917344858032e-07, -4.8211933875886188e-06, -4.8211933875886374e-06, -9.6423867751772986e-06, -2.4105966937943162e-06, -1.0847685122074399e-05, -2.4105966937943145e-06, -6.026491734485837e-07, -1.2052983468971619e-06, -7.834439254831474e-06, -4.8211933875886324e-06, -9.6423867751772986e-06, -5.0622530569680669e-05, -4.8211933875886408e-06, -5.3033127263474836e-05, -4.8211933875886425e-06, -4.8211933875886442e-06, -9.6423867751773223e-06, -4.8211933875886666e-05, -9.6423867751773189e-06, -4.8814583049334857e-05, -6.0264917344857756e-07, -9.6423867751773155e-06, -9.6423867751773257e-06, -2.410596693794334e-06, -5.0622530569680642e-05, -4.8211933875886151e-05, -4.8211933875886395e-05, -4.821193387588672e-05, -6.0264917344857989e-07, -2.4105966937943102e-06, -6.0264917344857968e-07, -6.0264917344858328e-07, -6.0264917344858434e-07, -4.8211933875886561e-06, -4.8211933875886544e-06, -4.8211933875886324e-06, -4.8211933875886324e-06, -6.0264917344857968e-07, -6.0264917344857989e-07, -6.0264917344857947e-07, -4.8211933875886425e-06, -6.0264917344857553e-06, -1.2052983468971672e-05, -9.6423867751773189e-06, -9.6423867751772901e-06, -4.8211933875886425e-06, -1.4463580162765972e-05, -1.8079475203457581e-06, -5.3033127263475147e-05, -9.6423867751772935e-06, -4.3390740488297303e-05, -6.0264917344857947e-07, -6.0264917344858074e-07, -1.5066229336214554e-05, -9.6423867751772986e-06, -4.8211933875886425e-06, -4.2185442141400069e-06, -2.4105966937943289e-06, -1.2052983468971634e-06, -4.3390740488297317e-05, -1.2052983468971636e-06, -2.4105966937943153e-06, -2.4105966937943153e-06, -4.3390740488297317e-05, -4.8211933875886324e-06, -6.0264917344858053e-07, -4.8211933875886222e-06, -6.0264917344857947e-07, -4.8211933875886256e-06, 0.0024491662408950192, -1.8079475203457549e-06, -4.8211933875886222e-06, -9.0397376017286588e-06, -6.026491734485782e-07, -4.8211933875886324e-06, -1.2052983468971691e-06, -1.2052983468971691e-06, -1.205298346897167e-06, -6.0264917344858137e-07, -3.6158950406914963e-06, -1.8079475203457545e-06, -4.8211933875886586e-06, -4.8211933875886561e-06, -9.6423867751773088e-06, -1.5668878509662982e-05, -1.3860930989317156e-05, -6.026491734485782e-07, -9.6423867751773393e-06, -4.8211933875886629e-06, -3.6158950406915018e-06, -1.2052983468971585e-06, -6.0264917344857989e-07, -6.0264917344858328e-07, -4.821193387588672e-05, -4.8211933875886395e-05, -9.7629166098670757e-05, -4.8211933875886388e-05, -4.8211933875886666e-05, -2.410596693794328e-06, -1.2052983468971615e-06, -4.8211933875886764e-06, -5.423842561037218e-06, -2.410596693794328e-06, -6.6291409079343841e-06, -6.026491734485818e-07, -6.0264917344857777e-07, -9.6423867751772884e-06, -4.8211933875886324e-06, -4.8211933875886374e-06, -6.0264917344858095e-07, -6.0264917344858159e-07, -2.410596693794328e-06, -2.4105966937943272e-06, -9.6423867751773359e-06, -4.8211933875886595e-06, -6.0264917344857904e-07, -9.7629166098669754e-05, -4.8211933875886569e-06, -4.8211933875886578e-06, -6.0264917344858159e-07, -2.4105966937943272e-06, -2.410596693794328e-06, -1.205298346897156e-06, -1.2052983468971558e-06, -1.8079475203457395e-06, -6.026491734485818e-07, -1.2052983468971558e-06, -1.205298346897156e-06, -6.026491734485801e-07, -6.0264917344857989e-07, -2.4105966937943136e-06, -7.2317900813829706e-06, -4.8211933875886341e-06, -6.0264917344857947e-07, -6.0264917344857777e-07, -1.0847685122074394e-05, -6.0264917344858074e-07, -2.4105966937943365e-06, -1.2052983468971674e-06, -9.642386775177263e-06, -9.6423867751772596e-06, -3.0132458672429196e-06, -2.410596693794323e-06, -1.2052983468971716e-06, -3.6158950406914971e-06, -5.1225179743129219e-05, -6.0264917344858074e-07, -2.410596693794323e-06, -2.4105966937943221e-06, -9.6423867751772562e-06, -9.6423867751772664e-06, -2.4105966937943145e-06, -2.4105966937943187e-06, -2.4105966937943187e-06, -6.0264917344857947e-07, -2.7721861978634599e-05, -6.0264917344858137e-06, -6.0264917344858032e-07, -4.8211933875886578e-06, -4.8211933875886713e-06, -4.8211933875886569e-06, -9.6423867751772664e-06, -4.8211933875886171e-06, -9.6423867751772562e-06, -4.8211933875886713e-06, -4.8211933875886713e-06, -0.00018501329624871378, -4.8211933875886629e-06, -0.00012052983468971611, -4.8211933875886188e-06, -1.2052983468971636e-06, -3.6158950406914588e-05, -7.2317900813829604e-06, -3.0132458672429145e-06, -3.6158950406914669e-05, -6.0264917344857862e-07, -4.8211933875886493e-06, -4.8211933875886493e-06, -9.7629166098669754e-05, -4.8211933875886307e-06, -4.8211933875886307e-06, -0.00013800666071972468, -1.8079475203457547e-06, -0.00012052983468971608, -4.8211933875886493e-06, -4.8211933875886493e-06, -6.0264917344857968e-07, -4.821193387588651e-06, -4.8211933875886476e-06, -6.0264917344857926e-07, -9.6423867751772596e-06, -9.642386775177263e-06, -1.205298346897167e-06, -2.410596693794328e-06, -2.4105966937943272e-06, -4.8211933875886629e-06, -4.8211933875886612e-06, -9.7629166098670757e-05, -4.8211933875886561e-06, -4.8211933875886586e-06, -1.6271527683111518e-05, -5.7854320651063629e-05, -4.8211933875886476e-06, -4.2788091314848862e-05, -7.2317900813830239e-06, -7.2317900813830222e-06, -4.8211933875886459e-06, -4.821193387588673e-06, -6.0264917344857595e-06, -4.8211933875886713e-06, -6.0264917344858459e-06, -1.2655632642420189e-05, -4.8211933875886188e-06, -3.0132458672428709e-06, -1.3860930989317345e-05, -4.821193387588629e-06, -7.2317900813829587e-06, -1.8079475203457473e-06, -3.0132458672429145e-06, -1.2052983468971678e-06, -6.0264917344857989e-07, -6.0264917344858053e-07, -4.8211933875886713e-06, -7.2317900813830188e-06, -3.6158950406915009e-06, -2.4105966937943179e-06, -4.8211933875886629e-06, -4.8211933875886696e-06, -4.8211933875886713e-06, -9.6423867751772495e-06, -4.821193387588629e-06, -2.4105966937943221e-06, -9.642386775177241e-06, -4.8211933875886256e-06, -2.410596693794323e-06, -4.8211933875886713e-06, -6.0264917344857862e-07, -4.8211933875886188e-06, -4.8211933875886188e-06, -9.6423867751773257e-06, -1.4463580162766004e-05, 0.0019593329927160203, -9.6423867751773223e-06, -9.6423867751773291e-06, -4.8211933875886281e-06, -4.8211933875886273e-06, -4.821193387588629e-06, -4.8211933875886324e-06, -5.4238425610371697e-06, -2.049007189725168e-05, -1.2052983468971755e-06, -4.8211933875886493e-06, -4.8211933875886273e-06, -5.4238425610371926e-06, -1.5668878509662975e-05, -4.8211933875886629e-06, -4.8211933875886222e-06, -4.821193387588673e-06, -2.410596693794323e-06, -2.410596693794323e-06, -6.0264917344858201e-07, -6.0264917344858434e-07, -6.0264917344857989e-07, -1.2052983468971627e-06, -1.0245035948625835e-05, -1.8079475203457375e-05, -7.2317900813829621e-06, -3.6158950406914963e-06, -6.0264917344858032e-07, -2.4105966937943213e-06, -9.6423867751772935e-06, -1.4463580162765989e-05, -4.8211933875886493e-06, -2.4105966937943213e-06, -9.6423867751772867e-06, -9.6423867751772901e-06, -2.4105966937943213e-06, -7.2317900813829807e-06, -4.8211933875886307e-06, -6.0264917344858349e-07, -1.2052983468971687e-06, -2.4105966937943213e-06, -2.4105966937943145e-06, -5.4238425610371866e-06, -3.0132458672429204e-06, -4.8211933875886561e-06, -9.6423867751773121e-06, -4.3390740488297412e-05, -2.410596693794334e-06, -6.0264917344857989e-07, -3.6158950406914588e-05, -4.8211933875886374e-06, -2.8927160325532102e-05, -2.8927160325532089e-05, -3.0132458672429121e-05, -2.8927160325532102e-05, -2.410596693794334e-06, -2.4105966937943348e-06, -4.8211933875886408e-06, -4.8211933875886442e-06, -2.4105966937943204e-06, -2.4105966937943204e-06, -4.8211933875886662e-06, -6.0264917344858328e-07, -4.8211933875886662e-06, -6.026491734485801e-07, -6.0264917344858137e-07, -4.21854421414004e-05, -2.4105966937943204e-06, -2.4105966937943204e-06, -3.6761599580363192e-05, -1.2052983468971653e-06, -4.3390740488297317e-05, -4.3390740488297317e-05, -4.8211933875886391e-06, -6.0264917344857926e-07, -4.8211933875886357e-06, -4.3390740488297303e-05, -4.3390740488297757e-05, -4.8211933875886374e-06, -4.8211933875886391e-06, -1.2052983468971555e-06, -1.2052983468971598e-06, -9.6423867751772512e-06, -4.8211933875886391e-06, -4.8211933875886391e-06, -1.8079475203457397e-06, -9.6423867751772512e-06, -1.4463580162766115e-06, -1.4463580162766054e-06, -1.4463580162766066e-06, -1.4463580162766115e-06, -7.2317900813829507e-07, -7.2317900813829507e-07, -1.4463580162765901e-06, -1.4463580162765897e-06, -1.8079475203457551e-07, -1.807947520345753e-07, -3.6339745158949449e-05, -3.6158950406914486e-05, -9.0397376017287598e-07, -1.8079475203457549e-07, -5.4238425610372866e-07, -1.8079475203457583e-06, -1.4463580162765939e-05, -3.615895040691506e-07, -1.6633117187180622e-05, -1.8079475203457355e-07, -2.8927160325532137e-06, -2.892716032553212e-06, -1.4463580162765893e-06, -1.4463580162765906e-06, -1.4463580162765926e-05, -1.4463580162765916e-05, -1.4463580162765863e-06, -4.1040408711848064e-05, -3.6158950406914007e-07, -3.6158950406914513e-05, -2.8927160325532154e-06, -1.4463580162766058e-06, -1.4463580162766124e-06, -1.807947520345734e-07, -1.8079475203457551e-07, -1.4463580162766007e-06, -1.446358016276602e-06, 0.0004906769570218332, -3.6158950406914017e-07, -1.8079475203457345e-07, -1.8079475203457472e-07, -1.4463580162765855e-06, -9.0397376017287354e-07, -5.4238425610372485e-07, -7.2317900813829549e-07, -7.2317900813829507e-07, -1.8079475203457549e-07, -2.7119212805185997e-06, -1.4463580162765973e-06, -1.4463580162765978e-06, -1.6271527683111542e-06, -1.4463580162765889e-06, -2.7119212805185793e-06, -3.6158950406915103e-07, -1.8079475203457046e-07, -1.4463580162765893e-06, -1.4463580162765897e-06, -1.8079475203457557e-07, -1.8079475203457506e-07, -1.4463580162765986e-06, -1.4463580162765969e-06, -3.6158950406914658e-07, -1.807947520345744e-07, -1.4463580162765935e-06, -2.8927160325531739e-06, -1.8079475203457553e-06, -1.4463580162766011e-06, -2.8927160325531887e-06, -1.8079475203457567e-07, -1.4463580162765948e-06, -3.0735107845878057e-06, -1.4463580162766003e-06, -1.4463580162765961e-06, -2.8927160325531349e-06, -5.7854320651064308e-06, -4.519868800864326e-06, -1.4463580162765897e-06, -2.8927160325532082e-06, -2.8927160325532065e-06, -7.2317900813830618e-07, -1.4463580162765969e-06, -1.8079475203457545e-06, -1.9887422723802824e-06, -7.2317900813830618e-07, -2.8927160325531718e-06, -1.4463580162766005e-06, -1.4463580162766007e-06, -1.4463580162766011e-06, -3.6158950406914658e-07, -1.4463580162766088e-06, -1.4463580162765897e-06, -1.8079475203457652e-07, -1.4463580162765893e-06, -3.615895040691488e-07, -1.4463580162766079e-06, -1.4463580162766003e-06, -1.4463580162766016e-06, -1.8079475203457567e-07, -2.8927160325531451e-06, -2.89271603255314e-06, -1.8079475203457514e-07, -1.4463580162766001e-06, -1.4463580162765997e-06, -1.8079475203457533e-07, -1.4463580162766119e-06, -1.44635801627661e-06, -1.4463580162765956e-06, -1.4463580162766105e-06, -4.3390740488298284e-06, -1.44635801627661e-06, -1.4463580162765927e-06, -1.4463580162765952e-06, -1.8079475203457461e-07, -1.4463580162765939e-06, -1.4463580162765956e-06, -2.8927160325531955e-06, -7.2317900813829507e-07, -3.2543055366223076e-06, -7.2317900813829549e-07, -1.8079475203457625e-07, -3.6158950406914965e-07, -2.3503317764494325e-06, -1.4463580162766016e-06, -2.8927160325531731e-06, -1.5186759170904263e-05, -1.4463580162765986e-06, -1.5909938179042317e-05, -1.4463580162765969e-06, -1.4463580162765956e-06, -2.8927160325532065e-06, -1.4463580162766019e-05, -2.8927160325532082e-06, -1.4644374914800647e-05, -1.8079475203457345e-07, -2.8927160325532099e-06, -2.8927160325532048e-06, -7.2317900813830459e-07, -1.5186759170904253e-05, -1.4463580162765939e-05, -1.4463580162765972e-05, -1.446358016276606e-05, -1.8079475203457557e-07, -7.2317900813829274e-07, -1.8079475203457424e-07, -1.8079475203457599e-07, -1.8079475203457014e-07, -1.4463580162766011e-06, -1.4463580162766016e-06, -1.4463580162766007e-06, -1.4463580162766011e-06, -1.807947520345743e-07, -1.807947520345744e-07, -1.8079475203457422e-07, -1.4463580162766066e-06, -1.8079475203457634e-06, -3.6158950406915115e-06, -2.8927160325531726e-06, -2.892716032553193e-06, -1.4463580162766062e-06, -4.3390740488297937e-06, -5.4238425610371352e-07, -1.5909938179042367e-05, -2.8927160325531913e-06, -1.3017222146489207e-05, -1.8079475203457546e-07, -1.8079475203457483e-07, -4.5198688008643243e-06, -2.8927160325531955e-06, -1.4463580162765973e-06, -1.2655632642420252e-06, -7.2317900813830565e-07, -3.6158950406915092e-07, -1.3017222146489207e-05, -3.6158950406915103e-07, -7.2317900813829507e-07, -7.2317900813829507e-07, -1.3017222146489207e-05, -1.4463580162765927e-06, -1.8079475203457472e-07, -1.4463580162765973e-06, -1.8079475203457424e-07, -1.4463580162765961e-06, -1.8079475203457549e-06, 0.00073601543553274292, -1.4463580162765969e-06, -2.711921280518598e-06, -1.8079475203457345e-07, -1.4463580162765922e-06, -3.6158950406914007e-07, -3.6158950406914028e-07, -3.615895040691523e-07, -1.8079475203457509e-07, -1.084768512207438e-06, -5.4238425610371458e-07, -1.4463580162766037e-06, -1.4463580162766054e-06, -2.8927160325531896e-06, -4.7006635528988668e-06, -4.1582792967951538e-06, -1.8079475203457345e-07, -2.8927160325531735e-06, -1.4463580162766045e-06, -1.0847685122074355e-06, -3.6158950406914679e-07, -1.807947520345744e-07, -1.8079475203457599e-07, -1.446358016276606e-05, -1.4463580162765972e-05, -2.9288749829601108e-05, -1.4463580162765973e-05, -1.4463580162766019e-05, -7.2317900813830618e-07, -3.6158950406914679e-07, -1.4463580162766105e-06, -1.6271527683111546e-06, -7.2317900813830618e-07, -1.9887422723802904e-06, -1.8079475203457546e-07, -1.8079475203457355e-07, -2.8927160325531743e-06, -1.4463580162765925e-06, -1.4463580162765952e-06, -1.8079475203457488e-07, -1.8079475203457549e-07, -7.2317900813830057e-07, -7.2317900813830099e-07, -2.8927160325531735e-06, -1.4463580162766054e-06, -1.8079475203457398e-07, -2.9288749829601416e-05, -1.4463580162766045e-06, -1.4463580162766041e-06, -1.807947520345752e-07, -7.2317900813830099e-07, -7.2317900813830099e-07, -3.6158950406914706e-07, -3.6158950406914706e-07, -5.42384256103724e-07, -1.8079475203457554e-07, -3.6158950406914706e-07, -3.6158950406914706e-07, -1.8079475203457445e-07, -1.8079475203457557e-07, -7.2317900813829549e-07, -2.1695370244148901e-06, -1.446358016276592e-06, -1.8079475203457419e-07, -1.8079475203457355e-07, -3.2543055366223046e-06, -1.8079475203457504e-07, -7.2317900813830481e-07, -3.6158950406915097e-07, -2.8927160325531798e-06, -2.8927160325531815e-06, -9.0397376017288021e-07, -7.2317900813829941e-07, -3.6158950406914658e-07, -1.084768512207445e-06, -1.5367553922938771e-05, -1.8079475203457472e-07, -7.2317900813829919e-07, -7.2317900813829962e-07, -2.8927160325531832e-06, -2.8927160325531781e-06, -7.2317900813829972e-07, -7.2317900813829718e-07, -7.2317900813829697e-07, -1.8079475203457419e-07, -8.3165585935903025e-06, 0.00024371132574260541, -1.8079475203457567e-07, -1.4463580162766041e-06, -1.4463580162765863e-06, -1.4463580162766045e-06, -2.8927160325531781e-06, -1.4463580162765863e-06, -2.8927160325531832e-06, -1.4463580162765863e-06, -1.4463580162765863e-06, -5.5503988874613549e-05, -1.4463580162766041e-06, -3.6158950406914533e-05, -1.4463580162765939e-06, -3.6158950406915119e-07, -1.0847685122074305e-05, -2.1695370244148943e-06, -9.0397376017287746e-07, -1.0847685122074305e-05, -1.8079475203457377e-07, -1.4463580162766011e-06, -1.4463580162766007e-06, -2.9288749829601416e-05, -1.4463580162765918e-06, -1.4463580162765914e-06, -4.1401998215917293e-05, -5.4238425610371182e-07, -3.6158950406914554e-05, -1.4463580162765997e-06, -1.4463580162766001e-06, -1.8079475203457451e-07, -1.4463580162766003e-06, -1.4463580162766016e-06, -1.8079475203457408e-07, -2.8927160325531815e-06, -2.8927160325531798e-06, -3.615895040691523e-07, -7.2317900813830099e-07, -7.2317900813830099e-07, -1.4463580162766045e-06, -1.446358016276605e-06, -2.9288749829601108e-05, -1.4463580162766054e-06, -1.4463580162766037e-06, -4.8814583049335355e-06, -1.7356296195319175e-05, -1.4463580162766005e-06, -1.2836427394454682e-05, -2.1695370244149066e-06, -2.1695370244149066e-06, -1.4463580162766054e-06, -1.44635801627661e-06, -1.8079475203457621e-06, -1.4463580162766119e-06, -1.8079475203457596e-06, -3.7966897927260722e-06, -1.4463580162765931e-06, -9.0397376017288043e-07, -4.1582792967951513e-06, -1.4463580162765922e-06, -2.1695370244148943e-06, -5.4238425610371468e-07, -9.0397376017287788e-07, -3.6158950406914081e-07, -1.8079475203457557e-07, -1.8079475203457472e-07, -1.4463580162766124e-06, -2.1695370244148998e-06, -1.0847685122074357e-06, -7.2317900813829634e-07, -1.4463580162766062e-06, -1.4463580162765863e-06, -1.4463580162765863e-06, -2.8927160325531726e-06, -1.4463580162765893e-06, -7.2317900813829962e-07, -2.8927160325531726e-06, -1.4463580162765893e-06, -7.2317900813829919e-07, -1.4463580162765863e-06, -1.8079475203457377e-07, -1.4463580162765897e-06, -1.4463580162765893e-06, -2.89271603255314e-06, -4.3390740488296954e-06, -1.4463580162765965e-06, -2.8927160325532154e-06, -2.8927160325532103e-06, -1.4463580162765897e-06, -1.4463580162765901e-06, -1.4463580162765922e-06, -1.446358016276591e-06, -1.6271527683111517e-06, -6.1470215691755861e-06, -3.6158950406914647e-07, -1.44635801627661e-06, -1.4463580162765893e-06, -1.6271527683111508e-06, -4.7006635528988473e-06, -1.4463580162766054e-06, -1.4463580162765973e-06, -1.4463580162766115e-06, -7.2317900813829941e-07, -7.2317900813829962e-07, -1.8079475203457546e-07, -1.8079475203457014e-07, -1.8079475203457567e-07, -3.6158950406915018e-07, -3.0735107845877164e-06, -5.4238425610371959e-06, -2.1695370244148909e-06, -1.084768512207438e-06, -1.8079475203457461e-07, -7.2317900813829898e-07, -2.8927160325531913e-06, -4.3390740488298055e-06, -1.4463580162766096e-06, -7.2317900813829898e-07, -2.8927160325531947e-06, -2.892716032553193e-06, -7.2317900813829898e-07, -2.1695370244148956e-06, -1.4463580162765918e-06, -1.8079475203457623e-07, -3.6158950406914658e-07, -7.2317900813829898e-07, -7.2317900813829972e-07, -1.6271527683111523e-06, -9.0397376017287894e-07, -1.4463580162766037e-06, -2.8927160325531739e-06, -1.301722214648922e-05, -7.2317900813830459e-07, -1.807947520345743e-07, -1.0847685122074305e-05, -1.4463580162765952e-06, -8.6781480976594214e-06, -8.6781480976595806e-06, -9.0397376017286486e-06, -8.6781480976594214e-06, -7.2317900813830459e-07, -7.2317900813830438e-07, -1.4463580162765973e-06, -1.4463580162765961e-06, -7.2317900813829792e-07, -7.2317900813829792e-07, -1.4463580162766079e-06, -1.8079475203457615e-07, -1.4463580162766088e-06, -1.8079475203457459e-07, -1.8079475203457535e-07, -1.2655632642420176e-05, -7.2317900813829792e-07, -7.2317900813829792e-07, -1.1028479874109172e-05, -3.6158950406915177e-07, -1.3017222146489207e-05, -1.3017222146489207e-05, -1.4463580162765948e-06, -1.807947520345743e-07, -1.4463580162765961e-06, -1.3017222146489207e-05, -1.3017222146489203e-05, -1.4463580162765952e-06, -1.4463580162765939e-06, -3.6158950406914796e-07, -3.6158950406915092e-07, -2.892716032553176e-06, -1.4463580162765944e-06, -1.4463580162765948e-06, -5.4238425610372527e-07, -2.892716032553176e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6905987090531865e-05, -9.6423867751772139e-05, -2.4105966937943128e-06, -4.8211933875886133e-07, -1.4463580162765958e-06, -4.8211933875886561e-06, -3.8569547100709357e-05, -9.6423867751772266e-07, -4.4354979165815428e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100709357e-05, -3.8569547100709357e-05, -3.8569547100708898e-06, -0.00010944108989826124, -9.6423867751772245e-07, -9.6423867751773426e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708889e-06, -2.4105966937943128e-06, -1.4463580162765969e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813830188e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297412e-06, -3.8569547100708915e-06, -7.2317900813829943e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886459e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -8.1960287589006132e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.2052983468971548e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.8211933875886476e-06, -5.3033127263474693e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212775e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594603e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652543e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.0498024455744644e-05, -3.8569547100708906e-06, -4.24265018107797e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.856954710070912e-05, -7.7139094201417796e-06, -3.9051666439468114e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.049802445574463e-05, -3.8569547100709357e-05, -3.8569547100709086e-05, -3.8569547100709188e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886391e-06, -9.642386775177302e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -1.1570864130212777e-05, -1.4463580162766183e-06, -4.2426501810780033e-05, -7.7139094201417813e-06, -3.4712592390637984e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.205298346897159e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.374835371312077e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390637984e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.471259239063797e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886222e-06, -1.4463580162765969e-06, 0.0019602972313935386, -7.2317900813829723e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325532091e-06, -1.4463580162766149e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730471e-05, -1.1088744791453862e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532158e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709188e-05, -3.8569547100709086e-05, -7.8103332878936446e-05, -3.8569547100709086e-05, -3.856954710070912e-05, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297132e-06, -1.9284773550354449e-06, -5.3033127263474854e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936283e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162765969e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -5.7854320651063876e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976594823e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943234e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -2.892716032553193e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.2177489582907616e-05, -4.8211933875886256e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897219, -3.8569547100708906e-06, -9.6423867751772749e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -2.8927160325531706e-05, -5.7854320651063402e-06, -2.4105966937943204e-06, -2.8927160325532035e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936283e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577923, -1.4463580162765973e-06, -9.642386775177283e-05, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936446e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489393e-05, -4.6283456520851087e-05, -3.8569547100708915e-06, -3.4230473051878914e-05, -5.7854320651063842e-06, -5.7854320651063842e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886425e-06, -3.8569547100708898e-06, -4.8211933875886544e-06, -1.0124506113936154e-05, -3.8569547100708915e-06, -2.4105966937943179e-06, -1.1088744791453811e-05, -3.8569547100708906e-06, -5.7854320651063334e-06, -1.4463580162765842e-06, -2.4105966937943204e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063876e-06, -2.8927160325532141e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, 0.0019525833219733975, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297446e-06, -1.6392057517801308e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488298089e-06, -1.2535102807730485e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -8.196028758900564e-06, -1.4463580162765856e-05, -5.7854320651063605e-06, -2.8927160325532091e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417813e-06, -1.157086413021278e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651063944e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.3390740488297352e-06, -2.4105966937943272e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.4712592390637943e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531706e-05, -3.8569547100708906e-06, -2.3141728260425893e-05, -2.3141728260425544e-05, -2.4105966937943086e-05, -2.3141728260425893e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.3748353713120394e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.9409279664290657e-05, -9.6423867751772245e-07, -3.471259239063797e-05, -3.4712592390637984e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390637984e-05, -3.4712592390637916e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765952e-06, -7.713909420141783e-06, -7.2317900813830171e-06, -7.2317900813829968e-06, -7.2317900813830036e-06, -7.2317900813830138e-06, -3.6158950406914768e-06, -3.6158950406914777e-06, -7.2317900813829485e-06, -7.2317900813829468e-06, -9.0397376017287397e-07, -9.0397376017287386e-07, -0.00018169872579474673, -0.00018079475203457496, -4.519868800864326e-06, -9.0397376017287397e-07, -2.7119212805186238e-06, -9.0397376017286571e-06, -7.2317900813829284e-05, -1.8079475203457477e-06, -8.3165585935903889e-05, -9.0397376017286857e-07, -1.4463580162766002e-05, -1.4463580162765995e-05, -7.2317900813829435e-06, -7.2317900813829502e-06, -7.2317900813829311e-05, -7.2317900813829284e-05, -7.2317900813830155e-06, -0.00020520204355924045, -1.8079475203457492e-06, -0.00018079475203457344, -1.4463580162766012e-05, -7.2317900813830002e-06, -7.2317900813830188e-06, -9.0397376017286772e-07, -9.039737601728746e-07, -7.2317900813829824e-06, -7.2317900813829892e-06, -1.8079475203457496e-06, -1.8079475203457496e-06, -9.0397376017286836e-07, -9.0397376017287196e-07, -7.2317900813829418e-06, -4.5198688008643243e-06, -2.7119212805186077e-06, -3.6158950406914777e-06, -3.615895040691476e-06, -9.0397376017287397e-07, -1.3559606402593319e-05, -7.2317900813829697e-06, -7.2317900813829714e-06, -8.1357638415558066e-06, -7.2317900813829451e-06, -1.3559606402592953e-05, -1.8079475203457479e-06, -9.0397376017287407e-07, -7.2317900813829468e-06, -7.2317900813829502e-06, -9.0397376017287481e-07, -9.039737601728727e-07, -7.2317900813829731e-06, -7.2317900813829663e-06, -1.8079475203457257e-06, -9.0397376017287111e-07, -7.2317900813829604e-06, -1.446358016276585e-05, -9.0397376017286588e-06, -7.2317900813829841e-06, -1.4463580162765928e-05, -9.0397376017287503e-07, -7.2317900813829604e-06, -1.5367553922938761e-05, -7.2317900813829765e-06, -7.2317900813829689e-06, -1.4463580162765972e-05, -2.8927160325531814e-05, -2.2599344004321853e-05, -7.2317900813829468e-06, -1.4463580162765989e-05, -1.4463580162765982e-05, -3.6158950406915094e-06, -7.2317900813829706e-06, -9.0397376017286859e-06, -9.9437113619015753e-06, -3.6158950406915103e-06, -1.4463580162765829e-05, -7.2317900813829841e-06, -7.2317900813829799e-06, -7.2317900813829816e-06, -1.8079475203457282e-06, -7.2317900813830087e-06, -7.2317900813829468e-06, -9.0397376017287704e-07, -7.2317900813829451e-06, -1.8079475203457401e-06, -7.231790081383007e-06, -7.231790081382979e-06, -7.2317900813829858e-06, -9.0397376017287503e-07, -1.4463580162765978e-05, -1.4463580162765975e-05, -9.0397376017287365e-07, -7.2317900813829807e-06, -7.2317900813829773e-06, -9.0397376017287344e-07, -7.2317900813830171e-06, -7.2317900813830104e-06, -7.2317900813829655e-06, -7.2317900813830138e-06, -2.1695370244148987e-05, -7.2317900813830121e-06, -7.231790081382957e-06, -7.2317900813829621e-06, -9.0397376017287174e-07, -7.2317900813829638e-06, -7.2317900813829638e-06, -1.4463580162765958e-05, -3.615895040691476e-06, -1.6271527683111566e-05, -3.6158950406914777e-06, -9.0397376017287672e-07, -1.8079475203457448e-06, -1.1751658882247178e-05, -7.2317900813829858e-06, -1.4463580162765848e-05, -7.5933795854520584e-05, -7.2317900813829731e-06, -7.9549690895212548e-05, -7.2317900813829723e-06, -7.2317900813829655e-06, -1.4463580162765982e-05, -7.231790081382927e-05, -1.4463580162765989e-05, -7.322187457400219e-05, -9.0397376017286783e-07, -1.4463580162766004e-05, -1.4463580162765975e-05, -3.6158950406915069e-06, -7.593379585452053e-05, -7.2317900813829284e-05, -7.2317900813829243e-05, -7.2317900813830192e-05, -9.039737601728746e-07, -3.6158950406915001e-06, -9.0397376017287068e-07, -9.0397376017287587e-07, -9.039737601728746e-07, -7.2317900813829841e-06, -7.2317900813829858e-06, -7.2317900813829824e-06, -7.2317900813829841e-06, -9.0397376017287068e-07, -9.0397376017287111e-07, -9.0397376017287047e-07, -7.2317900813830019e-06, -9.0397376017286469e-06, -1.8079475203457487e-05, -1.4463580162765846e-05, -1.4463580162765934e-05, -7.2317900813830002e-06, -2.1695370244148896e-05, -2.7119212805186014e-06, -7.9549690895212413e-05, -1.4463580162765928e-05, -6.5086110732446832e-05, -9.0397376017287428e-07, -9.0397376017287238e-07, -2.259934400432186e-05, -1.4463580162765958e-05, -7.2317900813829697e-06, -6.3278163212101159e-06, -3.6158950406914467e-06, -1.8079475203457477e-06, -6.5086110732446751e-05, -1.8079475203457479e-06, -3.6158950406914777e-06, -3.6158950406914768e-06, -6.5086110732446643e-05, -7.2317900813829604e-06, -9.0397376017287238e-07, -7.2317900813829739e-06, -9.0397376017287047e-07, -7.2317900813829672e-06, -9.0397376017286588e-06, -2.711921280518598e-06, -7.2317900813829723e-06, 0.0036692294925416849, -9.0397376017286814e-07, -7.2317900813829587e-06, -1.8079475203457492e-06, -1.8079475203457496e-06, -1.807947520345753e-06, -9.0397376017287323e-07, -5.4238425610372298e-06, -2.7119212805186039e-06, -7.2317900813829875e-06, -7.2317900813829943e-06, -1.4463580162765931e-05, -2.3503317764494417e-05, -2.0791396483975969e-05, -9.0397376017286814e-07, -1.4463580162765843e-05, -7.2317900813829943e-06, -5.423842561037223e-06, -1.8079475203457342e-06, -9.0397376017287111e-07, -9.0397376017287587e-07, -7.2317900813830192e-05, -7.2317900813829243e-05, -0.00014644374914800397, -7.2317900813829243e-05, -7.231790081382927e-05, -3.6158950406915103e-06, -1.8079475203457337e-06, -7.2317900813829468e-06, -8.1357638415558134e-06, -3.6158950406915094e-06, -9.943711361901538e-06, -9.0397376017287386e-07, -9.0397376017286857e-07, -1.4463580162765873e-05, -7.2317900813829604e-06, -7.2317900813829689e-06, -9.0397376017287259e-07, -9.0397376017287397e-07, -3.6158950406914946e-06, -3.6158950406914963e-06, -1.4463580162765846e-05, -7.2317900813830002e-06, -9.0397376017286984e-07, -0.00014644374914800471, -7.2317900813829909e-06, -7.2317900813829892e-06, -9.0397376017287365e-07, -3.6158950406914946e-06, -3.6158950406914946e-06, -1.8079475203457359e-06, -1.8079475203457363e-06, -2.7119212805186183e-06, -9.0397376017287418e-07, -1.8079475203457363e-06, -1.8079475203457359e-06, -9.0397376017287132e-07, -9.0397376017287481e-07, -3.6158950406914921e-06, -1.084768512207447e-05, -7.231790081382957e-06, -9.0397376017287047e-07, -9.0397376017286857e-07, -1.6271527683111579e-05, -9.039737601728727e-07, -3.6158950406915145e-06, -1.8079475203457414e-06, -1.4463580162765894e-05, -1.44635801627659e-05, -4.5198688008643243e-06, -3.6158950406914878e-06, -1.8079475203457259e-06, -5.4238425610372332e-06, -7.6837769614694032e-05, -9.0397376017287196e-07, -3.615895040691487e-06, -3.6158950406914887e-06, -1.4463580162765914e-05, -1.4463580162765887e-05, -3.6158950406914904e-06, -3.6158950406914836e-06, -3.6158950406914819e-06, -9.0397376017287068e-07, -4.1582792967951856e-05, -9.0397376017286605e-06, -9.0397376017287503e-07, -7.2317900813829892e-06, -7.2317900813829113e-06, -7.2317900813829909e-06, -1.4463580162765887e-05, -7.2317900813829646e-06, -1.4463580162765914e-05, -7.2317900813829113e-06, -7.2317900813829104e-06, -0.00027751994437307063, -7.2317900813829926e-06, -0.00018079475203457442, -7.2317900813829638e-06, -1.8079475203457484e-06, -5.4238425610372396e-05, -1.0847685122074473e-05, -4.5198688008643277e-06, -5.4238425610371766e-05, -9.0397376017286941e-07, -7.2317900813829816e-06, -7.2317900813829799e-06, -0.00014644374914800471, -7.2317900813829536e-06, -7.2317900813829502e-06, -0.00020700999107958667, -2.7119212805185997e-06, -0.00018079475203457425, -7.2317900813829773e-06, -7.2317900813829807e-06, -9.039737601728709e-07, -7.2317900813829765e-06, -7.2317900813829833e-06, -9.0397376017287005e-07, -1.44635801627659e-05, -1.4463580162765894e-05, -1.807947520345753e-06, -3.6158950406914946e-06, -3.6158950406914946e-06, -7.2317900813829943e-06, -7.2317900813829968e-06, -0.00014644374914800397, -7.2317900813829943e-06, -7.2317900813829875e-06, -2.4407291524667398e-05, 0.0035960076179676584, -7.2317900813829841e-06, -6.4182136972273601e-05, -1.0847685122074392e-05, -1.0847685122074392e-05, -7.2317900813829968e-06, -7.2317900813830104e-06, -9.0397376017287079e-06, -7.2317900813830171e-06, -9.039737601728735e-06, -1.8983448963630288e-05, -7.2317900813829587e-06, -4.5198688008643904e-06, -2.0791396483975901e-05, -7.2317900813829553e-06, -1.084768512207447e-05, -2.7119212805186056e-06, -4.5198688008643252e-06, -1.8079475203457481e-06, -9.039737601728746e-07, -9.0397376017287238e-07, -7.2317900813830188e-06, -1.0847685122074412e-05, -5.423842561037223e-06, -3.615895040691481e-06, -7.2317900813830019e-06, -7.2317900813830155e-06, -7.2317900813829104e-06, -1.4463580162765922e-05, -7.2317900813829435e-06, -3.6158950406914887e-06, -1.4463580162765878e-05, -7.2317900813829502e-06, -3.615895040691487e-06, -7.2317900813829113e-06, -9.039737601728692e-07, -7.2317900813829502e-06, -7.2317900813829468e-06, -1.4463580162765975e-05, -2.1695370244148811e-05, -7.2317900813829689e-06, -1.4463580162766012e-05, -1.4463580162765983e-05, -7.2317900813829468e-06, -7.2317900813829485e-06, -7.2317900813829553e-06, -7.2317900813829485e-06, -8.1357638415557524e-06, -3.0735107845877522e-05, -1.8079475203457236e-06, -7.2317900813830121e-06, -7.2317900813829485e-06, -8.1357638415557558e-06, -2.3503317764494424e-05, -7.2317900813829968e-06, -7.2317900813829739e-06, -7.2317900813830171e-06, -3.6158950406914878e-06, -3.6158950406914887e-06, -9.039737601728746e-07, -9.039737601728746e-07, -9.0397376017287503e-07, -1.8079475203457465e-06, -1.5367553922938764e-05, -2.7119212805185859e-05, -1.0847685122074483e-05, -5.4238425610372298e-06, -9.0397376017287196e-07, -3.615895040691487e-06, -1.4463580162765928e-05, -2.1695370244148896e-05, -7.2317900813830104e-06, -3.615895040691487e-06, -1.4463580162765948e-05, -1.4463580162765934e-05, -3.615895040691487e-06, -1.0847685122074473e-05, -7.2317900813829536e-06, -9.0397376017287651e-07, -1.8079475203457278e-06, -3.615895040691487e-06, -3.6158950406914904e-06, -8.1357638415557694e-06, -4.5198688008643794e-06, -7.2317900813829926e-06, -1.4463580162765846e-05, -6.5086110732446697e-05, -3.6158950406915069e-06, -9.0397376017287068e-07, -5.4238425610372396e-05, -7.2317900813829621e-06, -4.3390740488297615e-05, -4.3390740488297642e-05, -4.5198688008643712e-05, -4.3390740488297615e-05, -3.615895040691506e-06, -3.6158950406915052e-06, -7.2317900813829739e-06, -7.2317900813829672e-06, -3.6158950406914853e-06, -3.6158950406914853e-06, -7.231790081383007e-06, -9.0397376017287651e-07, -7.2317900813830087e-06, -9.0397376017287174e-07, -9.0397376017287344e-07, -6.3278163212100844e-05, -3.6158950406914853e-06, -3.6158950406914853e-06, -5.5142399370545188e-05, -1.8079475203457505e-06, -6.5086110732446643e-05, -6.5086110732446751e-05, -7.2317900813829604e-06, -9.0397376017287026e-07, -7.2317900813829655e-06, -6.5086110732446832e-05, -6.5086110732446697e-05, -7.2317900813829689e-06, -7.2317900813829621e-06, -1.8079475203457397e-06, -1.8079475203457486e-06, -1.4463580162765904e-05, -7.2317900813829638e-06, -7.2317900813829655e-06, -2.7119212805186225e-06, -1.4463580162765904e-05, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -1.2113248386316446e-05, -1.2052983468971473e-05, -3.0132458672428793e-07, -6.0264917344857666e-08, -1.8079475203457332e-07, -6.0264917344857968e-07, -4.821193387588651e-06, -1.2052983468971536e-07, -5.544372395726953e-06, -6.0264917344857679e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.821193387588651e-06, -4.821193387588651e-06, -4.8211933875886122e-07, -1.3680136237282697e-05, -1.2052983468971531e-07, -1.2052983468971631e-05, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886101e-07, -3.0132458672428793e-07, -1.8079475203457345e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857666e-08, -9.0397376017287386e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610371892e-07, -4.8211933875886144e-07, -9.039737601728709e-07, -1.2052983468971533e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344857841e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344857666e-08, -4.8211933875886144e-07, -1.0245035948625798e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6423867751772266e-07, -1.9284773550354445e-06, -1.506622933621438e-06, -4.8211933875886144e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -6.0264917344857862e-07, -6.6291409079343346e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -1.2052983468971533e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.4463580162765863e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.08476851220744e-06, -2.4105966937943072e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -7.8344392548315572e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -5.0622530569680754e-06, -4.8211933875886144e-07, -5.3033127263474727e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -4.8211933875886205e-06, -9.6423867751772266e-07, -4.881458304933499e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -5.0622530569680754e-06, -4.821193387588651e-06, -4.8211933875886163e-06, -4.821193387588629e-06, -6.0264917344857666e-08, -2.4105966937943061e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -6.0264917344858053e-07, -1.2052983468971581e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -4.8211933875886133e-07, -1.4463580162765878e-06, -1.807947520345761e-07, -5.3033127263475142e-06, -9.6423867751772266e-07, -4.3390740488297767e-06, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.5066229336214431e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.2185442141400597e-07, -2.4105966937943061e-07, -1.2052983468971533e-07, -4.3390740488297751e-06, -1.2052983468971533e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297751e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.026491734485782e-07, -1.8079475203457345e-07, -4.8211933875886144e-07, -9.0397376017286814e-07, 0.00024545900834560644, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -3.6158950406914859e-07, -1.8079475203457567e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -1.5668878509663059e-06, -1.3860930989317385e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -3.6158950406914965e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.821193387588629e-06, -4.8211933875886163e-06, -9.7629166098670252e-06, -4.8211933875886163e-06, -4.8211933875886205e-06, -2.4105966937943061e-07, -1.2052983468971536e-07, -4.8211933875886112e-07, -5.4238425610371828e-07, -2.4105966937943061e-07, -6.6291409079343716e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.7629166098670049e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.8079475203457345e-07, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943061e-07, -7.2317900813829422e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.0847685122074425e-06, -6.0264917344857679e-08, -2.4105966937943051e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.0132458672428926e-07, -2.4105966937943072e-07, -1.2052983468971533e-07, -3.6158950406914679e-07, -5.1225179743129167e-06, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, -2.7721861978634655e-06, -6.0264917344857587e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.8501329624871412e-05, -4.8211933875886133e-07, -1.2052983468971548e-05, -4.8211933875886144e-07, -1.2052983468971533e-07, -3.6158950406914514e-06, -7.2317900813829401e-07, -3.0132458672428878e-07, -3.6158950406914912e-06, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670049e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, 0.00023171860719097874, -1.8079475203457334e-07, -1.2052983468971558e-05, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670252e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.6271527683111544e-06, -5.7854320651063537e-06, -4.8211933875886144e-07, -4.278809131484888e-06, -7.2317900813829337e-07, -7.2317900813829337e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344858095e-07, -4.8211933875886122e-07, -6.0264917344857947e-07, -1.2655632642420176e-06, -4.8211933875886144e-07, -3.0132458672429005e-07, -1.3860930989317323e-06, -4.8211933875886144e-07, -7.2317900813829401e-07, -1.8079475203457573e-07, -3.0132458672428878e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -7.2317900813829379e-07, -3.6158950406914944e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.4463580162765876e-06, -4.8211933875886144e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610372146e-07, -2.0490071897251728e-06, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -5.4238425610372146e-07, -1.5668878509663074e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.0245035948625737e-06, -1.8079475203457265e-06, -7.2317900813829401e-07, -3.6158950406914859e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -9.6423867751772266e-07, -1.446358016276587e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -7.231790081382939e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -5.423842561037204e-07, -3.0132458672428963e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.33907404882977e-06, -2.4105966937943061e-07, -6.0264917344857679e-08, -3.6158950406914514e-06, -4.8211933875886144e-07, -2.8927160325532175e-06, -2.8927160325531743e-06, -3.0132458672428755e-06, -2.8927160325532175e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.2185442141400696e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -3.6761599580363253e-06, -1.2052983468971533e-07, -4.3390740488297751e-06, -4.3390740488297751e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.3390740488297767e-06, -4.3390740488297683e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.8079475203457345e-07, -9.6423867751772287e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6905987090531703e-05, -9.6423867751771949e-05, -2.4105966937943077e-06, -4.8211933875886133e-07, -1.4463580162765912e-06, -4.8211933875886459e-06, -3.8569547100709276e-05, -9.6423867751772287e-07, -4.4354979165815543e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100709276e-05, -3.8569547100709276e-05, -3.8569547100708898e-06, -0.00010944108989826137, -9.6423867751772245e-07, -9.6423867751773237e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708889e-06, -2.4105966937943077e-06, -1.4463580162765922e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813830053e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.3390740488297369e-06, -3.8569547100708915e-06, -7.2317900813829807e-06, -9.6423867751772266e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886357e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -8.1960287589006267e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -1.5427818840283556e-05, -1.2052983468971524e-05, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.8211933875886374e-06, -5.3033127263474609e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -3.8569547100708915e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212728e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976595569e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652051e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -4.049802445574463e-05, -3.8569547100708915e-06, -4.2426501810779741e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709032e-05, -7.7139094201417813e-06, -3.905166643946806e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417796e-06, -1.9284773550354453e-06, -4.049802445574463e-05, -3.8569547100709276e-05, -3.8569547100708998e-05, -3.85695471007091e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886527e-06, -9.642386775177285e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -3.8569547100708906e-06, -1.157086413021274e-05, -1.4463580162766132e-06, -4.242650181078008e-05, -7.7139094201417813e-06, -3.4712592390638106e-05, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971514e-05, -7.713909420141783e-06, -3.8569547100708915e-06, -3.3748353713120443e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.4712592390638092e-05, -9.6423867751772266e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390638092e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886324e-06, -1.4463580162765922e-06, -3.8569547100708915e-06, -7.2317900813829587e-06, -4.8211933875886144e-07, 0.0019602972313935386, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325532006e-06, -1.44635801627661e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -1.2535102807730376e-05, -1.1088744791453887e-05, -4.8211933875886144e-07, 0.0019564402766834681, -3.8569547100708906e-06, -2.8927160325532065e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.85695471007091e-05, -3.8569547100708998e-05, -7.8103332878936337e-05, -3.8569547100708998e-05, -3.8569547100709032e-05, -1.9284773550354449e-06, -9.6423867751772287e-07, -3.8569547100708889e-06, -4.3390740488297285e-06, -1.9284773550354449e-06, -5.3033127263474905e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936175e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162765922e-06, -4.8211933875886133e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -5.7854320651063724e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976595128e-06, -4.8211933875886144e-07, -1.928477355035444e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -7.713909420141783e-06, -2.4105966937943183e-06, -1.9284773550354457e-06, -9.6423867751772266e-07, -2.8927160325531836e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.217748958290769e-05, -4.8211933875886154e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00014801063699897173, -3.8569547100708906e-06, -9.6423867751772573e-05, -3.8569547100708915e-06, -9.6423867751772266e-07, -2.8927160325531652e-05, -5.7854320651063707e-06, -2.4105966937943153e-06, -2.8927160325531977e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936175e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -0.00011040532857577958, -1.4463580162765914e-06, -9.6423867751772627e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936337e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.3017222146489229e-05, -4.6283456520850965e-05, -3.8569547100708915e-06, -3.4230473051879016e-05, -5.785432065106369e-06, -5.785432065106369e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886561e-06, -3.8569547100708898e-06, -4.8211933875886442e-06, -1.0124506113936147e-05, -3.8569547100708915e-06, -2.4105966937943255e-06, -1.1088744791453838e-05, -3.8569547100708915e-06, -5.7854320651063707e-06, -1.4463580162766105e-06, -2.4105966937943153e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063351e-06, -2.8927160325531718e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.1570864130212735e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.3390740488297903e-06, -1.6392057517801335e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488297581e-06, -1.2535102807730475e-05, -3.8569547100708906e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -8.1960287589005776e-06, -1.4463580162765833e-05, -5.7854320651063707e-06, -2.8927160325532006e-06, -4.8211933875886144e-07, -1.9284773550354457e-06, -7.7139094201417813e-06, -1.1570864130212733e-05, -3.8569547100708898e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -5.7854320651063698e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.3390740488297818e-06, -2.4105966937943213e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.4712592390638051e-05, -1.9284773550354453e-06, -4.8211933875886144e-07, -2.8927160325531652e-05, -3.8569547100708915e-06, -2.3141728260425818e-05, -2.3141728260425469e-05, -2.4105966937943048e-05, -2.3141728260425818e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.3748353713120462e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.9409279664290629e-05, -9.6423867751772266e-07, -3.4712592390638092e-05, -3.4712592390638092e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.4712592390638106e-05, -3.4712592390638038e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765931e-06, -7.713909420141783e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -2.4226496772633109e-05, -2.4105966937943194e-05, -6.0264917344858201e-07, -1.2052983468971528e-07, -3.6158950406915288e-07, -1.2052983468971716e-06, -9.6423867751773833e-06, -2.4105966937943056e-07, -1.1088744791453782e-05, -1.2052983468971531e-07, -1.928477355035444e-06, -1.9284773550354436e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751773494e-06, -9.6423867751773664e-06, -9.6423867751772202e-07, -2.736027247456512e-05, 0.00049079748685652272, -2.4105966937943506e-05, -1.928477355035444e-06, -9.6423867751772224e-07, -9.6423867751772202e-07, -1.2052983468971528e-07, -1.2052983468971531e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -2.4105966937943231e-07, -2.410596693794322e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772181e-07, -6.0264917344858201e-07, -3.6158950406915309e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971528e-07, -1.8079475203457492e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.0847685122074177e-06, -9.6423867751772245e-07, -1.8079475203457606e-06, -2.4105966937943051e-07, -1.2052983468971552e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971525e-07, -1.2052983468971528e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -2.4105966937943051e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.2052983468971691e-06, -9.6423867751772224e-07, -1.9284773550354445e-06, -1.2052983468971525e-07, -9.6423867751772224e-07, -2.0490071897251393e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -3.8569547100708957e-06, -3.0132458672429069e-06, -9.6423867751772224e-07, -1.928477355035444e-06, -1.928477355035444e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -1.2052983468971695e-06, -1.3258281815868595e-06, -4.8211933875886101e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -2.4105966937943051e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -1.2052983468971523e-07, -9.6423867751772224e-07, -2.4105966937943051e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971528e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.2052983468971528e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.2052983468971528e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772245e-07, -9.6423867751772202e-07, -2.892716032553223e-06, -9.6423867751772202e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -4.8211933875886122e-07, -2.1695370244148397e-06, -4.8211933875886122e-07, -1.2052983468971525e-07, -2.4105966937943061e-07, -1.5668878509663165e-06, -9.6423867751772224e-07, -1.9284773550354445e-06, -1.0124506113936147e-05, -9.6423867751772224e-07, -1.0606625452694884e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.928477355035444e-06, -9.6423867751773393e-06, -1.928477355035444e-06, -9.7629166098670726e-06, -1.2052983468971528e-07, -1.928477355035444e-06, -1.928477355035444e-06, -4.8211933875886101e-07, -1.0124506113936141e-05, -9.6423867751773833e-06, -9.6423867751773308e-06, -9.6423867751773562e-06, -1.2052983468971525e-07, -4.8211933875886101e-07, -1.2052983468971531e-07, -1.2052983468971525e-07, -1.205298346897161e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772202e-07, -1.2052983468971733e-06, -2.4105966937943407e-06, -1.928477355035444e-06, -1.9284773550354445e-06, -9.6423867751772202e-07, -2.8927160325532256e-06, -3.6158950406915839e-07, -1.0606625452694971e-05, -1.9284773550354445e-06, -8.6781480976593926e-06, -1.2052983468971528e-07, -1.2052983468971531e-07, -3.013245867242917e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -8.4370884282800494e-07, -4.8211933875886122e-07, -2.4105966937943051e-07, -8.6781480976593892e-06, -2.4105966937943051e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -8.6781480976593892e-06, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.2052983468971691e-06, -3.6158950406914007e-07, -9.6423867751772245e-07, -1.8079475203457492e-06, -1.2052983468971531e-07, -9.6423867751772245e-07, 0.00049079748685652272, -2.410596693794322e-07, -2.4105966937943051e-07, -1.2052983468971531e-07, -7.2317900813831021e-07, -3.6158950406915759e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.9284773550354445e-06, -3.1337757019326254e-06, -2.7721861978634291e-06, -1.2052983468971531e-07, -1.9284773550354445e-06, -9.6423867751772224e-07, -7.2317900813831169e-07, -2.4105966937943056e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -9.6423867751773562e-06, -9.6423867751773308e-06, -1.952583321973421e-05, -9.6423867751773308e-06, -9.6423867751773393e-06, -4.8211933875886101e-07, -2.4105966937943056e-07, -9.6423867751772202e-07, -1.0847685122074156e-06, -4.8211933875886101e-07, -1.3258281815868667e-06, -1.2052983468971528e-07, -1.2052983468971531e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.928477355035444e-06, -9.6423867751772224e-07, -1.2052983468971531e-07, -1.9525833219734166e-05, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.2052983468971528e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -3.6158950406915309e-07, -1.2052983468971525e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -1.2052983468971525e-07, -4.8211933875886091e-07, -1.4463580162766136e-06, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -2.1695370244148448e-06, -1.2052983468971528e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -6.0264917344858466e-07, -4.8211933875886112e-07, -2.4105966937943051e-07, -7.2317900813830597e-07, -1.0245035948625833e-05, -1.2052983468971531e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -5.544372395726865e-06, -1.205298346897164e-06, -1.2052983468971525e-07, -9.6423867751772202e-07, -9.6423867751772181e-07, -9.6423867751772202e-07, -1.9284773550354445e-06, -9.6423867751772181e-07, -1.9284773550354445e-06, -9.6423867751772181e-07, -9.6423867751772181e-07, -3.7002659249743468e-05, -9.6423867751772224e-07, -2.4105966937943343e-05, -9.6423867751772245e-07, -2.4105966937943051e-07, -7.2317900813829739e-06, -1.4463580162766132e-06, -6.0264917344858392e-07, -7.2317900813830561e-06, -1.2052983468971531e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.9525833219734166e-05, -9.6423867751772224e-07, -9.6423867751772224e-07, -2.7601332143944603e-05, -3.6158950406914113e-07, -2.4105966937943363e-05, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.2052983468971528e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.4105966937943051e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.952583321973421e-05, -9.6423867751772202e-07, -9.6423867751772202e-07, -3.2543055366223004e-06, -1.1570864130212906e-05, -9.6423867751772245e-07, -8.5576182629696355e-06, -1.4463580162766115e-06, -1.4463580162766115e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.2052983468971742e-06, -9.6423867751772202e-07, -1.2052983468971712e-06, -2.5311265284840419e-06, -9.6423867751772245e-07, -6.0264917344858624e-07, -2.7721861978634308e-06, -9.6423867751772224e-07, -1.4463580162766132e-06, -3.6158950406915775e-07, -6.026491734485837e-07, -2.4105966937943114e-07, -1.2052983468971525e-07, -1.2052983468971531e-07, -9.6423867751772202e-07, -1.4463580162766124e-06, -7.2317900813831148e-07, -4.8211933875886122e-07, -9.6423867751772224e-07, -9.6423867751772202e-07, -9.6423867751772181e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -4.8211933875886112e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -4.8211933875886112e-07, -9.6423867751772181e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -2.8927160325531549e-06, -9.6423867751772245e-07, -1.928477355035444e-06, -1.9284773550354436e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.0847685122074228e-06, -4.0980143794503049e-06, -2.4105966937943045e-07, -9.6423867751772202e-07, -9.6423867751772245e-07, -1.0847685122074228e-06, -3.1337757019326275e-06, -9.6423867751772202e-07, -9.6423867751772245e-07, -9.6423867751772202e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.2052983468971528e-07, -1.2052983468971605e-07, -1.2052983468971525e-07, -2.4105966937943061e-07, -2.0490071897252075e-06, -3.6158950406914954e-06, -1.4463580162766132e-06, -7.2317900813831021e-07, -1.2052983468971531e-07, -4.8211933875886112e-07, -1.9284773550354445e-06, -2.8927160325532243e-06, -9.6423867751772202e-07, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886112e-07, -1.4463580162766128e-06, -9.6423867751772224e-07, -1.2052983468971525e-07, -2.4105966937943051e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -1.0847685122074211e-06, -6.026491734485854e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -8.678148097659379e-06, -4.8211933875886101e-07, -1.2052983468971531e-07, -7.2317900813829739e-06, -9.6423867751772224e-07, -5.785432065106535e-06, -5.7854320651064495e-06, -6.0264917344858129e-06, -5.785432065106535e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772202e-07, -1.2052983468971525e-07, -9.6423867751772202e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -8.4370884282800207e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.352319916072698e-06, -2.4105966937943051e-07, -8.6781480976593892e-06, -8.6781480976593892e-06, -9.6423867751772224e-07, -1.2052983468971528e-07, -9.6423867751772224e-07, -8.6781480976593926e-06, -8.6781480976593756e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -2.4105966937943051e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.6158950406915309e-07, -1.9284773550354449e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -2.4226496772633102e-05, -2.4105966937943187e-05, -6.0264917344858201e-07, -1.2052983468971528e-07, -3.6158950406915283e-07, -1.2052983468971716e-06, -9.6423867751773867e-06, -2.4105966937943056e-07, -1.1088744791453789e-05, -1.2052983468971531e-07, -1.928477355035444e-06, -1.9284773550354436e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751773528e-06, -9.6423867751773697e-06, -9.6423867751772202e-07, 0.00046367827405134138, -2.410596693794322e-07, -2.4105966937943506e-05, -1.928477355035444e-06, -9.6423867751772224e-07, -9.6423867751772202e-07, -1.2052983468971528e-07, -1.2052983468971531e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -2.410596693794322e-07, -2.410596693794322e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772181e-07, -6.0264917344858201e-07, -3.6158950406915309e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971528e-07, -1.8079475203457486e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.0847685122074181e-06, -9.6423867751772245e-07, -1.8079475203457606e-06, -2.4105966937943051e-07, -1.2052983468971552e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971525e-07, -1.2052983468971528e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -2.4105966937943051e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.2052983468971691e-06, -9.6423867751772224e-07, -1.9284773550354445e-06, -1.2052983468971525e-07, -9.6423867751772224e-07, -2.0490071897251393e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -3.8569547100708957e-06, -3.013245867242906e-06, -9.6423867751772224e-07, -1.928477355035444e-06, -1.928477355035444e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -1.2052983468971695e-06, -1.3258281815868595e-06, -4.8211933875886101e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -2.4105966937943051e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -1.2052983468971523e-07, -9.6423867751772224e-07, -2.4105966937943051e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971528e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.2052983468971528e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.2052983468971528e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772245e-07, -9.6423867751772202e-07, -2.8927160325532222e-06, -9.6423867751772202e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -4.8211933875886122e-07, -2.1695370244148405e-06, -4.8211933875886122e-07, -1.2052983468971525e-07, -2.4105966937943061e-07, -1.566887850966317e-06, -9.6423867751772224e-07, -1.9284773550354445e-06, -1.0124506113936147e-05, -9.6423867751772224e-07, -1.0606625452694879e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.928477355035444e-06, -9.6423867751773409e-06, -1.928477355035444e-06, -9.762916609867076e-06, -1.2052983468971528e-07, -1.928477355035444e-06, -1.928477355035444e-06, -4.8211933875886101e-07, -1.0124506113936144e-05, -9.6423867751773867e-06, -9.6423867751773342e-06, -9.6423867751773579e-06, -1.2052983468971525e-07, -4.8211933875886101e-07, -1.2052983468971531e-07, -1.2052983468971525e-07, -1.205298346897161e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772202e-07, -1.2052983468971738e-06, -2.4105966937943416e-06, -1.928477355035444e-06, -1.9284773550354445e-06, -9.6423867751772202e-07, -2.8927160325532252e-06, -3.6158950406915839e-07, -1.0606625452694969e-05, -1.9284773550354445e-06, -8.6781480976593959e-06, -1.2052983468971528e-07, -1.2052983468971531e-07, -3.0132458672429153e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -8.4370884282800516e-07, -4.8211933875886122e-07, -2.4105966937943051e-07, -8.6781480976593959e-06, -2.4105966937943051e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -8.6781480976593926e-06, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.2052983468971691e-06, -3.6158950406914028e-07, -9.6423867751772245e-07, -1.8079475203457496e-06, -1.2052983468971531e-07, -9.6423867751772245e-07, -2.410596693794322e-07, 0.00049079748685652272, -2.4105966937943051e-07, -1.2052983468971531e-07, -7.2317900813830999e-07, -3.6158950406915754e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.9284773550354445e-06, -3.1337757019326254e-06, -2.7721861978634299e-06, -1.2052983468971531e-07, -1.9284773550354445e-06, -9.6423867751772224e-07, -7.2317900813831169e-07, -2.4105966937943056e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -9.6423867751773579e-06, -9.6423867751773342e-06, -1.952583321973421e-05, -9.6423867751773342e-06, -9.6423867751773409e-06, -4.8211933875886101e-07, -2.4105966937943056e-07, -9.6423867751772202e-07, -1.084768512207416e-06, -4.8211933875886101e-07, -1.3258281815868667e-06, -1.2052983468971528e-07, -1.2052983468971531e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.928477355035444e-06, -9.6423867751772224e-07, -1.2052983468971531e-07, -1.9525833219734169e-05, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.2052983468971528e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -3.6158950406915309e-07, -1.2052983468971525e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -1.2052983468971525e-07, -4.8211933875886091e-07, -1.4463580162766132e-06, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -2.1695370244148456e-06, -1.2052983468971528e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -6.0264917344858476e-07, -4.8211933875886112e-07, -2.4105966937943051e-07, -7.2317900813830597e-07, -1.0245035948625833e-05, -1.2052983468971531e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -5.544372395726865e-06, -1.2052983468971642e-06, -1.2052983468971525e-07, -9.6423867751772202e-07, -9.6423867751772181e-07, -9.6423867751772202e-07, -1.9284773550354445e-06, -9.6423867751772181e-07, -1.9284773550354445e-06, -9.6423867751772181e-07, -9.6423867751772181e-07, -3.7002659249743455e-05, -9.6423867751772224e-07, -2.4105966937943336e-05, -9.6423867751772245e-07, -2.4105966937943051e-07, -7.2317900813829723e-06, -1.4463580162766128e-06, -6.0264917344858392e-07, -7.2317900813830527e-06, -1.2052983468971531e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.9525833219734169e-05, -9.6423867751772224e-07, -9.6423867751772224e-07, -2.760133214394461e-05, -3.6158950406914113e-07, -2.4105966937943357e-05, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.2052983468971528e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.4105966937943051e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.952583321973421e-05, -9.6423867751772202e-07, -9.6423867751772202e-07, -3.2543055366223012e-06, -1.1570864130212902e-05, -9.6423867751772245e-07, -8.5576182629696405e-06, -1.4463580162766115e-06, -1.4463580162766115e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.2052983468971744e-06, -9.6423867751772202e-07, -1.2052983468971714e-06, -2.5311265284840419e-06, -9.6423867751772245e-07, -6.0264917344858646e-07, -2.7721861978634316e-06, -9.6423867751772224e-07, -1.4463580162766128e-06, -3.6158950406915764e-07, -6.0264917344858392e-07, -2.4105966937943114e-07, -1.2052983468971525e-07, -1.2052983468971531e-07, -9.6423867751772202e-07, -1.4463580162766124e-06, -7.2317900813831126e-07, -4.8211933875886122e-07, -9.6423867751772224e-07, -9.6423867751772202e-07, -9.6423867751772181e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -4.8211933875886112e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -4.8211933875886112e-07, -9.6423867751772181e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -2.8927160325531549e-06, -9.6423867751772245e-07, -1.928477355035444e-06, -1.9284773550354436e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.0847685122074232e-06, -4.0980143794503032e-06, -2.4105966937943045e-07, -9.6423867751772202e-07, -9.6423867751772245e-07, -1.0847685122074232e-06, -3.133775701932628e-06, -9.6423867751772202e-07, -9.6423867751772245e-07, -9.6423867751772202e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.2052983468971528e-07, -1.2052983468971605e-07, -1.2052983468971525e-07, -2.4105966937943061e-07, -2.0490071897252067e-06, -3.6158950406914946e-06, -1.4463580162766128e-06, -7.2317900813830999e-07, -1.2052983468971531e-07, -4.8211933875886112e-07, -1.9284773550354445e-06, -2.8927160325532235e-06, -9.6423867751772202e-07, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886112e-07, -1.4463580162766126e-06, -9.6423867751772224e-07, -1.2052983468971525e-07, -2.4105966937943051e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -1.0847685122074215e-06, -6.0264917344858561e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -8.6781480976593858e-06, -4.8211933875886101e-07, -1.2052983468971531e-07, -7.2317900813829706e-06, -9.6423867751772224e-07, -5.7854320651065342e-06, -5.7854320651064478e-06, -6.0264917344858112e-06, -5.7854320651065342e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772202e-07, -1.2052983468971525e-07, -9.6423867751772202e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -8.437088428280024e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.3523199160726963e-06, -2.4105966937943051e-07, -8.6781480976593926e-06, -8.6781480976593959e-06, -9.6423867751772224e-07, -1.2052983468971528e-07, -9.6423867751772224e-07, -8.6781480976593959e-06, -8.678148097659379e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -2.4105966937943051e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.6158950406915309e-07, -1.9284773550354449e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772245e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971528e-07, -1.2052983468971531e-07, -2.4226496772633082e-05, -2.4105966937943157e-05, -6.0264917344858116e-07, -1.2052983468971528e-07, -3.6158950406915219e-07, -1.2052983468971699e-06, -9.6423867751773867e-06, -2.4105966937943061e-07, -1.1088744791453782e-05, -1.2052983468971531e-07, -1.928477355035444e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751773884e-06, -9.6423867751773867e-06, -9.6423867751772202e-07, -2.7360272474565255e-05, -2.4105966937943051e-07, -2.4105966937943479e-05, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772202e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943051e-07, -2.4105966937943051e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772181e-07, -6.0264917344858116e-07, -3.6158950406914446e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971528e-07, -1.8079475203457645e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.0847685122074203e-06, -9.6423867751772245e-07, -1.8079475203457589e-06, -2.4105966937943056e-07, -1.2052983468971525e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971528e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943051e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.2052983468971621e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.2052983468971528e-07, -9.6423867751772245e-07, -2.0490071897251414e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.9284773550354445e-06, -3.8569547100708949e-06, -3.0132458672428438e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -1.2052983468971621e-06, -1.325828181586861e-06, -4.8211933875886101e-07, -1.9284773550354445e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -2.4105966937943051e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.2052983468971525e-07, -9.6423867751772245e-07, -2.4105966937943056e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.928477355035444e-06, -1.928477355035444e-06, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971528e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772245e-07, -9.6423867751772202e-07, -2.8927160325532158e-06, -9.6423867751772202e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -4.8211933875886122e-07, -2.1695370244148448e-06, -4.8211933875886122e-07, -1.2052983468971528e-07, -2.4105966937943061e-07, -1.5668878509663161e-06, -9.6423867751772245e-07, -1.9284773550354445e-06, -1.0124506113936168e-05, -9.6423867751772245e-07, -1.0606625452694898e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -9.6423867751773274e-06, -1.9284773550354449e-06, -9.7629166098670659e-06, -1.2052983468971531e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886101e-07, -1.0124506113936164e-05, -9.6423867751773867e-06, -9.6423867751773206e-06, -9.6423867751773443e-06, -1.2052983468971528e-07, -4.8211933875886101e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -1.2052983468971525e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772224e-07, -1.2052983468971716e-06, -2.4105966937943374e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -2.8927160325532188e-06, -3.6158950406915754e-07, -1.0606625452694979e-05, -1.9284773550354445e-06, -8.6781480976594129e-06, -1.2052983468971531e-07, -1.2052983468971531e-07, -3.0132458672429128e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -8.437088428280059e-07, -4.8211933875886101e-07, -2.4105966937943056e-07, -8.6781480976594095e-06, -2.4105966937943056e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -8.6781480976594095e-06, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.205298346897167e-06, -3.615895040691523e-07, -9.6423867751772245e-07, -1.807947520345753e-06, -1.2052983468971531e-07, -9.6423867751772245e-07, -2.4105966937943051e-07, -2.4105966937943051e-07, 0.00049079748685652272, -1.2052983468971531e-07, -7.2317900813830872e-07, -3.615895040691568e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -3.1337757019326237e-06, -2.7721861978634477e-06, -1.2052983468971531e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -7.2317900813831021e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751773443e-06, -9.6423867751773206e-06, -1.9525833219734189e-05, -9.6423867751773206e-06, -9.6423867751773274e-06, -4.8211933875886101e-07, -2.4105966937943061e-07, -9.6423867751772202e-07, -1.0847685122074181e-06, -4.8211933875886101e-07, -1.325828181586868e-06, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.9525833219734145e-05, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -3.615895040691523e-07, -1.2052983468971528e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -4.8211933875886101e-07, -1.44635801627661e-06, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -2.1695370244148498e-06, -1.2052983468971531e-07, -4.8211933875886101e-07, -2.4105966937943056e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -6.0264917344858392e-07, -4.8211933875886122e-07, -2.4105966937943056e-07, -7.2317900813830438e-07, -1.0245035948625833e-05, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -5.5443723957268717e-06, -1.2052983468971623e-06, -1.2052983468971528e-07, -9.6423867751772224e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -9.6423867751772202e-07, -1.9284773550354449e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -3.7002659249743374e-05, -9.6423867751772245e-07, -2.4105966937943228e-05, -9.6423867751772245e-07, -2.4105966937943056e-07, -7.2317900813829638e-06, -1.4463580162766096e-06, -6.0264917344858307e-07, -7.2317900813830459e-06, -1.2052983468971531e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.9525833219734145e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.7601332143944644e-05, -3.6158950406915209e-07, -2.4105966937943329e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, 0.00049079748685652272, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9525833219734189e-05, -9.6423867751772224e-07, -9.6423867751772224e-07, -3.2543055366223021e-06, -1.1570864130212874e-05, -9.6423867751772245e-07, -8.5576182629696693e-06, -1.4463580162766083e-06, -1.4463580162766083e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.2052983468971725e-06, -9.6423867751772202e-07, -1.2052983468971697e-06, -2.5311265284840402e-06, -9.6423867751772245e-07, -6.026491734485855e-07, -2.772186197863435e-06, -9.6423867751772245e-07, -1.4463580162766096e-06, -3.615895040691569e-07, -6.0264917344858296e-07, -2.4105966937943051e-07, -1.2052983468971528e-07, -1.2052983468971531e-07, -9.6423867751772202e-07, -1.4463580162766088e-06, -7.2317900813830999e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -9.6423867751772202e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.928477355035444e-06, -2.8927160325532175e-06, -9.6423867751772245e-07, -1.928477355035444e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.0847685122074253e-06, -4.0980143794503083e-06, -2.4105966937943051e-07, -9.6423867751772202e-07, -9.6423867751772245e-07, -1.0847685122074253e-06, -3.1337757019326263e-06, -9.6423867751772202e-07, -9.6423867751772245e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -1.2052983468971525e-07, -1.2052983468971528e-07, -2.4105966937943061e-07, -2.0490071897251296e-06, -3.6158950406914853e-06, -1.4463580162766096e-06, -7.2317900813830872e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -2.8927160325532171e-06, -9.6423867751772202e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -1.4463580162766094e-06, -9.6423867751772245e-07, -1.2052983468971536e-07, -2.4105966937943051e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.0847685122074236e-06, -6.0264917344858455e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -8.6781480976594129e-06, -4.8211933875886101e-07, -1.2052983468971531e-07, -7.2317900813829638e-06, -9.6423867751772245e-07, -5.7854320651065223e-06, -5.7854320651064351e-06, -6.0264917344858044e-06, -5.7854320651065223e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -8.4370884282800376e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.3523199160726895e-06, -2.4105966937943056e-07, -8.6781480976594095e-06, -8.6781480976594095e-06, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -8.6781480976594129e-06, -8.6781480976593959e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -2.4105966937943056e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.6158950406915219e-07, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -1.2113248386316503e-05, -1.2052983468971538e-05, -3.0132458672428963e-07, -6.0264917344857666e-08, -1.8079475203457498e-07, -6.0264917344857947e-07, -4.8211933875886764e-06, -1.2052983468971536e-07, -5.5443723957269166e-06, -6.0264917344857679e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886764e-06, -4.8211933875886764e-06, -4.8211933875886122e-07, -1.3680136237282628e-05, -1.2052983468971531e-07, -1.2052983468971699e-05, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886101e-07, -3.0132458672428963e-07, -1.8079475203457509e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857666e-08, -9.0397376017287905e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610371373e-07, -4.8211933875886144e-07, -9.0397376017287608e-07, -1.2052983468971533e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344858169e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344857666e-08, -4.8211933875886144e-07, -1.0245035948625747e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6423867751772266e-07, -1.9284773550354445e-06, -1.506622933621446e-06, -4.8211933875886144e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -6.026491734485819e-07, -6.6291409079343155e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -1.2052983468971533e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.4463580162765994e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.0847685122074296e-06, -2.4105966937943072e-07, -6.0264917344857666e-08, -1.2052983468971536e-07, -7.8344392548314185e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -5.0622530569680805e-06, -4.8211933875886144e-07, -5.3033127263474575e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -4.8211933875886468e-06, -9.6423867751772266e-07, -4.8814583049335177e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -5.0622530569680788e-06, -4.8211933875886764e-06, -4.8211933875886434e-06, -4.8211933875886552e-06, -6.0264917344857666e-08, -2.4105966937943061e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -6.0264917344858392e-07, -1.2052983468971568e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -4.8211933875886133e-07, -1.4463580162766009e-06, -1.807947520345726e-07, -5.303312726347499e-06, -9.6423867751772266e-07, -4.3390740488297352e-06, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.5066229336214509e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.2185442141400427e-07, -2.4105966937943061e-07, -1.2052983468971533e-07, -4.3390740488297352e-06, -1.2052983468971533e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297335e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344858137e-07, -1.8079475203457509e-07, -4.8211933875886144e-07, -9.0397376017287323e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, 0.00024545900834560644, -3.6158950406915219e-07, -1.8079475203457734e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -1.5668878509663102e-06, -1.3860930989317298e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -3.6158950406914467e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886552e-06, -4.8211933875886434e-06, -9.7629166098670659e-06, -4.8211933875886434e-06, -4.8211933875886468e-06, -2.4105966937943061e-07, -1.2052983468971536e-07, -4.8211933875886112e-07, -5.4238425610371267e-07, -2.4105966937943061e-07, -6.6291409079343526e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.7629166098670438e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.8079475203457509e-07, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943061e-07, -7.2317900813830078e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, 0.00024443450475074372, -6.0264917344857679e-08, -2.4105966937943051e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.0132458672429095e-07, -2.4105966937943072e-07, -1.2052983468971533e-07, -3.6158950406915007e-07, -5.1225179743129167e-06, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, -2.7721861978634477e-06, -6.0264917344857926e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.8501329624871578e-05, -4.8211933875886133e-07, -1.2052983468971614e-05, -4.8211933875886144e-07, -1.2052983468971533e-07, -3.6158950406914683e-06, -7.2317900813830057e-07, -3.0132458672429048e-07, -3.6158950406915094e-06, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670438e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.3800666071972386e-05, -1.8079475203457498e-07, -1.2052983468971624e-05, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670659e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.6271527683111771e-06, -5.7854320651063978e-06, -4.8211933875886144e-07, -4.2788091314848736e-06, -7.2317900813828628e-07, -7.2317900813828628e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344858413e-07, -4.8211933875886122e-07, -6.0264917344858286e-07, -1.2655632642420193e-06, -4.8211933875886144e-07, -3.0132458672429175e-07, -1.3860930989317234e-06, -4.8211933875886144e-07, -7.2317900813830057e-07, -1.8079475203457739e-07, -3.0132458672429048e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -7.2317900813830015e-07, -3.6158950406915288e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.4463580162766003e-06, -4.8211933875886144e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610371627e-07, -2.0490071897251618e-06, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -5.4238425610371627e-07, -1.566887850966311e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.0245035948625686e-06, -1.8079475203457367e-06, -7.2317900813830057e-07, -3.6158950406915219e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -9.6423867751772266e-07, -1.4463580162766001e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -7.2317900813830047e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -1.2052983468971533e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -5.4238425610371542e-07, -3.0132458672428963e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.3390740488297446e-06, -2.4105966937943061e-07, -6.0264917344857679e-08, -3.615895040691465e-06, -4.8211933875886144e-07, -2.8927160325532442e-06, -2.8927160325532006e-06, -3.0132458672428916e-06, -2.8927160325532442e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.2185442141400425e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -3.6761599580363405e-06, -1.2052983468971533e-07, -4.3390740488297335e-06, -4.3390740488297352e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.3390740488297352e-06, -4.3390740488297268e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.8079475203457509e-07, -9.6423867751772287e-07, -2.8927160325532391e-06, -2.8927160325532264e-06, -2.8927160325532298e-06, -2.8927160325532383e-06, -1.4463580162765982e-06, -1.4463580162765982e-06, -2.8927160325531955e-06, -2.8927160325531955e-06, -3.6158950406915304e-07, -3.6158950406915261e-07, -7.2679490317899495e-05, -7.2317900813829541e-05, -1.8079475203457393e-06, -3.6158950406915299e-07, -1.0847685122074459e-06, -3.6158950406914937e-06, -2.8927160325531733e-05, -7.2317900813830523e-07, -3.3266234374361522e-05, -3.6158950406914901e-07, -5.7854320651064596e-06, -5.7854320651064562e-06, -2.8927160325531938e-06, -2.8927160325531972e-06, -2.8927160325531679e-05, -2.8927160325531672e-05, -2.8927160325531887e-06, -8.2080817423696101e-05, -7.2317900813831021e-07, -7.2317900813829595e-05, -5.785432065106463e-06, -2.8927160325532281e-06, -2.89271603255324e-06, -3.615895040691488e-07, -3.6158950406915309e-07, -2.8927160325532175e-06, -2.8927160325532192e-06, -7.2317900813831021e-07, -7.2317900813831021e-07, -3.6158950406914849e-07, -3.6158950406915134e-07, -2.892716032553187e-06, -1.8079475203457378e-06, -1.0847685122074383e-06, -1.4463580162765986e-06, -1.4463580162765978e-06, -3.6158950406915299e-07, -5.4238425610371815e-06, -2.8927160325532103e-06, -2.8927160325532112e-06, -3.2543055366223156e-06, -2.8927160325531938e-06, -5.4238425610371951e-06, -7.2317900813830608e-07, -3.6158950406915457e-07, -2.8927160325531938e-06, -2.8927160325531955e-06, -3.615895040691532e-07, -3.6158950406915209e-07, -2.8927160325532129e-06, -2.8927160325532095e-06, -7.2317900813829697e-07, -3.6158950406914499e-07, -2.8927160325532023e-06, -5.7854320651063792e-06, -3.6158950406914853e-06, -2.8927160325532175e-06, -5.785432065106408e-06, -3.615895040691533e-07, -2.8927160325532052e-06, -6.1470215691755065e-06, -2.8927160325532163e-06, -2.8927160325531616e-06, -5.7854320651064562e-06, -1.1570864130212755e-05, -9.0397376017287198e-06, -2.8927160325531951e-06, -5.7854320651064495e-06, -5.7854320651064461e-06, -1.44635801627662e-06, -2.8927160325532091e-06, -3.6158950406914836e-06, -3.9774845447605817e-06, -1.4463580162766204e-06, -5.7854320651063758e-06, -2.8927160325532167e-06, -2.8927160325532171e-06, -2.892716032553218e-06, -7.2317900813828956e-07, -2.892716032553234e-06, -2.8927160325531951e-06, -3.61589504069155e-07, -2.8927160325531942e-06, -7.2317900813830142e-07, -2.8927160325532324e-06, -2.8927160325532158e-06, -2.8927160325532192e-06, -3.615895040691533e-07, -5.7854320651064495e-06, -5.7854320651064528e-06, -3.615895040691523e-07, -2.8927160325532158e-06, -2.892716032553215e-06, -3.6158950406915261e-07, -2.89271603255324e-06, -2.8927160325532366e-06, -2.8927160325531608e-06, -2.8927160325532366e-06, -8.6781480976595433e-06, -2.8927160325532366e-06, -2.8927160325532006e-06, -2.8927160325532061e-06, -3.6158950406915113e-07, -2.892716032553204e-06, -2.8927160325532069e-06, -5.7854320651064232e-06, -1.4463580162765978e-06, -6.5086110732446278e-06, -1.4463580162765986e-06, -3.6158950406915457e-07, -7.2317900813829168e-07, -4.7006635528989193e-06, -2.8927160325532192e-06, -5.7854320651063775e-06, -3.0373518341808551e-05, -2.8927160325532129e-06, -3.181987635808466e-05, -2.8927160325531633e-06, -2.8927160325531608e-06, -5.7854320651064461e-06, -2.8927160325531821e-05, -5.7854320651064495e-06, -2.9288749829601142e-05, -3.6158950406914891e-07, -5.7854320651064528e-06, -5.7854320651064418e-06, -1.4463580162766174e-06, -3.0373518341808551e-05, -2.8927160325531733e-05, -2.892716032553173e-05, -2.8927160325531906e-05, -3.6158950406915309e-07, -1.4463580162765935e-06, -3.6158950406914542e-07, -3.6158950406915394e-07, -3.61589504069155e-07, -2.8927160325532175e-06, -2.8927160325532192e-06, -2.8927160325532175e-06, -2.8927160325532175e-06, -3.6158950406914531e-07, -3.6158950406914499e-07, -3.6158950406915039e-07, -2.8927160325532298e-06, -3.6158950406915026e-06, -7.2317900813829773e-06, -5.7854320651063165e-06, -5.7854320651064173e-06, -2.8927160325532281e-06, -8.6781480976594823e-06, -1.0847685122074152e-06, -3.1819876358084863e-05, -5.7854320651064139e-06, -2.6034444292978471e-05, -3.6158950406915288e-07, -3.6158950406914584e-07, -9.0397376017287198e-06, -5.7854320651064232e-06, -2.8927160325532103e-06, -2.5311265284840466e-06, -1.4463580162765948e-06, -7.2317900813830586e-07, -2.6034444292978478e-05, -7.2317900813830608e-07, -1.4463580162765982e-06, -1.4463580162765982e-06, -2.6034444292978471e-05, -2.8927160325532006e-06, -3.6158950406915145e-07, -2.8927160325532108e-06, -3.615895040691505e-07, -2.8927160325532074e-06, -3.6158950406914963e-06, -1.084768512207438e-06, -2.8927160325532091e-06, -5.4238425610372298e-06, -3.6158950406914859e-07, -2.8927160325532006e-06, -7.2317900813831021e-07, -7.2317900813830999e-07, -7.2317900813830872e-07, -3.6158950406915219e-07, 0.0014709461025532837, -1.0847685122074177e-06, -2.8927160325532235e-06, -2.8927160325532268e-06, -5.7854320651064113e-06, -9.4013271057978284e-06, -8.3165585935902839e-06, -3.6158950406914859e-07, -5.7854320651063775e-06, -2.8927160325532247e-06, -2.1695370244148473e-06, -7.2317900813829761e-07, -3.6158950406914499e-07, -3.6158950406915394e-07, -2.8927160325531906e-05, -2.892716032553173e-05, -5.8577499659201924e-05, -2.8927160325531726e-05, -2.8927160325531821e-05, -1.4463580162766204e-06, -7.2317900813829125e-07, -2.892716032553187e-06, -3.2543055366223254e-06, -1.44635801627662e-06, -3.9774845447606028e-06, -3.6158950406915293e-07, -3.6158950406914912e-07, -5.7854320651063809e-06, -2.8927160325532006e-06, -2.8927160325532057e-06, -3.6158950406914594e-07, -3.6158950406915299e-07, -1.4463580162766092e-06, -1.44635801627661e-06, -5.7854320651063775e-06, -2.8927160325532264e-06, -3.6158950406914986e-07, -5.8577499659202534e-05, -2.8927160325532252e-06, -2.8927160325532243e-06, -3.615895040691524e-07, -1.44635801627661e-06, -1.4463580162766096e-06, -7.2317900813829803e-07, -7.2317900813829803e-07, -1.0847685122074366e-06, -3.6158950406915309e-07, -7.2317900813829803e-07, -7.2317900813829803e-07, -3.6158950406915092e-07, -3.6158950406915309e-07, -1.4463580162765986e-06, -4.3390740488297319e-06, -2.8927160325531997e-06, -3.6158950406914563e-07, -3.6158950406914901e-07, -6.5086110732446236e-06, -3.6158950406915203e-07, -1.4463580162765931e-06, -7.2317900813829729e-07, -5.785432065106391e-06, -5.7854320651063944e-06, -1.8079475203457469e-06, -1.4463580162766066e-06, -7.2317900813829718e-07, -2.1695370244148668e-06, -3.0735107845877536e-05, -3.6158950406915134e-07, -1.4463580162766062e-06, -1.4463580162766071e-06, -5.7854320651063978e-06, -5.7854320651063876e-06, -1.4463580162766071e-06, -1.446358016276602e-06, -1.446358016276602e-06, -3.6158950406914552e-07, -1.6633117187180761e-05, -3.6158950406914637e-06, -3.615895040691533e-07, -2.8927160325532243e-06, -2.8927160325531887e-06, -2.8927160325532252e-06, -5.7854320651063876e-06, -2.8927160325531883e-06, -5.7854320651063978e-06, -2.8927160325531883e-06, -2.8927160325531883e-06, -0.00011100797774922802, -2.8927160325532247e-06, -7.2317900813829636e-05, -2.892716032553204e-06, -7.2317900813830639e-07, -2.1695370244148804e-05, -4.3390740488297429e-06, -1.8079475203457422e-06, -2.1695370244148797e-05, -3.6158950406914944e-07, -2.892716032553218e-06, -2.8927160325532171e-06, -5.8577499659202534e-05, -2.8927160325531993e-06, -2.8927160325531985e-06, -8.2803996431834653e-05, -1.0847685122074416e-06, -7.2317900813829663e-05, -2.892716032553215e-06, -2.8927160325532158e-06, -3.6158950406915097e-07, -2.8927160325532163e-06, -2.8927160325532188e-06, -3.6158950406914616e-07, -5.7854320651063944e-06, -5.785432065106391e-06, -7.2317900813830872e-07, -1.4463580162766096e-06, -1.44635801627661e-06, -2.8927160325532247e-06, -2.8927160325532264e-06, -5.8577499659201924e-05, -2.8927160325532268e-06, -2.8927160325532235e-06, -9.762916609867015e-06, -3.4712592390637916e-05, -2.8927160325532167e-06, -2.5672854788909635e-05, -4.3390740488297666e-06, -4.3390740488297666e-06, -2.8927160325532264e-06, -2.8927160325532366e-06, -3.6158950406915018e-06, -2.89271603255324e-06, -3.6158950406914921e-06, -7.5933795854521292e-06, -2.8927160325532023e-06, -1.8079475203457486e-06, -8.3165585935903787e-06, -2.8927160325532002e-06, -4.3390740488297412e-06, -1.0847685122074177e-06, -1.8079475203457418e-06, -7.2317900813830915e-07, -3.6158950406915309e-07, -3.6158950406915145e-07, -2.89271603255324e-06, -4.3390740488297496e-06, -2.1695370244148481e-06, -1.4463580162765829e-06, -2.8927160325532281e-06, -2.8927160325531887e-06, -2.8927160325531883e-06, -5.7854320651063766e-06, -2.8927160325531938e-06, -1.4463580162766071e-06, -5.7854320651063673e-06, -2.892716032553182e-06, -1.4463580162766062e-06, -2.8927160325531887e-06, -3.6158950406914944e-07, -2.8927160325531955e-06, -2.8927160325531938e-06, -5.7854320651064528e-06, -8.6781480976595162e-06, -2.8927160325532091e-06, -5.785432065106463e-06, -5.7854320651064528e-06, -2.8927160325531955e-06, -2.8927160325531955e-06, -2.8927160325532002e-06, -2.8927160325531976e-06, -3.2543055366223105e-06, -1.2294043138351113e-05, -7.2317900813829697e-07, -2.8927160325532366e-06, -2.8927160325531803e-06, -3.2543055366223088e-06, -9.4013271057977878e-06, -2.8927160325532264e-06, -2.8927160325532108e-06, -2.8927160325532391e-06, -1.4463580162766066e-06, -1.4463580162766071e-06, -3.6158950406915288e-07, -3.61589504069155e-07, -3.615895040691533e-07, -7.2317900813830438e-07, -6.1470215691755717e-06, -1.0847685122074377e-05, -4.3390740488297319e-06, 0.0014709461025532837, -3.6158950406915124e-07, -1.4463580162766058e-06, -5.7854320651064139e-06, -8.678148097659523e-06, -2.8927160325532349e-06, -1.4463580162766058e-06, -5.7854320651064207e-06, -5.7854320651064173e-06, -1.4463580162766058e-06, -4.3390740488297463e-06, -2.8927160325531993e-06, -3.6158950406915447e-07, -7.2317900813829718e-07, -1.4463580162766058e-06, -1.4463580162766071e-06, -3.2543055366223118e-06, -1.8079475203457465e-06, -2.892716032553223e-06, -5.7854320651063792e-06, -2.6034444292978745e-05, -1.4463580162766174e-06, -3.615895040691452e-07, -2.1695370244148797e-05, -2.8927160325532061e-06, -1.7356296195318663e-05, -1.7356296195318985e-05, -1.8079475203457436e-05, -1.7356296195318663e-05, -1.4463580162766174e-06, -1.4463580162766166e-06, -2.8927160325532108e-06, -2.8927160325532074e-06, -1.4463580162766037e-06, -1.4463580162766037e-06, -2.8927160325532324e-06, -3.6158950406915436e-07, -2.892716032553234e-06, -3.6158950406915113e-07, -3.6158950406915272e-07, -2.5311265284840145e-05, -1.4463580162766037e-06, -1.4463580162766037e-06, -2.205695974821807e-05, -7.2317900813830756e-07, -2.6034444292978471e-05, -2.6034444292978478e-05, -2.8927160325532052e-06, -3.6158950406915055e-07, -2.8927160325532078e-06, -2.6034444292978471e-05, -2.6034444292978471e-05, -2.8927160325532057e-06, -2.892716032553204e-06, -7.2317900813829994e-07, -7.2317900813830576e-07, -5.7854320651063842e-06, -2.892716032553204e-06, -2.8927160325532057e-06, -1.0847685122074391e-06, -5.7854320651063842e-06, -1.4463580162766295e-06, -1.4463580162766234e-06, -1.4463580162766246e-06, -1.4463580162766291e-06, -7.2317900813830407e-07, -7.2317900813830407e-07, -1.4463580162766079e-06, -1.4463580162766075e-06, -1.807947520345713e-07, -1.8079475203457755e-07, -3.6339745158950053e-05, -3.6158950406915062e-05, -9.0397376017287333e-07, -1.807947520345713e-07, -5.4238425610371849e-07, -1.8079475203457524e-06, -1.4463580162765916e-05, -3.615895040691551e-07, -1.6633117187180673e-05, -1.8079475203457578e-07, -2.8927160325531417e-06, -2.89271603255314e-06, -1.4463580162766071e-06, -1.4463580162766083e-06, -1.4463580162765889e-05, -1.4463580162765889e-05, -1.4463580162766041e-06, -4.1040408711848064e-05, -3.6158950406915759e-07, -3.6158950406915096e-05, -2.8927160325531434e-06, -1.4463580162766238e-06, -1.4463580162766299e-06, -1.8079475203457565e-07, -1.8079475203457776e-07, -1.4463580162766187e-06, -1.44635801627662e-06, -3.6158950406915759e-07, -3.6158950406915759e-07, -1.807947520345757e-07, -1.8079475203457694e-07, -1.4463580162766033e-06, -9.0397376017286899e-07, -5.4238425610371479e-07, -7.2317900813830428e-07, -7.2317900813830385e-07, -1.807947520345713e-07, -2.7119212805185798e-06, -1.4463580162765808e-06, -1.4463580162765817e-06, -1.6271527683111555e-06, -1.4463580162766066e-06, -2.7119212805185865e-06, -3.615895040691424e-07, -1.807947520345785e-07, -1.4463580162766071e-06, -1.4463580162766075e-06, -1.8079475203457784e-07, -1.8079475203457228e-07, -1.4463580162765825e-06, -1.44635801627658e-06, -3.6158950406915103e-07, -1.8079475203457665e-07, -1.4463580162766115e-06, -2.8927160325532095e-06, -1.8079475203457498e-06, -1.4463580162766191e-06, -2.8927160325532243e-06, -1.807947520345779e-07, -1.4463580162766128e-06, -3.0735107845877244e-06, -1.4463580162765726e-06, -1.4463580162766141e-06, -2.8927160325532476e-06, -5.7854320651064164e-06, -4.519868800864398e-06, -1.4463580162766075e-06, -2.8927160325532442e-06, -2.8927160325532425e-06, -7.2317900813831497e-07, -1.4463580162766149e-06, -1.8079475203457488e-06, -1.9887422723802866e-06, -7.2317900813831518e-07, -2.8927160325532074e-06, -1.4463580162766185e-06, -1.4463580162765736e-06, -1.4463580162765745e-06, -3.6158950406915103e-07, -1.446358016276627e-06, -1.4463580162766075e-06, -1.8079475203457202e-07, -1.4463580162766071e-06, -3.615895040691533e-07, -1.4463580162766261e-06, -1.4463580162766183e-06, -1.4463580162766196e-06, -1.8079475203457792e-07, -2.8927160325532442e-06, -2.8927160325532459e-06, -1.8079475203457742e-07, -1.4463580162766181e-06, -1.4463580162766177e-06, -1.8079475203457758e-07, -1.4463580162766297e-06, -1.446358016276628e-06, -1.4463580162766136e-06, -1.4463580162766285e-06, -4.3390740488297479e-06, -1.446358016276628e-06, -1.4463580162766105e-06, -1.4463580162766132e-06, -1.8079475203457686e-07, -1.4463580162766119e-06, -1.4463580162766136e-06, -2.8927160325532319e-06, -7.2317900813830385e-07, -3.2543055366223105e-06, -7.2317900813830428e-07, -1.807947520345785e-07, -3.615895040691542e-07, -2.3503317764494736e-06, -1.4463580162766196e-06, -2.8927160325531676e-06, -1.5186759170904286e-05, -1.4463580162765825e-06, -1.5909938179042293e-05, -1.4463580162766149e-06, -1.4463580162766136e-06, -2.8927160325532425e-06, -1.4463580162765958e-05, -2.8927160325532442e-06, -1.4644374914800598e-05, -1.807947520345757e-07, -2.8927160325532459e-06, -2.8927160325532408e-06, -7.2317900813831359e-07, -1.5186759170904286e-05, -1.4463580162765916e-05, -1.4463580162765906e-05, -1.4463580162766011e-05, -1.8079475203457779e-07, -7.2317900813830163e-07, -1.8079475203457649e-07, -1.8079475203457821e-07, -1.8079475203457877e-07, -1.4463580162766191e-06, -1.4463580162766196e-06, -1.4463580162766187e-06, -1.4463580162766191e-06, -1.8079475203457652e-07, -1.8079475203457668e-07, -1.8079475203457647e-07, -1.4463580162766246e-06, -1.8079475203457575e-06, -3.6158950406914997e-06, -2.8927160325532082e-06, -2.892716032553229e-06, -1.4463580162766242e-06, -4.3390740488297132e-06, -5.4238425610370356e-07, -1.5909938179042398e-05, -2.8927160325532273e-06, -1.301722214648922e-05, -1.8079475203457768e-07, -1.807947520345771e-07, -4.5198688008643938e-06, -2.8927160325532319e-06, -1.4463580162765808e-06, -1.2655632642420222e-06, -7.2317900813830237e-07, -3.6158950406915542e-07, -1.3017222146489222e-05, -3.615895040691424e-07, -7.2317900813830407e-07, -7.2317900813830407e-07, -1.301722214648922e-05, -1.4463580162766105e-06, -1.80794752034577e-07, -1.4463580162766153e-06, -1.8079475203457649e-07, -1.4463580162766141e-06, -1.8079475203457545e-06, -5.4238425610371458e-07, -1.4463580162766149e-06, -2.7119212805186039e-06, -1.8079475203457567e-07, -1.44635801627661e-06, -3.6158950406915759e-07, -3.6158950406915754e-07, -3.615895040691568e-07, -1.8079475203457734e-07, -1.0847685122074177e-06, 0.00073601543553275441, -1.4463580162766217e-06, -1.4463580162766234e-06, -2.8927160325532256e-06, -4.7006635528989498e-06, -4.1582792967951191e-06, -1.8079475203457567e-07, -2.8927160325532086e-06, -1.4463580162766225e-06, -1.0847685122074152e-06, -3.6158950406915124e-07, -1.8079475203457668e-07, -1.8079475203457821e-07, -1.4463580162766011e-05, -1.4463580162765906e-05, -2.9288749829601037e-05, -1.4463580162765897e-05, -1.4463580162765958e-05, -7.2317900813831518e-07, -3.6158950406915124e-07, -1.4463580162766037e-06, -1.6271527683111559e-06, -7.2317900813831497e-07, -1.9887422723802946e-06, -1.8079475203457771e-07, -1.807947520345758e-07, -2.8927160325532099e-06, -1.4463580162766102e-06, -1.4463580162766132e-06, -1.8079475203457713e-07, -1.807947520345713e-07, -7.2317900813830968e-07, -7.231790081383101e-07, -2.8927160325532086e-06, -1.4463580162766234e-06, -1.807947520345762e-07, -2.9288749829601342e-05, -1.4463580162766225e-06, -1.4463580162766221e-06, -1.8079475203457745e-07, -7.231790081383101e-07, -7.2317900813830989e-07, -3.615895040691515e-07, -3.615895040691515e-07, -5.4238425610371203e-07, -1.807947520345712e-07, -3.615895040691515e-07, -3.615895040691515e-07, -1.807947520345767e-07, -1.8079475203457782e-07, -7.2317900813830438e-07, -2.1695370244148481e-06, -1.4463580162766098e-06, -1.8079475203457644e-07, -1.8079475203457578e-07, -3.2543055366223067e-06, -1.8079475203457228e-07, -7.2317900813830152e-07, -3.6158950406915113e-07, -2.8927160325532154e-06, -2.8927160325532171e-06, -9.0397376017287725e-07, -7.2317900813830841e-07, -3.6158950406914219e-07, -1.0847685122074249e-06, -1.5367553922938775e-05, -1.8079475203457697e-07, -7.2317900813830819e-07, -7.2317900813830862e-07, -2.8927160325532188e-06, -2.8927160325532137e-06, -7.2317900813830872e-07, -7.2317900813830618e-07, -7.2317900813830597e-07, -1.8079475203457647e-07, -8.3165585935903313e-06, -1.8079475203457386e-06, -1.8079475203457792e-07, -1.4463580162766221e-06, -1.4463580162765687e-06, -1.4463580162766225e-06, -2.8927160325532137e-06, -1.4463580162766045e-06, -2.8927160325532188e-06, -1.4463580162765687e-06, -1.4463580162765687e-06, -5.5503988874613746e-05, -1.4463580162766221e-06, -3.6158950406915116e-05, -1.4463580162766119e-06, -3.6158950406914219e-07, -1.0847685122074326e-05, -2.1695370244148532e-06, -9.0397376017287439e-07, -1.0847685122074326e-05, -1.8079475203457599e-07, -1.4463580162765745e-06, -1.4463580162765736e-06, -2.9288749829601342e-05, -1.4463580162766096e-06, -1.4463580162766092e-06, -4.1401998215917313e-05, -5.4238425610371648e-07, -3.6158950406915137e-05, -1.4463580162766177e-06, -1.4463580162766181e-06, -1.8079475203457676e-07, -1.4463580162765726e-06, -1.4463580162765753e-06, -1.8079475203457628e-07, -2.8927160325532171e-06, -2.8927160325532154e-06, -3.615895040691568e-07, -7.2317900813830989e-07, -7.231790081383101e-07, -1.4463580162766225e-06, -1.446358016276623e-06, -2.9288749829601037e-05, -1.4463580162766234e-06, -1.4463580162766217e-06, -4.8814583049335236e-06, 0.0007192015235935363, -1.4463580162766185e-06, -1.2836427394454684e-05, -2.1695370244148659e-06, -2.1695370244148659e-06, -1.4463580162766234e-06, -1.446358016276628e-06, -1.8079475203457566e-06, -1.4463580162766297e-06, -1.8079475203457539e-06, -3.7966897927260663e-06, -1.4463580162766111e-06, -9.0397376017287746e-07, -4.1582792967951665e-06, -1.44635801627661e-06, -2.1695370244148532e-06, -5.4238425610370462e-07, -9.0397376017287513e-07, -3.6158950406915706e-07, -1.8079475203457779e-07, -1.80794752034577e-07, -1.4463580162766299e-06, -2.1695370244148591e-06, -1.0847685122074156e-06, -7.2317900813830544e-07, -1.4463580162766242e-06, -1.4463580162766041e-06, -1.4463580162765687e-06, -2.8927160325532091e-06, -1.4463580162766071e-06, -7.2317900813830862e-07, -2.8927160325532086e-06, -1.4463580162766073e-06, -7.2317900813830819e-07, -1.4463580162765687e-06, -1.8079475203457596e-07, -1.4463580162766075e-06, -1.4463580162766071e-06, -2.8927160325532459e-06, -4.3390740488297217e-06, -1.4463580162766145e-06, -2.8927160325531434e-06, -2.8927160325531383e-06, -1.4463580162766075e-06, -1.4463580162766079e-06, -1.44635801627661e-06, -1.4463580162766088e-06, -1.6271527683111529e-06, -6.1470215691753997e-06, -3.615895040691425e-07, -1.446358016276628e-06, -1.4463580162766069e-06, -1.6271527683111521e-06, -4.700663552898954e-06, -1.4463580162766234e-06, -1.4463580162766153e-06, -1.4463580162766295e-06, -7.2317900813830841e-07, -7.2317900813830862e-07, -1.8079475203457768e-07, -1.8079475203457877e-07, -1.8079475203457792e-07, -3.6158950406915468e-07, -3.0735107845877952e-06, -5.4238425610371638e-06, -2.1695370244148507e-06, -1.0847685122074177e-06, -1.8079475203457689e-07, -7.2317900813830798e-07, -2.8927160325532273e-06, -4.3390740488297251e-06, -1.4463580162766276e-06, -7.2317900813830798e-07, -2.8927160325532307e-06, -2.892716032553229e-06, -7.2317900813830798e-07, -2.1695370244148549e-06, -1.4463580162766096e-06, -1.8079475203457848e-07, -3.6158950406915103e-07, -7.2317900813830798e-07, -7.2317900813830872e-07, -1.6271527683111536e-06, -9.0397376017287598e-07, -1.4463580162766217e-06, -2.8927160325532095e-06, -1.3017222146489232e-05, -7.2317900813831359e-07, -1.8079475203457655e-07, -1.0847685122074326e-05, -1.4463580162766132e-06, -8.6781480976592638e-06, -8.678148097659423e-06, -9.0397376017287977e-06, -8.6781480976592638e-06, -7.2317900813831359e-07, -7.2317900813831338e-07, -1.4463580162766153e-06, -1.4463580162766141e-06, -7.2317900813830692e-07, -7.2317900813830692e-07, -1.4463580162766261e-06, -1.807947520345784e-07, -1.446358016276627e-06, -1.8079475203457684e-07, -1.807947520345776e-07, -1.2655632642420169e-05, -7.2317900813830692e-07, -7.2317900813830692e-07, -1.1028479874108998e-05, -3.6158950406915627e-07, -1.301722214648922e-05, -1.3017222146489222e-05, -1.4463580162766128e-06, -1.8079475203457655e-07, -1.4463580162766141e-06, -1.301722214648922e-05, -1.3017222146489218e-05, -1.4463580162766132e-06, -1.4463580162766119e-06, -3.6158950406915246e-07, -3.6158950406915537e-07, -2.8927160325532116e-06, -1.4463580162766124e-06, -1.4463580162766128e-06, -5.4238425610371521e-07, -2.8927160325532116e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6905987090532082e-05, -9.6423867751772356e-05, -2.4105966937943204e-06, -4.8211933875886122e-07, -1.4463580162766026e-06, -4.8211933875886705e-06, -3.8569547100709479e-05, -9.6423867751772245e-07, -4.4354979165815286e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100709479e-05, -3.8569547100709479e-05, -3.8569547100708889e-06, -0.00010944108989826094, -9.6423867751772202e-07, -9.6423867751773643e-05, -7.7139094201417779e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708873e-06, -2.4105966937943204e-06, -1.4463580162766037e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -7.2317900813830358e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488296997e-06, -3.8569547100708898e-06, -7.2317900813830138e-06, -9.6423867751772224e-07, -4.8211933875886112e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886612e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -8.1960287589005776e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971575e-05, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.928477355035444e-06, -3.8569547100708898e-06, -4.8211933875886629e-06, -5.303312726347449e-06, -1.928477355035444e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -3.8569547100708898e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708889e-06, -1.1570864130212819e-05, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -8.6781480976594163e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -6.267551403865261e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -4.0498024455744685e-05, -3.8569547100708898e-06, -4.2426501810779633e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417779e-06, -3.8569547100709255e-05, -7.7139094201417796e-06, -3.9051666439468223e-05, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.9284773550354445e-06, -4.0498024455744671e-05, -3.8569547100709479e-05, -3.8569547100709228e-05, -3.856954710070933e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886781e-06, -9.6423867751773325e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -1.1570864130212831e-05, -1.4463580162766249e-06, -4.2426501810779829e-05, -7.7139094201417796e-06, -3.4712592390637882e-05, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.2052983468971617e-05, -7.7139094201417813e-06, -3.8569547100708898e-06, -3.3748353713120312e-06, -1.928477355035444e-06, -9.6423867751772224e-07, -3.4712592390637895e-05, -9.6423867751772224e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.4712592390637929e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886586e-06, -1.4463580162766037e-06, -3.8569547100708898e-06, -7.2317900813829875e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.8927160325532235e-06, -1.4463580162766217e-06, 0.0019602972313935386, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.2535102807730488e-05, -1.1088744791453826e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -2.8927160325532298e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.856954710070933e-05, -3.8569547100709228e-05, -7.8103332878936839e-05, -3.8569547100709228e-05, -3.8569547100709255e-05, -1.928477355035444e-06, -9.6423867751772245e-07, -3.8569547100708881e-06, -4.3390740488296912e-06, -1.928477355035444e-06, -5.3033127263474778e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.81033328789365e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.4463580162766037e-06, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651064181e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -8.6781480976594366e-06, -4.8211933875886122e-07, -1.9284773550354436e-06, -9.6423867751772224e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.4105966937943323e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -2.8927160325532065e-06, -4.0980143794503334e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886133e-07, -2.2177489582907565e-05, -4.8211933875886408e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708881e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -0.0001480106369989729, -3.8569547100708898e-06, -9.6423867751772966e-05, -3.8569547100708898e-06, -9.6423867751772224e-07, -2.892716032553176e-05, -5.7854320651064164e-06, -2.410596693794328e-06, -2.8927160325532089e-05, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.81033328789365e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.0001104053285757789, -1.4463580162766028e-06, -9.642386775177306e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936839e-05, -3.8569547100708898e-06, 0.0019602972313935386, -1.3017222146489212e-05, -4.6283456520851331e-05, -3.8569547100708898e-06, -3.4230473051878765e-05, -5.7854320651064113e-06, -5.7854320651064113e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886815e-06, -3.8569547100708889e-06, -4.821193387588673e-06, -1.0124506113936164e-05, -3.8569547100708898e-06, -2.4105966937943374e-06, -1.1088744791453781e-05, -3.8569547100708898e-06, -5.7854320651064164e-06, -1.4463580162766221e-06, -2.4105966937943272e-06, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708889e-06, -5.7854320651064139e-06, -2.8927160325532285e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -3.8569547100708906e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -1.1570864130212826e-05, -3.8569547100708898e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.33907404882972e-06, -1.639205751780126e-05, -9.6423867751772202e-07, -3.8569547100708881e-06, -3.8569547100708906e-06, -4.33907404882972e-06, -1.2535102807730498e-05, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -8.1960287589005285e-06, -1.4463580162765897e-05, -5.7854320651064164e-06, -2.8927160325532235e-06, -4.8211933875886133e-07, -1.9284773550354449e-06, -7.7139094201417796e-06, -1.1570864130212826e-05, -3.8569547100708881e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -5.7854320651064156e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.3390740488297132e-06, -2.410596693794334e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.471259239063776e-05, -1.9284773550354445e-06, -4.8211933875886133e-07, -2.892716032553176e-05, -3.8569547100708898e-06, -2.3141728260426001e-05, -2.3141728260425652e-05, -2.4105966937943147e-05, -2.3141728260426001e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.3748353713120299e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.9409279664290684e-05, -9.6423867751772245e-07, -3.4712592390637929e-05, -3.4712592390637895e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.4712592390637882e-05, -3.4712592390638011e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.4463580162766035e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6905987090532218e-05, -9.6423867751772478e-05, -2.4105966937943187e-06, -4.8211933875886122e-07, -1.4463580162766043e-06, -4.8211933875886679e-06, -3.8569547100709459e-05, -9.6423867751772245e-07, -4.4354979165815231e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100709465e-05, -3.8569547100709452e-05, -3.8569547100708889e-06, -0.00010944108989826083, -9.6423867751772202e-07, -9.6423867751773765e-05, -7.7139094201417779e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708873e-06, -2.4105966937943187e-06, -1.4463580162766054e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -7.2317900813830426e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488296929e-06, -3.8569547100708898e-06, -7.2317900813830205e-06, -9.6423867751772224e-07, -4.8211933875886112e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886586e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -8.196028758900581e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971592e-05, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.928477355035444e-06, -3.8569547100708898e-06, -4.8211933875886603e-06, -5.3033127263474507e-06, -1.928477355035444e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -3.8569547100708898e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708889e-06, -1.1570864130212833e-05, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -8.6781480976594027e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -6.2675514038652593e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -4.0498024455744685e-05, -3.8569547100708898e-06, -4.2426501810779646e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417779e-06, -3.8569547100709242e-05, -7.7139094201417796e-06, -3.9051666439468209e-05, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.9284773550354445e-06, -4.0498024455744671e-05, -3.8569547100709459e-05, -3.8569547100709208e-05, -3.856954710070931e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886756e-06, -9.6423867751773274e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -1.1570864130212845e-05, -1.4463580162766266e-06, -4.2426501810779843e-05, -7.7139094201417796e-06, -3.4712592390637828e-05, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.2052983468971633e-05, -7.7139094201417813e-06, -3.8569547100708898e-06, -3.3748353713120274e-06, -1.928477355035444e-06, -9.6423867751772224e-07, -3.4712592390637841e-05, -9.6423867751772224e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.4712592390637868e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886561e-06, -1.4463580162766054e-06, -3.8569547100708898e-06, -7.2317900813829943e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.8927160325532268e-06, -1.4463580162766234e-06, -3.8569547100708898e-06, 0.0019602972313935386, -7.7139094201417796e-06, -1.2535102807730486e-05, -1.1088744791453813e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -2.8927160325532332e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.856954710070931e-05, -3.8569547100709208e-05, -7.8103332878936784e-05, -3.8569547100709208e-05, -3.8569547100709242e-05, -1.928477355035444e-06, -9.6423867751772245e-07, -3.8569547100708881e-06, -4.3390740488296844e-06, -1.928477355035444e-06, -5.3033127263474795e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.8103332878936473e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.4463580162766054e-06, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651064249e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -8.678148097659423e-06, -4.8211933875886122e-07, -1.9284773550354436e-06, -9.6423867751772224e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.410596693794331e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -2.8927160325532099e-06, -4.0980143794503334e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886133e-07, -2.2177489582907538e-05, -4.8211933875886374e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708881e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -0.00014801063699897309, -3.8569547100708898e-06, -9.6423867751773088e-05, -3.8569547100708898e-06, -9.6423867751772224e-07, -2.8927160325531787e-05, -5.7854320651064232e-06, -2.4105966937943263e-06, -2.8927160325532116e-05, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936473e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00011040532857577879, -1.4463580162766045e-06, -9.6423867751773182e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936784e-05, 0.0019602972313935386, -3.8569547100708898e-06, -1.3017222146489212e-05, -4.6283456520851386e-05, -3.8569547100708898e-06, -3.4230473051878711e-05, -5.7854320651064181e-06, -5.7854320651064181e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886781e-06, -3.8569547100708889e-06, -4.8211933875886696e-06, -1.0124506113936164e-05, -3.8569547100708898e-06, -2.4105966937943365e-06, -1.1088744791453767e-05, -3.8569547100708898e-06, -5.7854320651064232e-06, -1.4463580162766238e-06, -2.4105966937943263e-06, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708889e-06, -5.7854320651064207e-06, -2.8927160325532319e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -3.8569547100708906e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -1.157086413021284e-05, -3.8569547100708898e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488297132e-06, -1.6392057517801267e-05, -9.6423867751772202e-07, -3.8569547100708881e-06, -3.8569547100708906e-06, -4.3390740488297132e-06, -1.2535102807730497e-05, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -8.1960287589005319e-06, -1.4463580162765911e-05, -5.7854320651064232e-06, -2.8927160325532268e-06, -4.8211933875886133e-07, -1.9284773550354449e-06, -7.7139094201417796e-06, -1.157086413021284e-05, -3.8569547100708881e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -5.7854320651064224e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.3390740488297064e-06, -2.4105966937943327e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.4712592390637706e-05, -1.9284773550354445e-06, -4.8211933875886133e-07, -2.8927160325531787e-05, -3.8569547100708898e-06, -2.3141728260426028e-05, -2.3141728260425679e-05, -2.410596693794318e-05, -2.3141728260426028e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.3748353713120245e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.9409279664290711e-05, -9.6423867751772245e-07, -3.4712592390637868e-05, -3.4712592390637841e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.4712592390637828e-05, -3.4712592390637956e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.4463580162766052e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -0.00019381197418106319, -0.00019284773550354368, -4.8211933875886374e-06, -9.6423867751772245e-07, -2.8927160325531875e-06, -9.6423867751773359e-06, -7.7139094201418877e-05, -1.9284773550354449e-06, -8.8709958331631113e-05, -9.6423867751772266e-07, -1.5427818840283556e-05, -1.5427818840283556e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201418877e-05, -7.7139094201418877e-05, -7.7139094201417796e-06, -0.00021888217979652269, -1.9284773550354445e-06, -0.00019284773550354626, -1.5427818840283556e-05, -7.7139094201417813e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -7.7139094201417762e-06, -4.8211933875886374e-06, -2.8927160325531896e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -1.4463580162766024e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -8.678148097659479e-06, -7.7139094201417813e-06, -1.4463580162765972e-05, -1.9284773550354449e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -1.5427818840283563e-05, -9.6423867751773138e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -9.6423867751772245e-07, -7.7139094201417813e-06, -1.6392057517801209e-05, -7.7139094201417796e-06, -7.7139094201417813e-06, -1.5427818840283559e-05, -3.0855637680567112e-05, -2.4105966937943021e-05, -7.7139094201417813e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708889e-06, -7.7139094201417813e-06, -9.6423867751773172e-06, -1.0606625452694905e-05, -3.8569547100708889e-06, -1.5427818840283552e-05, -7.7139094201417813e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.928477355035444e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -9.6423867751772224e-07, -7.7139094201417813e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -7.7139094201417813e-06, -7.7139094201417779e-06, -2.3141728260425496e-05, -7.7139094201417779e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.5427818840283563e-05, -3.8569547100708906e-06, -1.7356296195319087e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.2535102807730356e-05, -7.7139094201417796e-06, -1.5427818840283559e-05, -8.0996048911489261e-05, -7.7139094201417813e-06, -8.4853003621559293e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.5427818840283559e-05, -7.7139094201418402e-05, -1.5427818840283559e-05, -7.8103332878936337e-05, -9.6423867751772245e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -8.0996048911489261e-05, -7.7139094201418877e-05, -7.7139094201418348e-05, -7.7139094201418538e-05, -9.6423867751772245e-07, -3.8569547100708898e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -7.7139094201417796e-06, -9.6423867751773494e-06, -1.9284773550354651e-05, -1.5427818840283559e-05, -1.5427818840283563e-05, -7.7139094201417796e-06, -2.314172826042552e-05, -2.8927160325532315e-06, -8.485300362155997e-05, -1.5427818840283559e-05, -6.9425184781276211e-05, -9.6423867751772245e-07, -9.6423867751772266e-07, -2.410596693794296e-05, -1.5427818840283563e-05, -7.7139094201417813e-06, -6.7496707426240921e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -6.9425184781276211e-05, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -6.9425184781276184e-05, -7.7139094201417813e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -9.6423867751773088e-06, -2.8927160325531896e-06, -7.7139094201417813e-06, -1.4463580162765931e-05, -9.6423867751772266e-07, -7.7139094201417813e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -5.7854320651064113e-06, -2.8927160325532256e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, 0.003912880553366937, -2.5070205615460665e-05, -2.2177489582907788e-05, -9.6423867751772266e-07, -1.5427818840283559e-05, -7.7139094201417796e-06, -5.7854320651064232e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.7139094201418538e-05, -7.7139094201418348e-05, -0.00015620666575787316, -7.7139094201418348e-05, -7.7139094201418402e-05, -3.8569547100708889e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -8.6781480976594603e-06, -3.8569547100708889e-06, -1.0606625452694964e-05, -9.6423867751772245e-07, -9.6423867751772266e-07, -1.5427818840283563e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.5427818840283559e-05, -7.7139094201417796e-06, -9.6423867751772266e-07, -0.00015620666575787281, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.8927160325531896e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -3.8569547100708889e-06, -1.1570864130212765e-05, -7.7139094201417813e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.7356296195319026e-05, -9.6423867751772266e-07, -3.8569547100708856e-06, -1.9284773550354449e-06, -1.5427818840283563e-05, -1.5427818840283563e-05, -4.8211933875886586e-06, -3.8569547100708906e-06, -1.9284773550354449e-06, -5.7854320651063792e-06, -8.1960287589006667e-05, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.5427818840283563e-05, -1.5427818840283563e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -4.4354979165815394e-05, -9.6423867751772749e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -7.7139094201417796e-06, -1.5427818840283563e-05, -7.7139094201417779e-06, -1.5427818840283563e-05, -7.7139094201417779e-06, -7.7139094201417779e-06, -0.00029602127399794346, -7.7139094201417796e-06, -0.00019284773550354493, -7.7139094201417813e-06, -1.9284773550354449e-06, -5.7854320651063358e-05, -1.1570864130212762e-05, -4.821193387588651e-06, -5.7854320651064015e-05, -9.6423867751772266e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00015620666575787281, -7.7139094201417813e-06, -7.7139094201417813e-06, -0.00022081065715155899, -2.8927160325531879e-06, -0.00019284773550354504, -7.7139094201417796e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -1.5427818840283563e-05, -1.5427818840283563e-05, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00015620666575787316, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.6034444292978437e-05, -9.2566913041702094e-05, -7.7139094201417813e-06, -6.8460946103758073e-05, -1.1570864130212809e-05, -1.1570864130212802e-05, -7.7139094201417796e-06, -7.7139094201417779e-06, -9.6423867751773528e-06, -7.7139094201417779e-06, -9.6423867751773325e-06, -2.0249012227872302e-05, -7.7139094201417813e-06, -4.8211933875886713e-06, -2.2177489582907683e-05, -7.7139094201417813e-06, -1.1570864130212762e-05, -2.8927160325532264e-06, -4.821193387588651e-06, -1.9284773550354445e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -7.7139094201417796e-06, -1.1570864130212701e-05, -5.7854320651063097e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.5427818840283556e-05, -7.7139094201417813e-06, -3.8569547100708906e-06, -1.5427818840283556e-05, -7.7139094201417813e-06, -3.8569547100708906e-06, -7.7139094201417779e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.5427818840283559e-05, -2.314172826042551e-05, -7.7139094201417813e-06, -1.5427818840283556e-05, -1.5427818840283556e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -8.6781480976595128e-06, -3.278411503560248e-05, -1.9284773550354445e-06, -7.7139094201417779e-06, -7.7139094201417813e-06, -8.6781480976595196e-06, -2.5070205615460983e-05, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.6392057517801111e-05, -2.8927160325531686e-05, -1.1570864130212762e-05, -5.7854320651064113e-06, -9.6423867751772266e-07, -3.8569547100708906e-06, -1.5427818840283559e-05, -2.3141728260425506e-05, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.5427818840283563e-05, -1.5427818840283563e-05, -3.8569547100708906e-06, -1.157086413021276e-05, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -8.6781480976595061e-06, -4.8211933875886645e-06, 0.0019564402766834685, -1.5427818840283563e-05, -6.9425184781276103e-05, -3.8569547100708898e-06, -9.6423867751772266e-07, -5.7854320651063358e-05, -7.7139094201417813e-06, -4.6283456520851718e-05, -4.628345652085102e-05, -4.8211933875886042e-05, -4.6283456520851718e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -6.7496707426241087e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -5.8818559328581191e-05, -1.9284773550354449e-06, -6.9425184781276184e-05, -6.9425184781276211e-05, -7.7139094201417813e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -6.9425184781276211e-05, -6.9425184781276076e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.5427818840283563e-05, -7.7139094201417813e-06, 0.0019564402766834681, -2.8927160325531921e-06, -1.5427818840283563e-05, -1.2535102807730202e-05, -1.2535102807730195e-05, -1.2535102807730192e-05, -1.2535102807730202e-05, -6.2675514038652034e-06, -6.2675514038652017e-06, -1.2535102807730461e-05, -1.2535102807730461e-05, -1.5668878509663106e-06, -1.5668878509663102e-06, -0.00031494445804422755, -0.00031337757019326385, -7.8344392548315079e-06, -1.5668878509663106e-06, -4.7006635528989405e-06, -1.5668878509663029e-05, -0.00012535102807730413, -3.1337757019326203e-06, -0.00014415368228890013, -1.5668878509663068e-06, -2.507020561546098e-05, -2.507020561546098e-05, -1.2535102807730461e-05, -1.2535102807730461e-05, -0.00012535102807730407, -0.00012535102807730413, -1.2535102807730464e-05, -0.00035568354216935154, -3.1337757019326254e-06, -0.00031337757019326212, -2.5070205615460973e-05, -1.2535102807730192e-05, -1.2535102807730202e-05, -1.5668878509663068e-06, -1.5668878509663106e-06, -1.2535102807730485e-05, -1.2535102807730481e-05, -3.1337757019326254e-06, -3.1337757019326254e-06, -1.5668878509663055e-06, -1.5668878509663093e-06, -1.2535102807730448e-05, -7.8344392548314977e-06, -4.7006635528988888e-06, -6.2675514038652e-06, -6.2675514038652051e-06, -1.5668878509663106e-06, -2.3503317764494766e-05, -1.2535102807730476e-05, -1.2535102807730476e-05, -1.4101990658696785e-05, -1.2535102807730461e-05, -2.3503317764494695e-05, -3.1337757019326212e-06, -1.5668878509663119e-06, -1.2535102807730461e-05, -1.2535102807730461e-05, -1.5668878509663106e-06, -1.56688785096631e-06, -1.2535102807730475e-05, -1.2535102807730476e-05, -3.1337757019326212e-06, -1.5668878509663059e-06, -1.2535102807730464e-05, -2.5070205615460983e-05, -1.5668878509663036e-05, -1.2535102807730478e-05, -2.5070205615460949e-05, -1.566887850966311e-06, -1.2535102807730471e-05, -2.6637093466426899e-05, -1.2535102807730483e-05, -1.2535102807730451e-05, -2.507020561546097e-05, -5.0140411230922115e-05, -3.9172196274157778e-05, -1.2535102807730458e-05, -2.507020561546097e-05, -2.507020561546097e-05, -6.2675514038652492e-06, -1.2535102807730475e-05, -1.5668878509663036e-05, -1.7235766360629524e-05, -6.2675514038652492e-06, -2.5070205615461044e-05, -1.2535102807730478e-05, -1.2535102807730481e-05, -1.2535102807730481e-05, -3.1337757019326271e-06, -1.2535102807730495e-05, -1.2535102807730458e-05, -1.5668878509663125e-06, -1.2535102807730458e-05, -3.1337757019326212e-06, -1.2535102807730495e-05, -1.2535102807730481e-05, -1.2535102807730478e-05, -1.566887850966274e-06, -2.5070205615460976e-05, -2.507020561546097e-05, -1.5668878509662795e-06, -1.2535102807730481e-05, -1.2535102807730481e-05, -1.5668878509663106e-06, -1.2535102807730498e-05, -1.2535102807730502e-05, -1.2535102807730451e-05, -1.2535102807730498e-05, -3.7605308423191436e-05, -1.2535102807730495e-05, -1.2535102807730468e-05, -1.2535102807730471e-05, -1.5668878509663093e-06, -1.2535102807730464e-05, -1.253510280773047e-05, -2.5070205615460553e-05, -6.2675514038652051e-06, -2.8203981317393577e-05, -6.2675514038652e-06, -1.5668878509663123e-06, -3.1337757019326136e-06, -2.036954206256205e-05, -1.2535102807730478e-05, -2.5070205615461007e-05, -0.00013161857948116996, -1.2535102807730475e-05, -0.00013788613088503446, -1.2535102807730451e-05, -1.2535102807730451e-05, -2.507020561546097e-05, -0.00012535102807730434, -2.507020561546097e-05, -0.00012691791592826983, -1.566887850966307e-06, -2.5070205615460963e-05, -2.5070205615460976e-05, -6.2675514038650992e-06, -0.00013161857948116996, -0.00012535102807730413, -0.00012535102807730437, -0.00012535102807730451, -1.5668878509663106e-06, -6.2675514038652661e-06, -1.5668878509663055e-06, -1.5668878509663114e-06, -1.5668878509663127e-06, -1.2535102807730485e-05, -1.2535102807730481e-05, -1.2535102807730481e-05, -1.2535102807730478e-05, -1.5668878509663055e-06, -1.5668878509663059e-06, -1.5668878509663085e-06, -1.2535102807730488e-05, -1.5668878509663016e-05, -3.1337757019326086e-05, -2.5070205615461017e-05, -2.5070205615460949e-05, -1.2535102807730488e-05, -3.7605308423191104e-05, -4.7006635528989583e-06, -0.00013788613088503522, -2.5070205615460949e-05, -0.00011281592526957417, -1.5668878509663102e-06, -1.5668878509663068e-06, -3.9172196274157629e-05, -2.5070205615460553e-05, -1.2535102807730476e-05, -1.0968214956764227e-05, -6.2675514038652483e-06, -3.1337757019326212e-06, -0.00011281592526957417, -3.1337757019326212e-06, -6.2675514038652017e-06, -6.2675514038652034e-06, -0.00011281592526957417, -1.253510280773037e-05, -1.5668878509662873e-06, -1.2535102807730471e-05, -1.5668878509663085e-06, -1.2535102807730475e-05, -1.5668878509662982e-05, -4.7006635528988668e-06, -1.2535102807730471e-05, -2.3503317764494417e-05, -1.5668878509663059e-06, -1.2535102807730376e-05, -3.1337757019326254e-06, -3.1337757019326254e-06, -3.1337757019326237e-06, -1.5668878509663102e-06, -9.4013271057978284e-06, -4.7006635528989498e-06, -1.2535102807730488e-05, -1.2535102807730486e-05, -2.5070205615460665e-05, 0.0063427620207116104, -3.6038420572225005e-05, -1.5668878509663059e-06, -2.507020561546097e-05, -1.2535102807730488e-05, -9.4013271057978589e-06, -3.1337757019326136e-06, -1.5668878509663059e-06, -1.5668878509663114e-06, -0.00012535102807730451, -0.00012535102807730437, -0.00025383583185653846, -0.00012535102807730437, -0.00012535102807730434, -6.2675514038652492e-06, -3.1337757019326161e-06, -1.2535102807730529e-05, -1.4101990658696771e-05, -6.2675514038652492e-06, -1.7235766360629433e-05, -1.5668878509663106e-06, -1.5668878509663068e-06, -2.5070205615460922e-05, -1.2535102807730464e-05, -1.2535102807730336e-05, -1.5668878509663068e-06, -1.5668878509663106e-06, -6.2675514038651145e-06, -6.2675514038651094e-06, -2.507020561546097e-05, -1.2535102807730488e-05, -1.5668878509662975e-06, -0.00025383583185653927, -1.2535102807730486e-05, -1.2535102807730488e-05, -1.566887850966279e-06, -6.2675514038651111e-06, -6.2675514038651128e-06, -3.1337757019326136e-06, -3.1337757019326144e-06, -4.7006635528989091e-06, -1.5668878509663108e-06, -3.1337757019326144e-06, -3.1337757019326136e-06, -1.5668878509663089e-06, -1.5668878509663106e-06, -6.2675514038652585e-06, -1.8802654211595579e-05, -1.2535102807730464e-05, -1.5668878509663055e-06, -1.5668878509663068e-06, -2.8203981317393726e-05, -1.56688785096631e-06, -6.2675514038652831e-06, 0.00024238549756101866, -2.5070205615460922e-05, -2.5070205615460922e-05, -7.8344392548315079e-06, -6.267551403865239e-06, -3.133775701932622e-06, -9.4013271057977539e-06, -0.00013318546733213647, -1.5668878509663093e-06, -6.267551403865239e-06, -6.267551403865239e-06, -2.5070205615460915e-05, -2.5070205615460929e-05, -6.267551403865239e-06, -6.2675514038652356e-06, -6.2675514038652356e-06, -1.5668878509663055e-06, -7.2076841144450024e-05, -1.5668878509663036e-05, -1.566887850966311e-06, -1.2535102807730488e-05, -1.2535102807730502e-05, -1.2535102807730486e-05, -2.5070205615460929e-05, -1.2535102807730502e-05, -2.5070205615460915e-05, -1.2535102807730502e-05, -1.2535102807730502e-05, -0.00048103457024665857, -1.2535102807730488e-05, -0.00031337757019326136, -1.2535102807730464e-05, -3.1337757019326216e-06, -9.4013271057977722e-05, -1.8802654211595599e-05, -7.8344392548315248e-06, -9.4013271057978955e-05, -1.5668878509663013e-06, -1.2535102807730481e-05, -1.2535102807730481e-05, -0.00025383583185653927, -1.2535102807730463e-05, -1.2535102807730464e-05, -0.00035881731787128657, -4.7006635528988803e-06, -0.00031337757019326158, -1.2535102807730481e-05, -1.2535102807730481e-05, -1.5668878509663089e-06, -1.2535102807730483e-05, -1.253510280773048e-05, -1.5668878509663051e-06, -2.5070205615460922e-05, -2.5070205615460922e-05, -3.1337757019326237e-06, -6.2675514038651128e-06, -6.2675514038651111e-06, -1.2535102807730488e-05, -1.2535102807730488e-05, -0.00025383583185653846, -1.2535102807730486e-05, -1.2535102807730488e-05, -4.2305971976090206e-05, 9.5098039570184575e-05, -1.2535102807730478e-05, -0.00011124903741860773, -1.8802654211595535e-05, -1.8802654211595535e-05, -1.2535102807730488e-05, -1.2535102807730502e-05, -1.5668878509663016e-05, -1.2535102807730498e-05, -1.5668878509663029e-05, -3.2904644870292401e-05, -1.2535102807730468e-05, -7.8344392548315147e-06, -3.6038420572225012e-05, -1.2535102807730463e-05, -1.8802654211595592e-05, -4.7006635528989498e-06, -7.8344392548315147e-06, -3.1337757019326237e-06, -1.5668878509663106e-06, -1.5668878509662869e-06, -1.2535102807730202e-05, -1.8802654211595779e-05, -9.4013271057978691e-06, -6.2675514038652221e-06, -1.2535102807730192e-05, -1.2535102807730464e-05, -1.2535102807730502e-05, -2.5070205615461014e-05, -1.2535102807730461e-05, -6.267551403865239e-06, -2.5070205615460898e-05, -1.2535102807730434e-05, -6.267551403865239e-06, -1.2535102807730502e-05, -1.5668878509663017e-06, -1.2535102807730461e-05, -1.2535102807730461e-05, -2.507020561546097e-05, -3.7605308423191097e-05, -1.2535102807730471e-05, -2.5070205615460973e-05, -2.5070205615460987e-05, -1.2535102807730461e-05, -1.2535102807730461e-05, -1.2535102807730463e-05, -1.2535102807730464e-05, -1.4101990658696883e-05, -5.3274186932853791e-05, -3.1337757019326318e-06, -1.2535102807730495e-05, -1.2535102807730434e-05, -1.4101990658696943e-05, 0.0019234151019784842, -1.2535102807730195e-05, -1.2535102807730471e-05, -1.2535102807730202e-05, -6.267551403865239e-06, -6.267551403865239e-06, -1.5668878509662748e-06, -1.5668878509663127e-06, -1.566887850966311e-06, -3.1337757019326203e-06, -2.6637093466426936e-05, -4.700663552898882e-05, -1.8802654211595582e-05, -9.4013271057978284e-06, -1.5668878509662886e-06, -6.2675514038652373e-06, -2.5070205615460949e-05, -3.7605308423191205e-05, -1.2535102807730495e-05, -6.2675514038652373e-06, -2.5070205615460949e-05, -2.5070205615460949e-05, -6.2675514038652373e-06, -1.880265421159562e-05, -1.2535102807730463e-05, -1.5668878509663119e-06, -3.1337757019326297e-06, -6.2675514038652373e-06, -6.267551403865239e-06, 0.0019500521954449233, -7.8344392548315181e-06, -1.2535102807730195e-05, -2.5070205615460983e-05, -0.00011281592526957425, -6.2675514038650992e-06, -1.5668878509663055e-06, -9.4013271057977695e-05, -1.2535102807730471e-05, -7.5210616846383292e-05, -7.5210616846381963e-05, -7.8344392548315611e-05, -7.5210616846383292e-05, -6.2675514038650992e-06, -6.2675514038651009e-06, -1.2535102807730475e-05, -1.2535102807730475e-05, -6.2675514038652373e-06, -6.2675514038652373e-06, -1.2535102807730495e-05, -1.5668878509663119e-06, -1.2535102807730495e-05, -1.5668878509663093e-06, -1.5668878509663106e-06, -0.00010968214956764088, -6.2675514038652373e-06, -6.2675514038652373e-06, -9.558015890894441e-05, -3.1337757019326229e-06, -0.00011281592526957417, -0.00011281592526957417, -1.2535102807730471e-05, -1.5668878509663085e-06, -1.253510280773047e-05, -0.00011281592526957417, -0.00011281592526957417, -1.2535102807730336e-05, -1.2535102807730349e-05, -3.1337757019326153e-06, -3.1337757019326203e-06, -2.5070205615460854e-05, 0.001951619083295879, -1.2535102807730342e-05, -4.7006635528989362e-06, -2.5070205615460854e-05, -1.1088744791453777e-05, -1.1088744791453818e-05, -1.1088744791453804e-05, -1.1088744791453784e-05, -5.5443723957269505e-06, -5.5443723957269471e-06, -1.1088744791453901e-05, -1.1088744791453904e-05, -1.3860930989317277e-06, -1.3860930989317285e-06, -0.00027860471288528016, -0.00027721861978634944, -6.9304654946586218e-06, -1.3860930989317277e-06, -4.1582792967951555e-06, -1.3860930989317115e-05, -0.00011088744791453836, -2.772186197863457e-06, -0.000127520565101719, -1.386093098931738e-06, -2.2177489582907629e-05, -2.2177489582907643e-05, -1.1088744791453911e-05, -1.1088744791453894e-05, -0.0001108874479145383, -0.00011088744791453833, -1.1088744791453976e-05, -0.00031464313345750446, -2.7721861978634291e-06, -0.00027721861978634819, -2.2177489582907609e-05, -1.1088744791453811e-05, -1.1088744791453777e-05, -1.3860930989317391e-06, -1.3860930989317272e-06, -1.1088744791453842e-05, -1.1088744791453828e-05, -2.7721861978634291e-06, -2.7721861978634299e-06, -1.3860930989317385e-06, -1.3860930989317323e-06, -1.1088744791453928e-05, -6.9304654946586227e-06, -4.1582792967951233e-06, -5.5443723957269471e-06, -5.5443723957269505e-06, -1.3860930989317277e-06, 0.0036619977024602507, -1.1088744791453862e-05, -1.1088744791453859e-05, -1.2474837890385668e-05, -1.1088744791453911e-05, -2.0791396483975935e-05, -2.7721861978634553e-06, -1.386093098931715e-06, -1.1088744791453908e-05, -1.1088744791453901e-05, -1.3860930989317268e-06, -1.3860930989317302e-06, -1.1088744791453855e-05, -1.1088744791453869e-05, -2.7721861978635015e-06, -1.3860930989317336e-06, -1.1088744791453879e-05, -2.2177489582907921e-05, -1.3860930989317145e-05, -1.1088744791453838e-05, -2.2177489582907775e-05, -1.3860930989317264e-06, -1.1088744791453881e-05, -2.3563582681839357e-05, -1.1088744791453845e-05, -1.1088744791453869e-05, -2.2177489582907514e-05, -4.4354979165815055e-05, -3.4652327473293565e-05, -1.1088744791453901e-05, -2.217748958290765e-05, -2.217748958290767e-05, -5.5443723957268887e-06, -1.1088744791453862e-05, -1.3860930989317156e-05, -1.524702408824908e-05, -5.5443723957268853e-06, -2.2177489582908005e-05, -1.1088744791453838e-05, -1.1088744791453842e-05, -1.1088744791453838e-05, -2.7721861978634973e-06, -1.1088744791453791e-05, -1.1088744791453901e-05, -1.3860930989317222e-06, -1.1088744791453906e-05, -2.7721861978634727e-06, -1.1088744791453798e-05, -1.1088744791453845e-05, -1.1088744791453832e-05, -1.3860930989317264e-06, -2.2177489582907487e-05, -2.21774895829075e-05, -1.3860930989317289e-06, -1.1088744791453845e-05, -1.1088744791453848e-05, -1.3860930989317285e-06, -1.1088744791453777e-05, -1.1088744791453791e-05, -1.1088744791453872e-05, -1.1088744791453784e-05, -3.3266234374361217e-05, -1.1088744791453784e-05, -1.1088744791453894e-05, -1.1088744791453876e-05, -1.3860930989317328e-06, -1.1088744791453876e-05, -1.1088744791453872e-05, -2.2177489582907717e-05, -5.5443723957269505e-06, -2.494967578077136e-05, -5.5443723957269471e-06, -1.386093098931723e-06, -2.772186197863463e-06, -1.8019210286112499e-05, -1.1088744791453832e-05, -2.2177489582907944e-05, -0.00011643182031026596, -1.1088744791453855e-05, -0.00012197619270599242, -1.1088744791453859e-05, -1.1088744791453872e-05, -2.217748958290767e-05, -0.00011088744791453745, -2.217748958290765e-05, -0.00011227354101346916, -1.3860930989317389e-06, -2.2177489582907636e-05, -2.217748958290769e-05, -5.5443723957268954e-06, -0.00011643182031026618, -0.00011088744791453836, -0.00011088744791453785, -0.00011088744791453719, -1.3860930989317272e-06, -5.5443723957269226e-06, -1.3860930989317344e-06, -1.3860930989317247e-06, -1.3860930989317145e-06, -1.1088744791453838e-05, -1.1088744791453832e-05, -1.1088744791453842e-05, -1.1088744791453838e-05, -1.3860930989317344e-06, -1.3860930989317336e-06, -1.3860930989317349e-06, -1.1088744791453804e-05, -1.3860930989317101e-05, -2.7721861978634284e-05, -2.2177489582907938e-05, -2.2177489582907748e-05, -1.1088744791453808e-05, -3.3266234374361041e-05, -4.1582792967951131e-06, -0.00012197619270599264, -2.2177489582907768e-05, -9.9798703123085616e-05, -1.3860930989317277e-06, -1.3860930989317315e-06, -3.4652327473293592e-05, -2.2177489582907717e-05, -1.1088744791453862e-05, -9.7026516925221932e-06, -5.5443723957268607e-06, -2.7721861978634558e-06, -9.9798703123085616e-05, -2.7721861978634553e-06, -5.5443723957269471e-06, -5.5443723957269505e-06, -9.9798703123085616e-05, -1.1088744791453884e-05, -1.3860930989317319e-06, -1.1088744791453859e-05, -1.3860930989317349e-06, -1.1088744791453872e-05, -1.3860930989317156e-05, -4.1582792967951538e-06, -1.1088744791453862e-05, -2.0791396483975969e-05, -1.3860930989317385e-06, -1.1088744791453887e-05, -2.7721861978634291e-06, -2.7721861978634299e-06, -2.7721861978634477e-06, -1.3860930989317298e-06, -8.3165585935902839e-06, -4.1582792967951191e-06, -1.1088744791453826e-05, -1.1088744791453813e-05, -2.2177489582907788e-05, -3.6038420572225005e-05, 0.0056150631437724609, -1.3860930989317385e-06, -2.2177489582907951e-05, -1.1088744791453818e-05, -8.3165585935902669e-06, -2.7721861978634829e-06, -1.3860930989317336e-06, -1.3860930989317247e-06, -0.00011088744791453719, -0.00011088744791453785, -0.00022454708202693829, -0.00011088744791453787, -0.00011088744791453745, -5.5443723957268853e-06, -2.772186197863482e-06, -1.1088744791453771e-05, -1.2474837890385641e-05, -5.5443723957268887e-06, -1.5247024088249056e-05, -1.3860930989317277e-06, -1.386093098931738e-06, -2.2177489582907883e-05, -1.1088744791453887e-05, -1.1088744791453872e-05, -1.3860930989317306e-06, -1.3860930989317277e-06, -5.5443723957269175e-06, -5.5443723957269141e-06, -2.2177489582907944e-05, -1.1088744791453811e-05, -1.3860930989317359e-06, -0.00022454708202693845, -1.1088744791453818e-05, -1.1088744791453823e-05, -1.3860930989317289e-06, -5.5443723957269158e-06, -5.5443723957269158e-06, -2.7721861978634769e-06, -2.7721861978634769e-06, -4.1582792967951479e-06, -1.3860930989317272e-06, -2.7721861978634769e-06, -2.7721861978634769e-06, -1.3860930989317336e-06, -1.3860930989317268e-06, -5.5443723957269319e-06, -1.6633117187180578e-05, -1.1088744791453891e-05, -1.3860930989317349e-06, -1.386093098931738e-06, -2.4949675780771356e-05, -1.3860930989317302e-06, -5.5443723957268345e-06, -2.7721861978634498e-06, -2.2177489582907826e-05, -2.2177489582907809e-05, -6.9304654946585744e-06, -5.5443723957269259e-06, -2.7721861978635007e-06, -8.3165585935902822e-06, -0.00011781791340919866, -1.3860930989317319e-06, -5.5443723957269268e-06, -5.5443723957269234e-06, -2.2177489582907788e-05, -2.2177489582907846e-05, -5.5443723957269226e-06, -5.5443723957269378e-06, -5.5443723957269395e-06, -1.3860930989317349e-06, -6.3760282550859486e-05, -1.386093098931723e-05, -1.3860930989317264e-06, -1.1088744791453823e-05, -1.1088744791453989e-05, -1.1088744791453818e-05, -2.2177489582907846e-05, -1.1088744791453877e-05, -2.2177489582907788e-05, -1.1088744791453987e-05, -1.1088744791453989e-05, -0.00042553058137204515, -1.1088744791453825e-05, -0.00027721861978634781, -1.1088744791453876e-05, -2.7721861978634545e-06, -8.3165585935903767e-05, -1.6633117187180578e-05, -6.930465494658588e-06, -8.3165585935903713e-05, -1.3860930989317372e-06, -1.1088744791453838e-05, -1.1088744791453842e-05, -0.00022454708202693845, -1.1088744791453893e-05, -1.1088744791453896e-05, -0.00031741531965536927, -4.1582792967951546e-06, -0.00027721861978634787, -1.1088744791453848e-05, -1.1088744791453845e-05, -1.3860930989317334e-06, -1.1088744791453845e-05, -1.1088744791453835e-05, -1.3860930989317359e-06, -2.2177489582907809e-05, -2.2177489582907826e-05, -2.7721861978634477e-06, -5.5443723957269158e-06, -5.5443723957269158e-06, -1.1088744791453818e-05, -1.1088744791453815e-05, -0.00022454708202693829, -1.1088744791453813e-05, -1.1088744791453826e-05, -3.7424513671156459e-05, -0.00013306493749744484, -1.1088744791453838e-05, -9.841261002415427e-05, -1.6633117187180425e-05, -1.6633117187180425e-05, -1.1088744791453818e-05, -1.1088744791453791e-05, -1.3860930989317076e-05, -1.1088744791453777e-05, -1.3860930989317108e-05, -2.9107955077566592e-05, -1.1088744791453887e-05, -6.9304654946585507e-06, -3.1880141275429777e-05, -1.1088744791453887e-05, -1.6633117187180571e-05, -4.1582792967951182e-06, -6.9304654946585914e-06, -2.7721861978634299e-06, -1.3860930989317272e-06, -1.3860930989317315e-06, -1.1088744791453777e-05, -1.6633117187180453e-05, -8.3165585935902703e-06, -5.5443723957269395e-06, -1.1088744791453808e-05, -1.1088744791453976e-05, -1.1088744791453989e-05, -2.2177489582907775e-05, -1.1088744791453911e-05, -5.5443723957269234e-06, -2.2177489582907849e-05, -1.1088744791453901e-05, -5.5443723957269268e-06, -1.1088744791453989e-05, -1.3860930989317372e-06, -1.1088744791453901e-05, -1.1088744791453908e-05, -2.21774895829075e-05, -3.3266234374361264e-05, -1.1088744791453865e-05, -2.2177489582907609e-05, -2.2177489582907663e-05, -1.1088744791453904e-05, -1.1088744791453901e-05, -1.1088744791453887e-05, -1.1088744791453901e-05, -1.2474837890385712e-05, -4.7127165363678457e-05, -2.7721861978635057e-06, -1.1088744791453784e-05, 0.0019530654413121545, -1.2474837890385709e-05, -3.6038420572224998e-05, -1.1088744791453818e-05, -1.1088744791453859e-05, -1.1088744791453777e-05, -5.5443723957269259e-06, -5.5443723957269242e-06, -1.3860930989317277e-06, -1.3860930989317145e-06, -1.3860930989317264e-06, -2.7721861978634596e-06, -2.3563582681839249e-05, -4.1582792967951951e-05, -1.6633117187180588e-05, -8.3165585935902839e-06, -1.3860930989317323e-06, -5.5443723957269268e-06, -2.2177489582907768e-05, -3.3266234374361054e-05, -1.1088744791453791e-05, -5.5443723957269276e-06, -2.2177489582907727e-05, -2.2177489582907748e-05, -5.5443723957269276e-06, -1.6633117187180588e-05, -1.1088744791453893e-05, -1.3860930989317234e-06, -2.7721861978635024e-06, -5.5443723957269268e-06, -5.5443723957269226e-06, -1.2474837890385693e-05, -6.9304654946585643e-06, -1.1088744791453821e-05, -2.2177489582907924e-05, -9.9798703123085534e-05, -5.5443723957268954e-06, -1.386093098931734e-06, -8.3165585935903767e-05, -1.1088744791453876e-05, -6.653246874872177e-05, -6.6532468748721837e-05, -6.9304654946587171e-05, -6.653246874872177e-05, -5.5443723957268954e-06, -5.5443723957268954e-06, -1.1088744791453859e-05, -1.1088744791453872e-05, -5.5443723957269327e-06, -5.5443723957269344e-06, -1.1088744791453798e-05, -1.3860930989317239e-06, -1.1088744791453791e-05, -1.3860930989317328e-06, -1.3860930989317285e-06, -9.7026516925221909e-05, -5.5443723957269344e-06, -5.5443723957269327e-06, -8.4551679034834855e-05, -2.7721861978634511e-06, -9.9798703123085616e-05, -9.9798703123085616e-05, -1.1088744791453881e-05, -1.3860930989317344e-06, -1.1088744791453867e-05, -9.9798703123085616e-05, -9.9798703123084789e-05, -1.1088744791453872e-05, -1.1088744791453887e-05, -2.7721861978634719e-06, -2.7721861978634562e-06, -2.2177489582907822e-05, -1.1088744791453879e-05, -1.1088744791453872e-05, -4.1582792967951521e-06, -2.2177489582907822e-05, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -1.2113248386316446e-05, -1.2052983468971473e-05, -3.0132458672428793e-07, -6.0264917344857666e-08, -1.8079475203457332e-07, -6.0264917344857968e-07, -4.821193387588651e-06, -1.2052983468971536e-07, -5.544372395726953e-06, -6.0264917344857679e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.821193387588651e-06, -4.821193387588651e-06, -4.8211933875886122e-07, -1.3680136237282697e-05, -1.2052983468971531e-07, -1.2052983468971631e-05, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886101e-07, -3.0132458672428793e-07, -1.8079475203457345e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857666e-08, -9.0397376017287386e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610371892e-07, -4.8211933875886144e-07, -9.039737601728709e-07, -1.2052983468971533e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344857841e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344857666e-08, -4.8211933875886144e-07, -1.0245035948625798e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6423867751772266e-07, -1.9284773550354445e-06, -1.506622933621438e-06, -4.8211933875886144e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -6.0264917344857862e-07, -6.6291409079343346e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -1.2052983468971533e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.4463580162765863e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.08476851220744e-06, -2.4105966937943072e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -7.8344392548315572e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -5.0622530569680754e-06, -4.8211933875886144e-07, -5.3033127263474727e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -4.8211933875886205e-06, -9.6423867751772266e-07, -4.881458304933499e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -5.0622530569680754e-06, -4.821193387588651e-06, -4.8211933875886163e-06, -4.821193387588629e-06, -6.0264917344857666e-08, -2.4105966937943061e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -6.0264917344858053e-07, -1.2052983468971581e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -4.8211933875886133e-07, -1.4463580162765878e-06, -1.807947520345761e-07, -5.3033127263475142e-06, -9.6423867751772266e-07, -4.3390740488297767e-06, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.5066229336214431e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.2185442141400586e-07, -2.4105966937943061e-07, -1.2052983468971533e-07, -4.3390740488297751e-06, -1.2052983468971533e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297751e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.026491734485782e-07, -1.8079475203457345e-07, -4.8211933875886144e-07, -9.0397376017286814e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -3.6158950406914859e-07, -1.8079475203457567e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -1.5668878509663059e-06, -1.3860930989317385e-06, 0.00024545900834560644, -9.6423867751772266e-07, -4.8211933875886133e-07, -3.6158950406914965e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.821193387588629e-06, -4.8211933875886163e-06, -9.7629166098670252e-06, -4.8211933875886163e-06, -4.8211933875886205e-06, -2.4105966937943061e-07, -1.2052983468971536e-07, -4.8211933875886112e-07, -5.4238425610371849e-07, -2.4105966937943061e-07, -6.6291409079343716e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.7629166098670049e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.8079475203457345e-07, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943061e-07, -7.2317900813829422e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.0847685122074425e-06, -6.0264917344857679e-08, -2.4105966937943051e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.0132458672428926e-07, -2.4105966937943072e-07, -1.2052983468971533e-07, -3.6158950406914679e-07, -5.1225179743129167e-06, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, 0.00024274708706508783, -6.0264917344857587e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.8501329624871412e-05, -4.8211933875886133e-07, -1.2052983468971548e-05, -4.8211933875886144e-07, -1.2052983468971533e-07, -3.6158950406914522e-06, -7.2317900813829401e-07, -3.0132458672428878e-07, -3.6158950406914904e-06, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670049e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.3800666071972457e-05, -1.8079475203457334e-07, -1.2052983468971558e-05, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670252e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.6271527683111544e-06, -5.7854320651063537e-06, -4.8211933875886144e-07, -4.278809131484888e-06, -7.2317900813829337e-07, -7.2317900813829337e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344858095e-07, -4.8211933875886122e-07, -6.0264917344857947e-07, -1.2655632642420176e-06, -4.8211933875886144e-07, -3.0132458672429005e-07, -1.3860930989317323e-06, -4.8211933875886144e-07, -7.2317900813829401e-07, -1.8079475203457573e-07, -3.0132458672428878e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -7.2317900813829379e-07, -3.6158950406914944e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.4463580162765876e-06, -4.8211933875886144e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610372146e-07, -2.0490071897251728e-06, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -5.4238425610372146e-07, -1.5668878509663074e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.0245035948625737e-06, -1.807947520345727e-06, -7.2317900813829401e-07, -3.6158950406914859e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -9.6423867751772266e-07, -1.446358016276587e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -7.231790081382939e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -5.423842561037204e-07, -3.0132458672428963e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.3390740488297683e-06, -2.4105966937943061e-07, -6.0264917344857679e-08, -3.6158950406914514e-06, -4.8211933875886144e-07, -2.8927160325532175e-06, -2.8927160325531743e-06, -3.0132458672428755e-06, -2.8927160325532175e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.2185442141400696e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -3.6761599580363253e-06, -1.2052983468971533e-07, -4.3390740488297751e-06, -4.3390740488297751e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.3390740488297767e-06, -4.3390740488297683e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.8079475203457345e-07, -9.6423867751772287e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -0.0001938119741810617, -0.00019284773550354233, -4.821193387588651e-06, -9.6423867751772245e-07, -2.8927160325532091e-06, -9.642386775177302e-06, -7.7139094201419121e-05, -1.9284773550354449e-06, -8.8709958331631737e-05, -9.6423867751772266e-07, -1.5427818840283556e-05, -1.5427818840283556e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201419121e-05, -7.7139094201419121e-05, -7.7139094201417779e-06, -0.00021888217979652413, -1.9284773550354445e-06, -0.00019284773550354487, -1.5427818840283556e-05, -7.7139094201417796e-06, -7.7139094201417779e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -7.7139094201417779e-06, -4.821193387588651e-06, -2.8927160325531726e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -1.4463580162765934e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -8.6781480976595535e-06, -7.7139094201417813e-06, -1.4463580162765887e-05, -1.9284773550354449e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -1.5427818840283563e-05, -9.6423867751773426e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -9.6423867751772245e-07, -7.7139094201417813e-06, -1.6392057517801287e-05, -7.7139094201417796e-06, -7.7139094201417813e-06, -1.5427818840283559e-05, -3.0855637680567112e-05, -2.4105966937942852e-05, -7.7139094201417813e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708889e-06, -7.7139094201417813e-06, -9.642386775177346e-06, -1.0606625452694888e-05, -3.8569547100708889e-06, -1.5427818840283552e-05, -7.7139094201417813e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -9.6423867751772224e-07, -7.7139094201417813e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -2.3141728260425672e-05, -7.7139094201417779e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.5427818840283563e-05, -3.8569547100708906e-06, -1.7356296195319012e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.2535102807730492e-05, -7.7139094201417796e-06, -1.5427818840283559e-05, -8.0996048911489342e-05, -7.7139094201417813e-06, -8.4853003621559211e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.5427818840283559e-05, -7.7139094201418633e-05, -1.5427818840283559e-05, -7.81033328789365e-05, -9.6423867751772245e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708889e-06, -8.0996048911489315e-05, -7.7139094201419121e-05, -7.7139094201418565e-05, -7.7139094201418768e-05, -9.6423867751772245e-07, -3.8569547100708898e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -7.7139094201417796e-06, -9.6423867751773833e-06, -1.9284773550354611e-05, -1.5427818840283559e-05, -1.5427818840283563e-05, -7.7139094201417796e-06, -2.3141728260425388e-05, -2.8927160325531409e-06, -8.4853003621559848e-05, -1.5427818840283559e-05, -6.9425184781276807e-05, -9.6423867751772245e-07, -9.6423867751772266e-07, -2.4105966937943048e-05, -1.5427818840283563e-05, -7.7139094201417813e-06, -6.7496707426240717e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -6.9425184781276807e-05, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -6.942518478127678e-05, -7.7139094201417813e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -9.6423867751773393e-06, -2.8927160325531735e-06, -7.7139094201417813e-06, -1.4463580162765843e-05, -9.6423867751772266e-07, 0.0019564402766834681, -1.9284773550354445e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -5.7854320651063775e-06, -2.8927160325532086e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -2.507020561546097e-05, -2.2177489582907951e-05, -9.6423867751772266e-07, 0.0039128805533669379, -7.7139094201417813e-06, -5.7854320651063046e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -7.7139094201418768e-05, -7.7139094201418565e-05, -0.00015620666575787351, -7.7139094201418565e-05, -7.7139094201418633e-05, -3.8569547100708889e-06, -1.9284773550354453e-06, -7.7139094201417762e-06, -8.6781480976595332e-06, -3.8569547100708889e-06, -1.0606625452694944e-05, -9.6423867751772245e-07, -9.6423867751772266e-07, -1.5427818840283563e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.5427818840283563e-05, -7.7139094201417813e-06, -9.6423867751772266e-07, -0.00015620666575787314, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.8927160325531726e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -3.8569547100708889e-06, -1.1570864130212701e-05, -7.7139094201417813e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.735629619531888e-05, -9.6423867751772266e-07, -3.8569547100708856e-06, -1.9284773550354449e-06, -1.5427818840283563e-05, -1.5427818840283563e-05, -4.8211933875886722e-06, -3.8569547100708906e-06, -1.9284773550354449e-06, -5.7854320651063453e-06, -8.1960287589006667e-05, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.5427818840283563e-05, -1.5427818840283563e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -4.4354979165815712e-05, -9.642386775177302e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -7.7139094201417796e-06, -1.5427818840283563e-05, -7.7139094201417779e-06, -1.5427818840283563e-05, -7.7139094201417779e-06, -7.7139094201417779e-06, -0.00029602127399794119, -7.7139094201417813e-06, -0.00019284773550354357, -7.7139094201417813e-06, -1.9284773550354449e-06, -5.7854320651063317e-05, -1.1570864130212694e-05, -4.8211933875886662e-06, -5.785432065106367e-05, -9.6423867751772266e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00015620666575787314, -7.7139094201417813e-06, -7.7139094201417813e-06, -0.00022081065715156008, -2.8927160325531709e-06, -0.00019284773550354374, -7.7139094201417796e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -1.5427818840283563e-05, -1.5427818840283563e-05, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, 0.0019564402766834685, -0.00015620666575787351, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.6034444292978444e-05, -9.2566913041701714e-05, -7.7139094201417813e-06, -6.8460946103758507e-05, -1.1570864130212884e-05, -1.1570864130212884e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751773833e-06, -7.7139094201417796e-06, -9.6423867751773596e-06, -2.0249012227872322e-05, -7.7139094201417813e-06, -4.8211933875886849e-06, -2.2177489582907849e-05, -7.7139094201417813e-06, -1.1570864130212694e-05, -2.8927160325532091e-06, -4.8211933875886645e-06, -1.9284773550354445e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -7.7139094201417779e-06, -1.1570864130212735e-05, -5.785432065106347e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -1.5427818840283556e-05, -7.7139094201417813e-06, -3.8569547100708906e-06, -1.5427818840283556e-05, -7.7139094201417813e-06, -3.8569547100708906e-06, -7.7139094201417779e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.5427818840283559e-05, -2.3141728260425374e-05, -7.7139094201417813e-06, -1.5427818840283556e-05, -1.5427818840283556e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -8.6781480976595298e-06, -3.2784115035602453e-05, -1.9284773550354445e-06, -7.7139094201417779e-06, -7.7139094201417813e-06, -8.6781480976595908e-06, -2.5070205615461017e-05, -7.7139094201417779e-06, -7.7139094201417813e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.6392057517801186e-05, -2.8927160325531523e-05, -1.1570864130212694e-05, -5.7854320651063775e-06, -9.6423867751772266e-07, -3.8569547100708906e-06, -1.5427818840283559e-05, -2.3141728260425378e-05, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.5427818840283563e-05, -1.5427818840283563e-05, -3.8569547100708906e-06, -1.1570864130212694e-05, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -8.6781480976595162e-06, -4.8211933875886527e-06, -7.7139094201417796e-06, -1.5427818840283563e-05, -6.9425184781276536e-05, -3.8569547100708889e-06, -9.6423867751772266e-07, -5.7854320651063046e-05, -7.7139094201417813e-06, -4.6283456520851447e-05, -4.6283456520850762e-05, -4.8211933875885704e-05, -4.6283456520851447e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -6.7496707426241331e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -5.8818559328581164e-05, -1.9284773550354449e-06, -6.942518478127678e-05, -6.9425184781276807e-05, -7.7139094201417813e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -6.9425184781276807e-05, -6.9425184781276672e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.5427818840283563e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.892716032553182e-06, -1.5427818840283563e-05, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6905987090532136e-05, -9.642386775177241e-05, -2.4105966937943221e-06, -4.8211933875886122e-07, -1.4463580162766062e-06, -4.8211933875886442e-06, -3.8569547100709506e-05, -9.6423867751772245e-07, -4.4354979165815292e-05, -4.8211933875886133e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100709506e-05, -3.8569547100709506e-05, -3.8569547100708889e-06, -0.00010944108989826086, -9.6423867751772224e-07, -9.6423867751773697e-05, -7.7139094201417779e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708881e-06, -2.4105966937943221e-06, -1.4463580162766045e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -7.2317900813830409e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.339074048829698e-06, -3.8569547100708906e-06, -7.2317900813830155e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886645e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -8.196028758900581e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.2052983468971582e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -4.8211933875886662e-06, -5.3033127263474473e-06, -1.9284773550354445e-06, -7.7139094201417762e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.157086413021285e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -8.6781480976594129e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -9.6423867751772266e-07, -6.2675514038651213e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.0498024455744657e-05, -3.8569547100708906e-06, -4.2426501810779592e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -3.8569547100709262e-05, -7.7139094201417796e-06, -3.9051666439468223e-05, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.0498024455744657e-05, -3.8569547100709506e-05, -3.8569547100709228e-05, -3.856954710070933e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886815e-06, -9.6423867751772783e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -1.1570864130212838e-05, -1.4463580162765683e-06, -4.2426501810779938e-05, -7.7139094201417796e-06, -3.4712592390637787e-05, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.2052983468971624e-05, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.3748353713120316e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390637787e-05, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.4712592390637773e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886629e-06, -1.4463580162766045e-06, -3.8569547100708906e-06, -7.2317900813829943e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -2.8927160325532247e-06, -1.4463580162766225e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.2535102807730488e-05, -1.1088744791453818e-05, -4.8211933875886133e-07, -7.7139094201417813e-06, 0.0019602972313935386, -2.892716032553165e-06, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.856954710070933e-05, -3.8569547100709228e-05, -7.8103332878936676e-05, -3.8569547100709228e-05, -3.8569547100709262e-05, -1.9284773550354445e-06, -9.6423867751772266e-07, -3.8569547100708881e-06, -4.3390740488296895e-06, -1.9284773550354445e-06, -5.3033127263474753e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.81033328789365e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4463580162766045e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651064215e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -8.6781480976593959e-06, -4.8211933875886133e-07, -1.9284773550354428e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943327e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325532082e-06, -4.0980143794503334e-05, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -2.2177489582907548e-05, -4.8211933875886442e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897298, -3.8569547100708906e-06, -9.6423867751773047e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.8927160325531787e-05, -5.7854320651064198e-06, -2.4105966937943289e-06, -2.8927160325532116e-05, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.81033328789365e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.0001104053285757789, -1.4463580162766037e-06, -9.6423867751773128e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, 0.0019602972313935386, -3.8569547100708906e-06, -7.8103332878936676e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489406e-05, -4.6283456520851304e-05, -3.8569547100708906e-06, -3.4230473051878914e-05, -5.7854320651062817e-06, -5.7854320651062817e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886849e-06, -3.8569547100708898e-06, -4.821193387588673e-06, -1.0124506113936158e-05, -3.8569547100708906e-06, -2.410596693794339e-06, -1.1088744791453767e-05, -3.8569547100708906e-06, -5.7854320651064198e-06, -1.446358016276623e-06, -2.4105966937943289e-06, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708889e-06, -5.7854320651064181e-06, -2.8927160325532298e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.1570864130212836e-05, -3.8569547100708906e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297183e-06, -1.639205751780126e-05, -9.6423867751772245e-07, -3.8569547100708889e-06, -3.8569547100708906e-06, -4.3390740488297183e-06, -1.2535102807730497e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -8.1960287589005319e-06, -1.4463580162765911e-05, -5.7854320651064198e-06, -2.8927160325532247e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -7.7139094201417796e-06, -1.1570864130212831e-05, -3.8569547100708889e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.785432065106419e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.3390740488297115e-06, -2.4105966937943221e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.4712592390637855e-05, -1.9284773550354449e-06, -4.8211933875886133e-07, -2.8927160325531753e-05, -3.8569547100708906e-06, -2.3141728260426015e-05, -2.3141728260425666e-05, -2.4105966937943163e-05, -2.3141728260426015e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.3748353713120272e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.9409279664290738e-05, -9.6423867751772245e-07, -3.4712592390637773e-05, -3.4712592390637787e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390637787e-05, -3.4712592390637719e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.4463580162766045e-06, -7.7139094201417813e-06, -2.8927160325532451e-06, -2.8927160325532332e-06, -2.8927160325532357e-06, -2.8927160325532451e-06, -1.4463580162766011e-06, -1.4463580162766011e-06, -2.8927160325532023e-06, -2.8927160325532014e-06, -3.6158950406915383e-07, -3.6158950406915341e-07, -7.2679490317899685e-05, -7.2317900813829731e-05, -1.8079475203457418e-06, -3.6158950406915378e-07, -1.0847685122074404e-06, -3.6158950406914802e-06, -2.8927160325531774e-05, -7.2317900813830682e-07, -3.3266234374361461e-05, -3.6158950406914986e-07, -5.7854320651064723e-06, -5.7854320651064689e-06, -2.8927160325532006e-06, -2.8927160325532031e-06, -2.892716032553172e-05, -2.8927160325531713e-05, -2.8927160325531947e-06, -8.2080817423696101e-05, -7.2317900813831169e-07, -7.2317900813829785e-05, -5.7854320651064757e-06, -2.892716032553234e-06, -2.8927160325532468e-06, -3.615895040691496e-07, -3.6158950406914552e-07, -2.8927160325531574e-06, -2.8927160325531599e-06, -7.2317900813831169e-07, -7.2317900813831169e-07, -3.6158950406914965e-07, -3.6158950406914436e-07, -2.8927160325531921e-06, -1.8079475203457382e-06, -1.0847685122074357e-06, -1.446358016276602e-06, -1.4463580162766011e-06, -3.6158950406915378e-07, -5.4238425610371748e-06, -2.8927160325532167e-06, -2.8927160325532175e-06, -3.2543055366223139e-06, -2.8927160325531997e-06, -5.4238425610371875e-06, -7.2317900813830766e-07, -3.6158950406915531e-07, -2.8927160325532006e-06, -2.8927160325532014e-06, -3.6158950406915394e-07, -3.6158950406915293e-07, -2.8927160325532192e-06, -2.8927160325532158e-06, -7.2317900813829867e-07, -3.6158950406915156e-07, -2.8927160325532091e-06, -5.7854320651063919e-06, -3.6158950406914904e-06, -2.8927160325532247e-06, -5.7854320651064215e-06, -3.6158950406915415e-07, -2.8927160325532116e-06, -6.1470215691755852e-06, -2.892716032553223e-06, -2.8927160325532141e-06, -5.7854320651064681e-06, -1.1570864130212779e-05, -9.0397376017287435e-06, -2.8927160325532014e-06, -5.7854320651064613e-06, -5.7854320651064579e-06, -1.4463580162766234e-06, -2.8927160325532158e-06, -3.6158950406914887e-06, -3.9774845447605783e-06, -1.4463580162766234e-06, -5.7854320651063876e-06, -2.892716032553223e-06, -2.8927160325532239e-06, -2.8927160325532247e-06, -7.2317900813829867e-07, -2.8927160325531743e-06, -2.8927160325532014e-06, -3.6158950406915579e-07, -2.8927160325532006e-06, -7.2317900813830311e-07, -2.8927160325531726e-06, -2.892716032553223e-06, -2.8927160325532256e-06, -3.6158950406915415e-07, -5.7854320651064613e-06, -5.7854320651064647e-06, -3.6158950406915309e-07, -2.892716032553223e-06, -2.8927160325532209e-06, -3.6158950406915346e-07, -2.8927160325531794e-06, -2.892716032553176e-06, -2.8927160325532133e-06, -2.8927160325531769e-06, -8.6781480976595196e-06, -2.8927160325532425e-06, -2.8927160325532074e-06, -2.8927160325532124e-06, -3.6158950406915198e-07, -2.8927160325532099e-06, -2.8927160325532133e-06, -5.7854320651064351e-06, -1.4463580162766011e-06, -6.5086110732446262e-06, -1.446358016276602e-06, -3.61589504069147e-07, -7.2317900813830481e-07, -4.7006635528989447e-06, -2.8927160325532256e-06, -5.7854320651063902e-06, -3.0373518341808557e-05, -2.8927160325532192e-06, -3.1819876358084633e-05, -2.8927160325532158e-06, -2.8927160325532133e-06, -5.7854320651064579e-06, -2.8927160325531862e-05, -5.7854320651064613e-06, -2.9288749829601169e-05, -3.615895040691497e-07, -5.7854320651064647e-06, -5.7854320651064545e-06, -1.4463580162766204e-06, -3.0373518341808557e-05, -2.8927160325531774e-05, -2.892716032553177e-05, -2.8927160325531947e-05, -3.6158950406915394e-07, -1.4463580162765965e-06, -3.6158950406915124e-07, -3.6158950406914647e-07, -3.6158950406915584e-07, -2.8927160325531582e-06, -2.8927160325531591e-06, -2.8927160325532239e-06, -2.8927160325532247e-06, -3.6158950406915134e-07, -3.6158950406915156e-07, -3.6158950406915113e-07, -2.8927160325532357e-06, -3.6158950406915077e-06, -7.2317900813829502e-06, -5.785432065106391e-06, -5.78543206510643e-06, -2.8927160325532349e-06, -8.678148097659479e-06, -1.0847685122074425e-06, -3.1819876358084836e-05, -5.7854320651064266e-06, -2.6034444292978471e-05, -3.6158950406915373e-07, -3.615895040691524e-07, -9.0397376017287435e-06, -5.7854320651064351e-06, -2.8927160325532167e-06, -2.5311265284840458e-06, -1.4463580162765978e-06, -7.2317900813830745e-07, -2.6034444292978471e-05, -7.2317900813830766e-07, -1.4463580162766011e-06, -1.4463580162766011e-06, -2.6034444292978471e-05, -2.8927160325532074e-06, -3.6158950406915219e-07, -2.8927160325532167e-06, -3.6158950406915124e-07, -2.8927160325532141e-06, -3.6158950406915018e-06, -1.0847685122074355e-06, -2.8927160325532158e-06, -5.423842561037223e-06, -3.6158950406914965e-07, -2.8927160325532065e-06, -7.2317900813831169e-07, -7.2317900813831169e-07, -7.2317900813831021e-07, -3.6158950406914467e-07, -2.1695370244148473e-06, -1.0847685122074152e-06, -2.8927160325532298e-06, -2.8927160325532332e-06, -5.7854320651064232e-06, -9.4013271057978589e-06, -8.3165585935902669e-06, -3.6158950406914965e-07, -5.7854320651063046e-06, -2.892716032553165e-06, 0.0014709461025532804, -7.2317900813829909e-07, -3.6158950406915156e-07, -3.6158950406914647e-07, -2.8927160325531947e-05, -2.892716032553177e-05, -5.8577499659201978e-05, -2.8927160325531767e-05, -2.8927160325531862e-05, -1.4463580162766234e-06, -7.2317900813829909e-07, -2.8927160325531938e-06, -3.2543055366223148e-06, -1.4463580162766234e-06, -3.9774845447605944e-06, -3.6158950406915373e-07, -3.6158950406914986e-07, -5.7854320651063927e-06, -2.8927160325532074e-06, -2.8927160325532124e-06, -3.6158950406915251e-07, -3.6158950406915378e-07, -1.4463580162766124e-06, -1.4463580162766132e-06, -5.7854320651063046e-06, -2.8927160325531667e-06, -3.6158950406915071e-07, -5.8577499659202588e-05, -2.8927160325532315e-06, -2.8927160325532307e-06, -3.615895040691532e-07, -1.4463580162766132e-06, -1.4463580162766132e-06, -7.2317900813829972e-07, -7.2317900813829972e-07, -1.0847685122074338e-06, -3.6158950406915389e-07, -7.2317900813829972e-07, -7.2317900813829972e-07, -3.6158950406915166e-07, -3.6158950406915394e-07, -1.446358016276602e-06, -4.3390740488297217e-06, -2.8927160325532057e-06, -3.6158950406915113e-07, -3.6158950406914986e-07, -6.5086110732447142e-06, -3.6158950406915288e-07, -1.4463580162765961e-06, -7.2317900813829888e-07, -5.7854320651064037e-06, -5.7854320651064071e-06, -1.8079475203457496e-06, -1.4463580162766098e-06, -7.2317900813829867e-07, -2.1695370244148617e-06, -3.0735107845877536e-05, -3.6158950406914436e-07, -1.4463580162766094e-06, -1.4463580162766102e-06, -5.7854320651064105e-06, -5.7854320651064003e-06, -1.4463580162766105e-06, -1.4463580162766054e-06, -1.446358016276605e-06, -3.6158950406915113e-07, -1.6633117187180724e-05, -3.6158950406914688e-06, -3.6158950406915415e-07, -2.8927160325532307e-06, -2.8927160325531947e-06, -2.8927160325532315e-06, -5.7854320651064003e-06, -2.8927160325531947e-06, -5.7854320651064105e-06, -2.8927160325531947e-06, -2.8927160325531947e-06, -0.00011100797774922788, -2.8927160325531642e-06, -7.2317900813829826e-05, -2.8927160325532099e-06, -7.2317900813830798e-07, -2.1695370244148831e-05, -4.3390740488297319e-06, -1.8079475203457448e-06, -2.1695370244148719e-05, -3.6158950406915029e-07, -2.8927160325532247e-06, -2.8927160325532239e-06, -5.8577499659202588e-05, -2.8927160325532057e-06, -2.8927160325532048e-06, 0.0013903116431458716, -1.0847685122074391e-06, -7.2317900813829853e-05, -2.8927160325532209e-06, -2.892716032553223e-06, -3.6158950406915177e-07, -2.892716032553223e-06, -2.8927160325532256e-06, -3.6158950406915092e-07, -5.7854320651064071e-06, -5.7854320651064037e-06, -7.2317900813831021e-07, -1.4463580162766132e-06, -1.4463580162766132e-06, -2.892716032553165e-06, -2.8927160325531659e-06, -5.8577499659201978e-05, -2.8927160325532332e-06, -2.8927160325532298e-06, -9.7629166098669913e-06, -3.4712592390638051e-05, -2.892716032553223e-06, -2.567285478890952e-05, -4.3390740488297446e-06, -4.3390740488297446e-06, -2.8927160325532332e-06, -2.892716032553176e-06, -3.6158950406915069e-06, -2.8927160325531794e-06, -3.6158950406914971e-06, -7.5933795854521292e-06, -2.8927160325532082e-06, -1.8079475203457513e-06, -8.3165585935903635e-06, -2.8927160325532065e-06, -4.3390740488297302e-06, -1.0847685122074152e-06, -1.807947520345746e-06, -7.2317900813831084e-07, -3.6158950406915394e-07, -3.6158950406915219e-07, -2.8927160325532468e-06, -4.3390740488297429e-06, -2.1695370244148431e-06, -1.4463580162766037e-06, -2.8927160325532349e-06, -2.8927160325531947e-06, -2.8927160325531947e-06, -5.7854320651063893e-06, -2.8927160325532006e-06, -1.4463580162766102e-06, -5.7854320651063893e-06, -2.8927160325532006e-06, -1.4463580162766094e-06, -2.8927160325531947e-06, -3.6158950406915029e-07, -2.8927160325532014e-06, -2.8927160325532006e-06, -5.7854320651064647e-06, -8.6781480976594959e-06, -2.892716032553215e-06, -5.7854320651064757e-06, -5.7854320651064656e-06, -2.8927160325532014e-06, -2.8927160325532023e-06, -2.8927160325532065e-06, -2.892716032553204e-06, -3.2543055366223088e-06, -1.2294043138351123e-05, -7.2317900813828765e-07, -2.8927160325532425e-06, -2.8927160325532006e-06, -3.2543055366223071e-06, -9.4013271057978183e-06, -2.8927160325532332e-06, -2.8927160325532167e-06, -2.8927160325532451e-06, -1.4463580162766098e-06, -1.4463580162766102e-06, -3.6158950406915373e-07, -3.6158950406915584e-07, -3.6158950406915415e-07, -7.2317900813828935e-07, -6.1470215691755751e-06, -1.084768512207436e-05, -4.3390740488297251e-06, -2.1695370244148473e-06, -3.6158950406915198e-07, -1.446358016276609e-06, -5.7854320651064266e-06, -8.6781480976595027e-06, -2.8927160325532417e-06, -1.446358016276609e-06, -5.7854320651064334e-06, -5.78543206510643e-06, -1.446358016276609e-06, -4.3390740488297352e-06, -2.8927160325532057e-06, -3.6158950406915521e-07, -7.2317900813828787e-07, -1.446358016276609e-06, -1.4463580162766105e-06, -3.254305536622311e-06, -1.8079475203457397e-06, -2.8927160325532298e-06, -5.7854320651063919e-06, -2.6034444292978623e-05, -1.4463580162766204e-06, -3.6158950406915134e-07, -2.1695370244148777e-05, -2.8927160325532124e-06, -1.7356296195318622e-05, -1.7356296195318941e-05, -1.8079475203457484e-05, -1.7356296195318622e-05, -1.4463580162766204e-06, -1.44635801627662e-06, -2.8927160325532167e-06, -2.8927160325532141e-06, -1.4463580162766071e-06, -1.4463580162766071e-06, -2.8927160325531726e-06, -3.615895040691551e-07, -2.8927160325531743e-06, -3.6158950406915198e-07, -3.6158950406915351e-07, -2.5311265284840314e-05, -1.4463580162766071e-06, -1.4463580162766071e-06, -2.2056959748218091e-05, -7.2317900813830915e-07, -2.6034444292978471e-05, -2.6034444292978471e-05, -2.8927160325532116e-06, -3.6158950406915134e-07, -2.8927160325532141e-06, -2.6034444292978471e-05, -2.6034444292978457e-05, -2.8927160325532124e-06, -2.8927160325532099e-06, -7.2317900813830142e-07, -7.2317900813830745e-07, -5.7854320651063961e-06, -2.8927160325532108e-06, -2.8927160325532116e-06, -1.0847685122074366e-06, -5.7854320651063961e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971531e-07, -1.2052983468971533e-07, -2.4226496772632851e-05, -2.410596693794292e-05, -6.0264917344857672e-07, -1.2052983468971531e-07, -3.6158950406914653e-07, -1.2052983468971619e-06, -9.6423867751773189e-06, -2.4105966937943066e-07, -1.1088744791453926e-05, -1.2052983468971536e-07, -1.9284773550354445e-06, -1.928477355035444e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -9.6423867751773206e-06, -9.6423867751773189e-06, -9.6423867751772245e-07, -2.7360272474565414e-05, -2.4105966937943056e-07, -2.4105966937943221e-05, -1.9284773550354445e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943056e-07, -2.4105966937943056e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -9.6423867751772224e-07, -6.0264917344857714e-07, -3.6158950406914679e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.8079475203457456e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.0847685122074395e-06, -9.6423867751772287e-07, -1.8079475203457405e-06, -2.4105966937943056e-07, -1.2052983468971531e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.2052983468971589e-06, -9.6423867751772266e-07, -1.9284773550354453e-06, -1.2052983468971531e-07, -9.6423867751772245e-07, -2.0490071897251609e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -3.8569547100708889e-06, -3.0132458672428709e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -1.2052983468971594e-06, -1.3258281815868654e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943056e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971525e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971533e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.2052983468971533e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772287e-07, -9.6423867751772245e-07, -2.8927160325531718e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -9.6423867751772245e-07, -1.2052983468971533e-07, -9.6423867751772287e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.1695370244148706e-06, -4.8211933875886144e-07, -1.2052983468971531e-07, -2.4105966937943072e-07, -1.5668878509663114e-06, -9.6423867751772266e-07, -1.9284773550354453e-06, -1.0124506113936158e-05, -9.6423867751772245e-07, -1.0606625452694935e-05, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -9.6423867751772613e-06, -1.9284773550354449e-06, -9.7629166098670117e-06, -1.2052983468971531e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886133e-07, -1.0124506113936154e-05, -9.6423867751773189e-06, -9.6423867751772529e-06, -9.6423867751772783e-06, -1.2052983468971531e-07, -4.8211933875886101e-07, -1.2052983468971536e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -9.6423867751772245e-07, -1.2052983468971636e-06, -2.4105966937943213e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -2.8927160325531748e-06, -3.6158950406915198e-07, -1.0606625452695017e-05, -1.9284773550354449e-06, -8.6781480976595637e-06, -1.2052983468971533e-07, -1.2052983468971536e-07, -3.0132458672428937e-06, -1.9284773550354457e-06, -9.6423867751772245e-07, -8.437088428280132e-07, -4.8211933875886112e-07, -2.4105966937943056e-07, -8.6781480976595637e-06, -2.4105966937943056e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976595603e-06, -9.6423867751772287e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -1.2052983468971533e-07, -9.6423867751772287e-07, -1.2052983468971585e-06, -3.6158950406914679e-07, -9.6423867751772287e-07, -1.8079475203457342e-06, -1.2052983468971536e-07, -9.6423867751772287e-07, -2.4105966937943056e-07, -2.4105966937943056e-07, -2.4105966937943061e-07, -1.2052983468971536e-07, -7.2317900813829761e-07, -3.6158950406915124e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -3.1337757019326136e-06, -2.7721861978634829e-06, -1.2052983468971536e-07, -1.9284773550354453e-06, -9.6423867751772266e-07, -7.2317900813829909e-07, 0.00049079748685652272, -1.2052983468971536e-07, -1.2052983468971533e-07, -9.6423867751772783e-06, -9.6423867751772529e-06, -1.9525833219734078e-05, -9.6423867751772529e-06, -9.6423867751772613e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -9.6423867751772202e-07, -1.0847685122074374e-06, -4.8211933875886122e-07, -1.3258281815868724e-06, -1.2052983468971531e-07, -1.2052983468971536e-07, -1.9284773550354457e-06, -9.6423867751772266e-07, -9.6423867751772287e-07, -1.2052983468971536e-07, -1.2052983468971531e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -9.6423867751772266e-07, -1.2052983468971536e-07, -1.952583321973404e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971533e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -3.6158950406914679e-07, -1.2052983468971528e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -4.8211933875886112e-07, -1.446358016276588e-06, -9.6423867751772266e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -2.1695370244148884e-06, -1.2052983468971531e-07, -4.8211933875886101e-07, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -6.0264917344857968e-07, -4.8211933875886122e-07, -2.4105966937943066e-07, -7.2317900813829337e-07, -1.0245035948625833e-05, -1.2052983468971536e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971536e-07, -5.5443723957269395e-06, -1.2052983468971543e-06, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772202e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -9.6423867751772202e-07, -1.9284773550354449e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -3.700265924974277e-05, -9.6423867751772266e-07, -2.4105966937943069e-05, -9.6423867751772287e-07, -2.4105966937943056e-07, -7.2317900813828909e-06, -1.4463580162765876e-06, 0.00024491662408950249, -7.2317900813829723e-06, -1.2052983468971536e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.952583321973404e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.7601332143944922e-05, -3.6158950406914658e-07, -2.4105966937943075e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971536e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9525833219734078e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.2543055366223071e-06, -1.1570864130212701e-05, -9.6423867751772266e-07, -8.5576182629697727e-06, -1.446358016276591e-06, -1.446358016276591e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971642e-06, -9.6423867751772245e-07, -1.2052983468971615e-06, -2.5311265284840386e-06, -9.6423867751772287e-07, -6.0264917344858137e-07, 0.00024274708706508772, -9.6423867751772245e-07, -1.4463580162765876e-06, -3.6158950406915134e-07, -6.0264917344857873e-07, -2.4105966937943056e-07, -1.2052983468971531e-07, -1.2052983468971536e-07, -9.6423867751772245e-07, -1.4463580162765918e-06, -7.2317900813829401e-07, -4.8211933875886144e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -9.6423867751772202e-07, -1.9284773550354445e-06, -9.6423867751772266e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -9.6423867751772287e-07, -4.8211933875886122e-07, -9.6423867751772202e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -2.8927160325531735e-06, -9.6423867751772287e-07, -1.9284773550354445e-06, -1.928477355035444e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.0847685122074387e-06, -4.0980143794503354e-06, -2.4105966937943056e-07, -9.6423867751772245e-07, -9.6423867751772287e-07, -1.0847685122074446e-06, -3.1337757019326191e-06, -9.6423867751772266e-07, -9.6423867751772287e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971533e-07, -1.2052983468971528e-07, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.0490071897251491e-06, -3.615895040691448e-06, -1.4463580162765876e-06, -7.2317900813829761e-07, -1.2052983468971536e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -2.8927160325531731e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -1.4463580162765874e-06, -9.6423867751772245e-07, -1.2052983468971531e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -1.0847685122074366e-06, -6.0264917344858053e-07, -9.6423867751772266e-07, -1.9284773550354453e-06, -8.6781480976595535e-06, -4.8211933875886133e-07, -1.2052983468971536e-07, -7.2317900813828909e-06, -9.6423867751772245e-07, -5.7854320651064334e-06, -5.785432065106347e-06, -6.02649173448574e-06, -5.7854320651064334e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -8.4370884282801358e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -7.3523199160726319e-06, -2.4105966937943061e-07, -8.6781480976595603e-06, -8.6781480976595637e-06, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -8.6781480976595637e-06, -8.6781480976595467e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.6158950406914796e-07, -1.9284773550354457e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -1.211324838631648e-05, -1.2052983468971511e-05, -3.0132458672428889e-07, -6.0264917344857666e-08, -1.807947520345743e-07, -6.0264917344858159e-07, -4.8211933875886662e-06, -1.2052983468971536e-07, -5.5443723957269319e-06, -6.0264917344857679e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886662e-06, -4.8211933875886662e-06, -4.8211933875886122e-07, -1.3680136237282655e-05, -1.2052983468971531e-07, -1.2052983468971672e-05, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886101e-07, -3.0132458672428889e-07, -1.807947520345744e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857666e-08, -9.0397376017287693e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610371585e-07, -4.8211933875886144e-07, -9.0397376017287386e-07, -1.2052983468971533e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344858032e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344857666e-08, -4.8211933875886144e-07, -1.024503594862579e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6423867751772266e-07, -1.9284773550354445e-06, -1.5066229336214426e-06, -4.8211933875886144e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -6.0264917344858053e-07, -6.629140907934324e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -1.2052983468971533e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.4463580162765944e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.0847685122074338e-06, -2.4105966937943072e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -7.8344392548315657e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -5.0622530569680788e-06, -4.8211933875886144e-07, -5.3033127263474643e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -4.8211933875886357e-06, -9.6423867751772266e-07, -4.8814583049335109e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -5.0622530569680788e-06, -4.8211933875886662e-06, -4.8211933875886315e-06, -4.8211933875886442e-06, -6.0264917344857666e-08, -2.4105966937943061e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, 0.00024545900834560644, -6.0264917344857679e-08, -4.8211933875886133e-07, -6.0264917344858243e-07, -1.2052983468971619e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -4.8211933875886133e-07, -1.4463580162765956e-06, -1.8079475203457708e-07, -5.3033127263475058e-06, -9.6423867751772266e-07, -4.339074048829753e-06, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.5066229336214477e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.2185442141400491e-07, -2.4105966937943061e-07, -1.2052983468971533e-07, -4.3390740488297513e-06, -1.2052983468971533e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297513e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857989e-07, -1.807947520345744e-07, -4.8211933875886144e-07, -9.0397376017287111e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -3.6158950406914499e-07, -1.8079475203457668e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -1.5668878509663059e-06, -1.3860930989317336e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -3.6158950406915156e-07, -1.2052983468971536e-07, 0.00024545900834560644, -6.0264917344857666e-08, -4.8211933875886442e-06, -4.8211933875886315e-06, -9.7629166098670489e-06, -4.8211933875886315e-06, -4.8211933875886357e-06, -2.4105966937943061e-07, -1.2052983468971536e-07, -4.8211933875886112e-07, -5.4238425610371765e-07, -2.4105966937943061e-07, -6.6291409079343589e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.7629166098670286e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.807947520345744e-07, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943061e-07, -7.2317900813829803e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.0847685122074361e-06, -6.0264917344857679e-08, -2.4105966937943051e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.0132458672429021e-07, -2.4105966937943072e-07, -1.2052983468971533e-07, -3.615895040691487e-07, -5.1225179743129167e-06, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, -2.7721861978634562e-06, -6.0264917344857777e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.8501329624871507e-05, -4.8211933875886133e-07, -1.205298346897159e-05, -4.8211933875886144e-07, -1.2052983468971533e-07, -3.6158950406914675e-06, -7.2317900813829803e-07, -3.0132458672428984e-07, -3.6158950406914912e-06, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670286e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.3800666071972413e-05, -1.807947520345743e-07, -1.20529834689716e-05, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670489e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.6271527683111536e-06, -5.7854320651063842e-06, -4.8211933875886144e-07, -4.2788091314848728e-06, -7.2317900813829739e-07, -7.2317900813829739e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344858286e-07, -4.8211933875886122e-07, -6.0264917344858137e-07, -1.265563264242018e-06, -4.8211933875886144e-07, -3.0132458672429111e-07, -1.3860930989317272e-06, -4.8211933875886144e-07, -7.2317900813829803e-07, -1.8079475203457676e-07, -3.0132458672428984e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -7.2317900813829718e-07, -3.6158950406915145e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.4463580162765952e-06, -4.8211933875886144e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610371849e-07, -2.0490071897251668e-06, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -5.4238425610371849e-07, -1.5668878509663074e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.0245035948625707e-06, -1.8079475203457325e-06, -7.2317900813829761e-07, -3.6158950406914499e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -9.6423867751772266e-07, -1.446358016276595e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -7.2317900813829782e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -5.4238425610371743e-07, -3.0132458672429058e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.3390740488297369e-06, -2.4105966937943061e-07, -6.0264917344857679e-08, -3.6158950406914666e-06, -4.8211933875886144e-07, -2.8927160325532336e-06, -2.8927160325531904e-06, -3.0132458672428853e-06, -2.8927160325532336e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.2185442141400764e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -3.6761599580363405e-06, -1.2052983468971533e-07, -4.3390740488297513e-06, -4.3390740488297513e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.339074048829753e-06, -4.3390740488297446e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.807947520345744e-07, -9.6423867751772287e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -1.2113248386316534e-05, -1.2052983468971572e-05, -3.0132458672429048e-07, -6.0264917344857653e-08, -1.8079475203457588e-07, -6.0264917344858095e-07, -4.8211933875886916e-06, -1.2052983468971531e-07, -5.5443723957269014e-06, -6.0264917344857666e-08, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886916e-06, -4.8211933875886916e-06, -4.8211933875886112e-07, -1.3680136237282587e-05, -1.2052983468971528e-07, -1.2052983468971733e-05, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.8211933875886101e-07, -3.0132458672429048e-07, -1.8079475203457594e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857653e-08, -9.0397376017288159e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610371098e-07, -4.8211933875886133e-07, -9.0397376017287863e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -9.6423867751772266e-07, -6.0264917344858349e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -1.0245035948625718e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -1.9284773550354445e-06, -1.5066229336214505e-06, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943056e-07, -4.8211933875886133e-07, -6.026491734485837e-07, -6.629140907934307e-07, -2.4105966937943056e-07, -9.6423867751772202e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971528e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.026491734485764e-08, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.4463580162766071e-06, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -1.0847685122074241e-06, -2.4105966937943066e-07, -6.0264917344857666e-08, -1.2052983468971533e-07, -7.8344392548314037e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -5.0622530569680822e-06, -4.8211933875886133e-07, -5.3033127263474473e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -4.8211933875886612e-06, -9.6423867751772245e-07, -4.8814583049335295e-06, -6.0264917344857653e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -5.0622530569680822e-06, -4.8211933875886916e-06, -4.8211933875886569e-06, -4.8211933875886696e-06, -6.0264917344857653e-08, -2.4105966937943051e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -6.026491734485764e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.8211933875886122e-07, -6.0264917344858561e-07, -1.2052983468971606e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -4.8211933875886122e-07, -1.4463580162766079e-06, -1.8079475203457072e-07, -5.3033127263474905e-06, -9.6423867751772245e-07, -4.3390740488297132e-06, -6.0264917344857653e-08, -6.0264917344857666e-08, -1.5066229336214551e-06, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.2185442141400332e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -4.3390740488297115e-06, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.3390740488297115e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -6.0264917344858328e-07, -1.8079475203457599e-07, -4.8211933875886133e-07, -9.0397376017287587e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -3.6158950406915394e-07, -1.8079475203457821e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.5668878509663114e-06, -1.3860930989317247e-06, -6.0264917344857666e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -3.6158950406914647e-07, -1.2052983468971533e-07, -6.0264917344857666e-08, 0.00024545900834560644, -4.8211933875886696e-06, -4.8211933875886569e-06, -9.7629166098670913e-06, -4.8211933875886569e-06, -4.8211933875886612e-06, -2.4105966937943056e-07, -1.2052983468971533e-07, -4.8211933875886101e-07, -5.4238425610370971e-07, -2.4105966937943056e-07, -6.629140907934342e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -9.7629166098670676e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -1.8079475203457594e-07, -6.0264917344857653e-08, -1.2052983468971533e-07, -1.2052983468971533e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -2.4105966937943056e-07, -7.2317900813830438e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, 0.00024443450475074378, -6.0264917344857666e-08, -2.4105966937943035e-07, -1.2052983468971531e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.013245867242918e-07, -2.4105966937943066e-07, -1.2052983468971531e-07, -3.6158950406915187e-07, -5.1225179743129167e-06, -6.0264917344857666e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857666e-08, -2.7721861978634384e-06, -6.0264917344858095e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -4.8211933875886112e-07, -9.6423867751772266e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.850132962487167e-05, -4.8211933875886133e-07, -1.2052983468971648e-05, -4.8211933875886133e-07, -1.2052983468971531e-07, -3.6158950406914785e-06, -7.2317900813830396e-07, -3.0132458672429132e-07, -3.6158950406915196e-06, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.7629166098670676e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.3800666071972342e-05, -1.8079475203457583e-07, -1.2052983468971658e-05, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971531e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670913e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.6271527683111758e-06, -5.7854320651064266e-06, -4.8211933875886133e-07, -4.2788091314848533e-06, -7.2317900813828247e-07, -7.2317900813828247e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344858603e-07, -4.8211933875886122e-07, -6.0264917344858455e-07, -1.2655632642420197e-06, -4.8211933875886133e-07, -3.0132458672429259e-07, -1.3860930989317184e-06, -4.8211933875886133e-07, -7.2317900813830396e-07, -1.8079475203457824e-07, -3.0132458672429132e-07, -1.2052983468971528e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -4.8211933875886112e-07, -7.2317900813830375e-07, -3.6158950406915457e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -4.8211933875886112e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -1.4463580162766071e-06, -4.8211933875886133e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610371352e-07, -2.0490071897251558e-06, -1.2052983468971531e-07, -4.8211933875886112e-07, -4.8211933875886133e-07, -5.4238425610371352e-07, -1.5668878509663125e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886112e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857653e-08, -6.026491734485764e-08, -6.0264917344857653e-08, -1.2052983468971533e-07, -1.0245035948625656e-06, -1.8079475203457418e-06, -7.2317900813830396e-07, -3.6158950406915394e-07, -6.0264917344857666e-08, -2.4105966937943066e-07, -9.6423867751772245e-07, -1.4463580162766073e-06, -4.8211933875886112e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -7.2317900813830396e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -1.2052983468971533e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -5.4238425610371246e-07, -3.0132458672429048e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -4.33907404882972e-06, -2.4105966937943061e-07, -6.0264917344857666e-08, -3.6158950406914751e-06, -4.8211933875886133e-07, -2.8927160325532582e-06, -2.892716032553215e-06, -3.0132458672429005e-06, -2.8927160325532582e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.2185442141400256e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -3.6761599580363473e-06, -1.2052983468971531e-07, -4.3390740488297115e-06, -4.3390740488297115e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.3390740488297132e-06, -4.3390740488297047e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.8079475203457594e-07, -9.6423867751772266e-07, -3.8569547100709411e-05, -3.8569547100709343e-05, -3.856954710070933e-05, -3.8569547100709418e-05, -1.928477355035454e-05, -1.928477355035454e-05, -3.8569547100709072e-05, -3.8569547100709079e-05, -4.821193387588662e-06, -4.8211933875886586e-06, -0.000969059870905318, -0.00096423867751772873, -2.4105966937943258e-05, -4.821193387588662e-06, -1.4463580162765787e-05, -4.8211933875886767e-05, -0.00038569547100708948, -9.6423867751773172e-06, -0.00044354979165815424, -4.8211933875886307e-06, -7.7139094201418741e-05, -7.7139094201418768e-05, -3.8569547100709086e-05, -3.8569547100709066e-05, -0.00038569547100708953, -0.00038569547100708959, -3.8569547100709391e-05, -0.0010944108989826102, -9.6423867751773562e-06, -0.00096423867751772613, -7.7139094201418714e-05, -3.8569547100709337e-05, -3.8569547100709404e-05, -4.8211933875886281e-06, -4.8211933875886629e-06, -3.8569547100709282e-05, -3.8569547100709262e-05, -9.6423867751773562e-06, -9.6423867751773579e-06, -4.821193387588629e-06, -4.8211933875886485e-06, -3.8569547100709032e-05, -2.4105966937943163e-05, -1.446358016276598e-05, -1.9284773550354536e-05, -1.9284773550354543e-05, -4.821193387588662e-06, -7.2317900813831777e-05, -3.8569547100709208e-05, -3.8569547100709201e-05, -4.3390740488297737e-05, -3.8569547100709079e-05, -7.2317900813831357e-05, -9.6423867751773257e-06, -4.821193387588673e-06, -3.8569547100709072e-05, -3.8569547100709066e-05, -4.8211933875886637e-06, -4.8211933875886552e-06, -3.8569547100709194e-05, -3.8569547100709215e-05, -9.6423867751773918e-06, -4.8211933875886442e-06, -3.8569547100709127e-05, -7.7139094201418592e-05, -4.8211933875886679e-05, -3.8569547100709255e-05, -7.7139094201418457e-05, -4.8211933875886645e-06, -3.8569547100709174e-05, -8.1960287589006748e-05, -3.8569547100709276e-05, -3.8569547100709181e-05, -7.7139094201418633e-05, -0.00015427818840283816, -0.00012052983468971598, -3.8569547100709052e-05, -7.7139094201418633e-05, -7.713909420141866e-05, -1.9284773550354716e-05, -3.8569547100709174e-05, -4.8211933875886632e-05, -5.3033127263474775e-05, -1.9284773550354716e-05, -7.7139094201419134e-05, -3.8569547100709221e-05, -3.8569547100709269e-05, -3.8569547100709262e-05, -9.6423867751773867e-06, -3.8569547100709364e-05, -3.8569547100709052e-05, -4.8211933875886781e-06, -3.8569547100709059e-05, -9.6423867751773274e-06, -3.8569547100709371e-05, -3.8569547100709269e-05, -3.8569547100709249e-05, -4.8211933875886645e-06, -7.7139094201418687e-05, -7.713909420141866e-05, -4.8211933875886561e-06, -3.8569547100709228e-05, -3.8569547100709235e-05, -4.8211933875886595e-06, -3.8569547100709404e-05, -3.8569547100709425e-05, -3.8569547100709188e-05, -3.8569547100709418e-05, -0.00011570864130212635, -3.8569547100709384e-05, -3.856954710070914e-05, -3.8569547100709167e-05, -4.8211933875886476e-06, -3.856954710070912e-05, -3.856954710070916e-05, -7.7139094201418443e-05, -1.9284773550354543e-05, -8.6781480976595189e-05, -1.9284773550354536e-05, -4.8211933875886739e-06, -9.6423867751773037e-06, -6.267551403865209e-05, -3.8569547100709249e-05, -7.7139094201418782e-05, -0.00040498024455744503, -3.8569547100709194e-05, -0.00042426501810779841, -3.8569547100709167e-05, -3.8569547100709188e-05, -7.713909420141866e-05, -0.00038569547100708866, -7.7139094201418633e-05, -0.00039051666439467603, -4.8211933875886281e-06, -7.7139094201418606e-05, -7.7139094201418687e-05, -1.9284773550354689e-05, -0.00040498024455744503, -0.00038569547100708948, -0.00038569547100709094, 0.019255846390029051, -4.8211933875886629e-06, -1.9284773550354506e-05, -4.8211933875886417e-06, -4.8211933875886696e-06, -4.8211933875886772e-06, -3.8569547100709276e-05, -3.8569547100709269e-05, -3.8569547100709262e-05, -3.8569547100709255e-05, -4.8211933875886417e-06, -4.8211933875886442e-06, -4.8211933875886408e-06, -3.8569547100709337e-05, -4.8211933875886842e-05, -9.6423867751773413e-05, -7.7139094201418917e-05, -7.7139094201418457e-05, -3.8569547100709343e-05, -0.00011570864130212764, -1.4463580162766031e-05, -0.00042426501810780107, -7.7139094201418484e-05, -0.00034712592390637859, -4.8211933875886612e-06, -4.821193387588651e-06, -0.00012052983468971601, -7.7139094201418443e-05, -3.8569547100709208e-05, -3.3748353713120015e-05, -1.9284773550354502e-05, -9.642386775177324e-06, -0.00034712592390637864, -9.6423867751773257e-06, -1.928477355035454e-05, -1.928477355035454e-05, -0.00034712592390637864, -3.8569547100709093e-05, -4.8211933875886485e-06, -3.8569547100709181e-05, -4.8211933875886408e-06, -3.8569547100709201e-05, -4.821193387588672e-05, -1.446358016276606e-05, -3.8569547100709188e-05, -7.2317900813830192e-05, -4.821193387588629e-06, -3.85695471007091e-05, -9.6423867751773562e-06, -9.6423867751773579e-06, -9.6423867751773443e-06, -4.8211933875886552e-06, -2.8927160325531906e-05, -1.4463580162766011e-05, -3.856954710070933e-05, -3.856954710070931e-05, -7.7139094201418538e-05, -0.00012535102807730451, -0.00011088744791453719, -4.821193387588629e-06, -7.7139094201418768e-05, -3.856954710070933e-05, -2.8927160325531947e-05, -9.6423867751772783e-06, -4.8211933875886442e-06, -4.8211933875886696e-06, 0.019255846390029051, -0.00038569547100709094, -0.0007810333287893666, -0.00038569547100708921, -0.00038569547100708866, -1.9284773550354716e-05, -9.6423867751772986e-06, -3.8569547100709282e-05, -4.3390740488297764e-05, -1.9284773550354716e-05, -5.3033127263475025e-05, -4.821193387588662e-06, -4.8211933875886307e-06, -7.7139094201418402e-05, -3.85695471007091e-05, -3.8569547100709133e-05, -4.8211933875886518e-06, -4.821193387588662e-06, -1.9284773550354638e-05, -1.9284773550354634e-05, -7.7139094201418755e-05, -3.8569547100709316e-05, -4.8211933875886366e-06, -0.00078103332878935868, -3.8569547100709316e-05, -3.8569547100709323e-05, -4.8211933875886561e-06, -1.9284773550354634e-05, -1.9284773550354638e-05, -9.6423867751772613e-06, -9.6423867751772596e-06, -1.4463580162765892e-05, -4.8211933875886629e-06, -9.6423867751772596e-06, -9.6423867751772613e-06, -4.8211933875886451e-06, -4.8211933875886637e-06, -1.928477355035455e-05, -5.7854320651063758e-05, -3.8569547100709106e-05, -4.8211933875886408e-06, -4.8211933875886307e-06, -8.6781480976595135e-05, -4.8211933875886544e-06, -1.9284773550354689e-05, -9.6423867751773511e-06, -7.713909420141824e-05, -7.7139094201418213e-05, -2.410596693794338e-05, -1.9284773550354614e-05, -9.642386775177385e-06, -2.8927160325531923e-05, -0.00040980143794503343, -4.8211933875886493e-06, -1.9284773550354618e-05, -1.9284773550354611e-05, -7.7139094201418185e-05, -7.7139094201418267e-05, -1.9284773550354614e-05, -1.9284773550354573e-05, -1.9284773550354573e-05, -4.8211933875886408e-06, -0.0002217748958290766, -4.821193387588632e-05, -4.8211933875886654e-06, -3.8569547100709323e-05, -3.8569547100709445e-05, -3.8569547100709316e-05, -7.7139094201418267e-05, -3.8569547100709005e-05, -7.7139094201418185e-05, -3.8569547100709445e-05, -3.8569547100709445e-05, -0.0014801063699897167, -3.8569547100709337e-05, -0.00096423867751772559, -3.856954710070912e-05, -9.6423867751773274e-06, -0.00028927160325532088, -5.785432065106369e-05, -2.4105966937943323e-05, -0.00028927160325532153, -4.8211933875886324e-06, -3.8569547100709262e-05, -3.8569547100709269e-05, -0.00078103332878935868, -3.8569547100709106e-05, -3.8569547100709113e-05, -0.001104053285757784, -1.4463580162766009e-05, -0.00096423867751772559, -3.8569547100709235e-05, -3.8569547100709228e-05, -4.8211933875886459e-06, -3.8569547100709276e-05, -3.8569547100709255e-05, -4.8211933875886383e-06, -7.7139094201418213e-05, -7.713909420141824e-05, -9.6423867751773443e-06, -1.9284773550354638e-05, -1.9284773550354634e-05, -3.856954710070933e-05, -3.8569547100709323e-05, -0.0007810333287893666, -3.856954710070931e-05, -3.856954710070933e-05, -0.0001301722214648928, -0.00046283456520850854, -3.8569547100709221e-05, -0.00034230473051879057, -5.7854320651064063e-05, -5.7854320651064056e-05, -3.856954710070935e-05, -3.8569547100709425e-05, -4.8211933875886856e-05, -3.8569547100709404e-05, -4.8211933875886774e-05, -0.00010124506113936137, -3.8569547100709133e-05, -2.4105966937943411e-05, -0.00011088744791453838, -3.85695471007091e-05, -5.7854320651063717e-05, -1.4463580162766016e-05, -2.4105966937943326e-05, -9.6423867751773477e-06, -4.8211933875886629e-06, -4.8211933875886485e-06, -3.8569547100709404e-05, -5.7854320651064029e-05, -2.8927160325531943e-05, -1.9284773550354557e-05, -3.8569547100709337e-05, -3.8569547100709391e-05, -3.8569547100709445e-05, -7.7139094201418118e-05, -3.8569547100709086e-05, -1.9284773550354611e-05, -7.7139094201418036e-05, -3.8569547100709045e-05, -1.9284773550354618e-05, -3.8569547100709445e-05, -4.8211933875886324e-06, -3.8569547100709066e-05, -3.8569547100709072e-05, -7.713909420141866e-05, -0.00011570864130212788, -3.8569547100709194e-05, -7.7139094201418714e-05, -7.7139094201418782e-05, -3.8569547100709079e-05, -3.8569547100709072e-05, -3.85695471007091e-05, -3.856954710070912e-05, -4.3390740488297371e-05, -0.0001639205751780135, -9.6423867751774155e-06, -3.8569547100709384e-05, -3.8569547100709052e-05, -4.3390740488297385e-05, -0.0001253510280773044, -3.8569547100709343e-05, -3.8569547100709181e-05, -3.8569547100709411e-05, -1.9284773550354614e-05, -1.9284773550354614e-05, -4.8211933875886603e-06, -4.8211933875886772e-06, -4.8211933875886645e-06, -9.6423867751773105e-06, -8.1960287589006721e-05, -0.00014463580162766046, -5.7854320651063656e-05, -2.8927160325531906e-05, -4.8211933875886468e-06, -1.9284773550354601e-05, -7.7139094201418484e-05, -0.00011570864130212747, -3.8569547100709391e-05, -1.9284773550354604e-05, -7.7139094201418429e-05, -7.7139094201418457e-05, -1.9284773550354604e-05, -5.7854320651063622e-05, -3.8569547100709106e-05, -4.821193387588673e-06, -9.6423867751773969e-06, -1.9284773550354601e-05, -1.9284773550354614e-05, -4.33907404882975e-05, -2.4105966937943374e-05, -3.8569547100709289e-05, -7.7139094201418592e-05, -0.00034712592390637946, -1.9284773550354689e-05, -4.8211933875886425e-06, -0.00028927160325532088, -3.8569547100709167e-05, -0.00023141728260425644, -0.00023141728260425636, -0.00024105966937943202, -0.00023141728260425644, -1.9284773550354689e-05, -1.9284773550354692e-05, -3.8569547100709167e-05, -3.8569547100709188e-05, -1.9284773550354584e-05, -1.9284773550354584e-05, -3.8569547100709371e-05, -4.8211933875886713e-06, -3.8569547100709364e-05, -4.8211933875886468e-06, -4.8211933875886595e-06, -0.00033748353713120298, -1.9284773550354584e-05, -1.9284773550354584e-05, -0.00029409279664290895, -9.6423867751773376e-06, -0.00034712592390637864, -0.00034712592390637864, -3.8569547100709174e-05, -4.8211933875886425e-06, -3.8569547100709154e-05, -0.00034712592390637859, -0.00034712592390638211, -3.8569547100709133e-05, -3.8569547100709154e-05, -9.6423867751772766e-06, -9.642386775177324e-06, -7.7139094201418063e-05, -3.8569547100709147e-05, -3.856954710070914e-05, -1.4463580162765858e-05, -7.7139094201418063e-05, -3.856954710070931e-05, -3.8569547100709242e-05, -3.8569547100709228e-05, -3.8569547100709323e-05, -1.9284773550354492e-05, -1.9284773550354492e-05, -3.8569547100708971e-05, -3.8569547100708978e-05, -4.8211933875886298e-06, -4.8211933875886468e-06, -0.00096905987090531876, -0.00096423867751772928, -2.4105966937943092e-05, -4.8211933875886298e-06, -1.4463580162765697e-05, -4.8211933875886435e-05, -0.00038569547100708688, -9.6423867751772935e-06, -0.00044354979165815695, -4.821193387588618e-06, -7.7139094201418213e-05, -7.713909420141824e-05, -3.8569547100708984e-05, -3.8569547100708964e-05, -0.00038569547100708693, -0.00038569547100708698, -3.8569547100709296e-05, -0.0010944108989826211, -9.6423867751773308e-06, -0.00096423867751772667, -7.7139094201418185e-05, -3.8569547100709242e-05, -3.856954710070931e-05, -4.8211933875886163e-06, -4.8211933875886501e-06, -3.8569547100709188e-05, -3.856954710070916e-05, -9.6423867751773308e-06, -9.6423867751773342e-06, -4.8211933875886163e-06, -4.8211933875886366e-06, -3.856954710070893e-05, -2.4105966937943072e-05, -1.4463580162765892e-05, -1.9284773550354485e-05, -1.9284773550354492e-05, -4.8211933875886298e-06, -7.2317900813830815e-05, -3.8569547100708944e-05, -3.8569547100708944e-05, -4.3390740488297771e-05, -3.8569547100708978e-05, -7.2317900813830382e-05, -9.6423867751772596e-06, -4.8211933875886603e-06, -3.8569547100708971e-05, -3.8569547100708964e-05, -4.821193387588651e-06, -4.821193387588623e-06, -3.856954710070893e-05, -3.8569547100708957e-05, -9.6423867751773681e-06, -4.8211933875886315e-06, -3.8569547100709025e-05, -7.7139094201418402e-05, -4.8211933875886354e-05, -3.8569547100709154e-05, -7.7139094201418253e-05, -4.8211933875886518e-06, -3.8569547100709072e-05, -8.1960287589006775e-05, -3.8569547100709011e-05, -3.8569547100709079e-05, -7.7139094201418429e-05, -0.00015427818840283778, -0.00012052983468971605, -3.856954710070895e-05, -7.7139094201418429e-05, -7.7139094201418457e-05, -1.9284773550354665e-05, -3.8569547100709079e-05, -4.8211933875886293e-05, -5.3033127263474748e-05, -1.9284773550354665e-05, -7.7139094201418944e-05, -3.856954710070912e-05, -3.8569547100709011e-05, -3.8569547100708998e-05, -9.6423867751773613e-06, -3.8569547100709269e-05, -3.856954710070895e-05, -4.8211933875886451e-06, -3.8569547100708957e-05, -9.642386775177302e-06, -3.8569547100709269e-05, -3.8569547100709167e-05, -3.8569547100709147e-05, -4.8211933875886518e-06, -7.7139094201418484e-05, -7.7139094201418457e-05, -4.8211933875886434e-06, -3.8569547100709133e-05, -3.8569547100709133e-05, -4.8211933875886468e-06, -3.856954710070931e-05, -3.8569547100709323e-05, -3.8569547100709093e-05, -3.8569547100709323e-05, -0.00011570864130212565, -3.8569547100709282e-05, -3.8569547100709039e-05, -3.8569547100709066e-05, -4.8211933875886349e-06, -3.8569547100709018e-05, -3.8569547100709059e-05, -7.713909420141824e-05, -1.9284773550354492e-05, -8.6781480976595257e-05, -1.9284773550354485e-05, -4.821193387588662e-06, -9.64238677517728e-06, -6.2675514038652022e-05, -3.8569547100709147e-05, -7.7139094201418267e-05, -0.00040498024455744525, -3.856954710070893e-05, -0.0004242650181077982, -3.8569547100709066e-05, -3.8569547100709093e-05, -7.7139094201418457e-05, -0.00038569547100709034, -7.7139094201418429e-05, -0.00039051666439467679, -4.8211933875886163e-06, -7.7139094201418402e-05, -7.7139094201418484e-05, -1.9284773550354641e-05, -0.00040498024455744525, -0.00038569547100708688, 0.01925584639002903, -0.00038569547100709094, -4.8211933875886501e-06, -1.9284773550354458e-05, -4.8211933875886298e-06, -4.8211933875886569e-06, -4.8211933875886654e-06, -3.8569547100709174e-05, -3.8569547100709174e-05, -3.856954710070916e-05, -3.8569547100709154e-05, -4.8211933875886298e-06, -4.8211933875886315e-06, -4.8211933875886281e-06, -3.8569547100709235e-05, -4.8211933875886517e-05, -9.6423867751772762e-05, -7.7139094201418714e-05, -7.7139094201418253e-05, -3.8569547100709242e-05, -0.00011570864130212692, -1.4463580162765939e-05, -0.00042426501810780085, -7.713909420141828e-05, -0.00034712592390637891, -4.8211933875886485e-06, -4.8211933875886383e-06, -0.00012052983468971583, -7.713909420141824e-05, -3.8569547100708944e-05, -3.3748353713120347e-05, -1.9284773550354455e-05, -9.6423867751772986e-06, -0.00034712592390637891, -9.6423867751772596e-06, -1.9284773550354492e-05, -1.9284773550354492e-05, -0.00034712592390637891, -3.8569547100708998e-05, -4.8211933875886366e-06, -3.8569547100709079e-05, -4.8211933875886281e-06, -3.85695471007091e-05, -4.8211933875886395e-05, -1.4463580162765972e-05, -3.8569547100709086e-05, -7.2317900813829243e-05, -4.8211933875886163e-06, -3.8569547100708998e-05, -9.6423867751773308e-06, -9.6423867751773342e-06, -9.6423867751773206e-06, -4.8211933875886434e-06, -2.892716032553173e-05, -1.4463580162765906e-05, -3.8569547100709228e-05, -3.8569547100709208e-05, -7.7139094201418348e-05, -0.00012535102807730437, -0.00011088744791453785, -4.8211933875886163e-06, -7.7139094201418565e-05, -3.8569547100709228e-05, -2.892716032553177e-05, -9.6423867751772529e-06, -4.8211933875886315e-06, -4.8211933875886569e-06, -0.00038569547100709094, 0.01925584639002903, -0.00078103332878936508, -0.00038569547100709018, -0.00038569547100709034, -1.9284773550354665e-05, -9.6423867751772732e-06, -3.8569547100709181e-05, -4.3390740488297798e-05, -1.9284773550354665e-05, -5.3033127263474992e-05, -4.8211933875886493e-06, -4.821193387588618e-06, -7.7139094201418199e-05, -3.8569547100708998e-05, -3.8569547100709039e-05, -4.82119338758864e-06, -4.8211933875886298e-06, -1.9284773550354587e-05, -1.9284773550354587e-05, -7.7139094201418565e-05, -3.8569547100709215e-05, -4.8211933875886247e-06, -0.00078103332878935706, -3.8569547100709215e-05, -3.8569547100709221e-05, -4.8211933875886434e-06, -1.9284773550354587e-05, -1.9284773550354587e-05, -9.6423867751772359e-06, -9.6423867751772342e-06, -1.4463580162765868e-05, -4.8211933875886298e-06, -9.6423867751772342e-06, -9.6423867751772359e-06, -4.8211933875886324e-06, -4.821193387588651e-06, -1.9284773550354499e-05, -5.7854320651063405e-05, -3.8569547100709005e-05, -4.8211933875886281e-06, -4.821193387588618e-06, -8.6781480976595203e-05, -4.8211933875886213e-06, -1.9284773550354641e-05, -9.6423867751773274e-06, -7.7139094201418036e-05, -7.7139094201418009e-05, -2.4105966937943218e-05, -1.9284773550354563e-05, -9.6423867751773206e-06, -2.8927160325531838e-05, -0.00040980143794503392, -4.8211933875886366e-06, -1.9284773550354567e-05, -1.928477355035456e-05, -7.7139094201417982e-05, -7.7139094201418063e-05, -1.9284773550354563e-05, -1.9284773550354523e-05, -1.9284773550354523e-05, -4.8211933875886281e-06, -0.0002217748958290779, -4.8211933875885995e-05, -4.8211933875886527e-06, -3.8569547100709221e-05, -3.8569547100709188e-05, -3.8569547100709215e-05, -7.7139094201418063e-05, -3.8569547100708903e-05, -7.7139094201417982e-05, -3.8569547100709188e-05, -3.8569547100709188e-05, -0.0014801063699897011, -3.8569547100709242e-05, -0.00096423867751772602, -3.8569547100709018e-05, -9.642386775177263e-06, -0.00028927160325531708, -5.7854320651063338e-05, -2.4105966937943153e-05, -0.00028927160325531773, -4.8211933875886197e-06, -3.8569547100708998e-05, -3.8569547100709011e-05, -0.00078103332878935706, -3.8569547100709005e-05, -3.8569547100709011e-05, -0.0011040532857577938, -1.4463580162765919e-05, -0.00096423867751772602, -3.8569547100709133e-05, -3.8569547100709133e-05, -4.8211933875886332e-06, -3.8569547100709011e-05, -3.8569547100708998e-05, -4.8211933875886264e-06, -7.7139094201418009e-05, -7.7139094201418036e-05, -9.6423867751773206e-06, -1.9284773550354587e-05, -1.9284773550354587e-05, -3.8569547100709228e-05, -3.8569547100709228e-05, -0.00078103332878936508, -3.8569547100709208e-05, -3.8569547100709228e-05, -0.0001301722214648935, -0.000462834565208506, -3.856954710070912e-05, -0.00034230473051879176, -5.7854320651063703e-05, -5.785432065106369e-05, -3.8569547100709249e-05, -3.8569547100709323e-05, -4.8211933875886523e-05, -3.856954710070931e-05, -4.8211933875886449e-05, -0.00010124506113936142, -3.8569547100709032e-05, -2.4105966937943245e-05, -0.0001108874479145388, -3.8569547100708998e-05, -5.7854320651063365e-05, -1.4463580162765926e-05, -2.410596693794316e-05, -9.642386775177324e-06, -4.8211933875886501e-06, -4.8211933875886366e-06, -3.856954710070931e-05, -5.7854320651063663e-05, -2.8927160325531764e-05, -1.9284773550354506e-05, -3.8569547100709242e-05, -3.8569547100709296e-05, -3.8569547100709188e-05, -7.7139094201417914e-05, -3.8569547100708984e-05, -1.928477355035456e-05, -7.7139094201417833e-05, -3.8569547100708944e-05, -1.9284773550354567e-05, -3.8569547100709188e-05, -4.8211933875886197e-06, -3.8569547100708964e-05, -3.8569547100708971e-05, -7.7139094201418457e-05, -0.00011570864130212716, -3.8569547100709093e-05, -7.7139094201418185e-05, -7.7139094201418267e-05, -3.8569547100708978e-05, -3.8569547100708971e-05, -3.8569547100708998e-05, -3.8569547100709018e-05, -4.3390740488297405e-05, -0.00016392057517801352, -9.6423867751773511e-06, -3.8569547100709282e-05, -3.8569547100708957e-05, -4.3390740488297418e-05, -0.00012535102807730459, -3.8569547100709242e-05, -3.8569547100709079e-05, -3.856954710070931e-05, -1.9284773550354563e-05, -1.9284773550354563e-05, -4.8211933875886485e-06, -4.8211933875886654e-06, -4.8211933875886518e-06, -9.6423867751772867e-06, -8.1960287589006721e-05, -0.00014463580162765854, -5.7854320651063297e-05, -2.892716032553173e-05, -4.8211933875886349e-06, -1.928477355035455e-05, -7.713909420141828e-05, -0.00011570864130212676, -3.8569547100709289e-05, -1.9284773550354553e-05, -7.7139094201418226e-05, -7.7139094201418253e-05, -1.9284773550354553e-05, -5.785432065106327e-05, -3.8569547100709005e-05, -4.8211933875886603e-06, -9.6423867751773714e-06, -1.928477355035455e-05, -1.9284773550354563e-05, -4.3390740488297547e-05, -2.4105966937943211e-05, -3.8569547100709188e-05, -7.7139094201418402e-05, -0.00034712592390637978, -1.9284773550354641e-05, -4.8211933875886298e-06, -0.00028927160325531708, -3.8569547100709066e-05, -0.000231417282604255, -0.00023141728260425492, -0.00024105966937943216, -0.000231417282604255, -1.9284773550354641e-05, -1.9284773550354641e-05, -3.8569547100709066e-05, -3.8569547100709093e-05, -1.9284773550354533e-05, -1.9284773550354533e-05, -3.8569547100709269e-05, -4.8211933875886586e-06, -3.8569547100709269e-05, -4.8211933875886341e-06, -4.8211933875886468e-06, -0.00033748353713120379, -1.9284773550354533e-05, -1.9284773550354533e-05, -0.00029409279664290548, -9.6423867751773121e-06, -0.00034712592390637891, -0.00034712592390637891, -3.8569547100709072e-05, -4.8211933875886298e-06, -3.8569547100709052e-05, -0.00034712592390637891, -0.00034712592390638244, -3.8569547100709039e-05, -3.8569547100709052e-05, -9.6423867751772512e-06, -9.6423867751772986e-06, -7.713909420141786e-05, -3.8569547100709052e-05, -3.8569547100709039e-05, -1.446358016276577e-05, -7.713909420141786e-05, -7.8103332878936839e-05, -7.810333287893673e-05, -7.8103332878936703e-05, -7.8103332878936839e-05, -3.9051666439468141e-05, -3.9051666439468141e-05, -7.8103332878936283e-05, -7.8103332878936283e-05, -9.762916609867076e-06, -9.7629166098670726e-06, -0.0019623462385832541, -0.0019525833219733925, -4.8814583049335284e-05, -9.762916609867076e-06, -2.9288749829600444e-05, -9.7629166098670919e-05, -0.00078103332878936887, -1.9525833219734145e-05, -0.00089818832810776498, -9.7629166098670286e-06, -0.00015620666575787346, -0.00015620666575787351, -7.8103332878936283e-05, -7.8103332878936256e-05, -0.00078103332878936887, -0.00078103332878936887, -7.8103332878936784e-05, -0.0022161820704397935, -1.952583321973421e-05, -0.0019525833219733912, -0.00015620666575787341, -7.810333287893673e-05, -7.8103332878936811e-05, -9.7629166098670252e-06, -9.762916609867076e-06, -7.8103332878936608e-05, -7.8103332878936554e-05, -1.952583321973421e-05, -1.952583321973421e-05, -9.7629166098670252e-06, -9.7629166098670557e-06, -7.8103332878936134e-05, -4.8814583049335494e-05, -2.9288749829600928e-05, -3.9051666439468141e-05, -3.9051666439468141e-05, -9.762916609867076e-06, -0.00014644374914800622, -7.81033328789365e-05, -7.8103332878936473e-05, -8.7866249488803411e-05, -7.810333287893631e-05, -0.00014644374914800549, -1.9525833219734152e-05, -9.762916609867098e-06, -7.8103332878936283e-05, -7.8103332878936283e-05, -9.7629166098670811e-06, -9.7629166098670659e-06, -7.8103332878936473e-05, -7.81033328789365e-05, -1.952583321973426e-05, -9.7629166098670489e-06, -7.8103332878936364e-05, -0.00015620666575787316, -9.7629166098670743e-05, -7.8103332878936554e-05, -0.00015620666575787295, -9.7629166098670811e-06, -7.8103332878936446e-05, -0.00016596958236773839, -7.8103332878936581e-05, -7.8103332878936446e-05, -0.00015620666575787335, -0.00031241333151574768, -0.00024407291524667445, -7.8103332878936256e-05, -0.00015620666575787335, -0.00015620666575787335, -3.9051666439468419e-05, -7.8103332878936446e-05, -9.7629166098670757e-05, -0.0001073920827085353, -3.9051666439468419e-05, -0.000156206665757874, -7.8103332878936527e-05, -7.8103332878936581e-05, -7.8103332878936554e-05, -1.9525833219734254e-05, -7.8103332878936757e-05, -7.8103332878936256e-05, -9.7629166098671014e-06, -7.8103332878936256e-05, -1.9525833219734162e-05, -7.8103332878936757e-05, -7.8103332878936581e-05, -7.8103332878936554e-05, -9.7629166098670811e-06, -0.00015620666575787341, -0.00015620666575787335, -9.7629166098670692e-06, -7.8103332878936527e-05, -7.8103332878936554e-05, -9.7629166098670726e-06, -7.8103332878936811e-05, -7.8103332878936839e-05, -7.8103332878936473e-05, -7.8103332878936839e-05, -0.00023430999863680377, -7.8103332878936784e-05, -7.8103332878936391e-05, -7.8103332878936418e-05, -9.7629166098670523e-06, -7.8103332878936364e-05, -7.8103332878936418e-05, -0.000156206665757873, -3.9051666439468141e-05, -0.0001757324989776062, -3.9051666439468141e-05, -9.762916609867098e-06, -1.9525833219734118e-05, -0.00012691791592826877, -7.8103332878936554e-05, -0.00015620666575787346, -0.0008200849952288247, -7.8103332878936473e-05, -0.00085913666166828238, -7.8103332878936418e-05, -7.8103332878936473e-05, -0.00015620666575787335, -0.00078103332878936605, -0.00015620666575787335, -0.00079079624539923042, -9.7629166098670252e-06, -0.0001562066657578733, -0.00015620666575787341, -3.9051666439468379e-05, -0.0008200849952288247, -0.00078103332878936887, -0.00078103332878936508, -0.0007810333287893666, -9.7629166098670811e-06, -3.9051666439467843e-05, -9.7629166098670455e-06, -9.7629166098670913e-06, -9.7629166098671048e-06, -7.8103332878936581e-05, -7.8103332878936581e-05, -7.8103332878936581e-05, -7.8103332878936554e-05, -9.7629166098670455e-06, -9.7629166098670489e-06, -9.7629166098670455e-06, -7.8103332878936703e-05, -9.7629166098671082e-05, -0.00019525833219734157, -0.00015620666575787368, -0.000156206665757873, -7.8103332878936703e-05, -0.0002343099986368071, -2.9288749829601077e-05, -0.00085913666166829094, -0.00015620666575787305, -0.00070292999591042773, -9.762916609867076e-06, -9.7629166098670591e-06, -0.00024407291524667434, -0.000156206665757873, -7.81033328789365e-05, -6.8340416269068273e-05, -3.9051666439468006e-05, -1.9525833219734152e-05, -0.00070292999591042935, -1.9525833219734152e-05, -3.9051666439468141e-05, -3.9051666439468141e-05, -0.0007029299959104313, -7.8103332878936337e-05, -9.7629166098670557e-06, -7.8103332878936446e-05, -9.7629166098670455e-06, -7.8103332878936473e-05, -9.7629166098670757e-05, -2.9288749829601108e-05, -7.8103332878936446e-05, -0.00014644374914800397, -9.7629166098670252e-06, -7.8103332878936337e-05, -1.952583321973421e-05, -1.952583321973421e-05, -1.9525833219734189e-05, -9.7629166098670659e-06, -5.8577499659201924e-05, -2.9288749829601037e-05, -7.8103332878936839e-05, -7.8103332878936784e-05, -0.00015620666575787316, -0.00025383583185653846, -0.00022454708202693829, -9.7629166098670252e-06, -0.00015620666575787351, -7.8103332878936676e-05, -5.8577499659201978e-05, -1.9525833219734078e-05, -9.7629166098670489e-06, -9.7629166098670913e-06, -0.0007810333287893666, -0.00078103332878936508, 0.038192529777799439, -0.00078103332878936508, -0.00078103332878936605, -3.9051666439468419e-05, -1.9525833219734118e-05, -7.8103332878936418e-05, -8.7866249488803452e-05, -3.9051666439468419e-05, -0.00010739208270853596, -9.7629166098670947e-06, -9.7629166098670286e-06, -0.00015620666575787289, -7.8103332878936337e-05, -7.8103332878936391e-05, -9.7629166098670591e-06, -9.762916609867076e-06, -3.9051666439468291e-05, -3.9051666439468291e-05, -0.00015620666575787346, -7.8103332878936676e-05, -9.7629166098670388e-06, -0.0015815924907984457, -7.8103332878936811e-05, -7.8103332878936811e-05, -9.7629166098670692e-06, -3.9051666439468291e-05, -3.9051666439468291e-05, -1.952583321973405e-05, -1.952583321973405e-05, -2.9288749829600783e-05, -9.7629166098670811e-06, -1.952583321973405e-05, -1.952583321973405e-05, -9.7629166098670489e-06, -9.7629166098670811e-06, -3.9051666439468379e-05, -0.00011715499931840374, -7.8103332878936337e-05, -9.7629166098670421e-06, -9.7629166098670286e-06, -0.00017573249897760753, -9.7629166098670659e-06, -3.9051666439468223e-05, -1.9525833219734196e-05, -0.00015620666575787267, -0.00015620666575787262, -4.8814583049335426e-05, -3.905166643946825e-05, -1.952583321973425e-05, -5.8577499659201884e-05, -0.00082984791183868874, -9.7629166098670557e-06, -3.905166643946825e-05, -3.905166643946825e-05, -0.00015620666575787257, -0.00015620666575787273, -3.905166643946825e-05, -3.9051666439468196e-05, -3.9051666439468196e-05, -9.7629166098670455e-06, -0.00044909416405388211, -9.7629166098670852e-05, -9.7629166098670811e-06, -7.8103332878936811e-05, -7.8103332878936866e-05, -7.8103332878936811e-05, -0.00015620666575787273, -7.8103332878935985e-05, -0.00015620666575787257, -7.8103332878936866e-05, -7.8103332878936866e-05, -0.0029972153992291655, -7.8103332878936703e-05, -0.0019525833219733921, -7.8103332878936364e-05, -1.9525833219734162e-05, -0.00058577499659201329, -0.00011715499931840341, -4.8814583049335338e-05, -0.00058577499659201655, -9.762916609867032e-06, -7.8103332878936554e-05, -7.8103332878936581e-05, -0.0015815924907984457, -7.8103332878936337e-05, -7.8103332878936337e-05, -0.0022357079036595261, -2.9288749829600955e-05, -0.0019525833219733917, -7.8103332878936554e-05, -7.8103332878936527e-05, -9.7629166098670523e-06, -7.8103332878936581e-05, -7.8103332878936554e-05, -9.7629166098670388e-06, -0.00015620666575787262, -0.00015620666575787267, -1.9525833219734189e-05, -3.9051666439468291e-05, -3.9051666439468291e-05, -7.8103332878936676e-05, -7.8103332878936676e-05, 0.038192529777799439, -7.8103332878936784e-05, -7.8103332878936839e-05, -0.00026359874846640824, -0.00093723999454722331, -7.8103332878936527e-05, -0.00069316707930054959, -0.0001171549993184039, -0.0001171549993184039, -7.810333287893673e-05, -7.8103332878936839e-05, -9.7629166098671069e-05, -7.8103332878936811e-05, -9.7629166098670933e-05, -0.00020502124880720604, -7.8103332878936391e-05, -4.8814583049335487e-05, -0.00022454708202694138, -7.810333287893631e-05, -0.0001171549993184035, -2.9288749829601043e-05, -4.8814583049335351e-05, -1.9525833219734196e-05, -9.7629166098670811e-06, -9.7629166098670557e-06, -7.8103332878936811e-05, -0.00011715499931840401, -5.8577499659201965e-05, -3.9051666439468169e-05, -7.8103332878936703e-05, -7.8103332878936784e-05, -7.8103332878936866e-05, -0.00015620666575787205, -7.8103332878936283e-05, -3.905166643946825e-05, -0.00015620666575787219, -7.8103332878936256e-05, -3.905166643946825e-05, -7.8103332878936866e-05, -9.762916609867032e-06, -7.8103332878936283e-05, -7.8103332878936283e-05, -0.00015620666575787335, -0.00023430999863680753, -7.8103332878936473e-05, -0.00015620666575787341, -0.00015620666575787357, -7.8103332878936283e-05, -7.8103332878936283e-05, -7.810333287893631e-05, -7.8103332878936364e-05, -8.7866249488802653e-05, -0.00033193916473547592, -1.9525833219734298e-05, -7.8103332878936784e-05, -7.8103332878936256e-05, -8.7866249488802761e-05, -0.00025383583185653824, -7.810333287893673e-05, -7.8103332878936446e-05, -7.8103332878936839e-05, -3.905166643946825e-05, -3.905166643946825e-05, -9.762916609867076e-06, -9.7629166098671048e-06, -9.7629166098670811e-06, -1.9525833219734132e-05, -0.00016596958236773847, -0.00029288749829600665, -0.0001171549993184035, -5.8577499659201924e-05, -9.7629166098670557e-06, -3.9051666439468236e-05, -0.00015620666575787305, -0.0002343099986368065, -7.8103332878936784e-05, -3.9051666439468236e-05, -0.00015620666575787295, -0.000156206665757873, -3.9051666439468236e-05, -0.00011715499931840323, -7.8103332878936337e-05, -9.7629166098670947e-06, -1.9525833219734267e-05, -3.9051666439468236e-05, -3.905166643946825e-05, -8.7866249488802896e-05, -4.8814583049335419e-05, -7.8103332878936649e-05, -0.00015620666575787316, -0.00070292999591043163, -3.9051666439468379e-05, -9.7629166098670455e-06, -0.00058577499659201329, -7.8103332878936418e-05, -0.0004686199972736168, -0.0004686199972736168, -0.00048814583049334889, -0.0004686199972736168, -3.9051666439468379e-05, -3.9051666439468379e-05, -7.8103332878936446e-05, -7.8103332878936473e-05, -3.9051666439468209e-05, -3.9051666439468209e-05, -7.8103332878936757e-05, -9.7629166098670947e-06, -7.8103332878936757e-05, -9.7629166098670523e-06, -9.7629166098670726e-06, -0.00068340416269068393, -3.9051666439468209e-05, -3.9051666439468209e-05, -0.00059553791320188492, -1.9525833219734216e-05, -0.0007029299959104313, -0.00070292999591042935, -7.8103332878936446e-05, -9.7629166098670455e-06, -7.8103332878936418e-05, -0.00070292999591042773, -0.00070292999591042805, -7.8103332878936391e-05, -7.8103332878936418e-05, -1.9525833219734078e-05, -1.9525833219734152e-05, -0.0001562066657578724, -7.8103332878936418e-05, -7.8103332878936391e-05, -2.9288749829600688e-05, -0.0001562066657578724, -3.856954710070931e-05, -3.8569547100709242e-05, -3.8569547100709228e-05, -3.8569547100709323e-05, -1.9284773550354492e-05, -1.9284773550354492e-05, -3.8569547100708971e-05, -3.8569547100708978e-05, -4.8211933875886383e-06, -4.8211933875886468e-06, -0.00096905987090531876, -0.00096423867751772928, -2.4105966937943092e-05, -4.8211933875886383e-06, -1.4463580162765697e-05, -4.8211933875886435e-05, -0.00038569547100708688, -9.6423867751772935e-06, -0.00044354979165815695, -4.821193387588618e-06, -7.7139094201418348e-05, -7.7139094201418375e-05, -3.8569547100708984e-05, -3.8569547100708964e-05, -0.00038569547100708688, -0.00038569547100708693, -3.8569547100709296e-05, -0.00109441089898262, -9.6423867751773308e-06, -0.00096423867751772667, -7.7139094201418321e-05, -3.8569547100709242e-05, -3.856954710070931e-05, -4.8211933875886163e-06, -4.8211933875886501e-06, -3.8569547100709188e-05, -3.856954710070916e-05, -9.6423867751773308e-06, -9.6423867751773342e-06, -4.8211933875886163e-06, -4.8211933875886366e-06, -3.856954710070893e-05, -2.4105966937943011e-05, -1.4463580162765892e-05, -1.9284773550354485e-05, -1.9284773550354492e-05, -4.8211933875886383e-06, -7.2317900813830815e-05, -3.8569547100709011e-05, -3.8569547100709011e-05, -4.3390740488297771e-05, -3.8569547100708978e-05, -7.2317900813830382e-05, -9.6423867751772766e-06, -4.8211933875886603e-06, -3.8569547100708971e-05, -3.8569547100708964e-05, -4.821193387588651e-06, -4.8211933875886315e-06, -3.8569547100708998e-05, -3.8569547100709025e-05, -9.6423867751773681e-06, -4.8211933875886315e-06, -3.8569547100709025e-05, -7.7139094201418402e-05, -4.8211933875886354e-05, -3.8569547100709154e-05, -7.7139094201418253e-05, -4.8211933875886518e-06, -3.8569547100709072e-05, -8.1960287589006775e-05, -3.8569547100709079e-05, -3.8569547100709079e-05, -7.7139094201418429e-05, -0.00015427818840283778, -0.00012052983468971604, -3.856954710070895e-05, -7.7139094201418429e-05, -7.7139094201418457e-05, -1.9284773550354665e-05, -3.8569547100709079e-05, -4.8211933875886293e-05, -5.3033127263474748e-05, -1.9284773550354665e-05, -7.7139094201418944e-05, -3.856954710070912e-05, -3.8569547100709079e-05, -3.8569547100709066e-05, -9.6423867751773613e-06, -3.8569547100709269e-05, -3.856954710070895e-05, -4.8211933875886535e-06, -3.8569547100708957e-05, -9.642386775177302e-06, -3.8569547100709269e-05, -3.8569547100709167e-05, -3.8569547100709147e-05, -4.8211933875886518e-06, -7.7139094201418484e-05, -7.7139094201418457e-05, -4.8211933875886434e-06, -3.8569547100709133e-05, -3.8569547100709133e-05, -4.8211933875886468e-06, -3.856954710070931e-05, -3.8569547100709323e-05, -3.8569547100709093e-05, -3.8569547100709323e-05, -0.00011570864130212563, -3.8569547100709282e-05, -3.8569547100709039e-05, -3.8569547100709066e-05, -4.8211933875886349e-06, -3.8569547100709018e-05, -3.8569547100709059e-05, -7.713909420141824e-05, -1.9284773550354492e-05, -8.6781480976595257e-05, -1.9284773550354485e-05, -4.821193387588662e-06, -9.64238677517728e-06, -6.2675514038652022e-05, -3.8569547100709147e-05, -7.7139094201418402e-05, -0.00040498024455744525, -3.8569547100708998e-05, -0.0004242650181077982, -3.8569547100709066e-05, -3.8569547100709093e-05, -7.7139094201418457e-05, -0.00038569547100708942, -7.7139094201418429e-05, 0.019251025196641465, -4.8211933875886163e-06, -7.7139094201418402e-05, -7.7139094201418484e-05, -1.9284773550354641e-05, -0.00040498024455744525, -0.00038569547100708688, -0.00038569547100709018, -0.00038569547100708921, -4.8211933875886501e-06, -1.9284773550354458e-05, -4.8211933875886298e-06, -4.8211933875886569e-06, -4.8211933875886654e-06, -3.8569547100709174e-05, -3.8569547100709174e-05, -3.856954710070916e-05, -3.8569547100709154e-05, -4.8211933875886298e-06, -4.8211933875886315e-06, -4.8211933875886281e-06, -3.8569547100709235e-05, -4.821193387588651e-05, -9.6423867751772749e-05, -7.7139094201418714e-05, -7.7139094201418253e-05, -3.8569547100709242e-05, -0.00011570864130212693, -1.4463580162765941e-05, -0.00042426501810780091, -7.713909420141828e-05, -0.00034712592390637891, -4.8211933875886485e-06, -4.8211933875886383e-06, -0.00012052983468971593, -7.713909420141824e-05, -3.8569547100709011e-05, -3.3748353713120272e-05, -1.9284773550354455e-05, -9.6423867751772986e-06, -0.00034712592390637891, -9.6423867751772766e-06, -1.9284773550354492e-05, -1.9284773550354492e-05, -0.00034712592390637891, -3.8569547100708998e-05, -4.8211933875886366e-06, -3.8569547100709079e-05, -4.8211933875886281e-06, -3.85695471007091e-05, -4.8211933875886388e-05, -1.4463580162765973e-05, -3.8569547100709086e-05, -7.2317900813829243e-05, -4.8211933875886163e-06, -3.8569547100708998e-05, -9.6423867751773308e-06, -9.6423867751773342e-06, -9.6423867751773206e-06, -4.8211933875886434e-06, -2.8927160325531726e-05, -1.4463580162765897e-05, -3.8569547100709228e-05, -3.8569547100709208e-05, -7.7139094201418348e-05, -0.00012535102807730437, -0.00011088744791453787, -4.8211933875886163e-06, -7.7139094201418565e-05, -3.8569547100709228e-05, -2.8927160325531767e-05, -9.6423867751772529e-06, -4.8211933875886315e-06, -4.8211933875886569e-06, -0.00038569547100708921, -0.00038569547100709018, -0.00078103332878936508, 0.01925584639002903, -0.00038569547100708942, -1.9284773550354665e-05, -9.6423867751772732e-06, -3.8569547100709181e-05, -4.3390740488297798e-05, -1.9284773550354665e-05, -5.3033127263474992e-05, -4.8211933875886493e-06, -4.821193387588618e-06, -7.7139094201418199e-05, -3.8569547100708998e-05, -3.8569547100709039e-05, -4.82119338758864e-06, -4.8211933875886383e-06, -1.9284773550354587e-05, -1.9284773550354587e-05, -7.7139094201418565e-05, -3.8569547100709215e-05, -4.8211933875886247e-06, -0.00078103332878935706, -3.8569547100709215e-05, -3.8569547100709221e-05, -4.8211933875886434e-06, -1.9284773550354587e-05, -1.9284773550354587e-05, -9.6423867751772359e-06, -9.6423867751772342e-06, -1.4463580162765826e-05, -4.8211933875886383e-06, -9.6423867751772342e-06, -9.6423867751772359e-06, -4.8211933875886324e-06, -4.821193387588651e-06, -1.9284773550354499e-05, -5.7854320651063399e-05, -3.8569547100709005e-05, -4.8211933875886281e-06, -4.821193387588618e-06, -8.6781480976595203e-05, -4.8211933875886298e-06, -1.9284773550354641e-05, -9.6423867751773274e-06, -7.7139094201418036e-05, -7.7139094201418009e-05, -2.4105966937943218e-05, -1.9284773550354563e-05, -9.6423867751773376e-06, -2.892716032553177e-05, -0.00040980143794503392, -4.8211933875886366e-06, -1.9284773550354567e-05, -1.928477355035456e-05, -7.7139094201417982e-05, -7.7139094201418063e-05, -1.9284773550354563e-05, -1.9284773550354523e-05, -1.9284773550354523e-05, -4.8211933875886281e-06, -0.0002217748958290779, -4.8211933875885995e-05, -4.8211933875886527e-06, -3.8569547100709221e-05, -3.8569547100709255e-05, -3.8569547100709215e-05, -7.7139094201418063e-05, -3.8569547100708903e-05, -7.7139094201417982e-05, -3.8569547100709255e-05, -3.8569547100709255e-05, -0.0014801063699897011, -3.8569547100709242e-05, -0.00096423867751772613, -3.8569547100709018e-05, -9.64238677517728e-06, -0.00028927160325531708, -5.7854320651063331e-05, -2.4105966937943153e-05, -0.00028927160325531773, -4.8211933875886197e-06, -3.8569547100709066e-05, -3.8569547100709079e-05, -0.00078103332878935706, -3.8569547100709005e-05, -3.8569547100709011e-05, -0.0011040532857577946, -1.4463580162765917e-05, -0.00096423867751772613, -3.8569547100709133e-05, -3.8569547100709133e-05, -4.8211933875886332e-06, -3.8569547100709079e-05, -3.8569547100709066e-05, -4.8211933875886264e-06, -7.7139094201418009e-05, -7.7139094201418036e-05, -9.6423867751773206e-06, -1.9284773550354587e-05, -1.9284773550354587e-05, -3.8569547100709228e-05, -3.8569547100709228e-05, -0.00078103332878936508, -3.8569547100709208e-05, -3.8569547100709228e-05, -0.00013017222146489348, -0.00046283456520850562, -3.856954710070912e-05, -0.00034230473051879176, -5.7854320651063697e-05, -5.7854320651063697e-05, -3.8569547100709249e-05, -3.8569547100709323e-05, -4.8211933875886523e-05, -3.856954710070931e-05, -4.8211933875886442e-05, -0.00010124506113936142, -3.8569547100709032e-05, -2.4105966937943245e-05, -0.00011088744791453903, -3.8569547100708998e-05, -5.7854320651063358e-05, -1.4463580162765924e-05, -2.4105966937943157e-05, -9.642386775177324e-06, -4.8211933875886501e-06, -4.8211933875886366e-06, -3.856954710070931e-05, -5.785432065106367e-05, -2.8927160325531767e-05, -1.9284773550354506e-05, -3.8569547100709242e-05, -3.8569547100709296e-05, -3.8569547100709255e-05, -7.7139094201417914e-05, -3.8569547100708984e-05, -1.928477355035456e-05, -7.7139094201417833e-05, -3.8569547100708944e-05, -1.9284773550354567e-05, -3.8569547100709255e-05, -4.8211933875886197e-06, -3.8569547100708964e-05, -3.8569547100708971e-05, -7.7139094201418457e-05, -0.00011570864130212718, -3.8569547100709093e-05, -7.7139094201418321e-05, -7.7139094201418402e-05, -3.8569547100708978e-05, -3.8569547100708971e-05, -3.8569547100708998e-05, -3.8569547100709018e-05, -4.3390740488297405e-05, -0.00016392057517801355, -9.6423867751773681e-06, -3.8569547100709282e-05, -3.8569547100708957e-05, -4.3390740488297418e-05, -0.00012535102807730453, -3.8569547100709242e-05, -3.8569547100709079e-05, -3.856954710070931e-05, -1.9284773550354563e-05, -1.9284773550354563e-05, -4.8211933875886485e-06, -4.8211933875886654e-06, -4.8211933875886518e-06, -9.6423867751772867e-06, -8.1960287589006735e-05, -0.00014463580162765854, -5.7854320651063304e-05, -2.8927160325531726e-05, -4.8211933875886349e-06, -1.928477355035455e-05, -7.713909420141828e-05, -0.00011570864130212677, -3.8569547100709289e-05, -1.9284773550354553e-05, -7.7139094201418226e-05, -7.7139094201418253e-05, -1.9284773550354553e-05, -5.7854320651063263e-05, -3.8569547100709005e-05, -4.8211933875886603e-06, -9.6423867751773714e-06, -1.928477355035455e-05, -1.9284773550354563e-05, -4.3390740488297547e-05, -2.4105966937943208e-05, -3.8569547100709188e-05, -7.7139094201418402e-05, -0.00034712592390637978, -1.9284773550354641e-05, -4.8211933875886298e-06, -0.00028927160325531708, -3.8569547100709066e-05, -0.000231417282604255, -0.0002314172826042549, -0.00024105966937943216, -0.000231417282604255, -1.9284773550354641e-05, -1.9284773550354641e-05, -3.8569547100709066e-05, -3.8569547100709093e-05, -1.9284773550354533e-05, -1.9284773550354533e-05, -3.8569547100709269e-05, -4.8211933875886586e-06, -3.8569547100709269e-05, -4.8211933875886341e-06, -4.8211933875886468e-06, -0.00033748353713120379, -1.9284773550354533e-05, -1.9284773550354533e-05, -0.00029409279664290548, -9.6423867751773121e-06, -0.00034712592390637891, -0.00034712592390637891, -3.8569547100709072e-05, -4.8211933875886298e-06, -3.8569547100709052e-05, -0.00034712592390637891, -0.00034712592390638244, -3.8569547100709039e-05, -3.8569547100709052e-05, -9.6423867751772512e-06, -9.6423867751772986e-06, -7.713909420141786e-05, -3.8569547100709052e-05, -3.8569547100709039e-05, -1.4463580162765768e-05, -7.713909420141786e-05, -3.8569547100709343e-05, -3.8569547100709276e-05, -3.8569547100709262e-05, -3.856954710070935e-05, -1.9284773550354506e-05, -1.9284773550354506e-05, -3.8569547100708998e-05, -3.8569547100709011e-05, -4.8211933875886501e-06, -4.8211933875886501e-06, -0.00096905987090531898, -0.00096423867751772971, -2.4105966937943235e-05, -4.8211933875886501e-06, -1.4463580162765745e-05, -4.8211933875886713e-05, -0.0003856954710070891, -9.6423867751773003e-06, -0.00044354979165815527, -4.8211933875886213e-06, -7.7139094201418565e-05, -7.7139094201418592e-05, -3.8569547100709011e-05, -3.8569547100708998e-05, -0.00038569547100708915, -0.00038569547100708915, -3.8569547100709323e-05, -0.0010944108989826206, -9.6423867751773393e-06, -0.00096423867751772711, -7.7139094201418538e-05, -3.8569547100709269e-05, -3.8569547100709337e-05, -4.8211933875886188e-06, -4.8211933875886544e-06, -3.8569547100709215e-05, -3.8569547100709194e-05, -9.6423867751773393e-06, -9.6423867751773409e-06, -4.8211933875886205e-06, -4.82119338758864e-06, -3.8569547100708964e-05, -2.4105966937943133e-05, -1.4463580162765939e-05, -1.9284773550354502e-05, -1.9284773550354509e-05, -4.8211933875886501e-06, -7.2317900813830829e-05, -3.856954710070912e-05, -3.8569547100709106e-05, -4.3390740488297764e-05, -3.8569547100709011e-05, -7.2317900813830409e-05, -9.6423867751773037e-06, -4.8211933875886645e-06, -3.8569547100708998e-05, -3.8569547100708998e-05, -4.8211933875886552e-06, -4.8211933875886434e-06, -3.8569547100709106e-05, -3.856954710070912e-05, -9.6423867751773748e-06, -4.8211933875886357e-06, -3.8569547100709052e-05, -7.7139094201418457e-05, -4.8211933875886632e-05, -3.8569547100709188e-05, -7.7139094201418321e-05, -4.8211933875886552e-06, -3.8569547100709106e-05, -8.1960287589006843e-05, -3.8569547100709188e-05, -3.8569547100709113e-05, -7.7139094201418497e-05, -0.00015427818840283789, -0.00012052983468971611, -3.8569547100708984e-05, -7.7139094201418497e-05, -7.7139094201418524e-05, -1.9284773550354682e-05, -3.8569547100709106e-05, -4.8211933875886578e-05, -5.303312726347468e-05, -1.9284773550354682e-05, -7.7139094201418999e-05, -3.8569547100709154e-05, -3.8569547100709174e-05, -3.8569547100709174e-05, -9.6423867751773697e-06, -3.8569547100709296e-05, -3.8569547100708984e-05, -4.8211933875886671e-06, -3.8569547100708984e-05, -9.6423867751773105e-06, -3.8569547100709303e-05, -3.8569547100709201e-05, -3.8569547100709174e-05, -4.8211933875886561e-06, -7.7139094201418551e-05, -7.7139094201418524e-05, -4.8211933875886476e-06, -3.856954710070916e-05, -3.8569547100709167e-05, -4.8211933875886501e-06, -3.8569547100709337e-05, -3.8569547100709357e-05, -3.856954710070912e-05, -3.856954710070935e-05, -0.00011570864130212601, -3.856954710070931e-05, -3.8569547100709066e-05, -3.8569547100709093e-05, -4.8211933875886383e-06, -3.8569547100709052e-05, -3.8569547100709093e-05, -7.7139094201418307e-05, -1.9284773550354509e-05, -8.678148097659523e-05, -1.9284773550354502e-05, -4.8211933875886654e-06, -9.6423867751772867e-06, -6.2675514038652009e-05, -3.8569547100709174e-05, -7.7139094201418592e-05, -0.00040498024455744546, -3.8569547100709106e-05, -0.00042426501810779766, -3.85695471007091e-05, -3.856954710070912e-05, -7.7139094201418524e-05, 0.019255846390029058, -7.7139094201418497e-05, -0.00039051666439467473, -4.8211933875886188e-06, -7.713909420141847e-05, -7.7139094201418551e-05, -1.9284773550354655e-05, -0.00040498024455744546, -0.0003856954710070891, -0.00038569547100709034, -0.00038569547100708866, -4.8211933875886535e-06, -1.9284773550354472e-05, -4.8211933875886332e-06, -4.8211933875886612e-06, -4.8211933875886688e-06, -3.8569547100709208e-05, -3.8569547100709201e-05, -3.8569547100709188e-05, -3.8569547100709188e-05, -4.8211933875886332e-06, -4.8211933875886357e-06, -4.8211933875886315e-06, -3.8569547100709269e-05, -4.8211933875886788e-05, -9.6423867751773304e-05, -7.7139094201418782e-05, -7.7139094201418321e-05, -3.8569547100709269e-05, -0.0001157086413021273, -1.4463580162765987e-05, -0.00042426501810780031, -7.7139094201418348e-05, -0.00034712592390637881, -4.8211933875886518e-06, -4.8211933875886425e-06, -0.00012052983468971616, -7.7139094201418307e-05, -3.856954710070912e-05, -3.3748353713120354e-05, -1.9284773550354472e-05, -9.6423867751773071e-06, -0.00034712592390637881, -9.6423867751773037e-06, -1.9284773550354506e-05, -1.9284773550354506e-05, -0.00034712592390637886, -3.8569547100709025e-05, -4.82119338758864e-06, -3.8569547100709106e-05, -4.8211933875886315e-06, -3.8569547100709133e-05, -4.8211933875886666e-05, -1.4463580162766019e-05, -3.856954710070912e-05, -7.231790081382927e-05, -4.8211933875886205e-06, -3.8569547100709032e-05, -9.6423867751773393e-06, -9.6423867751773409e-06, -9.6423867751773274e-06, -4.8211933875886468e-06, -2.8927160325531821e-05, -1.4463580162765958e-05, -3.8569547100709255e-05, -3.8569547100709242e-05, -7.7139094201418402e-05, -0.00012535102807730434, -0.00011088744791453745, -4.8211933875886205e-06, -7.7139094201418633e-05, -3.8569547100709262e-05, -2.8927160325531862e-05, -9.6423867751772613e-06, -4.8211933875886357e-06, -4.8211933875886612e-06, -0.00038569547100708866, -0.00038569547100709034, -0.00078103332878936605, -0.00038569547100708942, 0.019255846390029058, -1.9284773550354682e-05, -9.6423867751772817e-06, -3.8569547100709215e-05, -4.3390740488297791e-05, -1.9284773550354682e-05, -5.3033127263474924e-05, -4.8211933875886535e-06, -4.8211933875886213e-06, -7.7139094201418267e-05, -3.8569547100709025e-05, -3.8569547100709066e-05, -4.8211933875886434e-06, -4.8211933875886501e-06, -1.9284773550354604e-05, -1.9284773550354601e-05, -7.7139094201418619e-05, -3.8569547100709249e-05, -4.8211933875886281e-06, -0.00078103332878935814, -3.8569547100709242e-05, -3.8569547100709255e-05, -4.8211933875886476e-06, -1.9284773550354601e-05, -1.9284773550354604e-05, -9.6423867751772427e-06, -9.6423867751772427e-06, -1.4463580162765851e-05, -4.8211933875886518e-06, -9.6423867751772427e-06, -9.6423867751772427e-06, -4.8211933875886366e-06, -4.8211933875886552e-06, -1.9284773550354512e-05, -5.7854320651063588e-05, -3.8569547100709039e-05, -4.8211933875886324e-06, -4.8211933875886213e-06, -8.6781480976595176e-05, -4.8211933875886434e-06, -1.9284773550354655e-05, -9.6423867751773342e-06, -7.7139094201418104e-05, -7.7139094201418077e-05, -2.4105966937943357e-05, -1.928477355035458e-05, -9.642386775177363e-06, -2.8927160325531838e-05, -0.0004098014379450337, -4.8211933875886408e-06, -1.928477355035458e-05, -1.9284773550354573e-05, -7.713909420141805e-05, -7.7139094201418131e-05, -1.928477355035458e-05, -1.928477355035454e-05, -1.928477355035454e-05, -4.8211933875886324e-06, -0.00022177489582907712, -4.8211933875886266e-05, -4.8211933875886569e-06, -3.8569547100709255e-05, -3.856954710070935e-05, -3.8569547100709242e-05, -7.7139094201418131e-05, -3.8569547100708937e-05, -7.713909420141805e-05, -3.856954710070935e-05, -3.856954710070935e-05, -0.0014801063699897115, -3.8569547100709269e-05, -0.00096423867751772667, -3.8569547100709052e-05, -9.6423867751773037e-06, -0.00028927160325531719, -5.7854320651063521e-05, -2.4105966937943296e-05, -0.00028927160325531784, -4.8211933875886239e-06, -3.8569547100709174e-05, -3.8569547100709174e-05, -0.00078103332878935814, -3.8569547100709039e-05, -3.8569547100709039e-05, -0.0011040532857577942, -1.4463580162765965e-05, -0.00096423867751772667, -3.8569547100709167e-05, -3.856954710070916e-05, -4.8211933875886366e-06, -3.8569547100709188e-05, -3.856954710070916e-05, -4.8211933875886298e-06, -7.7139094201418077e-05, -7.7139094201418104e-05, -9.6423867751773274e-06, -1.9284773550354604e-05, -1.9284773550354601e-05, -3.8569547100709262e-05, -3.8569547100709255e-05, -0.00078103332878936605, -3.8569547100709242e-05, -3.8569547100709255e-05, -0.00013017222146489315, -0.00046283456520850719, -3.8569547100709154e-05, -0.00034230473051879171, -5.7854320651063886e-05, -5.785432065106388e-05, -3.8569547100709282e-05, -3.8569547100709357e-05, -4.8211933875886801e-05, -3.8569547100709337e-05, -4.821193387588672e-05, -0.00010124506113936146, -3.8569547100709066e-05, -2.4105966937943384e-05, -0.00011088744791453865, -3.8569547100709025e-05, -5.7854320651063548e-05, -1.4463580162765972e-05, -2.4105966937943299e-05, -9.6423867751773308e-06, -4.8211933875886535e-06, -4.82119338758864e-06, -3.8569547100709337e-05, -5.7854320651063853e-05, -2.8927160325531859e-05, -1.9284773550354523e-05, -3.8569547100709269e-05, -3.8569547100709323e-05, -3.856954710070935e-05, -7.7139094201417982e-05, -3.8569547100709011e-05, -1.9284773550354573e-05, -7.7139094201417901e-05, -3.8569547100708978e-05, -1.928477355035458e-05, -3.856954710070935e-05, -4.8211933875886239e-06, -3.8569547100708998e-05, -3.8569547100708998e-05, -7.7139094201418524e-05, -0.00011570864130212754, -3.856954710070912e-05, -7.7139094201418538e-05, -7.7139094201418592e-05, -3.8569547100709011e-05, -3.8569547100708998e-05, -3.8569547100709025e-05, -3.8569547100709052e-05, -4.3390740488297391e-05, -0.00016392057517801366, -9.6423867751773918e-06, -3.856954710070931e-05, -3.8569547100708984e-05, -4.3390740488297405e-05, -0.00012535102807730437, -3.8569547100709276e-05, -3.8569547100709106e-05, -3.8569547100709343e-05, -1.928477355035458e-05, -1.928477355035458e-05, -4.8211933875886518e-06, -4.8211933875886688e-06, -4.8211933875886552e-06, -9.6423867751772935e-06, -8.1960287589006775e-05, -0.00014463580162765859, -5.7854320651063487e-05, -2.8927160325531821e-05, -4.8211933875886383e-06, -1.9284773550354567e-05, -7.7139094201418348e-05, -0.00011570864130212714, -3.8569547100709323e-05, -1.9284773550354567e-05, -7.7139094201418294e-05, -7.7139094201418321e-05, -1.9284773550354567e-05, -5.7854320651063453e-05, -3.8569547100709039e-05, -4.8211933875886645e-06, -9.6423867751773782e-06, -1.9284773550354567e-05, -1.928477355035458e-05, -4.3390740488297534e-05, -2.4105966937943346e-05, -3.8569547100709221e-05, -7.7139094201418457e-05, -0.00034712592390637967, -1.9284773550354655e-05, -4.8211933875886341e-06, -0.00028927160325531719, -3.8569547100709093e-05, -0.00023141728260425576, -0.00023141728260425565, -0.00024105966937943226, -0.00023141728260425576, -1.9284773550354655e-05, -1.9284773550354658e-05, -3.85695471007091e-05, -3.856954710070912e-05, -1.9284773550354546e-05, -1.9284773550354546e-05, -3.8569547100709303e-05, -4.8211933875886629e-06, -3.8569547100709296e-05, -4.8211933875886383e-06, -4.8211933875886501e-06, -0.00033748353713120304, -1.9284773550354546e-05, -1.9284773550354546e-05, -0.00029409279664290516, -9.6423867751773206e-06, -0.00034712592390637886, -0.00034712592390637881, -3.8569547100709106e-05, -4.8211933875886332e-06, -3.8569547100709079e-05, -0.00034712592390637881, -0.00034712592390638233, -3.8569547100709066e-05, -3.8569547100709086e-05, -9.6423867751772596e-06, -9.6423867751773071e-06, -7.7139094201417928e-05, -3.8569547100709079e-05, -3.8569547100709072e-05, -1.4463580162765816e-05, -7.7139094201417928e-05, -1.928477355035444e-06, -1.928477355035444e-06, -1.9284773550354445e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943056e-07, -2.4105966937943056e-07, -4.8452993545266217e-05, -4.8211933875886388e-05, -1.205298346897164e-06, -2.4105966937943056e-07, -7.2317900813830576e-07, -2.4105966937943433e-06, -1.92847735503548e-05, -4.8211933875886112e-07, -2.2177489582907538e-05, -2.4105966937943061e-07, -3.8569547100708881e-06, -3.8569547100708873e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.92847735503548e-05, -1.92847735503548e-05, -1.928477355035444e-06, -5.4720544949130253e-05, -4.8211933875886101e-07, -4.8211933875887011e-05, -3.8569547100708881e-06, -1.9284773550354445e-06, -1.928477355035444e-06, -2.4105966937943056e-07, -2.4105966937943061e-07, -1.9284773550354445e-06, -1.9284773550354449e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.928477355035444e-06, -1.205298346897164e-06, -7.2317900813830618e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943056e-07, -3.6158950406915331e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.1695370244148456e-06, -1.9284773550354449e-06, -3.6158950406915213e-06, -4.8211933875886101e-07, -2.4105966937943051e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -2.4105966937943056e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886101e-07, -2.4105966937943061e-07, -1.9284773550354449e-06, -3.8569547100708898e-06, -2.4105966937943382e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -2.4105966937943061e-07, -1.9284773550354445e-06, -4.0980143794502795e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -7.7139094201417745e-06, -6.026491734485812e-06, -1.9284773550354445e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -9.6423867751772901e-07, -1.9284773550354449e-06, -2.410596693794339e-06, -2.651656363173733e-06, 0.00098111285437428651, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886122e-07, -1.928477355035444e-06, -1.9284773550354445e-06, -2.4105966937943045e-07, -1.9284773550354445e-06, -4.8211933875886122e-07, -1.928477355035444e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943056e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -2.4105966937943056e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -2.4105966937943056e-07, -1.928477355035444e-06, -1.928477355035444e-06, -1.9284773550354449e-06, -1.928477355035444e-06, -5.7854320651064495e-06, -1.9284773550354487e-06, -1.9284773550354449e-06, -1.9284773550354445e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -4.339074048829681e-06, -9.6423867751772245e-07, -2.4105966937943051e-07, -4.8211933875886122e-07, -3.1337757019326331e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -2.0249012227872336e-05, -1.9284773550354445e-06, -2.1213250905389776e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -1.9284773550354682e-05, -3.8569547100708881e-06, -1.9525833219734145e-05, -2.4105966937943056e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -9.6423867751772202e-07, -2.0249012227872329e-05, -1.92847735503548e-05, -1.9284773550354665e-05, -1.9284773550354716e-05, -2.4105966937943061e-07, -9.6423867751772202e-07, -2.4105966937943061e-07, -2.4105966937943051e-07, -2.4105966937943051e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.410596693794328e-06, -4.8211933875886815e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354449e-06, -5.7854320651064512e-06, -7.2317900813831677e-07, -2.1213250905389945e-05, -3.8569547100708889e-06, -1.7356296195318792e-05, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.0264917344858341e-06, -3.8569547100708898e-06, -1.9284773550354445e-06, -1.6874176856560444e-06, -9.6423867751772202e-07, -4.8211933875886101e-07, -1.7356296195318785e-05, -4.8211933875886101e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.7356296195318785e-05, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.410596693794328e-06, -7.2317900813830618e-07, -1.9284773550354449e-06, -3.6158950406915103e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -1.4463580162766204e-06, -7.2317900813831518e-07, -1.928477355035444e-06, -1.928477355035444e-06, -3.8569547100708889e-06, -6.2675514038652492e-06, -5.5443723957268853e-06, -2.4105966937943061e-07, -3.8569547100708889e-06, -1.9284773550354445e-06, -1.4463580162766234e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943056e-07, -1.9284773550354716e-05, -1.9284773550354665e-05, -3.9051666439468419e-05, -1.9284773550354665e-05, -1.9284773550354682e-05, 0.00098111285437428651, -4.8211933875886112e-07, -1.928477355035444e-06, -2.169537024414832e-06, -9.6423867751772901e-07, -2.6516563631737334e-06, -2.4105966937943056e-07, -2.4105966937943061e-07, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -2.4105966937943056e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -3.8569547100708881e-06, -1.9284773550354445e-06, -2.4105966937943061e-07, -3.9051666439468331e-05, -1.928477355035444e-06, -1.928477355035444e-06, -2.4105966937943056e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.2317900813830618e-07, -2.4105966937943051e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -9.6423867751772224e-07, -2.8927160325532264e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.3390740488296912e-06, -2.4105966937943056e-07, -9.6423867751772139e-07, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.2052983468971695e-06, -9.6423867751772224e-07, -4.8211933875886112e-07, -1.4463580162766119e-06, -2.0490071897251667e-05, -2.4105966937943061e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -1.1088744791453723e-05, -2.4105966937943285e-06, -2.4105966937943061e-07, -1.928477355035444e-06, -1.9284773550354436e-06, -1.928477355035444e-06, -3.8569547100708889e-06, -1.9284773550354436e-06, -3.8569547100708889e-06, -1.9284773550354436e-06, -1.9284773550354436e-06, -7.400531849948691e-05, -1.9284773550354445e-06, -4.8211933875886686e-05, -1.9284773550354449e-06, -4.8211933875886101e-07, -1.4463580162765948e-05, -2.8927160325532014e-06, -1.2052983468971678e-06, -1.4463580162766112e-05, -2.4105966937943061e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.9051666439468331e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -5.5202664287889206e-05, -7.2317900813830597e-07, -4.8211933875886727e-05, -1.9284773550354445e-06, -1.9284773550354449e-06, -2.4105966937943056e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.4105966937943061e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886101e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.9051666439468419e-05, -1.928477355035444e-06, -1.928477355035444e-06, -6.5086110732447727e-06, -2.3141728260425798e-05, -1.9284773550354449e-06, -1.7115236525939274e-05, -2.892716032553223e-06, -2.892716032553223e-06, -1.9284773550354449e-06, -1.928477355035444e-06, -2.410596693794328e-06, -1.928477355035444e-06, -2.4105966937943424e-06, -5.0622530569680805e-06, -1.9284773550354449e-06, -1.205298346897164e-06, -5.5443723957268582e-06, -1.9284773550354445e-06, -2.892716032553198e-06, -7.2317900813828787e-07, -1.2052983468971678e-06, -4.8211933875886101e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.928477355035444e-06, -2.8927160325532247e-06, -1.446358016276623e-06, -9.6423867751772245e-07, -1.9284773550354445e-06, -1.928477355035444e-06, -1.9284773550354436e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -3.8569547100708881e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -1.9284773550354436e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -5.7854320651064495e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -3.8569547100708873e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.1695370244148473e-06, -8.1960287589006064e-06, -4.8211933875886091e-07, -1.9284773550354487e-06, -1.9284773550354449e-06, -2.1695370244149239e-06, -6.2675514038652559e-06, -1.928477355035444e-06, -1.9284773550354449e-06, -1.928477355035444e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -2.4105966937943056e-07, -2.4105966937943051e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -4.0980143794502549e-06, -7.2317900813829756e-06, -2.8927160325532116e-06, -1.4463580162766204e-06, -2.4105966937943061e-07, -9.6423867751772224e-07, -3.8569547100708889e-06, -5.7854320651064512e-06, -1.928477355035447e-06, -9.6423867751772224e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772224e-07, -2.8927160325532247e-06, -1.9284773550354445e-06, -2.4105966937943051e-07, -4.8211933875886101e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -2.1695370244148431e-06, -1.2052983468971712e-06, -1.9284773550354445e-06, -3.8569547100708898e-06, -1.7356296195318765e-05, -9.6423867751772202e-07, -2.4105966937943061e-07, -1.4463580162765948e-05, -1.9284773550354445e-06, -1.157086413021307e-05, -1.1570864130212899e-05, -1.2052983468971622e-05, -1.157086413021307e-05, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.928477355035444e-06, -2.4105966937943051e-07, -1.928477355035444e-06, -2.4105966937943061e-07, -2.4105966937943056e-07, -1.6874176856560035e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.4704639832145396e-05, -4.8211933875886101e-07, -1.7356296195318785e-05, -1.7356296195318785e-05, -1.9284773550354445e-06, -2.4105966937943056e-07, -1.9284773550354445e-06, -1.7356296195318792e-05, -1.7356296195318758e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.2317900813830481e-07, -3.8569547100708898e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -2.4226496772632797e-05, -2.4105966937942872e-05, -6.0264917344857841e-07, -1.2052983468971531e-07, -3.6158950406914653e-07, -1.2052983468971644e-06, -9.6423867751773426e-06, -2.4105966937943061e-07, -1.108874479145394e-05, -1.2052983468971533e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -9.6423867751773426e-06, -9.6423867751773426e-06, -9.6423867751772245e-07, -2.7360272474565462e-05, -2.4105966937943056e-07, -2.4105966937943194e-05, -1.9284773550354445e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943056e-07, -2.4105966937943056e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -9.6423867751772224e-07, -6.0264917344857841e-07, -3.6158950406914679e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.8079475203457452e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.0847685122074408e-06, -9.6423867751772266e-07, -1.8079475203457393e-06, -2.4105966937943061e-07, -1.2052983468971531e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971531e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943061e-07, -1.2052983468971536e-07, -9.6423867751772266e-07, -1.9284773550354453e-06, -1.2052983468971619e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.2052983468971531e-07, -9.6423867751772266e-07, -2.0490071897251605e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -3.8569547100708889e-06, -3.0132458672428666e-06, -9.6423867751772266e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886112e-07, -9.6423867751772266e-07, -1.2052983468971623e-06, -1.3258281815868644e-06, -4.8211933875886112e-07, -1.928477355035444e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772266e-07, -1.2052983468971528e-07, -9.6423867751772266e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.2052983468971536e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772287e-07, -9.6423867751772245e-07, -2.8927160325531836e-06, -9.6423867751772224e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.169537024414874e-06, -4.8211933875886144e-07, -1.2052983468971531e-07, -2.4105966937943072e-07, -1.5668878509663127e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.0124506113936161e-05, -9.6423867751772266e-07, -1.0606625452694925e-05, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -9.6423867751772817e-06, -1.9284773550354449e-06, -9.7629166098670286e-06, -1.2052983468971531e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -1.0124506113936158e-05, -9.6423867751773426e-06, -9.6423867751772732e-06, -9.6423867751772986e-06, -1.2052983468971531e-07, -4.8211933875886122e-07, -1.2052983468971536e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -9.6423867751772245e-07, -1.2052983468971661e-06, -2.4105966937943263e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.892716032553187e-06, -3.6158950406915198e-07, -1.0606625452695008e-05, -1.9284773550354449e-06, -8.6781480976595772e-06, -1.2052983468971531e-07, -1.2052983468971536e-07, -3.0132458672428895e-06, -1.9284773550354457e-06, -9.6423867751772266e-07, -8.4370884282801469e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -8.6781480976595738e-06, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976595738e-06, -9.6423867751772287e-07, -1.2052983468971536e-07, -9.6423867751772266e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -1.2052983468971615e-06, -3.6158950406914679e-07, -9.6423867751772266e-07, -1.8079475203457337e-06, -1.2052983468971536e-07, -9.6423867751772287e-07, -2.4105966937943056e-07, -2.4105966937943056e-07, -2.4105966937943061e-07, -1.2052983468971536e-07, -7.2317900813829125e-07, -3.6158950406915124e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -3.1337757019326161e-06, -2.772186197863482e-06, -1.2052983468971536e-07, -1.9284773550354453e-06, -9.6423867751772266e-07, -7.2317900813829909e-07, -2.4105966937943072e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -9.6423867751772986e-06, -9.6423867751772732e-06, -1.9525833219734118e-05, -9.6423867751772732e-06, -9.6423867751772817e-06, -4.8211933875886112e-07, 0.00049079748685652272, -9.6423867751772224e-07, -1.0847685122074374e-06, -4.8211933875886112e-07, -1.3258281815868709e-06, -1.2052983468971531e-07, -1.2052983468971533e-07, -1.9284773550354457e-06, -9.6423867751772266e-07, -9.6423867751772287e-07, -1.2052983468971536e-07, -1.2052983468971531e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.9284773550354449e-06, -9.6423867751772266e-07, 0.0002453987434282613, -1.9525833219734074e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971536e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -3.6158950406914679e-07, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -4.8211933875886112e-07, -1.446358016276588e-06, -9.6423867751772266e-07, 0.0002453987434282613, -1.2052983468971533e-07, -2.1695370244148909e-06, -1.2052983468971533e-07, -4.8211933875886069e-07, -2.4105966937943061e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -6.0264917344858106e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -7.2317900813829337e-07, -1.0245035948625833e-05, -1.2052983468971536e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971536e-07, -5.5443723957269471e-06, -1.2052983468971568e-06, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -9.6423867751772224e-07, -1.9284773550354453e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -3.700265924974273e-05, -9.6423867751772266e-07, -2.4105966937943028e-05, -9.6423867751772266e-07, -2.4105966937943061e-07, -7.2317900813829231e-06, -1.4463580162765876e-06, -6.0264917344858032e-07, -7.2317900813829773e-06, -1.2052983468971536e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9525833219734074e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.7601332143944962e-05, -3.6158950406914658e-07, -2.4105966937943048e-05, -9.6423867751772245e-07, -9.6423867751772266e-07, -1.2052983468971533e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971536e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9525833219734118e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.2543055366223063e-06, -1.1570864130212752e-05, -9.6423867751772266e-07, -8.5576182629697981e-06, -1.446358016276591e-06, -1.446358016276591e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.205298346897167e-06, -9.6423867751772245e-07, -1.205298346897164e-06, -2.5311265284840377e-06, -9.6423867751772266e-07, -6.0264917344858264e-07, -2.7721861978634736e-06, -9.6423867751772266e-07, -1.4463580162765876e-06, -3.6158950406915134e-07, -6.026491734485801e-07, -2.4105966937943056e-07, -1.2052983468971531e-07, -1.2052983468971536e-07, -9.6423867751772245e-07, -1.4463580162765969e-06, -7.2317900813829401e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.9284773550354445e-06, -9.6423867751772266e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -9.6423867751772287e-07, -4.8211933875886133e-07, -9.6423867751772224e-07, -1.2052983468971536e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354449e-06, -2.8927160325531735e-06, -9.6423867751772266e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.08476851220744e-06, -4.0980143794503388e-06, -2.4105966937943056e-07, -9.6423867751772224e-07, -9.6423867751772287e-07, -1.0847685122074459e-06, -3.1337757019326212e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971536e-07, -1.2052983468971528e-07, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.0490071897251499e-06, -3.6158950406914582e-06, -1.4463580162765927e-06, -7.2317900813829125e-07, -1.2052983468971536e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -2.8927160325531731e-06, -9.6423867751772224e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -1.4463580162765874e-06, -9.6423867751772266e-07, -1.2052983468971531e-07, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.0847685122074383e-06, -6.0264917344858201e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -8.6781480976595501e-06, -4.8211933875886122e-07, -1.2052983468971536e-07, -7.2317900813829197e-06, -9.6423867751772266e-07, -5.7854320651064334e-06, -5.785432065106347e-06, -6.0264917344857333e-06, -5.7854320651064334e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -8.437088428280102e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -7.3523199160726641e-06, -2.4105966937943061e-07, -8.6781480976595738e-06, -8.6781480976595738e-06, -9.6423867751772266e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -8.6781480976595772e-06, -8.6781480976595603e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -2.4105966937943061e-07, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.6158950406914796e-07, -1.9284773550354457e-06, -3.8569547100708873e-06, -3.8569547100708873e-06, -3.8569547100708881e-06, -3.8569547100708873e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -9.6905987090531106e-05, -9.6423867751771488e-05, -2.4105966937943187e-06, -4.8211933875886101e-07, -1.4463580162765846e-06, -4.8211933875886679e-06, -3.8569547100709452e-05, -9.6423867751772202e-07, -4.435497916581576e-05, -4.8211933875886112e-07, -7.7139094201417745e-06, -7.7139094201417745e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100709452e-05, -3.8569547100709452e-05, -3.8569547100708873e-06, -0.00010944108989826064, -9.6423867751772202e-07, -9.6423867751772776e-05, -7.7139094201417745e-06, -3.8569547100708881e-06, -3.8569547100708873e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -3.8569547100708873e-06, -2.4105966937943238e-06, -1.4463580162765859e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886101e-07, -7.2317900813830426e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.3390740488297598e-06, -3.8569547100708889e-06, -7.2317900813830392e-06, -9.6423867751772202e-07, -4.8211933875886101e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772202e-07, -4.8211933875886112e-07, -3.8569547100708889e-06, -7.7139094201417779e-06, -4.8211933875886578e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -8.1960287589006081e-06, -3.8569547100708881e-06, -3.8569547100708889e-06, -7.7139094201417762e-06, -1.5427818840283552e-05, -1.2052983468971483e-05, -3.8569547100708889e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -1.928477355035444e-06, -3.8569547100708889e-06, -4.8211933875886595e-06, -5.3033127263474897e-06, -1.928477355035444e-06, -7.7139094201417762e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -9.6423867751772202e-07, -3.8569547100708873e-06, -3.8569547100708889e-06, -4.8211933875886091e-07, -3.8569547100708889e-06, -9.6423867751772224e-07, -3.8569547100708873e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886101e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -4.8211933875886101e-07, -3.8569547100708889e-06, -3.8569547100708881e-06, -4.8211933875886101e-07, -3.8569547100708873e-06, -3.8569547100708873e-06, -3.8569547100708889e-06, -3.8569547100708873e-06, -1.1570864130212819e-05, -3.8569547100708881e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -1.9284773550354445e-06, -8.6781480976595704e-06, -1.9284773550354445e-06, -4.8211933875886091e-07, -9.6423867751772224e-07, -6.2675514038652814e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -4.0498024455744657e-05, -3.8569547100708889e-06, -4.2426501810779728e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417762e-06, -3.8569547100709215e-05, -7.7139094201417762e-06, -3.9051666439468101e-05, -4.8211933875886101e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -1.9284773550354436e-06, -4.049802445574463e-05, -3.8569547100709452e-05, -3.8569547100709181e-05, -3.8569547100709282e-05, -4.8211933875886112e-07, -1.928477355035444e-06, -4.8211933875886112e-07, -4.8211933875886091e-07, -4.8211933875886101e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -3.8569547100708889e-06, -4.8211933875886391e-06, -9.6423867751773257e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -3.8569547100708889e-06, -1.1570864130212689e-05, -1.4463580162766066e-06, -4.2426501810780134e-05, -7.7139094201417762e-06, -3.4712592390638417e-05, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.2052983468971504e-05, -7.7139094201417779e-06, -3.8569547100708889e-06, -3.3748353713120291e-06, -1.9284773550354445e-06, -9.6423867751772202e-07, -3.4712592390638404e-05, -9.6423867751772202e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.4712592390638404e-05, -3.8569547100708889e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -4.8211933875886764e-06, -1.4463580162766105e-06, -3.8569547100708889e-06, -7.2317900813829468e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886112e-07, -2.892716032553187e-06, -1.4463580162766037e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -7.7139094201417762e-06, -1.2535102807730529e-05, -1.1088744791453771e-05, -4.8211933875886112e-07, -7.7139094201417762e-06, -3.8569547100708881e-06, -2.8927160325531938e-06, -9.6423867751772202e-07, -4.8211933875886112e-07, -4.8211933875886101e-07, -3.8569547100709282e-05, -3.8569547100709181e-05, -7.8103332878936418e-05, -3.8569547100709181e-05, -3.8569547100709215e-05, -1.928477355035444e-06, -9.6423867751772224e-07, 0.0019602972313935395, -4.3390740488297683e-06, -1.928477355035444e-06, -5.3033127263474922e-06, -4.8211933875886101e-07, -4.8211933875886112e-07, -7.7139094201417779e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886112e-07, -4.8211933875886101e-07, -1.928477355035444e-06, -1.928477355035444e-06, -7.7139094201417762e-06, -3.8569547100708881e-06, -4.8211933875886112e-07, -7.8103332878936256e-05, -3.8569547100708881e-06, -3.8569547100708881e-06, -4.8211933875886101e-07, -1.928477355035444e-06, -1.928477355035444e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.4463580162765859e-06, -4.8211933875886101e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.928477355035444e-06, -5.7854320651063504e-06, -3.8569547100708889e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -8.678148097659584e-06, -4.8211933875886112e-07, -1.928477355035444e-06, -9.6423867751772224e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -2.4105966937943293e-06, -1.9284773550354445e-06, -9.6423867751772181e-07, -2.8927160325531709e-06, -4.0980143794503334e-05, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886112e-07, -2.2177489582907467e-05, -4.8211933875886374e-06, -4.8211933875886112e-07, -3.8569547100708881e-06, -3.8569547100708873e-06, -3.8569547100708881e-06, -7.7139094201417779e-06, -3.8569547100708873e-06, -7.7139094201417779e-06, -3.8569547100708873e-06, -3.8569547100708873e-06, -0.00014801063699897027, -3.8569547100708881e-06, -9.6423867751772085e-05, -3.8569547100708889e-06, -9.6423867751772202e-07, -2.8927160325531964e-05, -5.7854320651063741e-06, -2.4105966937943255e-06, -2.8927160325532204e-05, -4.8211933875886112e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -7.8103332878936256e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00011040532857577923, -1.4463580162766272e-06, -9.6423867751772166e-05, -3.8569547100708881e-06, -3.8569547100708889e-06, -4.8211933875886112e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, 0.00024503715392419233, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772202e-07, -1.928477355035444e-06, -1.928477355035444e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -7.8103332878936418e-05, -3.8569547100708881e-06, -3.8569547100708881e-06, -1.3017222146489212e-05, -4.6283456520851237e-05, -3.8569547100708889e-06, -3.4230473051879362e-05, -5.7854320651063402e-06, -5.7854320651063402e-06, -3.8569547100708889e-06, -3.8569547100708873e-06, -4.8211933875886425e-06, -3.8569547100708873e-06, -4.8211933875886662e-06, -1.0124506113936178e-05, -3.8569547100708889e-06, 0.0012251857696209611, -1.1088744791453737e-05, -3.8569547100708889e-06, -5.7854320651063707e-06, -1.44635801627657e-06, -2.4105966937943255e-06, 0.00049007430784838476, -4.8211933875886112e-07, -4.8211933875886112e-07, -3.8569547100708873e-06, -5.7854320651063419e-06, -2.8927160325531921e-06, -1.9284773550354445e-06, -3.8569547100708881e-06, -3.8569547100708873e-06, -3.8569547100708873e-06, -7.7139094201417745e-06, -3.8569547100708889e-06, -1.9284773550354445e-06, -7.7139094201417745e-06, -3.8569547100708889e-06, -1.9284773550354445e-06, -3.8569547100708873e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417762e-06, -1.1570864130212926e-05, -3.8569547100708889e-06, -7.7139094201417745e-06, -7.7139094201417745e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.3390740488297971e-06, -1.6392057517801308e-05, -9.6423867751772181e-07, -3.8569547100708881e-06, -3.8569547100708889e-06, -4.3390740488297132e-06, -1.2535102807730541e-05, -3.8569547100708873e-06, -3.8569547100708889e-06, -3.8569547100708873e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -4.8211933875886112e-07, -9.6423867751772224e-07, -8.1960287589005183e-06, -1.4463580162766085e-05, -5.7854320651063521e-06, -2.892716032553187e-06, -4.8211933875886112e-07, -1.9284773550354445e-06, -7.7139094201417762e-06, -1.1570864130212824e-05, -3.8569547100708881e-06, -1.9284773550354445e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -1.9284773550354445e-06, -5.7854320651063961e-06, -3.8569547100708889e-06, -4.8211933875886101e-07, -9.6423867751772202e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.3390740488297886e-06, -2.4105966937943323e-06, -3.8569547100708881e-06, -7.7139094201417779e-06, -3.4712592390638363e-05, -1.9284773550354436e-06, -4.8211933875886112e-07, -2.8927160325531964e-05, -3.8569547100708889e-06, -2.3141728260425713e-05, -2.3141728260425368e-05, -2.4105966937942923e-05, -2.3141728260425713e-05, -1.9284773550354436e-06, -1.9284773550354436e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.8569547100708873e-06, -4.8211933875886101e-07, -3.8569547100708873e-06, -4.8211933875886112e-07, -4.8211933875886101e-07, -3.3748353713120611e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.9409279664290806e-05, -9.6423867751772202e-07, -3.4712592390638404e-05, -3.4712592390638404e-05, -3.8569547100708889e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.4712592390638417e-05, -3.4712592390638349e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -7.7139094201417779e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.4463580162766033e-06, -7.7139094201417779e-06, -4.3390740488296675e-06, -4.3390740488296861e-06, -4.339074048829681e-06, -4.3390740488296692e-06, -2.1695370244148676e-06, -2.1695370244148668e-06, -4.3390740488297352e-06, -4.3390740488297369e-06, -5.4238425610371119e-07, -5.4238425610371182e-07, -0.00010901923547684775, -0.00010847685122074531, -2.7119212805186208e-06, -5.4238425610371119e-07, -1.6271527683111502e-06, -5.4238425610372061e-06, -4.3390740488297568e-05, -1.0847685122074236e-06, -4.9899351561542645e-05, -5.4238425610371743e-07, -8.6781480976593587e-06, -8.6781480976593688e-06, -4.3390740488297395e-06, -4.3390740488297319e-06, -4.3390740488297554e-05, -4.3390740488297568e-05, -4.3390740488297683e-06, -0.00012312122613554431, -1.0847685122074156e-06, -0.00010847685122074383, -8.6781480976593519e-06, -4.3390740488296861e-06, -4.3390740488296658e-06, -5.4238425610371754e-07, -5.423842561037114e-07, -4.3390740488297014e-06, -4.3390740488296963e-06, -1.0847685122074156e-06, -1.084768512207416e-06, -5.4238425610371849e-07, -5.4238425610371394e-07, -4.3390740488297429e-06, -2.7119212805186128e-06, -1.6271527683111548e-06, -2.1695370244148668e-06, -2.1695370244148676e-06, -5.4238425610371119e-07, -8.135763841555766e-06, -4.3390740488297115e-06, -4.3390740488297098e-06, -4.8814583049334974e-06, -4.3390740488297412e-06, -8.1357638415557931e-06, -1.0847685122074224e-06, -5.4238425610370886e-07, -4.3390740488297395e-06, -4.3390740488297352e-06, -5.4238425610371098e-07, -5.4238425610371267e-07, -4.3390740488297081e-06, -4.3390740488297132e-06, -1.0847685122074446e-06, -5.4238425610371786e-07, -4.3390740488297251e-06, -8.6781480976595196e-06, -5.423842561037223e-06, -4.3390740488296997e-06, -8.6781480976594637e-06, -5.4238425610371076e-07, -4.3390740488297217e-06, -9.2205323537632445e-06, -4.3390740488297031e-06, -4.3390740488297429e-06, -8.6781480976593654e-06, -1.7356296195319141e-05, -1.3559606402592959e-05, -4.3390740488297335e-06, -8.678148097659379e-06, -8.6781480976593892e-06, -2.169537024414832e-06, -4.3390740488297149e-06, -5.4238425610372197e-06, -5.9662268171410318e-06, -2.169537024414832e-06, -8.6781480976595569e-06, -4.3390740488297014e-06, -4.3390740488297014e-06, -4.339074048829698e-06, -1.0847685122074429e-06, -4.3390740488296743e-06, -4.3390740488297335e-06, -5.423842561037078e-07, -4.3390740488297369e-06, -1.0847685122074313e-06, -4.3390740488296776e-06, -4.3390740488297047e-06, -4.339074048829698e-06, -5.4238425610371076e-07, -8.6781480976593824e-06, -8.6781480976593756e-06, -5.4238425610371246e-07, -4.3390740488297031e-06, -4.3390740488297064e-06, -5.4238425610371161e-07, -4.3390740488296658e-06, -4.3390740488296726e-06, -4.3390740488297446e-06, -4.3390740488296709e-06, -1.3017222146489235e-05, -4.3390740488296709e-06, -4.3390740488297285e-06, -4.33907404882972e-06, -5.4238425610371415e-07, -4.3390740488297217e-06, -4.3390740488297166e-06, -8.678148097659423e-06, -2.1695370244148676e-06, -9.7629166098670252e-06, -2.1695370244148668e-06, -5.4238425610370886e-07, -1.084768512207433e-06, -7.050995329348423e-06, -4.339074048829698e-06, -8.6781480976595365e-06, -4.5560277512712447e-05, -4.3390740488297081e-06, -4.7729814537127515e-05, -4.3390740488297369e-06, -4.3390740488297446e-06, -8.6781480976593892e-06, -4.3390740488297791e-05, -8.678148097659379e-06, -4.3933124744401523e-05, -5.4238425610371743e-07, -8.6781480976593722e-06, -8.6781480976593959e-06, -2.1695370244148363e-06, -4.5560277512712447e-05, -4.3390740488297568e-05, -4.3390740488297798e-05, -4.3390740488297764e-05, -5.4238425610371098e-07, -2.1695370244148782e-06, -5.4238425610371828e-07, -5.4238425610370971e-07, -5.4238425610370801e-07, -4.3390740488297014e-06, -4.339074048829698e-06, -4.3390740488297014e-06, -4.3390740488296997e-06, -5.4238425610371828e-07, -5.4238425610371765e-07, -5.4238425610371521e-07, -4.339074048829681e-06, -5.4238425610371976e-06, -1.0847685122074429e-05, -8.6781480976595365e-06, -8.6781480976594298e-06, -4.3390740488296827e-06, -1.3017222146489284e-05, -1.6271527683111553e-06, -4.7729814537127834e-05, -8.67814809765944e-06, -3.905166643946825e-05, -5.423842561037114e-07, -5.4238425610371627e-07, -1.3559606402592977e-05, -8.678148097659423e-06, -4.3390740488297115e-06, -3.7966897927260646e-06, -2.1695370244148752e-06, -1.0847685122074228e-06, -3.905166643946825e-05, -1.0847685122074224e-06, -2.1695370244148668e-06, -2.1695370244148676e-06, -3.905166643946825e-05, -4.3390740488297268e-06, -5.4238425610371373e-07, -4.3390740488297115e-06, -5.4238425610371521e-07, -4.3390740488297183e-06, -5.423842561037218e-06, -1.6271527683111546e-06, -4.3390740488297132e-06, -8.1357638415558134e-06, -5.4238425610371828e-07, -4.3390740488297285e-06, -1.0847685122074156e-06, -1.084768512207416e-06, -1.0847685122074181e-06, -5.4238425610371267e-07, -3.2543055366223254e-06, -1.6271527683111559e-06, -4.3390740488296912e-06, -4.3390740488296844e-06, -8.6781480976594603e-06, -1.4101990658696771e-05, -1.2474837890385641e-05, -5.4238425610371849e-07, -8.6781480976595332e-06, -4.3390740488296895e-06, -3.2543055366223148e-06, -1.0847685122074374e-06, -5.4238425610371765e-07, -5.4238425610370971e-07, -4.3390740488297764e-05, -4.3390740488297798e-05, -8.7866249488803452e-05, -4.3390740488297798e-05, -4.3390740488297791e-05, -2.169537024414832e-06, -1.0847685122074374e-06, -4.3390740488297683e-06, 0.002204792001061627, -2.169537024414832e-06, -5.9662268171409496e-06, -5.4238425610371119e-07, -5.4238425610371743e-07, -8.6781480976595094e-06, -4.3390740488297268e-06, -4.33907404882972e-06, -5.4238425610371627e-07, -5.4238425610371119e-07, -2.1695370244148498e-06, -2.1695370244148481e-06, -8.6781480976595365e-06, -4.3390740488296844e-06, -5.4238425610371606e-07, -8.7866249488802707e-05, -4.3390740488296878e-06, -4.3390740488296895e-06, -5.4238425610371246e-07, -2.1695370244148481e-06, -2.169537024414849e-06, -1.0847685122074353e-06, -1.0847685122074349e-06, -1.6271527683111557e-06, -5.4238425610371098e-07, -1.0847685122074349e-06, -1.0847685122074353e-06, -5.4238425610371458e-07, -5.4238425610371098e-07, -2.1695370244148765e-06, 0.00023901066218970666, -4.3390740488297285e-06, -5.4238425610371849e-07, -5.4238425610371743e-07, -9.7629166098670184e-06, -5.4238425610371267e-07, -2.1695370244148875e-06, -1.0847685122074421e-06, -8.6781480976594739e-06, -8.6781480976594637e-06, -2.7119212805186081e-06, -2.1695370244148532e-06, -1.0847685122074442e-06, -3.2543055366223224e-06, -4.6102661768816368e-05, -5.4238425610371394e-07, -2.1695370244148541e-06, -2.1695370244148524e-06, -8.6781480976594569e-06, -8.6781480976594823e-06, -2.1695370244148524e-06, -2.1695370244148608e-06, -2.1695370244148608e-06, -5.4238425610371828e-07, -2.4949675780771163e-05, -5.4238425610372307e-06, -5.4238425610371055e-07, -4.3390740488296895e-06, -4.3390740488297666e-06, -4.3390740488296878e-06, -8.6781480976594823e-06, -4.339074048829753e-06, -8.6781480976594569e-06, -4.3390740488297666e-06, -4.3390740488297683e-06, -0.00016651196662384227, -4.3390740488296912e-06, -0.00010847685122074459, -4.3390740488297217e-06, -1.0847685122074215e-06, -3.2543055366223348e-05, -6.5086110732446295e-06, -2.7119212805186124e-06, -3.2543055366223132e-05, -5.4238425610371669e-07, -4.339074048829698e-06, -4.3390740488297014e-06, -8.7866249488802707e-05, -4.3390740488297285e-06, -4.3390740488297302e-06, -0.0001242059946477517, -1.6271527683111527e-06, -0.00010847685122074454, -4.3390740488297064e-06, -4.3390740488297031e-06, -5.4238425610371436e-07, -4.3390740488297031e-06, -4.3390740488296963e-06, -5.4238425610371892e-07, -8.6781480976594637e-06, -8.6781480976594739e-06, -1.0847685122074181e-06, -2.169537024414849e-06, -2.1695370244148481e-06, -4.3390740488296895e-06, -4.3390740488296878e-06, -8.7866249488803452e-05, -4.3390740488296844e-06, -4.3390740488296912e-06, -1.4644374914800603e-05, -5.2068888585957118e-05, -4.3390740488297014e-06, -3.8509282183364159e-05, -6.5086110732446109e-06, -6.5086110732446126e-06, -4.3390740488296861e-06, -4.3390740488296726e-06, -5.423842561037201e-06, -4.3390740488296658e-06, -5.423842561037207e-06, -1.1390069378178105e-05, -4.3390740488297268e-06, -2.7119212805186031e-06, -1.2474837890385607e-05, -4.3390740488297251e-06, -6.5086110732446278e-06, -1.6271527683111561e-06, -2.7119212805186124e-06, -1.0847685122074177e-06, -5.4238425610371098e-07, -5.4238425610371373e-07, -4.3390740488296658e-06, -6.508611073244638e-06, -3.2543055366223156e-06, -2.1695370244148757e-06, -4.3390740488296827e-06, -4.3390740488297683e-06, -4.3390740488297683e-06, -8.6781480976595128e-06, -4.3390740488297395e-06, -2.1695370244148524e-06, -8.6781480976594857e-06, 0.0019598151120547806, -2.1695370244148541e-06, -4.3390740488297666e-06, -5.4238425610371669e-07, -4.3390740488297352e-06, -4.3390740488297395e-06, -8.6781480976593756e-06, -1.3017222146489235e-05, -4.3390740488297149e-06, -8.6781480976593519e-06, -8.6781480976593756e-06, -4.3390740488297369e-06, -4.3390740488297352e-06, -4.3390740488297251e-06, -4.3390740488297319e-06, -4.8814583049335312e-06, -1.8441064707526448e-05, -1.0847685122074455e-06, -4.3390740488296709e-06, -4.3390740488297564e-06, -4.8814583049335312e-06, -1.410199065869688e-05, -4.3390740488296861e-06, -4.3390740488297115e-06, -4.3390740488296675e-06, -2.1695370244148532e-06, -2.1695370244148524e-06, -5.4238425610371161e-07, -5.4238425610370801e-07, -5.4238425610371076e-07, -1.0847685122074253e-06, -9.22053235376338e-06, -1.6271527683111545e-05, -6.508611073244649e-06, -3.2543055366223254e-06, -5.4238425610371415e-07, -2.1695370244148541e-06, -8.67814809765944e-06, -1.3017222146489225e-05, -4.3390740488296726e-06, -2.1695370244148549e-06, -8.678148097659423e-06, -8.6781480976594298e-06, -2.1695370244148549e-06, -6.5086110732446262e-06, -4.3390740488297285e-06, -5.4238425610370886e-07, -1.0847685122074446e-06, -2.1695370244148541e-06, -2.1695370244148524e-06, -4.8814583049335194e-06, -2.7119212805186056e-06, -4.3390740488296929e-06, -8.6781480976595196e-06, -3.9051666439467938e-05, -2.1695370244148363e-06, -5.4238425610371807e-07, -3.2543055366223294e-05, -4.33907404882972e-06, -2.6034444292978505e-05, -2.6034444292978501e-05, -2.7119212805186117e-05, -2.6034444292978505e-05, -2.1695370244148371e-06, -2.169537024414838e-06, -4.3390740488297115e-06, -4.3390740488297183e-06, -2.1695370244148583e-06, -2.1695370244148591e-06, -4.3390740488296776e-06, -5.4238425610370907e-07, -4.3390740488296743e-06, -5.4238425610371415e-07, -5.4238425610371161e-07, -3.7966897927260333e-05, -2.1695370244148591e-06, -2.1695370244148583e-06, -3.3085439622326843e-05, -1.0847685122074198e-06, -3.905166643946825e-05, -3.905166643946825e-05, -4.3390740488297217e-06, -5.42384256103715e-07, -4.3390740488297149e-06, -3.905166643946825e-05, -3.9051666439467837e-05, -4.33907404882972e-06, -4.3390740488297251e-06, -1.0847685122074317e-06, -1.0847685122074228e-06, -8.6781480976594823e-06, -4.3390740488297234e-06, -4.33907404882972e-06, -1.6271527683111544e-06, -8.6781480976594823e-06, -1.928477355035444e-06, -1.928477355035444e-06, -1.9284773550354445e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943056e-07, -2.4105966937943056e-07, -4.8452993545266217e-05, -4.8211933875886374e-05, -1.205298346897164e-06, -2.4105966937943056e-07, -7.2317900813830555e-07, -2.4105966937943433e-06, -1.92847735503548e-05, -4.8211933875886112e-07, -2.2177489582907545e-05, -2.4105966937943061e-07, -3.8569547100708881e-06, -3.8569547100708873e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.92847735503548e-05, -1.92847735503548e-05, -1.928477355035444e-06, -5.4720544949130253e-05, -4.8211933875886101e-07, -4.8211933875887011e-05, -3.8569547100708881e-06, -1.9284773550354445e-06, -1.928477355035444e-06, -2.4105966937943056e-07, -2.4105966937943061e-07, -1.9284773550354445e-06, -1.9284773550354449e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.928477355035444e-06, -1.205298346897164e-06, -7.2317900813830597e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943056e-07, -3.6158950406915331e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.1695370244148456e-06, -1.9284773550354449e-06, -3.6158950406915213e-06, -4.8211933875886101e-07, -2.4105966937943051e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -2.4105966937943056e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886101e-07, -2.4105966937943061e-07, -1.9284773550354449e-06, -3.8569547100708898e-06, -2.4105966937943382e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -2.4105966937943061e-07, -1.9284773550354445e-06, -4.0980143794502795e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -7.7139094201417745e-06, -6.0264917344858104e-06, -1.9284773550354445e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, 0.00098111285437428651, -1.9284773550354449e-06, -2.410596693794339e-06, -2.651656363173733e-06, -9.6423867751772901e-07, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886122e-07, -1.928477355035444e-06, -1.9284773550354445e-06, -2.4105966937943045e-07, -1.9284773550354445e-06, -4.8211933875886122e-07, -1.928477355035444e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943056e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -2.4105966937943056e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -2.4105966937943056e-07, -1.928477355035444e-06, -1.928477355035444e-06, -1.9284773550354449e-06, -1.928477355035444e-06, -5.7854320651064461e-06, -1.9284773550354487e-06, -1.9284773550354449e-06, -1.9284773550354445e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -4.339074048829681e-06, -9.6423867751772245e-07, -2.4105966937943051e-07, -4.8211933875886122e-07, -3.1337757019326331e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -2.0249012227872336e-05, -1.9284773550354445e-06, -2.1213250905389776e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -1.9284773550354682e-05, -3.8569547100708881e-06, -1.9525833219734145e-05, -2.4105966937943056e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -9.6423867751772202e-07, -2.0249012227872329e-05, -1.92847735503548e-05, -1.9284773550354665e-05, -1.9284773550354716e-05, -2.4105966937943061e-07, -9.6423867751772202e-07, -2.4105966937943061e-07, -2.4105966937943051e-07, -2.4105966937943051e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.410596693794328e-06, -4.8211933875886815e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354449e-06, -5.7854320651064495e-06, -7.2317900813831656e-07, -2.1213250905389945e-05, -3.8569547100708889e-06, -1.7356296195318792e-05, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.0264917344858307e-06, -3.8569547100708898e-06, -1.9284773550354445e-06, -1.6874176856560448e-06, -9.6423867751772202e-07, -4.8211933875886101e-07, -1.7356296195318792e-05, -4.8211933875886101e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.7356296195318785e-05, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.410596693794328e-06, -7.2317900813830618e-07, -1.9284773550354449e-06, -3.6158950406915094e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -1.44635801627662e-06, -7.2317900813831497e-07, -1.928477355035444e-06, -1.928477355035444e-06, -3.8569547100708889e-06, -6.2675514038652492e-06, -5.5443723957268887e-06, -2.4105966937943061e-07, -3.8569547100708889e-06, -1.9284773550354445e-06, -1.4463580162766234e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943056e-07, -1.9284773550354716e-05, -1.9284773550354665e-05, -3.9051666439468419e-05, -1.9284773550354665e-05, -1.9284773550354682e-05, -9.6423867751772901e-07, -4.8211933875886112e-07, -1.928477355035444e-06, -2.169537024414832e-06, 0.00098111285437428651, -2.6516563631737334e-06, -2.4105966937943056e-07, -2.4105966937943061e-07, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -2.4105966937943056e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -3.8569547100708881e-06, -1.9284773550354445e-06, -2.4105966937943061e-07, -3.9051666439468331e-05, -1.928477355035444e-06, -1.928477355035444e-06, -2.4105966937943056e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.2317900813830597e-07, -2.4105966937943051e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -9.6423867751772224e-07, -2.8927160325532247e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.3390740488296912e-06, -2.4105966937943056e-07, -9.6423867751772139e-07, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.2052983468971695e-06, -9.6423867751772224e-07, -4.8211933875886112e-07, -1.4463580162766119e-06, -2.0490071897251667e-05, -2.4105966937943061e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -1.1088744791453727e-05, -2.4105966937943285e-06, -2.4105966937943061e-07, -1.928477355035444e-06, -1.9284773550354436e-06, -1.928477355035444e-06, -3.8569547100708889e-06, -1.9284773550354436e-06, -3.8569547100708889e-06, -1.9284773550354436e-06, -1.9284773550354436e-06, -7.4005318499486896e-05, -1.9284773550354445e-06, -4.8211933875886673e-05, -1.9284773550354449e-06, -4.8211933875886101e-07, -1.4463580162765948e-05, -2.8927160325532006e-06, -1.2052983468971678e-06, -1.4463580162766112e-05, -2.4105966937943061e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.9051666439468331e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -5.520266428788922e-05, -7.2317900813830576e-07, -4.8211933875886713e-05, -1.9284773550354445e-06, -1.9284773550354449e-06, -2.4105966937943056e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.4105966937943061e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886101e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.9051666439468419e-05, -1.928477355035444e-06, -1.928477355035444e-06, -6.5086110732447727e-06, -2.3141728260425791e-05, -1.9284773550354449e-06, -1.7115236525939278e-05, -2.892716032553223e-06, -2.892716032553223e-06, -1.9284773550354449e-06, -1.928477355035444e-06, -2.410596693794328e-06, -1.928477355035444e-06, -2.4105966937943424e-06, -5.0622530569680805e-06, -1.9284773550354449e-06, -1.205298346897164e-06, -5.5443723957268599e-06, -1.9284773550354445e-06, -2.8927160325531972e-06, -7.2317900813828765e-07, -1.2052983468971678e-06, -4.8211933875886101e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.928477355035444e-06, -2.8927160325532239e-06, -1.4463580162766225e-06, -9.6423867751772245e-07, -1.9284773550354445e-06, -1.928477355035444e-06, -1.9284773550354436e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -3.8569547100708881e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -1.9284773550354436e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -5.7854320651064478e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -3.8569547100708873e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.1695370244148473e-06, -8.1960287589006064e-06, -4.8211933875886091e-07, -1.9284773550354487e-06, -1.9284773550354449e-06, -2.1695370244149239e-06, -6.2675514038652559e-06, -1.928477355035444e-06, -1.9284773550354449e-06, -1.928477355035444e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -2.4105966937943056e-07, -2.4105966937943051e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -4.0980143794502549e-06, -7.2317900813829739e-06, -2.8927160325532108e-06, -1.44635801627662e-06, -2.4105966937943061e-07, -9.6423867751772224e-07, -3.8569547100708889e-06, -5.7854320651064495e-06, -1.928477355035447e-06, -9.6423867751772224e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772224e-07, -2.8927160325532239e-06, -1.9284773550354445e-06, -2.4105966937943051e-07, -4.8211933875886101e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -2.1695370244148431e-06, -1.2052983468971712e-06, -1.9284773550354445e-06, -3.8569547100708898e-06, -1.7356296195318772e-05, -9.6423867751772202e-07, -2.4105966937943061e-07, -1.4463580162765948e-05, -1.9284773550354445e-06, -1.1570864130213067e-05, -1.1570864130212896e-05, -1.2052983468971619e-05, -1.1570864130213067e-05, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.928477355035444e-06, -2.4105966937943051e-07, -1.928477355035444e-06, -2.4105966937943061e-07, -2.4105966937943056e-07, -1.6874176856560041e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.4704639832145396e-05, -4.8211933875886101e-07, -1.7356296195318785e-05, -1.7356296195318792e-05, -1.9284773550354445e-06, -2.4105966937943056e-07, -1.9284773550354445e-06, -1.7356296195318792e-05, -1.7356296195318758e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.2317900813830459e-07, -3.8569547100708898e-06, -5.3033127263474685e-06, -5.3033127263474736e-06, -5.3033127263474753e-06, -5.3033127263474685e-06, -2.6516563631737469e-06, -2.6516563631737469e-06, -5.3033127263474964e-06, -5.3033127263474956e-06, -6.6291409079343504e-07, -6.6291409079343504e-07, -0.00013324573224948058, -0.00013258281815868751, -3.3145704539671942e-06, -6.6291409079343504e-07, -1.9887422723802777e-06, -6.6291409079343672e-06, -5.3033127263474842e-05, -1.3258281815868701e-06, -6.0988096352996287e-05, -6.6291409079343695e-07, -1.0606625452694952e-05, -1.0606625452694949e-05, -5.3033127263474956e-06, -5.3033127263474964e-06, -5.3033127263474856e-05, -5.3033127263474856e-05, -5.3033127263474702e-06, -0.00015048149861011093, -1.3258281815868667e-06, -0.00013258281815868768, -1.0606625452694956e-05, -5.3033127263474753e-06, -5.3033127263474702e-06, -6.6291409079343748e-07, -6.6291409079343462e-07, -5.3033127263474787e-06, -5.3033127263474803e-06, -1.3258281815868667e-06, -1.3258281815868667e-06, -6.6291409079343716e-07, -6.6291409079343589e-07, -5.3033127263474922e-06, -3.3145704539671904e-06, -1.9887422723802908e-06, -2.6516563631737469e-06, -2.6516563631737461e-06, -6.6291409079343504e-07, -9.9437113619015821e-06, -5.3033127263474871e-06, -5.3033127263474871e-06, -5.9662268171409699e-06, -5.3033127263474922e-06, -9.9437113619015702e-06, -1.3258281815868699e-06, -6.6291409079343377e-07, -5.3033127263474922e-06, -5.3033127263474939e-06, -6.6291409079343441e-07, 0.00024485635917215778, -5.303312726347488e-06, -5.3033127263474863e-06, -1.3258281815868648e-06, -6.629140907934361e-07, -5.3033127263474888e-06, -1.0606625452694964e-05, -6.6291409079343756e-06, -5.3033127263474803e-06, -1.0606625452694967e-05, -6.6291409079343441e-07, -5.3033127263474897e-06, -1.1269539543488405e-05, -5.303312726347482e-06, -5.3033127263474854e-06, -1.0606625452694954e-05, -2.1213250905389881e-05, -1.6572852269835871e-05, -5.3033127263474981e-06, -1.0606625452694954e-05, -1.0606625452694951e-05, -2.6516563631737334e-06, -5.3033127263474871e-06, -6.6291409079343739e-06, -7.2920549987278491e-06, -2.6516563631737334e-06, -1.060662545269492e-05, -5.3033127263474837e-06, -5.3033127263474829e-06, -5.3033127263474829e-06, -1.3258281815868646e-06, -5.3033127263474736e-06, -5.3033127263474981e-06, -6.6291409079343388e-07, -5.3033127263474981e-06, -1.3258281815868688e-06, -5.3033127263474719e-06, -5.3033127263474787e-06, -5.3033127263474803e-06, -6.6291409079343462e-07, -1.0606625452694951e-05, -1.0606625452694951e-05, -6.6291409079343504e-07, -5.303312726347482e-06, -5.303312726347482e-06, -6.6291409079343536e-07, -5.3033127263474702e-06, -5.3033127263474668e-06, -5.3033127263474854e-06, -5.3033127263474685e-06, -1.5909938179042245e-05, -5.3033127263474702e-06, -5.3033127263474871e-06, -5.3033127263474905e-06, -6.6291409079343589e-07, -5.3033127263474888e-06, -5.3033127263474905e-06, -1.0606625452694967e-05, -2.6516563631737461e-06, -1.1932453634281999e-05, -2.6516563631737469e-06, -6.6291409079343377e-07, -1.3258281815868709e-06, -8.6178831803146995e-06, -5.3033127263474803e-06, -1.0606625452694951e-05, -5.5684783626648811e-05, -5.303312726347488e-06, -5.8336439989821973e-05, -5.3033127263474871e-06, -5.3033127263474854e-06, -1.0606625452694951e-05, -5.3033127263474924e-05, -1.0606625452694954e-05, -5.3696041354268394e-05, -6.6291409079343748e-07, -1.0606625452694957e-05, -1.0606625452694951e-05, -2.6516563631737359e-06, -5.5684783626648797e-05, -5.3033127263474842e-05, -5.3033127263474992e-05, -5.3033127263475025e-05, -6.6291409079343441e-07, -2.6516563631737711e-06, -6.629140907934361e-07, -6.629140907934342e-07, -6.6291409079343356e-07, -5.3033127263474803e-06, -5.3033127263474803e-06, -5.3033127263474787e-06, -5.3033127263474803e-06, -6.629140907934361e-07, -6.6291409079343589e-07, -6.6291409079343653e-07, -5.3033127263474736e-06, -6.6291409079343689e-06, -1.3258281815868758e-05, -1.060662545269493e-05, -1.0606625452694974e-05, -5.3033127263474736e-06, -1.5909938179042361e-05, -1.9887422723802921e-06, -5.8336439989822386e-05, -1.0606625452694971e-05, -4.7729814537127407e-05, -6.6291409079343462e-07, -6.6291409079343547e-07, -1.6572852269835926e-05, -1.0606625452694967e-05, -5.3033127263474871e-06, -4.6403986355540238e-06, -2.6516563631737605e-06, -1.3258281815868705e-06, -4.7729814537127414e-05, -1.3258281815868699e-06, -2.6516563631737469e-06, -2.6516563631737469e-06, -4.7729814537127414e-05, -5.3033127263474905e-06, -6.6291409079343568e-07, -5.3033127263474854e-06, -6.6291409079343631e-07, -5.3033127263474837e-06, -6.6291409079343841e-06, -1.9887422723802904e-06, -5.3033127263474854e-06, -9.943711361901538e-06, -6.6291409079343716e-07, -5.3033127263474905e-06, -1.3258281815868667e-06, -1.3258281815868667e-06, -1.325828181586868e-06, -6.6291409079343526e-07, -3.9774845447606028e-06, -1.9887422723802946e-06, -5.3033127263474778e-06, -5.3033127263474795e-06, -1.0606625452694964e-05, -1.7235766360629433e-05, -1.5247024088249056e-05, -6.6291409079343716e-07, -1.0606625452694944e-05, -5.3033127263474753e-06, -3.9774845447605944e-06, -1.3258281815868724e-06, -6.6291409079343589e-07, -6.629140907934342e-07, -5.3033127263475025e-05, -5.3033127263474992e-05, -0.00010739208270853596, -5.3033127263474992e-05, -5.3033127263474924e-05, -2.6516563631737334e-06, -1.3258281815868709e-06, -5.3033127263474922e-06, -5.9662268171409496e-06, -2.6516563631737334e-06, 0.0026934199508937369, -6.6291409079343504e-07, -6.6291409079343695e-07, -1.0606625452694974e-05, -5.3033127263474922e-06, -5.3033127263474888e-06, -6.6291409079343547e-07, -6.6291409079343504e-07, -2.6516563631737402e-06, -2.6516563631737402e-06, -1.0606625452694944e-05, -5.303312726347477e-06, -6.6291409079343653e-07, -0.00010739208270853672, -5.3033127263474787e-06, -5.3033127263474787e-06, -6.6291409079343504e-07, -2.6516563631737402e-06, -2.6516563631737402e-06, -1.3258281815868745e-06, -1.3258281815868745e-06, -1.988742272380293e-06, -6.6291409079343494e-07, -1.3258281815868745e-06, -1.3258281815868745e-06, -6.629140907934361e-07, -6.6291409079343441e-07, -2.6516563631737584e-06, -7.9549690895212057e-06, -5.3033127263474922e-06, -6.6291409079343631e-07, -6.6291409079343695e-07, -1.1932453634281882e-05, -6.6291409079343568e-07, -2.6516563631737529e-06, -1.325828181586868e-06, -1.0606625452694991e-05, -1.0606625452694995e-05, -3.3145704539671874e-06, -2.6516563631737431e-06, -1.3258281815868652e-06, -3.9774845447606037e-06, -5.6347697717442166e-05, -6.6291409079343589e-07, -2.6516563631737431e-06, -2.6516563631737436e-06, -1.0606625452694995e-05, -1.0606625452694988e-05, -2.651656363173741e-06, -2.6516563631737453e-06, -2.6516563631737453e-06, -6.6291409079343631e-07, -3.0494048176498181e-05, -6.6291409079343705e-06, -6.6291409079343441e-07, -5.3033127263474787e-06, -5.3033127263474702e-06, -5.3033127263474787e-06, -1.0606625452694988e-05, -5.3033127263475235e-06, -1.0606625452694995e-05, -5.3033127263474702e-06, -5.3033127263474693e-06, -0.00020351462587358439, -5.3033127263474753e-06, -0.000132582818158688, -5.3033127263474888e-06, -1.3258281815868699e-06, -3.9774845447606288e-05, -7.9549690895211837e-06, -3.3145704539671904e-06, -3.9774845447606261e-05, -6.6291409079343674e-07, -5.3033127263474829e-06, -5.3033127263474829e-06, -0.00010739208270853672, -5.3033127263474947e-06, -5.3033127263474947e-06, -0.00015180732679169714, -1.9887422723802845e-06, -0.00013258281815868792, -5.303312726347482e-06, -5.303312726347482e-06, -6.6291409079343642e-07, -5.303312726347482e-06, -5.3033127263474837e-06, -6.6291409079343631e-07, -1.0606625452694995e-05, -1.0606625452694991e-05, -1.325828181586868e-06, -2.6516563631737402e-06, -2.6516563631737402e-06, -5.3033127263474753e-06, -5.303312726347477e-06, -0.00010739208270853596, -5.3033127263474795e-06, -5.3033127263474778e-06, -1.7898680451422862e-05, -6.3639752716169591e-05, -5.3033127263474837e-06, -4.7066900446334282e-05, -7.9549690895211396e-06, -7.9549690895211396e-06, -5.3033127263474719e-06, -5.3033127263474668e-06, 0.00023889013235501737, -5.3033127263474702e-06, 0.00023889013235501758, -1.3921195906662177e-05, -5.3033127263474888e-06, -3.3145704539671836e-06, -1.5247024088249067e-05, -5.3033127263474956e-06, -7.9549690895211837e-06, -1.9887422723802942e-06, -3.3145704539671921e-06, -1.3258281815868675e-06, -6.6291409079343441e-07, -6.6291409079343568e-07, -5.3033127263474702e-06, -7.9549690895211684e-06, -3.9774845447605944e-06, -2.6516563631737461e-06, -5.3033127263474753e-06, -5.3033127263474702e-06, -5.3033127263474693e-06, -1.0606625452695042e-05, -5.3033127263474956e-06, -2.6516563631737436e-06, 0.0019535475606509154, -5.3033127263474956e-06, -2.6516563631737431e-06, -5.3033127263474702e-06, -6.6291409079343674e-07, -5.3033127263474939e-06, -5.3033127263474922e-06, -1.0606625452694951e-05, -1.5909938179042313e-05, -5.3033127263474837e-06, -1.0606625452694956e-05, -1.0606625452694949e-05, -5.3033127263474956e-06, -5.3033127263474964e-06, -5.3033127263474956e-06, -5.3033127263474939e-06, -5.966226817141025e-06, -2.253907908697698e-05, -1.3258281815868631e-06, -5.3033127263474702e-06, -5.3033127263474956e-06, -5.966226817141025e-06, -1.7235766360629484e-05, -5.3033127263474736e-06, -5.3033127263474854e-06, -5.3033127263474685e-06, -2.6516563631737431e-06, -2.6516563631737436e-06, -6.6291409079343483e-07, -6.6291409079343356e-07, -6.6291409079343441e-07, -1.3258281815868705e-06, -1.1269539543488312e-05, -1.9887422723803157e-05, -7.9549690895211989e-06, -3.9774845447606028e-06, -6.6291409079343568e-07, -2.6516563631737444e-06, -1.0606625452694971e-05, -1.5909938179042306e-05, -5.3033127263474702e-06, -2.6516563631737444e-06, -1.0606625452694978e-05, -1.0606625452694974e-05, -2.6516563631737444e-06, -7.9549690895211769e-06, -5.3033127263474947e-06, -6.6291409079343398e-07, -1.3258281815868637e-06, -2.6516563631737444e-06, -2.651656363173741e-06, -5.9662268171410123e-06, -3.314570453967187e-06, -5.3033127263474787e-06, -1.0606625452694966e-05, -4.7729814537127542e-05, -2.6516563631737359e-06, -6.629140907934361e-07, -3.9774845447606288e-05, -5.3033127263474905e-06, -3.1819876358084687e-05, -3.1819876358084714e-05, -3.3145704539671743e-05, -3.1819876358084687e-05, -2.6516563631737359e-06, -2.6516563631737359e-06, -5.3033127263474871e-06, -5.3033127263474854e-06, -2.6516563631737444e-06, -2.6516563631737444e-06, -5.3033127263474719e-06, -6.6291409079343398e-07, -5.3033127263474736e-06, -6.629140907934361e-07, -6.6291409079343536e-07, -4.6403986355540941e-05, -2.6516563631737444e-06, -2.6516563631737444e-06, -4.0437759538399609e-05, -1.325828181586869e-06, -4.7729814537127414e-05, -4.7729814537127414e-05, -5.3033127263474897e-06, -6.6291409079343663e-07, -5.3033127263474914e-06, -4.7729814537127407e-05, -4.7729814537127834e-05, -5.3033127263474888e-06, -5.3033127263474871e-06, -1.3258281815868726e-06, -1.3258281815868692e-06, -1.0606625452694995e-05, -5.3033127263474871e-06, -5.3033127263474871e-06, -1.9887422723802896e-06, -1.0606625452694995e-05, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -1.2113248386316517e-05, -1.2052983468971551e-05, -3.0132458672428973e-07, -6.0264917344857653e-08, -1.8079475203457533e-07, -6.0264917344858328e-07, -4.8211933875886806e-06, -1.2052983468971531e-07, -5.5443723957269082e-06, -6.0264917344857666e-08, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886815e-06, -4.8211933875886798e-06, -4.8211933875886122e-07, -1.3680136237282614e-05, -1.2052983468971528e-07, -1.2052983468971712e-05, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886101e-07, -3.0132458672428973e-07, -1.8079475203457546e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857653e-08, -9.039737601728799e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610371225e-07, -4.8211933875886133e-07, -9.0397376017287735e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971525e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -9.6423867751772245e-07, -6.0264917344858212e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -1.024503594862573e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.928477355035444e-06, -1.5066229336214477e-06, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943056e-07, -4.8211933875886133e-07, -6.0264917344858233e-07, -6.6291409079343155e-07, -2.4105966937943056e-07, -9.6423867751772202e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.026491734485764e-08, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.4463580162766024e-06, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.0847685122074266e-06, -2.4105966937943072e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -7.8344392548315742e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -5.0622530569680839e-06, -4.8211933875886133e-07, -5.3033127263474558e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -4.8211933875886535e-06, -9.6423867751772245e-07, -4.8814583049335228e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -5.0622530569680839e-06, -4.8211933875886806e-06, -4.8211933875886493e-06, -4.821193387588662e-06, -6.0264917344857653e-08, -2.4105966937943051e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.026491734485764e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886122e-07, -6.0264917344858423e-07, -1.2052983468971655e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -4.8211933875886122e-07, -1.4463580162766039e-06, -1.8079475203457811e-07, -5.303312726347482e-06, -9.6423867751772245e-07, -4.3390740488297335e-06, -6.0264917344857653e-08, -6.0264917344857679e-08, -1.506622933621453e-06, -9.6423867751772287e-07, -4.8211933875886133e-07, -4.2185442141400358e-07, -2.4105966937943056e-07, -1.2052983468971531e-07, -4.3390740488297352e-06, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297395e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -6.026491734485818e-07, -1.8079475203457546e-07, -4.8211933875886133e-07, -9.0397376017287386e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -3.6158950406915293e-07, -1.8079475203457771e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.5668878509663106e-06, -1.3860930989317277e-06, -6.0264917344857679e-08, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.6158950406915373e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -4.821193387588662e-06, -4.8211933875886493e-06, -9.7629166098670947e-06, -4.8211933875886493e-06, -4.8211933875886535e-06, -2.4105966937943056e-07, -1.2052983468971531e-07, -4.8211933875886101e-07, -5.4238425610371119e-07, -2.4105966937943056e-07, -6.6291409079343504e-07, 0.00024545900834560633, -6.0264917344857666e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -9.762916609867054e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -1.8079475203457546e-07, -6.0264917344857653e-08, -1.2052983468971533e-07, -1.2052983468971533e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -2.4105966937943056e-07, -7.2317900813830227e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -1.0847685122074292e-06, -6.0264917344857666e-08, -2.4105966937943051e-07, -1.2052983468971531e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.0132458672429127e-07, -2.4105966937943066e-07, -1.2052983468971528e-07, -3.6158950406915081e-07, -5.1225179743129167e-06, -6.0264917344857679e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857679e-08, -2.7721861978634443e-06, -6.0264917344857947e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -4.8211933875886112e-07, -9.6423867751772266e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.8501329624871619e-05, -4.8211933875886122e-07, -1.2052983468971627e-05, -4.8211933875886133e-07, -1.2052983468971531e-07, -3.6158950406914726e-06, -7.2317900813830205e-07, -3.0132458672429069e-07, -3.6158950406915128e-06, -6.0264917344857679e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.762916609867054e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, 0.00023171860719098015, -1.8079475203457535e-07, -1.2052983468971639e-05, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971531e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.7629166098670947e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.6271527683111519e-06, -5.7854320651064164e-06, -4.8211933875886133e-07, -4.278809131484844e-06, -7.2317900813830142e-07, -7.2317900813830142e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344858455e-07, -4.8211933875886122e-07, -6.0264917344858349e-07, -1.2655632642420205e-06, -4.8211933875886133e-07, -3.0132458672429196e-07, -1.3860930989317217e-06, -4.8211933875886133e-07, -7.2317900813830205e-07, -1.8079475203457776e-07, -3.0132458672429069e-07, -1.2052983468971528e-07, -6.0264917344857653e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -7.2317900813830174e-07, -3.6158950406915357e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -9.6423867751772202e-07, -4.8211933875886144e-07, -2.4105966937943066e-07, -4.8211933875886112e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -1.4463580162766033e-06, -4.8211933875886133e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610371479e-07, -2.0490071897251592e-06, -1.2052983468971525e-07, -4.8211933875886112e-07, -4.8211933875886144e-07, -5.4238425610371479e-07, -1.5668878509663119e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857653e-08, -6.026491734485764e-08, -6.0264917344857653e-08, -1.2052983468971536e-07, -1.0245035948625669e-06, -1.8079475203457384e-06, -7.2317900813830205e-07, -3.6158950406915293e-07, -6.0264917344857679e-08, -2.4105966937943066e-07, -9.6423867751772245e-07, -1.4463580162766033e-06, -4.8211933875886112e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -7.2317900813830195e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -5.4238425610371394e-07, -3.0132458672429148e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.3390740488297183e-06, -2.4105966937943061e-07, -6.0264917344857679e-08, -3.6158950406914717e-06, -4.8211933875886133e-07, -2.8927160325532501e-06, -2.8927160325532065e-06, -3.013245867242895e-06, -2.8927160325532501e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.218544214140034e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -3.6761599580363371e-06, -1.2052983468971531e-07, -4.3390740488297395e-06, -4.3390740488297352e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.3390740488297335e-06, -4.3390740488297496e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.8079475203457543e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -1.2113248386316453e-05, -1.2052983468971477e-05, -3.0132458672428804e-07, -6.0264917344857666e-08, -1.8079475203457345e-07, -6.0264917344857989e-07, -4.8211933875886527e-06, -1.2052983468971533e-07, -5.5443723957269497e-06, -6.0264917344857679e-08, -9.6423867751772245e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886527e-06, -4.821193387588651e-06, -4.8211933875886122e-07, -1.3680136237282694e-05, -1.2052983468971531e-07, -1.2052983468971638e-05, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886112e-07, -3.0132458672428804e-07, -1.8079475203457355e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857666e-08, -9.039737601728746e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610371955e-07, -4.8211933875886144e-07, -9.0397376017287132e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344857852e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -1.0245035948625794e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.9284773550354445e-06, -1.5066229336214384e-06, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -6.0264917344857873e-07, -6.6291409079343367e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.026491734485764e-08, -4.8211933875886133e-07, -1.2052983468971533e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857666e-08, -4.8211933875886144e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.4463580162765876e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.0847685122074391e-06, -2.4105966937943072e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -7.8344392548315572e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -5.0622530569680754e-06, -4.8211933875886133e-07, -5.3033127263474727e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -4.8211933875886213e-06, -9.6423867751772245e-07, -4.8814583049335007e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -5.0622530569680754e-06, -4.8211933875886527e-06, -4.821193387588618e-06, -4.8211933875886307e-06, -6.0264917344857666e-08, -2.4105966937943061e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -6.0264917344858032e-07, -1.2052983468971585e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -1.4463580162765889e-06, -1.807947520345762e-07, -5.3033127263475142e-06, -9.6423867751772266e-07, -4.3390740488297734e-06, -6.0264917344857666e-08, -6.0264917344857679e-08, -1.5066229336214435e-06, -9.6423867751772287e-07, -4.8211933875886133e-07, -4.218544214140065e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -4.3390740488297717e-06, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297717e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857777e-07, -1.8079475203457355e-07, -4.8211933875886144e-07, -9.0397376017286857e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -3.6158950406914912e-07, -1.807947520345758e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -1.5668878509663068e-06, -1.386093098931738e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -3.6158950406914986e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886307e-06, -4.821193387588618e-06, -9.7629166098670286e-06, -4.821193387588618e-06, -4.8211933875886213e-06, -2.4105966937943061e-07, -1.2052983468971533e-07, -4.8211933875886112e-07, -5.4238425610371743e-07, -2.4105966937943061e-07, -6.6291409079343695e-07, -6.0264917344857666e-08, 0.00024545900834560644, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.7629166098670083e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.8079475203457355e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943061e-07, -7.2317900813829464e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.0847685122074416e-06, -6.0264917344857666e-08, -2.4105966937943051e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.0132458672428936e-07, -2.4105966937943066e-07, -1.2052983468971533e-07, -3.61589504069147e-07, -5.1225179743129167e-06, -6.0264917344857679e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, -2.7721861978634638e-06, -6.0264917344857608e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -4.8211933875886112e-07, -9.6423867751772266e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.8501329624871429e-05, -4.8211933875886133e-07, -1.2052983468971551e-05, -4.8211933875886144e-07, -1.2052983468971531e-07, -3.6158950406914522e-06, -7.2317900813829316e-07, -3.0132458672428899e-07, -3.6158950406914921e-06, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670083e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.3800666071972451e-05, -1.807947520345735e-07, -1.2052983468971561e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670286e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.6271527683111574e-06, -5.7854320651063554e-06, -4.8211933875886144e-07, -4.2788091314848855e-06, -7.2317900813829379e-07, -7.2317900813829379e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344858074e-07, -4.8211933875886122e-07, -6.0264917344857968e-07, -1.265563264242018e-06, -4.8211933875886144e-07, -3.0132458672428995e-07, -1.3860930989317315e-06, -4.8211933875886133e-07, -7.2317900813829316e-07, -1.8079475203457535e-07, -3.0132458672428889e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -7.2317900813829422e-07, -3.6158950406914976e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943066e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943066e-07, -4.8211933875886112e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.4463580162765884e-06, -4.8211933875886144e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610372103e-07, -2.0490071897251711e-06, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -5.4238425610372209e-07, -1.5668878509663085e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.0245035948625733e-06, -1.807947520345727e-06, -7.2317900813829316e-07, -3.6158950406914912e-07, -6.0264917344857679e-08, -2.4105966937943066e-07, -9.6423867751772266e-07, -1.446358016276588e-06, -4.8211933875886122e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -7.2317900813829443e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943072e-07, -5.4238425610372019e-07, -3.0132458672428973e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.3390740488297666e-06, -2.4105966937943061e-07, -6.0264917344857679e-08, -3.6158950406914514e-06, -4.8211933875886133e-07, -2.8927160325532196e-06, -2.8927160325531769e-06, -3.0132458672428764e-06, -2.8927160325532196e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.2185442141400662e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -3.6761599580363253e-06, -1.2052983468971531e-07, -4.3390740488297717e-06, -4.3390740488297717e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.3390740488297734e-06, -4.3390740488297649e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, 0.0002453384785109166, -9.6423867751772287e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -0.00019381197418106243, -0.00019284773550354303, -4.8211933875886273e-06, -9.6423867751772266e-07, -2.8927160325531722e-06, -9.6423867751773155e-06, -7.7139094201418578e-05, -1.9284773550354453e-06, -8.8709958331631086e-05, -9.6423867751772287e-07, -1.5427818840283559e-05, -1.5427818840283556e-05, -7.713909420141783e-06, -7.713909420141783e-06, -7.7139094201418551e-05, -7.7139094201418551e-05, -7.7139094201417796e-06, -0.00021888217979652364, -1.9284773550354449e-06, -0.00019284773550354555, -1.5427818840283559e-05, -7.7139094201417813e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.713909420141783e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -7.7139094201417779e-06, -4.8211933875886273e-06, -2.8927160325531743e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -1.4463580162765965e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -8.6781480976595264e-06, -7.713909420141783e-06, -1.4463580162765921e-05, -1.9284773550354449e-06, -9.6423867751772245e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -1.5427818840283566e-05, -9.6423867751772952e-06, -7.7139094201417813e-06, -1.5427818840283563e-05, -9.6423867751772266e-07, -7.7139094201417813e-06, -1.6392057517801311e-05, -7.7139094201417813e-06, -7.713909420141783e-06, -1.5427818840283563e-05, -3.0855637680567112e-05, -2.410596693794294e-05, -7.7139094201417813e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -7.713909420141783e-06, -9.6423867751772986e-06, -1.0606625452694918e-05, -3.8569547100708898e-06, -1.5427818840283559e-05, -7.713909420141783e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -9.6423867751772224e-07, -7.7139094201417813e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -9.6423867751772287e-07, -7.713909420141783e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -7.7139094201417796e-06, -2.3141728260425374e-05, -7.7139094201417796e-06, -7.713909420141783e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -7.7139094201417813e-06, -1.5427818840283566e-05, -3.8569547100708915e-06, -1.7356296195318894e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.2535102807730495e-05, -7.7139094201417813e-06, -1.5427818840283563e-05, -8.0996048911489207e-05, -7.7139094201417813e-06, -8.4853003621559509e-05, -7.713909420141783e-06, -7.713909420141783e-06, -1.5427818840283559e-05, -7.7139094201418267e-05, -1.5427818840283559e-05, -7.8103332878936202e-05, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -8.0996048911489207e-05, -7.7139094201418578e-05, -7.7139094201418199e-05, -7.7139094201418402e-05, -9.6423867751772266e-07, -3.8569547100708898e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -7.713909420141783e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -7.7139094201417813e-06, -9.6423867751773426e-06, -1.9284773550354618e-05, -1.5427818840283559e-05, -1.5427818840283563e-05, -7.7139094201417813e-06, -2.3141728260425398e-05, -2.8927160325532158e-06, -8.4853003621560106e-05, -1.5427818840283563e-05, -6.9425184781276618e-05, -9.6423867751772266e-07, -9.6423867751772287e-07, -2.410596693794318e-05, -1.5427818840283566e-05, -7.7139094201417813e-06, -6.7496707426241005e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -6.9425184781276591e-05, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -6.9425184781276591e-05, -7.713909420141783e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -9.6423867751772884e-06, -2.8927160325531743e-06, -7.713909420141783e-06, -1.4463580162765873e-05, -9.6423867751772287e-07, -7.713909420141783e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -5.7854320651063809e-06, -2.8927160325532099e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283563e-05, -2.5070205615460922e-05, -2.2177489582907883e-05, -9.6423867751772287e-07, -1.5427818840283563e-05, -7.7139094201417813e-06, -5.7854320651063927e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.7139094201418402e-05, -7.7139094201418199e-05, -0.00015620666575787289, -7.7139094201418199e-05, -7.7139094201418267e-05, -3.8569547100708898e-06, -1.9284773550354457e-06, -7.7139094201417779e-06, -8.6781480976595094e-06, -3.8569547100708898e-06, -1.0606625452694974e-05, -9.6423867751772266e-07, -9.6423867751772287e-07, 0.003912880553366937, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.5427818840283559e-05, -7.7139094201417813e-06, -9.6423867751772287e-07, -0.00015620666575787254, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.8927160325531743e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -3.8569547100708898e-06, -1.1570864130212738e-05, 0.0019564402766834681, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.7356296195319127e-05, -9.6423867751772266e-07, -3.8569547100708881e-06, -1.9284773550354453e-06, -1.5427818840283563e-05, -1.5427818840283563e-05, -4.8211933875886485e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -5.7854320651063707e-06, -8.1960287589006559e-05, -9.6423867751772287e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.5427818840283563e-05, -1.5427818840283563e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -4.4354979165815563e-05, -9.6423867751772562e-06, -9.6423867751772266e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -7.7139094201417796e-06, -1.5427818840283563e-05, -7.7139094201417779e-06, -1.5427818840283563e-05, -7.7139094201417779e-06, -7.7139094201417779e-06, -0.00029602127399794162, -7.7139094201417813e-06, -0.00019284773550354422, -7.713909420141783e-06, -1.9284773550354449e-06, -5.7854320651063141e-05, -1.1570864130212741e-05, -4.8211933875886307e-06, -5.7854320651063778e-05, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -0.00015620666575787254, -7.7139094201417813e-06, -7.7139094201417813e-06, -0.00022081065715155981, -2.8927160325531726e-06, -0.00019284773550354439, -7.7139094201417813e-06, -7.713909420141783e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -1.5427818840283563e-05, -1.5427818840283563e-05, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -0.00015620666575787289, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.6034444292978437e-05, -9.2566913041701606e-05, -7.713909420141783e-06, -6.8460946103758181e-05, -1.1570864130212741e-05, -1.1570864130212741e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751773359e-06, -7.7139094201417796e-06, -9.6423867751773121e-06, -2.0249012227872315e-05, -7.713909420141783e-06, -4.8211933875886612e-06, -2.2177489582907788e-05, -7.7139094201417813e-06, -1.1570864130212741e-05, -2.8927160325532108e-06, -4.8211933875886307e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772287e-07, -7.7139094201417796e-06, -1.1570864130212768e-05, -5.7854320651063334e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.5427818840283559e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -1.5427818840283559e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -7.7139094201417779e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -7.713909420141783e-06, -1.5427818840283559e-05, -2.3141728260425388e-05, -7.713909420141783e-06, -1.5427818840283559e-05, -1.5427818840283556e-05, -7.713909420141783e-06, -7.713909420141783e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -8.6781480976594739e-06, -3.2784115035602629e-05, -1.9284773550354445e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -8.678148097659567e-06, -2.5070205615460983e-05, -7.7139094201417796e-06, -7.713909420141783e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -9.6423867751772266e-07, -1.9284773550354457e-06, -1.6392057517801213e-05, -2.8927160325531584e-05, -1.1570864130212701e-05, -5.7854320651063809e-06, -9.6423867751772287e-07, -3.8569547100708906e-06, -1.5427818840283563e-05, -2.3141728260425384e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -1.5427818840283563e-05, -1.5427818840283563e-05, -3.8569547100708906e-06, -1.1570864130212699e-05, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -8.6781480976594569e-06, -4.8211933875886544e-06, -7.7139094201417813e-06, -1.5427818840283566e-05, -6.9425184781276536e-05, -3.8569547100708898e-06, -9.6423867751772287e-07, -5.7854320651063127e-05, -7.7139094201417813e-06, -4.6283456520851467e-05, -4.6283456520850776e-05, -4.8211933875885873e-05, -4.6283456520851467e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -6.749670742624106e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -5.8818559328580988e-05, -1.9284773550354449e-06, -6.9425184781276591e-05, -6.9425184781276591e-05, -7.7139094201417813e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -6.9425184781276618e-05, -6.9425184781276482e-05, -7.713909420141783e-06, 0.0019564402766834681, -1.9284773550354457e-06, -1.9284773550354453e-06, -1.5427818840283566e-05, -7.713909420141783e-06, -7.713909420141783e-06, -2.892716032553187e-06, -1.5427818840283566e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.690598709053173e-05, -9.6423867751771976e-05, -2.4105966937943069e-06, -4.8211933875886133e-07, -1.4463580162765914e-06, -4.8211933875886442e-06, -3.8569547100709167e-05, -9.6423867751772266e-07, -4.4354979165815455e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100709167e-05, -3.8569547100709167e-05, -3.8569547100708898e-06, -0.00010944108989826137, -9.6423867751772245e-07, -9.6423867751773264e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708889e-06, -2.4105966937943069e-06, -1.4463580162765922e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.231790081383007e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297352e-06, -3.8569547100708915e-06, -7.2317900813829824e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886349e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -8.1960287589006233e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.2052983468971528e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.8211933875886366e-06, -5.3033127263474626e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212728e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594891e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652475e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.0498024455744603e-05, -3.8569547100708906e-06, -4.2426501810779795e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709025e-05, -7.7139094201417796e-06, -3.9051666439468047e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.0498024455744603e-05, -3.8569547100709167e-05, -3.8569547100708998e-05, -3.85695471007091e-05, -4.8211933875886122e-07, -1.9284773550354449e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -4.821193387588651e-06, -9.6423867751772817e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -1.1570864130212741e-05, -1.4463580162766136e-06, -4.2426501810780087e-05, -7.7139094201417813e-06, -3.4712592390638092e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971568e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120426e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390638078e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390638078e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886324e-06, -1.4463580162765925e-06, -3.8569547100708915e-06, -7.2317900813829604e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325532006e-06, -1.4463580162766102e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730464e-05, -1.1088744791453887e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532074e-06, -9.6423867751772266e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.85695471007091e-05, -3.8569547100708998e-05, -7.8103332878936337e-05, -3.8569547100708998e-05, -3.8569547100709025e-05, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297268e-06, -1.9284773550354449e-06, -5.3033127263474922e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -7.713909420141783e-06, 0.0019602972313935386, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936161e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162765922e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, 0.001958368754038502, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976595061e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943179e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325531642e-06, -4.0980143794503279e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.217748958290767e-05, -4.8211933875886137e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897171, -3.8569547100708906e-06, -9.6423867751772573e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -2.8927160325531652e-05, -5.7854320651063741e-06, -2.4105966937943086e-06, -2.8927160325531977e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936161e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577944, -1.4463580162765918e-06, -9.6423867751772654e-05, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936337e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489229e-05, -4.6283456520850979e-05, -3.8569547100708915e-06, -3.4230473051879003e-05, -5.7854320651063673e-06, -5.7854320651063673e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886544e-06, -3.8569547100708898e-06, -4.8211933875886442e-06, -1.0124506113936151e-05, -3.8569547100708915e-06, -2.4105966937943246e-06, -1.1088744791453835e-05, -3.8569547100708906e-06, -5.7854320651063741e-06, -1.4463580162766105e-06, -2.4105966937943077e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.785432065106369e-06, -2.8927160325532057e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.1570864130212735e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297564e-06, -1.6392057517801348e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488297564e-06, -1.2535102807730473e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -8.1960287589005759e-06, -1.4463580162765839e-05, -5.7854320651063707e-06, -2.8927160325532006e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417813e-06, -1.1570864130212736e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651063707e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.3390740488297496e-06, -2.4105966937943204e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.4712592390638038e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531652e-05, -3.8569547100708906e-06, -2.3141728260425822e-05, -2.3141728260425476e-05, -2.4105966937943052e-05, -2.3141728260425822e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.3748353713120462e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.9409279664290623e-05, -9.6423867751772245e-07, -3.4712592390638078e-05, -3.4712592390638078e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390638092e-05, -3.4712592390638024e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765922e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6905987090531811e-05, -9.6423867751772085e-05, -2.4105966937943102e-06, -4.8211933875886133e-07, -1.4463580162765942e-06, -4.821193387588651e-06, -3.8569547100709303e-05, -9.6423867751772287e-07, -4.4354979165815469e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100709303e-05, -3.8569547100709303e-05, -3.8569547100708898e-06, -0.00010944108989826124, -9.6423867751772245e-07, -9.6423867751773372e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708889e-06, -2.4105966937943102e-06, -1.4463580162765952e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813830155e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.3390740488297285e-06, -3.8569547100708915e-06, -7.2317900813829892e-06, -9.6423867751772266e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.713909420141783e-06, -4.82119338758864e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -8.1960287589006183e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -1.5427818840283556e-05, -1.2052983468971541e-05, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.8211933875886417e-06, -5.3033127263474592e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -3.8569547100708915e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212752e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976595874e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038651814e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -4.049802445574463e-05, -3.8569547100708915e-06, -4.2426501810779728e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709066e-05, -7.7139094201417813e-06, -3.9051666439468074e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417796e-06, -1.9284773550354453e-06, -4.049802445574463e-05, -3.8569547100709303e-05, -3.8569547100709039e-05, -3.8569547100709133e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886578e-06, -9.6423867751772918e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -3.8569547100708906e-06, -1.1570864130212763e-05, -1.4463580162766166e-06, -4.242650181078006e-05, -7.7139094201417813e-06, -3.4712592390638024e-05, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.205298346897148e-05, -7.713909420141783e-06, -3.8569547100708915e-06, -3.3748353713120401e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.4712592390638024e-05, -9.6423867751772266e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390638011e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886374e-06, -1.4463580162765952e-06, -3.8569547100708915e-06, -7.2317900813829689e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325532057e-06, -1.4463580162766132e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -1.2535102807730336e-05, -1.1088744791453872e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532124e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709133e-05, -3.8569547100709039e-05, -7.8103332878936391e-05, -3.8569547100709039e-05, -3.8569547100709066e-05, -1.9284773550354449e-06, -9.6423867751772287e-07, -3.8569547100708889e-06, -4.33907404882972e-06, -1.9284773550354449e-06, -5.3033127263474888e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -7.713909420141783e-06, -3.8569547100708915e-06, 0.0019602972313935386, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936215e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162765952e-06, -4.8211933875886133e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -5.7854320651063842e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976594925e-06, -4.8211933875886144e-07, -1.928477355035444e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -7.713909420141783e-06, -2.4105966937943208e-06, -1.9284773550354457e-06, -9.6423867751772266e-07, -2.8927160325531896e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.2177489582907656e-05, -4.8211933875886205e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00014801063699897203, -3.8569547100708906e-06, -9.6423867751772722e-05, -3.8569547100708915e-06, -9.6423867751772266e-07, -2.8927160325531692e-05, -5.7854320651063825e-06, -2.410596693794317e-06, -2.8927160325532021e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936215e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -0.00011040532857577942, -1.4463580162765944e-06, -9.6423867751772803e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936391e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.3017222146489225e-05, -4.628345652085106e-05, -3.8569547100708915e-06, -3.4230473051878942e-05, -5.7854320651063792e-06, -5.7854320651063792e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886595e-06, -3.8569547100708898e-06, -4.8211933875886493e-06, -1.0124506113936151e-05, -3.8569547100708915e-06, -2.4105966937943272e-06, -1.1088744791453821e-05, -3.8569547100708915e-06, -5.7854320651063825e-06, -1.4463580162766136e-06, -2.410596693794317e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063199e-06, -2.8927160325531633e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.1570864130212762e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.3390740488298055e-06, -1.6392057517801321e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488297496e-06, -1.2535102807730481e-05, -3.8569547100708906e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -8.1960287589005691e-06, -1.4463580162765853e-05, -5.7854320651063825e-06, -2.8927160325532057e-06, -4.8211933875886144e-07, -1.9284773550354457e-06, -7.7139094201417813e-06, -1.1570864130212757e-05, -3.8569547100708898e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -5.7854320651063817e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.3390740488297971e-06, -2.4105966937943238e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.471259239063797e-05, -1.9284773550354453e-06, -4.8211933875886144e-07, -2.8927160325531692e-05, -3.8569547100708915e-06, -2.3141728260425866e-05, -2.3141728260425517e-05, -2.4105966937943082e-05, -2.3141728260425866e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.3748353713120408e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.9409279664290657e-05, -9.6423867751772266e-07, -3.4712592390638011e-05, -3.4712592390638024e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.4712592390638024e-05, -3.4712592390637956e-05, 0.0019602972313935386, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765952e-06, -7.713909420141783e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -1.2113248386316493e-05, -1.2052983468971531e-05, -3.0132458672428942e-07, -6.0264917344857666e-08, -1.8079475203457475e-07, -6.0264917344858264e-07, -4.821193387588673e-06, -1.2052983468971536e-07, -5.5443723957269217e-06, -6.0264917344857679e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.821193387588673e-06, -4.821193387588673e-06, -4.8211933875886122e-07, -1.3680136237282638e-05, -1.2052983468971531e-07, -1.2052983468971692e-05, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886101e-07, -3.0132458672428942e-07, -1.8079475203457488e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857666e-08, -9.0397376017287841e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610371436e-07, -4.8211933875886144e-07, -9.0397376017287524e-07, -1.2052983468971533e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344858127e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344857666e-08, -4.8211933875886144e-07, -1.0245035948625773e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6423867751772266e-07, -1.9284773550354445e-06, -1.5066229336214452e-06, -4.8211933875886144e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -6.0264917344858148e-07, -6.6291409079343197e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -1.2052983468971533e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.4463580162765978e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.0847685122074308e-06, -2.4105966937943072e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -7.8344392548315699e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -5.0622530569680805e-06, -4.8211933875886144e-07, -5.3033127263474592e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -4.8211933875886434e-06, -9.6423867751772266e-07, -4.881458304933516e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -5.0622530569680788e-06, -4.821193387588673e-06, -4.82119338758864e-06, -4.8211933875886518e-06, -6.0264917344857666e-08, -2.4105966937943061e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -6.0264917344858349e-07, -1.2052983468971636e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -4.8211933875886133e-07, -1.4463580162765992e-06, -1.807947520345775e-07, -5.3033127263475015e-06, -9.6423867751772266e-07, -4.3390740488297412e-06, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.50662293362145e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.2185442141400448e-07, -2.4105966937943061e-07, -1.2052983468971533e-07, -4.3390740488297412e-06, -1.2052983468971533e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297395e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344858095e-07, -1.8079475203457488e-07, -4.8211933875886144e-07, -9.0397376017287259e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -3.6158950406914594e-07, -1.8079475203457713e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -1.5668878509663068e-06, -1.3860930989317306e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -3.6158950406915251e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886518e-06, -4.82119338758864e-06, -9.7629166098670591e-06, -4.82119338758864e-06, -4.8211933875886434e-06, -2.4105966937943061e-07, -1.2052983468971536e-07, -4.8211933875886112e-07, -5.4238425610371627e-07, -2.4105966937943061e-07, -6.6291409079343547e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, 0.00024545900834560644, -6.0264917344857666e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.7629166098670388e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.8079475203457488e-07, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943061e-07, -7.2317900813829972e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.0847685122074334e-06, -6.0264917344857679e-08, -2.4105966937943051e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.0132458672429074e-07, -2.4105966937943072e-07, -1.2052983468971533e-07, -3.6158950406914965e-07, -5.1225179743129167e-06, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, -2.7721861978634503e-06, -6.0264917344857883e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.8501329624871555e-05, -4.8211933875886133e-07, -1.2052983468971607e-05, -4.8211933875886144e-07, -1.2052983468971533e-07, -3.6158950406914751e-06, -7.2317900813829972e-07, -3.0132458672429026e-07, -3.6158950406914912e-06, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670388e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.380066607197239e-05, -1.8079475203457477e-07, -1.2052983468971617e-05, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670591e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.6271527683111527e-06, -5.7854320651063995e-06, -4.8211933875886144e-07, -4.278809131484866e-06, -7.2317900813829909e-07, -7.2317900813829909e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.026491734485837e-07, -4.8211933875886122e-07, -6.0264917344858243e-07, -1.2655632642420184e-06, -4.8211933875886144e-07, -3.0132458672429153e-07, -1.3860930989317247e-06, -4.8211933875886144e-07, -7.2317900813829972e-07, -1.8079475203457718e-07, 0.00024521794867622682, -1.2052983468971531e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -7.2317900813829909e-07, -3.615895040691524e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.4463580162765986e-06, -4.8211933875886144e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.423842561037169e-07, -2.0490071897251635e-06, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -5.423842561037169e-07, -1.5668878509663083e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.0245035948625694e-06, -1.8079475203457354e-06, -7.231790081382993e-07, -3.6158950406914594e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -9.6423867751772266e-07, -1.4463580162765984e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -7.2317900813829962e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -5.4238425610371606e-07, -3.0132458672429111e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.3390740488297217e-06, -2.4105966937943061e-07, -6.0264917344857679e-08, -3.6158950406914743e-06, -4.8211933875886144e-07, -2.8927160325532408e-06, -2.8927160325531972e-06, -3.0132458672428899e-06, -2.8927160325532408e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.2185442141400611e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -3.6761599580363473e-06, -1.2052983468971533e-07, -4.3390740488297395e-06, -4.3390740488297412e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.3390740488297412e-06, -4.3390740488297319e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.8079475203457488e-07, -9.6423867751772287e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -1.211324838631652e-05, -1.2052983468971553e-05, -3.0132458672428973e-07, -6.0264917344857653e-08, -1.8079475203457535e-07, -6.0264917344858307e-07, -4.8211933875886798e-06, -1.2052983468971531e-07, -5.5443723957269082e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886798e-06, -4.8211933875886789e-06, -4.8211933875886112e-07, -1.3680136237282609e-05, -1.2052983468971528e-07, -1.2052983468971714e-05, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.8211933875886091e-07, 0.00024521794867622687, -1.8079475203457546e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857653e-08, -9.0397376017287979e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -5.4238425610371225e-07, -4.8211933875886133e-07, -9.0397376017287725e-07, -1.2052983468971531e-07, -6.026491734485764e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971525e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -9.6423867751772245e-07, -6.0264917344858201e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -1.0245035948625709e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -1.928477355035444e-06, -1.5066229336214479e-06, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -2.4105966937943056e-07, -4.8211933875886133e-07, -6.0264917344858222e-07, -6.6291409079343166e-07, -2.4105966937943056e-07, -9.6423867751772202e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -9.6423867751772224e-07, -9.6423867751772224e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886112e-07, -1.4463580162766026e-06, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -1.0847685122074266e-06, -2.4105966937943066e-07, -6.0264917344857653e-08, -1.2052983468971533e-07, -7.8344392548315742e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -5.0622530569680856e-06, -4.8211933875886122e-07, -5.3033127263474575e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772224e-07, -4.8211933875886501e-06, -9.6423867751772245e-07, -4.8814583049335143e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772224e-07, -2.4105966937943056e-07, -5.0622530569680847e-06, -4.8211933875886798e-06, -4.8211933875886298e-06, -4.821193387588662e-06, -6.0264917344857653e-08, -2.4105966937943045e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -6.026491734485764e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.8211933875886122e-07, -6.0264917344858413e-07, -1.2052983468971653e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -4.8211933875886122e-07, -1.4463580162766041e-06, -1.8079475203457813e-07, -5.3033127263474956e-06, -9.6423867751772245e-07, -4.3390740488297234e-06, -6.0264917344857653e-08, -6.0264917344857666e-08, -1.5066229336214439e-06, -9.6423867751772266e-07, -4.8211933875886122e-07, -4.218544214140101e-07, -2.4105966937943056e-07, -1.2052983468971531e-07, -4.3390740488297217e-06, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.3390740488297217e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -6.0264917344858159e-07, -1.8079475203457549e-07, -4.8211933875886133e-07, -9.0397376017287397e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -6.0264917344857666e-08, -3.6158950406915299e-07, -1.807947520345713e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.5668878509663106e-06, -1.3860930989317277e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.6158950406915378e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.821193387588662e-06, -4.8211933875886298e-06, -9.762916609867076e-06, -4.8211933875886383e-06, -4.8211933875886501e-06, -2.4105966937943056e-07, -1.2052983468971531e-07, -4.8211933875886101e-07, -5.4238425610371119e-07, -2.4105966937943056e-07, -6.6291409079343504e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, 0.00024545900834560633, -2.4105966937943061e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -9.7629166098670557e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -1.8079475203457554e-07, -6.0264917344857653e-08, -1.2052983468971533e-07, -1.2052983468971533e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -2.4105966937943056e-07, -7.2317900813830237e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -1.0847685122074287e-06, -6.0264917344857679e-08, -2.4105966937943045e-07, -1.2052983468971528e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.0132458672429122e-07, -2.4105966937943066e-07, -1.2052983468971531e-07, -3.6158950406915103e-07, -5.1225179743129167e-06, -6.0264917344857666e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857666e-08, -2.7721861978634448e-06, -6.0264917344857936e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.8501329624871626e-05, -4.8211933875886122e-07, -1.2052983468971629e-05, -4.8211933875886133e-07, -1.2052983468971531e-07, -3.6158950406914722e-06, -7.2317900813830216e-07, -3.0132458672429063e-07, -3.6158950406915132e-06, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.7629166098670557e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.3800666071972352e-05, -1.8079475203457538e-07, -1.2052983468971641e-05, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971528e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.762916609867076e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.6271527683111519e-06, -5.7854320651064173e-06, -4.8211933875886133e-07, -4.2788091314848431e-06, -7.2317900813830152e-07, -7.2317900813830152e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -6.0264917344858444e-07, -4.8211933875886112e-07, -6.0264917344858349e-07, -1.2655632642420205e-06, -4.8211933875886133e-07, -3.0132458672429185e-07, -1.3860930989317201e-06, -4.8211933875886133e-07, -7.2317900813830216e-07, -1.8079475203457779e-07, -3.0132458672429058e-07, -1.2052983468971528e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -4.8211933875886112e-07, -7.2317900813830184e-07, -3.6158950406915362e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772224e-07, -1.4463580162766035e-06, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610371479e-07, -2.0490071897251546e-06, -1.2052983468971531e-07, -4.8211933875886112e-07, -4.8211933875886133e-07, -5.4238425610371479e-07, -1.5668878509662735e-06, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886112e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857653e-08, -6.026491734485764e-08, -6.0264917344857653e-08, -1.2052983468971533e-07, -1.0245035948625671e-06, -1.8079475203457382e-06, -7.2317900813830216e-07, -3.6158950406915299e-07, -6.0264917344857666e-08, -2.4105966937943066e-07, -9.6423867751772245e-07, -1.4463580162766033e-06, -4.8211933875886112e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -7.2317900813830205e-07, -4.8211933875886133e-07, -6.026491734485764e-08, -1.2052983468971528e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -5.4238425610371394e-07, -3.0132458672429143e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.3390740488297166e-06, -2.4105966937943056e-07, -6.0264917344857666e-08, -3.6158950406914722e-06, -4.8211933875886133e-07, -2.8927160325532506e-06, -2.8927160325532074e-06, -3.0132458672428954e-06, -2.8927160325532506e-06, -2.4105966937943056e-07, -2.4105966937943056e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -6.026491734485764e-08, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.2185442141400349e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -3.6761599580363363e-06, -1.2052983468971531e-07, -4.3390740488297217e-06, -4.3390740488297217e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.3390740488297234e-06, -4.3390740488297149e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.8079475203457546e-07, -9.6423867751772266e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8452993545266014e-05, -4.8211933875886151e-05, -1.2052983468971594e-06, -2.4105966937943061e-07, -7.2317900813830015e-07, -2.410596693794334e-06, -1.9284773550354726e-05, -4.8211933875886122e-07, -2.217748958290766e-05, -2.4105966937943066e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354726e-05, -1.9284773550354726e-05, -1.9284773550354449e-06, -5.4720544949130469e-05, -4.8211933875886112e-07, -4.8211933875886795e-05, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354453e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.928477355035444e-06, -1.2052983468971594e-06, -7.2317900813830057e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943061e-07, -3.6158950406915179e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.1695370244148541e-06, -1.9284773550354453e-06, -3.6158950406915052e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -3.8569547100708906e-06, -2.4105966937943289e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -2.4105966937943061e-07, -1.9284773550354453e-06, -4.0980143794502956e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -6.0264917344857841e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -1.9284773550354453e-06, -2.4105966937943297e-06, -2.6516563631737253e-06, -9.6423867751772224e-07, -3.8569547100708881e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886112e-07, -1.9284773550354449e-06, -1.9284773550354453e-06, -2.4105966937943056e-07, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -5.7854320651064012e-06, -1.9284773550354445e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -9.6423867751772287e-07, -4.3390740488298005e-06, -9.6423867751772287e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -3.1337757019325632e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -2.0249012227872329e-05, -1.9284773550354453e-06, -2.1213250905389823e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -1.9284773550354604e-05, -3.8569547100708898e-06, -1.9525833219734091e-05, -2.4105966937943061e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -2.0249012227872329e-05, -1.9284773550354726e-05, -1.9284773550354587e-05, -1.9284773550354638e-05, -2.4105966937943061e-07, -9.6423867751772245e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -2.4105966937943056e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.9284773550354449e-06, -2.4105966937943374e-06, -4.8211933875886629e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -1.9284773550354449e-06, -5.7854320651064063e-06, -7.2317900813831126e-07, -2.1213250905389989e-05, -3.8569547100708898e-06, -1.7356296195318934e-05, -2.4105966937943061e-07, -2.4105966937943072e-07, -6.0264917344857231e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.6874176856560167e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -1.7356296195318927e-05, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.7356296195318927e-05, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -2.410596693794328e-06, -7.2317900813830057e-07, -1.9284773550354453e-06, -3.6158950406914946e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.4463580162766092e-06, -7.2317900813830968e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -6.2675514038651145e-06, -5.5443723957269175e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -1.9284773550354449e-06, -1.4463580162766124e-06, -4.8211933875886133e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -1.9284773550354638e-05, -1.9284773550354587e-05, -3.9051666439468291e-05, -1.9284773550354587e-05, -1.9284773550354604e-05, -9.6423867751772224e-07, -4.8211933875886144e-07, -1.928477355035444e-06, -2.1695370244148498e-06, -9.6423867751772224e-07, -2.6516563631737402e-06, -2.4105966937943061e-07, -2.4105966937943066e-07, -3.8569547100708915e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -2.4105966937943061e-07, 0.00098111285437428651, -9.6423867751772287e-07, -3.8569547100708898e-06, -1.9284773550354449e-06, -2.4105966937943072e-07, -3.9051666439468209e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -7.2317900813830057e-07, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -2.4105966937943061e-07, -9.6423867751772224e-07, -2.8927160325532048e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -4.3390740488297268e-06, -2.4105966937943066e-07, -9.6423867751772139e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.2052983468971647e-06, -9.6423867751772266e-07, -4.8211933875886133e-07, -1.4463580162766016e-06, -2.0490071897251667e-05, -2.4105966937943072e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943072e-07, -1.1088744791453794e-05, -2.4105966937943187e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -7.4005318499486327e-05, -1.9284773550354449e-06, -4.8211933875886469e-05, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.4463580162765887e-05, -2.892716032553204e-06, -1.2052983468971632e-06, -1.4463580162766051e-05, -2.4105966937943072e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.9051666439468209e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -5.5202664287889586e-05, -7.2317900813830015e-07, -4.821193387588651e-05, -1.9284773550354449e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.9051666439468291e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -6.5086110732446092e-06, -2.3141728260425625e-05, -1.9284773550354453e-06, -1.71152365259394e-05, -2.8927160325532023e-06, 0.00097918437701925102, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.410596693794339e-06, -1.9284773550354449e-06, -2.4105966937943331e-06, -5.0622530569680771e-06, -1.9284773550354453e-06, -1.2052983468971678e-06, -5.5443723957268921e-06, -1.9284773550354453e-06, -2.892716032553204e-06, -7.2317900813830999e-07, -1.2052983468971627e-06, -4.8211933875886112e-07, -2.4105966937943061e-07, -2.4105966937943072e-07, -1.9284773550354449e-06, -2.8927160325531464e-06, -1.4463580162765804e-06, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354445e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -1.9284773550354457e-06, -9.6423867751772266e-07, -1.9284773550354445e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -5.7854320651064046e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.1695370244149138e-06, -8.1960287589006301e-06, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354457e-06, -2.1695370244148642e-06, -6.2675514038652492e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943072e-07, -2.4105966937943056e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.098014379450271e-06, -7.2317900813829468e-06, -2.892716032553204e-06, -1.4463580162766092e-06, -2.4105966937943072e-07, -9.6423867751772266e-07, -3.8569547100708898e-06, -5.7854320651064037e-06, -1.9284773550354445e-06, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -2.8927160325532031e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.1695370244149095e-06, -1.2052983468971666e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -1.73562961953189e-05, -9.6423867751772245e-07, -2.4105966937943072e-07, -1.4463580162765887e-05, -1.9284773550354453e-06, -1.1570864130212982e-05, -1.1570864130212809e-05, -1.2052983468971568e-05, -1.1570864130212982e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.4105966937943066e-07, -2.4105966937943061e-07, -1.687417685656015e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4704639832145349e-05, -4.8211933875886122e-07, -1.7356296195318927e-05, -1.7356296195318927e-05, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.7356296195318934e-05, -1.73562961953189e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.2317900813830057e-07, -3.8569547100708915e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8452993545266041e-05, -4.8211933875886178e-05, -1.2052983468971594e-06, -2.4105966937943061e-07, -7.2317900813830057e-07, -2.410596693794334e-06, -1.9284773550354719e-05, -4.8211933875886122e-07, -2.2177489582907646e-05, -2.4105966937943066e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354719e-05, -1.9284773550354719e-05, -1.9284773550354449e-06, -5.4720544949130442e-05, -4.8211933875886112e-07, -4.8211933875886822e-05, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354453e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.928477355035444e-06, -1.2052983468971594e-06, -7.2317900813830099e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943061e-07, -3.6158950406915196e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.1695370244148524e-06, -1.9284773550354453e-06, -3.6158950406915069e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -3.8569547100708906e-06, -2.4105966937943285e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -2.4105966937943061e-07, -1.9284773550354453e-06, -4.0980143794502964e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -6.0264917344857875e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -1.9284773550354453e-06, -2.4105966937943293e-06, -2.6516563631737253e-06, -9.6423867751772224e-07, -3.8569547100708881e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886112e-07, -1.9284773550354449e-06, -1.9284773550354453e-06, -2.4105966937943056e-07, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -5.7854320651064046e-06, -1.9284773550354445e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -9.6423867751772287e-07, -4.3390740488297971e-06, -9.6423867751772287e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -3.1337757019325598e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -2.0249012227872329e-05, -1.9284773550354453e-06, -2.1213250905389823e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -1.9284773550354601e-05, -3.8569547100708898e-06, -1.9525833219734084e-05, -2.4105966937943061e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -2.0249012227872315e-05, -1.9284773550354719e-05, -1.9284773550354587e-05, -1.9284773550354634e-05, -2.4105966937943061e-07, -9.6423867751772245e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -2.4105966937943056e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.9284773550354449e-06, -2.4105966937943374e-06, -4.8211933875886629e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -1.9284773550354449e-06, -5.7854320651064097e-06, -7.2317900813831169e-07, -2.1213250905389993e-05, -3.8569547100708898e-06, -1.7356296195318921e-05, -2.4105966937943061e-07, -2.4105966937943072e-07, -6.0264917344857265e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.6874176856560158e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -1.7356296195318914e-05, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.7356296195318914e-05, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -2.4105966937943272e-06, -7.2317900813830099e-07, -1.9284773550354453e-06, -3.6158950406914963e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.44635801627661e-06, -7.231790081383101e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -6.2675514038651094e-06, -5.5443723957269141e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -1.9284773550354449e-06, -1.4463580162766132e-06, -4.8211933875886133e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -1.9284773550354634e-05, -1.9284773550354587e-05, -3.9051666439468291e-05, -1.9284773550354587e-05, -1.9284773550354601e-05, -9.6423867751772224e-07, -4.8211933875886144e-07, -1.928477355035444e-06, -2.1695370244148481e-06, -9.6423867751772224e-07, -2.6516563631737402e-06, -2.4105966937943061e-07, -2.4105966937943066e-07, -3.8569547100708915e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -2.4105966937943061e-07, -9.6423867751772287e-07, 0.00098111285437428651, -3.8569547100708898e-06, -1.9284773550354449e-06, -2.4105966937943072e-07, -3.9051666439468202e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -7.2317900813830099e-07, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -2.4105966937943061e-07, -9.6423867751772224e-07, -2.8927160325532065e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -4.3390740488297234e-06, -2.4105966937943066e-07, -9.6423867751772139e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.2052983468971647e-06, -9.6423867751772266e-07, -4.8211933875886133e-07, -1.4463580162766024e-06, -2.0490071897251667e-05, -2.4105966937943072e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943072e-07, -1.1088744791453788e-05, -2.4105966937943187e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -7.4005318499486381e-05, -1.9284773550354449e-06, -4.8211933875886496e-05, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.4463580162765894e-05, -2.8927160325532057e-06, -1.2052983468971627e-06, -1.4463580162766058e-05, -2.4105966937943072e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.9051666439468202e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -5.5202664287889559e-05, -7.2317900813830057e-07, -4.8211933875886537e-05, -1.9284773550354449e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.9051666439468291e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -6.5086110732446092e-06, -2.3141728260425639e-05, -1.9284773550354453e-06, -1.7115236525939386e-05, 0.00097918437701925102, -2.8927160325532023e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943382e-06, -1.9284773550354449e-06, -2.4105966937943331e-06, -5.0622530569680771e-06, -1.9284773550354453e-06, -1.2052983468971678e-06, -5.5443723957268887e-06, -1.9284773550354453e-06, -2.8927160325532057e-06, -7.2317900813831042e-07, -1.2052983468971627e-06, -4.8211933875886112e-07, -2.4105966937943061e-07, -2.4105966937943072e-07, -1.9284773550354449e-06, -2.8927160325531417e-06, -1.4463580162765812e-06, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354445e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -1.9284773550354457e-06, -9.6423867751772266e-07, -1.9284773550354445e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -5.785432065106408e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.169537024414918e-06, -8.1960287589006301e-06, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354457e-06, -2.1695370244148625e-06, -6.2675514038652475e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943072e-07, -2.4105966937943056e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.0980143794502719e-06, -7.2317900813829502e-06, -2.8927160325532057e-06, -1.44635801627661e-06, -2.4105966937943072e-07, -9.6423867751772266e-07, -3.8569547100708898e-06, -5.7854320651064071e-06, -1.9284773550354445e-06, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -2.8927160325532048e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.1695370244149138e-06, -1.2052983468971661e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -1.7356296195318887e-05, -9.6423867751772245e-07, -2.4105966937943072e-07, -1.4463580162765894e-05, -1.9284773550354453e-06, -1.1570864130212989e-05, -1.1570864130212816e-05, -1.2052983468971575e-05, -1.1570864130212989e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.4105966937943066e-07, -2.4105966937943061e-07, -1.6874176856560136e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4704639832145359e-05, -4.8211933875886122e-07, -1.7356296195318914e-05, -1.7356296195318914e-05, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.7356296195318921e-05, -1.7356296195318887e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.2317900813830099e-07, -3.8569547100708915e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -0.00019381197418106175, -0.00019284773550354238, -4.821193387588651e-06, -9.6423867751772245e-07, -2.8927160325532074e-06, -9.642386775177302e-06, -7.7139094201419093e-05, -1.9284773550354449e-06, -8.8709958331631737e-05, -9.6423867751772245e-07, -1.5427818840283556e-05, -1.5427818840283552e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201419093e-05, -7.7139094201419093e-05, -7.7139094201417779e-06, -0.00021888217979652413, -1.928477355035444e-06, -0.00019284773550354487, -1.5427818840283556e-05, -7.7139094201417796e-06, -7.7139094201417762e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.928477355035444e-06, -1.928477355035444e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -7.7139094201417779e-06, -4.821193387588651e-06, -2.8927160325531726e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -1.4463580162765938e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -8.6781480976595535e-06, -7.7139094201417796e-06, -1.4463580162765887e-05, -1.9284773550354445e-06, -9.6423867751772224e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -7.7139094201417796e-06, -1.5427818840283559e-05, -9.6423867751773409e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -9.6423867751772245e-07, -7.7139094201417796e-06, -1.6392057517801294e-05, -7.7139094201417796e-06, -7.7139094201417813e-06, -1.5427818840283559e-05, -3.0855637680567105e-05, -2.4105966937942859e-05, -7.7139094201417796e-06, -1.5427818840283559e-05, -1.5427818840283556e-05, -3.8569547100708881e-06, -7.7139094201417796e-06, -9.6423867751773443e-06, -1.0606625452694891e-05, -3.8569547100708881e-06, -1.5427818840283552e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.928477355035444e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772202e-07, -7.7139094201417796e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -1.5427818840283556e-05, -1.5427818840283556e-05, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -2.3141728260425659e-05, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -3.8569547100708898e-06, -1.7356296195319019e-05, -3.8569547100708898e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.2535102807730492e-05, -7.7139094201417796e-06, -1.5427818840283559e-05, -8.0996048911489342e-05, -7.7139094201417796e-06, -8.4853003621559238e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.5427818840283556e-05, -7.7139094201418619e-05, -1.5427818840283559e-05, -7.81033328789365e-05, -9.6423867751772245e-07, -1.5427818840283559e-05, -1.5427818840283556e-05, -3.8569547100708881e-06, -8.0996048911489315e-05, -7.7139094201419093e-05, -7.7139094201418565e-05, -7.7139094201418755e-05, -9.6423867751772245e-07, -3.8569547100708881e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -9.6423867751772202e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751773765e-06, -1.9284773550354604e-05, -1.5427818840283559e-05, -1.5427818840283559e-05, -7.7139094201417796e-06, -2.3141728260425388e-05, -2.8927160325531443e-06, -8.4853003621559875e-05, -1.5427818840283559e-05, -6.9425184781276834e-05, -9.6423867751772245e-07, -9.6423867751772266e-07, -2.4105966937943048e-05, -1.5427818840283559e-05, -7.7139094201417796e-06, -6.7496707426240701e-06, -3.8569547100708889e-06, -1.9284773550354445e-06, -6.9425184781276807e-05, -1.9284773550354445e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -6.9425184781276807e-05, 0.0019564402766834681, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751773359e-06, -2.8927160325531735e-06, -7.7139094201417796e-06, -1.4463580162765846e-05, -9.6423867751772266e-07, -7.7139094201417796e-06, -1.928477355035444e-06, -1.928477355035444e-06, -1.9284773550354445e-06, -9.6423867751772266e-07, -5.7854320651063775e-06, -2.8927160325532086e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -2.507020561546097e-05, -2.2177489582907944e-05, -9.6423867751772266e-07, -1.5427818840283563e-05, -7.7139094201417813e-06, -5.7854320651063046e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -7.7139094201418755e-05, -7.7139094201418565e-05, -0.00015620666575787346, -7.7139094201418565e-05, -7.7139094201418619e-05, -3.8569547100708881e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -8.6781480976595365e-06, -3.8569547100708881e-06, -1.0606625452694944e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, 0.0039128805533669379, -7.7139094201417813e-06, -9.6423867751772245e-07, -0.00015620666575787308, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.8927160325531726e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.8569547100708889e-06, -1.1570864130212701e-05, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -1.735629619531888e-05, -9.6423867751772245e-07, -3.8569547100708856e-06, -1.9284773550354449e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -4.8211933875886722e-06, -3.8569547100708898e-06, -1.9284773550354445e-06, -5.7854320651063453e-06, -8.1960287589006667e-05, -9.6423867751772266e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772266e-07, -4.4354979165815699e-05, -9.642386775177302e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -7.7139094201417762e-06, -1.5427818840283559e-05, -7.7139094201417762e-06, -7.7139094201417762e-06, -0.00029602127399794113, 0.0019564402766834685, -0.00019284773550354357, -7.7139094201417796e-06, -1.9284773550354445e-06, -5.7854320651063331e-05, -1.1570864130212694e-05, -4.8211933875886645e-06, -5.785432065106367e-05, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00015620666575787308, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00022081065715156008, -2.8927160325531709e-06, -0.00019284773550354374, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -1.9284773550354445e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -0.00015620666575787346, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.6034444292978437e-05, -9.2566913041701714e-05, -7.7139094201417796e-06, -6.846094610375848e-05, -1.1570864130212896e-05, -1.1570864130212896e-05, -7.7139094201417779e-06, -7.7139094201417796e-06, -9.6423867751773799e-06, -7.7139094201417796e-06, -9.6423867751773596e-06, -2.0249012227872322e-05, -7.7139094201417796e-06, -4.8211933875886849e-06, -2.2177489582907843e-05, -7.7139094201417796e-06, -1.1570864130212694e-05, -2.8927160325532091e-06, -4.8211933875886645e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417762e-06, -1.1570864130212735e-05, -5.7854320651063436e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -1.5427818840283552e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -1.5427818840283556e-05, -7.7139094201417813e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -2.3141728260425374e-05, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.5427818840283552e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -8.6781480976595332e-06, -3.2784115035602466e-05, -1.9284773550354445e-06, -7.7139094201417762e-06, -7.7139094201417813e-06, -8.6781480976595941e-06, -2.5070205615461017e-05, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -9.6423867751772202e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.6392057517801196e-05, -2.892716032553153e-05, -1.1570864130212694e-05, -5.7854320651063775e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -1.5427818840283559e-05, -2.3141728260425378e-05, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -1.1570864130212694e-05, -7.7139094201417796e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -8.6781480976595196e-06, -4.821193387588651e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -6.9425184781276536e-05, -3.8569547100708881e-06, -9.6423867751772266e-07, -5.785432065106306e-05, -7.7139094201417796e-06, -4.6283456520851447e-05, -4.6283456520850762e-05, -4.821193387588571e-05, -4.6283456520851447e-05, -3.8569547100708881e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.7496707426241304e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -5.8818559328581164e-05, -1.9284773550354449e-06, -6.9425184781276807e-05, -6.9425184781276807e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -6.9425184781276834e-05, -6.9425184781276699e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.8927160325531828e-06, -1.5427818840283559e-05, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6905987090532218e-05, -9.6423867751772491e-05, -2.4105966937943213e-06, -4.8211933875886122e-07, -1.4463580162766054e-06, -4.8211933875886425e-06, -3.8569547100709493e-05, -9.6423867751772245e-07, -4.4354979165815265e-05, -4.8211933875886133e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100709493e-05, -3.8569547100709493e-05, -3.8569547100708889e-06, -0.0001094410898982608, -9.6423867751772224e-07, -9.6423867751773779e-05, -7.7139094201417779e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708881e-06, -2.4105966937943213e-06, -1.4463580162766054e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -7.2317900813830459e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488296946e-06, -3.8569547100708906e-06, -7.2317900813830205e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886629e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -8.1960287589005827e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.2052983468971594e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -4.8211933875886645e-06, -5.3033127263474473e-06, -1.9284773550354445e-06, -7.7139094201417762e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.1570864130212843e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -8.6781480976594061e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -9.6423867751772266e-07, -6.2675514038651196e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.0498024455744657e-05, -3.8569547100708906e-06, -4.2426501810779592e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -3.8569547100709249e-05, -7.7139094201417796e-06, -3.9051666439468209e-05, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.0498024455744657e-05, -3.8569547100709493e-05, -3.8569547100709215e-05, -3.8569547100709316e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886798e-06, -9.6423867751772749e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -1.1570864130212845e-05, -1.44635801627657e-06, -4.2426501810779944e-05, -7.7139094201417796e-06, -3.471259239063776e-05, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.2052983468971634e-05, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.3748353713120291e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390637746e-05, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.4712592390637746e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886595e-06, -1.4463580162766054e-06, -3.8569547100708906e-06, -7.2317900813830002e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -2.8927160325532264e-06, -1.4463580162766234e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.2535102807730488e-05, -1.1088744791453811e-05, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325531667e-06, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100709316e-05, -3.8569547100709215e-05, -7.8103332878936676e-05, -3.8569547100709215e-05, -3.8569547100709249e-05, -1.9284773550354445e-06, -9.6423867751772266e-07, -3.8569547100708881e-06, -4.3390740488296844e-06, -1.9284773550354445e-06, -5.303312726347477e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417813e-06, 0.0019602972313935386, -4.8211933875886133e-07, -7.8103332878936486e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4463580162766054e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651064249e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -8.6781480976593892e-06, -4.8211933875886133e-07, -1.9284773550354428e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943318e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325532099e-06, -4.0980143794503334e-05, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -2.2177489582907528e-05, -4.8211933875886425e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, 0.0018161435491046549, -3.8569547100708906e-06, -9.6423867751773128e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.8927160325531801e-05, -5.7854320651064232e-06, -2.4105966937943289e-06, -2.892716032553213e-05, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936486e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577885, -1.4463580162766045e-06, -9.6423867751773182e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936676e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489406e-05, -4.6283456520851331e-05, -3.8569547100708906e-06, -3.4230473051878881e-05, -5.7854320651062716e-06, -5.7854320651062716e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886832e-06, -3.8569547100708898e-06, -4.8211933875886713e-06, -1.0124506113936158e-05, -3.8569547100708906e-06, -2.410596693794339e-06, -1.108874479145376e-05, -3.8569547100708906e-06, -5.7854320651064232e-06, -1.4463580162766238e-06, -2.410596693794328e-06, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708889e-06, -5.7854320651064215e-06, -2.8927160325532315e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.1570864130212843e-05, -3.8569547100708906e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297149e-06, -1.6392057517801267e-05, -9.6423867751772245e-07, -3.8569547100708889e-06, -3.8569547100708906e-06, -4.3390740488297149e-06, -1.2535102807730497e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -8.1960287589005352e-06, -1.4463580162765917e-05, -5.7854320651064232e-06, -2.8927160325532264e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -7.7139094201417796e-06, -1.1570864130212838e-05, -3.8569547100708889e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651064224e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.3390740488297064e-06, -2.4105966937943213e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.4712592390637814e-05, -1.9284773550354449e-06, -4.8211933875886133e-07, -2.8927160325531774e-05, -3.8569547100708906e-06, -2.3141728260426028e-05, -2.3141728260425679e-05, -2.4105966937943187e-05, -2.3141728260426028e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.3748353713120245e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.9409279664290765e-05, -9.6423867751772245e-07, -3.4712592390637746e-05, -3.4712592390637746e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.471259239063776e-05, -3.4712592390637692e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.4463580162766054e-06, -7.7139094201417813e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -1.2113248386316463e-05, -1.2052983468971494e-05, -3.0132458672428846e-07, -6.0264917344857666e-08, -1.8079475203457385e-07, -6.0264917344858074e-07, -4.8211933875886578e-06, -1.2052983468971536e-07, -5.5443723957269429e-06, -6.0264917344857679e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886578e-06, -4.8211933875886578e-06, -4.8211933875886122e-07, -1.3680136237282672e-05, -1.2052983468971531e-07, -1.2052983468971655e-05, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886101e-07, -3.0132458672428846e-07, -1.8079475203457398e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857666e-08, -9.0397376017287566e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610371712e-07, -4.8211933875886144e-07, -9.0397376017287259e-07, -1.2052983468971533e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344857936e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344857666e-08, -4.8211933875886144e-07, -1.0245035948625781e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6423867751772266e-07, -1.9284773550354445e-06, -1.5066229336214405e-06, -4.8211933875886144e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -6.0264917344857957e-07, -6.6291409079343282e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -1.2052983468971533e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.4463580162765906e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.0847685122074446e-06, -2.4105966937943072e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -7.8344392548315106e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -5.0622530569680771e-06, -4.8211933875886144e-07, -5.3033127263474693e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -4.8211933875886281e-06, -9.6423867751772266e-07, -4.8814583049335041e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -5.0622530569680754e-06, -4.8211933875886578e-06, -4.8211933875886247e-06, -4.8211933875886366e-06, -6.0264917344857666e-08, -2.4105966937943061e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -6.0264917344858137e-07, -1.2052983468971602e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -4.8211933875886133e-07, -1.446358016276592e-06, -1.8079475203457665e-07, -5.3033127263475108e-06, -9.6423867751772266e-07, -4.3390740488297632e-06, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.506622933621438e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.2185442141400533e-07, -2.4105966937943061e-07, -1.2052983468971533e-07, -4.3390740488297615e-06, -1.2052983468971533e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297615e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857904e-07, -1.8079475203457398e-07, -4.8211933875886144e-07, -9.0397376017286984e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -3.6158950406914986e-07, -1.807947520345762e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -1.5668878509662975e-06, -1.3860930989317359e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -3.6158950406915071e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886366e-06, -4.8211933875886247e-06, -9.7629166098670388e-06, -4.8211933875886247e-06, -4.8211933875886281e-06, -2.4105966937943061e-07, 0.0002453987434282613, -4.8211933875886112e-07, -5.4238425610371606e-07, -2.4105966937943061e-07, -6.6291409079343653e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, 0.00024545900834560644, -9.7629166098670167e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.8079475203457398e-07, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943061e-07, -7.2317900813829634e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.0847685122074391e-06, -6.0264917344857679e-08, -2.4105966937943051e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.0132458672428979e-07, -2.4105966937943072e-07, -1.2052983468971533e-07, -3.6158950406914785e-07, -5.1225179743129167e-06, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, -2.7721861978634613e-06, -6.0264917344857693e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.8501329624871467e-05, -4.8211933875886133e-07, -1.2052983468971572e-05, -4.8211933875886144e-07, -1.2052983468971533e-07, -3.6158950406914573e-06, -7.2317900813829612e-07, -3.0132458672428942e-07, -3.6158950406914971e-06, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670167e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.3800666071972444e-05, -1.8079475203457387e-07, -1.2052983468971578e-05, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670388e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.627152768311154e-06, -5.7854320651063707e-06, -4.8211933875886144e-07, -4.2788091314848762e-06, -7.2317900813829549e-07, -7.2317900813829549e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344858201e-07, -4.8211933875886122e-07, -6.0264917344858053e-07, -1.2655632642420184e-06, -4.8211933875886144e-07, -3.0132458672429058e-07, -1.3860930989317294e-06, -4.8211933875886144e-07, -7.2317900813829612e-07, -1.8079475203457625e-07, -3.0132458672428931e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -7.2317900813829125e-07, -3.6158950406914711e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.4463580162765918e-06, -4.8211933875886144e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.42384256103724e-07, -2.0490071897251677e-06, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -5.4238425610371976e-07, -1.5668878509663093e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.024503594862572e-06, -1.8079475203457295e-06, -7.2317900813829612e-07, -3.6158950406914986e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -9.6423867751772266e-07, -1.4463580162765912e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -7.2317900813829602e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -5.4238425610372294e-07, -3.0132458672429016e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.3390740488297564e-06, -2.4105966937943061e-07, -6.0264917344857679e-08, -3.6158950406914565e-06, -4.8211933875886144e-07, -2.8927160325532264e-06, -2.8927160325531828e-06, -3.013245867242881e-06, -2.8927160325532264e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.2185442141400578e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -3.6761599580363287e-06, -1.2052983468971533e-07, -4.3390740488297615e-06, -4.3390740488297615e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.3390740488297632e-06, -4.3390740488297547e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.8079475203457398e-07, -9.6423867751772287e-07, -7.8103332878936662e-05, -7.810333287893654e-05, -7.8103332878936513e-05, -7.8103332878936676e-05, -3.905166643946806e-05, -3.905166643946806e-05, -7.810333287893612e-05, -7.8103332878936134e-05, -9.7629166098670557e-06, -9.7629166098670506e-06, -0.0019623462385832649, -0.0019525833219733878, -4.8814583049334789e-05, -9.762916609867054e-06, -2.9288749829600749e-05, -9.762916609866993e-05, -0.00078103332878936118, -1.9525833219734101e-05, -0.00089818832810776563, -9.7629166098670066e-06, -0.00015620666575787311, -0.00015620666575787314, -7.8103332878936134e-05, -7.8103332878936107e-05, -0.00078103332878936118, -0.00078103332878936096, -7.8103332878936595e-05, -0.0022161820704398021, -1.9525833219734166e-05, -0.001952583321973386, -0.00015620666575787305, -7.810333287893654e-05, -7.8103332878936649e-05, -9.7629166098670049e-06, -9.7629166098670557e-06, -7.8103332878936432e-05, -7.8103332878936391e-05, -1.9525833219734169e-05, -1.9525833219734169e-05, -9.7629166098670049e-06, -9.7629166098670354e-06, -7.8103332878935985e-05, -4.8814583049334999e-05, -2.928874982960124e-05, -3.9051666439468053e-05, -3.905166643946806e-05, -9.762916609867054e-06, -0.00014644374914800696, -7.8103332878936324e-05, -7.810333287893631e-05, -8.7866249488802666e-05, -7.8103332878936134e-05, -0.0001464437491480062, -1.9525833219734111e-05, -9.7629166098670743e-06, -7.810333287893612e-05, -7.8103332878936107e-05, -9.7629166098670574e-06, -9.7629166098670438e-06, -7.8103332878936296e-05, -7.8103332878936337e-05, -1.9525833219734216e-05, -9.7629166098670269e-06, -7.8103332878936202e-05, -0.00015620666575787281, -9.7629166098669754e-05, -7.8103332878936391e-05, -0.00015620666575787262, -9.7629166098670591e-06, -7.8103332878936269e-05, -0.00016596958236773853, -7.8103332878936418e-05, -7.8103332878936283e-05, -0.00015620666575787297, -0.00031241333151574703, -0.00024407291524667374, -7.810333287893608e-05, -0.00015620666575787297, -0.000156206665757873, -3.9051666439468331e-05, -7.8103332878936283e-05, -9.7629166098669754e-05, -0.00010739208270853604, -3.9051666439468331e-05, -0.00015620666575787368, -7.8103332878936351e-05, -7.8103332878936405e-05, -7.8103332878936391e-05, -1.952583321973421e-05, -7.8103332878936568e-05, -7.810333287893608e-05, -9.7629166098670811e-06, -7.8103332878936093e-05, -1.9525833219734115e-05, -7.8103332878936568e-05, -7.8103332878936418e-05, -7.8103332878936378e-05, -9.7629166098670591e-06, -0.00015620666575787305, -0.000156206665757873, -9.7629166098670472e-06, -7.8103332878936364e-05, -7.8103332878936378e-05, -9.7629166098670506e-06, -7.8103332878936649e-05, -7.8103332878936676e-05, -7.8103332878936296e-05, -7.8103332878936662e-05, -0.00023430999863680621, -7.8103332878936595e-05, -7.8103332878936215e-05, -7.8103332878936256e-05, -9.762916609867032e-06, -7.8103332878936188e-05, -7.8103332878936256e-05, -0.00015620666575787265, -3.905166643946806e-05, -0.00017573249897760471, -3.9051666439468053e-05, -9.7629166098670743e-06, -1.9525833219734078e-05, -0.00012691791592826917, -7.8103332878936378e-05, -0.00015620666575787308, -0.0008200849952288234, -7.8103332878936296e-05, -0.00085913666166828834, -7.8103332878936256e-05, -7.8103332878936296e-05, -0.000156206665757873, -0.00078103332878935814, -0.00015620666575787297, -0.00079079624539922001, -9.7629166098670049e-06, -0.00015620666575787292, -0.00015620666575787305, -3.9051666439468291e-05, -0.0008200849952288234, -0.00078103332878936118, -0.00078103332878935706, -0.00078103332878935868, -9.7629166098670574e-06, -3.9051666439467762e-05, -9.7629166098670235e-06, -9.7629166098670676e-06, -9.7629166098670828e-06, -7.8103332878936418e-05, -7.8103332878936405e-05, -7.8103332878936405e-05, -7.8103332878936391e-05, -9.7629166098670235e-06, -9.7629166098670286e-06, -9.7629166098670235e-06, -7.8103332878936513e-05, -9.7629166098670093e-05, -0.00019525833219733956, -0.00015620666575787335, -0.00015620666575787267, -7.8103332878936527e-05, -0.00023430999863680959, -2.9288749829601382e-05, -0.00085913666166829398, -0.0001562066657578727, -0.00070292999591042718, -9.762916609867054e-06, -9.7629166098670388e-06, -0.00024407291524667369, -0.00015620666575787265, -7.8103332878936324e-05, -6.8340416269068558e-05, -3.9051666439467925e-05, -1.9525833219734108e-05, -0.00070292999591042718, -1.9525833219734111e-05, -3.905166643946806e-05, -3.905166643946806e-05, -0.00070292999591042718, -7.8103332878936161e-05, -9.7629166098670354e-06, -7.8103332878936269e-05, -9.7629166098670235e-06, -7.810333287893631e-05, -9.7629166098669754e-05, -2.9288749829601416e-05, -7.8103332878936283e-05, -0.00014644374914800471, -9.7629166098670049e-06, -7.8103332878936175e-05, -1.9525833219734166e-05, -1.9525833219734169e-05, -1.9525833219734145e-05, -9.7629166098670438e-06, -5.8577499659202534e-05, -2.9288749829601342e-05, -7.81033328789365e-05, -7.8103332878936473e-05, -0.00015620666575787281, -0.00025383583185653927, -0.00022454708202693845, -9.7629166098670049e-06, -0.00015620666575787314, -7.81033328789365e-05, -5.8577499659202588e-05, -1.952583321973404e-05, -9.7629166098670286e-06, -9.7629166098670676e-06, -0.00078103332878935868, -0.00078103332878935706, -0.0015815924907984457, -0.00078103332878935706, -0.00078103332878935814, -3.9051666439468331e-05, -1.9525833219734074e-05, -7.8103332878936256e-05, -8.7866249488802707e-05, -3.9051666439468331e-05, -0.00010739208270853672, -9.762916609867054e-06, -9.7629166098670083e-06, -0.00015620666575787254, -7.8103332878936161e-05, -7.8103332878936215e-05, -9.7629166098670388e-06, -9.7629166098670557e-06, -3.9051666439468209e-05, -3.9051666439468202e-05, -0.00015620666575787308, -7.8103332878936486e-05, -9.7629166098670167e-06, 0.038192529777799793, -7.8103332878936486e-05, -7.81033328789365e-05, -9.7629166098670472e-06, -3.9051666439468202e-05, -3.9051666439468202e-05, -1.9525833219734013e-05, -1.9525833219734013e-05, -2.9288749829601091e-05, -9.7629166098670574e-06, -1.9525833219734013e-05, -1.9525833219734013e-05, -9.7629166098670286e-06, -9.7629166098670574e-06, -3.9051666439467952e-05, -0.00011715499931840496, -7.8103332878936161e-05, -9.7629166098670218e-06, -9.7629166098670066e-06, -0.00017573249897760604, -9.7629166098670438e-06, -3.9051666439468141e-05, -1.9525833219734149e-05, -0.00015620666575787232, -0.00015620666575787229, -4.8814583049334924e-05, -3.9051666439468169e-05, -1.952583321973421e-05, -5.8577499659202493e-05, -0.00082984791183869405, -9.7629166098670354e-06, -3.9051666439468169e-05, -3.9051666439468162e-05, -0.00015620666575787224, -0.00015620666575787238, -3.9051666439468169e-05, -3.9051666439468108e-05, -3.9051666439468108e-05, -9.7629166098670235e-06, -0.00044909416405388255, -9.7629166098669849e-05, -9.7629166098670591e-06, -7.81033328789365e-05, -7.8103332878936703e-05, -7.8103332878936486e-05, -0.00015620666575787238, -7.8103332878935809e-05, -0.00015620666575787224, -7.8103332878936703e-05, -7.8103332878936703e-05, -0.0029972153992291546, -7.8103332878936513e-05, -0.0019525833219733869, -7.8103332878936188e-05, -1.9525833219734115e-05, -0.00058577499659201633, -0.00011715499931840463, -4.881458304933485e-05, -0.00058577499659201958, -9.7629166098670117e-06, -7.8103332878936391e-05, -7.8103332878936405e-05, 0.038192529777799793, -7.8103332878936161e-05, -7.8103332878936175e-05, -0.0022357079036595257, -2.9288749829601267e-05, -0.0019525833219733869, -7.8103332878936378e-05, -7.8103332878936364e-05, -9.7629166098670303e-06, -7.8103332878936418e-05, -7.8103332878936391e-05, -9.7629166098670184e-06, -0.00015620666575787229, -0.00015620666575787232, -1.9525833219734145e-05, -3.9051666439468202e-05, -3.9051666439468202e-05, -7.81033328789365e-05, -7.81033328789365e-05, -0.0015815924907984457, -7.8103332878936473e-05, -7.81033328789365e-05, -0.00026359874846640797, -0.00093723999454723317, -7.8103332878936351e-05, -0.00069316707930055458, -0.00011715499931840512, -0.00011715499931840512, -7.810333287893654e-05, -7.8103332878936676e-05, -9.7629166098670079e-05, -7.8103332878936649e-05, -9.7629166098669944e-05, -0.00020502124880720577, -7.8103332878936215e-05, -4.8814583049334992e-05, -0.0002245470820269416, -7.8103332878936147e-05, -0.00011715499931840472, -2.9288749829601348e-05, -4.881458304933485e-05, -1.9525833219734149e-05, -9.7629166098670574e-06, -9.7629166098670354e-06, -7.8103332878936649e-05, -0.00011715499931840523, -5.8577499659202575e-05, -3.905166643946808e-05, -7.8103332878936527e-05, -7.8103332878936595e-05, -7.8103332878936703e-05, -0.00015620666575787173, -7.8103332878936134e-05, -3.9051666439468162e-05, -0.00015620666575787183, -7.810333287893608e-05, -3.9051666439468169e-05, -7.8103332878936703e-05, -9.7629166098670117e-06, -7.8103332878936107e-05, -7.810333287893612e-05, -0.000156206665757873, -0.00023430999863680997, -7.8103332878936296e-05, -0.00015620666575787305, -0.00015620666575787319, -7.8103332878936134e-05, -7.810333287893612e-05, -7.8103332878936147e-05, -7.8103332878936188e-05, -8.7866249488801894e-05, -0.00033193916473547619, -1.9525833219734254e-05, -7.8103332878936595e-05, -7.8103332878936093e-05, -8.7866249488802002e-05, -0.00025383583185653911, -7.810333287893654e-05, -7.8103332878936269e-05, -7.8103332878936662e-05, -3.9051666439468169e-05, -3.9051666439468162e-05, -9.762916609867054e-06, -9.7629166098670828e-06, -9.7629166098670591e-06, -1.9525833219734091e-05, -0.00016596958236773853, -0.00029288749829600816, -0.00011715499931840472, -5.8577499659202534e-05, -9.7629166098670337e-06, -3.9051666439468148e-05, -0.0001562066657578727, -0.00023430999863680894, -7.8103332878936608e-05, -3.9051666439468148e-05, -0.00015620666575787262, -0.00015620666575787267, -3.9051666439468148e-05, -0.00011715499931840447, -7.8103332878936161e-05, -9.7629166098670726e-06, -1.9525833219734223e-05, -3.9051666439468148e-05, -3.9051666439468169e-05, -8.7866249488802151e-05, -4.8814583049334931e-05, -7.8103332878936459e-05, -0.00015620666575787284, -0.00070292999591042567, -3.9051666439468291e-05, -9.7629166098670252e-06, -0.00058577499659201622, -7.8103332878936256e-05, -0.00046861999727362179, -0.00046861999727362179, -0.00048814583049334748, -0.00046861999727362179, -3.9051666439468291e-05, -3.9051666439468291e-05, -7.8103332878936269e-05, -7.8103332878936296e-05, -3.9051666439468121e-05, -3.9051666439468121e-05, -7.8103332878936568e-05, -9.7629166098670709e-06, -7.8103332878936568e-05, -9.762916609867032e-06, -9.7629166098670506e-06, -0.00068340416269068436, -3.9051666439468121e-05, -3.9051666439468121e-05, -0.00059553791320188297, -1.9525833219734132e-05, -0.00070292999591042718, -0.00070292999591042718, -7.8103332878936269e-05, -9.7629166098670252e-06, -7.8103332878936242e-05, -0.00070292999591042718, -0.00070292999591042046, -7.8103332878936215e-05, -7.8103332878936256e-05, -1.9525833219734037e-05, -1.9525833219734108e-05, -0.00015620666575787208, -7.8103332878936242e-05, -7.8103332878936229e-05, -2.9288749829600996e-05, -0.00015620666575787208, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6905987090532163e-05, -9.6423867751772437e-05, -2.4105966937943196e-06, -4.8211933875886122e-07, -1.4463580162766035e-06, -4.8211933875886688e-06, -3.8569547100709465e-05, -9.6423867751772245e-07, -4.4354979165815252e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100709465e-05, -3.8569547100709465e-05, -3.8569547100708889e-06, -0.00010944108989826088, -9.6423867751772202e-07, -9.6423867751773725e-05, -7.7139094201417779e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708873e-06, -2.4105966937943196e-06, -1.4463580162766045e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -7.2317900813830392e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488296963e-06, -3.8569547100708898e-06, -7.2317900813830188e-06, -9.6423867751772224e-07, -4.8211933875886112e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886595e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -8.1960287589005793e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971587e-05, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.928477355035444e-06, -3.8569547100708898e-06, -4.8211933875886612e-06, -5.3033127263474507e-06, -1.928477355035444e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -3.8569547100708898e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708889e-06, -1.1570864130212826e-05, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -8.6781480976594095e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -6.2675514038652593e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -4.0498024455744685e-05, -3.8569547100708898e-06, -4.2426501810779633e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417779e-06, -3.8569547100709242e-05, -7.7139094201417796e-06, -3.9051666439468209e-05, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.9284773550354445e-06, -4.0498024455744671e-05, -3.8569547100709465e-05, -3.8569547100709215e-05, -3.8569547100709316e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886764e-06, -9.6423867751773291e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -1.1570864130212838e-05, -1.4463580162766257e-06, -4.2426501810779843e-05, -7.7139094201417796e-06, -3.4712592390637841e-05, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.2052983468971627e-05, -7.7139094201417813e-06, -3.8569547100708898e-06, -3.3748353713120287e-06, -1.928477355035444e-06, -9.6423867751772224e-07, -3.4712592390637868e-05, -9.6423867751772224e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.4712592390637895e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886569e-06, -1.4463580162766045e-06, -3.8569547100708898e-06, -7.2317900813829909e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.8927160325532252e-06, -1.4463580162766225e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.2535102807730486e-05, -1.1088744791453818e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -2.8927160325532315e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100709316e-05, -3.8569547100709215e-05, -7.8103332878936811e-05, -3.8569547100709215e-05, -3.8569547100709242e-05, -1.928477355035444e-06, -9.6423867751772245e-07, -3.8569547100708881e-06, -4.3390740488296878e-06, -1.928477355035444e-06, -5.3033127263474787e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.8103332878936486e-05, 0.0019602972313935386, -3.8569547100708898e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.4463580162766045e-06, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651064215e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -8.6781480976594298e-06, -4.8211933875886122e-07, -1.9284773550354436e-06, -9.6423867751772224e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.4105966937943314e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -2.8927160325532082e-06, -4.0980143794503334e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886133e-07, -2.2177489582907548e-05, -4.8211933875886391e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708881e-06, 0.0019602972313935386, -7.7139094201417796e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -0.00014801063699897303, -3.8569547100708898e-06, -9.6423867751773047e-05, -3.8569547100708898e-06, -9.6423867751772224e-07, -2.8927160325531781e-05, -5.7854320651064198e-06, -2.4105966937943272e-06, -2.8927160325532102e-05, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936486e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00011040532857577882, -1.4463580162766037e-06, -9.6423867751773142e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936811e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489212e-05, -4.6283456520851359e-05, -3.8569547100708898e-06, -3.4230473051878738e-05, -5.7854320651064147e-06, -5.7854320651064147e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886798e-06, -3.8569547100708889e-06, -4.8211933875886713e-06, -1.0124506113936164e-05, -3.8569547100708898e-06, -2.4105966937943365e-06, -1.1088744791453771e-05, -3.8569547100708898e-06, -5.7854320651064198e-06, -1.446358016276623e-06, -2.4105966937943263e-06, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708889e-06, -5.7854320651064173e-06, -2.8927160325532302e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -3.8569547100708906e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -1.1570864130212833e-05, -3.8569547100708898e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488297166e-06, -1.639205751780126e-05, -9.6423867751772202e-07, -3.8569547100708881e-06, -3.8569547100708906e-06, -4.3390740488297166e-06, -1.2535102807730497e-05, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -8.1960287589005302e-06, -1.4463580162765907e-05, -5.7854320651064198e-06, -2.8927160325532252e-06, -4.8211933875886133e-07, -1.9284773550354449e-06, -7.7139094201417796e-06, -1.1570864130212833e-05, -3.8569547100708881e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -5.785432065106419e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.3390740488297098e-06, -2.4105966937943331e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.4712592390637719e-05, -1.9284773550354445e-06, -4.8211933875886133e-07, -2.8927160325531774e-05, -3.8569547100708898e-06, -2.3141728260426015e-05, -2.3141728260425666e-05, -2.4105966937943167e-05, -2.3141728260426015e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.3748353713120259e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.9409279664290697e-05, -9.6423867751772245e-07, -3.4712592390637895e-05, -3.4712592390637868e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.4712592390637841e-05, -3.4712592390637984e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.4463580162766043e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6905987090532136e-05, -9.6423867751772396e-05, -2.4105966937943196e-06, -4.8211933875886122e-07, -1.446358016276603e-06, -4.8211933875886696e-06, -3.8569547100709472e-05, -9.6423867751772245e-07, -4.4354979165815272e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100709479e-05, -3.8569547100709465e-05, -3.8569547100708889e-06, -0.00010944108989826094, -9.6423867751772202e-07, -9.6423867751773684e-05, -7.7139094201417779e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708873e-06, -2.4105966937943196e-06, -1.4463580162766041e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -7.2317900813830358e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.339074048829698e-06, -3.8569547100708898e-06, -7.2317900813830155e-06, -9.6423867751772224e-07, -4.8211933875886112e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886603e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -8.1960287589005793e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.205298346897158e-05, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.928477355035444e-06, -3.8569547100708898e-06, -4.821193387588662e-06, -5.3033127263474507e-06, -1.928477355035444e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -3.8569547100708898e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708889e-06, -1.1570864130212823e-05, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -8.6781480976594129e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -6.267551403865261e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -4.0498024455744685e-05, -3.8569547100708898e-06, -4.2426501810779633e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417779e-06, -3.8569547100709255e-05, -7.7139094201417796e-06, -3.9051666439468223e-05, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.9284773550354445e-06, -4.0498024455744671e-05, -3.8569547100709472e-05, -3.8569547100709221e-05, -3.8569547100709323e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886772e-06, -9.6423867751773308e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -1.1570864130212835e-05, -1.4463580162766253e-06, -4.2426501810779843e-05, -7.7139094201417796e-06, -3.4712592390637855e-05, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.2052983468971622e-05, -7.7139094201417813e-06, -3.8569547100708898e-06, -3.3748353713120299e-06, -1.928477355035444e-06, -9.6423867751772224e-07, -3.4712592390637882e-05, -9.6423867751772224e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.4712592390637916e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886578e-06, -1.4463580162766041e-06, -3.8569547100708898e-06, -7.2317900813829892e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.8927160325532243e-06, -1.4463580162766221e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.2535102807730488e-05, -1.1088744791453823e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -2.8927160325532307e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100709323e-05, -3.8569547100709221e-05, -7.8103332878936811e-05, -3.8569547100709221e-05, -3.8569547100709255e-05, -1.928477355035444e-06, -9.6423867751772245e-07, -3.8569547100708881e-06, -4.3390740488296895e-06, -1.928477355035444e-06, -5.3033127263474787e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.81033328789365e-05, -3.8569547100708898e-06, 0.0019602972313935386, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.4463580162766041e-06, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651064198e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -8.6781480976594332e-06, -4.8211933875886122e-07, -1.9284773550354436e-06, -9.6423867751772224e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.4105966937943318e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -2.8927160325532074e-06, -4.0980143794503334e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886133e-07, -2.2177489582907558e-05, -4.8211933875886391e-06, -4.8211933875886122e-07, 0.0019602972313935386, -3.8569547100708881e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -0.00014801063699897295, -3.8569547100708898e-06, -9.6423867751773006e-05, -3.8569547100708898e-06, -9.6423867751772224e-07, -2.8927160325531774e-05, -5.7854320651064181e-06, -2.4105966937943272e-06, -2.8927160325532096e-05, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.81033328789365e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00011040532857577887, -1.4463580162766033e-06, -9.6423867751773101e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936811e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489212e-05, -4.6283456520851345e-05, -3.8569547100708898e-06, -3.4230473051878752e-05, -5.785432065106413e-06, -5.785432065106413e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886798e-06, -3.8569547100708889e-06, -4.8211933875886713e-06, -1.0124506113936164e-05, -3.8569547100708898e-06, -2.4105966937943374e-06, -1.1088744791453777e-05, -3.8569547100708898e-06, -5.7854320651064181e-06, -1.4463580162766225e-06, -2.4105966937943272e-06, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708889e-06, -5.7854320651064156e-06, -2.8927160325532294e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -3.8569547100708906e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -1.1570864130212829e-05, -3.8569547100708898e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488297183e-06, -1.639205751780126e-05, -9.6423867751772202e-07, -3.8569547100708881e-06, -3.8569547100708906e-06, -4.3390740488297183e-06, -1.2535102807730498e-05, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -8.1960287589005302e-06, -1.44635801627659e-05, -5.7854320651064181e-06, -2.8927160325532243e-06, -4.8211933875886133e-07, -1.9284773550354449e-06, -7.7139094201417796e-06, -1.1570864130212829e-05, -3.8569547100708881e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -5.7854320651064173e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.3390740488297115e-06, -2.4105966937943335e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.4712592390637733e-05, -1.9284773550354445e-06, -4.8211933875886133e-07, -2.8927160325531767e-05, -3.8569547100708898e-06, -2.3141728260426008e-05, -2.3141728260425659e-05, -2.4105966937943157e-05, -2.3141728260426008e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.3748353713120286e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.940927966429069e-05, -9.6423867751772245e-07, -3.4712592390637916e-05, -3.4712592390637882e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.4712592390637855e-05, -3.4712592390637997e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.4463580162766039e-06, -7.7139094201417813e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -1.2113248386316507e-05, -1.2052983468971541e-05, -3.0132458672428963e-07, -6.0264917344857653e-08, -1.8079475203457506e-07, -6.0264917344858307e-07, -4.8211933875886781e-06, -1.2052983468971531e-07, -5.5443723957269149e-06, -6.0264917344857666e-08, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886781e-06, -4.8211933875886781e-06, -4.8211933875886122e-07, -1.3680136237282617e-05, -1.2052983468971528e-07, -1.2052983468971702e-05, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886101e-07, -3.0132458672428963e-07, -1.807947520345752e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857653e-08, -9.0397376017287947e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610371352e-07, -4.8211933875886133e-07, -9.0397376017287651e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -9.6423867751772266e-07, -6.026491734485818e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -1.0245035948625745e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.9284773550354445e-06, -1.5066229336214464e-06, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943056e-07, -4.8211933875886133e-07, -6.0264917344858201e-07, -6.6291409079343155e-07, -2.4105966937943056e-07, -9.6423867751772202e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.026491734485764e-08, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.4463580162766003e-06, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -2.4105966937943072e-07, -1.0847685122074501e-06, -2.4105966937943072e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -7.8344392548314079e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -5.0622530569680805e-06, -4.8211933875886133e-07, -5.3033127263474575e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -4.8211933875886476e-06, -9.6423867751772245e-07, -4.8814583049335194e-06, -6.0264917344857653e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -5.0622530569680788e-06, -4.8211933875886781e-06, -4.8211933875886434e-06, -4.8211933875886561e-06, -6.0264917344857653e-08, -2.4105966937943061e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.026491734485764e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886122e-07, -6.0264917344858392e-07, -1.2052983468971649e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -4.8211933875886122e-07, -1.4463580162766018e-06, -1.8079475203457782e-07, -5.303312726347499e-06, -9.6423867751772245e-07, -4.3390740488297319e-06, -6.0264917344857653e-08, -6.0264917344857679e-08, -1.5066229336214312e-06, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.2185442141400406e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -4.3390740488297319e-06, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297302e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -6.0264917344858159e-07, -1.807947520345752e-07, -4.8211933875886133e-07, -9.0397376017287365e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -3.615895040691524e-07, -1.8079475203457745e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -1.566887850966279e-06, -1.3860930989317289e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -4.8211933875886122e-07, -3.615895040691532e-07, -1.2052983468971533e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -4.8211933875886561e-06, -4.8211933875886434e-06, -9.7629166098670692e-06, -4.8211933875886434e-06, -4.8211933875886476e-06, -2.4105966937943056e-07, -1.2052983468971536e-07, -4.8211933875886101e-07, -5.4238425610371246e-07, -2.4105966937943056e-07, -6.6291409079343504e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -9.6423867751772287e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -9.7629166098670472e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, 0.00024545900834560644, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -1.807947520345752e-07, -6.0264917344857653e-08, -1.2052983468971533e-07, -1.2052983468971533e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -2.4105966937943056e-07, -7.2317900813830121e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -1.0847685122074313e-06, -6.0264917344857666e-08, -2.4105966937943035e-07, -1.2052983468971531e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.0132458672429095e-07, -2.4105966937943066e-07, -1.2052983468971533e-07, -3.6158950406915039e-07, -5.1225179743129167e-06, -6.0264917344857679e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857679e-08, -2.7721861978634486e-06, -6.0264917344857926e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -4.8211933875886112e-07, -9.6423867751772266e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.8501329624871589e-05, -4.8211933875886122e-07, -1.2052983468971621e-05, -4.8211933875886133e-07, -1.2052983468971531e-07, -3.6158950406914717e-06, -7.2317900813830099e-07, -3.0132458672429058e-07, -3.6158950406915128e-06, -6.0264917344857679e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.7629166098670472e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.3800666071972393e-05, -1.8079475203457509e-07, -1.2052983468971627e-05, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.7629166098670692e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.6271527683111523e-06, 0.00023973384119784535, -4.8211933875886133e-07, -4.2788091314848491e-06, -7.2317900813830057e-07, -7.2317900813830057e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344858434e-07, -4.8211933875886122e-07, -6.0264917344858286e-07, -1.2655632642420193e-06, -4.8211933875886133e-07, -3.0132458672429175e-07, -1.386093098931723e-06, -4.8211933875886133e-07, -7.2317900813830099e-07, -1.807947520345775e-07, -3.0132458672429048e-07, -1.2052983468971528e-07, -6.0264917344857653e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -7.2317900813828607e-07, -3.615895040691452e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943066e-07, -4.8211933875886112e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -1.4463580162766011e-06, -4.8211933875886133e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610372887e-07, -2.0490071897251584e-06, -1.2052983468971528e-07, -4.8211933875886112e-07, -4.8211933875886144e-07, -5.4238425610371606e-07, -1.5668878509663114e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857679e-08, -6.026491734485764e-08, -6.0264917344857653e-08, -1.2052983468971536e-07, -1.0245035948625684e-06, -1.8079475203457367e-06, -7.2317900813830099e-07, -3.615895040691524e-07, -6.0264917344857679e-08, -2.4105966937943066e-07, -9.6423867751772245e-07, -1.4463580162766009e-06, -4.8211933875886112e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -7.2317900813830089e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -5.4238425610372781e-07, -3.0132458672429143e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -4.3390740488297251e-06, -2.4105966937943061e-07, -6.0264917344857679e-08, -3.6158950406914717e-06, -4.8211933875886133e-07, -2.8927160325532459e-06, -2.8927160325532023e-06, -3.0132458672428929e-06, -2.8927160325532459e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.2185442141400357e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -3.6761599580363388e-06, -1.2052983468971531e-07, -4.3390740488297302e-06, -4.3390740488297319e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.3390740488297319e-06, -4.3390740488297234e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -9.6423867751772287e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.8079475203457514e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8452993545266028e-05, -4.8211933875886178e-05, -1.2052983468971594e-06, -2.4105966937943061e-07, -7.2317900813830057e-07, -2.410596693794334e-06, -1.9284773550354719e-05, -4.8211933875886122e-07, -2.2177489582907653e-05, -2.4105966937943066e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354719e-05, -1.9284773550354719e-05, -1.9284773550354449e-06, -5.4720544949130456e-05, -4.8211933875886112e-07, -4.8211933875886822e-05, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354453e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.928477355035444e-06, -1.2052983468971594e-06, -7.2317900813830099e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943061e-07, -3.6158950406915179e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.1695370244148532e-06, -1.9284773550354453e-06, -3.615895040691506e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -3.8569547100708906e-06, -2.4105966937943285e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -2.4105966937943061e-07, -1.9284773550354453e-06, -4.0980143794502964e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -6.0264917344857875e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -1.9284773550354453e-06, -2.4105966937943293e-06, -2.6516563631737253e-06, -9.6423867751772224e-07, -3.8569547100708881e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886112e-07, -1.9284773550354449e-06, -1.9284773550354453e-06, -2.4105966937943056e-07, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -5.7854320651064046e-06, -1.9284773550354445e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -9.6423867751772287e-07, -4.3390740488297988e-06, -9.6423867751772287e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -3.1337757019325615e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -2.0249012227872329e-05, -1.9284773550354453e-06, -2.1213250905389823e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -1.9284773550354601e-05, -3.8569547100708898e-06, -1.9525833219734084e-05, -2.4105966937943061e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -2.0249012227872329e-05, -1.9284773550354719e-05, -1.9284773550354587e-05, -1.9284773550354634e-05, -2.4105966937943061e-07, -9.6423867751772245e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -2.4105966937943056e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.9284773550354449e-06, -2.4105966937943374e-06, -4.8211933875886629e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -1.9284773550354449e-06, -5.7854320651064097e-06, -7.2317900813831169e-07, -2.1213250905389993e-05, -3.8569547100708898e-06, -1.7356296195318921e-05, -2.4105966937943061e-07, -2.4105966937943072e-07, -6.0264917344857248e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.6874176856560162e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -1.7356296195318921e-05, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.7356296195318914e-05, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -2.4105966937943272e-06, -7.2317900813830099e-07, -1.9284773550354453e-06, -3.6158950406914946e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.44635801627661e-06, -7.231790081383101e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -6.2675514038651111e-06, -5.5443723957269158e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -1.9284773550354449e-06, -1.4463580162766132e-06, -4.8211933875886133e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -1.9284773550354634e-05, -1.9284773550354587e-05, -3.9051666439468291e-05, -1.9284773550354587e-05, -1.9284773550354601e-05, -9.6423867751772224e-07, -4.8211933875886144e-07, -1.928477355035444e-06, -2.1695370244148481e-06, -9.6423867751772224e-07, -2.6516563631737402e-06, -2.4105966937943061e-07, -2.4105966937943066e-07, -3.8569547100708915e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -2.4105966937943061e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.8569547100708898e-06, -1.9284773550354449e-06, -2.4105966937943072e-07, -3.9051666439468202e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943072e-07, 0.00098111285437428651, -9.6423867751772287e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -7.2317900813830099e-07, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -2.4105966937943061e-07, -9.6423867751772224e-07, -2.8927160325532065e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -4.3390740488297234e-06, -2.4105966937943066e-07, -9.6423867751772139e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.2052983468971647e-06, -9.6423867751772266e-07, -4.8211933875886133e-07, -1.4463580162766024e-06, -2.0490071897251667e-05, -2.4105966937943072e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943072e-07, -1.1088744791453791e-05, -2.4105966937943187e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -7.4005318499486354e-05, -1.9284773550354449e-06, -4.8211933875886483e-05, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.446358016276589e-05, -2.8927160325532057e-06, -1.2052983468971627e-06, -1.4463580162766051e-05, -2.4105966937943072e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.9051666439468202e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -5.5202664287889572e-05, -7.2317900813830057e-07, -4.8211933875886523e-05, -1.9284773550354449e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, 0.00098111285437428651, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.9051666439468291e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -6.5086110732446092e-06, -2.3141728260425639e-05, -1.9284773550354453e-06, -1.7115236525939393e-05, -2.8927160325532023e-06, -2.8927160325532023e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943382e-06, -1.9284773550354449e-06, -2.4105966937943331e-06, -5.0622530569680771e-06, -1.9284773550354453e-06, -1.2052983468971678e-06, -5.5443723957268904e-06, -1.9284773550354453e-06, -2.8927160325532057e-06, -7.2317900813831042e-07, -1.2052983468971627e-06, -4.8211933875886112e-07, -2.4105966937943061e-07, -2.4105966937943072e-07, -1.9284773550354449e-06, -2.8927160325531434e-06, -1.4463580162765812e-06, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354445e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -1.9284773550354457e-06, -9.6423867751772266e-07, -1.9284773550354445e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -5.785432065106408e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.1695370244149163e-06, -8.1960287589006301e-06, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354457e-06, -2.1695370244148634e-06, -6.2675514038652475e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943072e-07, -2.4105966937943056e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.0980143794502719e-06, -7.2317900813829485e-06, -2.8927160325532057e-06, -1.44635801627661e-06, -2.4105966937943072e-07, -9.6423867751772266e-07, -3.8569547100708898e-06, -5.7854320651064071e-06, -1.9284773550354445e-06, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -2.8927160325532048e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.1695370244149129e-06, -1.2052983468971661e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -1.7356296195318894e-05, -9.6423867751772245e-07, -2.4105966937943072e-07, -1.4463580162765887e-05, -1.9284773550354453e-06, -1.1570864130212989e-05, -1.1570864130212816e-05, -1.2052983468971573e-05, -1.1570864130212989e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.4105966937943066e-07, -2.4105966937943061e-07, -1.6874176856560143e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4704639832145355e-05, -4.8211933875886122e-07, -1.7356296195318914e-05, -1.7356296195318921e-05, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.7356296195318921e-05, -1.7356296195318887e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.2317900813830099e-07, -3.8569547100708915e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8452993545266014e-05, -4.8211933875886164e-05, -1.2052983468971594e-06, -2.4105966937943061e-07, -7.2317900813830036e-07, -2.410596693794334e-06, -1.9284773550354726e-05, -4.8211933875886122e-07, -2.217748958290766e-05, -2.4105966937943066e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354726e-05, -1.9284773550354726e-05, -1.9284773550354449e-06, -5.4720544949130456e-05, -4.8211933875886112e-07, -4.8211933875886795e-05, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354453e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.928477355035444e-06, -1.2052983468971594e-06, -7.2317900813830078e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943061e-07, -3.6158950406915179e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.1695370244148532e-06, -1.9284773550354453e-06, -3.615895040691506e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -3.8569547100708906e-06, -2.4105966937943289e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -2.4105966937943061e-07, -1.9284773550354453e-06, -4.0980143794502964e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -6.0264917344857858e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -1.9284773550354453e-06, -2.4105966937943297e-06, -2.6516563631737253e-06, -9.6423867751772224e-07, -3.8569547100708881e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886112e-07, -1.9284773550354449e-06, -1.9284773550354453e-06, -2.4105966937943056e-07, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -5.7854320651064012e-06, -1.9284773550354445e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -9.6423867751772287e-07, -4.3390740488297988e-06, -9.6423867751772287e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -3.1337757019325615e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -2.0249012227872329e-05, -1.9284773550354453e-06, -2.1213250905389823e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -1.9284773550354604e-05, -3.8569547100708898e-06, -1.9525833219734084e-05, -2.4105966937943061e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -2.0249012227872329e-05, -1.9284773550354726e-05, -1.9284773550354587e-05, -1.9284773550354638e-05, -2.4105966937943061e-07, -9.6423867751772245e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -2.4105966937943056e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.9284773550354449e-06, -2.4105966937943374e-06, -4.8211933875886629e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -1.9284773550354449e-06, -5.785432065106408e-06, -7.2317900813831148e-07, -2.1213250905389993e-05, -3.8569547100708898e-06, -1.7356296195318927e-05, -2.4105966937943061e-07, -2.4105966937943072e-07, -6.0264917344857231e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.6874176856560162e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -1.7356296195318921e-05, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.7356296195318921e-05, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -2.410596693794328e-06, -7.2317900813830099e-07, -1.9284773550354453e-06, -3.6158950406914946e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.4463580162766096e-06, -7.2317900813830989e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -6.2675514038651128e-06, -5.5443723957269158e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -1.9284773550354449e-06, -1.4463580162766132e-06, -4.8211933875886133e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -1.9284773550354638e-05, -1.9284773550354587e-05, -3.9051666439468291e-05, -1.9284773550354587e-05, -1.9284773550354604e-05, -9.6423867751772224e-07, -4.8211933875886144e-07, -1.928477355035444e-06, -2.169537024414849e-06, -9.6423867751772224e-07, -2.6516563631737402e-06, -2.4105966937943061e-07, -2.4105966937943066e-07, -3.8569547100708915e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -2.4105966937943061e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.8569547100708898e-06, -1.9284773550354449e-06, -2.4105966937943072e-07, -3.9051666439468202e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943072e-07, -9.6423867751772287e-07, 0.00098111285437428651, -4.8211933875886133e-07, -4.8211933875886133e-07, -7.2317900813830078e-07, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -2.4105966937943061e-07, -9.6423867751772224e-07, -2.8927160325532057e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -4.3390740488297251e-06, -2.4105966937943066e-07, -9.6423867751772139e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.2052983468971647e-06, -9.6423867751772266e-07, -4.8211933875886133e-07, -1.4463580162766016e-06, -2.0490071897251667e-05, -2.4105966937943072e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943072e-07, -1.1088744791453794e-05, -2.4105966937943187e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -7.4005318499486341e-05, -1.9284773550354449e-06, -4.8211933875886469e-05, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.4463580162765887e-05, -2.892716032553204e-06, -1.2052983468971632e-06, -1.4463580162766051e-05, -2.4105966937943072e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.9051666439468202e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -5.5202664287889572e-05, -7.2317900813830036e-07, -4.821193387588651e-05, -1.9284773550354449e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, 0.00098111285437428651, -9.6423867751772287e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.9051666439468291e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -6.5086110732446092e-06, -2.3141728260425632e-05, -1.9284773550354453e-06, -1.7115236525939396e-05, -2.8927160325532023e-06, -2.8927160325532023e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.410596693794339e-06, -1.9284773550354449e-06, -2.4105966937943331e-06, -5.0622530569680771e-06, -1.9284773550354453e-06, -1.2052983468971678e-06, -5.5443723957268921e-06, -1.9284773550354453e-06, -2.892716032553204e-06, -7.2317900813830999e-07, -1.2052983468971627e-06, -4.8211933875886112e-07, -2.4105966937943061e-07, -2.4105966937943072e-07, -1.9284773550354449e-06, -2.8927160325531443e-06, -1.4463580162765808e-06, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354445e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -1.9284773550354457e-06, -9.6423867751772266e-07, -1.9284773550354445e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -5.7854320651064046e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.1695370244149146e-06, -8.1960287589006301e-06, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354457e-06, -2.1695370244148634e-06, -6.2675514038652475e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943072e-07, -2.4105966937943056e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.0980143794502719e-06, -7.2317900813829468e-06, -2.892716032553204e-06, -1.4463580162766096e-06, -2.4105966937943072e-07, -9.6423867751772266e-07, -3.8569547100708898e-06, -5.7854320651064054e-06, -1.9284773550354445e-06, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -2.892716032553204e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.1695370244149112e-06, -1.2052983468971666e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -1.7356296195318894e-05, -9.6423867751772245e-07, -2.4105966937943072e-07, -1.4463580162765887e-05, -1.9284773550354453e-06, -1.1570864130212985e-05, -1.1570864130212813e-05, -1.205298346897157e-05, -1.1570864130212985e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.4105966937943066e-07, -2.4105966937943061e-07, -1.6874176856560143e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4704639832145352e-05, -4.8211933875886122e-07, -1.7356296195318921e-05, -1.7356296195318921e-05, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.7356296195318927e-05, -1.7356296195318894e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.2317900813830078e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -2.4226496772632899e-05, -2.4105966937942933e-05, -6.0264917344857566e-07, -1.2052983468971533e-07, -3.6158950406914679e-07, -1.2052983468971589e-06, -9.6423867751773003e-06, -2.4105966937943066e-07, -1.1088744791453903e-05, -1.2052983468971536e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.642386775177302e-06, -9.6423867751772986e-06, -9.6423867751772245e-07, -2.7360272474565414e-05, -2.4105966937943061e-07, -2.4105966937943269e-05, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -1.2052983468971533e-07, -1.2052983468971536e-07, -9.6423867751772266e-07, -9.6423867751772287e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -9.6423867751772202e-07, -6.0264917344857566e-07, -3.61589504069147e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971533e-07, -1.8079475203457477e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.0847685122074374e-06, -9.6423867751772287e-07, -1.8079475203457426e-06, -2.4105966937943061e-07, -1.2052983468971531e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971531e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943061e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.2052983468971566e-06, -9.6423867751772266e-07, -1.9284773550354453e-06, -1.2052983468971531e-07, -9.6423867751772266e-07, -2.0490071897251584e-06, -9.6423867751772266e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -3.8569547100708881e-06, -3.013245867242876e-06, -9.6423867751772266e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -1.205298346897157e-06, -1.3258281815868673e-06, -4.8211933875886122e-07, -1.9284773550354445e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772266e-07, -1.2052983468971528e-07, -9.6423867751772266e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971533e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.2052983468971533e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -1.2052983468971533e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772287e-07, -9.6423867751772245e-07, -2.8927160325531735e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.1695370244148782e-06, -4.8211933875886144e-07, -1.2052983468971531e-07, -2.4105966937943072e-07, -1.5668878509663114e-06, -9.6423867751772266e-07, -1.9284773550354449e-06, -1.0124506113936154e-05, -9.6423867751772266e-07, -1.0606625452694949e-05, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -9.6423867751772427e-06, -1.9284773550354449e-06, -9.7629166098669981e-06, -1.2052983468971533e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -1.0124506113936154e-05, -9.6423867751773003e-06, -9.6423867751772359e-06, -9.6423867751772613e-06, -1.2052983468971531e-07, -4.8211933875886101e-07, -1.2052983468971536e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -9.6423867751772245e-07, -1.2052983468971608e-06, -2.4105966937943158e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325531769e-06, -3.615895040691523e-07, -1.0606625452695028e-05, -1.9284773550354453e-06, -8.6781480976595501e-06, -1.2052983468971533e-07, -1.2052983468971536e-07, -3.0132458672428861e-06, -1.9284773550354457e-06, -9.6423867751772266e-07, -8.4370884282801162e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -8.6781480976595467e-06, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976595467e-06, -9.6423867751772287e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -1.205298346897156e-06, -3.6158950406914706e-07, -9.6423867751772287e-07, -1.8079475203457359e-06, -1.2052983468971536e-07, -9.6423867751772287e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971536e-07, -7.2317900813829803e-07, -3.615895040691515e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -3.1337757019326136e-06, -2.7721861978634769e-06, -1.2052983468971536e-07, -1.9284773550354453e-06, -9.6423867751772266e-07, -7.2317900813829972e-07, -2.4105966937943066e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -9.6423867751772613e-06, -9.6423867751772359e-06, -1.952583321973405e-05, -9.6423867751772359e-06, -9.6423867751772427e-06, -4.8211933875886122e-07, -2.4105966937943066e-07, -9.6423867751772224e-07, -1.0847685122074353e-06, -4.8211933875886122e-07, -1.3258281815868745e-06, -1.2052983468971533e-07, -1.2052983468971536e-07, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -9.6423867751772266e-07, -1.2052983468971536e-07, -1.9525833219734013e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971533e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, 0.00049079748685652283, -2.4105966937943072e-07, -3.61589504069147e-07, -1.2052983468971531e-07, -2.4105966937943072e-07, 0.00049079748685652283, -1.2052983468971536e-07, -1.2052983468971531e-07, -4.8211933875886112e-07, -1.4463580162765893e-06, -9.6423867751772287e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -2.1695370244148833e-06, -1.2052983468971533e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -6.0264917344857862e-07, -4.8211933875886133e-07, -2.4105966937943061e-07, -7.2317900813829401e-07, -1.0245035948625833e-05, -1.2052983468971536e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971536e-07, -5.5443723957269319e-06, -1.2052983468971513e-06, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -9.6423867751772224e-07, -1.9284773550354453e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -3.7002659249742838e-05, -9.6423867751772266e-07, -2.4105966937943082e-05, -9.6423867751772287e-07, -2.4105966937943061e-07, -7.2317900813828977e-06, -1.4463580162765884e-06, -6.0264917344857756e-07, -7.2317900813829773e-06, -1.2052983468971536e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9525833219734013e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.7601332143944935e-05, -3.615895040691469e-07, -2.4105966937943116e-05, -9.6423867751772266e-07, -9.6423867751772287e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971536e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.952583321973405e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.2543055366223088e-06, -1.1570864130212709e-05, -9.6423867751772287e-07, -8.5576182629697761e-06, -1.4463580162765876e-06, -1.4463580162765876e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971615e-06, -9.6423867751772245e-07, -1.2052983468971594e-06, -2.5311265284840377e-06, -9.6423867751772287e-07, -6.026491734485801e-07, -2.7721861978634647e-06, -9.6423867751772266e-07, -1.4463580162765884e-06, -3.6158950406915156e-07, -6.0264917344857756e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -1.2052983468971536e-07, -9.6423867751772245e-07, -1.446358016276588e-06, -7.231790081382993e-07, -4.8211933875886144e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -9.6423867751772287e-07, -4.8211933875886133e-07, -1.9284773550354445e-06, -9.6423867751772287e-07, -4.8211933875886133e-07, -9.6423867751772224e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -2.8927160325531752e-06, -9.6423867751772287e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.0847685122074425e-06, -4.098014379450343e-06, -2.4105966937943056e-07, -9.6423867751772245e-07, -9.6423867751772287e-07, -1.0847685122074425e-06, -3.1337757019326165e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.0490071897251465e-06, -3.6158950406914531e-06, -1.4463580162765884e-06, -7.2317900813829803e-07, -1.2052983468971536e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -2.8927160325531756e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -1.4463580162765884e-06, -9.6423867751772266e-07, -1.2052983468971531e-07, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.0847685122074404e-06, -6.0264917344857915e-07, -9.6423867751772266e-07, -1.9284773550354453e-06, -8.6781480976595365e-06, -4.8211933875886122e-07, -1.2052983468971536e-07, -7.231790081382896e-06, -9.6423867751772266e-07, -5.7854320651064376e-06, -5.7854320651063521e-06, -6.0264917344857511e-06, -5.7854320651064376e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -8.4370884282801392e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -7.3523199160726438e-06, -2.4105966937943061e-07, -8.6781480976595467e-06, -8.6781480976595467e-06, -9.6423867751772266e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -8.6781480976595501e-06, -8.6781480976595332e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.61589504069147e-07, -1.9284773550354457e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -2.4226496772632899e-05, -2.410596693794292e-05, -6.0264917344857566e-07, -1.2052983468971533e-07, -3.6158950406914679e-07, -1.2052983468971587e-06, -9.6423867751772986e-06, -2.4105966937943066e-07, -1.1088744791453903e-05, -1.2052983468971536e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772986e-06, -9.6423867751772986e-06, -9.6423867751772245e-07, -2.7360272474565421e-05, -2.4105966937943061e-07, -2.4105966937943275e-05, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -1.2052983468971533e-07, -1.2052983468971536e-07, -9.6423867751772266e-07, -9.6423867751772287e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -9.6423867751772202e-07, -6.0264917344857566e-07, -3.61589504069147e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971533e-07, -1.8079475203457477e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.084768512207437e-06, -9.6423867751772287e-07, -1.8079475203457426e-06, -2.4105966937943061e-07, -1.2052983468971531e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971531e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943061e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.2052983468971564e-06, -9.6423867751772266e-07, -1.9284773550354453e-06, -1.2052983468971531e-07, -9.6423867751772266e-07, -2.049007189725158e-06, -9.6423867751772266e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -3.8569547100708881e-06, -3.0132458672428764e-06, -9.6423867751772266e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -1.2052983468971568e-06, -1.3258281815868673e-06, -4.8211933875886122e-07, -1.9284773550354445e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772266e-07, -1.2052983468971528e-07, -9.6423867751772266e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971533e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.2052983468971533e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -1.2052983468971533e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772287e-07, -9.6423867751772245e-07, -2.8927160325531735e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.1695370244148782e-06, -4.8211933875886144e-07, -1.2052983468971531e-07, -2.4105966937943072e-07, -1.5668878509663114e-06, -9.6423867751772266e-07, -1.9284773550354449e-06, -1.0124506113936154e-05, -9.6423867751772266e-07, -1.0606625452694949e-05, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -9.6423867751772427e-06, -1.9284773550354449e-06, -9.7629166098669981e-06, -1.2052983468971533e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -1.0124506113936154e-05, -9.6423867751772986e-06, -9.6423867751772342e-06, -9.6423867751772596e-06, -1.2052983468971531e-07, -4.8211933875886101e-07, -1.2052983468971536e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -9.6423867751772245e-07, -1.2052983468971606e-06, -2.4105966937943153e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325531769e-06, -3.615895040691523e-07, -1.0606625452695028e-05, -1.9284773550354453e-06, -8.6781480976595467e-06, -1.2052983468971533e-07, -1.2052983468971536e-07, -3.0132458672428865e-06, -1.9284773550354457e-06, -9.6423867751772266e-07, -8.4370884282801151e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -8.6781480976595433e-06, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976595433e-06, -9.6423867751772287e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -1.2052983468971558e-06, -3.6158950406914706e-07, -9.6423867751772287e-07, -1.8079475203457363e-06, -1.2052983468971536e-07, -9.6423867751772287e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971536e-07, -7.2317900813829803e-07, -3.615895040691515e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -3.1337757019326144e-06, -2.7721861978634769e-06, -1.2052983468971536e-07, -1.9284773550354453e-06, -9.6423867751772266e-07, -7.2317900813829972e-07, -2.4105966937943066e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -9.6423867751772596e-06, -9.6423867751772342e-06, -1.952583321973405e-05, -9.6423867751772342e-06, -9.6423867751772427e-06, -4.8211933875886122e-07, -2.4105966937943066e-07, -9.6423867751772224e-07, -1.0847685122074349e-06, -4.8211933875886122e-07, -1.3258281815868745e-06, -1.2052983468971533e-07, -1.2052983468971536e-07, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -9.6423867751772266e-07, -1.2052983468971536e-07, -1.9525833219734013e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971533e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -2.4105966937943072e-07, 0.00049079748685652283, -3.61589504069147e-07, -1.2052983468971531e-07, 0.00049079748685652283, -2.4105966937943072e-07, -1.2052983468971536e-07, -1.2052983468971531e-07, -4.8211933875886112e-07, -1.4463580162765893e-06, -9.6423867751772287e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -2.1695370244148833e-06, -1.2052983468971533e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -6.0264917344857852e-07, -4.8211933875886133e-07, -2.4105966937943061e-07, -7.2317900813829401e-07, -1.0245035948625833e-05, -1.2052983468971536e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971536e-07, -5.544372395726931e-06, -1.2052983468971513e-06, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -9.6423867751772224e-07, -1.9284773550354453e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -3.7002659249742845e-05, -9.6423867751772266e-07, -2.4105966937943069e-05, -9.6423867751772287e-07, -2.4105966937943061e-07, -7.2317900813828994e-06, -1.4463580162765884e-06, -6.0264917344857756e-07, -7.231790081382979e-06, -1.2052983468971536e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9525833219734013e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.7601332143944942e-05, -3.615895040691469e-07, -2.4105966937943123e-05, -9.6423867751772266e-07, -9.6423867751772287e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971536e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.952583321973405e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.2543055366223088e-06, -1.1570864130212709e-05, -9.6423867751772287e-07, -8.5576182629697727e-06, -1.4463580162765876e-06, -1.4463580162765876e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971615e-06, -9.6423867751772245e-07, -1.2052983468971589e-06, -2.5311265284840377e-06, -9.6423867751772287e-07, -6.0264917344857989e-07, -2.7721861978634647e-06, -9.6423867751772266e-07, -1.4463580162765884e-06, -3.6158950406915156e-07, -6.0264917344857735e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -1.2052983468971536e-07, -9.6423867751772245e-07, -1.446358016276588e-06, -7.231790081382993e-07, -4.8211933875886144e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -9.6423867751772287e-07, -4.8211933875886133e-07, -1.9284773550354445e-06, -9.6423867751772287e-07, -4.8211933875886133e-07, -9.6423867751772224e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -2.8927160325531752e-06, -9.6423867751772287e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.0847685122074421e-06, -4.0980143794503422e-06, -2.4105966937943056e-07, -9.6423867751772245e-07, -9.6423867751772287e-07, -1.0847685122074421e-06, -3.133775701932617e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.0490071897251465e-06, -3.6158950406914531e-06, -1.4463580162765884e-06, -7.2317900813829803e-07, -1.2052983468971536e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -2.8927160325531756e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -1.4463580162765884e-06, -9.6423867751772266e-07, -1.2052983468971531e-07, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.0847685122074404e-06, -6.0264917344857904e-07, -9.6423867751772266e-07, -1.9284773550354453e-06, -8.6781480976595365e-06, -4.8211933875886122e-07, -1.2052983468971536e-07, -7.2317900813828977e-06, -9.6423867751772266e-07, -5.7854320651064376e-06, -5.7854320651063521e-06, -6.0264917344857519e-06, -5.7854320651064376e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -8.4370884282801392e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -7.3523199160726438e-06, -2.4105966937943061e-07, -8.6781480976595433e-06, -8.6781480976595433e-06, -9.6423867751772266e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -8.6781480976595467e-06, -8.6781480976595298e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.61589504069147e-07, -1.9284773550354457e-06, -1.4463580162766115e-06, -1.4463580162766054e-06, -1.4463580162766066e-06, -1.4463580162766111e-06, -7.2317900813829507e-07, -7.2317900813829507e-07, -1.4463580162765901e-06, -1.4463580162765897e-06, -1.8079475203457554e-07, -1.807947520345753e-07, -3.6339745158949463e-05, -3.6158950406914493e-05, 0.00049013457276572843, -1.8079475203457554e-07, -5.4238425610372548e-07, -1.8079475203457373e-06, -1.4463580162765797e-05, -3.615895040691506e-07, -1.6633117187180791e-05, -1.8079475203457355e-07, -2.8927160325532141e-06, -2.8927160325532124e-06, -1.4463580162765893e-06, -1.4463580162765906e-06, -1.446358016276577e-05, -1.4463580162765767e-05, -1.4463580162765863e-06, -4.1040408711848064e-05, -3.6158950406915309e-07, -3.615895040691452e-05, -2.8927160325532158e-06, -1.4463580162766058e-06, -1.4463580162766119e-06, -1.8079475203457342e-07, -1.8079475203457551e-07, -1.4463580162766007e-06, -1.446358016276602e-06, -3.6158950406915309e-07, -3.6158950406915309e-07, -1.8079475203457345e-07, -1.8079475203457467e-07, -1.4463580162765855e-06, -9.0397376017286147e-07, -5.4238425610372209e-07, -7.2317900813829528e-07, -7.2317900813829485e-07, -1.8079475203457554e-07, -2.7119212805185942e-06, -1.4463580162765994e-06, -1.446358016276599e-06, -1.6271527683111553e-06, -1.4463580162765889e-06, -2.7119212805186009e-06, -3.6158950406915113e-07, -1.8079475203457625e-07, -1.4463580162765893e-06, -1.4463580162765897e-06, -1.8079475203457557e-07, -1.8079475203457506e-07, -1.4463580162765986e-06, -1.4463580162765999e-06, -3.6158950406914658e-07, -1.807947520345744e-07, -1.4463580162765935e-06, -2.8927160325531803e-06, -1.8079475203457346e-06, -1.4463580162766011e-06, -2.8927160325531879e-06, -1.8079475203457562e-07, -1.4463580162765872e-06, -3.0735107845877867e-06, -1.4463580162766037e-06, -1.4463580162765961e-06, -2.8927160325532116e-06, -5.7854320651063453e-06, -4.5198688008643345e-06, -1.4463580162765855e-06, -2.8927160325532082e-06, -2.8927160325532065e-06, -7.2317900813830597e-07, -1.4463580162765969e-06, -1.8079475203457335e-06, -1.9887422723802849e-06, -7.2317900813830618e-07, -2.8927160325531718e-06, -1.4463580162766003e-06, -1.4463580162766033e-06, -1.4463580162766028e-06, -3.6158950406914658e-07, -1.4463580162766088e-06, -1.4463580162765855e-06, -1.8079475203457655e-07, -1.4463580162765867e-06, -3.615895040691488e-07, -1.4463580162766079e-06, -1.4463580162766003e-06, -1.4463580162766016e-06, -1.8079475203457567e-07, -2.8927160325532082e-06, -2.8927160325532099e-06, -1.8079475203457514e-07, -1.4463580162765999e-06, -1.4463580162765994e-06, -1.807947520345753e-07, -1.4463580162766119e-06, -1.44635801627661e-06, -1.4463580162765956e-06, -1.4463580162766105e-06, -4.3390740488298225e-06, -1.44635801627661e-06, -1.4463580162765927e-06, -1.4463580162765876e-06, -1.8079475203457461e-07, -1.4463580162765939e-06, -1.446358016276588e-06, -2.8927160325531955e-06, -7.2317900813829485e-07, -3.2543055366223097e-06, -7.2317900813829528e-07, -1.8079475203457625e-07, -3.6158950406914965e-07, -2.3503317764494529e-06, -1.4463580162766016e-06, -2.892716032553193e-06, -1.5186759170904289e-05, -1.4463580162765986e-06, -1.5909938179042283e-05, -1.4463580162765969e-06, -1.4463580162765956e-06, -2.8927160325532065e-06, -1.4463580162765851e-05, -2.8927160325532082e-06, -1.4644374914800518e-05, -1.8079475203457348e-07, -2.8927160325532099e-06, -2.8927160325532048e-06, -7.2317900813830459e-07, -1.5186759170904289e-05, -1.4463580162765797e-05, -1.4463580162765868e-05, -1.4463580162765892e-05, -1.8079475203457551e-07, -7.2317900813829274e-07, -1.8079475203457424e-07, -1.8079475203457594e-07, -1.8079475203457655e-07, -1.4463580162766011e-06, -1.4463580162766016e-06, -1.4463580162766007e-06, -1.4463580162766011e-06, -1.8079475203457424e-07, -1.807947520345744e-07, -1.8079475203457419e-07, -1.4463580162766066e-06, -1.807947520345742e-06, -3.6158950406914688e-06, -2.8927160325531726e-06, -2.892716032553193e-06, -1.4463580162766062e-06, -4.3390740488297886e-06, -5.4238425610371288e-07, -1.5909938179042381e-05, -2.8927160325531913e-06, -1.3017222146489222e-05, -1.8079475203457541e-07, -1.8079475203457483e-07, -4.5198688008643277e-06, -2.8927160325531955e-06, -1.4463580162765994e-06, -1.2655632642420229e-06, -7.2317900813829337e-07, -3.6158950406915092e-07, -1.3017222146489222e-05, -3.6158950406915113e-07, -7.2317900813829507e-07, -7.2317900813829507e-07, -1.3017222146489222e-05, -1.4463580162765927e-06, -1.8079475203457472e-07, -1.4463580162765973e-06, -1.8079475203457424e-07, -1.4463580162765961e-06, -1.8079475203457395e-06, -5.42384256103724e-07, -1.4463580162765969e-06, -2.7119212805186183e-06, -1.8079475203457345e-07, -1.4463580162765922e-06, -3.6158950406915309e-07, -3.6158950406915309e-07, -3.615895040691523e-07, -1.8079475203457509e-07, -1.0847685122074366e-06, -5.4238425610371203e-07, -1.4463580162766037e-06, -1.4463580162766054e-06, -2.8927160325531896e-06, -4.7006635528989091e-06, -4.1582792967951479e-06, -1.8079475203457345e-07, -2.8927160325531726e-06, -1.4463580162766045e-06, -1.0847685122074338e-06, -3.6158950406914679e-07, -1.807947520345744e-07, -1.8079475203457594e-07, -1.4463580162765892e-05, -1.4463580162765868e-05, -2.9288749829600783e-05, -1.4463580162765826e-05, -1.4463580162765851e-05, -7.2317900813830618e-07, -3.6158950406914679e-07, -1.4463580162765859e-06, -1.6271527683111557e-06, -7.2317900813830597e-07, -1.988742272380293e-06, -1.8079475203457546e-07, -1.8079475203457355e-07, -2.8927160325531743e-06, -1.4463580162765922e-06, -1.4463580162765952e-06, -1.8079475203457488e-07, -1.8079475203457554e-07, -7.2317900813830057e-07, -7.2317900813830099e-07, -2.8927160325531726e-06, -1.4463580162766054e-06, -1.8079475203457398e-07, -2.9288749829601091e-05, -1.4463580162766045e-06, -1.4463580162766041e-06, -1.807947520345752e-07, -7.2317900813830099e-07, -7.2317900813830078e-07, -3.61589504069147e-07, -3.61589504069147e-07, 0.00073601543553274899, -1.8079475203457557e-07, -3.61589504069147e-07, -3.61589504069147e-07, -1.8079475203457445e-07, -1.8079475203457557e-07, -7.2317900813829549e-07, -2.1695370244148858e-06, -1.4463580162765918e-06, -1.8079475203457419e-07, -1.8079475203457355e-07, -3.2543055366223067e-06, -1.8079475203457506e-07, -7.2317900813829252e-07, -3.6158950406914753e-07, -2.8927160325531794e-06, -2.8927160325531811e-06, -9.0397376017286825e-07, -7.231790081382957e-07, -3.6158950406915103e-07, 0.00024443450475074383, -1.5367553922938771e-05, -1.8079475203457472e-07, -7.2317900813829549e-07, -7.2317900813829591e-07, -2.8927160325531828e-06, -2.8927160325531777e-06, -7.2317900813829972e-07, -7.2317900813829718e-07, -7.2317900813829697e-07, -1.8079475203457419e-07, -8.3165585935903906e-06, -1.8079475203457238e-06, -1.8079475203457567e-07, -1.4463580162766041e-06, -1.4463580162766045e-06, -1.4463580162766045e-06, -2.8927160325531777e-06, -1.4463580162765867e-06, -2.8927160325531828e-06, -1.4463580162766043e-06, -1.4463580162766043e-06, -5.5503988874614207e-05, -1.4463580162766041e-06, -3.6158950406914547e-05, -1.4463580162765939e-06, -3.6158950406915124e-07, -1.0847685122074385e-05, -2.1695370244148909e-06, -9.0397376017286677e-07, -1.0847685122074385e-05, -1.8079475203457377e-07, -1.4463580162766028e-06, -1.4463580162766033e-06, -2.9288749829601091e-05, -1.4463580162765842e-06, -1.4463580162765838e-06, -4.14019982159173e-05, -5.423842561037259e-07, -3.6158950406914567e-05, -1.4463580162765994e-06, -1.4463580162765999e-06, -1.8079475203457451e-07, -1.4463580162766037e-06, -1.4463580162766024e-06, -1.8079475203457403e-07, -2.8927160325531811e-06, -2.8927160325531794e-06, -3.615895040691523e-07, -7.2317900813830078e-07, -7.2317900813830099e-07, -1.4463580162766045e-06, -1.446358016276605e-06, -2.9288749829600783e-05, -1.4463580162766054e-06, -1.4463580162766037e-06, -4.8814583049334931e-06, -1.7356296195319154e-05, -1.4463580162766003e-06, -1.2836427394454685e-05, -2.1695370244149036e-06, -2.1695370244149036e-06, -1.4463580162766054e-06, -1.44635801627661e-06, -1.8079475203457418e-06, -1.4463580162766119e-06, -1.8079475203457388e-06, -3.7966897927260671e-06, -1.4463580162765931e-06, -9.0397376017286973e-07, -4.158279296795175e-06, -1.4463580162765846e-06, -2.1695370244148909e-06, -5.4238425610371394e-07, -9.039737601728674e-07, -3.6158950406915251e-07, -1.8079475203457551e-07, -1.8079475203457472e-07, -1.4463580162766119e-06, -2.1695370244148968e-06, -1.0847685122074342e-06, -7.2317900813829634e-07, -1.4463580162766062e-06, -1.4463580162765863e-06, -1.4463580162766043e-06, -2.8927160325531735e-06, -1.4463580162765893e-06, -7.2317900813829591e-07, -2.8927160325531735e-06, -1.4463580162765893e-06, -7.2317900813829549e-07, -1.4463580162766045e-06, -1.8079475203457371e-07, -1.4463580162765897e-06, -1.4463580162765893e-06, -2.8927160325532099e-06, -4.3390740488297971e-06, -1.4463580162765965e-06, -2.8927160325532158e-06, -2.8927160325532108e-06, -1.4463580162765897e-06, -1.4463580162765901e-06, -1.4463580162765846e-06, -1.4463580162765834e-06, -1.6271527683111527e-06, -6.147021569175548e-06, -3.6158950406915081e-07, -1.44635801627661e-06, -1.4463580162765889e-06, -1.6271527683111519e-06, -4.7006635528989481e-06, -1.4463580162766054e-06, -1.4463580162765973e-06, -1.4463580162766115e-06, -7.231790081382957e-07, -7.2317900813829591e-07, -1.8079475203457541e-07, -1.8079475203457655e-07, -1.8079475203457567e-07, -3.6158950406915018e-07, -3.0735107845877803e-06, -5.4238425610371934e-06, -2.1695370244148884e-06, -1.0847685122074366e-06, -1.8079475203457461e-07, -7.2317900813829528e-07, -2.8927160325531913e-06, -4.3390740488298005e-06, -1.4463580162766096e-06, -7.2317900813829528e-07, -2.8927160325531947e-06, -2.892716032553193e-06, -7.2317900813829528e-07, -2.1695370244148841e-06, -1.4463580162765842e-06, -1.807947520345762e-07, -3.6158950406914658e-07, -7.2317900813829528e-07, -7.2317900813829972e-07, -1.6271527683111532e-06, -9.0397376017286825e-07, -1.4463580162766037e-06, -2.8927160325531803e-06, -1.3017222146489232e-05, -7.2317900813830459e-07, -1.807947520345743e-07, -1.0847685122074385e-05, -1.4463580162765876e-06, -8.6781480976594129e-06, -8.6781480976595772e-06, -9.0397376017286554e-06, -8.6781480976594129e-06, -7.2317900813830459e-07, -7.2317900813830438e-07, -1.4463580162765973e-06, -1.4463580162765961e-06, -7.2317900813829782e-07, -7.2317900813829782e-07, -1.4463580162766079e-06, -1.8079475203457615e-07, -1.4463580162766088e-06, -1.8079475203457456e-07, -1.8079475203457535e-07, -1.2655632642420171e-05, -7.2317900813829782e-07, -7.2317900813829782e-07, -1.1028479874109081e-05, -3.6158950406915177e-07, -1.3017222146489222e-05, -1.3017222146489222e-05, -1.4463580162765872e-06, -1.8079475203457334e-07, -1.4463580162765884e-06, -1.3017222146489222e-05, -1.3017222146489218e-05, -1.4463580162765952e-06, -1.4463580162765939e-06, -3.6158950406914796e-07, -3.6158950406915081e-07, -2.892716032553176e-06, -1.4463580162765944e-06, -1.4463580162765948e-06, -5.4238425610372463e-07, -2.892716032553176e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -1.211324838631652e-05, -1.2052983468971555e-05, -3.0132458672428973e-07, -6.0264917344857653e-08, -1.8079475203457541e-07, -6.0264917344858328e-07, -4.8211933875886798e-06, -1.2052983468971531e-07, -5.5443723957269065e-06, -6.0264917344857653e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886806e-06, -4.8211933875886798e-06, -4.8211933875886112e-07, -1.3680136237282607e-05, -1.2052983468971525e-07, -1.2052983468971716e-05, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971525e-07, -1.2052983468971525e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.8211933875886091e-07, -3.0132458672428973e-07, -1.8079475203457551e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857653e-08, -9.0397376017288e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -5.4238425610371203e-07, -4.8211933875886122e-07, -9.0397376017287746e-07, -1.2052983468971531e-07, -6.026491734485764e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.026491734485764e-08, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971525e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -9.6423867751772245e-07, -6.0264917344858212e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -6.026491734485764e-08, -4.8211933875886122e-07, -1.0245035948625707e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772224e-07, -1.9284773550354436e-06, -1.5066229336214484e-06, -4.8211933875886122e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -2.4105966937943051e-07, -4.8211933875886122e-07, -6.0264917344858222e-07, -6.6291409079343155e-07, -2.4105966937943051e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971528e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -1.2052983468971528e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -9.6423867751772224e-07, -9.6423867751772224e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886112e-07, -1.446358016276603e-06, -4.8211933875886101e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -1.0847685122074262e-06, -2.4105966937943066e-07, -6.026491734485764e-08, -1.2052983468971533e-07, -7.8344392548315752e-07, -4.8211933875886122e-07, -9.6423867751772224e-07, -5.0622530569680856e-06, -4.8211933875886122e-07, -5.3033127263474566e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772224e-07, -4.8211933875886518e-06, -9.6423867751772224e-07, -4.881458304933516e-06, -6.0264917344857653e-08, -9.6423867751772224e-07, -9.6423867751772224e-07, -2.4105966937943056e-07, -5.0622530569680847e-06, -4.8211933875886798e-06, -4.8211933875886298e-06, -4.8211933875886629e-06, -6.026491734485764e-08, -2.4105966937943045e-07, -6.0264917344857666e-08, -6.026491734485764e-08, -6.0264917344857627e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.8211933875886112e-07, -6.0264917344858413e-07, -1.2052983468971653e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -4.8211933875886112e-07, -1.4463580162766045e-06, -1.8079475203457819e-07, -5.3033127263474947e-06, -9.6423867751772245e-07, -4.3390740488297217e-06, -6.0264917344857653e-08, -6.0264917344857666e-08, -1.5066229336214439e-06, -9.6423867751772266e-07, -4.8211933875886122e-07, -4.218544214140102e-07, -2.4105966937943051e-07, -1.2052983468971531e-07, -4.33907404882972e-06, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.33907404882972e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.026491734485818e-07, -1.8079475203457554e-07, -4.8211933875886122e-07, -9.0397376017287418e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -1.2052983468971525e-07, -1.2052983468971525e-07, -1.2052983468971528e-07, -6.0264917344857666e-08, -3.6158950406915309e-07, -1.807947520345712e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -1.5668878509663108e-06, -1.3860930989317272e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.6158950406915389e-07, -1.2052983468971528e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.8211933875886629e-06, -4.8211933875886298e-06, -9.7629166098670811e-06, -4.8211933875886383e-06, -4.8211933875886518e-06, -2.4105966937943051e-07, -1.2052983468971531e-07, -4.8211933875886101e-07, -5.4238425610371098e-07, -2.4105966937943051e-07, -6.6291409079343494e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -9.6423867751772224e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -9.7629166098670574e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.8079475203457557e-07, 0.00024545900834560633, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -6.026491734485764e-08, -2.4105966937943051e-07, -7.2317900813830258e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -1.0847685122074283e-06, -6.0264917344857653e-08, -2.4105966937943045e-07, -1.2052983468971528e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.0132458672429127e-07, -2.4105966937943061e-07, 0.00024539874342826141, -3.6158950406915103e-07, -5.1225179743129167e-06, -6.0264917344857666e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.0264917344857666e-08, -2.7721861978634439e-06, -6.0264917344857947e-07, -6.026491734485764e-08, -4.8211933875886112e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.8501329624871633e-05, -4.8211933875886122e-07, -1.2052983468971631e-05, -4.8211933875886122e-07, -1.2052983468971531e-07, -3.615895040691473e-06, -7.2317900813830237e-07, -3.0132458672429069e-07, -3.6158950406915141e-06, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.7629166098670574e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.3800666071972349e-05, -1.8079475203457543e-07, -1.2052983468971643e-05, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971528e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.7629166098670811e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.6271527683111517e-06, -5.785432065106419e-06, -4.8211933875886122e-07, -4.2788091314848414e-06, -7.2317900813830174e-07, -7.2317900813830174e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -6.0264917344858455e-07, -4.8211933875886112e-07, -6.026491734485836e-07, -1.2655632642420205e-06, -4.8211933875886122e-07, -3.013245867242919e-07, -1.3860930989317196e-06, -4.8211933875886122e-07, -7.2317900813830237e-07, -1.8079475203457784e-07, -3.0132458672429063e-07, -1.2052983468971525e-07, -6.026491734485764e-08, -6.0264917344857666e-08, -4.8211933875886112e-07, -7.2317900813830205e-07, -3.6158950406915373e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772224e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772224e-07, -1.4463580162766039e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -5.4238425610371458e-07, -2.0490071897251537e-06, -1.2052983468971525e-07, -4.8211933875886101e-07, -4.8211933875886133e-07, -5.4238425610371458e-07, -1.5668878509662727e-06, -4.8211933875886112e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.0264917344857653e-08, -6.0264917344857627e-08, -6.026491734485764e-08, -1.2052983468971533e-07, -1.0245035948625669e-06, -1.8079475203457386e-06, -7.2317900813830237e-07, -3.6158950406915309e-07, -6.0264917344857666e-08, -2.4105966937943061e-07, -9.6423867751772245e-07, -1.4463580162766037e-06, -4.8211933875886101e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -7.2317900813830227e-07, -4.8211933875886122e-07, -6.026491734485764e-08, -1.2052983468971528e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -5.4238425610371373e-07, -3.0132458672429143e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.3390740488297149e-06, -2.4105966937943056e-07, -6.0264917344857666e-08, -3.615895040691473e-06, -4.8211933875886122e-07, -2.8927160325532514e-06, -2.8927160325532082e-06, -3.0132458672428959e-06, -2.8927160325532514e-06, -2.4105966937943056e-07, -2.4105966937943056e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886112e-07, -6.026491734485764e-08, -4.8211933875886112e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.2185442141400332e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -3.6761599580363371e-06, -1.2052983468971528e-07, -4.33907404882972e-06, -4.33907404882972e-06, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.3390740488297217e-06, -4.3390740488297132e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.8079475203457551e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -2.4226496772632899e-05, -2.410596693794292e-05, -6.0264917344857566e-07, -1.2052983468971533e-07, -3.6158950406914679e-07, -1.2052983468971587e-06, -9.6423867751772986e-06, -2.4105966937943066e-07, -1.1088744791453903e-05, -1.2052983468971536e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772986e-06, -9.6423867751772986e-06, -9.6423867751772245e-07, -2.7360272474565421e-05, -2.4105966937943061e-07, -2.4105966937943275e-05, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -1.2052983468971533e-07, -1.2052983468971536e-07, -9.6423867751772266e-07, -9.6423867751772287e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -9.6423867751772202e-07, -6.0264917344857566e-07, -3.61589504069147e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971533e-07, -1.8079475203457477e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.084768512207437e-06, -9.6423867751772287e-07, -1.8079475203457426e-06, -2.4105966937943061e-07, -1.2052983468971531e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971531e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943061e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.2052983468971564e-06, -9.6423867751772266e-07, -1.9284773550354453e-06, -1.2052983468971531e-07, -9.6423867751772266e-07, -2.049007189725158e-06, -9.6423867751772266e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -3.8569547100708881e-06, -3.0132458672428764e-06, -9.6423867751772266e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -1.2052983468971568e-06, -1.3258281815868673e-06, -4.8211933875886122e-07, -1.9284773550354445e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772266e-07, -1.2052983468971528e-07, -9.6423867751772266e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971533e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.2052983468971533e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -1.2052983468971533e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772287e-07, -9.6423867751772245e-07, -2.8927160325531735e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.1695370244148782e-06, -4.8211933875886144e-07, -1.2052983468971531e-07, -2.4105966937943072e-07, -1.5668878509663114e-06, -9.6423867751772266e-07, -1.9284773550354449e-06, -1.0124506113936154e-05, -9.6423867751772266e-07, -1.0606625452694949e-05, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -9.6423867751772427e-06, -1.9284773550354449e-06, -9.7629166098669981e-06, -1.2052983468971533e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -1.0124506113936154e-05, -9.6423867751772986e-06, -9.6423867751772342e-06, -9.6423867751772596e-06, -1.2052983468971531e-07, -4.8211933875886101e-07, -1.2052983468971536e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -9.6423867751772245e-07, -1.2052983468971606e-06, -2.4105966937943153e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325531769e-06, -3.615895040691523e-07, -1.0606625452695028e-05, -1.9284773550354453e-06, -8.6781480976595467e-06, -1.2052983468971533e-07, -1.2052983468971536e-07, -3.0132458672428865e-06, -1.9284773550354457e-06, -9.6423867751772266e-07, -8.4370884282801151e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -8.6781480976595433e-06, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976595433e-06, -9.6423867751772287e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -1.2052983468971558e-06, -3.6158950406914706e-07, -9.6423867751772287e-07, -1.8079475203457363e-06, -1.2052983468971536e-07, -9.6423867751772287e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971536e-07, -7.2317900813829803e-07, -3.615895040691515e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -3.1337757019326144e-06, -2.7721861978634769e-06, -1.2052983468971536e-07, -1.9284773550354453e-06, -9.6423867751772266e-07, -7.2317900813829972e-07, -2.4105966937943066e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -9.6423867751772596e-06, -9.6423867751772342e-06, -1.952583321973405e-05, -9.6423867751772342e-06, -9.6423867751772427e-06, -4.8211933875886122e-07, -2.4105966937943066e-07, -9.6423867751772224e-07, -1.0847685122074349e-06, -4.8211933875886122e-07, -1.3258281815868745e-06, -1.2052983468971533e-07, -1.2052983468971536e-07, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -9.6423867751772266e-07, -1.2052983468971536e-07, -1.9525833219734013e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971533e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -2.4105966937943072e-07, 0.00049079748685652283, -3.61589504069147e-07, -1.2052983468971531e-07, 0.00049079748685652283, -2.4105966937943072e-07, -1.2052983468971536e-07, -1.2052983468971531e-07, -4.8211933875886112e-07, -1.4463580162765893e-06, -9.6423867751772287e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -2.1695370244148833e-06, -1.2052983468971533e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -6.0264917344857852e-07, -4.8211933875886133e-07, -2.4105966937943061e-07, -7.2317900813829401e-07, -1.0245035948625833e-05, -1.2052983468971536e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971536e-07, -5.544372395726931e-06, -1.2052983468971513e-06, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -9.6423867751772224e-07, -1.9284773550354453e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -3.7002659249742845e-05, -9.6423867751772266e-07, -2.4105966937943069e-05, -9.6423867751772287e-07, -2.4105966937943061e-07, -7.2317900813828994e-06, -1.4463580162765884e-06, -6.0264917344857756e-07, -7.231790081382979e-06, -1.2052983468971536e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9525833219734013e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.7601332143944942e-05, -3.615895040691469e-07, -2.4105966937943123e-05, -9.6423867751772266e-07, -9.6423867751772287e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971536e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.952583321973405e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.2543055366223088e-06, -1.1570864130212709e-05, -9.6423867751772287e-07, -8.5576182629697727e-06, -1.4463580162765876e-06, -1.4463580162765876e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971615e-06, -9.6423867751772245e-07, -1.2052983468971589e-06, -2.5311265284840377e-06, -9.6423867751772287e-07, -6.0264917344857989e-07, -2.7721861978634647e-06, -9.6423867751772266e-07, -1.4463580162765884e-06, -3.6158950406915156e-07, -6.0264917344857735e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -1.2052983468971536e-07, -9.6423867751772245e-07, -1.446358016276588e-06, -7.231790081382993e-07, -4.8211933875886144e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -9.6423867751772287e-07, -4.8211933875886133e-07, -1.9284773550354445e-06, -9.6423867751772287e-07, -4.8211933875886133e-07, -9.6423867751772224e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -2.8927160325531752e-06, -9.6423867751772287e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.0847685122074421e-06, -4.0980143794503422e-06, -2.4105966937943056e-07, -9.6423867751772245e-07, -9.6423867751772287e-07, -1.0847685122074421e-06, -3.133775701932617e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.0490071897251465e-06, -3.6158950406914531e-06, -1.4463580162765884e-06, -7.2317900813829803e-07, -1.2052983468971536e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -2.8927160325531756e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -1.4463580162765884e-06, -9.6423867751772266e-07, -1.2052983468971531e-07, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.0847685122074404e-06, -6.0264917344857904e-07, -9.6423867751772266e-07, -1.9284773550354453e-06, -8.6781480976595365e-06, -4.8211933875886122e-07, -1.2052983468971536e-07, -7.2317900813828977e-06, -9.6423867751772266e-07, -5.7854320651064376e-06, -5.7854320651063521e-06, -6.0264917344857519e-06, -5.7854320651064376e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -8.4370884282801392e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -7.3523199160726438e-06, -2.4105966937943061e-07, -8.6781480976595433e-06, -8.6781480976595433e-06, -9.6423867751772266e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -8.6781480976595467e-06, -8.6781480976595298e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.61589504069147e-07, -1.9284773550354457e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -2.4226496772632899e-05, -2.4105966937942933e-05, -6.0264917344857566e-07, -1.2052983468971533e-07, -3.6158950406914679e-07, -1.2052983468971589e-06, -9.6423867751773003e-06, -2.4105966937943066e-07, -1.1088744791453903e-05, -1.2052983468971536e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.642386775177302e-06, -9.6423867751772986e-06, -9.6423867751772245e-07, -2.7360272474565414e-05, -2.4105966937943061e-07, -2.4105966937943269e-05, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -1.2052983468971533e-07, -1.2052983468971536e-07, -9.6423867751772266e-07, -9.6423867751772287e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -9.6423867751772202e-07, -6.0264917344857566e-07, -3.61589504069147e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971533e-07, -1.8079475203457477e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.0847685122074374e-06, -9.6423867751772287e-07, -1.8079475203457426e-06, -2.4105966937943061e-07, -1.2052983468971531e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971531e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943061e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.2052983468971566e-06, -9.6423867751772266e-07, -1.9284773550354453e-06, -1.2052983468971531e-07, -9.6423867751772266e-07, -2.0490071897251584e-06, -9.6423867751772266e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -3.8569547100708881e-06, -3.013245867242876e-06, -9.6423867751772266e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -1.205298346897157e-06, -1.3258281815868673e-06, -4.8211933875886122e-07, -1.9284773550354445e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772266e-07, -1.2052983468971528e-07, -9.6423867751772266e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971533e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.2052983468971533e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -1.2052983468971533e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772287e-07, -9.6423867751772245e-07, -2.8927160325531735e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.1695370244148782e-06, -4.8211933875886144e-07, -1.2052983468971531e-07, -2.4105966937943072e-07, -1.5668878509663114e-06, -9.6423867751772266e-07, -1.9284773550354449e-06, -1.0124506113936154e-05, -9.6423867751772266e-07, -1.0606625452694949e-05, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -9.6423867751772427e-06, -1.9284773550354449e-06, -9.7629166098669981e-06, -1.2052983468971533e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -1.0124506113936154e-05, -9.6423867751773003e-06, -9.6423867751772359e-06, -9.6423867751772613e-06, -1.2052983468971531e-07, -4.8211933875886101e-07, -1.2052983468971536e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -9.6423867751772245e-07, -1.2052983468971608e-06, -2.4105966937943158e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325531769e-06, -3.615895040691523e-07, -1.0606625452695028e-05, -1.9284773550354453e-06, -8.6781480976595501e-06, -1.2052983468971533e-07, -1.2052983468971536e-07, -3.0132458672428861e-06, -1.9284773550354457e-06, -9.6423867751772266e-07, -8.4370884282801162e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -8.6781480976595467e-06, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976595467e-06, -9.6423867751772287e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -1.205298346897156e-06, -3.6158950406914706e-07, -9.6423867751772287e-07, -1.8079475203457359e-06, -1.2052983468971536e-07, -9.6423867751772287e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971536e-07, -7.2317900813829803e-07, -3.615895040691515e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -3.1337757019326136e-06, -2.7721861978634769e-06, -1.2052983468971536e-07, -1.9284773550354453e-06, -9.6423867751772266e-07, -7.2317900813829972e-07, -2.4105966937943066e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -9.6423867751772613e-06, -9.6423867751772359e-06, -1.952583321973405e-05, -9.6423867751772359e-06, -9.6423867751772427e-06, -4.8211933875886122e-07, -2.4105966937943066e-07, -9.6423867751772224e-07, -1.0847685122074353e-06, -4.8211933875886122e-07, -1.3258281815868745e-06, -1.2052983468971533e-07, -1.2052983468971536e-07, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -9.6423867751772266e-07, -1.2052983468971536e-07, -1.9525833219734013e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971533e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, 0.00049079748685652283, -2.4105966937943072e-07, -3.61589504069147e-07, -1.2052983468971531e-07, -2.4105966937943072e-07, 0.00049079748685652283, -1.2052983468971536e-07, -1.2052983468971531e-07, -4.8211933875886112e-07, -1.4463580162765893e-06, -9.6423867751772287e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -2.1695370244148833e-06, -1.2052983468971533e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -6.0264917344857862e-07, -4.8211933875886133e-07, -2.4105966937943061e-07, -7.2317900813829401e-07, -1.0245035948625833e-05, -1.2052983468971536e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971536e-07, -5.5443723957269319e-06, -1.2052983468971513e-06, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -9.6423867751772224e-07, -1.9284773550354453e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -3.7002659249742838e-05, -9.6423867751772266e-07, -2.4105966937943082e-05, -9.6423867751772287e-07, -2.4105966937943061e-07, -7.2317900813828977e-06, -1.4463580162765884e-06, -6.0264917344857756e-07, -7.2317900813829773e-06, -1.2052983468971536e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9525833219734013e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.7601332143944935e-05, -3.615895040691469e-07, -2.4105966937943116e-05, -9.6423867751772266e-07, -9.6423867751772287e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971536e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.952583321973405e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.2543055366223088e-06, -1.1570864130212709e-05, -9.6423867751772287e-07, -8.5576182629697761e-06, -1.4463580162765876e-06, -1.4463580162765876e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971615e-06, -9.6423867751772245e-07, -1.2052983468971594e-06, -2.5311265284840377e-06, -9.6423867751772287e-07, -6.026491734485801e-07, -2.7721861978634647e-06, -9.6423867751772266e-07, -1.4463580162765884e-06, -3.6158950406915156e-07, -6.0264917344857756e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -1.2052983468971536e-07, -9.6423867751772245e-07, -1.446358016276588e-06, -7.231790081382993e-07, -4.8211933875886144e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -9.6423867751772287e-07, -4.8211933875886133e-07, -1.9284773550354445e-06, -9.6423867751772287e-07, -4.8211933875886133e-07, -9.6423867751772224e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -2.8927160325531752e-06, -9.6423867751772287e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.0847685122074425e-06, -4.098014379450343e-06, -2.4105966937943056e-07, -9.6423867751772245e-07, -9.6423867751772287e-07, -1.0847685122074425e-06, -3.1337757019326165e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.0490071897251465e-06, -3.6158950406914531e-06, -1.4463580162765884e-06, -7.2317900813829803e-07, -1.2052983468971536e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -2.8927160325531756e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -1.4463580162765884e-06, -9.6423867751772266e-07, -1.2052983468971531e-07, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.0847685122074404e-06, -6.0264917344857915e-07, -9.6423867751772266e-07, -1.9284773550354453e-06, -8.6781480976595365e-06, -4.8211933875886122e-07, -1.2052983468971536e-07, -7.231790081382896e-06, -9.6423867751772266e-07, -5.7854320651064376e-06, -5.7854320651063521e-06, -6.0264917344857511e-06, -5.7854320651064376e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -8.4370884282801392e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -7.3523199160726438e-06, -2.4105966937943061e-07, -8.6781480976595467e-06, -8.6781480976595467e-06, -9.6423867751772266e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -8.6781480976595501e-06, -8.6781480976595332e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.61589504069147e-07, -1.9284773550354457e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -1.211324838631648e-05, -1.2052983468971514e-05, -3.0132458672428889e-07, -6.0264917344857666e-08, -1.8079475203457432e-07, -6.0264917344858137e-07, -4.8211933875886476e-06, -1.2052983468971533e-07, -5.54437239572692e-06, -6.0264917344857679e-08, -9.6423867751772245e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886493e-06, -4.8211933875886493e-06, -4.8211933875886122e-07, -1.3680136237282655e-05, -1.2052983468971531e-07, -1.2052983468971672e-05, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886112e-07, -3.0132458672428889e-07, -1.8079475203457445e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857666e-08, -9.0397376017287735e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610371563e-07, -4.8211933875886144e-07, -9.0397376017287428e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344858032e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -1.0245035948625766e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.9284773550354445e-06, -1.5066229336214431e-06, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -6.0264917344858053e-07, 0.00024485635917215778, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.026491734485764e-08, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857666e-08, -4.8211933875886144e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.4463580162765944e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.0847685122074334e-06, -2.4105966937943072e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -7.8344392548315636e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -5.0622530569680754e-06, -4.8211933875886133e-07, -5.3033127263474744e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -4.8211933875886366e-06, -9.6423867751772245e-07, -4.8814583049335109e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -5.0622530569680737e-06, -4.8211933875886476e-06, -4.8211933875886324e-06, -4.8211933875886451e-06, -6.0264917344857653e-08, -2.4105966937943061e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -6.0264917344858243e-07, -1.2052983468971619e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -4.8211933875886122e-07, -1.4463580162765958e-06, -1.8079475203457708e-07, -5.3033127263475066e-06, -9.6423867751772266e-07, -4.3390740488297513e-06, -6.0264917344857666e-08, -6.0264917344857679e-08, -1.5066229336214484e-06, -9.6423867751772287e-07, -4.8211933875886133e-07, -4.218544214140048e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -4.3390740488297496e-06, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297496e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.026491734485801e-07, -1.8079475203457445e-07, -4.8211933875886144e-07, -9.0397376017287132e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -3.6158950406915092e-07, -1.807947520345767e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -1.5668878509663089e-06, -1.3860930989317336e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -3.6158950406915166e-07, -1.2052983468971533e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886451e-06, -4.8211933875886324e-06, -9.7629166098670489e-06, -4.8211933875886324e-06, -4.8211933875886366e-06, -2.4105966937943061e-07, -1.2052983468971533e-07, -4.8211933875886112e-07, -5.4238425610371458e-07, -2.4105966937943061e-07, -6.629140907934361e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.7629166098670286e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.8079475203457445e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -1.2052983468971536e-07, 0.00024545900834560639, -6.0264917344857653e-08, -2.4105966937943056e-07, -7.2317900813829231e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.0847685122074357e-06, -6.0264917344857666e-08, -2.4105966937943051e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.0132458672429021e-07, -2.4105966937943066e-07, -1.2052983468971531e-07, -3.615895040691452e-07, -5.1225179743129099e-06, -6.0264917344857679e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, -2.7721861978634553e-06, -6.0264917344857777e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -4.8211933875886112e-07, -9.6423867751772266e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.8501329624871504e-05, -4.8211933875886133e-07, -1.205298346897159e-05, -4.8211933875886144e-07, -1.2052983468971531e-07, -3.6158950406914616e-06, -7.2317900813829761e-07, -3.0132458672428889e-07, -3.6158950406915026e-06, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670286e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.380066607197241e-05, -1.8079475203457435e-07, -1.20529834689716e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670489e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.6271527683111536e-06, -5.7854320651063842e-06, -4.8211933875886144e-07, -4.278809131484866e-06, -7.2317900813829739e-07, -7.2317900813829739e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344858286e-07, -4.8211933875886122e-07, -6.0264917344858137e-07, -1.2655632642420193e-06, -4.8211933875886144e-07, -3.01324586724291e-07, -1.3860930989317272e-06, -4.8211933875886133e-07, -7.2317900813829761e-07, -1.8079475203457676e-07, -3.0132458672428889e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -7.2317900813829761e-07, -3.6158950406915156e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943066e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943066e-07, -4.8211933875886112e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.4463580162765952e-06, -4.8211933875886144e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610371828e-07, -2.049007189725166e-06, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -5.4238425610371828e-07, -1.56688785096631e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -6.0264917344857653e-08, -1.2052983468971536e-07, -1.0245035948625707e-06, -1.8079475203457329e-06, -7.2317900813829803e-07, -3.6158950406915092e-07, -6.0264917344857679e-08, -2.4105966937943066e-07, -9.6423867751772266e-07, -1.446358016276595e-06, -4.8211933875886122e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -7.2317900813829792e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943072e-07, -5.4238425610371743e-07, -3.0132458672429058e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.3390740488297446e-06, -2.4105966937943061e-07, -6.0264917344857679e-08, -3.6158950406914616e-06, -4.8211933875886133e-07, -2.892716032553234e-06, -2.8927160325531904e-06, -3.0132458672428857e-06, -2.892716032553234e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.218544214140051e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -3.6761599580363304e-06, -1.2052983468971531e-07, -4.3390740488297496e-06, -4.3390740488297496e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.3390740488297513e-06, -4.3390740488297429e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971536e-07, -1.2052983468971531e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.807947520345744e-07, -9.6423867751772287e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -1.211324838631652e-05, -1.2052983468971558e-05, -3.0132458672429005e-07, -6.0264917344857653e-08, -1.8079475203457543e-07, -6.0264917344858392e-07, -4.8211933875886849e-06, -1.2052983468971531e-07, -5.5443723957269048e-06, -6.0264917344857666e-08, -9.6423867751772224e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886849e-06, -4.8211933875886849e-06, -4.8211933875886112e-07, -1.3680136237282607e-05, -1.2052983468971525e-07, -1.2052983468971719e-05, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971525e-07, -1.2052983468971525e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.8211933875886112e-07, -3.0132458672429005e-07, -1.8079475203457557e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857653e-08, -9.0397376017288074e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -5.4238425610371436e-07, -4.8211933875886133e-07, -9.0397376017287757e-07, -1.2052983468971528e-07, -6.026491734485764e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -9.6423867751772245e-07, -6.0264917344858264e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -1.024503594862573e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -1.928477355035444e-06, -1.5066229336214488e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -6.0264917344858286e-07, -6.6291409079343367e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857627e-08, -4.8211933875886122e-07, -1.2052983468971533e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -9.6423867751772224e-07, -9.6423867751772224e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886112e-07, -1.4463580162766037e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -1.0847685122074262e-06, -2.4105966937943066e-07, -6.0264917344857653e-08, -1.2052983468971533e-07, -7.8344392548315742e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -5.0622530569680822e-06, -4.8211933875886122e-07, -5.3033127263474524e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772224e-07, -4.8211933875886552e-06, -9.6423867751772245e-07, -4.8814583049335245e-06, -6.0264917344857653e-08, -9.6423867751772245e-07, -9.6423867751772224e-07, -2.4105966937943056e-07, -5.0622530569680822e-06, -4.8211933875886849e-06, -4.821193387588651e-06, -4.8211933875886637e-06, -6.0264917344857666e-08, -2.4105966937943051e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -6.0264917344857627e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.8211933875886133e-07, -6.0264917344858032e-07, -1.205298346897167e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -1.4463580162766047e-06, -1.8079475203457824e-07, -5.3033127263474947e-06, -9.6423867751772245e-07, -4.3390740488297217e-06, -6.0264917344857666e-08, -6.0264917344857666e-08, -1.5066229336214534e-06, -9.6423867751772266e-07, -4.8211933875886122e-07, -4.2185442141401216e-07, -2.4105966937943056e-07, -1.2052983468971528e-07, -4.3390740488297217e-06, -1.2052983468971528e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.33907404882972e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -6.0264917344857989e-07, -1.8079475203457557e-07, -4.8211933875886133e-07, -9.0397376017287481e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -1.2052983468971525e-07, -1.2052983468971525e-07, -1.2052983468971528e-07, -6.0264917344857666e-08, -3.6158950406915309e-07, -1.8079475203457782e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.5668878509663106e-06, -1.3860930989317268e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.6158950406915394e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.8211933875886637e-06, -4.821193387588651e-06, -9.7629166098670811e-06, -4.821193387588651e-06, -4.8211933875886552e-06, -2.4105966937943061e-07, -1.2052983468971531e-07, -4.8211933875886112e-07, -5.4238425610371098e-07, -2.4105966937943061e-07, -6.6291409079343441e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -9.6423867751772266e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -9.7629166098670574e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.8079475203457557e-07, -6.026491734485764e-08, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, 0.00024545900834560644, -2.4105966937943061e-07, -7.2317900813830227e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -1.0847685122074283e-06, -6.0264917344857653e-08, -2.4105966937943051e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.0132458672429143e-07, -2.4105966937943061e-07, -1.2052983468971528e-07, -3.6158950406915103e-07, -5.1225179743129167e-06, -6.0264917344857666e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943066e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.0264917344857666e-08, 0.0002427470870650881, -6.0264917344858021e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.8211933875886101e-07, -9.6423867751772245e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -1.8501329624871629e-05, -4.8211933875886122e-07, -1.2052983468971634e-05, -4.8211933875886133e-07, -1.2052983468971528e-07, -3.6158950406914768e-06, -7.2317900813829634e-07, -3.01324586724291e-07, -3.615895040691517e-06, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.7629166098670574e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.3800666071972352e-05, -1.8079475203457551e-07, -1.2052983468971644e-05, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971528e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.7629166098670811e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.6271527683111906e-06, -5.7854320651064198e-06, -4.8211933875886122e-07, -4.2788091314848406e-06, -7.2317900813830184e-07, -7.2317900813830184e-07, -4.8211933875886133e-07, -4.8211933875886112e-07, -6.0264917344858053e-07, -4.8211933875886112e-07, -6.026491734485837e-07, -1.2655632642420197e-06, -4.8211933875886133e-07, -3.0132458672429005e-07, -1.3860930989317201e-06, -4.8211933875886122e-07, -7.2317900813829549e-07, -1.807947520345712e-07, -3.013245867242909e-07, -1.2052983468971525e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.8211933875886112e-07, -7.2317900813830227e-07, -3.6158950406915373e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886101e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.4105966937943061e-07, -4.8211933875886101e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772224e-07, -1.4463580162766045e-06, -4.8211933875886133e-07, -9.6423867751772224e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -5.4238425610371458e-07, -2.0490071897251584e-06, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -5.4238425610373035e-07, -1.5668878509663123e-06, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886112e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.0264917344857653e-08, -6.0264917344857627e-08, -6.0264917344857666e-08, -1.2052983468971533e-07, -1.0245035948625669e-06, -1.8079475203457384e-06, -7.2317900813829888e-07, -3.6158950406915309e-07, -6.0264917344857666e-08, -2.4105966937943061e-07, -9.6423867751772245e-07, -1.4463580162766045e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -7.2317900813830205e-07, -4.8211933875886122e-07, -6.026491734485764e-08, -1.2052983468971531e-07, -2.4105966937943061e-07, -2.4105966937943066e-07, -5.4238425610371373e-07, -3.0132458672429175e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.3390740488297166e-06, -2.4105966937943056e-07, -6.0264917344857666e-08, -3.615895040691476e-06, -4.8211933875886122e-07, -2.8927160325532518e-06, -2.8927160325532082e-06, -3.0132458672428959e-06, -2.8927160325532518e-06, -2.4105966937943056e-07, -2.4105966937943056e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -6.026491734485764e-08, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.2185442141400273e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -3.6761599580363414e-06, -1.2052983468971531e-07, -4.33907404882972e-06, -4.3390740488297217e-06, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.3390740488297217e-06, -4.3390740488297132e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.8079475203457525e-07, -9.6423867751772266e-07, -1.928477355035444e-06, -1.928477355035444e-06, -1.9284773550354445e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.4105966937943056e-07, -2.4105966937943056e-07, -4.8452993545265878e-05, -4.8211933875886069e-05, -1.2052983468971551e-06, -2.4105966937943056e-07, -7.2317900813829496e-07, -2.4105966937943221e-06, -1.9284773550354631e-05, -4.8211933875886112e-07, -2.2177489582907717e-05, -2.4105966937943061e-07, -3.8569547100708881e-06, -3.8569547100708873e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -1.9284773550354631e-05, -1.9284773550354631e-05, -1.928477355035444e-06, -5.4720544949130551e-05, -4.8211933875886091e-07, -4.8211933875886706e-05, -3.8569547100708881e-06, -1.9284773550354445e-06, -1.928477355035444e-06, -2.4105966937943056e-07, -2.4105966937943056e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886091e-07, -4.8211933875886091e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354436e-06, -1.2052983468971539e-06, -7.2317900813829549e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943056e-07, -3.6158950406915162e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.1695370244148723e-06, -1.9284773550354449e-06, -3.6158950406915052e-06, -4.8211933875886101e-07, -2.4105966937943051e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -2.4105966937943056e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886112e-07, -2.4105966937943061e-07, -1.9284773550354449e-06, -3.8569547100708898e-06, -2.410596693794317e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -2.4105966937943061e-07, -1.9284773550354445e-06, -4.0980143794503269e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -7.7139094201417745e-06, -6.0264917344857731e-06, -1.9284773550354445e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -9.6423867751772224e-07, -1.9284773550354445e-06, -2.4105966937943179e-06, -2.6516563631737423e-06, -9.6423867751772224e-07, -3.8569547100708889e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.4105966937943045e-07, -1.9284773550354445e-06, -4.8211933875886122e-07, -1.9284773550354445e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943056e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -2.4105966937943056e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.4105966937943056e-07, -1.928477355035444e-06, -1.928477355035444e-06, -1.9284773550354449e-06, -1.928477355035444e-06, -5.7854320651063622e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -1.9284773550354445e-06, -2.4105966937943056e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -4.33907404882977e-06, -9.6423867751772245e-07, -2.4105966937943056e-07, -4.8211933875886122e-07, -3.1337757019326373e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -2.0249012227872356e-05, -1.9284773550354445e-06, -2.1213250905389976e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -1.9284773550354512e-05, -3.8569547100708889e-06, -1.9525833219733962e-05, -2.4105966937943056e-07, -3.8569547100708889e-06, -3.8569547100708881e-06, -9.6423867751772202e-07, -2.0249012227872356e-05, -1.9284773550354631e-05, -1.9284773550354499e-05, -1.928477355035455e-05, -2.4105966937943061e-07, -9.6423867751772139e-07, -2.4105966937943061e-07, -2.4105966937943056e-07, -2.4105966937943045e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -2.4105966937943056e-07, -1.9284773550354449e-06, -2.4105966937943213e-06, -4.8211933875886408e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.9284773550354449e-06, -5.7854320651063648e-06, -7.2317900813830618e-07, -2.1213250905390118e-05, -3.8569547100708889e-06, -1.7356296195319127e-05, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.0264917344857943e-06, -3.8569547100708898e-06, -1.9284773550354445e-06, -1.6874176856560266e-06, -9.6423867751772202e-07, -4.8211933875886101e-07, -1.7356296195319134e-05, -4.8211933875886101e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.7356296195319134e-05, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.4105966937943056e-07, -1.9284773550354449e-06, -2.4105966937943136e-06, -7.2317900813829549e-07, -1.9284773550354449e-06, -3.6158950406914921e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -4.8211933875886091e-07, -4.8211933875886091e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -1.4463580162765986e-06, -7.2317900813830438e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.8569547100708889e-06, -6.2675514038652585e-06, -5.5443723957269319e-06, -2.4105966937943061e-07, -3.8569547100708889e-06, -1.9284773550354445e-06, -1.446358016276602e-06, -4.8211933875886112e-07, -2.4105966937943061e-07, -2.4105966937943056e-07, -1.928477355035455e-05, -1.9284773550354499e-05, -3.9051666439468379e-05, -1.9284773550354499e-05, -1.9284773550354512e-05, -9.6423867751772224e-07, -4.8211933875886112e-07, -1.928477355035444e-06, -2.1695370244148765e-06, -9.6423867751772224e-07, -2.6516563631737584e-06, -2.4105966937943056e-07, -2.4105966937943061e-07, -3.8569547100708898e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -2.4105966937943056e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -3.8569547100708889e-06, -1.9284773550354445e-06, -2.4105966937943061e-07, -3.9051666439467952e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.4105966937943056e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -7.2317900813829549e-07, -2.4105966937943051e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -2.4105966937943056e-07, -2.4105966937943061e-07, 0.00098111285437428651, -2.892716032553182e-06, -1.9284773550354445e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.3390740488297886e-06, -2.4105966937943056e-07, -9.6423867751772181e-07, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.2052983468971627e-06, -9.6423867751772224e-07, -4.8211933875886112e-07, -1.4463580162765906e-06, -2.0490071897251667e-05, -2.4105966937943061e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -2.4105966937943061e-07, -1.1088744791453842e-05, -2.4105966937943153e-06, -2.4105966937943061e-07, -1.9284773550354445e-06, -1.9284773550354436e-06, -1.9284773550354445e-06, -3.8569547100708889e-06, -1.9284773550354436e-06, -3.8569547100708889e-06, -1.9284773550354436e-06, -1.9284773550354436e-06, -7.400531849948527e-05, -1.9284773550354445e-06, -4.8211933875886374e-05, -1.9284773550354449e-06, -4.8211933875886101e-07, -1.446358016276588e-05, -2.8927160325531633e-06, -1.2052983468971572e-06, -1.4463580162766044e-05, -2.4105966937943061e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.9051666439467952e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -5.5202664287889952e-05, 0.00024479609425481275, -4.8211933875886415e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.4105966937943056e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.4105966937943061e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886101e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.9051666439468379e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -6.5086110732446092e-06, -2.3141728260425459e-05, -1.9284773550354445e-06, -1.7115236525939603e-05, -2.8927160325531803e-06, -2.8927160325531803e-06, -1.9284773550354445e-06, -1.928477355035444e-06, -2.410596693794323e-06, -1.928477355035444e-06, -2.4105966937943217e-06, -5.0622530569680856e-06, -1.9284773550354449e-06, -1.2052983468971602e-06, -5.544372395726909e-06, -1.9284773550354445e-06, -2.892716032553165e-06, -7.2317900813829739e-07, -1.2052983468971568e-06, -4.8211933875886091e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.928477355035444e-06, -2.892716032553182e-06, -1.4463580162766011e-06, -9.6423867751772245e-07, -1.9284773550354445e-06, -1.928477355035444e-06, -1.9284773550354436e-06, -3.8569547100708881e-06, -1.9284773550354445e-06, -9.6423867751772224e-07, -3.8569547100708881e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -1.9284773550354436e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -5.7854320651063639e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -3.8569547100708873e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.169537024414896e-06, -8.1960287589006945e-06, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354449e-06, -2.1695370244148524e-06, -6.2675514038652636e-06, -1.928477355035444e-06, -1.9284773550354449e-06, -1.928477355035444e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -2.4105966937943056e-07, -2.4105966937943045e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, 0.00024142125888350127, -7.2317900813829435e-06, -2.8927160325531684e-06, -1.4463580162765986e-06, -2.4105966937943061e-07, -9.6423867751772224e-07, -3.8569547100708889e-06, -5.7854320651063648e-06, -1.9284773550354445e-06, -9.6423867751772224e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772224e-07, -2.8927160325531828e-06, -1.9284773550354445e-06, -2.4105966937943051e-07, -4.8211933875886112e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -2.1695370244148875e-06, -1.2052983468971606e-06, -1.9284773550354445e-06, -3.8569547100708898e-06, -1.7356296195319121e-05, -9.6423867751772202e-07, -2.4105966937943061e-07, -1.446358016276588e-05, -1.9284773550354445e-06, -1.1570864130212899e-05, -1.1570864130212724e-05, -1.2052983468971543e-05, -1.1570864130212899e-05, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.9284773550354445e-06, -2.4105966937943051e-07, -1.9284773550354445e-06, -2.4105966937943056e-07, -2.4105966937943056e-07, -1.6874176856560278e-05, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.4704639832145311e-05, -4.8211933875886112e-07, -1.7356296195319134e-05, -1.7356296195319134e-05, -1.9284773550354445e-06, -2.4105966937943056e-07, -1.9284773550354445e-06, -1.7356296195319127e-05, -1.7356296195319107e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, 0.00049055642718714315, -4.8211933875886122e-07, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.2317900813829422e-07, -3.8569547100708898e-06, -5.7854320651064512e-06, -5.7854320651064249e-06, -5.78543206510643e-06, -5.7854320651064495e-06, -2.8927160325531828e-06, -2.8927160325531828e-06, -5.7854320651063639e-06, -5.7854320651063622e-06, -7.2317900813830248e-07, -7.2317900813830163e-07, -0.00014535898063579799, -0.00014463580162765805, -3.6158950406914743e-06, -7.2317900813830237e-07, -2.1695370244149045e-06, -7.2317900813829773e-06, -5.7854320651063453e-05, -1.4463580162766033e-06, -6.6532468748722691e-05, -7.2317900813829464e-07, -1.1570864130212862e-05, -1.1570864130212855e-05, -5.7854320651063605e-06, -5.7854320651063656e-06, -5.7854320651063466e-05, -5.7854320651063331e-05, -5.7854320651063487e-06, -0.0001641616348473922, -1.4463580162766136e-06, -0.00014463580162765819, -1.1570864130212868e-05, -5.7854320651064266e-06, -5.7854320651064528e-06, -7.2317900813829411e-07, -7.2317900813830248e-07, -5.7854320651064063e-06, -5.7854320651064113e-06, -1.4463580162766136e-06, -1.4463580162766136e-06, -7.2317900813829422e-07, -7.231790081382993e-07, -5.7854320651063436e-06, -3.6158950406914662e-06, -2.1695370244148901e-06, -2.8927160325531836e-06, -2.892716032553182e-06, -7.2317900813830237e-07, -1.0847685122074373e-05, -5.7854320651063927e-06, -5.7854320651063944e-06, -6.5086110732446312e-06, -5.7854320651063571e-06, -1.0847685122074399e-05, -1.446358016276605e-06, -7.2317900813830576e-07, -5.7854320651063605e-06, -5.7854320651063605e-06, -7.2317900813830269e-07, -7.2317900813830068e-07, -5.7854320651063978e-06, -5.785432065106391e-06, -1.446358016276587e-06, -7.2317900813829782e-07, -5.7854320651063741e-06, -1.1570864130212702e-05, -7.2317900813829706e-06, -5.7854320651064046e-06, -1.1570864130212755e-05, -7.2317900813830269e-07, -5.7854320651063825e-06, -1.2294043138351154e-05, -5.7854320651064046e-06, -5.7854320651063859e-06, -1.1570864130212853e-05, -2.3141728260425401e-05, -1.8079475203457304e-05, -5.7854320651063622e-06, -1.157086413021284e-05, -1.1570864130212833e-05, -2.8927160325532247e-06, -5.785432065106391e-06, -7.2317900813829604e-06, -7.9549690895211718e-06, -2.8927160325532264e-06, -1.1570864130212691e-05, -5.7854320651064046e-06, -5.7854320651064063e-06, -5.785432065106408e-06, 0.00024407291524667466, -5.7854320651064401e-06, -5.7854320651063622e-06, -7.231790081383065e-07, -5.7854320651063605e-06, -1.4463580162765952e-06, -5.7854320651064368e-06, -5.7854320651064012e-06, -5.785432065106408e-06, -7.2317900813830311e-07, -1.157086413021284e-05, -1.1570864130212846e-05, -7.2317900813830121e-07, -5.7854320651064046e-06, -5.7854320651064012e-06, -7.2317900813830174e-07, -5.7854320651064512e-06, -5.7854320651064444e-06, -5.7854320651063842e-06, -5.7854320651064461e-06, -1.7356296195319229e-05, -5.7854320651064418e-06, -5.7854320651063707e-06, -5.7854320651063842e-06, -7.2317900813829295e-07, -5.7854320651063775e-06, -5.7854320651063859e-06, -1.1570864130212792e-05, -2.892716032553182e-06, -1.3017222146489269e-05, -2.8927160325531836e-06, -7.2317900813830555e-07, -1.4463580162765994e-06, -9.401327105797781e-06, -5.785432065106408e-06, -1.1570864130212694e-05, -6.0747036683617047e-05, -5.7854320651063978e-06, -6.3639752716169442e-05, -5.7854320651063893e-06, -5.7854320651063842e-06, -1.1570864130212833e-05, -5.7854320651063588e-05, -1.157086413021284e-05, -5.8577499659202236e-05, -7.2317900813829432e-07, -1.1570864130212846e-05, -1.1570864130212826e-05, -2.8927160325532201e-06, -6.0747036683617034e-05, -5.7854320651063453e-05, -5.7854320651063405e-05, -5.7854320651063758e-05, -7.2317900813830227e-07, -2.8927160325531726e-06, -7.2317900813829739e-07, -7.2317900813830438e-07, -7.2317900813830661e-07, -5.785432065106408e-06, -5.7854320651064097e-06, -5.7854320651064046e-06, -5.7854320651064046e-06, -7.2317900813829739e-07, -7.2317900813829803e-07, -7.2317900813829125e-07, -5.7854320651064283e-06, -7.2317900813829943e-06, -1.4463580162765934e-05, -1.1570864130212694e-05, -1.1570864130212779e-05, -5.7854320651064249e-06, -1.73562961953191e-05, -2.1695370244148439e-06, -6.3639752716169795e-05, -1.1570864130212772e-05, -5.2068888585956996e-05, -7.2317900813830184e-07, -7.2317900813829972e-07, -1.8079475203457311e-05, -1.1570864130212792e-05, -5.7854320651063927e-06, -5.0622530569680915e-06, -2.8927160325531756e-06, -1.4463580162766045e-06, -5.2068888585957009e-05, -1.446358016276605e-06, -2.8927160325531828e-06, -2.8927160325531828e-06, -5.2068888585956996e-05, -5.7854320651063741e-06, -7.2317900813829951e-07, -5.785432065106391e-06, -7.2317900813829147e-07, -5.7854320651063842e-06, -7.2317900813829706e-06, -2.1695370244148901e-06, -5.7854320651063876e-06, -1.084768512207447e-05, -7.2317900813829422e-07, -5.7854320651063724e-06, -1.4463580162766136e-06, -1.4463580162766132e-06, -1.44635801627661e-06, -7.2317900813830078e-07, -4.3390740488297319e-06, -2.1695370244148481e-06, -5.7854320651064181e-06, -5.7854320651064249e-06, -1.1570864130212765e-05, -1.8802654211595579e-05, -1.6633117187180578e-05, -7.2317900813829422e-07, -1.1570864130212701e-05, -5.7854320651064215e-06, -4.3390740488297217e-06, -1.446358016276588e-06, -7.2317900813829803e-07, -7.2317900813830438e-07, -5.7854320651063758e-05, -5.7854320651063405e-05, -0.00011715499931840374, -5.7854320651063399e-05, -5.7854320651063588e-05, -2.8927160325532264e-06, -1.446358016276588e-06, -5.7854320651063504e-06, 0.00023901066218970666, -2.8927160325532247e-06, -7.9549690895212057e-06, -7.2317900813830227e-07, -7.2317900813829464e-07, -1.1570864130212738e-05, 0.001958368754038502, -5.7854320651063842e-06, -7.2317900813829972e-07, -7.2317900813830237e-07, -2.8927160325532048e-06, -2.8927160325532065e-06, -1.1570864130212701e-05, -5.7854320651064249e-06, -7.2317900813829634e-07, -0.00011715499931840496, -5.7854320651064215e-06, -5.7854320651064198e-06, -7.2317900813830121e-07, -2.8927160325532065e-06, -2.8927160325532057e-06, -1.4463580162765893e-06, -1.4463580162765893e-06, -2.1695370244148858e-06, -7.2317900813830258e-07, -1.4463580162765893e-06, -1.4463580162765893e-06, -7.2317900813829231e-07, -7.2317900813830227e-07, -2.892716032553182e-06, 0.0029375531310577587, -5.7854320651063334e-06, -7.2317900813829718e-07, -7.2317900813829464e-07, -1.3017222146489244e-05, -7.2317900813830057e-07, -2.8927160325531709e-06, -1.4463580162765874e-06, -1.1570864130212726e-05, -1.1570864130212733e-05, -3.6158950406914887e-06, -2.8927160325531993e-06, -1.4463580162765872e-06, -4.3390740488297335e-06, -6.1470215691754949e-05, -7.231790081382993e-07, -2.8927160325531985e-06, -2.8927160325532002e-06, -1.157086413021274e-05, -1.1570864130212719e-05, -2.8927160325531989e-06, -2.8927160325531667e-06, -2.8927160325531659e-06, -7.2317900813829718e-07, 0.00021225303888858918, -7.2317900813829223e-06, -7.2317900813830269e-07, -5.7854320651064198e-06, -5.7854320651063487e-06, -5.7854320651064215e-06, -1.1570864130212719e-05, -5.7854320651063487e-06, -1.157086413021274e-05, -5.7854320651063487e-06, -5.7854320651063487e-06, -0.00022201595549845723, -5.7854320651064198e-06, -0.00014463580162765824, -5.7854320651063775e-06, -1.4463580162766056e-06, -4.339074048829752e-05, -8.6781480976594823e-06, -3.6158950406914717e-06, -4.339074048829752e-05, -7.2317900813829549e-07, -5.785432065106408e-06, -5.7854320651064063e-06, -0.00011715499931840496, -5.7854320651063707e-06, -5.785432065106369e-06, -0.00016560799286366936, -2.1695370244148968e-06, -0.00014463580162765835, -5.7854320651064012e-06, -5.7854320651064046e-06, -7.2317900813829845e-07, -5.7854320651064046e-06, -5.7854320651064097e-06, -7.2317900813829676e-07, -1.1570864130212733e-05, -1.1570864130212726e-05, -1.44635801627661e-06, -2.8927160325532057e-06, -2.8927160325532065e-06, -5.7854320651064215e-06, -5.7854320651064232e-06, -0.00011715499931840374, -5.7854320651064249e-06, -5.7854320651064181e-06, -1.9525833219734003e-05, -6.9425184781276374e-05, -5.7854320651064046e-06, -5.1345709577818768e-05, -8.6781480976595874e-06, -8.6781480976595874e-06, -5.7854320651064215e-06, -5.7854320651064444e-06, -7.2317900813829909e-06, -5.7854320651064512e-06, -7.2317900813829773e-06, 0.00023033251409204942, -5.7854320651063741e-06, -3.6158950406914921e-06, -1.6633117187180774e-05, -5.7854320651063724e-06, -8.6781480976594823e-06, -2.169537024414849e-06, -3.6158950406914683e-06, -1.4463580162766115e-06, -7.2317900813830227e-07, -7.2317900813829951e-07, -5.7854320651064528e-06, -8.6781480976595603e-06, -4.3390740488297217e-06, -2.892716032553187e-06, -5.7854320651064283e-06, -5.7854320651063487e-06, -5.7854320651063487e-06, -1.1570864130212697e-05, -5.7854320651063605e-06, -2.8927160325532002e-06, -1.1570864130212697e-05, -5.7854320651063605e-06, -2.8927160325531985e-06, -5.7854320651063487e-06, -7.2317900813829549e-07, -5.7854320651063605e-06, -5.7854320651063605e-06, -1.1570864130212846e-05, -1.7356296195319134e-05, -5.7854320651063876e-06, -1.1570864130212868e-05, -1.1570864130212848e-05, -5.7854320651063622e-06, -5.7854320651063639e-06, -5.7854320651063724e-06, -5.7854320651063673e-06, -6.5086110732446295e-06, -2.4588086276702192e-05, -1.4463580162765867e-06, -5.7854320651064418e-06, -5.7854320651063605e-06, -6.5086110732446228e-06, -1.8802654211595491e-05, -5.7854320651064249e-06, -5.785432065106391e-06, -5.7854320651064512e-06, -2.8927160325531993e-06, -2.8927160325532002e-06, -7.2317900813830227e-07, -7.2317900813830661e-07, -7.2317900813830269e-07, -1.4463580162766016e-06, -1.2294043138351126e-05, -2.169537024414876e-05, -8.678148097659523e-06, -4.3390740488297319e-06, -7.2317900813829909e-07, -2.8927160325531976e-06, -1.1570864130212772e-05, -1.7356296195319148e-05, -5.7854320651064384e-06, -2.8927160325531976e-06, -1.1570864130212785e-05, -1.1570864130212779e-05, -2.8927160325531976e-06, -8.6781480976595433e-06, -5.7854320651063707e-06, -7.2317900813830523e-07, -1.4463580162765867e-06, -2.8927160325531976e-06, -2.8927160325531989e-06, -6.5086110732446304e-06, -3.6158950406914878e-06, -5.7854320651064181e-06, -1.1570864130212702e-05, -5.2068888585957023e-05, -2.8927160325532201e-06, -7.2317900813829761e-07, -4.339074048829752e-05, -5.7854320651063842e-06, -3.471259239063753e-05, -3.4712592390638173e-05, -3.6158950406914608e-05, -3.471259239063753e-05, -2.8927160325532201e-06, -2.8927160325532192e-06, -5.7854320651063927e-06, -5.7854320651063876e-06, -2.8927160325531692e-06, -2.8927160325531692e-06, -5.7854320651064368e-06, -7.2317900813830502e-07, -5.7854320651064401e-06, -7.2317900813829274e-07, -7.2317900813830184e-07, -5.0622530569680629e-05, -2.8927160325531692e-06, -2.8927160325531692e-06, -4.4113919496436432e-05, -1.4463580162766079e-06, -5.2068888585956996e-05, -5.2068888585957009e-05, -5.7854320651063825e-06, -7.2317900813829761e-07, -5.7854320651063876e-06, -5.2068888585956996e-05, -5.2068888585956996e-05, -5.7854320651063842e-06, -5.7854320651063792e-06, -1.4463580162765927e-06, -1.4463580162766037e-06, -1.1570864130212711e-05, -5.7854320651063809e-06, -5.7854320651063825e-06, -2.1695370244148909e-06, -1.1570864130212711e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6905987090531703e-05, -9.6423867751771949e-05, -2.4105966937943077e-06, -4.8211933875886133e-07, -1.446358016276591e-06, -4.8211933875886442e-06, -3.8569547100709167e-05, -9.6423867751772266e-07, -4.4354979165815428e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100709167e-05, -3.8569547100709167e-05, -3.8569547100708898e-06, -0.00010944108989826143, -9.6423867751772245e-07, -9.642386775177321e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708889e-06, -2.4105966937943077e-06, -1.4463580162765918e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813830053e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297369e-06, -3.8569547100708915e-06, -7.2317900813829807e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886357e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -8.1960287589006267e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.2052983468971524e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.8211933875886374e-06, -5.3033127263474626e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212728e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594925e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652475e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.0498024455744603e-05, -3.8569547100708906e-06, -4.2426501810779795e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709039e-05, -7.7139094201417796e-06, -3.9051666439468047e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.0498024455744603e-05, -3.8569547100709167e-05, -3.8569547100709005e-05, -3.8569547100709106e-05, -4.8211933875886122e-07, -1.9284773550354449e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -4.8211933875886527e-06, -9.6423867751772817e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -1.1570864130212738e-05, -1.4463580162766132e-06, -4.242650181078008e-05, -7.7139094201417813e-06, -3.4712592390638106e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971565e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120426e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390638106e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390638092e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886341e-06, -1.446358016276592e-06, -3.8569547100708915e-06, -7.231790081382957e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325531997e-06, -1.4463580162766098e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730464e-05, -1.1088744791453891e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532057e-06, -9.6423867751772266e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709106e-05, -3.8569547100709005e-05, -7.8103332878936337e-05, -3.8569547100709005e-05, -3.8569547100709039e-05, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297285e-06, -1.9284773550354449e-06, -5.3033127263474922e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, 0.0019564402766834681, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936161e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162765918e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651063334e-06, 0.0019602972313935386, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976595128e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943183e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325531667e-06, -4.0980143794503279e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.2177489582907683e-05, -4.8211933875886154e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897162, -3.8569547100708906e-06, -9.6423867751772545e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -2.8927160325531638e-05, -5.7854320651063741e-06, -2.4105966937943086e-06, -2.8927160325531964e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936161e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577947, -1.446358016276591e-06, -9.6423867751772627e-05, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936337e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489229e-05, -4.6283456520850965e-05, -3.8569547100708915e-06, -3.4230473051879023e-05, -5.7854320651063639e-06, -5.7854320651063639e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886561e-06, -3.8569547100708898e-06, -4.8211933875886442e-06, -1.0124506113936151e-05, -3.8569547100708915e-06, -2.4105966937943246e-06, -1.1088744791453838e-05, -3.8569547100708906e-06, -5.7854320651063741e-06, -1.4463580162766105e-06, -2.4105966937943077e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063673e-06, -2.8927160325532048e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.1570864130212735e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297581e-06, -1.6392057517801355e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488297581e-06, -1.2535102807730473e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -8.1960287589005793e-06, -1.4463580162765836e-05, -5.7854320651063707e-06, -2.8927160325531997e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417813e-06, -1.1570864130212733e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.785432065106369e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.3390740488297513e-06, -2.4105966937943213e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.4712592390638065e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531638e-05, -3.8569547100708906e-06, -2.3141728260425815e-05, -2.3141728260425469e-05, -2.4105966937943045e-05, -2.3141728260425815e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.3748353713120476e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.9409279664290616e-05, -9.6423867751772245e-07, -3.4712592390638092e-05, -3.4712592390638106e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390638106e-05, -3.4712592390638038e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765918e-06, -7.713909420141783e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -1.211324838631647e-05, -1.2052983468971504e-05, -3.0132458672428868e-07, -6.0264917344857666e-08, -1.8079475203457406e-07, -6.0264917344858116e-07, -4.8211933875886629e-06, -1.2052983468971536e-07, -5.5443723957269353e-06, -6.0264917344857679e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886629e-06, -4.8211933875886629e-06, -4.8211933875886122e-07, -1.3680136237282665e-05, -1.2052983468971531e-07, -1.2052983468971665e-05, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886101e-07, -3.0132458672428868e-07, -1.8079475203457419e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857666e-08, -9.039737601728763e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610371648e-07, -4.8211933875886144e-07, -9.0397376017287301e-07, -1.2052983468971533e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344857989e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344857666e-08, -4.8211933875886144e-07, -1.0245035948625796e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6423867751772266e-07, -1.9284773550354445e-06, -1.5066229336214418e-06, -4.8211933875886144e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -6.026491734485801e-07, -6.6291409079343282e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -1.2052983468971533e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.4463580162765922e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.0847685122074353e-06, -2.4105966937943072e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -7.8344392548315636e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -5.0622530569680788e-06, -4.8211933875886144e-07, -5.3033127263474659e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -4.8211933875886324e-06, -9.6423867751772266e-07, -4.8814583049335075e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -5.0622530569680788e-06, -4.8211933875886629e-06, -4.8211933875886281e-06, -4.8211933875886408e-06, -6.0264917344857666e-08, -2.4105966937943061e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -6.0264917344858201e-07, -1.2052983468971611e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -4.8211933875886133e-07, -1.4463580162765937e-06, -1.8079475203457686e-07, -5.3033127263475083e-06, -9.6423867751772266e-07, -4.3390740488297581e-06, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.5066229336214464e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.2185442141400523e-07, -2.4105966937943061e-07, -1.2052983468971533e-07, -4.3390740488297581e-06, -1.2052983468971533e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297564e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857947e-07, -1.8079475203457419e-07, -4.8211933875886144e-07, -9.0397376017287047e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -3.6158950406914563e-07, -1.8079475203457644e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -1.5668878509663055e-06, -1.3860930989317349e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -3.6158950406915113e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886408e-06, -4.8211933875886281e-06, -9.7629166098670421e-06, -4.8211933875886281e-06, -4.8211933875886324e-06, -2.4105966937943061e-07, 0.0002453987434282613, -4.8211933875886112e-07, -5.4238425610371849e-07, -2.4105966937943061e-07, -6.6291409079343631e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.7629166098670218e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.8079475203457419e-07, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943061e-07, -7.2317900813829718e-07, -4.8211933875886144e-07, 0.00024545900834560644, -6.0264917344857679e-08, -1.0847685122074378e-06, -6.0264917344857679e-08, -2.4105966937943051e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.0132458672429e-07, -2.4105966937943072e-07, -1.2052983468971533e-07, -3.6158950406914827e-07, -5.1225179743129167e-06, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, -2.7721861978634579e-06, -6.0264917344857735e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.8501329624871487e-05, -4.8211933875886133e-07, -1.2052983468971578e-05, -4.8211933875886144e-07, -1.2052983468971533e-07, -3.6158950406914633e-06, -7.2317900813829697e-07, -3.0132458672428963e-07, -3.6158950406914912e-06, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670218e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.3800666071972424e-05, -1.8079475203457408e-07, -1.205298346897159e-05, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670421e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.6271527683111536e-06, -5.7854320651063775e-06, -4.8211933875886144e-07, -4.2788091314848762e-06, -7.2317900813829634e-07, -7.2317900813829634e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344858243e-07, -4.8211933875886122e-07, -6.0264917344858095e-07, -1.265563264242018e-06, -4.8211933875886144e-07, -3.013245867242909e-07, -1.3860930989317285e-06, -4.8211933875886144e-07, -7.2317900813829697e-07, -1.8079475203457649e-07, -3.0132458672428952e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -7.2317900813829634e-07, -3.6158950406915092e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.4463580162765935e-06, -4.8211933875886144e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610371913e-07, -2.0490071897251685e-06, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -5.4238425610371913e-07, -1.566887850966307e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.0245035948625716e-06, -1.8079475203457312e-06, -7.2317900813829676e-07, -3.6158950406914563e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -9.6423867751772266e-07, -1.4463580162765929e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -7.2317900813829687e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -5.4238425610371828e-07, -3.0132458672429037e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.3390740488297463e-06, -2.4105966937943061e-07, -6.0264917344857679e-08, -3.6158950406914633e-06, -4.8211933875886144e-07, -2.8927160325532298e-06, -2.8927160325531862e-06, -3.0132458672428832e-06, -2.8927160325532298e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.2185442141400849e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -3.6761599580363371e-06, -1.2052983468971533e-07, -4.3390740488297564e-06, -4.3390740488297581e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.3390740488297581e-06, -4.3390740488297496e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.8079475203457419e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -1.2113248386316449e-05, -1.2052983468971477e-05, -3.0132458672428804e-07, -6.0264917344857666e-08, -1.8079475203457342e-07, -6.0264917344857989e-07, -4.8211933875886527e-06, -1.2052983468971533e-07, -5.5443723957269497e-06, 0.00024545900834560644, -9.6423867751772245e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886527e-06, -4.821193387588651e-06, -4.8211933875886122e-07, -1.3680136237282694e-05, -1.2052983468971531e-07, -1.2052983468971638e-05, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886112e-07, -3.0132458672428804e-07, -1.8079475203457355e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857666e-08, -9.0397376017287428e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610371934e-07, -4.8211933875886144e-07, -9.0397376017287132e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344857852e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -1.0245035948625794e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.9284773550354445e-06, -1.5066229336214384e-06, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -6.0264917344857873e-07, -6.6291409079343367e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.026491734485764e-08, -4.8211933875886133e-07, -1.2052983468971533e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857666e-08, -4.8211933875886144e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.4463580162765876e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.0847685122074391e-06, -2.4105966937943072e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -7.8344392548315572e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -5.0622530569680754e-06, -4.8211933875886133e-07, -5.3033127263474727e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -4.8211933875886213e-06, -9.6423867751772245e-07, -4.881458304933499e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -5.0622530569680754e-06, -4.8211933875886527e-06, -4.821193387588618e-06, -4.8211933875886307e-06, -6.0264917344857666e-08, -2.4105966937943061e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -6.0264917344858032e-07, -1.2052983468971585e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -1.4463580162765886e-06, -1.807947520345762e-07, -5.3033127263475142e-06, -9.6423867751772266e-07, -4.3390740488297734e-06, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.5066229336214435e-06, -9.6423867751772287e-07, -4.8211933875886133e-07, -4.218544214140065e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -4.3390740488297717e-06, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297717e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857777e-07, -1.8079475203457355e-07, -4.8211933875886144e-07, -9.0397376017286857e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -3.6158950406914901e-07, -1.8079475203457578e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -1.5668878509663068e-06, -1.386093098931738e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -3.6158950406914986e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886307e-06, -4.821193387588618e-06, -9.7629166098670286e-06, -4.821193387588618e-06, -4.8211933875886213e-06, -2.4105966937943061e-07, -1.2052983468971533e-07, -4.8211933875886112e-07, -5.4238425610371743e-07, -2.4105966937943061e-07, -6.6291409079343695e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.7629166098670066e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.8079475203457355e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943061e-07, -7.2317900813829464e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, 0.00024545900834560644, -1.0847685122074416e-06, -6.0264917344857666e-08, -2.4105966937943051e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.0132458672428936e-07, -2.4105966937943066e-07, -1.2052983468971533e-07, -3.61589504069147e-07, -5.1225179743129167e-06, -6.0264917344857679e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, -2.7721861978634638e-06, -6.0264917344857608e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -4.8211933875886112e-07, -9.6423867751772266e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.8501329624871426e-05, -4.8211933875886133e-07, -1.2052983468971551e-05, -4.8211933875886144e-07, -1.2052983468971531e-07, -3.6158950406914514e-06, -7.2317900813829316e-07, -3.0132458672428899e-07, -3.6158950406914921e-06, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670066e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.3800666071972451e-05, -1.8079475203457345e-07, -1.2052983468971561e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670286e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.627152768311157e-06, -5.7854320651063537e-06, -4.8211933875886144e-07, -4.2788091314848855e-06, -7.2317900813829379e-07, -7.2317900813829379e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344858074e-07, -4.8211933875886122e-07, -6.0264917344857968e-07, -1.265563264242018e-06, -4.8211933875886144e-07, -3.0132458672428995e-07, -1.3860930989317315e-06, -4.8211933875886133e-07, -7.2317900813829316e-07, -1.8079475203457535e-07, -3.0132458672428889e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -7.2317900813829422e-07, -3.6158950406914965e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943066e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943066e-07, -4.8211933875886112e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.4463580162765884e-06, -4.8211933875886144e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610372103e-07, -2.0490071897251711e-06, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -5.4238425610372209e-07, -1.5668878509663085e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.0245035948625733e-06, -1.807947520345727e-06, -7.2317900813829316e-07, -3.6158950406914901e-07, -6.0264917344857679e-08, -2.4105966937943066e-07, -9.6423867751772266e-07, -1.446358016276588e-06, -4.8211933875886122e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -7.2317900813829443e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943072e-07, -5.4238425610372019e-07, -3.0132458672428973e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.3390740488297666e-06, -2.4105966937943061e-07, -6.0264917344857679e-08, -3.6158950406914514e-06, -4.8211933875886133e-07, -2.8927160325532192e-06, -2.892716032553176e-06, -3.0132458672428764e-06, -2.8927160325532192e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.2185442141400662e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -3.6761599580363244e-06, -1.2052983468971531e-07, -4.3390740488297717e-06, -4.3390740488297717e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.3390740488297734e-06, -4.3390740488297649e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.8079475203457324e-07, -9.6423867751772287e-07, -8.6781480976593892e-06, -8.6781480976594264e-06, -8.6781480976594163e-06, -8.6781480976593926e-06, -4.3390740488297632e-06, -4.3390740488297615e-06, -8.678148097659523e-06, -8.6781480976595264e-06, -1.0847685122074287e-06, -1.0847685122074304e-06, -0.00021803847095369487, -0.00021695370244148986, -5.423842561037218e-06, -1.0847685122074292e-06, -3.2543055366223033e-06, -1.0847685122074431e-05, -8.6781480976594756e-05, -2.1695370244148608e-06, 0.00014572057013986572, -1.0847685122074416e-06, -1.7356296195318826e-05, -1.7356296195318846e-05, -8.6781480976595332e-06, -8.6781480976595196e-06, -8.6781480976594756e-05, -8.6781480976594756e-05, -8.6781480976595874e-06, -0.00024624245227108878, -2.1695370244148448e-06, -0.0002169537024414869, -1.7356296195318812e-05, -8.678148097659423e-06, -8.6781480976593824e-06, -1.0847685122074419e-06, -1.0847685122074249e-06, -8.6781480976594264e-06, -8.6781480976594163e-06, -2.1695370244148448e-06, -2.1695370244148456e-06, -1.0847685122074421e-06, -1.0847685122074321e-06, -8.6781480976595365e-06, -5.4238425610371858e-06, -3.2543055366223059e-06, -4.3390740488297598e-06, -4.3390740488297632e-06, -1.0847685122074292e-06, -1.6271527683111484e-05, -8.678148097659479e-06, -8.6781480976594705e-06, 0.00023575635665308456, -8.6781480976595365e-06, -1.6271527683111535e-05, -2.1695370244148575e-06, -1.0847685122074245e-06, -8.6781480976595298e-06, -8.6781480976595264e-06, -1.0847685122074283e-06, -1.0847685122074317e-06, -8.6781480976594671e-06, -8.6781480976594823e-06, -2.1695370244149019e-06, -1.0847685122074366e-06, -8.6781480976595027e-06, -1.7356296195319148e-05, -1.0847685122074395e-05, -8.6781480976594535e-06, -1.7356296195319046e-05, -1.0847685122074279e-06, -8.6781480976594959e-06, -1.8441064707526377e-05, -8.6781480976594569e-06, -8.6781480976594925e-06, -1.7356296195318839e-05, -3.4712592390638499e-05, -2.7119212805185815e-05, -8.678148097659523e-06, -1.7356296195318866e-05, -1.7356296195318887e-05, -4.3390740488296912e-06, -8.6781480976594857e-06, -1.0847685122074392e-05, -1.1932453634282086e-05, -4.3390740488296912e-06, -1.7356296195319222e-05, -8.6781480976594569e-06, -8.6781480976594535e-06, -8.6781480976594502e-06, -2.1695370244149002e-06, -8.6781480976593654e-06, -8.678148097659523e-06, -1.0847685122074224e-06, -8.6781480976595264e-06, -2.1695370244148757e-06, -8.6781480976593688e-06, -8.6781480976594603e-06, -8.6781480976594468e-06, -1.0847685122074279e-06, -1.7356296195318873e-05, -1.735629619531886e-05, -1.0847685122074313e-06, -8.6781480976594603e-06, -8.6781480976594671e-06, -1.08476851220743e-06, -8.6781480976593451e-06, -8.6781480976593587e-06, -8.6781480976594959e-06, -8.6781480976593553e-06, -2.603444429297842e-05, -8.6781480976593959e-06, -8.6781480976595128e-06, -8.6781480976594925e-06, -1.0847685122074349e-06, -8.6781480976594993e-06, -8.6781480976594891e-06, -1.7356296195318958e-05, -4.3390740488297632e-06, -1.9525833219734105e-05, -4.3390740488297598e-06, -1.0847685122074194e-06, -2.1695370244148676e-06, -1.4101990658696827e-05, -8.6781480976594468e-06, -1.7356296195319175e-05, -9.1120555025425151e-05, -8.6781480976594671e-06, -9.5459629074255424e-05, -8.6781480976594823e-06, -8.6781480976594959e-06, -1.7356296195318887e-05, -8.6781480976595176e-05, -1.7356296195318866e-05, -8.7866249488803344e-05, 0.00024443450475074372, -1.7356296195318853e-05, -1.73562961953189e-05, -4.3390740488296997e-06, -9.1120555025425151e-05, -8.6781480976594756e-05, -8.6781480976595203e-05, -8.6781480976595135e-05, -1.0847685122074287e-06, -4.3390740488297852e-06, -1.0847685122074374e-06, -1.0847685122074211e-06, -1.0847685122074228e-06, -8.678148097659423e-06, -8.6781480976594197e-06, -8.6781480976594569e-06, -8.6781480976594535e-06, -1.0847685122074374e-06, -1.0847685122074361e-06, -1.0847685122074374e-06, -8.6781480976594163e-06, -1.0847685122074348e-05, -2.1695370244148868e-05, -1.7356296195319188e-05, -1.7356296195318965e-05, -8.6781480976594197e-06, -2.6034444292978454e-05, 0.0007333035142522206, -9.5459629074255315e-05, -1.7356296195318985e-05, -7.810333287893673e-05, -1.0847685122074292e-06, -1.0847685122074334e-06, -2.711921280518587e-05, -1.7356296195318958e-05, -8.678148097659479e-06, 0.00023792589367749957, -4.3390740488297767e-06, -2.1695370244148583e-06, -7.810333287893673e-05, -2.1695370244148575e-06, -4.3390740488297615e-06, -4.3390740488297632e-06, -7.810333287893673e-05, -8.6781480976595094e-06, -1.0847685122074342e-06, -8.678148097659479e-06, -1.0847685122074374e-06, -8.6781480976594891e-06, -1.0847685122074394e-05, -3.2543055366223046e-06, -8.6781480976594823e-06, -1.6271527683111579e-05, -1.0847685122074425e-06, -8.6781480976595128e-06, -2.1695370244148448e-06, -2.1695370244148456e-06, -2.1695370244148498e-06, 0.00024443450475074372, -6.5086110732446236e-06, -3.2543055366223067e-06, -8.6781480976594366e-06, -8.678148097659423e-06, -1.7356296195319026e-05, -2.8203981317393726e-05, -2.4949675780771356e-05, -1.0847685122074425e-06, -1.735629619531888e-05, -8.6781480976593959e-06, -6.5086110732447142e-06, -2.1695370244148884e-06, -1.0847685122074361e-06, 0.00024443450475074378, -8.6781480976595135e-05, -8.6781480976595203e-05, -0.00017573249897760753, -8.6781480976595203e-05, -8.6781480976595176e-05, -4.3390740488296912e-06, -2.1695370244148909e-06, -8.678148097659584e-06, -9.7629166098670184e-06, -4.3390740488296912e-06, -1.1932453634281882e-05, -1.0847685122074292e-06, -1.0847685122074416e-06, -1.7356296195319127e-05, -8.6781480976595061e-06, -8.6781480976594925e-06, -1.0847685122074334e-06, -1.0847685122074287e-06, -4.3390740488297268e-06, -4.3390740488297234e-06, -1.735629619531888e-05, -8.6781480976593892e-06, -1.0847685122074391e-06, -0.00017573249897760604, -8.6781480976594298e-06, -8.6781480976594332e-06, -1.0847685122074313e-06, -4.3390740488297234e-06, -4.3390740488297251e-06, -2.1695370244148833e-06, -2.1695370244148833e-06, -3.2543055366223067e-06, -1.0847685122074283e-06, -2.1695370244148833e-06, -2.1695370244148833e-06, -1.0847685122074357e-06, -1.0847685122074283e-06, -4.3390740488297886e-06, -1.3017222146489244e-05, -8.6781480976595128e-06, -1.0847685122074378e-06, -1.0847685122074416e-06, 0.0043998210855134001, -1.0847685122074317e-06, -4.3390740488298157e-06, -2.1695370244148968e-06, -1.7356296195319053e-05, -1.7356296195319039e-05, -5.42384256103719e-06, -4.3390740488297335e-06, -2.1695370244149011e-06, -6.5086110732446329e-06, -9.2205323537632627e-05, -1.0847685122074317e-06, -4.3390740488297335e-06, -4.3390740488297319e-06, -1.7356296195319019e-05, -1.7356296195319073e-05, -4.3390740488297319e-06, -4.3390740488297479e-06, -4.3390740488297496e-06, -1.0847685122074374e-06, 0.00044113919496436128, -1.084768512207439e-05, -1.0847685122074279e-06, -8.6781480976594332e-06, -8.6781480976595874e-06, -8.6781480976594298e-06, -1.7356296195319073e-05, -8.6781480976595569e-06, -1.7356296195319019e-05, -8.6781480976595874e-06, -8.6781480976595874e-06, -0.00033302393324768388, -8.6781480976593993e-06, -0.00021695370244148842, -8.6781480976594993e-06, -2.1695370244148566e-06, -6.5086110732446399e-05, -1.3017222146489234e-05, -5.4238425610372036e-06, -6.5086110732446046e-05, -1.0847685122074404e-06, -8.6781480976594502e-06, -8.6781480976594535e-06, -0.00017573249897760604, -8.6781480976595094e-06, -8.6781480976595128e-06, -0.00024841198929550313, -3.2543055366223008e-06, -0.00021695370244148831, -8.6781480976594671e-06, -8.6781480976594603e-06, -1.0847685122074353e-06, -8.6781480976594569e-06, -8.6781480976594468e-06, -1.0847685122074387e-06, -1.7356296195319039e-05, -1.7356296195319053e-05, -2.1695370244148498e-06, -4.3390740488297251e-06, -4.3390740488297234e-06, -8.6781480976593959e-06, -8.6781480976593926e-06, -0.00017573249897760753, -8.678148097659423e-06, -8.6781480976594366e-06, -2.9288749829601033e-05, 0.00014138149609103519, -8.6781480976594569e-06, -7.7018564366728644e-05, -1.3017222146489449e-05, -1.3017222146489452e-05, -8.6781480976594264e-06, -8.6781480976593587e-06, -1.0847685122074358e-05, -8.6781480976593451e-06, -1.0847685122074361e-05, -2.2780138756356291e-05, -8.6781480976595061e-06, -5.4238425610371824e-06, -2.4949675780771214e-05, -8.6781480976595061e-06, -1.3017222146489234e-05, -3.2543055366223076e-06, -5.4238425610372036e-06, -2.169537024414849e-06, -1.0847685122074287e-06, -1.0847685122074342e-06, -8.6781480976593824e-06, -1.3017222146489224e-05, -6.5086110732446219e-06, -4.339074048829753e-06, -8.6781480976594197e-06, -8.6781480976595874e-06, -8.6781480976595874e-06, -1.7356296195319127e-05, -8.6781480976595332e-06, -4.3390740488297319e-06, -1.7356296195319087e-05, -8.6781480976595298e-06, -4.3390740488297335e-06, -8.6781480976595874e-06, -1.0847685122074404e-06, -8.6781480976595264e-06, -8.6781480976595298e-06, -1.735629619531886e-05, -2.603444429297842e-05, -8.6781480976594857e-06, -1.7356296195318812e-05, -1.735629619531886e-05, -8.6781480976595264e-06, -8.678148097659523e-06, -8.6781480976595061e-06, -8.6781480976595196e-06, -9.7629166098670659e-06, -3.6882129415052625e-05, 0.00024334973623853644, -8.6781480976593959e-06, -8.6781480976595332e-06, -9.7629166098670913e-06, -2.8203981317393956e-05, -8.6781480976594264e-06, -8.678148097659479e-06, -8.6781480976593892e-06, -4.3390740488297335e-06, -4.3390740488297319e-06, -1.0847685122074296e-06, -1.0847685122074228e-06, -1.0847685122074279e-06, -2.1695370244148575e-06, -1.8441064707526655e-05, -3.2543055366222989e-05, -1.3017222146489244e-05, -6.5086110732446236e-06, -1.0847685122074349e-06, -4.3390740488297352e-06, -1.7356296195318985e-05, -2.603444429297841e-05, -8.6781480976593993e-06, -4.3390740488297352e-06, -1.7356296195318948e-05, -1.7356296195318965e-05, -4.3390740488297352e-06, -1.301722214648923e-05, -8.6781480976595094e-06, -1.0847685122074245e-06, -2.1695370244148642e-06, -4.3390740488297352e-06, -4.3390740488297319e-06, -9.7629166098670659e-06, 0.0012221725237537267, -8.6781480976594366e-06, -1.7356296195319148e-05, -7.8103332878936066e-05, -4.3390740488296997e-06, -1.084768512207437e-06, -6.5086110732446372e-05, -8.6781480976594925e-06, -5.2068888585956935e-05, -5.2068888585956921e-05, -5.4238425610372051e-05, -5.2068888585956935e-05, -4.3390740488297014e-06, -4.3390740488297014e-06, -8.678148097659479e-06, -8.6781480976594925e-06, -4.3390740488297429e-06, -4.3390740488297446e-06, -8.6781480976593688e-06, -1.0847685122074249e-06, -8.6781480976593654e-06, -1.0847685122074353e-06, -1.08476851220743e-06, -7.5933795854520476e-05, -4.3390740488297446e-06, -4.3390740488297429e-06, -6.6170879244653428e-05, -2.1695370244148532e-06, -7.810333287893673e-05, -7.810333287893673e-05, -8.6781480976594959e-06, -1.0847685122074366e-06, -8.6781480976594857e-06, -7.810333287893673e-05, -7.8103332878935876e-05, -8.6781480976594925e-06, -8.6781480976595061e-06, -2.1695370244148782e-06, -2.1695370244148583e-06, -1.7356296195319066e-05, -8.6781480976595027e-06, -8.6781480976594959e-06, -3.2543055366223042e-06, -1.7356296195319066e-05, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -1.2113248386316503e-05, -1.2052983468971536e-05, -3.013245867242892e-07, -6.0264917344857679e-08, -1.8079475203457488e-07, -6.0264917344858222e-07, -4.8211933875886713e-06, -1.2052983468971533e-07, -5.5443723957269183e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886722e-06, -4.8211933875886713e-06, -4.8211933875886122e-07, -1.3680136237282629e-05, -1.2052983468971528e-07, -1.2052983468971697e-05, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886101e-07, -3.013245867242892e-07, -1.8079475203457504e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, -9.0397376017287852e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610371373e-07, -4.8211933875886133e-07, -9.0397376017287598e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971528e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -9.6423867751772266e-07, -6.0264917344858106e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -1.0245035948625726e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.928477355035444e-06, -1.5066229336214458e-06, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943056e-07, -4.8211933875886133e-07, -6.0264917344858116e-07, -6.6291409079343229e-07, -2.4105966937943056e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.446358016276599e-06, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.0847685122074296e-06, -2.4105966937943072e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -7.834439254831571e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -5.0622530569680839e-06, -4.8211933875886144e-07, -5.3033127263474626e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -4.8211933875886434e-06, -9.6423867751772245e-07, -4.8814583049335092e-06, -6.0264917344857679e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -5.062253056968083e-06, -4.8211933875886713e-06, -4.8211933875886213e-06, -4.8211933875886544e-06, -6.0264917344857653e-08, -2.4105966937943051e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.026491734485764e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886122e-07, -6.0264917344858307e-07, -1.2052983468971632e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -1.4463580162766005e-06, -1.8079475203457768e-07, -5.3033127263475007e-06, -9.6423867751772266e-07, -4.3390740488297352e-06, -6.0264917344857666e-08, -6.0264917344857679e-08, -1.5066229336214418e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.2185442141400914e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -4.3390740488297335e-06, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297335e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -6.0264917344858074e-07, -1.8079475203457504e-07, -4.8211933875886133e-07, -9.039737601728727e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -3.6158950406915203e-07, -1.8079475203457228e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -1.56688785096631e-06, -1.3860930989317302e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -3.6158950406915288e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886544e-06, -4.8211933875886213e-06, -9.7629166098670659e-06, -4.8211933875886298e-06, -4.8211933875886434e-06, -2.4105966937943056e-07, -1.2052983468971533e-07, -4.8211933875886112e-07, -5.4238425610371267e-07, -2.4105966937943056e-07, -6.6291409079343568e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.7629166098670438e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -1.8079475203457506e-07, -6.0264917344857653e-08, -1.2052983468971533e-07, -1.2052983468971533e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -2.4105966937943056e-07, -7.2317900813830057e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -1.0847685122074317e-06, 0.00024545900834560633, -2.4105966937943051e-07, -1.2052983468971531e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.0132458672429074e-07, -2.4105966937943066e-07, -1.2052983468971531e-07, -3.6158950406915007e-07, -5.1225179743129167e-06, -6.0264917344857679e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857679e-08, -2.7721861978634498e-06, 0.00024491662408950259, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.8501329624871578e-05, -4.8211933875886133e-07, -1.2052983468971612e-05, -4.8211933875886133e-07, -1.2052983468971531e-07, -3.6158950406914671e-06, -7.2317900813830036e-07, -3.0132458672429016e-07, -3.6158950406915081e-06, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.7629166098670438e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.3800666071972374e-05, -1.8079475203457493e-07, -1.2052983468971624e-05, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670659e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.6271527683111525e-06, -5.785432065106402e-06, -4.8211933875886133e-07, -4.2788091314848533e-06, -7.2317900813829972e-07, -7.2317900813829972e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344858349e-07, -4.8211933875886122e-07, -6.0264917344858254e-07, -1.2655632642420201e-06, -4.8211933875886133e-07, -3.0132458672429138e-07, -1.386093098931723e-06, -4.8211933875886133e-07, -7.2317900813830036e-07, -1.8079475203457734e-07, -3.013245867242901e-07, -1.2052983468971528e-07, -6.0264917344857653e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -7.2317900813830004e-07, -3.6158950406915272e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -1.4463580162765999e-06, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610371627e-07, -2.0490071897251584e-06, -1.2052983468971525e-07, -4.8211933875886112e-07, -4.8211933875886144e-07, -5.4238425610371627e-07, -1.5668878509662812e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857666e-08, -6.026491734485764e-08, -6.0264917344857653e-08, -1.2052983468971536e-07, -1.0245035948625686e-06, -1.8079475203457357e-06, -7.2317900813830036e-07, -3.6158950406915203e-07, -6.0264917344857679e-08, -2.4105966937943066e-07, -9.6423867751772266e-07, -1.4463580162765999e-06, -4.8211933875886112e-07, -2.4105966937943066e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -7.2317900813830025e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -5.4238425610371542e-07, -3.013245867242909e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -4.3390740488297285e-06, -2.4105966937943061e-07, -6.0264917344857679e-08, -3.6158950406914671e-06, -4.8211933875886133e-07, -2.8927160325532434e-06, -2.8927160325531997e-06, -3.0132458672428912e-06, -2.8927160325532434e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.2185442141400434e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -3.6761599580363329e-06, -1.2052983468971531e-07, -4.3390740488297335e-06, -4.3390740488297335e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.3390740488297352e-06, -4.3390740488297268e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.8079475203457501e-07, -9.6423867751772287e-07, -1.9284773550354428e-06, -1.9284773550354428e-06, -1.9284773550354428e-06, -1.9284773550354428e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.928477355035444e-06, -1.928477355035444e-06, -2.4105966937943045e-07, -2.4105966937943051e-07, -4.8452993545265452e-05, -4.8211933875885704e-05, -1.2052983468971678e-06, -2.4105966937943045e-07, -7.2317900813829242e-07, -2.4105966937943399e-06, -1.9284773550354746e-05, -4.8211933875886101e-07, -2.2177489582907578e-05, -2.4105966937943051e-07, -3.8569547100708856e-06, -3.8569547100708856e-06, -1.928477355035444e-06, -1.928477355035444e-06, -1.9284773550354679e-05, -1.9284773550354706e-05, -1.9284773550354428e-06, -5.472054494913091e-05, -4.8211933875886101e-07, -4.8211933875886327e-05, -3.8569547100708856e-06, -1.9284773550354428e-06, -1.9284773550354428e-06, -2.4105966937943051e-07, -2.4105966937943051e-07, -1.9284773550354428e-06, -1.928477355035444e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -2.4105966937943051e-07, -2.4105966937943051e-07, -1.9284773550354428e-06, -1.2052983468971653e-06, -7.2317900813830057e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -2.4105966937943045e-07, -3.6158950406915145e-06, -1.928477355035444e-06, -1.928477355035444e-06, -2.1695370244148858e-06, -1.928477355035444e-06, -3.6158950406914895e-06, -4.8211933875886091e-07, -2.4105966937943051e-07, -1.928477355035444e-06, -1.928477355035444e-06, -2.4105966937943051e-07, -2.4105966937943051e-07, -1.928477355035444e-06, -1.928477355035444e-06, -4.8211933875886069e-07, -2.4105966937943051e-07, -1.928477355035444e-06, -3.8569547100708881e-06, -2.4105966937943348e-06, -1.928477355035444e-06, -3.8569547100708881e-06, -2.4105966937943051e-07, -1.928477355035444e-06, -4.0980143794503278e-06, -1.9284773550354436e-06, -1.928477355035444e-06, -3.8569547100708881e-06, -7.7139094201417762e-06, -6.0264917344857951e-06, -1.928477355035444e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -9.6423867751772139e-07, -1.928477355035444e-06, -2.4105966937943365e-06, -2.6516563631737313e-06, -9.6423867751772139e-07, -3.8569547100708856e-06, -1.928477355035444e-06, -1.9284773550354436e-06, -1.9284773550354436e-06, -4.8211933875886069e-07, -1.9284773550354428e-06, -1.928477355035444e-06, -2.4105966937943035e-07, -1.928477355035444e-06, -4.8211933875886101e-07, -1.9284773550354428e-06, -1.928477355035444e-06, -1.928477355035444e-06, -2.4105966937943035e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -2.4105966937943035e-07, -1.928477355035444e-06, -1.928477355035444e-06, -2.4105966937943045e-07, -1.9284773550354428e-06, -1.9284773550354428e-06, -1.928477355035444e-06, -1.9284773550354428e-06, -5.7854320651063368e-06, -1.9284773550354428e-06, -1.928477355035444e-06, -1.928477355035444e-06, -2.4105966937943051e-07, -1.928477355035444e-06, -1.928477355035444e-06, -3.8569547100708881e-06, -9.6423867751772202e-07, -4.339074048829792e-06, -9.6423867751772202e-07, -2.4105966937943035e-07, -4.8211933875886101e-07, -3.1337757019326504e-06, -1.928477355035444e-06, -3.8569547100708881e-06, -2.0249012227872349e-05, -1.928477355035444e-06, -2.1213250905389965e-05, -1.928477355035444e-06, -1.928477355035444e-06, -3.8569547100708881e-06, -1.9284773550354655e-05, -3.8569547100708881e-06, -1.9525833219734054e-05, -2.4105966937943051e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -9.6423867751772139e-07, -2.0249012227872336e-05, -1.9284773550354746e-05, -1.9284773550354641e-05, -1.9284773550354689e-05, -2.4105966937943051e-07, -9.6423867751772139e-07, -2.4105966937943051e-07, -2.4105966937943035e-07, -2.4105966937943051e-07, -1.928477355035444e-06, -1.928477355035444e-06, -1.928477355035444e-06, -1.928477355035444e-06, -2.4105966937943051e-07, -2.4105966937943051e-07, -2.4105966937943051e-07, -1.928477355035444e-06, -2.4105966937943433e-06, -4.8211933875886764e-06, -3.8569547100708856e-06, -3.8569547100708881e-06, -1.928477355035444e-06, -5.7854320651063419e-06, -7.2317900813830311e-07, -2.1213250905390094e-05, -3.8569547100708873e-06, -1.7356296195319236e-05, 0.00024527821359357157, -2.4105966937943051e-07, -6.0264917344857468e-06, -3.8569547100708881e-06, -1.928477355035444e-06, -1.6874176856560427e-06, -9.6423867751772202e-07, -4.8211933875886091e-07, -1.7356296195319229e-05, -4.8211933875886091e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.7356296195319229e-05, -1.928477355035444e-06, -2.4105966937943051e-07, -1.928477355035444e-06, -2.4105966937943051e-07, -1.928477355035444e-06, -2.4105966937943365e-06, -7.2317900813830481e-07, -1.928477355035444e-06, -3.6158950406915145e-06, -2.4105966937943051e-07, -1.928477355035444e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -2.4105966937943051e-07, -1.4463580162765931e-06, -7.2317900813830152e-07, -1.9284773550354436e-06, -1.9284773550354436e-06, -3.8569547100708856e-06, -6.2675514038652831e-06, -5.5443723957268345e-06, -2.4105966937943051e-07, -3.8569547100708856e-06, -1.9284773550354428e-06, -1.4463580162765961e-06, -4.8211933875886101e-07, -2.4105966937943051e-07, -2.4105966937943035e-07, -1.9284773550354689e-05, -1.9284773550354641e-05, -3.9051666439468223e-05, -1.9284773550354641e-05, -1.9284773550354655e-05, -9.6423867751772139e-07, -4.8211933875886069e-07, -1.928477355035444e-06, -2.1695370244148875e-06, -9.6423867751772139e-07, -2.6516563631737529e-06, -2.4105966937943051e-07, -2.4105966937943051e-07, -3.8569547100708881e-06, -1.928477355035444e-06, -1.928477355035444e-06, -2.4105966937943051e-07, -2.4105966937943045e-07, -9.6423867751772139e-07, -9.6423867751772139e-07, -3.8569547100708856e-06, -1.9284773550354428e-06, -2.4105966937943051e-07, -3.9051666439468141e-05, -1.9284773550354436e-06, -1.9284773550354436e-06, -2.4105966937943035e-07, -9.6423867751772139e-07, -9.6423867751772139e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -7.2317900813829252e-07, -2.4105966937943045e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -2.4105966937943051e-07, -2.4105966937943051e-07, -9.6423867751772181e-07, -2.8927160325531709e-06, -1.928477355035444e-06, -2.4105966937943051e-07, -2.4105966937943051e-07, -4.3390740488298157e-06, -2.4105966937943051e-07, 0.00098111285437428694, -4.8211933875886101e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -1.2052983468971716e-06, -9.6423867751772202e-07, -4.8211933875886091e-07, -1.4463580162765846e-06, -2.0490071897251667e-05, -2.4105966937943051e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -2.4105966937943051e-07, 0.00023443052847149884, -2.4105966937943382e-06, -2.4105966937943051e-07, -1.9284773550354436e-06, -1.9284773550354428e-06, -1.9284773550354436e-06, -3.8569547100708881e-06, -1.9284773550354428e-06, -3.8569547100708881e-06, -1.9284773550354428e-06, -1.9284773550354428e-06, -7.4005318499484782e-05, -1.9284773550354428e-06, -4.8211933875886029e-05, -1.928477355035444e-06, -4.8211933875886091e-07, -1.4463580162765819e-05, -2.8927160325531811e-06, -1.2052983468971661e-06, -1.4463580162765982e-05, -2.4105966937943051e-07, -1.9284773550354436e-06, -1.9284773550354436e-06, -3.9051666439468141e-05, -1.928477355035444e-06, -1.928477355035444e-06, -5.5202664287890345e-05, 0.00049031536751776422, -4.8211933875886042e-05, -1.928477355035444e-06, -1.928477355035444e-06, -2.4105966937943051e-07, -1.9284773550354436e-06, -1.9284773550354436e-06, -2.4105966937943051e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -4.8211933875886101e-07, -9.6423867751772139e-07, -9.6423867751772139e-07, -1.9284773550354428e-06, -1.9284773550354428e-06, -3.9051666439468223e-05, -1.9284773550354436e-06, -1.9284773550354436e-06, -6.5086110732445906e-06, -2.3141728260425381e-05, -1.928477355035444e-06, -1.7115236525939603e-05, -2.8927160325531684e-06, -2.8927160325531684e-06, -1.9284773550354428e-06, -1.9284773550354428e-06, -2.410596693794345e-06, -1.9284773550354428e-06, -2.4105966937943395e-06, -5.0622530569680983e-06, -1.928477355035444e-06, -1.2052983468971712e-06, -5.5443723957269454e-06, -1.928477355035444e-06, -2.8927160325531828e-06, -7.2317900813830184e-07, -1.2052983468971657e-06, -4.8211933875886101e-07, -2.4105966937943051e-07, -2.4105966937943051e-07, -1.9284773550354428e-06, -2.8927160325531701e-06, -1.4463580162765956e-06, -9.6423867751772202e-07, -1.9284773550354428e-06, -1.9284773550354428e-06, -1.9284773550354428e-06, -3.8569547100708856e-06, -1.928477355035444e-06, -9.6423867751772202e-07, -3.8569547100708856e-06, -1.928477355035444e-06, -9.6423867751772202e-07, -1.9284773550354428e-06, -2.4105966937943051e-07, -1.928477355035444e-06, -1.928477355035444e-06, -3.8569547100708881e-06, -5.78543206510643e-06, -1.928477355035444e-06, -3.8569547100708856e-06, -3.8569547100708856e-06, -1.928477355035444e-06, -1.928477355035444e-06, -1.928477355035444e-06, -1.928477355035444e-06, -2.1695370244149095e-06, -8.1960287589006979e-06, -4.8211933875886069e-07, -1.9284773550354428e-06, -1.928477355035444e-06, -2.1695370244148668e-06, -6.267551403865289e-06, -1.9284773550354428e-06, -1.928477355035444e-06, -1.9284773550354428e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -2.4105966937943035e-07, -2.4105966937943051e-07, -2.4105966937943051e-07, -4.8211933875886101e-07, -4.0980143794503015e-06, -7.2317900813830104e-06, -2.892716032553176e-06, -1.4463580162765931e-06, -2.4105966937943051e-07, -9.6423867751772202e-07, -3.8569547100708873e-06, -5.785432065106341e-06, -1.9284773550354428e-06, -9.6423867751772202e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -9.6423867751772202e-07, -2.8927160325531714e-06, -1.928477355035444e-06, -2.4105966937943051e-07, -4.8211933875886069e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -2.1695370244148985e-06, -1.2052983468971695e-06, -1.9284773550354428e-06, -3.8569547100708881e-06, -1.7356296195319256e-05, -9.6423867751772139e-07, -2.4105966937943051e-07, -1.4463580162765819e-05, -1.928477355035444e-06, -1.1570864130212851e-05, -1.157086413021268e-05, -1.2052983468971451e-05, -1.1570864130212851e-05, -9.6423867751772139e-07, -9.6423867751772139e-07, -1.928477355035444e-06, -1.928477355035444e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.9284773550354428e-06, -2.4105966937943051e-07, -1.9284773550354428e-06, -2.4105966937943051e-07, -2.4105966937943045e-07, -1.6874176856560326e-05, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.47046398321452e-05, -4.8211933875886091e-07, -1.7356296195319229e-05, -1.7356296195319229e-05, -1.928477355035444e-06, -2.4105966937943051e-07, -1.928477355035444e-06, -1.7356296195319236e-05, -1.7356296195319202e-05, -1.928477355035444e-06, -1.928477355035444e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -3.8569547100708881e-06, -1.928477355035444e-06, -1.928477355035444e-06, -7.2317900813829316e-07, -3.8569547100708881e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971528e-07, -1.2052983468971531e-07, -2.4226496772632705e-05, -2.4105966937942791e-05, -6.0264917344858116e-07, -1.2052983468971528e-07, -3.6158950406914822e-07, -1.2052983468971704e-06, -9.6423867751773765e-06, -2.4105966937943061e-07, -1.1088744791453845e-05, -1.2052983468971533e-07, -1.928477355035444e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751773426e-06, -9.6423867751773596e-06, -9.6423867751772245e-07, -2.736027247456554e-05, -2.4105966937943061e-07, -2.4105966937943102e-05, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971533e-07, -9.6423867751772245e-07, -9.6423867751772266e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -9.6423867751772202e-07, -6.0264917344858137e-07, -3.6158950406914849e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971528e-07, -1.8079475203457448e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.0847685122074442e-06, -9.6423867751772266e-07, -1.8079475203457359e-06, -2.4105966937943056e-07, -1.2052983468971531e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943056e-07, -1.2052983468971536e-07, -9.6423867751772266e-07, -1.9284773550354453e-06, -1.2052983468971678e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.2052983468971531e-07, -9.6423867751772245e-07, -2.0490071897251618e-06, -9.6423867751772224e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -3.8569547100708889e-06, -3.0132458672428599e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -4.8211933875886112e-07, -9.6423867751772266e-07, -1.2052983468971687e-06, -1.3258281815868606e-06, -4.8211933875886112e-07, -1.9284773550354445e-06, -9.6423867751772266e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971525e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.2052983468971531e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -1.2052983468971528e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772287e-07, -9.6423867751772245e-07, -2.8927160325531709e-06, -9.6423867751772224e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.1695370244148918e-06, -4.8211933875886144e-07, -1.2052983468971531e-07, -2.4105966937943072e-07, -1.5668878509663165e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.0124506113936151e-05, -9.6423867751772245e-07, -1.0606625452694912e-05, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354445e-06, -9.6423867751773342e-06, -1.9284773550354449e-06, -9.7629166098670692e-06, -1.2052983468971531e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -4.8211933875886122e-07, -1.0124506113936144e-05, -9.6423867751773765e-06, -9.6423867751773274e-06, -9.6423867751773511e-06, -1.2052983468971531e-07, -4.8211933875886101e-07, -1.2052983468971536e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -9.6423867751772245e-07, -1.2052983468971725e-06, -2.410596693794339e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -2.8927160325531739e-06, -3.6158950406915193e-07, -1.0606625452694976e-05, -1.9284773550354445e-06, -8.6781480976595264e-06, -1.2052983468971531e-07, -1.2052983468971536e-07, -3.0132458672428666e-06, -1.9284773550354457e-06, -9.6423867751772245e-07, -8.4370884282801744e-07, -4.8211933875886112e-07, -2.4105966937943056e-07, -8.6781480976595264e-06, -2.4105966937943056e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976595264e-06, -9.6423867751772287e-07, -1.2052983468971536e-07, -9.6423867751772266e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -1.2052983468971674e-06, -3.6158950406915097e-07, -9.6423867751772266e-07, -1.8079475203457414e-06, -1.2052983468971536e-07, -9.6423867751772287e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -2.4105966937943056e-07, -1.2052983468971536e-07, -7.2317900813829729e-07, -3.6158950406915113e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, 0.00024238549756101866, -2.7721861978634498e-06, -1.2052983468971536e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -7.2317900813829888e-07, -2.4105966937943066e-07, -1.2052983468971536e-07, -1.2052983468971531e-07, -9.6423867751773511e-06, -9.6423867751773274e-06, -1.9525833219734196e-05, -9.6423867751773274e-06, -9.6423867751773342e-06, -4.8211933875886112e-07, -2.4105966937943061e-07, -9.6423867751772224e-07, -1.0847685122074421e-06, -4.8211933875886112e-07, -1.325828181586868e-06, -1.2052983468971531e-07, -1.2052983468971533e-07, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772287e-07, -1.2052983468971536e-07, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -1.2052983468971536e-07, -1.9525833219734149e-05, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -3.6158950406914753e-07, -1.2052983468971528e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -4.8211933875886112e-07, -1.4463580162765874e-06, -9.6423867751772266e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -2.1695370244148968e-06, -1.2052983468971531e-07, -4.8211933875886101e-07, 0.00049079748685652272, -1.9284773550354449e-06, -1.9284773550354449e-06, -6.0264917344858243e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -7.2317900813829316e-07, -1.0245035948625833e-05, -1.2052983468971536e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971536e-07, 0.00023997490086722473, -1.2052983468971627e-06, -1.2052983468971531e-07, -9.6423867751772224e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -9.6423867751772202e-07, -1.9284773550354449e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -3.7002659249742642e-05, -9.6423867751772245e-07, -2.410596693794294e-05, -9.6423867751772266e-07, -2.4105966937943056e-07, -7.2317900813828689e-06, -1.4463580162765872e-06, -6.0264917344858328e-07, -7.2317900813829485e-06, -1.2052983468971536e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.9525833219734149e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.760133214394501e-05, -3.6158950406915071e-07, -2.410596693794296e-05, -9.6423867751772245e-07, -9.6423867751772266e-07, -1.2052983468971531e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971536e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943056e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9525833219734196e-05, -9.6423867751772224e-07, -9.6423867751772224e-07, -3.2543055366223021e-06, -1.1570864130212696e-05, -9.6423867751772266e-07, -8.5576182629698015e-06, -1.4463580162765859e-06, -1.4463580162765859e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971729e-06, -9.6423867751772245e-07, -1.2052983468971706e-06, -2.5311265284840428e-06, -9.6423867751772266e-07, -6.0264917344858582e-07, -2.7721861978634761e-06, -9.6423867751772245e-07, -1.4463580162765872e-06, -3.6158950406915124e-07, -6.0264917344858328e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -1.2052983468971536e-07, -9.6423867751772245e-07, -1.4463580162765865e-06, -7.2317900813829856e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772202e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -9.6423867751772287e-07, -4.8211933875886122e-07, -9.6423867751772202e-07, -1.2052983468971536e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354449e-06, -2.8927160325532065e-06, -9.6423867751772266e-07, -1.928477355035444e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.0847685122074493e-06, -4.0980143794503489e-06, -2.4105966937943056e-07, -9.6423867751772224e-07, -9.6423867751772287e-07, -1.0847685122074493e-06, -3.133775701932628e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.0490071897251495e-06, -3.6158950406914802e-06, -1.4463580162765872e-06, -7.2317900813829729e-07, -1.2052983468971536e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -2.8927160325531726e-06, -9.6423867751772224e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -1.4463580162765925e-06, -9.6423867751772245e-07, -1.2052983468971528e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.0847685122074472e-06, -6.0264917344858497e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -8.6781480976595908e-06, -4.8211933875886122e-07, -1.2052983468971536e-07, -7.2317900813828672e-06, -9.6423867751772245e-07, -5.7854320651064317e-06, -5.7854320651063453e-06, -6.0264917344857104e-06, -5.7854320651064317e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -1.2052983468971528e-07, -9.6423867751772245e-07, -1.2052983468971533e-07, -1.2052983468971528e-07, -8.4370884282801663e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -7.3523199160725921e-06, -2.4105966937943056e-07, -8.6781480976595264e-06, -8.6781480976595264e-06, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -8.6781480976595264e-06, -8.6781480976595738e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -2.4105966937943061e-07, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.6158950406914663e-07, -1.9284773550354457e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -0.00019381197418106308, -0.00019284773550354352, -4.8211933875886137e-06, -9.6423867751772266e-07, -2.8927160325531777e-06, -9.6423867751772867e-06, -7.7139094201418524e-05, -1.9284773550354453e-06, -8.8709958331631262e-05, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201418524e-05, -7.7139094201418524e-05, -7.7139094201417796e-06, -0.00021888217979652318, -1.9284773550354445e-06, -0.00019284773550354609, -1.5427818840283559e-05, -7.7139094201417813e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -7.7139094201417762e-06, -4.8211933875886137e-06, -2.8927160325531794e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -1.4463580162765989e-05, -7.713909420141783e-06, -7.713909420141783e-06, -8.6781480976594925e-06, -7.7139094201417813e-06, -1.4463580162765934e-05, -1.9284773550354449e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -1.5427818840283563e-05, -9.6423867751772681e-06, -7.7139094201417813e-06, -1.5427818840283563e-05, -9.6423867751772245e-07, -7.713909420141783e-06, -1.6392057517801253e-05, -7.7139094201417813e-06, -7.713909420141783e-06, -1.5427818840283559e-05, -3.0855637680567105e-05, -2.4105966937943001e-05, -7.713909420141783e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708889e-06, -7.7139094201417813e-06, -9.6423867751772715e-06, -1.0606625452694935e-05, -3.8569547100708889e-06, -1.5427818840283556e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -7.713909420141783e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -7.7139094201417796e-06, -2.3141728260425418e-05, -7.7139094201417779e-06, -7.7139094201417813e-06, -7.713909420141783e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.713909420141783e-06, -1.5427818840283566e-05, -3.8569547100708915e-06, -1.7356296195319012e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.2535102807730495e-05, -7.7139094201417813e-06, -1.5427818840283559e-05, -8.0996048911489288e-05, -7.713909420141783e-06, -8.4853003621559536e-05, -7.713909420141783e-06, -7.713909420141783e-06, -1.5427818840283559e-05, -7.7139094201418104e-05, -1.5427818840283559e-05, -7.8103332878936093e-05, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -8.0996048911489261e-05, -7.7139094201418524e-05, -7.7139094201418036e-05, -7.713909420141824e-05, -9.6423867751772245e-07, -3.8569547100708881e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.7139094201417796e-06, -9.642386775177302e-06, -1.9284773550354557e-05, -1.5427818840283559e-05, -1.5427818840283566e-05, -7.7139094201417796e-06, -2.3141728260425408e-05, -2.8927160325532222e-06, -8.4853003621560173e-05, -1.5427818840283566e-05, -6.9425184781276347e-05, -9.6423867751772266e-07, -9.6423867751772287e-07, -2.4105966937943079e-05, -1.5427818840283566e-05, -7.713909420141783e-06, -6.7496707426240929e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -6.9425184781276347e-05, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -6.9425184781276319e-05, -7.713909420141783e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -9.642386775177263e-06, -2.8927160325531798e-06, -7.7139094201417813e-06, -1.4463580162765894e-05, -9.6423867751772287e-07, -7.713909420141783e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -5.785432065106391e-06, -2.8927160325532154e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283563e-05, -2.5070205615460922e-05, -2.2177489582907826e-05, -9.6423867751772287e-07, -1.5427818840283563e-05, -7.7139094201417813e-06, -5.7854320651064037e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.713909420141824e-05, -7.7139094201418036e-05, -0.00015620666575787267, -7.7139094201418036e-05, -7.7139094201418104e-05, -3.8569547100708889e-06, -1.9284773550354453e-06, -7.7139094201417779e-06, -8.6781480976594739e-06, -3.8569547100708889e-06, -1.0606625452694991e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.5427818840283563e-05, -7.7139094201417813e-06, -7.713909420141783e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.5427818840283559e-05, -7.7139094201417813e-06, -9.6423867751772287e-07, -0.00015620666575787232, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.8927160325531794e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -3.8569547100708889e-06, -1.1570864130212726e-05, -7.7139094201417813e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -1.7356296195319053e-05, -9.6423867751772287e-07, -3.8569547100708881e-06, -1.9284773550354449e-06, 0.0039128805533669361, -1.5427818840283566e-05, -4.8211933875886374e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -5.7854320651063588e-06, -8.1960287589006667e-05, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.5427818840283566e-05, -1.5427818840283566e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772287e-07, -4.4354979165815462e-05, -9.6423867751772274e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283566e-05, -7.7139094201417796e-06, -1.5427818840283566e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00029602127399794309, -7.7139094201417813e-06, -0.00019284773550354471, -7.7139094201417813e-06, -1.9284773550354449e-06, -5.7854320651063209e-05, -1.1570864130212723e-05, -4.821193387588629e-06, -5.7854320651063846e-05, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -0.00015620666575787232, -7.713909420141783e-06, -7.713909420141783e-06, -0.0002208106571515591, -2.8927160325531781e-06, -0.0001928477355035449, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -1.5427818840283566e-05, 0.0039128805533669361, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -0.00015620666575787267, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.6034444292978464e-05, -9.2566913041701782e-05, -7.7139094201417813e-06, -6.8460946103758168e-05, -1.1570864130212713e-05, -1.1570864130212713e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751773088e-06, -7.7139094201417796e-06, -9.6423867751772579e-06, -2.0249012227872288e-05, -7.7139094201417813e-06, -4.8211933875886476e-06, -2.2177489582907727e-05, -7.713909420141783e-06, -1.1570864130212723e-05, -2.8927160325532163e-06, -4.8211933875886273e-06, -1.9284773550354445e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -7.7139094201417796e-06, -1.1570864130212718e-05, -5.7854320651064012e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -7.7139094201417813e-06, -3.8569547100708915e-06, -1.5427818840283556e-05, -7.713909420141783e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.5427818840283559e-05, -2.3141728260425432e-05, -7.7139094201417813e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.713909420141783e-06, -7.713909420141783e-06, -8.6781480976595332e-06, -3.2784115035602717e-05, -1.9284773550354445e-06, -7.7139094201417779e-06, -7.713909420141783e-06, -8.6781480976595332e-06, -2.5070205615460942e-05, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.6392057517801162e-05, -2.8927160325531632e-05, -1.1570864130212723e-05, -5.785432065106391e-06, -9.6423867751772287e-07, -3.8569547100708915e-06, -1.5427818840283566e-05, -2.3141728260425395e-05, -7.7139094201417779e-06, -3.8569547100708915e-06, -1.5427818840283566e-05, -1.5427818840283566e-05, -3.8569547100708915e-06, -1.1570864130212721e-05, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -8.6781480976595162e-06, -4.8211933875886408e-06, -7.7139094201417813e-06, -1.5427818840283563e-05, -6.9425184781276238e-05, -3.8569547100708898e-06, -9.6423867751772287e-07, -5.7854320651063195e-05, -7.713909420141783e-06, -4.628345652085102e-05, -4.6283456520850796e-05, -4.8211933875886008e-05, -4.628345652085102e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772287e-07, -6.749670742624106e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -5.881855932858111e-05, -1.9284773550354449e-06, -6.9425184781276319e-05, -6.9425184781276347e-05, -7.713909420141783e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -6.9425184781276347e-05, -6.9425184781276211e-05, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.5427818840283566e-05, -7.713909420141783e-06, -7.713909420141783e-06, -2.8927160325531794e-06, -1.5427818840283566e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -0.00019381197418106324, -0.00019284773550354365, -4.821193387588612e-06, -9.6423867751772266e-07, -2.8927160325531794e-06, -9.6423867751772833e-06, -7.7139094201418497e-05, -1.9284773550354453e-06, -8.8709958331631195e-05, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201418497e-05, -7.7139094201418497e-05, -7.7139094201417796e-06, -0.00021888217979652299, -1.9284773550354445e-06, -0.00019284773550354623, -1.5427818840283559e-05, -7.7139094201417813e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -7.7139094201417762e-06, -4.821193387588612e-06, -2.8927160325531811e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -1.4463580162765997e-05, -7.713909420141783e-06, -7.713909420141783e-06, -8.6781480976594823e-06, -7.7139094201417813e-06, -1.4463580162765934e-05, -1.9284773550354449e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -1.5427818840283563e-05, -9.6423867751772647e-06, -7.7139094201417813e-06, -1.5427818840283563e-05, -9.6423867751772245e-07, -7.713909420141783e-06, -1.6392057517801247e-05, -7.7139094201417813e-06, -7.713909420141783e-06, -1.5427818840283559e-05, -3.0855637680567105e-05, -2.4105966937943018e-05, -7.713909420141783e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708889e-06, -7.7139094201417813e-06, -9.6423867751772681e-06, -1.0606625452694939e-05, -3.8569547100708889e-06, -1.5427818840283556e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -7.713909420141783e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -7.7139094201417796e-06, -2.3141728260425432e-05, -7.7139094201417779e-06, -7.7139094201417813e-06, -7.713909420141783e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.713909420141783e-06, -1.5427818840283566e-05, -3.8569547100708915e-06, -1.7356296195318999e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.2535102807730495e-05, -7.7139094201417813e-06, -1.5427818840283559e-05, -8.0996048911489261e-05, -7.713909420141783e-06, -8.4853003621559564e-05, -7.713909420141783e-06, -7.713909420141783e-06, -1.5427818840283559e-05, -7.7139094201418077e-05, -1.5427818840283559e-05, -7.8103332878936093e-05, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -8.0996048911489261e-05, -7.7139094201418497e-05, -7.7139094201418009e-05, -7.7139094201418213e-05, -9.6423867751772245e-07, -3.8569547100708881e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.7139094201417796e-06, -9.6423867751772986e-06, -1.928477355035455e-05, -1.5427818840283559e-05, -1.5427818840283566e-05, -7.7139094201417796e-06, -2.3141728260425368e-05, -2.8927160325532239e-06, -8.4853003621560201e-05, -1.5427818840283566e-05, -6.9425184781276292e-05, -9.6423867751772266e-07, -9.6423867751772287e-07, -2.4105966937943096e-05, -1.5427818840283566e-05, -7.713909420141783e-06, -6.7496707426240878e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -6.9425184781276265e-05, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -6.9425184781276265e-05, -7.713909420141783e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -9.6423867751772596e-06, -2.8927160325531815e-06, -7.7139094201417813e-06, -1.44635801627659e-05, -9.6423867751772287e-07, -7.713909420141783e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -5.7854320651063944e-06, -2.8927160325532171e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283563e-05, -2.5070205615460922e-05, -2.2177489582907809e-05, -9.6423867751772287e-07, -1.5427818840283563e-05, -7.7139094201417813e-06, -5.7854320651064071e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.7139094201418213e-05, -7.7139094201418009e-05, -0.00015620666575787262, -7.7139094201418009e-05, -7.7139094201418077e-05, -3.8569547100708889e-06, -1.9284773550354453e-06, -7.7139094201417779e-06, -8.6781480976594637e-06, -3.8569547100708889e-06, -1.0606625452694995e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.5427818840283563e-05, -7.7139094201417813e-06, -7.713909420141783e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.5427818840283559e-05, -7.7139094201417813e-06, -9.6423867751772287e-07, -0.00015620666575787229, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.8927160325531811e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -3.8569547100708889e-06, -1.1570864130212733e-05, -7.7139094201417813e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -1.7356296195319039e-05, -9.6423867751772287e-07, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.5427818840283566e-05, 0.0039128805533669361, -4.8211933875886357e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -5.7854320651063622e-06, -8.1960287589006667e-05, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.5427818840283566e-05, -1.5427818840283566e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772287e-07, -4.4354979165815428e-05, -9.6423867751772241e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283566e-05, -7.7139094201417796e-06, -1.5427818840283566e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00029602127399794336, -7.7139094201417813e-06, -0.00019284773550354485, -7.7139094201417813e-06, -1.9284773550354449e-06, -5.7854320651063236e-05, -1.157086413021273e-05, -4.8211933875886273e-06, -5.7854320651063873e-05, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -0.00015620666575787229, -7.713909420141783e-06, -7.713909420141783e-06, -0.00022081065715155894, -2.8927160325531798e-06, -0.00019284773550354504, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, 0.0039128805533669361, -1.5427818840283566e-05, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -0.00015620666575787262, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.6034444292978471e-05, -9.2566913041701836e-05, -7.7139094201417813e-06, -6.8460946103758114e-05, -1.1570864130212719e-05, -1.1570864130212719e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751773054e-06, -7.7139094201417796e-06, -9.6423867751772579e-06, -2.0249012227872288e-05, -7.7139094201417813e-06, -4.8211933875886459e-06, -2.2177489582907711e-05, -7.713909420141783e-06, -1.157086413021273e-05, -2.892716032553218e-06, -4.8211933875886256e-06, -1.9284773550354445e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -7.7139094201417796e-06, -1.1570864130212724e-05, -5.7854320651064046e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -7.7139094201417813e-06, -3.8569547100708915e-06, -1.5427818840283556e-05, -7.713909420141783e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.5427818840283559e-05, -2.3141728260425445e-05, -7.7139094201417813e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.713909420141783e-06, -7.713909420141783e-06, -8.678148097659523e-06, -3.2784115035602703e-05, -1.9284773550354445e-06, -7.7139094201417779e-06, -7.713909420141783e-06, -8.678148097659523e-06, -2.5070205615460942e-05, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.6392057517801155e-05, -2.8927160325531652e-05, -1.157086413021273e-05, -5.7854320651063944e-06, -9.6423867751772287e-07, -3.8569547100708915e-06, -1.5427818840283566e-05, -2.3141728260425354e-05, -7.7139094201417779e-06, -3.8569547100708915e-06, -1.5427818840283566e-05, -1.5427818840283566e-05, -3.8569547100708915e-06, -1.1570864130212728e-05, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -8.6781480976595094e-06, -4.8211933875886391e-06, -7.7139094201417813e-06, -1.5427818840283563e-05, -6.9425184781276184e-05, -3.8569547100708898e-06, -9.6423867751772287e-07, -5.7854320651063222e-05, -7.713909420141783e-06, -4.6283456520851074e-05, -4.6283456520850715e-05, -4.8211933875885927e-05, -4.6283456520851074e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772287e-07, -6.749670742624106e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -5.881855932858115e-05, -1.9284773550354449e-06, -6.9425184781276265e-05, -6.9425184781276265e-05, -7.713909420141783e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -6.9425184781276292e-05, -6.9425184781276157e-05, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.5427818840283566e-05, -7.713909420141783e-06, -7.713909420141783e-06, -2.8927160325531811e-06, -1.5427818840283566e-05, -2.4105966937943378e-06, -2.4105966937943335e-06, -2.4105966937943327e-06, -2.4105966937943386e-06, -1.2052983468971587e-06, -1.2052983468971587e-06, -2.4105966937943162e-06, -2.4105966937943166e-06, -3.0132458672429122e-07, -3.0132458672429111e-07, -6.0566241931582477e-05, -6.0264917344858161e-05, -1.5066229336214507e-06, -3.0132458672429122e-07, -9.0397376017286497e-07, -3.0132458672429247e-06, -2.4105966937943109e-05, -6.0264917344858222e-07, -2.772186197863463e-05, -3.0132458672428936e-07, -4.8211933875886688e-06, -4.8211933875886705e-06, -2.410596693794317e-06, -2.4105966937943158e-06, -2.4105966937943113e-05, -2.4105966937943113e-05, -2.4105966937943369e-06, -6.8400681186414061e-05, -6.0264917344858466e-07, -6.0264917344858012e-05, -4.8211933875886671e-06, -2.4105966937943335e-06, -2.4105966937943378e-06, -3.0132458672428915e-07, -3.0132458672429138e-07, -2.4105966937943302e-06, -2.4105966937943285e-06, -6.0264917344858466e-07, -6.0264917344858476e-07, -3.0132458672428926e-07, -3.0132458672429053e-07, -2.4105966937943136e-06, -1.5066229336214484e-06, -9.0397376017287651e-07, -1.2052983468971583e-06, -1.2052983468971587e-06, -3.0132458672429122e-07, -4.5198688008644209e-06, -2.4105966937943242e-06, -2.4105966937943238e-06, -2.7119212805186064e-06, -2.410596693794317e-06, -4.5198688008643946e-06, -6.0264917344858254e-07, -3.0132458672429201e-07, -2.4105966937943166e-06, -2.4105966937943162e-06, -3.0132458672429143e-07, -3.0132458672429079e-07, -2.4105966937943234e-06, -2.4105966937943246e-06, -6.0264917344858677e-07, -3.0132458672429021e-07, -2.41059669379432e-06, -4.8211933875886417e-06, -3.01324586724292e-06, -2.410596693794328e-06, -4.8211933875886527e-06, -3.0132458672429148e-07, -2.4105966937943111e-06, -5.1225179743129201e-06, -2.4105966937943285e-06, -2.4105966937943234e-06, -4.8211933875886637e-06, -9.6423867751773833e-06, -7.5331146681072617e-06, -2.4105966937943111e-06, -4.8211933875886629e-06, -4.8211933875886645e-06, -1.2052983468971695e-06, -2.410596693794323e-06, -3.0132458672429162e-06, -3.3145704539671679e-06, -1.2052983468971695e-06, -4.821193387588695e-06, -2.4105966937943255e-06, -2.410596693794328e-06, -2.4105966937943276e-06, -6.0264917344858656e-07, -2.4105966937943352e-06, -2.4105966937943111e-06, -3.0132458672429222e-07, -2.4105966937943111e-06, -6.0264917344858275e-07, -2.4105966937943352e-06, -2.4105966937943289e-06, -2.4105966937943276e-06, -3.0132458672429148e-07, -4.8211933875886671e-06, -4.8211933875886654e-06, -3.0132458672429095e-07, -2.4105966937943263e-06, -2.4105966937943263e-06, -3.0132458672429111e-07, -2.4105966937943378e-06, -2.4105966937943386e-06, -2.4105966937943242e-06, -2.4105966937943386e-06, -7.2317900813828943e-06, -2.4105966937943361e-06, -2.4105966937943208e-06, -2.4105966937943111e-06, -3.0132458672429037e-07, -2.4105966937943196e-06, -2.4105966937943111e-06, -4.8211933875886518e-06, -1.2052983468971587e-06, -5.4238425610371942e-06, -1.2052983468971583e-06, -3.0132458672429212e-07, -6.0264917344858148e-07, -3.9172196274157438e-06, -2.4105966937943276e-06, -4.8211933875886713e-06, -2.5311265284840345e-05, -2.4105966937943234e-06, -2.651656363173737e-05, -2.4105966937943225e-06, -2.4105966937943242e-06, -4.8211933875886645e-06, -2.4105966937943357e-05, -4.8211933875886629e-06, -2.4407291524667455e-05, -3.013245867242892e-07, -4.8211933875886612e-06, -4.8211933875886662e-06, -1.205298346897168e-06, -2.5311265284840345e-05, -2.4105966937943109e-05, -2.4105966937943218e-05, -2.410596693794338e-05, -3.0132458672429138e-07, -1.205298346897156e-06, -3.013245867242901e-07, -3.013245867242918e-07, -3.0132458672429228e-07, -2.4105966937943293e-06, -2.4105966937943293e-06, -2.4105966937943285e-06, -2.410596693794328e-06, -3.013245867242901e-07, -3.0132458672429021e-07, -3.0132458672428995e-07, -2.4105966937943331e-06, -3.0132458672429268e-06, -6.0264917344858417e-06, -4.8211933875886815e-06, -4.821193387588651e-06, -2.4105966937943335e-06, -7.2317900813829875e-06, -9.039737601728782e-07, -2.6516563631737516e-05, -4.8211933875886527e-06, -2.1695370244148747e-05, -3.0132458672429127e-07, -3.0132458672429063e-07, -7.5331146681072684e-06, -4.8211933875886518e-06, -2.4105966937943242e-06, -2.1092721070700255e-06, -1.2052983468971562e-06, -6.0264917344858243e-07, -2.1695370244148753e-05, -6.0264917344858254e-07, -1.2052983468971587e-06, -1.2052983468971587e-06, -2.1695370244148753e-05, -2.4105966937943183e-06, -3.0132458672429053e-07, -2.410596693794323e-06, -3.0132458672428995e-07, -2.4105966937943242e-06, -3.0132458672429196e-06, -9.0397376017288021e-07, -2.4105966937943234e-06, -4.5198688008643243e-06, -3.0132458672428926e-07, -2.4105966937943183e-06, -6.0264917344858466e-07, -6.0264917344858476e-07, -6.0264917344858392e-07, -3.0132458672429095e-07, -1.8079475203457469e-06, -9.0397376017287725e-07, -2.4105966937943323e-06, -2.410596693794331e-06, -4.8211933875886586e-06, -7.8344392548315079e-06, -6.9304654946585744e-06, -3.0132458672428926e-07, -4.8211933875886722e-06, -2.4105966937943327e-06, -1.8079475203457496e-06, -6.0264917344857968e-07, -3.0132458672429021e-07, -3.013245867242918e-07, -2.410596693794338e-05, -2.4105966937943218e-05, -4.8814583049335426e-05, -2.4105966937943218e-05, -2.4105966937943357e-05, -1.2052983468971695e-06, -6.0264917344858106e-07, -2.4105966937943293e-06, -2.7119212805186081e-06, -1.2052983468971695e-06, -3.3145704539671874e-06, -3.0132458672429127e-07, -3.0132458672428936e-07, -4.8211933875886485e-06, -2.4105966937943179e-06, -2.4105966937943208e-06, -3.0132458672429074e-07, -3.0132458672429122e-07, -1.2052983468971647e-06, -1.2052983468971647e-06, -4.8211933875886722e-06, -2.4105966937943318e-06, -3.0132458672428979e-07, -4.8814583049334924e-05, -2.4105966937943314e-06, -2.4105966937943318e-06, -3.0132458672429095e-07, -1.2052983468971647e-06, -1.2052983468971647e-06, -6.0264917344857862e-07, -6.0264917344857852e-07, -9.0397376017286825e-07, -3.0132458672429127e-07, -6.0264917344857852e-07, -6.0264917344857862e-07, -3.0132458672429021e-07, -3.0132458672429143e-07, -1.2052983468971627e-06, -3.6158950406914887e-06, -2.4105966937943183e-06, -3.0132458672429e-07, -3.0132458672428936e-07, -5.42384256103719e-06, -3.0132458672429074e-07, -1.2052983468971716e-06, -6.0264917344858243e-07, -4.8211933875886374e-06, -4.8211933875886357e-06, 0.0012260897433811378, -1.2052983468971568e-06, -6.0264917344858624e-07, -1.8079475203457477e-06, -2.561258987156461e-05, -3.0132458672429053e-07, -1.2052983468971568e-06, -1.2052983468971564e-06, -4.8211933875886341e-06, -4.8211933875886391e-06, -1.2052983468971632e-06, -1.2052983468971604e-06, -1.2052983468971604e-06, -3.0132458672429e-07, -1.3860930989317279e-05, -3.013245867242895e-06, -3.0132458672429153e-07, -2.4105966937943318e-06, -2.410596693794339e-06, -2.4105966937943314e-06, -4.8211933875886391e-06, -2.4105966937943115e-06, -4.8211933875886341e-06, -2.410596693794339e-06, -2.410596693794339e-06, -9.2506648124357079e-05, -2.4105966937943335e-06, -6.0264917344857971e-05, -2.4105966937943196e-06, -6.0264917344858264e-07, -1.8079475203457304e-05, -3.6158950406914802e-06, -1.5066229336214587e-06, -1.8079475203457345e-05, -3.0132458672428947e-07, -2.4105966937943276e-06, -2.410596693794328e-06, -4.8814583049334924e-05, -2.4105966937943111e-06, -2.4105966937943111e-06, -6.9003330359862381e-05, -9.0397376017287524e-07, -6.0264917344857971e-05, -2.4105966937943263e-06, -2.4105966937943263e-06, -3.0132458672429026e-07, -2.4105966937943285e-06, -2.4105966937943272e-06, -3.0132458672428989e-07, -4.8211933875886357e-06, -4.8211933875886374e-06, -6.0264917344858392e-07, -1.2052983468971647e-06, -1.2052983468971647e-06, -2.4105966937943327e-06, -2.4105966937943327e-06, -4.8814583049335426e-05, -2.410596693794331e-06, -2.4105966937943323e-06, -8.1357638415557965e-06, -2.8927160325531821e-05, -2.4105966937943255e-06, -2.1394045657424421e-05, -3.6158950406915094e-06, -3.6158950406915086e-06, -2.410596693794334e-06, -2.4105966937943386e-06, -3.0132458672429272e-06, -2.4105966937943378e-06, -3.0132458672429255e-06, -6.3278163212100947e-06, -2.4105966937943204e-06, -1.5066229336214625e-06, -6.9304654946586583e-06, -2.4105966937943111e-06, -3.6158950406914827e-06, -9.0397376017287566e-07, -1.5066229336214587e-06, -6.0264917344858413e-07, -3.0132458672429138e-07, -3.0132458672429053e-07, -2.4105966937943378e-06, -3.6158950406915069e-06, -1.8079475203457492e-06, -1.2052983468971596e-06, -2.4105966937943335e-06, -2.4105966937943369e-06, -2.410596693794339e-06, -4.8211933875886298e-06, -2.410596693794317e-06, -1.2052983468971564e-06, -4.8211933875886239e-06, -2.4105966937943149e-06, -1.2052983468971568e-06, -2.410596693794339e-06, -3.0132458672428947e-07, -2.4105966937943162e-06, -2.4105966937943166e-06, -4.8211933875886654e-06, -7.2317900813829909e-06, -2.4105966937943238e-06, -4.8211933875886671e-06, -4.8211933875886713e-06, -2.4105966937943166e-06, -2.4105966937943162e-06, -2.4105966937943111e-06, -2.4105966937943111e-06, -2.711921280518584e-06, -1.0245035948625838e-05, -6.0264917344858815e-07, -2.4105966937943361e-06, -2.4105966937943158e-06, -2.7119212805185848e-06, -7.8344392548315011e-06, -2.4105966937943335e-06, -2.410596693794323e-06, -2.4105966937943378e-06, -1.2052983468971568e-06, 0.00098087179470490748, -3.0132458672429127e-07, -3.0132458672429228e-07, -3.0132458672429148e-07, -6.026491734485819e-07, -5.1225179743129184e-06, -9.0397376017286537e-06, -3.6158950406914819e-06, -1.8079475203457469e-06, -3.0132458672429042e-07, -1.2052983468971564e-06, -4.8211933875886527e-06, -7.2317900813829672e-06, -2.4105966937943365e-06, -1.2052983468971564e-06, -4.8211933875886493e-06, -4.821193387588651e-06, -1.2052983468971564e-06, -3.6158950406914692e-06, -2.4105966937943111e-06, -3.0132458672429196e-07, 0.00024491662408950254, -1.2052983468971564e-06, -1.2052983468971632e-06, -2.7119212805185912e-06, -1.5066229336214617e-06, -2.4105966937943302e-06, -4.8211933875886425e-06, -2.1695370244148699e-05, -1.205298346897168e-06, -3.013245867242901e-07, -1.8079475203457304e-05, -2.4105966937943111e-06, -1.4463580162766051e-05, -1.4463580162766028e-05, -1.506622933621454e-05, -1.4463580162766051e-05, -1.205298346897168e-06, -1.205298346897168e-06, -2.4105966937943221e-06, -2.4105966937943238e-06, -1.2052983468971611e-06, -1.2052983468971611e-06, -2.4105966937943352e-06, -3.0132458672429185e-07, -2.4105966937943352e-06, -3.0132458672429032e-07, -3.0132458672429111e-07, -2.1092721070700207e-05, -1.2052983468971611e-06, -1.2052983468971611e-06, -1.8380799790181593e-05, -6.0264917344858339e-07, -2.1695370244148753e-05, -2.1695370244148753e-05, -2.4105966937943111e-06, -3.013245867242891e-07, -2.4105966937943111e-06, -2.1695370244148747e-05, -2.1695370244148865e-05, -2.4105966937943208e-06, -2.4105966937943217e-06, -6.0264917344857968e-07, -6.0264917344858264e-07, -4.8211933875886281e-06, -2.4105966937943217e-06, -2.4105966937943208e-06, -9.0397376017286581e-07, -4.8211933875886281e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8452993545265973e-05, -4.8211933875886103e-05, -1.2052983468971568e-06, -2.4105966937943066e-07, -7.2317900813829941e-07, -2.4105966937943289e-06, -1.9284773550354685e-05, -4.8211933875886133e-07, -2.2177489582907694e-05, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354689e-05, -1.9284773550354685e-05, -1.9284773550354449e-06, -5.4720544949130571e-05, -4.8211933875886112e-07, -4.8211933875886747e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.928477355035444e-06, -1.2052983468971568e-06, -7.231790081382993e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -3.615895040691512e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.1695370244148575e-06, -1.9284773550354453e-06, -3.6158950406915009e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886112e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -3.8569547100708906e-06, -2.4105966937943238e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -2.4105966937943061e-07, -1.9284773550354457e-06, -4.0980143794503015e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -6.0264917344857765e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -1.9284773550354453e-06, -2.4105966937943246e-06, -2.6516563631737292e-06, -9.6423867751772224e-07, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -2.4105966937943056e-07, -1.9284773550354457e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -5.7854320651063902e-06, -1.9284773550354445e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -4.3390740488297234e-06, -9.6423867751772287e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -3.1337757019326284e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -2.0249012227872329e-05, -1.9284773550354453e-06, -2.121325090538985e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -1.928477355035458e-05, -3.8569547100708898e-06, -1.9525833219734071e-05, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -2.0249012227872329e-05, -1.9284773550354685e-05, -1.9284773550354563e-05, -1.9284773550354614e-05, -2.4105966937943061e-07, -9.6423867751772202e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -2.4105966937943056e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.9284773550354449e-06, -2.4105966937943323e-06, -4.8211933875886527e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -5.7854320651063961e-06, -7.2317900813830999e-07, -2.1213250905389989e-05, -3.8569547100708906e-06, -1.73562961953189e-05, -2.4105966937943066e-07, -2.4105966937943072e-07, -6.0264917344857985e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -1.6874176856560175e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -1.7356296195318894e-05, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.7356296195318894e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -2.410596693794323e-06, -7.2317900813829941e-07, -1.9284773550354453e-06, -3.6158950406914878e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.4463580162766066e-06, -7.2317900813830841e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -6.267551403865239e-06, -5.5443723957269259e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.4463580162766098e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.9284773550354614e-05, -1.9284773550354563e-05, -3.905166643946825e-05, -1.9284773550354563e-05, -1.928477355035458e-05, -9.6423867751772224e-07, -4.8211933875886133e-07, -1.9284773550354445e-06, -2.1695370244148532e-06, -9.6423867751772224e-07, -2.6516563631737431e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.8569547100708898e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.9051666439468169e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -7.231790081382957e-07, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -2.4105966937943061e-07, -9.6423867751772224e-07, -2.8927160325531993e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -4.3390740488297335e-06, -2.4105966937943066e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.2052983468971568e-06, 0.00098111285437428694, -4.8211933875886122e-07, -1.4463580162765986e-06, -2.0490071897251667e-05, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943072e-07, -1.1088744791453808e-05, -2.4105966937943136e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.4005318499486205e-05, -1.9284773550354453e-06, -4.8211933875886408e-05, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.446358016276586e-05, -2.8927160325531985e-06, -1.2052983468971606e-06, -1.4463580162766021e-05, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.9051666439468169e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -5.5202664287889559e-05, -7.2317900813829898e-07, -4.8211933875886456e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.905166643946825e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -6.5086110732446109e-06, -2.3141728260425588e-05, -1.9284773550354453e-06, -1.7115236525939434e-05, -2.8927160325531959e-06, -2.8927160325531959e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.410596693794334e-06, -1.9284773550354449e-06, -2.4105966937943297e-06, -5.0622530569680805e-06, -1.9284773550354453e-06, -1.2052983468971655e-06, -5.5443723957269022e-06, -1.9284773550354457e-06, -2.8927160325531985e-06, -7.2317900813830862e-07, -1.2052983468971604e-06, -4.8211933875886112e-07, -2.4105966937943061e-07, -2.4105966937943072e-07, -1.9284773550354449e-06, -2.8927160325531972e-06, -1.4463580162766092e-06, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -3.8569547100708889e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -1.9284773550354449e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -5.7854320651063936e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.1695370244148676e-06, -8.1960287589006538e-06, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354457e-06, -2.1695370244148676e-06, -6.2675514038652449e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, 0.00098111285437428694, -9.6423867751772287e-07, -2.4105966937943066e-07, -2.4105966937943056e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.0980143794502778e-06, -7.2317900813829367e-06, -2.8927160325531985e-06, -1.4463580162766066e-06, -2.4105966937943072e-07, -9.6423867751772287e-07, -3.8569547100708906e-06, -5.7854320651063927e-06, -1.9284773550354445e-06, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -2.8927160325531781e-06, -1.9284773550354457e-06, -2.4105966937943061e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -2.1695370244148642e-06, -1.2052983468971636e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -1.7356296195318941e-05, -9.6423867751772245e-07, -2.4105966937943072e-07, -1.4463580162765856e-05, -1.9284773550354457e-06, -1.1570864130212962e-05, -1.1570864130212772e-05, -1.2052983468971541e-05, -1.1570864130212962e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.687417685656019e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4704639832145321e-05, -4.8211933875886122e-07, -1.7356296195318894e-05, -1.7356296195318894e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.73562961953189e-05, -1.7356296195318894e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.231790081382993e-07, -3.8569547100708915e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -2.4226496772632638e-05, -2.410596693794273e-05, -6.0264917344858328e-07, -1.2052983468971531e-07, -3.6158950406914626e-07, -1.205298346897175e-06, -9.642386775177424e-06, -2.4105966937943061e-07, -1.1088744791453998e-05, -1.2052983468971533e-07, -1.9284773550354449e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751774256e-06, -9.642386775177424e-06, -9.6423867751772224e-07, -2.7360272474565574e-05, -2.4105966937943051e-07, -2.4105966937943048e-05, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943051e-07, -2.4105966937943051e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -9.6423867751772202e-07, -6.0264917344858349e-07, -3.6158950406914658e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -1.8079475203457378e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.0847685122074463e-06, -9.6423867751772266e-07, -1.8079475203457335e-06, -2.4105966937943061e-07, -1.2052983468971528e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971528e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943056e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -1.9284773550354449e-06, -1.2052983468971719e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.2052983468971528e-07, -9.6423867751772245e-07, -2.0490071897251444e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -1.9284773550354445e-06, -3.8569547100708881e-06, -3.0132458672428488e-06, -9.6423867751772245e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886112e-07, -9.6423867751772245e-07, -1.2052983468971725e-06, 0.00024419344508136448, -4.8211933875886112e-07, -1.9284773550354445e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943051e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.2052983468971525e-07, -9.6423867751772245e-07, -2.4105966937943056e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -1.2052983468971533e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971528e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772266e-07, -9.6423867751772224e-07, -2.8927160325531701e-06, -9.6423867751772224e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -4.8211933875886133e-07, -2.1695370244148642e-06, -4.8211933875886133e-07, -1.2052983468971528e-07, -2.4105966937943066e-07, -1.5668878509663148e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.0124506113936178e-05, -9.6423867751772245e-07, -1.0606625452694873e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354445e-06, -9.642386775177363e-06, -1.9284773550354445e-06, -9.762916609867076e-06, -1.2052983468971531e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886112e-07, -1.0124506113936178e-05, -9.642386775177424e-06, -9.6423867751773206e-06, -9.642386775177385e-06, -1.2052983468971528e-07, -4.8211933875886101e-07, -1.2052983468971533e-07, -1.2052983468971528e-07, -1.2052983468971525e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -9.6423867751772224e-07, -1.2052983468971765e-06, -2.4105966937943475e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -2.8927160325531726e-06, -3.6158950406915187e-07, -1.0606625452694956e-05, -1.9284773550354445e-06, -8.6781480976596179e-06, -1.2052983468971531e-07, -1.2052983468971533e-07, -3.0132458672429124e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -8.4370884282800632e-07, -4.8211933875886101e-07, -2.4105966937943056e-07, -8.6781480976596145e-06, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -8.6781480976596145e-06, -9.6423867751772266e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -1.2052983468971531e-07, -9.6423867751772266e-07, -1.2052983468971716e-06, -3.6158950406914658e-07, -9.6423867751772266e-07, -1.8079475203457259e-06, -1.2052983468971533e-07, -9.6423867751772266e-07, -2.4105966937943051e-07, -2.4105966937943051e-07, -2.4105966937943056e-07, -1.2052983468971533e-07, -7.2317900813829718e-07, -3.6158950406914219e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -3.133775701932622e-06, -2.7721861978635007e-06, -1.2052983468971533e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -7.2317900813829867e-07, -2.4105966937943066e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -9.642386775177385e-06, -9.6423867751773206e-06, -1.952583321973425e-05, -9.6423867751773376e-06, -9.642386775177363e-06, -4.8211933875886112e-07, -2.4105966937943066e-07, -9.6423867751772181e-07, -1.0847685122074442e-06, -4.8211933875886112e-07, -1.3258281815868652e-06, -1.2052983468971528e-07, -1.2052983468971533e-07, -1.9284773550354453e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.9284773550354445e-06, -9.6423867751772245e-07, -1.2052983468971533e-07, -1.952583321973421e-05, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971533e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -3.6158950406915103e-07, 0.00024539874342826141, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -4.8211933875886112e-07, -1.4463580162765872e-06, -9.6423867751772245e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -2.1695370244149011e-06, -1.2052983468971531e-07, -4.8211933875886091e-07, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -6.0264917344858624e-07, -4.8211933875886122e-07, 0.00049079748685652272, -7.2317900813829337e-07, -1.0245035948625833e-05, -1.2052983468971533e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971533e-07, -5.5443723957269768e-06, -1.205298346897167e-06, -1.2052983468971528e-07, -9.6423867751772224e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -9.6423867751772202e-07, -1.9284773550354449e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -3.7002659249742574e-05, -9.6423867751772245e-07, -2.4105966937942879e-05, -9.6423867751772266e-07, -2.4105966937943061e-07, -7.2317900813828596e-06, -1.4463580162765867e-06, -6.026491734485854e-07, -7.2317900813829409e-06, -1.2052983468971533e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.952583321973421e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.7601332143945027e-05, -3.6158950406914637e-07, -2.4105966937942899e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971533e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943056e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.952583321973425e-05, -9.6423867751772224e-07, -9.6423867751772224e-07, -3.2543055366222991e-06, -1.1570864130212691e-05, -9.6423867751772245e-07, -8.5576182629698421e-06, -1.4463580162766007e-06, -1.4463580162766007e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971771e-06, -9.6423867751772224e-07, -1.2052983468971746e-06, -2.5311265284840436e-06, -9.6423867751772266e-07, -6.0264917344858794e-07, -2.7721861978634863e-06, -9.6423867751772245e-07, -1.4463580162765867e-06, -3.6158950406915113e-07, -6.0264917344858529e-07, -2.4105966937943051e-07, -1.2052983468971528e-07, -1.2052983468971533e-07, -9.6423867751772224e-07, -1.4463580162766011e-06, -7.2317900813828829e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772202e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -9.6423867751772266e-07, -4.8211933875886122e-07, -9.6423867751772202e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354445e-06, -2.8927160325531718e-06, -9.6423867751772266e-07, -1.9284773550354449e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.0847685122074325e-06, -4.0980143794502778e-06, -2.4105966937943056e-07, -9.6423867751772224e-07, -9.6423867751772266e-07, -1.0847685122074514e-06, -3.1337757019326233e-06, -9.6423867751772224e-07, -9.6423867751772266e-07, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971533e-07, -1.2052983468971525e-07, -1.2052983468971528e-07, -2.4105966937943066e-07, -2.0490071897251499e-06, -3.6158950406914315e-06, -1.4463580162765867e-06, -7.2317900813829718e-07, -1.2052983468971533e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -2.8927160325531718e-06, -9.6423867751772224e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -1.4463580162765867e-06, -9.6423867751772245e-07, -1.2052983468971528e-07, -2.4105966937943056e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.0847685122074308e-06, -6.0264917344858709e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -8.6781480976596043e-06, -4.8211933875886112e-07, -1.2052983468971533e-07, -7.2317900813828596e-06, -9.6423867751772245e-07, -5.78543206510643e-06, -5.7854320651063436e-06, -6.026491734485696e-06, -5.78543206510643e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772224e-07, -1.2052983468971528e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -8.4370884282801934e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.3523199160725752e-06, -2.4105966937943056e-07, -8.6781480976596145e-06, -8.6781480976596145e-06, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -8.6781480976596179e-06, -8.6781480976596009e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -2.4105966937943056e-07, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.6158950406914923e-07, -1.9284773550354453e-06, -2.8927160325532239e-06, -2.8927160325532099e-06, -2.8927160325532133e-06, -2.8927160325532222e-06, -1.4463580162765897e-06, -1.4463580162765897e-06, -2.8927160325531794e-06, -2.8927160325531786e-06, -3.6158950406915103e-07, -3.615895040691505e-07, -7.2679490317898777e-05, -7.2317900813828945e-05, -1.807947520345739e-06, -3.6158950406915103e-07, -1.0847685122074527e-06, -3.6158950406914937e-06, -2.8927160325531794e-05, -7.2317900813830099e-07, -3.3266234374361508e-05, -3.61589504069147e-07, -5.7854320651064266e-06, -5.7854320651064232e-06, -2.8927160325531777e-06, -2.8927160325531803e-06, -2.892716032553174e-05, -2.8927160325531733e-05, -2.8927160325532023e-06, -8.2080817423696087e-05, -7.2317900813830597e-07, -7.2317900813829013e-05, -5.78543206510643e-06, -2.8927160325532116e-06, -2.8927160325532239e-06, -3.6158950406914674e-07, -3.6158950406915092e-07, -2.8927160325532006e-06, -2.8927160325532031e-06, -7.2317900813830597e-07, -7.2317900813830597e-07, -3.6158950406914679e-07, -3.6158950406914933e-07, -2.8927160325531709e-06, -1.8079475203457259e-06, -1.0847685122074455e-06, -1.4463580162765906e-06, -1.4463580162765897e-06, -3.6158950406915103e-07, -5.4238425610371849e-06, -2.8927160325531947e-06, -2.8927160325531955e-06, -3.2543055366223211e-06, -2.8927160325531769e-06, -5.4238425610371951e-06, -7.2317900813830205e-07, -3.615895040691524e-07, -2.8927160325531777e-06, -2.8927160325531786e-06, -3.6158950406915103e-07, -3.6158950406915007e-07, -2.8927160325531964e-06, -2.8927160325531938e-06, -7.2317900813829316e-07, -3.615895040691487e-07, -2.8927160325531862e-06, -5.785432065106347e-06, -3.6158950406914857e-06, -2.8927160325532014e-06, -5.7854320651063758e-06, -3.6158950406915124e-07, -2.8927160325531887e-06, -6.1470215691755708e-06, -2.8927160325532006e-06, -2.8927160325531913e-06, -5.7854320651064215e-06, -1.1570864130212687e-05, -9.0397376017286503e-06, -2.8927160325531786e-06, -5.7854320651064147e-06, -5.7854320651064113e-06, -1.4463580162766119e-06, -2.892716032553193e-06, 0.00024190337822225993, -3.9774845447605876e-06, -1.4463580162766119e-06, -5.7854320651063419e-06, -2.8927160325532006e-06, -2.8927160325532014e-06, -2.8927160325532023e-06, -7.2317900813829295e-07, -2.8927160325532167e-06, -2.8927160325531786e-06, -3.6158950406915299e-07, -2.8927160325531777e-06, -7.2317900813829739e-07, -2.892716032553215e-06, -2.8927160325531997e-06, -2.8927160325532023e-06, -3.6158950406915124e-07, -5.7854320651064147e-06, -5.7854320651064181e-06, -3.6158950406915039e-07, -2.8927160325531997e-06, -2.8927160325531989e-06, -3.615895040691506e-07, -2.892716032553223e-06, -2.8927160325532192e-06, -2.8927160325531904e-06, -2.8927160325532201e-06, -8.6781480976596213e-06, -2.8927160325532192e-06, -2.8927160325531845e-06, -2.8927160325531896e-06, -3.6158950406914552e-07, -2.892716032553187e-06, -2.8927160325531904e-06, -5.7854320651063927e-06, -1.4463580162765897e-06, -6.5086110732446355e-06, -1.4463580162765906e-06, -3.615895040691524e-07, -7.2317900813829909e-07, -4.7006635528988558e-06, -2.8927160325532023e-06, -5.7854320651063453e-06, -3.0373518341808557e-05, -2.8927160325531964e-06, -3.1819876358084755e-05, -2.892716032553193e-06, -2.8927160325531904e-06, -5.7854320651064113e-06, -2.8927160325531838e-05, -5.7854320651064147e-06, -2.9288749829601145e-05, -3.6158950406914684e-07, -5.7854320651064181e-06, -5.785432065106408e-06, -1.4463580162766092e-06, -3.0373518341808564e-05, -2.8927160325531794e-05, -2.8927160325531838e-05, -2.8927160325531923e-05, -3.6158950406915103e-07, -1.4463580162765855e-06, -3.6158950406914838e-07, -3.6158950406915187e-07, -3.6158950406915299e-07, -2.8927160325532014e-06, -2.8927160325532023e-06, -2.8927160325532006e-06, -2.8927160325532014e-06, -3.6158950406914849e-07, -3.615895040691487e-07, -3.615895040691451e-07, -2.8927160325532124e-06, -3.6158950406914929e-06, -7.2317900813829739e-06, -5.7854320651063453e-06, -5.7854320651063842e-06, -2.8927160325532116e-06, -8.6781480976595535e-06, -1.0847685122074228e-06, -3.1819876358084918e-05, -5.7854320651063809e-06, -2.6034444292978518e-05, -3.6158950406915081e-07, -3.6158950406914954e-07, -9.0397376017286571e-06, -5.7854320651063927e-06, -2.8927160325531947e-06, -2.5311265284840483e-06, -1.4463580162765865e-06, -7.2317900813830163e-07, -2.6034444292978518e-05, -7.2317900813830205e-07, -1.4463580162765897e-06, -1.4463580162765897e-06, -2.6034444292978518e-05, -2.8927160325531845e-06, -3.6158950406914933e-07, -2.8927160325531938e-06, -3.615895040691451e-07, -2.8927160325531913e-06, -3.6158950406914971e-06, -1.084768512207445e-06, -2.892716032553193e-06, -5.4238425610372332e-06, -3.6158950406914679e-07, -2.8927160325531836e-06, -7.2317900813830597e-07, -7.2317900813830597e-07, -7.2317900813830438e-07, -3.6158950406915007e-07, -2.1695370244148668e-06, -1.0847685122074249e-06, -2.8927160325532065e-06, -2.8927160325532099e-06, -5.7854320651063792e-06, -9.4013271057977539e-06, -8.3165585935902822e-06, -3.6158950406914679e-07, -5.7854320651063453e-06, -2.8927160325532082e-06, -2.1695370244148617e-06, -7.2317900813829337e-07, -3.615895040691487e-07, -3.6158950406915187e-07, -2.8927160325531923e-05, -2.8927160325531838e-05, -5.8577499659201884e-05, -2.892716032553177e-05, -2.8927160325531838e-05, -1.4463580162766119e-06, -7.2317900813829337e-07, -2.8927160325531709e-06, -3.2543055366223224e-06, -1.4463580162766119e-06, -3.9774845447606037e-06, -3.6158950406915081e-07, -3.61589504069147e-07, -5.7854320651063707e-06, -2.8927160325531642e-06, -2.8927160325531896e-06, -3.6158950406914965e-07, -3.6158950406915103e-07, -1.4463580162766016e-06, -1.4463580162766024e-06, -5.7854320651063453e-06, -2.8927160325532099e-06, -3.6158950406914785e-07, -5.8577499659202493e-05, -2.8927160325532082e-06, -2.8927160325532074e-06, -3.6158950406915039e-07, -1.4463580162766024e-06, -1.4463580162766016e-06, -7.2317900813829401e-07, -7.2317900813829401e-07, 0.00024443450475074383, -3.6158950406915103e-07, -7.2317900813829401e-07, -7.2317900813829401e-07, -3.615895040691452e-07, -3.6158950406915103e-07, -1.4463580162765906e-06, -4.3390740488297335e-06, -2.8927160325531667e-06, -3.6158950406914827e-07, -3.61589504069147e-07, -6.5086110732446329e-06, -3.6158950406915007e-07, -1.4463580162765846e-06, -7.2317900813829316e-07, -5.7854320651063588e-06, -5.7854320651063622e-06, -1.8079475203457477e-06, -1.4463580162765986e-06, -7.2317900813829337e-07, 0.0014709461025532917, -3.0735107845877482e-05, -3.6158950406914933e-07, -1.4463580162765982e-06, -1.446358016276599e-06, -5.7854320651063656e-06, -5.7854320651063554e-06, -1.446358016276599e-06, -1.4463580162765804e-06, -1.4463580162765804e-06, -3.6158950406914827e-07, -1.6633117187180754e-05, -3.6158950406914726e-06, -3.6158950406915124e-07, -2.8927160325532074e-06, -2.8927160325531731e-06, -2.8927160325532082e-06, -5.7854320651063554e-06, -2.8927160325531726e-06, -5.7854320651063656e-06, -2.8927160325531726e-06, -2.8927160325531726e-06, -0.00011100797774922848, -2.8927160325532074e-06, -7.2317900813829053e-05, -2.892716032553187e-06, -7.2317900813830227e-07, -2.1695370244148753e-05, -4.3390740488297352e-06, -1.8079475203457354e-06, -2.1695370244148753e-05, -3.6158950406914743e-07, -2.8927160325532023e-06, -2.8927160325532014e-06, -5.8577499659202493e-05, -2.8927160325531828e-06, -2.892716032553182e-06, -8.2803996431834504e-05, -1.0847685122074488e-06, -7.231790081382908e-05, -2.8927160325531989e-06, -2.8927160325531997e-06, -3.6158950406914891e-07, -2.8927160325532006e-06, -2.8927160325532031e-06, -3.6158950406914806e-07, -5.7854320651063622e-06, -5.7854320651063588e-06, -7.2317900813830438e-07, -1.4463580162766016e-06, -1.4463580162766024e-06, -2.8927160325532082e-06, -2.8927160325532091e-06, -5.8577499659201884e-05, -2.8927160325532099e-06, -2.8927160325532065e-06, -9.7629166098669812e-06, -3.4712592390638241e-05, -2.8927160325532006e-06, -2.5672854788909374e-05, -4.3390740488297954e-06, -4.3390740488297954e-06, -2.8927160325532099e-06, -2.8927160325532192e-06, -3.6158950406915009e-06, -2.892716032553223e-06, -3.6158950406915018e-06, -7.5933795854521258e-06, -2.8927160325531853e-06, -1.8079475203457486e-06, -8.3165585935903787e-06, -2.8927160325531836e-06, -4.3390740488297352e-06, -1.0847685122074249e-06, 0.00098026914553145513, -7.2317900813830502e-07, -3.6158950406915103e-07, -3.6158950406914944e-07, -2.8927160325532239e-06, -4.3390740488297818e-06, -2.1695370244148625e-06, -1.4463580162765922e-06, -2.8927160325532116e-06, -2.8927160325532023e-06, -2.8927160325531726e-06, -5.7854320651063453e-06, -2.8927160325531777e-06, -1.446358016276599e-06, -5.7854320651063453e-06, -2.8927160325531777e-06, -1.4463580162765982e-06, -2.8927160325531731e-06, -3.6158950406914743e-07, -2.8927160325531786e-06, -2.8927160325531777e-06, -5.7854320651064181e-06, -8.6781480976595704e-06, -2.8927160325531921e-06, -5.78543206510643e-06, -5.7854320651064198e-06, -2.8927160325531786e-06, -2.8927160325531794e-06, -2.8927160325531836e-06, -2.8927160325531811e-06, -3.2543055366223127e-06, -1.2294043138351167e-05, -7.2317900813829295e-07, -2.8927160325532192e-06, -2.8927160325531777e-06, -3.2543055366223127e-06, -9.401327105797737e-06, -2.8927160325532099e-06, -2.8927160325531938e-06, -2.8927160325532239e-06, -1.4463580162765986e-06, -1.446358016276599e-06, -3.6158950406915081e-07, -3.6158950406915299e-07, -3.6158950406915124e-07, -7.2317900813830015e-07, -6.1470215691755573e-06, -1.0847685122074383e-05, -4.3390740488297649e-06, -2.1695370244148668e-06, -3.6158950406914923e-07, -1.4463580162765978e-06, -5.7854320651063809e-06, -8.6781480976595772e-06, -2.8927160325532184e-06, -1.4463580162765978e-06, -5.7854320651063876e-06, -5.7854320651063842e-06, -1.4463580162765978e-06, -4.3390740488297734e-06, -2.8927160325531828e-06, -3.615895040691524e-07, -7.2317900813829295e-07, -1.4463580162765978e-06, -1.446358016276599e-06, -3.2543055366223139e-06, -1.807947520345746e-06, -2.8927160325532065e-06, -5.785432065106347e-06, -2.6034444292978474e-05, -1.4463580162766092e-06, -3.6158950406914849e-07, -2.1695370244148753e-05, -2.8927160325531896e-06, -1.7356296195318772e-05, -1.7356296195319093e-05, -1.807947520345729e-05, -1.7356296195318772e-05, -1.4463580162766092e-06, -1.4463580162766083e-06, -2.8927160325531938e-06, -2.8927160325531913e-06, -1.4463580162765812e-06, -1.4463580162765812e-06, -2.892716032553215e-06, -3.6158950406915219e-07, -2.8927160325532167e-06, -3.6158950406914552e-07, -3.615895040691506e-07, -2.5311265284840389e-05, -1.4463580162765812e-06, -1.4463580162765812e-06, -2.2056959748218155e-05, -7.2317900813830332e-07, -2.6034444292978518e-05, -2.6034444292978518e-05, -2.8927160325531887e-06, -3.6158950406914849e-07, -2.8927160325531913e-06, -2.6034444292978518e-05, -2.6034444292978511e-05, -2.8927160325531896e-06, -2.892716032553187e-06, -7.231790081382957e-07, -7.2317900813830163e-07, -5.7854320651063504e-06, -2.8927160325531879e-06, -2.8927160325531887e-06, -1.0847685122074463e-06, -5.7854320651063504e-06, -4.0980143794503334e-05, -4.0980143794503334e-05, -4.0980143794503334e-05, -4.0980143794503334e-05, -2.0490071897251667e-05, -2.0490071897251667e-05, -4.0980143794503334e-05, -4.0980143794503334e-05, -5.1225179743129167e-06, -5.1225179743129167e-06, -0.0010296261128369, -0.0010245035948625988, -2.561258987156461e-05, -5.1225179743129167e-06, -1.5367553922938771e-05, -5.1225179743129219e-05, -0.00040980143794503321, -1.0245035948625833e-05, -0.00047127165363679334, -5.1225179743129167e-06, -8.1960287589006667e-05, -8.1960287589006667e-05, -4.0980143794503334e-05, -4.0980143794503334e-05, -0.00040980143794503332, -0.00040980143794503332, -4.0980143794503334e-05, -0.0011628115801690427, -1.0245035948625833e-05, -0.0010245035948625851, -8.1960287589006667e-05, -4.0980143794503334e-05, -4.0980143794503334e-05, -5.1225179743129167e-06, -5.1225179743129167e-06, -4.0980143794503334e-05, -4.0980143794503334e-05, -1.0245035948625833e-05, -1.0245035948625833e-05, -5.1225179743129167e-06, -5.1225179743129167e-06, -4.0980143794503334e-05, -2.5612589871564606e-05, -1.5367553922938771e-05, -2.0490071897251667e-05, -2.0490071897251667e-05, -5.1225179743129167e-06, -7.6837769614694791e-05, -4.0980143794503334e-05, -4.0980143794503334e-05, -4.6102661768816395e-05, -4.0980143794503334e-05, -7.6837769614694575e-05, -1.0245035948625833e-05, -5.1225179743129167e-06, -4.0980143794503334e-05, -4.0980143794503334e-05, -5.1225179743129167e-06, -5.1225179743129167e-06, -4.0980143794503334e-05, -4.0980143794503334e-05, -1.0245035948625833e-05, -5.1225179743129167e-06, -4.0980143794503334e-05, -8.1960287589006667e-05, -5.122517974312924e-05, -4.0980143794503334e-05, -8.1960287589006667e-05, -5.1225179743129167e-06, -4.0980143794503334e-05, -8.7082805563321158e-05, -4.0980143794503334e-05, -4.0980143794503334e-05, -8.1960287589006667e-05, -0.00016392057517801333, -0.00012806294935782263, -4.0980143794503334e-05, -8.196028758900664e-05, -8.196028758900664e-05, -2.0490071897251667e-05, -4.0980143794503347e-05, -5.1225179743129823e-05, -5.6347697717442898e-05, -2.0490071897251667e-05, -8.1960287589006694e-05, -4.0980143794503347e-05, -4.0980143794503334e-05, -4.0980143794503334e-05, -1.0245035948625833e-05, -4.0980143794503334e-05, -4.0980143794503334e-05, -5.1225179743129167e-06, -4.0980143794503334e-05, -1.0245035948625833e-05, -4.0980143794503334e-05, -4.0980143794503334e-05, -4.0980143794503334e-05, -5.1225179743129167e-06, -8.1960287589006667e-05, -8.1960287589006667e-05, -5.1225179743129167e-06, -4.0980143794503347e-05, -4.0980143794503347e-05, -5.1225179743129167e-06, -4.0980143794503334e-05, -4.0980143794503334e-05, -4.0980143794503334e-05, -4.0980143794503334e-05, -0.00012294043138351017, -4.0980143794503334e-05, -4.0980143794503334e-05, -4.0980143794503334e-05, -5.1225179743129099e-06, -4.0980143794503334e-05, -4.0980143794503334e-05, -8.1960287589006667e-05, -2.0490071897251667e-05, -9.2205323537633427e-05, -2.0490071897251667e-05, -5.1225179743129167e-06, -1.0245035948625833e-05, -6.6592733666068492e-05, -4.0980143794503334e-05, -8.1960287589006667e-05, -0.00043029150984229112, -4.0980143794503334e-05, -0.0004507815817395376, -4.0980143794503334e-05, -4.0980143794503334e-05, -8.196028758900664e-05, -0.0004098014379450337, -8.196028758900664e-05, -0.00041492395591934616, -5.1225179743129167e-06, -8.196028758900664e-05, -8.196028758900664e-05, -2.0490071897251667e-05, -0.00043029150984229112, -0.00040980143794503321, -0.00040980143794503392, -0.00040980143794503343, -5.1225179743129167e-06, -2.0490071897251663e-05, -5.1225179743129167e-06, -5.1225179743129167e-06, -5.1225179743129167e-06, -4.0980143794503334e-05, -4.0980143794503334e-05, -4.0980143794503334e-05, -4.0980143794503334e-05, -5.1225179743129167e-06, -5.1225179743129167e-06, -5.1225179743129099e-06, -4.0980143794503334e-05, -5.1225179743129219e-05, -0.00010245035948625841, -8.1960287589006667e-05, -8.1960287589006667e-05, -4.0980143794503334e-05, -0.0001229404313835102, -1.5367553922938771e-05, -0.00045078158173953738, -8.1960287589006667e-05, -0.00036882129415053051, -5.1225179743129167e-06, -5.1225179743129167e-06, -0.00012806294935782371, -8.1960287589006667e-05, -4.0980143794503334e-05, -3.5857625820190428e-05, -2.0490071897251667e-05, -1.0245035948625833e-05, -0.00036882129415053062, -1.0245035948625833e-05, -2.0490071897251667e-05, -2.0490071897251667e-05, -0.00036882129415053056, -4.0980143794503334e-05, -5.1225179743129167e-06, -4.0980143794503334e-05, -5.1225179743129099e-06, -4.0980143794503334e-05, -5.1225179743129219e-05, -1.5367553922938771e-05, -4.0980143794503334e-05, -7.6837769614694032e-05, -5.1225179743129167e-06, -4.0980143794503334e-05, -1.0245035948625833e-05, -1.0245035948625833e-05, -1.0245035948625833e-05, -5.1225179743129167e-06, -3.0735107845877536e-05, -1.5367553922938775e-05, -4.0980143794503334e-05, -4.0980143794503334e-05, -8.1960287589006667e-05, -0.00013318546733213647, -0.00011781791340919866, -5.1225179743129167e-06, -8.1960287589006667e-05, -4.0980143794503334e-05, -3.0735107845877536e-05, -1.0245035948625833e-05, -5.1225179743129167e-06, -5.1225179743129167e-06, -0.00040980143794503343, -0.00040980143794503392, -0.00082984791183868874, -0.00040980143794503392, -0.0004098014379450337, -2.0490071897251667e-05, -1.0245035948625833e-05, -4.0980143794503334e-05, -4.6102661768816368e-05, -2.0490071897251667e-05, -5.6347697717442166e-05, -5.1225179743129167e-06, -5.1225179743129167e-06, -8.1960287589006559e-05, -4.0980143794503279e-05, -4.0980143794503334e-05, -5.1225179743129167e-06, -5.1225179743129167e-06, -2.0490071897251667e-05, -2.0490071897251667e-05, -8.1960287589006667e-05, -4.0980143794503334e-05, -5.1225179743129167e-06, -0.00082984791183869405, -4.0980143794503334e-05, -4.0980143794503334e-05, -5.1225179743129167e-06, -2.0490071897251667e-05, -2.0490071897251667e-05, -1.0245035948625833e-05, -1.0245035948625833e-05, -1.5367553922938771e-05, -5.1225179743129167e-06, -1.0245035948625833e-05, -1.0245035948625833e-05, -5.1225179743129099e-06, -5.1225179743129167e-06, -2.0490071897251667e-05, -6.1470215691754949e-05, -4.0980143794503279e-05, -5.1225179743129167e-06, -5.1225179743129167e-06, -9.2205323537632627e-05, -5.1225179743129167e-06, -2.0490071897251667e-05, -1.0245035948625833e-05, -8.1960287589006667e-05, -8.1960287589006667e-05, -2.561258987156461e-05, -2.0490071897251667e-05, -1.0245035948625833e-05, -3.0735107845877482e-05, 0.020433724199534181, -5.1225179743129167e-06, -2.0490071897251667e-05, -2.0490071897251667e-05, -8.1960287589006667e-05, -8.1960287589006667e-05, -2.0490071897251667e-05, -2.049007189725164e-05, -2.049007189725164e-05, -5.1225179743129167e-06, -0.00023563582681839569, -5.1225179743129233e-05, -5.1225179743129167e-06, -4.0980143794503334e-05, -4.0980143794503334e-05, -4.0980143794503334e-05, -8.1960287589006667e-05, -4.0980143794503327e-05, -8.1960287589006667e-05, -4.0980143794503334e-05, -4.0980143794503334e-05, 0.018314448116184819, -4.0980143794503334e-05, -0.0010245035948625869, -4.0980143794503334e-05, -1.0245035948625833e-05, -0.00030735107845877851, -6.147021569175499e-05, -2.5612589871564596e-05, -0.00030735107845877879, -5.1225179743129167e-06, -4.0980143794503334e-05, -4.0980143794503334e-05, -0.00082984791183869405, -4.0980143794503334e-05, -4.0980143794503334e-05, -0.0011730566161176667, -1.5367553922938771e-05, -0.0010245035948625921, -4.0980143794503347e-05, -4.0980143794503347e-05, -5.1225179743129167e-06, -4.0980143794503334e-05, -4.0980143794503334e-05, -5.1225179743129167e-06, -8.1960287589006667e-05, -8.1960287589006667e-05, -1.0245035948625833e-05, -2.0490071897251667e-05, -2.0490071897251667e-05, -4.0980143794503334e-05, -4.0980143794503334e-05, -0.00082984791183868874, -4.0980143794503334e-05, -4.0980143794503334e-05, -0.0001383079853064505, -0.00049176172553404068, -4.0980143794503347e-05, -0.00036369877617621854, -6.1470215691755085e-05, -6.1470215691755085e-05, -4.0980143794503334e-05, -4.0980143794503334e-05, -5.1225179743129226e-05, -4.0980143794503334e-05, -5.1225179743129219e-05, -0.00010757287746057267, -4.0980143794503334e-05, -2.561258987156461e-05, -0.00011781791340919797, -4.0980143794503334e-05, 0.00092060687736005237, -1.5367553922938771e-05, -2.5612589871564596e-05, -1.0245035948625833e-05, -5.1225179743129167e-06, -5.1225179743129167e-06, -4.0980143794503334e-05, -6.1470215691755085e-05, -3.0735107845877536e-05, -2.0490071897251667e-05, -4.0980143794503334e-05, -4.0980143794503334e-05, -4.0980143794503334e-05, -8.1960287589006667e-05, -4.0980143794503334e-05, -2.0490071897251667e-05, -8.1960287589006681e-05, -4.0980143794503334e-05, -2.0490071897251667e-05, -4.0980143794503334e-05, -5.1225179743129167e-06, -4.0980143794503334e-05, -4.0980143794503334e-05, -8.1960287589006667e-05, -0.00012294043138351017, -4.0980143794503334e-05, -8.1960287589006667e-05, -8.1960287589006667e-05, -4.0980143794503334e-05, -4.0980143794503334e-05, -4.0980143794503334e-05, -4.0980143794503334e-05, -4.61026617688171e-05, -0.00017416561112664205, -1.0245035948625833e-05, -4.0980143794503334e-05, -4.0980143794503334e-05, -4.6102661768817018e-05, -0.00013318546733213734, -4.0980143794503334e-05, -4.0980143794503334e-05, -4.0980143794503334e-05, -2.0490071897251667e-05, -2.0490071897251667e-05, -5.1225179743129167e-06, -5.1225179743129167e-06, -5.1225179743129167e-06, -1.0245035948625833e-05, -8.7082805563320034e-05, -0.00015367553922938931, -6.1470215691755085e-05, -3.0735107845877536e-05, -5.1225179743129167e-06, -2.0490071897251667e-05, -8.1960287589006667e-05, -0.0001229404313835102, -4.0980143794503334e-05, -2.0490071897251667e-05, -8.1960287589006667e-05, -8.1960287589006667e-05, -2.0490071897251667e-05, -6.1470215691755099e-05, -4.0980143794503334e-05, -5.1225179743129167e-06, -1.0245035948625833e-05, -2.0490071897251667e-05, -2.0490071897251667e-05, -4.6102661768816876e-05, -2.561258987156461e-05, -4.0980143794503334e-05, -8.1960287589006667e-05, -0.00036882129415053051, -2.0490071897251667e-05, -5.1225179743129167e-06, -0.00030735107845877851, -4.0980143794503334e-05, -0.0002458808627670205, -0.00024588086276702039, -0.00025612589871564629, -0.0002458808627670205, -2.0490071897251667e-05, -2.0490071897251667e-05, -4.0980143794503347e-05, -4.0980143794503347e-05, -2.049007189725164e-05, -2.049007189725164e-05, -4.0980143794503334e-05, -5.1225179743129167e-06, -4.0980143794503334e-05, -5.1225179743129099e-06, -5.1225179743129167e-06, -0.00035857625820190191, -2.049007189725164e-05, -2.049007189725164e-05, -0.00031247359643309038, -1.0245035948625833e-05, -0.00036882129415053056, -0.00036882129415053062, -4.0980143794503334e-05, -5.1225179743129167e-06, -4.0980143794503334e-05, -0.00036882129415053051, -0.00036882129415053062, -4.0980143794503334e-05, -4.0980143794503334e-05, -1.0245035948625833e-05, -1.0245035948625833e-05, -8.1960287589006667e-05, -4.0980143794503334e-05, -4.0980143794503334e-05, -1.5367553922938771e-05, -8.1960287589006667e-05, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -1.211324838631649e-05, -1.2052983468971524e-05, -3.013245867242892e-07, -6.0264917344857666e-08, -1.8079475203457459e-07, -6.0264917344857947e-07, -4.8211933875886713e-06, -1.2052983468971536e-07, -5.5443723957269251e-06, -6.0264917344857679e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886713e-06, -4.8211933875886713e-06, -4.8211933875886122e-07, -1.3680136237282644e-05, -1.2052983468971531e-07, -1.2052983468971685e-05, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886101e-07, -3.013245867242892e-07, -1.8079475203457472e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857666e-08, -9.0397376017287778e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.42384256103715e-07, -4.8211933875886144e-07, -9.0397376017287481e-07, -1.2052983468971533e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344858095e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344857666e-08, -4.8211933875886144e-07, -1.024503594862576e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6423867751772266e-07, -1.9284773550354445e-06, -1.5066229336214443e-06, -4.8211933875886144e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -6.0264917344858116e-07, -6.6291409079343197e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -1.2052983468971533e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.4463580162765965e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.0847685122074321e-06, -2.4105966937943072e-07, -6.0264917344857666e-08, -1.2052983468971536e-07, -7.8344392548314513e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -5.0622530569680805e-06, -4.8211933875886144e-07, -5.3033127263474592e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -4.8211933875886408e-06, -9.6423867751772266e-07, -4.8814583049335143e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -5.0622530569680788e-06, -4.8211933875886713e-06, -4.8211933875886366e-06, -4.8211933875886493e-06, -6.0264917344857666e-08, -2.4105966937943061e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -6.0264917344858307e-07, -1.2052983468971581e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -4.8211933875886133e-07, -1.446358016276598e-06, -1.807947520345734e-07, -5.3033127263475032e-06, -9.6423867751772266e-07, -4.3390740488297463e-06, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.5066229336214492e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.218544214140047e-07, -2.4105966937943061e-07, -1.2052983468971533e-07, -4.3390740488297446e-06, -1.2052983468971533e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297446e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344858074e-07, -1.8079475203457472e-07, -4.8211933875886144e-07, -9.0397376017287196e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -3.6158950406915134e-07, -1.8079475203457697e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -1.5668878509663093e-06, -1.3860930989317319e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -3.6158950406914436e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886493e-06, -4.8211933875886366e-06, -9.7629166098670557e-06, -4.8211933875886366e-06, -4.8211933875886408e-06, -2.4105966937943061e-07, -1.2052983468971536e-07, -4.8211933875886112e-07, -5.4238425610371394e-07, -2.4105966937943061e-07, -6.6291409079343589e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.7629166098670354e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.8079475203457472e-07, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943061e-07, -7.231790081382993e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.0847685122074317e-06, -6.0264917344857679e-08, -2.4105966937943051e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.0132458672429053e-07, -2.4105966937943072e-07, -1.2052983468971533e-07, -3.6158950406914933e-07, -5.1225179743129167e-06, 0.00024545900834560644, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, 0.00024274708706508799, -6.0264917344857841e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.8501329624871538e-05, -4.8211933875886133e-07, -1.20529834689716e-05, -4.8211933875886144e-07, -1.2052983468971533e-07, -3.615895040691465e-06, -7.2317900813829909e-07, -3.0132458672429005e-07, -3.615895040691506e-06, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670354e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.3800666071972396e-05, -1.8079475203457461e-07, -1.2052983468971611e-05, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670557e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.6271527683111758e-06, -5.7854320651063859e-06, -4.8211933875886144e-07, -4.2788091314848829e-06, -7.2317900813828808e-07, -7.2317900813828808e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344858349e-07, -4.8211933875886122e-07, -6.0264917344858201e-07, -1.2655632642420189e-06, -4.8211933875886144e-07, -3.0132458672429132e-07, -1.3860930989317256e-06, -4.8211933875886144e-07, -7.2317900813829909e-07, -1.8079475203457702e-07, -3.0132458672429005e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -7.2317900813829888e-07, -3.6158950406915198e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.4463580162765978e-06, -4.8211933875886144e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610371765e-07, -2.0490071897251643e-06, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -5.4238425610371765e-07, -1.5668878509663104e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.0245035948625699e-06, -1.8079475203457342e-06, -7.2317900813829909e-07, -3.6158950406915134e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -9.6423867751772266e-07, -1.4463580162765971e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -7.2317900813829898e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -1.2052983468971533e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -5.4238425610371648e-07, -3.0132458672428952e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.339074048829753e-06, -2.4105966937943061e-07, -6.0264917344857679e-08, -3.6158950406914607e-06, -4.8211933875886144e-07, -2.8927160325532383e-06, -2.8927160325531947e-06, -3.0132458672428882e-06, -2.8927160325532383e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.2185442141400493e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -3.6761599580363371e-06, -1.2052983468971533e-07, -4.3390740488297446e-06, -4.3390740488297446e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.3390740488297463e-06, -4.3390740488297369e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.8079475203457472e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.845299354526596e-05, -4.821193387588609e-05, -1.2052983468971572e-06, -2.4105966937943066e-07, -7.2317900813829941e-07, -2.4105966937943289e-06, -1.9284773550354692e-05, -4.8211933875886133e-07, -2.2177489582907697e-05, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354692e-05, -1.9284773550354689e-05, -1.9284773550354449e-06, -5.4720544949130571e-05, -4.8211933875886112e-07, -4.8211933875886734e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.928477355035444e-06, -1.2052983468971568e-06, -7.2317900813829909e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -3.6158950406915111e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.1695370244148583e-06, -1.9284773550354453e-06, -3.6158950406915009e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886112e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -3.8569547100708906e-06, -2.4105966937943246e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -2.4105966937943061e-07, -1.9284773550354457e-06, -4.0980143794503015e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -6.0264917344857748e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -1.9284773550354453e-06, -2.4105966937943255e-06, -2.6516563631737292e-06, -9.6423867751772224e-07, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -2.4105966937943056e-07, -1.9284773550354457e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -5.7854320651063885e-06, -1.9284773550354445e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -4.3390740488297251e-06, -9.6423867751772287e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -3.1337757019326284e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -2.0249012227872329e-05, -1.9284773550354453e-06, -2.121325090538985e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -1.928477355035458e-05, -3.8569547100708898e-06, -1.9525833219734071e-05, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -2.0249012227872329e-05, -1.9284773550354692e-05, -1.9284773550354567e-05, -1.9284773550354618e-05, -2.4105966937943061e-07, -9.6423867751772202e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -2.4105966937943056e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.9284773550354449e-06, -2.4105966937943331e-06, -4.8211933875886544e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -5.7854320651063944e-06, -7.2317900813830978e-07, -2.1213250905389989e-05, -3.8569547100708906e-06, -1.7356296195318894e-05, -2.4105966937943066e-07, -2.4105966937943072e-07, -6.0264917344857968e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -1.6874176856560175e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -1.7356296195318894e-05, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.7356296195318894e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -2.410596693794323e-06, -7.2317900813829919e-07, -1.9284773550354453e-06, -3.615895040691487e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.4463580162766062e-06, -7.2317900813830819e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -6.267551403865239e-06, -5.5443723957269268e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.4463580162766094e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.9284773550354618e-05, -1.9284773550354567e-05, -3.905166643946825e-05, -1.9284773550354567e-05, -1.928477355035458e-05, -9.6423867751772224e-07, -4.8211933875886133e-07, -1.9284773550354445e-06, -2.1695370244148541e-06, -9.6423867751772224e-07, -2.6516563631737431e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.8569547100708898e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.9051666439468169e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -7.2317900813829549e-07, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -2.4105966937943061e-07, -9.6423867751772224e-07, -2.8927160325531985e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -4.3390740488297335e-06, -2.4105966937943066e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.2052983468971568e-06, -9.6423867751772287e-07, -4.8211933875886122e-07, -1.4463580162765982e-06, -2.0490071897251667e-05, -2.4105966937943072e-07, 0.00098111285437428694, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943072e-07, -1.1088744791453811e-05, -2.4105966937943141e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.4005318499486192e-05, -1.9284773550354453e-06, -4.8211933875886395e-05, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.4463580162765856e-05, -2.8927160325531976e-06, -1.2052983468971608e-06, -1.4463580162766017e-05, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.9051666439468169e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -5.5202664287889559e-05, -7.2317900813829877e-07, -4.8211933875886442e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.905166643946825e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -6.5086110732446109e-06, -2.3141728260425581e-05, -1.9284773550354453e-06, -1.711523652593944e-05, -2.8927160325531951e-06, -2.8927160325531951e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943344e-06, -1.9284773550354449e-06, -2.4105966937943306e-06, -5.0622530569680805e-06, -1.9284773550354453e-06, -1.2052983468971657e-06, -5.5443723957269039e-06, -1.9284773550354457e-06, -2.8927160325531976e-06, -7.2317900813830841e-07, -1.2052983468971606e-06, -4.8211933875886112e-07, -2.4105966937943061e-07, -2.4105966937943072e-07, -1.9284773550354449e-06, -2.8927160325531964e-06, -1.4463580162766088e-06, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -3.8569547100708889e-06, -1.9284773550354457e-06, 0.00098111285437428694, -1.9284773550354449e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -5.7854320651063919e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.1695370244148685e-06, -8.1960287589006538e-06, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354457e-06, -2.1695370244148685e-06, -6.2675514038652449e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -2.4105966937943056e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.0980143794502778e-06, -7.2317900813829367e-06, -2.8927160325531976e-06, -1.4463580162766062e-06, -2.4105966937943072e-07, -9.6423867751772287e-07, -3.8569547100708906e-06, -5.785432065106391e-06, -1.9284773550354445e-06, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -2.8927160325531773e-06, -1.9284773550354457e-06, -2.4105966937943061e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -2.1695370244148651e-06, -1.205298346897164e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -1.7356296195318941e-05, -9.6423867751772245e-07, -2.4105966937943072e-07, -1.4463580162765853e-05, -1.9284773550354457e-06, -1.1570864130212958e-05, -1.1570864130212768e-05, -1.2052983468971538e-05, -1.1570864130212958e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.6874176856560197e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4704639832145321e-05, -4.8211933875886122e-07, -1.7356296195318894e-05, -1.7356296195318894e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.7356296195318894e-05, -1.7356296195318894e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.2317900813829909e-07, -3.8569547100708915e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8452993545265987e-05, -4.8211933875886124e-05, -1.2052983468971568e-06, -2.4105966937943066e-07, -7.2317900813829919e-07, -2.410596693794328e-06, -1.9284773550354685e-05, -4.8211933875886133e-07, -2.2177489582907683e-05, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354685e-05, -1.9284773550354682e-05, -1.9284773550354449e-06, -5.4720544949130558e-05, -4.8211933875886112e-07, -4.8211933875886767e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.928477355035444e-06, -1.2052983468971564e-06, -7.2317900813829951e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -3.6158950406915128e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.1695370244148566e-06, -1.9284773550354453e-06, -3.6158950406915026e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886112e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -3.8569547100708906e-06, -2.4105966937943238e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -2.4105966937943061e-07, -1.9284773550354457e-06, -4.0980143794502998e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -6.026491734485779e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -1.9284773550354453e-06, -2.4105966937943246e-06, -2.6516563631737296e-06, -9.6423867751772224e-07, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -2.4105966937943056e-07, -1.9284773550354457e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -5.7854320651063919e-06, -1.9284773550354445e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -4.3390740488297217e-06, -9.6423867751772287e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -3.1337757019326284e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -2.0249012227872329e-05, -1.9284773550354453e-06, -2.1213250905389854e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -1.9284773550354573e-05, -3.8569547100708898e-06, -1.9525833219734064e-05, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -2.0249012227872329e-05, -1.9284773550354685e-05, -1.928477355035456e-05, -1.9284773550354611e-05, -2.4105966937943061e-07, -9.6423867751772202e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -2.4105966937943056e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.9284773550354449e-06, -2.4105966937943323e-06, -4.8211933875886527e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -5.7854320651063978e-06, -7.2317900813831021e-07, -2.1213250905389989e-05, -3.8569547100708906e-06, -1.7356296195318907e-05, -2.4105966937943066e-07, -2.4105966937943072e-07, -6.0264917344858019e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -1.6874176856560167e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -1.73562961953189e-05, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.73562961953189e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -2.4105966937943221e-06, -7.2317900813829962e-07, -1.9284773550354453e-06, -3.6158950406914887e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.4463580162766071e-06, -7.2317900813830862e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -6.267551403865239e-06, -5.5443723957269234e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.4463580162766102e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.9284773550354611e-05, -1.928477355035456e-05, -3.905166643946825e-05, -1.928477355035456e-05, -1.9284773550354573e-05, -9.6423867751772224e-07, -4.8211933875886133e-07, -1.9284773550354445e-06, -2.1695370244148524e-06, -9.6423867751772224e-07, -2.6516563631737436e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.8569547100708898e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.9051666439468162e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -7.2317900813829591e-07, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -2.4105966937943061e-07, -9.6423867751772224e-07, -2.8927160325532002e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -4.3390740488297319e-06, -2.4105966937943066e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.2052983468971564e-06, -9.6423867751772287e-07, -4.8211933875886122e-07, -1.446358016276599e-06, -2.0490071897251667e-05, -2.4105966937943072e-07, -9.6423867751772287e-07, 0.00098111285437428694, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943072e-07, -1.1088744791453804e-05, -2.4105966937943132e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.4005318499486232e-05, -1.9284773550354453e-06, -4.8211933875886429e-05, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.4463580162765863e-05, -2.8927160325531993e-06, -1.2052983468971604e-06, -1.4463580162766024e-05, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.9051666439468162e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -5.5202664287889532e-05, -7.2317900813829919e-07, -4.8211933875886476e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.905166643946825e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -6.5086110732446109e-06, -2.3141728260425595e-05, -1.9284773550354453e-06, -1.7115236525939427e-05, -2.8927160325531968e-06, -2.8927160325531968e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943335e-06, -1.9284773550354449e-06, -2.4105966937943297e-06, -5.0622530569680805e-06, -1.9284773550354453e-06, -1.2052983468971653e-06, -5.5443723957269005e-06, -1.9284773550354457e-06, -2.8927160325531993e-06, -7.2317900813830883e-07, -1.2052983468971602e-06, -4.8211933875886112e-07, -2.4105966937943061e-07, -2.4105966937943072e-07, -1.9284773550354449e-06, -2.892716032553198e-06, -1.4463580162766096e-06, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, 0.00098111285437428694, -3.8569547100708889e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -1.9284773550354449e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -5.7854320651063953e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.1695370244148668e-06, -8.1960287589006504e-06, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354457e-06, -2.1695370244148668e-06, -6.2675514038652449e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -2.4105966937943056e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.0980143794502761e-06, -7.2317900813829401e-06, -2.8927160325531993e-06, -1.4463580162766071e-06, -2.4105966937943072e-07, -9.6423867751772287e-07, -3.8569547100708906e-06, -5.7854320651063944e-06, -1.9284773550354445e-06, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -2.892716032553179e-06, -1.9284773550354457e-06, -2.4105966937943061e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -2.1695370244148634e-06, -1.2052983468971636e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -1.7356296195318934e-05, -9.6423867751772245e-07, -2.4105966937943072e-07, -1.446358016276586e-05, -1.9284773550354457e-06, -1.1570864130212965e-05, -1.1570864130212775e-05, -1.2052983468971544e-05, -1.1570864130212965e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.6874176856560184e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4704639832145328e-05, -4.8211933875886122e-07, -1.73562961953189e-05, -1.73562961953189e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.7356296195318907e-05, -1.7356296195318887e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.2317900813829951e-07, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -0.00019381197418106341, -0.00019284773550354382, -4.8211933875886103e-06, -9.6423867751772266e-07, -2.8927160325531811e-06, -9.64238677517728e-06, -7.713909420141847e-05, -1.9284773550354453e-06, -8.8709958331631113e-05, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.713909420141847e-05, -7.713909420141847e-05, -7.7139094201417796e-06, -0.00021888217979652285, -1.9284773550354445e-06, -0.00019284773550354639, -1.5427818840283559e-05, -7.7139094201417813e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -7.7139094201417762e-06, -4.8211933875886103e-06, -2.8927160325531828e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -1.4463580162766007e-05, -7.713909420141783e-06, -7.713909420141783e-06, -8.6781480976594739e-06, -7.7139094201417813e-06, -1.4463580162765934e-05, -1.9284773550354449e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -1.5427818840283563e-05, -9.6423867751772613e-06, -7.7139094201417813e-06, -1.5427818840283563e-05, -9.6423867751772245e-07, -7.713909420141783e-06, -1.6392057517801237e-05, -7.7139094201417813e-06, -7.713909420141783e-06, -1.5427818840283559e-05, -3.0855637680567105e-05, -2.4105966937943038e-05, -7.713909420141783e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708889e-06, -7.7139094201417813e-06, -9.6423867751772647e-06, -1.0606625452694939e-05, -3.8569547100708889e-06, -1.5427818840283556e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -7.713909420141783e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -7.7139094201417796e-06, -2.3141728260425445e-05, -7.7139094201417779e-06, -7.7139094201417813e-06, -7.713909420141783e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.713909420141783e-06, -1.5427818840283566e-05, -3.8569547100708915e-06, -1.7356296195318978e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.2535102807730492e-05, -7.7139094201417813e-06, -1.5427818840283559e-05, -8.0996048911489261e-05, -7.713909420141783e-06, -8.4853003621559564e-05, -7.713909420141783e-06, -7.713909420141783e-06, -1.5427818840283559e-05, -7.713909420141805e-05, -1.5427818840283559e-05, -7.8103332878936066e-05, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -8.0996048911489261e-05, -7.713909420141847e-05, -7.7139094201417982e-05, -7.7139094201418185e-05, -9.6423867751772245e-07, -3.8569547100708881e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.7139094201417796e-06, -9.6423867751772952e-06, -1.9284773550354543e-05, -1.5427818840283559e-05, -1.5427818840283566e-05, -7.7139094201417796e-06, -2.3141728260425327e-05, -2.8927160325532256e-06, -8.4853003621560201e-05, -1.5427818840283566e-05, -6.9425184781276211e-05, -9.6423867751772266e-07, -9.6423867751772287e-07, -2.4105966937943116e-05, -1.5427818840283566e-05, -7.713909420141783e-06, -6.7496707426240828e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -6.9425184781276211e-05, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -6.9425184781276184e-05, -7.713909420141783e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -9.6423867751772562e-06, -2.8927160325531832e-06, -7.7139094201417813e-06, -1.4463580162765914e-05, -9.6423867751772287e-07, -7.713909420141783e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -5.7854320651063978e-06, -2.8927160325532188e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283563e-05, -2.5070205615460915e-05, -2.2177489582907788e-05, -9.6423867751772287e-07, -1.5427818840283563e-05, -7.7139094201417813e-06, -5.7854320651064105e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.7139094201418185e-05, -7.7139094201417982e-05, -0.00015620666575787257, -7.7139094201417982e-05, -7.713909420141805e-05, -3.8569547100708889e-06, -1.9284773550354453e-06, -7.7139094201417779e-06, -8.6781480976594569e-06, -3.8569547100708889e-06, -1.0606625452694995e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.5427818840283563e-05, -7.7139094201417813e-06, -7.713909420141783e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.5427818840283559e-05, -7.7139094201417813e-06, -9.6423867751772287e-07, -0.00015620666575787224, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.8927160325531828e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -3.8569547100708889e-06, -1.157086413021274e-05, -7.7139094201417813e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -1.7356296195319019e-05, -9.6423867751772287e-07, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.5427818840283566e-05, -1.5427818840283566e-05, -4.8211933875886341e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -5.7854320651063656e-06, -8.1960287589006667e-05, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, 0.0039128805533669361, -1.5427818840283566e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772287e-07, -4.4354979165815387e-05, -9.6423867751772207e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283566e-05, -7.7139094201417796e-06, 0.0039128805533669361, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00029602127399794363, -7.7139094201417813e-06, -0.00019284773550354501, -7.7139094201417813e-06, -1.9284773550354449e-06, -5.7854320651063277e-05, -1.1570864130212736e-05, -4.8211933875886256e-06, -5.7854320651063927e-05, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -0.00015620666575787224, -7.713909420141783e-06, -7.713909420141783e-06, -0.00022081065715155883, -2.8927160325531815e-06, -0.0001928477355035452, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -1.5427818840283566e-05, -1.5427818840283566e-05, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -0.00015620666575787257, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.6034444292978471e-05, -9.256691304170189e-05, -7.7139094201417813e-06, -6.8460946103758059e-05, -1.1570864130212726e-05, -1.1570864130212726e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.642386775177302e-06, -7.7139094201417796e-06, -9.6423867751772579e-06, -2.0249012227872288e-05, -7.7139094201417813e-06, -4.8211933875886442e-06, -2.217748958290769e-05, -7.713909420141783e-06, -1.1570864130212736e-05, -2.8927160325532196e-06, -4.8211933875886239e-06, -1.9284773550354445e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -7.7139094201417796e-06, -1.1570864130212731e-05, -5.785432065106408e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -7.7139094201417813e-06, -3.8569547100708915e-06, -1.5427818840283556e-05, -7.713909420141783e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.5427818840283559e-05, -2.3141728260425459e-05, -7.7139094201417813e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.713909420141783e-06, -7.713909420141783e-06, -8.6781480976595162e-06, -3.2784115035602683e-05, -1.9284773550354445e-06, -7.7139094201417779e-06, -7.713909420141783e-06, -8.6781480976595162e-06, -2.5070205615460936e-05, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.6392057517801145e-05, -2.8927160325531665e-05, -1.1570864130212736e-05, -5.7854320651063978e-06, -9.6423867751772287e-07, -3.8569547100708915e-06, -1.5427818840283566e-05, -2.3141728260425313e-05, -7.7139094201417779e-06, -3.8569547100708915e-06, -1.5427818840283566e-05, -1.5427818840283566e-05, -3.8569547100708915e-06, -1.1570864130212735e-05, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -8.6781480976594993e-06, -4.8211933875886374e-06, -7.7139094201417813e-06, -1.5427818840283563e-05, -6.9425184781276103e-05, -3.8569547100708898e-06, -9.6423867751772287e-07, -5.7854320651063277e-05, -7.713909420141783e-06, -4.6283456520851128e-05, -4.6283456520850633e-05, -4.8211933875885846e-05, -4.6283456520851128e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772287e-07, -6.7496707426241033e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -5.8818559328581191e-05, -1.9284773550354449e-06, -6.9425184781276184e-05, -6.9425184781276211e-05, -7.713909420141783e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -6.9425184781276211e-05, -6.9425184781276076e-05, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.5427818840283566e-05, -7.713909420141783e-06, -7.713909420141783e-06, -2.8927160325531828e-06, -1.5427818840283566e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -0.00019381197418106292, -0.00019284773550354336, -4.8211933875886154e-06, -9.6423867751772266e-07, -2.892716032553176e-06, -9.6423867751772901e-06, -7.7139094201418551e-05, -1.9284773550354453e-06, -8.8709958331631344e-05, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201418551e-05, -7.7139094201418551e-05, -7.7139094201417796e-06, -0.00021888217979652331, -1.9284773550354445e-06, -0.00019284773550354593, -1.5427818840283559e-05, -7.7139094201417813e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -7.7139094201417762e-06, -4.8211933875886154e-06, -2.8927160325531777e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -1.4463580162765982e-05, -7.713909420141783e-06, -7.713909420141783e-06, -8.6781480976594993e-06, -7.7139094201417813e-06, -1.4463580162765934e-05, -1.9284773550354449e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -1.5427818840283563e-05, -9.6423867751772715e-06, -7.7139094201417813e-06, -1.5427818840283563e-05, -9.6423867751772245e-07, -7.713909420141783e-06, -1.6392057517801264e-05, -7.7139094201417813e-06, -7.713909420141783e-06, -1.5427818840283559e-05, -3.0855637680567105e-05, -2.4105966937942981e-05, -7.713909420141783e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708889e-06, -7.7139094201417813e-06, -9.6423867751772749e-06, -1.0606625452694932e-05, -3.8569547100708889e-06, -1.5427818840283556e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -7.713909420141783e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -7.7139094201417796e-06, -2.3141728260425405e-05, -7.7139094201417779e-06, -7.7139094201417813e-06, -7.713909420141783e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.713909420141783e-06, -1.5427818840283566e-05, -3.8569547100708915e-06, -1.7356296195319032e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.2535102807730498e-05, -7.7139094201417813e-06, -1.5427818840283559e-05, -8.0996048911489288e-05, -7.713909420141783e-06, -8.4853003621559509e-05, -7.713909420141783e-06, -7.713909420141783e-06, -1.5427818840283559e-05, -7.7139094201418131e-05, -1.5427818840283559e-05, -7.810333287893612e-05, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -8.0996048911489261e-05, -7.7139094201418551e-05, -7.7139094201418063e-05, -7.7139094201418267e-05, -9.6423867751772245e-07, -3.8569547100708881e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.7139094201417796e-06, -9.6423867751773054e-06, -1.9284773550354563e-05, -1.5427818840283559e-05, -1.5427818840283566e-05, -7.7139094201417796e-06, -2.3141728260425449e-05, -2.8927160325532201e-06, -8.4853003621560173e-05, -1.5427818840283566e-05, -6.9425184781276428e-05, -9.6423867751772266e-07, -9.6423867751772287e-07, -2.4105966937943058e-05, -1.5427818840283566e-05, -7.713909420141783e-06, -6.749670742624098e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -6.9425184781276401e-05, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -6.9425184781276401e-05, -7.713909420141783e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -9.6423867751772664e-06, -2.8927160325531781e-06, -7.7139094201417813e-06, -1.4463580162765887e-05, -9.6423867751772287e-07, -7.713909420141783e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -5.7854320651063876e-06, -2.8927160325532137e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283563e-05, -2.5070205615460929e-05, -2.2177489582907846e-05, -9.6423867751772287e-07, -1.5427818840283563e-05, -7.7139094201417813e-06, -5.7854320651064003e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.7139094201418267e-05, -7.7139094201418063e-05, -0.00015620666575787273, -7.7139094201418063e-05, -7.7139094201418131e-05, -3.8569547100708889e-06, -1.9284773550354453e-06, -7.7139094201417779e-06, -8.6781480976594823e-06, -3.8569547100708889e-06, -1.0606625452694988e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.5427818840283563e-05, -7.7139094201417813e-06, -7.713909420141783e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.5427818840283559e-05, -7.7139094201417813e-06, -9.6423867751772287e-07, -0.00015620666575787238, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.8927160325531777e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -3.8569547100708889e-06, -1.1570864130212719e-05, -7.7139094201417813e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -1.7356296195319073e-05, -9.6423867751772287e-07, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.5427818840283566e-05, -1.5427818840283566e-05, -4.8211933875886391e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -5.7854320651063554e-06, -8.1960287589006667e-05, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.5427818840283566e-05, 0.0039128805533669361, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772287e-07, -4.4354979165815502e-05, -9.6423867751772308e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, 0.0039128805533669361, -7.7139094201417796e-06, -1.5427818840283566e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00029602127399794281, -7.7139094201417813e-06, -0.00019284773550354455, -7.7139094201417813e-06, -1.9284773550354449e-06, -5.7854320651063182e-05, -1.1570864130212716e-05, -4.8211933875886307e-06, -5.7854320651063819e-05, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -0.00015620666575787238, -7.713909420141783e-06, -7.713909420141783e-06, -0.00022081065715155927, -2.8927160325531764e-06, -0.00019284773550354474, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -1.5427818840283566e-05, -1.5427818840283566e-05, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -0.00015620666575787273, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.6034444292978464e-05, -9.2566913041701728e-05, -7.7139094201417813e-06, -6.8460946103758208e-05, -1.1570864130212706e-05, -1.1570864130212706e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751773121e-06, -7.7139094201417796e-06, -9.6423867751772579e-06, -2.0249012227872288e-05, -7.7139094201417813e-06, -4.8211933875886493e-06, -2.2177489582907748e-05, -7.713909420141783e-06, -1.1570864130212716e-05, -2.8927160325532146e-06, -4.821193387588629e-06, -1.9284773550354445e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -7.7139094201417796e-06, -1.1570864130212711e-05, -5.7854320651063978e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -7.7139094201417813e-06, -3.8569547100708915e-06, -1.5427818840283556e-05, -7.713909420141783e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.5427818840283559e-05, -2.3141728260425418e-05, -7.7139094201417813e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.713909420141783e-06, -7.713909420141783e-06, -8.6781480976595399e-06, -3.2784115035602737e-05, -1.9284773550354445e-06, -7.7139094201417779e-06, -7.713909420141783e-06, -8.6781480976595399e-06, -2.5070205615460949e-05, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.6392057517801172e-05, -2.8927160325531611e-05, -1.1570864130212716e-05, -5.7854320651063876e-06, -9.6423867751772287e-07, -3.8569547100708915e-06, -1.5427818840283566e-05, -2.3141728260425435e-05, -7.7139094201417779e-06, -3.8569547100708915e-06, -1.5427818840283566e-05, -1.5427818840283566e-05, -3.8569547100708915e-06, -1.1570864130212714e-05, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -8.6781480976595264e-06, -4.8211933875886425e-06, -7.7139094201417813e-06, -1.5427818840283563e-05, -6.9425184781276319e-05, -3.8569547100708898e-06, -9.6423867751772287e-07, -5.7854320651063168e-05, -7.713909420141783e-06, -4.6283456520850965e-05, -4.6283456520850877e-05, -4.821193387588609e-05, -4.6283456520850965e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772287e-07, -6.7496707426241114e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -5.8818559328581069e-05, -1.9284773550354449e-06, -6.9425184781276401e-05, -6.9425184781276401e-05, -7.713909420141783e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -6.9425184781276428e-05, -6.9425184781276292e-05, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.5427818840283566e-05, -7.713909420141783e-06, -7.713909420141783e-06, -2.8927160325531777e-06, -1.5427818840283566e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8452993545265987e-05, -4.8211933875886124e-05, -1.2052983468971577e-06, -2.4105966937943066e-07, -7.2317900813829919e-07, -2.4105966937943306e-06, -1.9284773550354699e-05, -4.8211933875886133e-07, -2.2177489582907687e-05, -2.4105966937943072e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354699e-05, -1.9284773550354699e-05, -1.9284773550354449e-06, -5.4720544949130537e-05, -4.8211933875886122e-07, -4.8211933875886767e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.9284773550354445e-06, -1.2052983468971577e-06, -7.2317900813829972e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -3.6158950406915145e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.1695370244148659e-06, -1.9284773550354457e-06, -3.6158950406915026e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.9284773550354457e-06, -3.8569547100708915e-06, -2.4105966937943255e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -4.0980143794503015e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -6.026491734485779e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -2.4105966937943263e-06, -2.6516563631737347e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354453e-06, -2.4105966937943056e-07, -1.9284773550354453e-06, -4.8211933875886133e-07, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -2.4105966937943066e-07, -1.9284773550354457e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -5.7854320651063944e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354453e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -4.3390740488297217e-06, -9.6423867751772287e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -3.1337757019326288e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -2.0249012227872322e-05, -1.9284773550354453e-06, -2.1213250905389837e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -1.928477355035458e-05, -3.8569547100708898e-06, -1.9525833219734071e-05, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -2.0249012227872315e-05, -1.9284773550354699e-05, -1.9284773550354563e-05, -1.9284773550354614e-05, -2.4105966937943066e-07, -9.6423867751772245e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -2.4105966937943213e-06, -4.8211933875886578e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -5.7854320651063986e-06, -7.2317900813831042e-07, -2.1213250905390006e-05, -3.8569547100708906e-06, -1.7356296195318958e-05, -2.4105966937943066e-07, -2.4105966937943072e-07, -6.0264917344858002e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -1.6874176856560427e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -1.7356296195318958e-05, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.7356296195318948e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -2.4105966937943145e-06, -7.2317900813829972e-07, -1.9284773550354457e-06, -3.6158950406914904e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.4463580162766071e-06, -7.2317900813830872e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -6.267551403865239e-06, -5.5443723957269226e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.4463580162766105e-06, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.9284773550354614e-05, -1.9284773550354563e-05, -3.905166643946825e-05, -1.9284773550354563e-05, -1.928477355035458e-05, -9.6423867751772245e-07, -4.8211933875886133e-07, -1.9284773550354445e-06, -2.1695370244148524e-06, -9.6423867751772245e-07, -2.651656363173741e-06, -2.4105966937943066e-07, -2.4105966937943072e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.8569547100708898e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.9051666439468169e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -7.2317900813829972e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -9.6423867751772245e-07, -2.8927160325531989e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297319e-06, -2.4105966937943066e-07, -9.6423867751772202e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.2052983468971632e-06, -9.6423867751772266e-07, -4.8211933875886133e-07, -1.446358016276599e-06, -2.0490071897251667e-05, -2.4105966937943072e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, 0.00098111285437428629, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.1088744791453794e-05, -2.4105966937943158e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -7.4005318499486219e-05, -1.9284773550354453e-06, -4.8211933875886429e-05, -1.9284773550354457e-06, -4.8211933875886122e-07, -1.4463580162765873e-05, -2.8927160325531752e-06, -1.2052983468971615e-06, -1.4463580162766038e-05, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.9051666439468169e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -5.5202664287889545e-05, -7.2317900813829951e-07, -4.8211933875886469e-05, -1.9284773550354453e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.905166643946825e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -6.5086110732447202e-06, -2.3141728260425584e-05, -1.9284773550354457e-06, -1.7115236525939423e-05, -2.8927160325531972e-06, -2.8927160325531972e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -2.4105966937943221e-06, -1.9284773550354449e-06, -2.4105966937943297e-06, -5.0622530569680771e-06, -1.9284773550354457e-06, -1.2052983468971594e-06, -5.5443723957268971e-06, -1.9284773550354453e-06, -2.8927160325531718e-06, -7.2317900813828935e-07, -1.2052983468971611e-06, -4.8211933875886122e-07, -2.4105966937943066e-07, -2.4105966937943072e-07, -1.9284773550354449e-06, -2.8927160325531989e-06, -1.4463580162766096e-06, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354445e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -1.9284773550354457e-06, -9.6423867751772266e-07, -1.9284773550354445e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -5.7854320651063978e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.1695370244148676e-06, -8.1960287589006504e-06, -4.8211933875886112e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -2.1695370244149095e-06, -6.2675514038652458e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -2.4105966937943061e-07, -2.4105966937943066e-07, -4.8211933875886144e-07, -4.0980143794502769e-06, -7.2317900813829367e-06, -2.8927160325531853e-06, -1.4463580162766071e-06, -2.4105966937943072e-07, -9.6423867751772266e-07, -3.8569547100708906e-06, -5.7854320651063969e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -2.8927160325531989e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, 0.00098111285437428629, -2.1695370244148634e-06, -1.2052983468971644e-06, -1.9284773550354453e-06, -3.8569547100708915e-06, -1.7356296195318934e-05, -9.6423867751772245e-07, -2.4105966937943072e-07, -1.4463580162765873e-05, -1.9284773550354453e-06, -1.1570864130212967e-05, -1.1570864130212792e-05, -1.2052983468971556e-05, -1.1570864130212967e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.687417685656017e-05, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4704639832145342e-05, -4.8211933875886122e-07, -1.7356296195318948e-05, -1.7356296195318958e-05, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.7356296195318958e-05, -1.7356296195318921e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.2317900813829845e-07, -3.8569547100708915e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8452993545265892e-05, -4.8211933875886015e-05, -1.2052983468971551e-06, -2.4105966937943066e-07, -7.2317900813829665e-07, -2.4105966937943255e-06, -1.928477355035459e-05, -4.8211933875886133e-07, -2.2177489582907694e-05, -2.4105966937943072e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354597e-05, -1.9284773550354597e-05, -1.9284773550354449e-06, -5.4720544949130646e-05, -4.8211933875886122e-07, -4.8211933875886659e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.9284773550354445e-06, -1.2052983468971551e-06, -7.2317900813829718e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -3.6158950406915069e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.1695370244148651e-06, -1.9284773550354457e-06, -3.6158950406914946e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943061e-07, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.9284773550354457e-06, -3.8569547100708915e-06, -2.4105966937943204e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -2.4105966937943061e-07, -1.9284773550354453e-06, -4.0980143794503083e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -6.0264917344857672e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -2.4105966937943213e-06, -2.6516563631737304e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354453e-06, -2.4105966937943056e-07, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -2.4105966937943066e-07, -1.9284773550354457e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -5.7854320651063724e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354453e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -4.3390740488297395e-06, -9.6423867751772287e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -3.1337757019326254e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -2.0249012227872302e-05, -1.9284773550354453e-06, -2.1213250905389898e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -1.928477355035454e-05, -3.8569547100708898e-06, -1.9525833219734037e-05, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -2.0249012227872295e-05, -1.928477355035459e-05, -1.9284773550354523e-05, -1.9284773550354573e-05, -2.4105966937943061e-07, -9.6423867751772245e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.9284773550354449e-06, -2.4105966937943289e-06, -4.8211933875886459e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -1.9284773550354449e-06, -5.7854320651063783e-06, -7.2317900813830788e-07, -2.1213250905390033e-05, -3.8569547100708906e-06, -1.7356296195319026e-05, -2.4105966937943066e-07, -2.4105966937943072e-07, -6.0264917344857875e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -1.6874176856560196e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -1.7356296195319019e-05, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.7356296195319019e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -2.4105966937943187e-06, -7.2317900813829718e-07, -1.9284773550354457e-06, -3.6158950406914836e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.446358016276602e-06, -7.2317900813830618e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -6.2675514038652356e-06, -5.5443723957269378e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.4463580162766054e-06, -4.8211933875886133e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.9284773550354573e-05, -1.9284773550354523e-05, -3.9051666439468196e-05, -1.9284773550354523e-05, -1.928477355035454e-05, -9.6423867751772245e-07, -4.8211933875886133e-07, -1.9284773550354445e-06, -2.1695370244148608e-06, -9.6423867751772245e-07, -2.6516563631737453e-06, -2.4105966937943066e-07, -2.4105966937943072e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.8569547100708898e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.9051666439468108e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -7.2317900813829718e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -9.6423867751772224e-07, -2.8927160325531667e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297479e-06, -2.4105966937943066e-07, -9.6423867751772202e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.2052983468971604e-06, -9.6423867751772266e-07, -4.8211933875886122e-07, -1.4463580162765804e-06, -2.049007189725164e-05, -2.4105966937943072e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772287e-07, 0.00098111285437428651, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.1088744791453828e-05, -2.4105966937943102e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -7.4005318499485934e-05, -1.9284773550354453e-06, -4.8211933875886313e-05, -1.9284773550354457e-06, -4.8211933875886122e-07, -1.4463580162765839e-05, -2.8927160325531887e-06, 0.00098087179470490748, -1.4463580162766004e-05, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.9051666439468108e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -5.5202664287889681e-05, -7.2317900813829676e-07, -4.8211933875886361e-05, -1.9284773550354453e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.9051666439468196e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -6.5086110732446143e-06, -2.3141728260425523e-05, -1.9284773550354457e-06, -1.7115236525939481e-05, -2.892716032553187e-06, -2.892716032553187e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943306e-06, -1.9284773550354449e-06, -2.4105966937943246e-06, -5.0622530569680754e-06, -1.9284773550354457e-06, -1.2052983468971636e-06, -5.5443723957269124e-06, -1.9284773550354453e-06, -2.8927160325531887e-06, -7.2317900813830639e-07, -1.2052983468971551e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943072e-07, -1.9284773550354449e-06, -2.8927160325531887e-06, -1.4463580162766045e-06, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354445e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -1.9284773550354457e-06, -9.6423867751772266e-07, -1.9284773550354445e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -5.7854320651063758e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.1695370244148757e-06, -8.1960287589006674e-06, -4.8211933875886112e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -2.1695370244148757e-06, -6.2675514038652399e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.0980143794502846e-06, -7.2317900813829265e-06, -2.8927160325531896e-06, -1.446358016276602e-06, -2.4105966937943072e-07, -9.6423867751772266e-07, -3.8569547100708906e-06, -5.7854320651063749e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -2.8927160325531892e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772287e-07, -2.1695370244148723e-06, -1.2052983468971619e-06, -1.9284773550354453e-06, -3.8569547100708915e-06, -1.7356296195318999e-05, -9.6423867751772245e-07, -2.4105966937943072e-07, -1.4463580162765839e-05, -1.9284773550354453e-06, -1.1570864130212926e-05, -1.1570864130212752e-05, -1.2052983468971533e-05, -1.1570864130212926e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.6874176856560217e-05, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4704639832145315e-05, -4.8211933875886122e-07, -1.7356296195319019e-05, -1.7356296195319019e-05, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.7356296195319026e-05, -1.7356296195318992e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.2317900813829718e-07, -3.8569547100708915e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8452993545265878e-05, -4.8211933875886015e-05, -1.2052983468971551e-06, -2.4105966937943066e-07, -7.2317900813829644e-07, -2.4105966937943255e-06, -1.928477355035459e-05, -4.8211933875886133e-07, -2.2177489582907687e-05, -2.4105966937943072e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354597e-05, -1.9284773550354597e-05, -1.9284773550354449e-06, -5.4720544949130659e-05, -4.8211933875886122e-07, -4.8211933875886659e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.9284773550354445e-06, -1.2052983468971551e-06, -7.2317900813829697e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -3.615895040691506e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.1695370244148651e-06, -1.9284773550354457e-06, -3.6158950406914937e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943061e-07, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.9284773550354457e-06, -3.8569547100708915e-06, -2.4105966937943204e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -2.4105966937943061e-07, -1.9284773550354453e-06, -4.0980143794503091e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -6.0264917344857672e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -2.4105966937943213e-06, -2.6516563631737304e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354453e-06, -2.4105966937943056e-07, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -2.4105966937943066e-07, -1.9284773550354457e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -5.7854320651063707e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354453e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -4.3390740488297395e-06, -9.6423867751772287e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -3.1337757019326254e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -2.0249012227872302e-05, -1.9284773550354453e-06, -2.1213250905389898e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -1.928477355035454e-05, -3.8569547100708898e-06, -1.9525833219734037e-05, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -2.0249012227872295e-05, -1.928477355035459e-05, -1.9284773550354523e-05, -1.9284773550354573e-05, -2.4105966937943061e-07, -9.6423867751772245e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.9284773550354449e-06, -2.4105966937943289e-06, -4.8211933875886459e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -1.9284773550354449e-06, -5.7854320651063766e-06, -7.2317900813830745e-07, -2.1213250905390033e-05, -3.8569547100708906e-06, -1.7356296195319026e-05, -2.4105966937943066e-07, -2.4105966937943072e-07, -6.0264917344857858e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -1.6874176856560196e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -1.7356296195319026e-05, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.7356296195319019e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -2.4105966937943187e-06, -7.2317900813829697e-07, -1.9284773550354457e-06, -3.6158950406914819e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.446358016276602e-06, -7.2317900813830597e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -6.2675514038652356e-06, -5.5443723957269395e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.446358016276605e-06, -4.8211933875886133e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.9284773550354573e-05, -1.9284773550354523e-05, -3.9051666439468196e-05, -1.9284773550354523e-05, -1.928477355035454e-05, -9.6423867751772245e-07, -4.8211933875886133e-07, -1.9284773550354445e-06, -2.1695370244148608e-06, -9.6423867751772245e-07, -2.6516563631737453e-06, -2.4105966937943066e-07, -2.4105966937943072e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.8569547100708898e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.9051666439468108e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -7.2317900813829697e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -9.6423867751772224e-07, -2.8927160325531659e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297496e-06, -2.4105966937943066e-07, -9.6423867751772202e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.2052983468971604e-06, -9.6423867751772266e-07, -4.8211933875886122e-07, -1.4463580162765804e-06, -2.049007189725164e-05, -2.4105966937943072e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, 0.00098111285437428651, -2.4105966937943072e-07, -1.1088744791453832e-05, -2.4105966937943102e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -7.4005318499485907e-05, -1.9284773550354453e-06, -4.8211933875886313e-05, -1.9284773550354457e-06, -4.8211933875886122e-07, -1.4463580162765836e-05, 0.00097918437701925102, -1.2052983468971551e-06, -1.4463580162765997e-05, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.9051666439468108e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -5.5202664287889694e-05, -7.2317900813829655e-07, -4.8211933875886361e-05, -1.9284773550354453e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.9051666439468196e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -6.5086110732446143e-06, -2.314172826042551e-05, -1.9284773550354457e-06, -1.7115236525939484e-05, -2.8927160325531862e-06, -2.8927160325531862e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943306e-06, -1.9284773550354449e-06, -2.4105966937943246e-06, -5.0622530569680771e-06, -1.9284773550354457e-06, -1.2052983468971636e-06, -5.5443723957269141e-06, -1.9284773550354453e-06, -2.8927160325531887e-06, -7.2317900813830618e-07, -1.2052983468971551e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943072e-07, -1.9284773550354449e-06, -2.892716032553187e-06, -1.4463580162766045e-06, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354445e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -1.9284773550354457e-06, -9.6423867751772266e-07, -1.9284773550354445e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -5.7854320651063741e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.1695370244148757e-06, -8.1960287589006708e-06, -4.8211933875886112e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -2.1695370244148757e-06, -6.2675514038652399e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.0980143794502854e-06, -7.2317900813829265e-06, -2.8927160325531887e-06, -1.446358016276602e-06, -2.4105966937943072e-07, -9.6423867751772266e-07, -3.8569547100708906e-06, -5.7854320651063732e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -2.8927160325531883e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772287e-07, -2.1695370244148723e-06, -1.2052983468971619e-06, -1.9284773550354453e-06, -3.8569547100708915e-06, -1.7356296195319005e-05, -9.6423867751772245e-07, -2.4105966937943072e-07, -1.4463580162765833e-05, -1.9284773550354453e-06, -1.1570864130212923e-05, -1.1570864130212748e-05, -1.2052983468971533e-05, -1.1570864130212923e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.6874176856560217e-05, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4704639832145315e-05, -4.8211933875886122e-07, -1.7356296195319019e-05, -1.7356296195319026e-05, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.7356296195319026e-05, -1.7356296195318992e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.2317900813829676e-07, -3.8569547100708915e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -1.2113248386316473e-05, -1.2052983468971504e-05, -3.0132458672428868e-07, -6.0264917344857666e-08, -1.8079475203457408e-07, -6.0264917344858116e-07, -4.8211933875886629e-06, -1.2052983468971536e-07, -5.5443723957269353e-06, -6.0264917344857679e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886629e-06, -4.8211933875886629e-06, -4.8211933875886122e-07, -1.3680136237282665e-05, -1.2052983468971531e-07, -1.2052983468971665e-05, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886101e-07, -3.0132458672428868e-07, -1.8079475203457419e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857666e-08, -9.0397376017287651e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610371648e-07, -4.8211933875886144e-07, -9.0397376017287323e-07, -1.2052983468971533e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344857989e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344857666e-08, -4.8211933875886144e-07, -1.0245035948625796e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6423867751772266e-07, -1.9284773550354445e-06, -1.5066229336214418e-06, -4.8211933875886144e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -6.026491734485801e-07, -6.6291409079343282e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -1.2052983468971533e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.4463580162765927e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.0847685122074353e-06, -2.4105966937943072e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -7.8344392548315657e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -5.0622530569680788e-06, -4.8211933875886144e-07, -5.3033127263474659e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -4.8211933875886324e-06, -9.6423867751772266e-07, -4.8814583049335075e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -5.0622530569680788e-06, -4.8211933875886629e-06, -4.8211933875886281e-06, -4.8211933875886408e-06, -6.0264917344857666e-08, 0.00024527821359357157, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -6.0264917344858201e-07, -1.2052983468971611e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -4.8211933875886133e-07, -1.4463580162765939e-06, -1.8079475203457686e-07, -5.3033127263475083e-06, -9.6423867751772266e-07, -4.3390740488297581e-06, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.5066229336214464e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.2185442141400512e-07, -2.4105966937943061e-07, -1.2052983468971533e-07, -4.3390740488297564e-06, -1.2052983468971533e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297564e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857947e-07, -1.8079475203457419e-07, -4.8211933875886144e-07, -9.0397376017287068e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -3.6158950406914552e-07, -1.8079475203457647e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -1.5668878509663055e-06, -1.3860930989317349e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -3.6158950406915113e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886408e-06, -4.8211933875886281e-06, -9.7629166098670455e-06, -4.8211933875886281e-06, -4.8211933875886324e-06, -2.4105966937943061e-07, -1.2052983468971536e-07, -4.8211933875886112e-07, -5.4238425610371828e-07, -2.4105966937943061e-07, -6.6291409079343631e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.7629166098670235e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.8079475203457419e-07, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943061e-07, -7.2317900813829718e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.0847685122074374e-06, -6.0264917344857679e-08, -2.4105966937943051e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.0132458672429e-07, -2.4105966937943072e-07, -1.2052983468971533e-07, -3.6158950406914827e-07, -5.1225179743129167e-06, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, 0.00024545900834560644, -2.7721861978634579e-06, -6.0264917344857735e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.8501329624871487e-05, -4.8211933875886133e-07, -1.2052983468971578e-05, -4.8211933875886144e-07, -1.2052983468971533e-07, -3.6158950406914641e-06, -7.2317900813829718e-07, -3.0132458672428963e-07, -3.6158950406914912e-06, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670235e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.380066607197242e-05, -1.8079475203457408e-07, -1.205298346897159e-05, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670455e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.6271527683111536e-06, -5.7854320651063775e-06, -4.8211933875886144e-07, -4.2788091314848762e-06, -7.2317900813829655e-07, -7.2317900813829655e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344858243e-07, -4.8211933875886122e-07, -6.0264917344858095e-07, -1.265563264242018e-06, -4.8211933875886144e-07, -3.013245867242909e-07, -1.3860930989317285e-06, -4.8211933875886144e-07, -7.2317900813829718e-07, -1.8079475203457655e-07, -3.0132458672428963e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -7.2317900813829634e-07, -3.6158950406915103e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.4463580162765935e-06, -4.8211933875886144e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610371913e-07, -2.0490071897251677e-06, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -5.4238425610371913e-07, -1.566887850966307e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.0245035948625716e-06, -1.8079475203457312e-06, -7.2317900813829676e-07, -3.6158950406914552e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -9.6423867751772266e-07, -1.4463580162765933e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -7.2317900813829697e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -5.4238425610371807e-07, -3.0132458672429037e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.3390740488297446e-06, -2.4105966937943061e-07, -6.0264917344857679e-08, -3.6158950406914633e-06, -4.8211933875886144e-07, -2.8927160325532302e-06, -2.892716032553187e-06, -3.0132458672428832e-06, -2.8927160325532302e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.2185442141400832e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -3.6761599580363371e-06, -1.2052983468971533e-07, -4.3390740488297564e-06, -4.3390740488297564e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.3390740488297581e-06, -4.3390740488297496e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.8079475203457419e-07, -9.6423867751772287e-07, -2.2177489582907487e-05, -2.2177489582907555e-05, -2.2177489582907528e-05, -2.2177489582907494e-05, -1.1088744791453855e-05, -1.1088744791453852e-05, -2.2177489582907711e-05, -2.2177489582907721e-05, -2.7721861978634439e-06, -2.7721861978634452e-06, -0.00055720942577055664, -0.00055443723957269639, -1.3860930989317378e-05, -2.7721861978634448e-06, 0.00023720271466936142, -2.7721861978634511e-05, -0.00022177489582907845, -5.5443723957268921e-06, -9.5218569404875347e-06, -2.7721861978634638e-06, -4.4354979165815075e-05, -4.4354979165815116e-05, -2.2177489582907731e-05, -2.21774895829077e-05, -0.00022177489582907845, -0.00022177489582907845, -2.2177489582907697e-05, -0.00062928626691500643, -5.544372395726865e-06, -0.00055443723957269379, -4.4354979165815035e-05, -2.2177489582907548e-05, -2.217748958290748e-05, 0.0002427470870650877, -2.7721861978634426e-06, -2.2177489582907595e-05, -2.2177489582907568e-05, -5.544372395726865e-06, -5.544372395726865e-06, 0.00024274708706508783, -2.772186197863452e-06, -2.217748958290767e-05, -1.3860930989317349e-05, -8.3165585935903398e-06, -1.1088744791453848e-05, -1.1088744791453855e-05, -2.7721861978634448e-06, -4.158279296795187e-05, -2.2177489582907639e-05, -2.2177489582907626e-05, -2.4949675780771177e-05, -2.2177489582907717e-05, -4.158279296795187e-05, -5.5443723957268895e-06, -2.772186197863435e-06, -2.2177489582907711e-05, -2.2177489582907697e-05, -2.7721861978634401e-06, -2.7721861978634498e-06, -2.2177489582907619e-05, -2.2177489582907646e-05, -5.5443723957269785e-06, 0.00024274708706508797, -2.2177489582907656e-05, -4.4354979165815645e-05, -2.7721861978634559e-05, -2.2177489582907561e-05, -4.4354979165815353e-05, 0.00024274708706508813, -2.217748958290767e-05, -4.7127165363678694e-05, -2.2177489582907606e-05, -2.217748958290765e-05, -4.4354979165815069e-05, -8.8709958331631506e-05, -6.9304654946586791e-05, -2.2177489582907711e-05, -4.4354979165815123e-05, -4.435497916581515e-05, -1.1088744791453727e-05, -2.2177489582907629e-05, -2.772186197863464e-05, -3.0494048176498208e-05, -1.1088744791453723e-05, -4.4354979165815794e-05, -2.2177489582907582e-05, -2.2177489582907599e-05, -2.2177489582907585e-05, -5.5443723957269742e-06, -2.2177489582907494e-05, -2.2177489582907711e-05, -2.7721861978634337e-06, -2.2177489582907717e-05, -5.5443723957269175e-06, -2.21774895829075e-05, -2.2177489582907575e-05, -2.2177489582907555e-05, -2.7721861978634435e-06, -4.4354979165815136e-05, -4.4354979165815109e-05, 0.00024274708706508805, -2.2177489582907595e-05, -2.2177489582907602e-05, -2.772186197863446e-06, -2.2177489582907467e-05, -2.2177489582907494e-05, -2.2177489582907656e-05, -2.217748958290748e-05, -6.653246874872265e-05, -2.2177489582907467e-05, -2.217748958290767e-05, -2.2177489582907663e-05, 0.00024274708706508794, -2.2177489582907643e-05, -2.217748958290765e-05, -4.4354979165815286e-05, -1.1088744791453855e-05, -4.9899351561542361e-05, -1.1088744791453848e-05, -2.772186197863435e-06, -5.5443723957269022e-06, -3.6038420572224978e-05, -2.2177489582907555e-05, -4.4354979165815712e-05, -0.00023286364062053027, -2.2177489582907619e-05, -0.00024395238541198577, -2.2177489582907629e-05, -2.2177489582907656e-05, -4.435497916581515e-05, -0.00022177489582907712, -4.4354979165815123e-05, -0.00022454708202694111, -2.7721861978634668e-06, -4.4354979165815082e-05, -4.4354979165815191e-05, -1.108874479145375e-05, -0.00023286364062053027, -0.00022177489582907845, -0.0002217748958290779, -0.0002217748958290766, -2.7721861978634401e-06, 0.00023443052847149911, -2.772186197863457e-06, -2.7721861978634384e-06, 0.00024274708706508821, -2.2177489582907582e-05, -2.2177489582907575e-05, -2.2177489582907575e-05, -2.2177489582907561e-05, -2.772186197863457e-06, -2.7721861978634562e-06, -2.7721861978634579e-06, -2.2177489582907507e-05, 0.0002177974112843153, -5.5443723957269144e-05, -4.4354979165815699e-05, -4.4354979165815319e-05, -2.2177489582907514e-05, -6.6532468748722908e-05, -8.3165585935903211e-06, -0.00024395238541198566, -4.4354979165815353e-05, -0.00019959740624616993, -2.7721861978634418e-06, -2.7721861978634511e-06, -6.9304654946586872e-05, -4.4354979165815286e-05, -2.2177489582907639e-05, -1.9405303385044325e-05, -1.1088744791453833e-05, -5.5443723957268904e-06, -0.00019959740624616993, -5.5443723957268895e-06, -1.1088744791453852e-05, -1.1088744791453855e-05, -0.00019959740624616993, -2.2177489582907683e-05, -2.7721861978634528e-06, -2.2177489582907602e-05, -2.7721861978634579e-06, -2.2177489582907629e-05, -2.7721861978634599e-05, -8.3165585935903025e-06, -2.2177489582907616e-05, -4.1582792967951856e-05, -2.7721861978634655e-06, -2.217748958290769e-05, -5.544372395726865e-06, -5.544372395726865e-06, -5.5443723957268717e-06, -2.7721861978634477e-06, -1.6633117187180761e-05, -8.3165585935903313e-06, -2.2177489582907565e-05, -2.2177489582907538e-05, -4.4354979165815394e-05, -7.2076841144450024e-05, -6.3760282550859486e-05, 0.00024274708706508783, -4.4354979165815712e-05, -2.2177489582907548e-05, -1.6633117187180724e-05, -5.5443723957269395e-06, -2.7721861978634562e-06, -2.7721861978634384e-06, -0.0002217748958290766, -0.0002217748958290779, -0.00044909416405388211, -0.0002217748958290779, -0.00022177489582907712, -1.1088744791453723e-05, -5.5443723957269471e-06, -2.2177489582907467e-05, -2.4949675780771163e-05, -1.1088744791453727e-05, -3.0494048176498181e-05, -2.7721861978634443e-06, -2.7721861978634638e-06, -4.4354979165815563e-05, -2.217748958290767e-05, -2.2177489582907656e-05, -2.7721861978634503e-06, -2.7721861978634448e-06, -1.1088744791453794e-05, -1.1088744791453788e-05, -4.4354979165815699e-05, -2.2177489582907528e-05, -2.7721861978634613e-06, -0.00044909416405388255, -2.2177489582907548e-05, -2.2177489582907558e-05, -2.7721861978634486e-06, -1.1088744791453791e-05, -1.1088744791453794e-05, -5.5443723957269319e-06, -5.544372395726931e-06, -8.3165585935903906e-06, -2.7721861978634439e-06, -5.544372395726931e-06, -5.5443723957269319e-06, -2.7721861978634553e-06, 0.0002427470870650881, -1.1088744791453842e-05, 0.00021225303888858918, -2.2177489582907683e-05, -2.7721861978634579e-06, -2.7721861978634638e-06, 0.00044113919496436128, -2.7721861978634498e-06, 0.00023443052847149884, 0.00023997490086722473, -4.4354979165815462e-05, -4.4354979165815428e-05, -1.3860930989317279e-05, -1.1088744791453808e-05, -5.5443723957269768e-06, -1.6633117187180754e-05, -0.00023563582681839569, 0.00024274708706508799, -1.1088744791453811e-05, -1.1088744791453804e-05, -4.4354979165815387e-05, -4.4354979165815502e-05, -1.1088744791453794e-05, -1.1088744791453828e-05, -1.1088744791453832e-05, -2.7721861978634579e-06, 0.011657404551519958, 0.0002177974112843163, -2.7721861978634401e-06, -2.2177489582907558e-05, -2.2177489582907887e-05, -2.2177489582907548e-05, -4.4354979165815502e-05, -2.2177489582907666e-05, -4.4354979165815387e-05, -2.2177489582907887e-05, -2.2177489582907887e-05, -0.00085106116274408477, -2.2177489582907555e-05, -0.00055443723957269324, -2.2177489582907643e-05, -5.5443723957268878e-06, -0.00016633117187180753, -3.3266234374361488e-05, -1.3860930989317317e-05, -0.00016633117187180748, -2.7721861978634638e-06, -2.2177489582907585e-05, -2.2177489582907599e-05, -0.00044909416405388255, -2.217748958290769e-05, -2.2177489582907697e-05, 0.0018203620933187864, -8.3165585935902398e-06, -0.00055443723957269335, -2.2177489582907602e-05, -2.2177489582907595e-05, 0.00024274708706508783, -2.2177489582907606e-05, -2.2177489582907578e-05, -2.7721861978634596e-06, -4.4354979165815428e-05, -4.4354979165815462e-05, -5.5443723957268717e-06, -1.1088744791453794e-05, -1.1088744791453791e-05, -2.2177489582907548e-05, -2.2177489582907534e-05, -0.00044909416405388211, -2.2177489582907538e-05, -2.2177489582907565e-05, 0.00017067024592063758, -0.00026612987499489304, -2.2177489582907582e-05, -0.00019682522004830659, -3.3266234374361224e-05, -3.326623437436123e-05, -2.2177489582907534e-05, -2.2177489582907494e-05, -2.7721861978634389e-05, -2.2177489582907467e-05, -2.7721861978634548e-05, -5.8215910155132512e-05, -2.2177489582907663e-05, -1.3860930989317491e-05, -6.3760282550859553e-05, -2.2177489582907677e-05, -3.3266234374361508e-05, 0.00072824126119525468, -1.3860930989317327e-05, -5.54437239572687e-06, -2.7721861978634401e-06, 0.00024274708706508799, -2.217748958290748e-05, -3.3266234374361325e-05, -1.6633117187180751e-05, -1.1088744791453835e-05, -2.2177489582907541e-05, -2.2177489582907697e-05, -2.2177489582907887e-05, -4.4354979165815367e-05, -2.2177489582907731e-05, -1.1088744791453804e-05, -4.4354979165815496e-05, -2.2177489582907704e-05, -1.1088744791453811e-05, -2.2177489582907887e-05, 0.00024274708706508783, -2.2177489582907697e-05, -2.2177489582907711e-05, -4.4354979165815109e-05, -6.6532468748722366e-05, -2.2177489582907622e-05, -4.4354979165815035e-05, -4.4354979165815143e-05, -2.2177489582907721e-05, -2.2177489582907711e-05, -2.2177489582907677e-05, -2.2177489582907704e-05, -2.4949675780771197e-05, 0.00015126494253559571, -5.5443723957269903e-06, -2.2177489582907467e-05, -2.2177489582907717e-05, 0.00022056959748217937, -7.207684114445001e-05, -2.2177489582907555e-05, -2.2177489582907602e-05, -2.2177489582907487e-05, -1.1088744791453808e-05, -1.1088744791453804e-05, -2.772186197863446e-06, -2.7721861978634325e-06, -2.7721861978634401e-06, -5.5443723957268971e-06, -4.7127165363679264e-05, 0.00016235368732704758, -3.3266234374361576e-05, -1.6633117187180761e-05, -2.7721861978634537e-06, -1.1088744791453811e-05, -4.4354979165815353e-05, -6.6532468748722285e-05, -2.217748958290748e-05, -1.1088744791453811e-05, -4.4354979165815286e-05, -4.4354979165815319e-05, -1.1088744791453811e-05, -3.3266234374361346e-05, -2.217748958290769e-05, -2.7721861978634359e-06, -5.5443723957269793e-06, -1.1088744791453811e-05, -1.1088744791453794e-05, 0.00022056959748217804, -1.3860930989317272e-05, -2.2177489582907568e-05, -4.4354979165815645e-05, -0.00019959740624616969, -1.108874479145375e-05, 0.00024274708706508794, -0.00016633117187180753, -2.2177489582907663e-05, -0.00013306493749744508, -0.00013306493749744522, -0.00013860930989317361, -0.00013306493749744508, -1.1088744791453754e-05, -1.1088744791453757e-05, -2.2177489582907622e-05, -2.217748958290765e-05, -1.1088744791453821e-05, -1.1088744791453821e-05, -2.21774895829075e-05, -2.7721861978634359e-06, -2.2177489582907494e-05, 0.00024274708706508794, -2.772186197863446e-06, -0.00019405303385044436, -1.1088744791453821e-05, -1.1088744791453821e-05, -0.00016910335806967055, -5.5443723957268802e-06, -0.00019959740624616993, -0.00019959740624616993, -2.217748958290767e-05, 0.00024274708706508783, -2.2177489582907643e-05, -0.00019959740624616993, -0.00019959740624616828, -2.2177489582907656e-05, -2.2177489582907677e-05, -5.5443723957269175e-06, -5.5443723957268836e-06, -4.4354979165815475e-05, -2.217748958290767e-05, -2.2177489582907663e-05, -8.3165585935903313e-06, -4.4354979165815475e-05, -4.8211933875886544e-06, -4.8211933875886459e-06, -4.8211933875886442e-06, -4.8211933875886561e-06, -2.4105966937943069e-06, -2.4105966937943069e-06, -4.8211933875886086e-06, -4.8211933875886103e-06, -6.0264917344857936e-07, -6.0264917344857947e-07, -0.00012113248386316483, -0.00012052983468971612, -3.0132458672428802e-06, -6.0264917344857936e-07, -1.8079475203457092e-06, -6.0264917344857951e-06, -4.8211933875885785e-05, -1.2052983468971589e-06, -5.5443723957269619e-05, -6.0264917344857608e-07, -9.6423867751772884e-06, -9.6423867751772918e-06, -4.8211933875886103e-06, -4.8211933875886086e-06, -4.8211933875885785e-05, -4.8211933875885798e-05, -4.8211933875886527e-06, -0.00013680136237282736, -1.205298346897164e-06, -0.00012052983468971579, -9.642386775177285e-06, -4.8211933875886459e-06, -4.8211933875886544e-06, -6.0264917344857523e-07, -6.026491734485801e-07, -4.8211933875886391e-06, -4.8211933875886357e-06, -1.205298346897164e-06, -1.2052983468971642e-06, -6.0264917344857587e-07, 0.00024491662408950254, -4.821193387588629e-06, -3.0132458672428844e-06, -1.807947520345734e-06, -2.410596693794306e-06, -2.4105966937943069e-06, -6.0264917344857936e-07, -9.0397376017288536e-06, -4.8211933875886239e-06, -4.821193387588623e-06, -5.4238425610372307e-06, -4.821193387588612e-06, -9.0397376017287977e-06, -1.2052983468971589e-06, -6.0264917344858137e-07, -4.8211933875886112e-06, -4.8211933875886103e-06, -6.0264917344858021e-07, -6.0264917344857852e-07, -4.8211933875886222e-06, -4.8211933875886247e-06, -1.2052983468971678e-06, -6.0264917344857777e-07, -4.821193387588618e-06, -9.6423867751772732e-06, -6.0264917344857866e-06, -4.8211933875886349e-06, -9.642386775177263e-06, -6.0264917344858032e-07, -4.8211933875886205e-06, -1.024503594862584e-05, -4.8211933875886324e-06, -4.8211933875886256e-06, -9.642386775177285e-06, -1.9284773550354679e-05, -1.506622933621451e-05, -4.8211933875886053e-06, -9.6423867751772833e-06, -9.6423867751772867e-06, -2.4105966937943285e-06, -4.8211933875886239e-06, -6.026491734485779e-06, -6.6291409079343536e-06, -2.4105966937943285e-06, -9.6423867751773477e-06, -4.8211933875886298e-06, -4.8211933875886315e-06, -4.8211933875886307e-06, -1.2052983468971678e-06, -4.8211933875886493e-06, -4.8211933875886053e-06, -6.0264917344858137e-07, -4.8211933875886061e-06, -1.2052983468971602e-06, -4.8211933875886493e-06, -4.8211933875886366e-06, -4.8211933875886341e-06, -6.0264917344858032e-07, -9.6423867751772918e-06, -9.6423867751772884e-06, -6.0264917344857926e-07, -4.8211933875886307e-06, -4.8211933875886315e-06, -6.0264917344857915e-07, -4.8211933875886544e-06, -4.8211933875886561e-06, -4.8211933875886273e-06, -4.8211933875886561e-06, -1.4463580162765821e-05, -4.821193387588651e-06, -4.8211933875886197e-06, -4.8211933875886197e-06, -6.0264917344857799e-07, -4.8211933875886171e-06, -4.8211933875886188e-06, -9.6423867751772613e-06, -2.4105966937943069e-06, -1.0847685122074421e-05, -2.410596693794306e-06, -6.0264917344858159e-07, -1.2052983468971577e-06, -7.834439254831496e-06, -4.8211933875886341e-06, -9.6423867751772986e-06, -5.0622530569680649e-05, -4.8211933875886222e-06, -5.3033127263474734e-05, -4.8211933875886239e-06, -4.8211933875886273e-06, -9.6423867751772867e-06, -4.8211933875886266e-05, -9.6423867751772833e-06, -4.8814583049334904e-05, -6.0264917344857534e-07, -9.64238677517728e-06, -9.6423867751772901e-06, -2.4105966937943255e-06, -5.0622530569680649e-05, -4.8211933875885785e-05, -4.8211933875885995e-05, -4.821193387588632e-05, -6.026491734485801e-07, -2.4105966937943018e-06, -6.0264917344857756e-07, -6.0264917344858095e-07, -6.026491734485819e-07, -4.8211933875886374e-06, -4.8211933875886374e-06, -4.8211933875886357e-06, -4.8211933875886349e-06, -6.0264917344857756e-07, -6.0264917344857777e-07, 0.00024491662408950254, -4.8211933875886451e-06, -6.0264917344858205e-06, -1.2052983468971572e-05, -9.6423867751773206e-06, -9.6423867751772545e-06, -4.8211933875886459e-06, -1.4463580162765848e-05, -1.8079475203457412e-06, -5.3033127263475052e-05, -9.6423867751772579e-06, -4.3390740488297398e-05, -6.0264917344857989e-07, -6.0264917344857862e-07, -1.5066229336214511e-05, -9.6423867751772613e-06, -4.8211933875886239e-06, -4.218544214140073e-06, -2.4105966937943005e-06, -1.2052983468971589e-06, -4.3390740488297398e-05, -1.2052983468971589e-06, -2.4105966937943069e-06, -2.4105966937943069e-06, -4.3390740488297398e-05, -4.8211933875886154e-06, -6.0264917344857841e-07, -4.8211933875886247e-06, -6.0264917344857714e-07, -4.8211933875886273e-06, -6.0264917344858137e-06, 0.00024371132574260541, -4.8211933875886256e-06, -9.0397376017286605e-06, -6.0264917344857587e-07, -4.8211933875886154e-06, -1.205298346897164e-06, -1.2052983468971642e-06, -1.2052983468971623e-06, -6.0264917344857926e-07, -3.6158950406914637e-06, -1.8079475203457386e-06, -4.8211933875886408e-06, -4.8211933875886374e-06, -9.6423867751772749e-06, -1.5668878509663036e-05, -1.386093098931723e-05, -6.0264917344857587e-07, -9.642386775177302e-06, -4.8211933875886442e-06, -3.6158950406914688e-06, -1.2052983468971543e-06, -6.0264917344857777e-07, -6.0264917344858095e-07, -4.821193387588632e-05, -4.8211933875885995e-05, -9.7629166098670852e-05, -4.8211933875885995e-05, -4.8211933875886266e-05, -2.4105966937943285e-06, -1.2052983468971568e-06, -4.8211933875886374e-06, -5.4238425610372307e-06, -2.4105966937943285e-06, -6.6291409079343705e-06, -6.0264917344857947e-07, -6.0264917344857608e-07, -9.6423867751772562e-06, -4.8211933875886137e-06, -4.8211933875886205e-06, -6.0264917344857883e-07, -6.0264917344857936e-07, -2.4105966937943187e-06, -2.4105966937943187e-06, -9.642386775177302e-06, -4.8211933875886425e-06, -6.0264917344857693e-07, -9.7629166098669849e-05, -4.8211933875886391e-06, -4.8211933875886391e-06, -6.0264917344857926e-07, -2.4105966937943187e-06, -2.4105966937943187e-06, -1.2052983468971513e-06, -1.2052983468971513e-06, -1.8079475203457238e-06, -6.0264917344857947e-07, -1.2052983468971513e-06, -1.2052983468971513e-06, -6.0264917344857777e-07, -6.0264917344858021e-07, -2.4105966937943153e-06, -7.2317900813829223e-06, -4.8211933875886154e-06, -6.0264917344857735e-07, -6.0264917344857608e-07, -1.084768512207439e-05, 0.00024491662408950259, -2.4105966937943382e-06, -1.2052983468971627e-06, -9.6423867751772274e-06, -9.6423867751772241e-06, -3.013245867242895e-06, -2.4105966937943136e-06, -1.205298346897167e-06, -3.6158950406914726e-06, -5.1225179743129233e-05, -6.0264917344857841e-07, -2.4105966937943141e-06, -2.4105966937943132e-06, -9.6423867751772207e-06, -9.6423867751772308e-06, -2.4105966937943158e-06, -2.4105966937943102e-06, -2.4105966937943102e-06, -6.0264917344857735e-07, 0.0002177974112843163, 0.0024491662408950266, -6.0264917344858042e-07, -4.8211933875886391e-06, -4.8211933875886527e-06, -4.8211933875886391e-06, -9.6423867751772308e-06, -4.8211933875885985e-06, -9.6423867751772207e-06, -4.8211933875886527e-06, -4.8211933875886527e-06, -0.00018501329624871259, -4.8211933875886459e-06, -0.00012052983468971574, -4.8211933875886171e-06, -1.2052983468971591e-06, -3.6158950406914635e-05, -7.2317900813829291e-06, -3.0132458672428887e-06, -3.6158950406914893e-05, -6.0264917344857629e-07, -4.8211933875886307e-06, -4.8211933875886315e-06, -9.7629166098669849e-05, -4.821193387588612e-06, -4.8211933875886129e-06, 0.00010751261254322743, -1.8079475203457549e-06, -0.00012052983468971574, -4.8211933875886315e-06, -4.8211933875886307e-06, -6.0264917344857746e-07, -4.8211933875886324e-06, -4.8211933875886298e-06, -6.0264917344857714e-07, -9.6423867751772241e-06, -9.6423867751772274e-06, -1.2052983468971623e-06, -2.4105966937943187e-06, -2.4105966937943187e-06, -4.8211933875886442e-06, -4.8211933875886442e-06, -9.7629166098670852e-05, -4.8211933875886374e-06, -4.8211933875886408e-06, -1.6271527683111556e-05, -5.7854320651063161e-05, -4.8211933875886298e-06, -4.2788091314849045e-05, -7.2317900813829579e-06, -7.2317900813829579e-06, -4.8211933875886468e-06, -4.8211933875886561e-06, -6.0264917344858231e-06, -4.8211933875886544e-06, -6.0264917344857976e-06, -1.2655632642420172e-05, -4.8211933875886188e-06, -3.0132458672428582e-06, -1.386093098931742e-05, -4.8211933875886112e-06, -7.231790081382924e-06, -1.807947520345742e-06, -3.0132458672428895e-06, -1.205298346897163e-06, -6.026491734485801e-07, -6.0264917344857841e-07, -4.8211933875886544e-06, -7.2317900813829528e-06, -3.6158950406914679e-06, -2.4105966937943086e-06, -4.8211933875886459e-06, -4.8211933875886527e-06, -4.8211933875886527e-06, -9.6423867751772105e-06, -4.8211933875886103e-06, -2.4105966937943132e-06, -9.6423867751772054e-06, -4.8211933875886086e-06, -2.4105966937943141e-06, -4.8211933875886527e-06, -6.0264917344857629e-07, -4.8211933875886103e-06, -4.8211933875886112e-06, -9.6423867751772884e-06, -1.4463580162765983e-05, -4.8211933875886264e-06, -9.642386775177285e-06, -9.6423867751772935e-06, -4.8211933875886103e-06, -4.8211933875886086e-06, -4.8211933875886112e-06, -4.8211933875886137e-06, -5.4238425610371705e-06, -2.0490071897251674e-05, -1.2052983468971704e-06, -4.821193387588651e-06, -4.8211933875886103e-06, -5.4238425610371968e-06, -1.5668878509663023e-05, -4.8211933875886459e-06, -4.8211933875886247e-06, -4.8211933875886544e-06, -2.4105966937943136e-06, -2.4105966937943136e-06, -6.0264917344857989e-07, -6.026491734485819e-07, -6.0264917344858032e-07, -1.2052983468971585e-06, -1.0245035948625837e-05, -1.8079475203457318e-05, -7.2317900813829104e-06, -3.6158950406914637e-06, -6.026491734485782e-07, -2.4105966937943119e-06, -9.6423867751772579e-06, -1.4463580162765956e-05, -4.8211933875886518e-06, -2.4105966937943124e-06, -9.6423867751772512e-06, -9.6423867751772545e-06, -2.4105966937943124e-06, 0.00097484530297042252, -4.821193387588612e-06, -6.0264917344858127e-07, -1.2052983468971691e-06, -2.4105966937943119e-06, -2.4105966937943158e-06, -5.4238425610372002e-06, -3.0132458672428954e-06, -4.8211933875886391e-06, -9.6423867751772732e-06, -4.3390740488297534e-05, -2.4105966937943255e-06, -6.0264917344857756e-07, -3.6158950406914635e-05, -4.8211933875886197e-06, -2.8927160325531852e-05, -2.8927160325531842e-05, -3.0132458672429016e-05, -2.8927160325531852e-05, -2.4105966937943255e-06, -2.4105966937943255e-06, -4.821193387588623e-06, -4.8211933875886256e-06, -2.4105966937943111e-06, -2.4105966937943111e-06, -4.8211933875886493e-06, -6.0264917344858106e-07, -4.8211933875886493e-06, -6.0264917344857799e-07, -6.0264917344857915e-07, -4.2185442141400427e-05, -2.4105966937943111e-06, -2.4105966937943111e-06, -3.6761599580363151e-05, -1.2052983468971606e-06, -4.3390740488297398e-05, -4.3390740488297398e-05, -4.8211933875886205e-06, -6.0264917344857703e-07, -4.821193387588618e-06, -4.3390740488297398e-05, -4.3390740488297839e-05, -4.8211933875886205e-06, -4.8211933875886222e-06, -1.2052983468971541e-06, -1.20529834689716e-06, -9.6423867751772139e-06, -4.8211933875886222e-06, -4.8211933875886205e-06, -1.8079475203457344e-06, -9.6423867751772139e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -1.2113248386316524e-05, -1.2052983468971561e-05, -3.0132458672429016e-07, -6.0264917344857653e-08, -1.8079475203457554e-07, -6.0264917344858413e-07, -4.8211933875886866e-06, -1.2052983468971531e-07, -5.5443723957269048e-06, -6.0264917344857666e-08, -9.6423867751772224e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886866e-06, -4.8211933875886866e-06, -4.8211933875886112e-07, -1.36801362372826e-05, -1.2052983468971525e-07, -1.2052983468971719e-05, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971525e-07, -1.2052983468971525e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.8211933875886112e-07, -3.0132458672429016e-07, -1.8079475203457567e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857653e-08, -9.0397376017288074e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -5.4238425610371394e-07, -4.8211933875886133e-07, -9.0397376017287778e-07, -1.2052983468971528e-07, -6.026491734485764e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -9.6423867751772245e-07, -6.0264917344858286e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -1.0245035948625728e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -1.928477355035444e-06, -1.5066229336214492e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -6.0264917344858307e-07, -6.6291409079343367e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857627e-08, -4.8211933875886122e-07, -1.2052983468971533e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -9.6423867751772224e-07, -9.6423867751772224e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886112e-07, -1.4463580162766045e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -1.0847685122074253e-06, -2.4105966937943066e-07, -6.0264917344857653e-08, -1.2052983468971533e-07, -7.8344392548315763e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -5.0622530569680822e-06, -4.8211933875886122e-07, -5.3033127263474524e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772224e-07, -4.8211933875886569e-06, -9.6423867751772245e-07, -4.8814583049335262e-06, -6.0264917344857653e-08, -9.6423867751772245e-07, -9.6423867751772224e-07, -2.4105966937943056e-07, -5.0622530569680822e-06, -4.8211933875886866e-06, -4.8211933875886527e-06, -4.8211933875886654e-06, -6.0264917344857666e-08, -2.4105966937943051e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -6.0264917344857627e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.8211933875886133e-07, -6.0264917344858032e-07, -1.205298346897167e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -1.4463580162766056e-06, -1.8079475203457835e-07, -5.3033127263474939e-06, -9.6423867751772245e-07, -4.3390740488297183e-06, -6.0264917344857666e-08, -6.0264917344857666e-08, -1.5066229336214543e-06, -9.6423867751772266e-07, -4.8211933875886122e-07, -4.2185442141401205e-07, -2.4105966937943056e-07, -1.2052983468971528e-07, -4.3390740488297183e-06, -1.2052983468971528e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.3390740488297166e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -6.0264917344858032e-07, -1.8079475203457567e-07, -4.8211933875886133e-07, -9.0397376017287503e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -1.2052983468971525e-07, -1.2052983468971525e-07, -1.2052983468971528e-07, -6.0264917344857666e-08, -3.615895040691533e-07, -1.8079475203457792e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.566887850966311e-06, -1.3860930989317264e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.6158950406915415e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.8211933875886654e-06, -4.8211933875886527e-06, -9.7629166098670811e-06, -4.8211933875886527e-06, -4.8211933875886569e-06, -2.4105966937943061e-07, -1.2052983468971531e-07, -4.8211933875886112e-07, -5.4238425610371055e-07, -2.4105966937943061e-07, -6.6291409079343441e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -9.6423867751772266e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -9.7629166098670591e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.8079475203457567e-07, -6.026491734485764e-08, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -2.4105966937943061e-07, -7.2317900813830269e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -1.0847685122074279e-06, -6.0264917344857653e-08, -2.4105966937943051e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.0132458672429153e-07, -2.4105966937943061e-07, -1.2052983468971528e-07, -3.6158950406915124e-07, -5.1225179743129167e-06, -6.0264917344857666e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943066e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.0264917344857666e-08, -2.7721861978634401e-06, -6.0264917344858042e-07, 0.00024545900834560644, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.8211933875886101e-07, -9.6423867751772245e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -1.8501329624871639e-05, -4.8211933875886122e-07, -1.2052983468971638e-05, -4.8211933875886133e-07, -1.2052983468971528e-07, -3.6158950406914768e-06, -7.2317900813829676e-07, -3.0132458672429111e-07, -3.6158950406915179e-06, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.7629166098670591e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.3800666071972346e-05, -1.8079475203457562e-07, -1.2052983468971648e-05, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971528e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.7629166098670811e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.6271527683111923e-06, -5.7854320651064232e-06, -4.8211933875886122e-07, -4.2788091314848381e-06, -7.2317900813830227e-07, -7.2317900813830227e-07, -4.8211933875886133e-07, -4.8211933875886112e-07, -6.0264917344858053e-07, -4.8211933875886112e-07, -6.0264917344858392e-07, -1.2655632642420197e-06, -4.8211933875886133e-07, -3.0132458672429016e-07, 0.00024413318016401947, -4.8211933875886122e-07, -7.2317900813829591e-07, -1.8079475203457109e-07, -3.0132458672429111e-07, -1.2052983468971525e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.8211933875886112e-07, -7.2317900813830269e-07, -3.6158950406915394e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886101e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.4105966937943061e-07, -4.8211933875886101e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772224e-07, -1.4463580162766054e-06, -4.8211933875886133e-07, -9.6423867751772224e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -5.4238425610371436e-07, -2.0490071897251575e-06, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -5.4238425610373078e-07, -1.5668878509663123e-06, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886112e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.0264917344857653e-08, -6.0264917344857627e-08, -6.0264917344857666e-08, -1.2052983468971533e-07, -1.0245035948625667e-06, -1.8079475203457388e-06, -7.231790081382993e-07, -3.615895040691533e-07, -6.0264917344857666e-08, -2.4105966937943061e-07, -9.6423867751772245e-07, -1.4463580162766054e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -7.2317900813830248e-07, -4.8211933875886122e-07, -6.026491734485764e-08, -1.2052983468971531e-07, -2.4105966937943061e-07, -2.4105966937943066e-07, -5.4238425610371331e-07, -3.0132458672429196e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.3390740488297132e-06, -2.4105966937943056e-07, -6.0264917344857666e-08, -3.6158950406914768e-06, -4.8211933875886122e-07, -2.8927160325532535e-06, -2.8927160325532099e-06, -3.0132458672428971e-06, -2.8927160325532535e-06, -2.4105966937943056e-07, -2.4105966937943056e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -6.026491734485764e-08, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.2185442141400256e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -3.6761599580363422e-06, -1.2052983468971531e-07, -4.3390740488297166e-06, -4.3390740488297183e-06, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.3390740488297183e-06, -4.3390740488297098e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.8079475203457535e-07, -9.6423867751772266e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6905987090532136e-05, -9.6423867751772396e-05, -2.4105966937943196e-06, -4.8211933875886122e-07, -1.446358016276603e-06, -4.8211933875886696e-06, -3.8569547100709472e-05, -9.6423867751772245e-07, -4.4354979165815272e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100709479e-05, -3.8569547100709465e-05, -3.8569547100708889e-06, -0.00010944108989826094, -9.6423867751772202e-07, -9.6423867751773684e-05, -7.7139094201417779e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708873e-06, -2.4105966937943196e-06, -1.4463580162766041e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -7.2317900813830358e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.339074048829698e-06, -3.8569547100708898e-06, -7.2317900813830155e-06, -9.6423867751772224e-07, -4.8211933875886112e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886603e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -8.1960287589005793e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.205298346897158e-05, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.928477355035444e-06, -3.8569547100708898e-06, -4.821193387588662e-06, -5.3033127263474507e-06, -1.928477355035444e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -3.8569547100708898e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708889e-06, -1.1570864130212823e-05, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -8.6781480976594129e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -6.267551403865261e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -4.0498024455744685e-05, -3.8569547100708898e-06, -4.2426501810779633e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417779e-06, -3.8569547100709255e-05, -7.7139094201417796e-06, -3.9051666439468223e-05, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.9284773550354445e-06, -4.0498024455744671e-05, -3.8569547100709472e-05, -3.8569547100709221e-05, -3.8569547100709323e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886772e-06, -9.6423867751773308e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -1.1570864130212835e-05, -1.4463580162766253e-06, -4.2426501810779843e-05, -7.7139094201417796e-06, -3.4712592390637855e-05, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.2052983468971622e-05, -7.7139094201417813e-06, -3.8569547100708898e-06, -3.3748353713120299e-06, -1.928477355035444e-06, -9.6423867751772224e-07, -3.4712592390637882e-05, -9.6423867751772224e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.4712592390637916e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886578e-06, -1.4463580162766041e-06, -3.8569547100708898e-06, -7.2317900813829892e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.8927160325532243e-06, -1.4463580162766221e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.2535102807730488e-05, -1.1088744791453823e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -2.8927160325532307e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100709323e-05, -3.8569547100709221e-05, -7.8103332878936811e-05, -3.8569547100709221e-05, -3.8569547100709255e-05, -1.928477355035444e-06, -9.6423867751772245e-07, -3.8569547100708881e-06, -4.3390740488296895e-06, -1.928477355035444e-06, -5.3033127263474787e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.81033328789365e-05, -3.8569547100708898e-06, 0.0019602972313935386, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.4463580162766041e-06, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651064198e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -8.6781480976594332e-06, -4.8211933875886122e-07, -1.9284773550354436e-06, -9.6423867751772224e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.4105966937943318e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -2.8927160325532074e-06, -4.0980143794503334e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886133e-07, -2.2177489582907558e-05, -4.8211933875886391e-06, -4.8211933875886122e-07, 0.0019602972313935386, -3.8569547100708881e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -0.00014801063699897295, -3.8569547100708898e-06, -9.6423867751773006e-05, -3.8569547100708898e-06, -9.6423867751772224e-07, -2.8927160325531774e-05, -5.7854320651064181e-06, -2.4105966937943272e-06, -2.8927160325532096e-05, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.81033328789365e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00011040532857577887, -1.4463580162766033e-06, -9.6423867751773101e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936811e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489212e-05, -4.6283456520851345e-05, -3.8569547100708898e-06, -3.4230473051878752e-05, -5.785432065106413e-06, -5.785432065106413e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886798e-06, -3.8569547100708889e-06, -4.8211933875886713e-06, -1.0124506113936164e-05, -3.8569547100708898e-06, -2.4105966937943374e-06, -1.1088744791453777e-05, -3.8569547100708898e-06, -5.7854320651064181e-06, -1.4463580162766225e-06, -2.4105966937943272e-06, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708889e-06, -5.7854320651064156e-06, -2.8927160325532294e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -3.8569547100708906e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -1.1570864130212829e-05, -3.8569547100708898e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488297183e-06, -1.639205751780126e-05, -9.6423867751772202e-07, -3.8569547100708881e-06, -3.8569547100708906e-06, -4.3390740488297183e-06, -1.2535102807730498e-05, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -8.1960287589005302e-06, -1.44635801627659e-05, -5.7854320651064181e-06, -2.8927160325532243e-06, -4.8211933875886133e-07, -1.9284773550354449e-06, -7.7139094201417796e-06, -1.1570864130212829e-05, -3.8569547100708881e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -5.7854320651064173e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.3390740488297115e-06, -2.4105966937943335e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.4712592390637733e-05, -1.9284773550354445e-06, -4.8211933875886133e-07, -2.8927160325531767e-05, -3.8569547100708898e-06, -2.3141728260426008e-05, -2.3141728260425659e-05, -2.4105966937943157e-05, -2.3141728260426008e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.3748353713120286e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.940927966429069e-05, -9.6423867751772245e-07, -3.4712592390637916e-05, -3.4712592390637882e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.4712592390637855e-05, -3.4712592390637997e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.4463580162766039e-06, -7.7139094201417813e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -9.690598709053074e-05, -9.6423867751771068e-05, -2.4105966937943272e-06, -4.8211933875886122e-07, -1.4463580162765853e-06, -4.8211933875886832e-06, -3.8569547100709587e-05, -9.6423867751772224e-07, -4.4354979165815936e-05, -4.8211933875886112e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100709587e-05, -3.8569547100709581e-05, -3.8569547100708881e-06, -0.00010944108989826219, -9.6423867751772181e-07, -9.6423867751772342e-05, -7.7139094201417796e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772181e-07, -9.6423867751772181e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708856e-06, -2.4105966937943263e-06, -1.4463580162765863e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -7.2317900813829579e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488297751e-06, -3.8569547100708889e-06, -7.2317900813829392e-06, -9.6423867751772245e-07, -4.8211933875886101e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886101e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772181e-07, -4.8211933875886122e-07, -3.8569547100708889e-06, -7.7139094201417779e-06, -4.8211933875886747e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -4.8211933875886101e-07, -3.8569547100708898e-06, -8.1960287589005437e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -1.5427818840283542e-05, -1.2052983468971414e-05, -3.8569547100708898e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -1.9284773550354436e-06, -3.8569547100708889e-06, -4.8211933875886764e-06, -5.3033127263474422e-06, -1.9284773550354436e-06, -7.7139094201417745e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -9.6423867751772202e-07, -3.8569547100708881e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886112e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886101e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -1.157086413021268e-05, -3.8569547100708873e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -8.6781480976595704e-06, -1.9284773550354449e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -6.2675514038652678e-06, -3.8569547100708889e-06, -7.7139094201417762e-06, -4.0498024455744712e-05, -3.8569547100708898e-06, -4.2426501810779578e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -3.856954710070935e-05, -7.7139094201417762e-06, -3.9051666439468236e-05, -4.8211933875886122e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -1.928477355035444e-06, -4.0498024455744712e-05, -3.8569547100709587e-05, -3.8569547100709188e-05, -3.8569547100709445e-05, -4.8211933875886101e-07, -1.9284773550354428e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886091e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708881e-06, -4.8211933875886916e-06, -9.6423867751773596e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -1.1570864130212707e-05, -1.4463580162766075e-06, -4.2426501810779877e-05, -7.7139094201417762e-06, -3.4712592390638417e-05, -4.8211933875886112e-07, -4.8211933875886122e-07, -1.2052983468971534e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.3748353713120037e-06, -1.928477355035444e-06, -9.6423867751772202e-07, -3.4712592390638404e-05, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.4712592390638404e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -4.8211933875886713e-06, -1.4463580162765863e-06, -3.8569547100708889e-06, -7.2317900813829113e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -9.6423867751772181e-07, -9.6423867751772181e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.8927160325531887e-06, -1.4463580162765687e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -7.7139094201417779e-06, -1.2535102807730502e-05, -1.1088744791453989e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -3.8569547100708889e-06, -2.8927160325531947e-06, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100709445e-05, -3.8569547100709188e-05, -7.8103332878936866e-05, -3.8569547100709255e-05, -3.856954710070935e-05, -1.9284773550354436e-06, -9.6423867751772224e-07, -3.8569547100708873e-06, -4.3390740488297666e-06, -1.9284773550354436e-06, -5.3033127263474702e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -7.7139094201417779e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -7.7139094201417762e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -7.8103332878936703e-05, -3.8569547100708881e-06, -3.8569547100708881e-06, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.4463580162766045e-06, -4.8211933875886122e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886112e-07, -4.8211933875886101e-07, -1.9284773550354436e-06, -5.7854320651063487e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -8.6781480976595874e-06, -4.8211933875886122e-07, -1.9284773550354428e-06, -9.6423867751772202e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.410596693794339e-06, -1.9284773550354449e-06, -9.6423867751772202e-07, -2.8927160325531731e-06, -4.0980143794503334e-05, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886122e-07, -2.2177489582907887e-05, -4.8211933875886527e-06, -4.8211933875886101e-07, -3.8569547100708881e-06, 0.001960297231393539, -3.8569547100708881e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00014801063699897051, -3.8569547100708889e-06, -9.6423867751771665e-05, -3.8569547100708889e-06, -9.6423867751772245e-07, -2.8927160325531459e-05, -5.785432065106347e-06, -2.4105966937943344e-06, -2.8927160325531781e-05, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936703e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00011040532857578007, -1.4463580162765855e-06, -9.6423867751771759e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772202e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.8103332878936866e-05, -3.8569547100708881e-06, -3.8569547100708881e-06, -1.3017222146489203e-05, -4.6283456520850789e-05, -3.8569547100708889e-06, -3.4230473051879362e-05, -5.7854320651063419e-06, -5.7854320651063419e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -4.8211933875886942e-06, -3.8569547100708881e-06, -4.8211933875886815e-06, -1.0124506113936169e-05, -3.8569547100708889e-06, -2.4105966937943441e-06, -1.1088744791453928e-05, -3.8569547100708898e-06, -5.785432065106347e-06, -1.4463580162766045e-06, -2.410596693794334e-06, -9.6423867751772181e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -3.8569547100708881e-06, -5.7854320651063453e-06, -2.8927160325531938e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -3.8569547100708889e-06, -1.9284773550354449e-06, -7.7139094201417779e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, 0.001960297231393539, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417762e-06, -1.1570864130212687e-05, -3.8569547100708889e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488297954e-06, -1.6392057517801179e-05, -9.6423867751772202e-07, -3.8569547100708873e-06, -3.8569547100708898e-06, -4.3390740488297954e-06, -1.2535102807730471e-05, -3.8569547100708881e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886112e-07, -4.8211933875886091e-07, -4.8211933875886101e-07, -9.6423867751772245e-07, -8.1960287589005657e-06, -1.4463580162765745e-05, -5.785432065106347e-06, -2.8927160325531887e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -7.7139094201417762e-06, -1.1570864130212702e-05, -3.8569547100708873e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -5.785432065106347e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -4.3390740488297886e-06, -2.4105966937943407e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -3.4712592390638363e-05, -1.928477355035444e-06, -4.8211933875886122e-07, -2.8927160325531455e-05, -3.8569547100708898e-06, -2.3141728260425672e-05, -2.3141728260425408e-05, -2.4105966937942862e-05, -2.3141728260425672e-05, -1.928477355035444e-06, -1.928477355035444e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.8569547100708881e-06, -4.8211933875886101e-07, -3.8569547100708881e-06, -4.8211933875886112e-07, -4.8211933875886101e-07, -3.3748353713120808e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.9409279664290335e-05, -9.6423867751772202e-07, -3.4712592390638404e-05, -3.4712592390638404e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.4712592390638417e-05, -3.4712592390638349e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -9.6423867751772202e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.4463580162765863e-06, -7.7139094201417796e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6905987090532163e-05, -9.6423867751772437e-05, -2.4105966937943196e-06, -4.8211933875886122e-07, -1.4463580162766035e-06, -4.8211933875886688e-06, -3.8569547100709465e-05, -9.6423867751772245e-07, -4.4354979165815252e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100709465e-05, -3.8569547100709465e-05, -3.8569547100708889e-06, -0.00010944108989826088, -9.6423867751772202e-07, -9.6423867751773725e-05, -7.7139094201417779e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708873e-06, -2.4105966937943196e-06, -1.4463580162766045e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -7.2317900813830392e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488296963e-06, -3.8569547100708898e-06, -7.2317900813830188e-06, -9.6423867751772224e-07, -4.8211933875886112e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886595e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -8.1960287589005793e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971587e-05, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.928477355035444e-06, -3.8569547100708898e-06, -4.8211933875886612e-06, -5.3033127263474507e-06, -1.928477355035444e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -3.8569547100708898e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708889e-06, -1.1570864130212826e-05, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -8.6781480976594095e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -6.2675514038652593e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -4.0498024455744685e-05, -3.8569547100708898e-06, -4.2426501810779633e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417779e-06, -3.8569547100709242e-05, -7.7139094201417796e-06, -3.9051666439468209e-05, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.9284773550354445e-06, -4.0498024455744671e-05, -3.8569547100709465e-05, -3.8569547100709215e-05, -3.8569547100709316e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886764e-06, -9.6423867751773291e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -1.1570864130212838e-05, -1.4463580162766257e-06, -4.2426501810779843e-05, -7.7139094201417796e-06, -3.4712592390637841e-05, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.2052983468971627e-05, -7.7139094201417813e-06, -3.8569547100708898e-06, -3.3748353713120287e-06, -1.928477355035444e-06, -9.6423867751772224e-07, -3.4712592390637868e-05, -9.6423867751772224e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.4712592390637895e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886569e-06, -1.4463580162766045e-06, -3.8569547100708898e-06, -7.2317900813829909e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.8927160325532252e-06, -1.4463580162766225e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.2535102807730486e-05, -1.1088744791453818e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -2.8927160325532315e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100709316e-05, -3.8569547100709215e-05, -7.8103332878936811e-05, -3.8569547100709215e-05, -3.8569547100709242e-05, -1.928477355035444e-06, -9.6423867751772245e-07, -3.8569547100708881e-06, -4.3390740488296878e-06, -1.928477355035444e-06, -5.3033127263474787e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.8103332878936486e-05, 0.0019602972313935386, -3.8569547100708898e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.4463580162766045e-06, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651064215e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -8.6781480976594298e-06, -4.8211933875886122e-07, -1.9284773550354436e-06, -9.6423867751772224e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.4105966937943314e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -2.8927160325532082e-06, -4.0980143794503334e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886133e-07, -2.2177489582907548e-05, -4.8211933875886391e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708881e-06, 0.0019602972313935386, -7.7139094201417796e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -0.00014801063699897303, -3.8569547100708898e-06, -9.6423867751773047e-05, -3.8569547100708898e-06, -9.6423867751772224e-07, -2.8927160325531781e-05, -5.7854320651064198e-06, -2.4105966937943272e-06, -2.8927160325532102e-05, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936486e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00011040532857577882, -1.4463580162766037e-06, -9.6423867751773142e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936811e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489212e-05, -4.6283456520851359e-05, -3.8569547100708898e-06, -3.4230473051878738e-05, -5.7854320651064147e-06, -5.7854320651064147e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886798e-06, -3.8569547100708889e-06, -4.8211933875886713e-06, -1.0124506113936164e-05, -3.8569547100708898e-06, -2.4105966937943365e-06, -1.1088744791453771e-05, -3.8569547100708898e-06, -5.7854320651064198e-06, -1.446358016276623e-06, -2.4105966937943263e-06, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708889e-06, -5.7854320651064173e-06, -2.8927160325532302e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -3.8569547100708906e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -1.1570864130212833e-05, -3.8569547100708898e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488297166e-06, -1.639205751780126e-05, -9.6423867751772202e-07, -3.8569547100708881e-06, -3.8569547100708906e-06, -4.3390740488297166e-06, -1.2535102807730497e-05, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -8.1960287589005302e-06, -1.4463580162765907e-05, -5.7854320651064198e-06, -2.8927160325532252e-06, -4.8211933875886133e-07, -1.9284773550354449e-06, -7.7139094201417796e-06, -1.1570864130212833e-05, -3.8569547100708881e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -5.785432065106419e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.3390740488297098e-06, -2.4105966937943331e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.4712592390637719e-05, -1.9284773550354445e-06, -4.8211933875886133e-07, -2.8927160325531774e-05, -3.8569547100708898e-06, -2.3141728260426015e-05, -2.3141728260425666e-05, -2.4105966937943167e-05, -2.3141728260426015e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.3748353713120259e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.9409279664290697e-05, -9.6423867751772245e-07, -3.4712592390637895e-05, -3.4712592390637868e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.4712592390637841e-05, -3.4712592390637984e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.4463580162766043e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -0.00019381197418106292, -0.00019284773550354336, -4.8211933875886154e-06, -9.6423867751772266e-07, -2.892716032553176e-06, -9.6423867751772901e-06, -7.7139094201418551e-05, -1.9284773550354453e-06, -8.8709958331631344e-05, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201418551e-05, -7.7139094201418551e-05, -7.7139094201417796e-06, -0.00021888217979652331, -1.9284773550354445e-06, -0.00019284773550354593, -1.5427818840283559e-05, -7.7139094201417813e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -7.7139094201417762e-06, -4.8211933875886154e-06, -2.8927160325531777e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -1.4463580162765982e-05, -7.713909420141783e-06, -7.713909420141783e-06, -8.6781480976594993e-06, -7.7139094201417813e-06, -1.4463580162765934e-05, -1.9284773550354449e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -1.5427818840283563e-05, -9.6423867751772715e-06, -7.7139094201417813e-06, -1.5427818840283563e-05, -9.6423867751772245e-07, -7.713909420141783e-06, -1.6392057517801264e-05, -7.7139094201417813e-06, -7.713909420141783e-06, -1.5427818840283559e-05, -3.0855637680567105e-05, -2.4105966937942981e-05, -7.713909420141783e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708889e-06, -7.7139094201417813e-06, -9.6423867751772749e-06, -1.0606625452694932e-05, -3.8569547100708889e-06, -1.5427818840283556e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -7.713909420141783e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -7.7139094201417796e-06, -2.3141728260425405e-05, -7.7139094201417779e-06, -7.7139094201417813e-06, -7.713909420141783e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.713909420141783e-06, -1.5427818840283566e-05, -3.8569547100708915e-06, -1.7356296195319032e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.2535102807730498e-05, -7.7139094201417813e-06, -1.5427818840283559e-05, -8.0996048911489288e-05, -7.713909420141783e-06, -8.4853003621559509e-05, -7.713909420141783e-06, -7.713909420141783e-06, -1.5427818840283559e-05, -7.7139094201418131e-05, -1.5427818840283559e-05, -7.810333287893612e-05, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -8.0996048911489261e-05, -7.7139094201418551e-05, -7.7139094201418063e-05, -7.7139094201418267e-05, -9.6423867751772245e-07, -3.8569547100708881e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.7139094201417796e-06, -9.6423867751773054e-06, -1.9284773550354563e-05, -1.5427818840283559e-05, -1.5427818840283566e-05, -7.7139094201417796e-06, -2.3141728260425449e-05, -2.8927160325532201e-06, -8.4853003621560173e-05, -1.5427818840283566e-05, -6.9425184781276428e-05, -9.6423867751772266e-07, -9.6423867751772287e-07, -2.4105966937943058e-05, -1.5427818840283566e-05, -7.713909420141783e-06, -6.749670742624098e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -6.9425184781276401e-05, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -6.9425184781276401e-05, -7.713909420141783e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -9.6423867751772664e-06, -2.8927160325531781e-06, -7.7139094201417813e-06, -1.4463580162765887e-05, -9.6423867751772287e-07, -7.713909420141783e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -5.7854320651063876e-06, -2.8927160325532137e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283563e-05, -2.5070205615460929e-05, -2.2177489582907846e-05, -9.6423867751772287e-07, -1.5427818840283563e-05, -7.7139094201417813e-06, -5.7854320651064003e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.7139094201418267e-05, -7.7139094201418063e-05, -0.00015620666575787273, -7.7139094201418063e-05, -7.7139094201418131e-05, -3.8569547100708889e-06, -1.9284773550354453e-06, -7.7139094201417779e-06, -8.6781480976594823e-06, -3.8569547100708889e-06, -1.0606625452694988e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.5427818840283563e-05, -7.7139094201417813e-06, -7.713909420141783e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.5427818840283559e-05, -7.7139094201417813e-06, -9.6423867751772287e-07, -0.00015620666575787238, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.8927160325531777e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -3.8569547100708889e-06, -1.1570864130212719e-05, -7.7139094201417813e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -1.7356296195319073e-05, -9.6423867751772287e-07, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.5427818840283566e-05, -1.5427818840283566e-05, -4.8211933875886391e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -5.7854320651063554e-06, -8.1960287589006667e-05, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.5427818840283566e-05, 0.0039128805533669361, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772287e-07, -4.4354979165815502e-05, -9.6423867751772308e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, 0.0039128805533669361, -7.7139094201417796e-06, -1.5427818840283566e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00029602127399794281, -7.7139094201417813e-06, -0.00019284773550354455, -7.7139094201417813e-06, -1.9284773550354449e-06, -5.7854320651063182e-05, -1.1570864130212716e-05, -4.8211933875886307e-06, -5.7854320651063819e-05, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -0.00015620666575787238, -7.713909420141783e-06, -7.713909420141783e-06, -0.00022081065715155927, -2.8927160325531764e-06, -0.00019284773550354474, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -1.5427818840283566e-05, -1.5427818840283566e-05, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -0.00015620666575787273, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.6034444292978464e-05, -9.2566913041701728e-05, -7.7139094201417813e-06, -6.8460946103758208e-05, -1.1570864130212706e-05, -1.1570864130212706e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751773121e-06, -7.7139094201417796e-06, -9.6423867751772579e-06, -2.0249012227872288e-05, -7.7139094201417813e-06, -4.8211933875886493e-06, -2.2177489582907748e-05, -7.713909420141783e-06, -1.1570864130212716e-05, -2.8927160325532146e-06, -4.821193387588629e-06, -1.9284773550354445e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -7.7139094201417796e-06, -1.1570864130212711e-05, -5.7854320651063978e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -7.7139094201417813e-06, -3.8569547100708915e-06, -1.5427818840283556e-05, -7.713909420141783e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.5427818840283559e-05, -2.3141728260425418e-05, -7.7139094201417813e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.713909420141783e-06, -7.713909420141783e-06, -8.6781480976595399e-06, -3.2784115035602737e-05, -1.9284773550354445e-06, -7.7139094201417779e-06, -7.713909420141783e-06, -8.6781480976595399e-06, -2.5070205615460949e-05, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.6392057517801172e-05, -2.8927160325531611e-05, -1.1570864130212716e-05, -5.7854320651063876e-06, -9.6423867751772287e-07, -3.8569547100708915e-06, -1.5427818840283566e-05, -2.3141728260425435e-05, -7.7139094201417779e-06, -3.8569547100708915e-06, -1.5427818840283566e-05, -1.5427818840283566e-05, -3.8569547100708915e-06, -1.1570864130212714e-05, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -8.6781480976595264e-06, -4.8211933875886425e-06, -7.7139094201417813e-06, -1.5427818840283563e-05, -6.9425184781276319e-05, -3.8569547100708898e-06, -9.6423867751772287e-07, -5.7854320651063168e-05, -7.713909420141783e-06, -4.6283456520850965e-05, -4.6283456520850877e-05, -4.821193387588609e-05, -4.6283456520850965e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772287e-07, -6.7496707426241114e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -5.8818559328581069e-05, -1.9284773550354449e-06, -6.9425184781276401e-05, -6.9425184781276401e-05, -7.713909420141783e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -6.9425184781276428e-05, -6.9425184781276292e-05, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.5427818840283566e-05, -7.713909420141783e-06, -7.713909420141783e-06, -2.8927160325531777e-06, -1.5427818840283566e-05, -3.8569547100708881e-06, -3.8569547100708881e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -9.6905987090531621e-05, -9.6423867751771922e-05, -2.4105966937942997e-06, -4.8211933875886122e-07, -1.446358016276585e-06, -4.821193387588629e-06, -3.8569547100709147e-05, -9.6423867751772224e-07, -4.4354979165815489e-05, -4.8211933875886112e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100709147e-05, -3.8569547100709147e-05, -3.8569547100708881e-06, -0.00010944108989826164, -9.6423867751772181e-07, -9.642386775177321e-05, -7.7139094201417796e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772181e-07, -9.6423867751772181e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708856e-06, -2.4105966937943119e-06, -1.4463580162765863e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -7.2317900813830121e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488297615e-06, -3.8569547100708889e-06, -7.2317900813829917e-06, -9.6423867751772245e-07, -4.8211933875886101e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886101e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772139e-07, -4.8211933875886122e-07, -3.8569547100708889e-06, -7.7139094201417779e-06, -4.8211933875886197e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -4.8211933875886101e-07, -3.8569547100708898e-06, -8.1960287589005861e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -1.5427818840283542e-05, -1.2052983468971521e-05, -3.8569547100708898e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -1.9284773550354436e-06, -3.8569547100708889e-06, -4.8211933875886213e-06, -5.3033127263474964e-06, -1.9284773550354436e-06, -7.7139094201417745e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -9.6423867751772202e-07, -3.8569547100708881e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886112e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886101e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -1.157086413021268e-05, -3.8569547100708873e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -8.6781480976595399e-06, -1.9284773550354449e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -6.267551403865267e-06, -3.8569547100708889e-06, -7.7139094201417762e-06, -4.0498024455744705e-05, -3.8569547100708898e-06, -4.2426501810780005e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -3.8569547100708937e-05, -7.7139094201417762e-06, -3.9051666439467898e-05, -4.8211933875886122e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -1.928477355035444e-06, -4.0498024455744705e-05, -3.8569547100709147e-05, -3.8569547100708903e-05, -3.8569547100709005e-05, -4.8211933875886101e-07, -1.9284773550354428e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886091e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708881e-06, -4.8211933875886366e-06, -9.6423867751772495e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -1.1570864130212697e-05, -1.4463580162766073e-06, -4.242650181078031e-05, -7.7139094201417762e-06, -3.4712592390638295e-05, -4.8211933875886112e-07, -4.8211933875886122e-07, -1.2052983468971502e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.3748353713120168e-06, -1.928477355035444e-06, -9.6423867751772202e-07, -3.4712592390638295e-05, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.4712592390638282e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -4.8211933875886171e-06, -1.4463580162765863e-06, -3.8569547100708889e-06, -7.2317900813829646e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -9.6423867751772181e-07, -9.6423867751772181e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.8927160325531883e-06, -1.4463580162766045e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -7.7139094201417779e-06, -1.2535102807730502e-05, -1.1088744791453877e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -3.8569547100708889e-06, -2.8927160325531947e-06, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100709005e-05, -3.8569547100708903e-05, -7.8103332878935985e-05, -3.8569547100708903e-05, -3.8569547100708937e-05, -1.9284773550354436e-06, -9.6423867751772224e-07, -3.8569547100708873e-06, -4.339074048829753e-06, -1.9284773550354436e-06, -5.3033127263475235e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -7.7139094201417779e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -7.7139094201417762e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -7.8103332878935809e-05, -3.8569547100708881e-06, -3.8569547100708881e-06, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.4463580162765867e-06, -4.8211933875886122e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886112e-07, -4.8211933875886101e-07, -1.9284773550354436e-06, -5.7854320651063487e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -8.6781480976595569e-06, -4.8211933875886122e-07, -1.9284773550354428e-06, -9.6423867751772202e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.4105966937943115e-06, -1.9284773550354449e-06, -9.6423867751772202e-07, -2.8927160325531726e-06, -4.0980143794503327e-05, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886122e-07, -2.2177489582907666e-05, -4.8211933875885985e-06, -4.8211933875886101e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, 0.001960297231393539, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00014801063699897078, -3.8569547100708889e-06, -9.6423867751772518e-05, -3.8569547100708889e-06, -9.6423867751772245e-07, -2.8927160325531672e-05, -5.785432065106347e-06, -2.4105966937943073e-06, -2.8927160325531997e-05, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878935809e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00011040532857578007, -1.4463580162765855e-06, -9.6423867751772613e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772202e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.8103332878935985e-05, -3.8569547100708881e-06, -3.8569547100708881e-06, -1.3017222146489203e-05, -4.6283456520850776e-05, -3.8569547100708889e-06, -3.4230473051879036e-05, -5.7854320651063419e-06, -5.7854320651063419e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -4.82119338758864e-06, -3.8569547100708881e-06, -4.8211933875886298e-06, -1.0124506113936171e-05, -3.8569547100708889e-06, -2.4105966937943166e-06, -1.1088744791453891e-05, -3.8569547100708898e-06, -5.785432065106347e-06, -1.4463580162766045e-06, -2.4105966937943064e-06, -9.6423867751772181e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -3.8569547100708881e-06, -5.7854320651063444e-06, -2.8927160325531934e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -3.8569547100708889e-06, -1.9284773550354449e-06, 0.0019564402766834689, -3.8569547100708898e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417762e-06, -1.1570864130212687e-05, -3.8569547100708889e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488297818e-06, -1.6392057517801192e-05, -9.6423867751772202e-07, -3.8569547100708873e-06, -3.8569547100708898e-06, -4.3390740488297818e-06, -1.253510280773047e-05, -3.8569547100708881e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886112e-07, -4.8211933875886091e-07, -4.8211933875886101e-07, -9.6423867751772245e-07, -8.1960287589006149e-06, -1.446358016276585e-05, -5.785432065106347e-06, -2.8927160325531883e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -7.7139094201417762e-06, -1.1570864130212691e-05, -3.8569547100708873e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -5.7854320651063461e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -4.3390740488297751e-06, -2.4105966937943132e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -3.4712592390638241e-05, -1.928477355035444e-06, -4.8211933875886122e-07, -2.8927160325531669e-05, -3.8569547100708898e-06, -2.314172826042572e-05, -2.3141728260425384e-05, -2.4105966937943045e-05, -2.314172826042572e-05, -1.928477355035444e-06, -1.928477355035444e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.8569547100708881e-06, -4.8211933875886101e-07, -3.8569547100708881e-06, -4.8211933875886112e-07, -4.8211933875886101e-07, -3.3748353713120516e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.9409279664290555e-05, -9.6423867751772202e-07, -3.4712592390638282e-05, -3.4712592390638295e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.4712592390638295e-05, -3.4712592390638228e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -9.6423867751772202e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.4463580162765861e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -0.00019381197418106341, -0.00019284773550354382, -4.8211933875886103e-06, -9.6423867751772266e-07, -2.8927160325531811e-06, -9.64238677517728e-06, -7.713909420141847e-05, -1.9284773550354453e-06, -8.8709958331631113e-05, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.713909420141847e-05, -7.713909420141847e-05, -7.7139094201417796e-06, -0.00021888217979652285, -1.9284773550354445e-06, -0.00019284773550354639, -1.5427818840283559e-05, -7.7139094201417813e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -7.7139094201417762e-06, -4.8211933875886103e-06, -2.8927160325531828e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -1.4463580162766007e-05, -7.713909420141783e-06, -7.713909420141783e-06, -8.6781480976594739e-06, -7.7139094201417813e-06, -1.4463580162765934e-05, -1.9284773550354449e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -1.5427818840283563e-05, -9.6423867751772613e-06, -7.7139094201417813e-06, -1.5427818840283563e-05, -9.6423867751772245e-07, -7.713909420141783e-06, -1.6392057517801237e-05, -7.7139094201417813e-06, -7.713909420141783e-06, -1.5427818840283559e-05, -3.0855637680567105e-05, -2.4105966937943038e-05, -7.713909420141783e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708889e-06, -7.7139094201417813e-06, -9.6423867751772647e-06, -1.0606625452694939e-05, -3.8569547100708889e-06, -1.5427818840283556e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -7.713909420141783e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -7.7139094201417796e-06, -2.3141728260425445e-05, -7.7139094201417779e-06, -7.7139094201417813e-06, -7.713909420141783e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.713909420141783e-06, -1.5427818840283566e-05, -3.8569547100708915e-06, -1.7356296195318978e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.2535102807730492e-05, -7.7139094201417813e-06, -1.5427818840283559e-05, -8.0996048911489261e-05, -7.713909420141783e-06, -8.4853003621559564e-05, -7.713909420141783e-06, -7.713909420141783e-06, -1.5427818840283559e-05, -7.713909420141805e-05, -1.5427818840283559e-05, -7.8103332878936066e-05, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -8.0996048911489261e-05, -7.713909420141847e-05, -7.7139094201417982e-05, -7.7139094201418185e-05, -9.6423867751772245e-07, -3.8569547100708881e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.7139094201417796e-06, -9.6423867751772952e-06, -1.9284773550354543e-05, -1.5427818840283559e-05, -1.5427818840283566e-05, -7.7139094201417796e-06, -2.3141728260425327e-05, -2.8927160325532256e-06, -8.4853003621560201e-05, -1.5427818840283566e-05, -6.9425184781276211e-05, -9.6423867751772266e-07, -9.6423867751772287e-07, -2.4105966937943116e-05, -1.5427818840283566e-05, -7.713909420141783e-06, -6.7496707426240828e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -6.9425184781276211e-05, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -6.9425184781276184e-05, -7.713909420141783e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -9.6423867751772562e-06, -2.8927160325531832e-06, -7.7139094201417813e-06, -1.4463580162765914e-05, -9.6423867751772287e-07, -7.713909420141783e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -5.7854320651063978e-06, -2.8927160325532188e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283563e-05, -2.5070205615460915e-05, -2.2177489582907788e-05, -9.6423867751772287e-07, -1.5427818840283563e-05, -7.7139094201417813e-06, -5.7854320651064105e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.7139094201418185e-05, -7.7139094201417982e-05, -0.00015620666575787257, -7.7139094201417982e-05, -7.713909420141805e-05, -3.8569547100708889e-06, -1.9284773550354453e-06, -7.7139094201417779e-06, -8.6781480976594569e-06, -3.8569547100708889e-06, -1.0606625452694995e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.5427818840283563e-05, -7.7139094201417813e-06, -7.713909420141783e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.5427818840283559e-05, -7.7139094201417813e-06, -9.6423867751772287e-07, -0.00015620666575787224, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.8927160325531828e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -3.8569547100708889e-06, -1.157086413021274e-05, -7.7139094201417813e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -1.7356296195319019e-05, -9.6423867751772287e-07, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.5427818840283566e-05, -1.5427818840283566e-05, -4.8211933875886341e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -5.7854320651063656e-06, -8.1960287589006667e-05, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, 0.0039128805533669361, -1.5427818840283566e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772287e-07, -4.4354979165815387e-05, -9.6423867751772207e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283566e-05, -7.7139094201417796e-06, 0.0039128805533669361, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00029602127399794363, -7.7139094201417813e-06, -0.00019284773550354501, -7.7139094201417813e-06, -1.9284773550354449e-06, -5.7854320651063277e-05, -1.1570864130212736e-05, -4.8211933875886256e-06, -5.7854320651063927e-05, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -0.00015620666575787224, -7.713909420141783e-06, -7.713909420141783e-06, -0.00022081065715155883, -2.8927160325531815e-06, -0.0001928477355035452, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -1.5427818840283566e-05, -1.5427818840283566e-05, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -0.00015620666575787257, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.6034444292978471e-05, -9.256691304170189e-05, -7.7139094201417813e-06, -6.8460946103758059e-05, -1.1570864130212726e-05, -1.1570864130212726e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.642386775177302e-06, -7.7139094201417796e-06, -9.6423867751772579e-06, -2.0249012227872288e-05, -7.7139094201417813e-06, -4.8211933875886442e-06, -2.217748958290769e-05, -7.713909420141783e-06, -1.1570864130212736e-05, -2.8927160325532196e-06, -4.8211933875886239e-06, -1.9284773550354445e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -7.7139094201417796e-06, -1.1570864130212731e-05, -5.785432065106408e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -7.7139094201417813e-06, -3.8569547100708915e-06, -1.5427818840283556e-05, -7.713909420141783e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.5427818840283559e-05, -2.3141728260425459e-05, -7.7139094201417813e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.713909420141783e-06, -7.713909420141783e-06, -8.6781480976595162e-06, -3.2784115035602683e-05, -1.9284773550354445e-06, -7.7139094201417779e-06, -7.713909420141783e-06, -8.6781480976595162e-06, -2.5070205615460936e-05, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.6392057517801145e-05, -2.8927160325531665e-05, -1.1570864130212736e-05, -5.7854320651063978e-06, -9.6423867751772287e-07, -3.8569547100708915e-06, -1.5427818840283566e-05, -2.3141728260425313e-05, -7.7139094201417779e-06, -3.8569547100708915e-06, -1.5427818840283566e-05, -1.5427818840283566e-05, -3.8569547100708915e-06, -1.1570864130212735e-05, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -8.6781480976594993e-06, -4.8211933875886374e-06, -7.7139094201417813e-06, -1.5427818840283563e-05, -6.9425184781276103e-05, -3.8569547100708898e-06, -9.6423867751772287e-07, -5.7854320651063277e-05, -7.713909420141783e-06, -4.6283456520851128e-05, -4.6283456520850633e-05, -4.8211933875885846e-05, -4.6283456520851128e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772287e-07, -6.7496707426241033e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -5.8818559328581191e-05, -1.9284773550354449e-06, -6.9425184781276184e-05, -6.9425184781276211e-05, -7.713909420141783e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -6.9425184781276211e-05, -6.9425184781276076e-05, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.5427818840283566e-05, -7.713909420141783e-06, -7.713909420141783e-06, -2.8927160325531828e-06, -1.5427818840283566e-05, -3.8569547100708881e-06, -3.8569547100708881e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -9.690598709053074e-05, -9.6423867751771055e-05, -2.4105966937943272e-06, -4.8211933875886122e-07, -1.446358016276585e-06, -4.8211933875886832e-06, -3.8569547100709587e-05, -9.6423867751772224e-07, -4.4354979165815929e-05, -4.8211933875886112e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100709587e-05, -3.8569547100709581e-05, -3.8569547100708881e-06, -0.00010944108989826216, -9.6423867751772181e-07, -9.6423867751772329e-05, -7.7139094201417796e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772181e-07, -9.6423867751772181e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708856e-06, -2.4105966937943263e-06, -1.4463580162765863e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -7.2317900813829579e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488297751e-06, -3.8569547100708889e-06, -7.2317900813829384e-06, -9.6423867751772245e-07, -4.8211933875886101e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886101e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772181e-07, -4.8211933875886122e-07, -3.8569547100708889e-06, -7.7139094201417779e-06, -4.8211933875886747e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -4.8211933875886101e-07, -3.8569547100708898e-06, -8.1960287589005386e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -1.5427818840283542e-05, -1.2052983468971412e-05, -3.8569547100708898e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -1.9284773550354436e-06, -3.8569547100708889e-06, -4.8211933875886764e-06, -5.3033127263474422e-06, -1.9284773550354436e-06, -7.7139094201417745e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -9.6423867751772202e-07, -3.8569547100708881e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886112e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886101e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -1.157086413021268e-05, -3.8569547100708873e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -8.6781480976595704e-06, -1.9284773550354449e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -6.2675514038652678e-06, -3.8569547100708889e-06, -7.7139094201417762e-06, -4.0498024455744712e-05, -3.8569547100708898e-06, -4.2426501810779578e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -3.856954710070935e-05, -7.7139094201417762e-06, -3.9051666439468243e-05, -4.8211933875886122e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -1.928477355035444e-06, -4.0498024455744705e-05, -3.8569547100709587e-05, -3.8569547100709188e-05, -3.8569547100709445e-05, -4.8211933875886101e-07, -1.9284773550354428e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886091e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708881e-06, -4.8211933875886916e-06, -9.6423867751773596e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -1.1570864130212701e-05, -1.4463580162766073e-06, -4.2426501810779877e-05, -7.7139094201417762e-06, -3.4712592390638417e-05, -4.8211933875886112e-07, -4.8211933875886122e-07, -1.2052983468971533e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.3748353713120037e-06, -1.928477355035444e-06, -9.6423867751772202e-07, -3.4712592390638404e-05, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.4712592390638404e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -4.8211933875886713e-06, -1.4463580162765863e-06, -3.8569547100708889e-06, -7.2317900813829113e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -9.6423867751772181e-07, -9.6423867751772181e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.8927160325531883e-06, -1.4463580162765687e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -7.7139094201417779e-06, -1.2535102807730502e-05, -1.1088744791453987e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -3.8569547100708889e-06, -2.8927160325531947e-06, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100709445e-05, -3.8569547100709188e-05, -7.8103332878936866e-05, -3.8569547100709255e-05, -3.856954710070935e-05, -1.9284773550354436e-06, -9.6423867751772224e-07, -3.8569547100708873e-06, -4.3390740488297666e-06, -1.9284773550354436e-06, -5.3033127263474702e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -7.7139094201417779e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -7.7139094201417762e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -7.8103332878936703e-05, -3.8569547100708881e-06, -3.8569547100708881e-06, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.4463580162766043e-06, -4.8211933875886122e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886112e-07, -4.8211933875886101e-07, -1.9284773550354436e-06, -5.7854320651063487e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -8.6781480976595874e-06, -4.8211933875886122e-07, -1.9284773550354428e-06, -9.6423867751772202e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.410596693794339e-06, -1.9284773550354449e-06, -9.6423867751772202e-07, -2.8927160325531726e-06, -4.0980143794503334e-05, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886122e-07, -2.2177489582907887e-05, -4.8211933875886527e-06, -4.8211933875886101e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, 0.001960297231393539, -3.8569547100708898e-06, -0.00014801063699897051, -3.8569547100708889e-06, -9.6423867751771651e-05, -3.8569547100708889e-06, -9.6423867751772245e-07, -2.8927160325531459e-05, -5.785432065106347e-06, -2.4105966937943344e-06, -2.8927160325531781e-05, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936703e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00011040532857578008, -1.4463580162765855e-06, -9.6423867751771759e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772202e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.8103332878936866e-05, -3.8569547100708881e-06, -3.8569547100708881e-06, -1.3017222146489201e-05, -4.6283456520850789e-05, -3.8569547100708889e-06, -3.4230473051879375e-05, -5.7854320651063419e-06, -5.7854320651063419e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -4.8211933875886942e-06, -3.8569547100708881e-06, -4.8211933875886832e-06, -1.0124506113936169e-05, -3.8569547100708889e-06, -2.4105966937943441e-06, -1.1088744791453926e-05, -3.8569547100708898e-06, -5.785432065106347e-06, -1.4463580162766045e-06, -2.410596693794334e-06, -9.6423867751772181e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -3.8569547100708881e-06, -5.7854320651063444e-06, -2.8927160325531934e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -3.8569547100708898e-06, 0.0019564402766834689, -3.8569547100708889e-06, -1.9284773550354449e-06, -7.7139094201417779e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417762e-06, -1.1570864130212687e-05, -3.8569547100708889e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488297954e-06, -1.6392057517801172e-05, -9.6423867751772202e-07, -3.8569547100708873e-06, -3.8569547100708898e-06, -4.3390740488297954e-06, -1.2535102807730471e-05, -3.8569547100708881e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886112e-07, -4.8211933875886091e-07, -4.8211933875886101e-07, -9.6423867751772245e-07, -8.1960287589005624e-06, -1.4463580162765745e-05, -5.785432065106347e-06, -2.8927160325531883e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -7.7139094201417762e-06, -1.1570864130212694e-05, -3.8569547100708873e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -5.7854320651063461e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -4.3390740488297886e-06, -2.4105966937943407e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -3.4712592390638363e-05, -1.928477355035444e-06, -4.8211933875886122e-07, -2.8927160325531455e-05, -3.8569547100708898e-06, -2.31417282604257e-05, -2.3141728260425391e-05, -2.4105966937942842e-05, -2.31417282604257e-05, -1.928477355035444e-06, -1.928477355035444e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.8569547100708881e-06, -4.8211933875886101e-07, -3.8569547100708881e-06, -4.8211933875886112e-07, -4.8211933875886101e-07, -3.3748353713120821e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.9409279664290335e-05, -9.6423867751772202e-07, -3.4712592390638404e-05, -3.4712592390638404e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.4712592390638417e-05, -3.4712592390638349e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -9.6423867751772202e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.4463580162765861e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -9.690598709053074e-05, -9.6423867751771068e-05, -2.4105966937943272e-06, -4.8211933875886122e-07, -1.446358016276585e-06, -4.8211933875886832e-06, -3.8569547100709587e-05, -9.6423867751772224e-07, -4.4354979165815936e-05, -4.8211933875886112e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100709587e-05, -3.8569547100709581e-05, -3.8569547100708881e-06, -0.00010944108989826217, -9.6423867751772181e-07, -9.6423867751772342e-05, -7.7139094201417796e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772181e-07, -9.6423867751772181e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708856e-06, -2.4105966937943263e-06, -1.4463580162765863e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -7.2317900813829579e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488297767e-06, -3.8569547100708889e-06, -7.2317900813829392e-06, -9.6423867751772245e-07, -4.8211933875886101e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886101e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772181e-07, -4.8211933875886122e-07, -3.8569547100708889e-06, -7.7139094201417779e-06, -4.8211933875886747e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -4.8211933875886101e-07, -3.8569547100708898e-06, -8.196028758900542e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -1.5427818840283542e-05, -1.2052983468971414e-05, -3.8569547100708898e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -1.9284773550354436e-06, -3.8569547100708889e-06, -4.8211933875886764e-06, -5.3033127263474422e-06, -1.9284773550354436e-06, -7.7139094201417745e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -9.6423867751772202e-07, -3.8569547100708881e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886112e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886101e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -1.157086413021268e-05, -3.8569547100708873e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -8.6781480976595704e-06, -1.9284773550354449e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -6.2675514038652678e-06, -3.8569547100708889e-06, -7.7139094201417762e-06, -4.0498024455744712e-05, -3.8569547100708898e-06, -4.2426501810779578e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -3.856954710070935e-05, -7.7139094201417762e-06, -3.9051666439468236e-05, -4.8211933875886122e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -1.928477355035444e-06, -4.0498024455744705e-05, -3.8569547100709587e-05, -3.8569547100709188e-05, -3.8569547100709445e-05, -4.8211933875886101e-07, -1.9284773550354428e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886091e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708881e-06, -4.8211933875886916e-06, -9.6423867751773596e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -1.1570864130212704e-05, -1.4463580162766073e-06, -4.2426501810779877e-05, -7.7139094201417762e-06, -3.4712592390638417e-05, -4.8211933875886112e-07, -4.8211933875886122e-07, -1.2052983468971534e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.3748353713120037e-06, -1.928477355035444e-06, -9.6423867751772202e-07, -3.4712592390638404e-05, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.4712592390638404e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -4.8211933875886713e-06, -1.4463580162765863e-06, -3.8569547100708889e-06, -7.2317900813829104e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -9.6423867751772181e-07, -9.6423867751772181e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.8927160325531883e-06, -1.4463580162765687e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -7.7139094201417779e-06, -1.2535102807730502e-05, -1.1088744791453989e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -3.8569547100708889e-06, -2.8927160325531947e-06, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100709445e-05, -3.8569547100709188e-05, -7.8103332878936866e-05, -3.8569547100709255e-05, -3.856954710070935e-05, -1.9284773550354436e-06, -9.6423867751772224e-07, -3.8569547100708873e-06, -4.3390740488297683e-06, -1.9284773550354436e-06, -5.3033127263474693e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -7.7139094201417779e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -7.7139094201417762e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -7.8103332878936703e-05, -3.8569547100708881e-06, -3.8569547100708881e-06, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.4463580162766043e-06, -4.8211933875886122e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886112e-07, -4.8211933875886101e-07, -1.9284773550354436e-06, -5.7854320651063487e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -8.6781480976595874e-06, -4.8211933875886122e-07, -1.9284773550354428e-06, -9.6423867751772202e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.410596693794339e-06, -1.9284773550354449e-06, -9.6423867751772202e-07, -2.8927160325531726e-06, -4.0980143794503334e-05, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886122e-07, -2.2177489582907887e-05, -4.8211933875886527e-06, -4.8211933875886101e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, 0.001960297231393539, -0.00014801063699897054, -3.8569547100708889e-06, -9.6423867751771665e-05, -3.8569547100708889e-06, -9.6423867751772245e-07, -2.8927160325531459e-05, -5.785432065106347e-06, -2.4105966937943344e-06, -2.8927160325531777e-05, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936703e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00011040532857578008, -1.4463580162765855e-06, -9.6423867751771759e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772202e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.8103332878936866e-05, -3.8569547100708881e-06, -3.8569547100708881e-06, -1.3017222146489201e-05, -4.6283456520850789e-05, -3.8569547100708889e-06, -3.4230473051879375e-05, -5.7854320651063419e-06, -5.7854320651063419e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -4.8211933875886942e-06, -3.8569547100708881e-06, -4.8211933875886832e-06, -1.0124506113936169e-05, -3.8569547100708889e-06, -2.4105966937943441e-06, -1.1088744791453928e-05, -3.8569547100708898e-06, -5.785432065106347e-06, -1.4463580162766045e-06, -2.410596693794334e-06, -9.6423867751772181e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -3.8569547100708881e-06, -5.7854320651063444e-06, -2.8927160325531934e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, 0.001960297231393539, -7.7139094201417779e-06, -3.8569547100708889e-06, -1.9284773550354449e-06, -7.7139094201417779e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417762e-06, -1.1570864130212687e-05, -3.8569547100708889e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488297971e-06, -1.6392057517801176e-05, -9.6423867751772202e-07, -3.8569547100708873e-06, -3.8569547100708898e-06, -4.3390740488297971e-06, -1.253510280773047e-05, -3.8569547100708881e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886112e-07, -4.8211933875886091e-07, -4.8211933875886101e-07, -9.6423867751772245e-07, -8.196028758900564e-06, -1.4463580162765743e-05, -5.785432065106347e-06, -2.8927160325531883e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -7.7139094201417762e-06, -1.1570864130212697e-05, -3.8569547100708873e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -5.7854320651063461e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -4.3390740488297886e-06, -2.4105966937943407e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -3.4712592390638363e-05, -1.928477355035444e-06, -4.8211933875886122e-07, -2.8927160325531452e-05, -3.8569547100708898e-06, -2.3141728260425686e-05, -2.3141728260425398e-05, -2.4105966937942852e-05, -2.3141728260425686e-05, -1.928477355035444e-06, -1.928477355035444e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.8569547100708881e-06, -4.8211933875886101e-07, -3.8569547100708881e-06, -4.8211933875886112e-07, -4.8211933875886101e-07, -3.3748353713120814e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.9409279664290335e-05, -9.6423867751772202e-07, -3.4712592390638404e-05, -3.4712592390638404e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.4712592390638417e-05, -3.4712592390638349e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -9.6423867751772202e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.4463580162765861e-06, -7.7139094201417796e-06, -0.00014801063699897371, -0.00014801063699897303, -0.00014801063699897328, -0.00014801063699897366, -7.4005318499485758e-05, -7.4005318499485785e-05, -0.00014801063699897152, -0.00014801063699897146, -1.8501329624871626e-05, -1.8501329624871595e-05, -0.0037187672545991803, -0.0037002659249742408, -9.2506648124356279e-05, -1.8501329624871622e-05, -5.5503988874614566e-05, -0.00018501329624871448, -0.0014801063699896996, -3.7002659249743191e-05, -0.0017021223254881609, -1.8501329624871426e-05, -0.00029602127399794666, -0.00029602127399794634, -0.00014801063699897138, -0.0001480106369989716, -0.0014801063699897, -0.0014801063699897, -0.00014801063699897054 , -0.0041998018248458136, -3.7002659249743468e-05, 0.04540358872761565, -0.00029602127399794693, -0.00014801063699897309, -0.00014801063699897377, -1.8501329624871419e-05, -1.8501329624871622e-05, -0.00014801063699897257, -0.00014801063699897276, -3.7002659249743455e-05, -3.7002659249743455e-05, -1.8501329624871419e-05, -1.8501329624871534e-05, -0.0001480106369989713, -9.2506648124356293e-05, -5.5503988874613888e-05, -7.4005318499485798e-05, -7.4005318499485744e-05, -1.8501329624871622e-05, -0.00027751994437307225, -0.00014801063699897227, -0.00014801063699897236, -0.00016651196662384221, -0.00014801063699897135, 0.0034052691545712146, -3.7002659249743252e-05, -1.85013296248717e-05, -0.00014801063699897141, -0.00014801063699897149, -1.8501329624871629e-05, -1.8501329624871578e-05, -0.00014801063699897241, -0.00014801063699897222, -3.7002659249742567e-05, -1.8501329624871507e-05, -0.00014801063699897184, -0.00029602127399794135, -0.00018501329624871386, -0.00014801063699897263, -0.00029602127399794314, -1.8501329624871636e-05, -0.00014801063699897195, -0.00031452260362281636, -0.00014801063699897255, -0.00014801063699897206, -0.00029602127399794639, -0.00059204254799587967, -0.00046253324062178058, -0.00014801063699897154, -0.0002960212739979459, -0.00029602127399794563, -7.4005318499486896e-05, -0.00014801063699897217, -0.00018501329624871378, -0.0002035146258735845, -7.400531849948691e-05, -0.00029602127399794016, -0.00014801063699897255, -0.00014801063699897263, -0.00014801063699897271, -3.700265924974256e-05, -0.00014801063699897347, -0.00014801063699897154, -1.8501329624871734e-05, -0.00014801063699897146, -3.700265924974296e-05, -0.00014801063699897339, -0.00014801063699897249, -0.00014801063699897268, -1.8501329624871639e-05, -0.00029602127399794585, -0.00029602127399794612, -1.8501329624871585e-05, -0.00014801063699897249, -0.00014801063699897244, -1.8501329624871616e-05, -0.00014801063699897377, -0.00014801063699897355, -0.000148010636998972, -0.0001480106369989736, -0.00044403191099691598, -0.0001480106369989736, -0.00014801063699897171, -0.000148010636998972, -1.8501329624871517e-05, -0.00014801063699897192, -0.00014801063699897208, -0.00029602127399794466, -7.4005318499485744e-05, -0.00033302393324768459, -7.4005318499485798e-05, -1.85013296248717e-05, -3.7002659249743096e-05, -0.00024051728512332972, -0.00014801063699897268, -0.00029602127399794086, -0.0015541116884891888, -0.00014801063699897241, -0.001628117006988676, -0.00014801063699897217, -0.000148010636998972, -0.00029602127399794563, -0.0014801063699897115, -0.0002960212739979459, -0.0014986076996145793, -1.8501329624871423e-05, -0.00029602127399794618, -0.00029602127399794536, -7.4005318499486761e-05, -0.0015541116884891888, -0.0014801063699896996, -0.0014801063699897011, -0.0014801063699897167, -1.8501329624871626e-05, -7.4005318499484931e-05, -1.8501329624871487e-05, -1.8501329624871673e-05, -1.8501329624871727e-05, -0.00014801063699897263, -0.00014801063699897271, -0.00014801063699897255, -0.00014801063699897263, -1.8501329624871494e-05, -1.8501329624871507e-05, -1.850132962487148e-05, -0.00014801063699897328, -0.00018501329624871497, -0.00037002659249742799, -0.00029602127399794059, -0.00029602127399794449, -0.00014801063699897317, -0.00044403191099691197, -5.5503988874613712e-05, -0.0016281170069886786, -0.00029602127399794422, -0.0013320957329907345, -1.8501329624871612e-05, -1.8501329624871548e-05, -0.00046253324062178053, -0.00029602127399794466, -0.00014801063699897227, -0.00012950930737410011, 0.00066255250128936815, -3.7002659249743252e-05, -0.0013320957329907342, -3.7002659249743252e-05, -7.4005318499485785e-05, -7.4005318499485758e-05, -0.0013320957329907345, -0.00014801063699897179, -1.8501329624871541e-05, -0.00014801063699897227, -1.850132962487148e-05, -0.00014801063699897206, -0.00018501329624871378, -5.5503988874613549e-05, -0.00014801063699897219, -0.00027751994437307063, -1.8501329624871412e-05, -0.00014801063699897173, -3.7002659249743468e-05, -3.7002659249743455e-05, -3.7002659249743374e-05, -1.8501329624871578e-05, -0.00011100797774922802, -5.5503988874613746e-05, -0.0001480106369989729, -0.00014801063699897309, -0.00029602127399794346, -0.00048103457024665857, -0.00042553058137204515, -1.8501329624871412e-05, -0.00029602127399794119, -0.00014801063699897298, -0.00011100797774922788, -3.700265924974277e-05, -1.8501329624871507e-05, -1.850132962487167e-05, -0.0014801063699897167, -0.0014801063699897011, -0.0029972153992291655, -0.0014801063699897011, -0.0014801063699897115, -7.400531849948691e-05, -3.700265924974273e-05, -0.00014801063699897027, -0.00016651196662384227, -7.4005318499486896e-05, -0.00020351462587358439, -1.8501329624871619e-05, -1.8501329624871429e-05, -0.00029602127399794162, -0.00014801063699897171, -0.00014801063699897203, -1.8501329624871555e-05, -1.8501329624871626e-05, -7.4005318499486327e-05, -7.4005318499486381e-05, -0.00029602127399794113, 0.0018161435491046549, -1.8501329624871467e-05, -0.0029972153992291546, -0.00014801063699897303, -0.00014801063699897295, -1.8501329624871589e-05, -7.4005318499486354e-05, -7.4005318499486341e-05, -3.7002659249742838e-05, -3.7002659249742845e-05, -5.5503988874614207e-05, -1.8501329624871633e-05, -3.7002659249742845e-05, -3.7002659249742838e-05, -1.8501329624871504e-05, -1.8501329624871629e-05, -7.400531849948527e-05, -0.00022201595549845723, -0.00014801063699897162, -1.8501329624871487e-05, -1.8501329624871426e-05, -0.00033302393324768388, -1.8501329624871578e-05, -7.4005318499484782e-05, -3.7002659249742642e-05, -0.00029602127399794309, -0.00029602127399794336, -9.2506648124357079e-05, -7.4005318499486205e-05, -3.7002659249742574e-05, -0.00011100797774922848, 0.018314448116184819, -1.8501329624871538e-05, -7.4005318499486192e-05, -7.4005318499486232e-05, -0.00029602127399794363, -0.00029602127399794281, -7.4005318499486219e-05, -7.4005318499485934e-05, -7.4005318499485907e-05, -1.8501329624871487e-05, -0.00085106116274408477, -0.00018501329624871259, -1.8501329624871639e-05, -0.00014801063699897295, -0.00014801063699897051, -0.00014801063699897303, -0.00029602127399794281, -0.00014801063699897078, -0.00029602127399794363, -0.00014801063699897051, -0.00014801063699897054, 0.069694508696890783, -0.00014801063699897293, -0.0037002659249742559, -0.00014801063699897192, -3.7002659249743272e-05, -0.0011100797774922881, -0.00022201595549845631, -9.2506648124356686e-05, -0.0011100797774922877, -1.8501329624871446e-05, -0.00014801063699897271, -0.00014801063699897263, -0.0029972153992291546, -0.00014801063699897173, -0.00014801063699897165, -0.0042368044840955287, -5.5503988874613658e-05, -0.0037002659249742499, -0.00014801063699897244, -0.00014801063699897249, -1.8501329624871528e-05, -0.00014801063699897255, -0.00014801063699897276, -1.8501329624871473e-05, -0.00029602127399794336, -0.00029602127399794309, -3.7002659249743374e-05, -7.4005318499486341e-05, -7.4005318499486354e-05, -0.00014801063699897298, -0.00014801063699897303, -0.0029972153992291655, -0.00014801063699897309, -0.0001480106369989729, -0.00049953589987152935, -0.0017761276439876574, -0.00014801063699897255, -0.0013135944033658572, -0.00022201595549845479, -0.00022201595549845485, -0.00014801063699897303, -0.00014801063699897355, -0.00018501329624871508, -0.00014801063699897377, -0.00018501329624871462, -0.00038852792212229655, -0.00014801063699897179, -9.2506648124357377e-05, -0.00042553058137204228, -0.00014801063699897181, -0.0002220159554984562, -5.5503988874613725e-05, -9.2506648124356659e-05, -3.7002659249743407e-05, -1.8501329624871626e-05, -1.8501329624871541e-05, -0.00014801063699897377, -0.0002220159554984549, -0.00011100797774922786, -7.4005318499485893e-05, -0.00014801063699897317, -0.00014801063699897054, -0.00014801063699897054, -0.0002960212739979414, -0.00014801063699897138, -7.4005318499486232e-05, -0.00029602127399794271, -0.00014801063699897146, -7.4005318499486192e-05, -0.00014801063699897051, -1.8501329624871443e-05, -0.00014801063699897149, -0.00014801063699897141, -0.00029602127399794612, -0.00044403191099691024, -0.00014801063699897211, -0.00029602127399794693, -0.00029602127399794607, -0.00014801063699897146, -0.00014801063699897152, -0.00014801063699897181, -0.0001480106369989716, -0.000166511966623842, -0.00062904520724563033, -3.700265924974252e-05, -0.0001480106369989736, -0.00014801063699897141, -0.00016651196662384189, -0.000481034570246659, -0.00014801063699897303, -0.00014801063699897227, -0.00014801063699897371, -7.4005318499486205e-05, -7.4005318499486219e-05, -1.8501329624871612e-05, -1.8501329624871727e-05, -1.8501329624871636e-05, -3.700265924974315e-05, -0.00031452260362281175, -0.00055503988874614407, -0.00022201595549845664, -0.00011100797774922802, -1.8501329624871531e-05, -7.4005318499486178e-05, -0.00029602127399794422, -0.0004440319109969123, -0.00014801063699897355, -7.4005318499486164e-05, -0.00029602127399794477, -0.00029602127399794449, -7.4005318499486164e-05, -0.00022201595549845674, -0.00014801063699897173, -1.8501329624871694e-05, -3.7002659249742547e-05, -7.4005318499486178e-05, -7.4005318499486219e-05, -0.00016651196662384229, -9.2506648124357106e-05, -0.0001480106369989729, -0.0002960212739979414, -0.001332095732990736, -7.4005318499486761e-05, -1.8501329624871494e-05, -0.0011100797774922886, -0.000148010636998972, -0.00088806382199382004, -0.00088806382199382091, -0.00092506648124356073, -0.00088806382199382004, -7.4005318499486734e-05, -7.400531849948672e-05, -0.00014801063699897222, -0.00014801063699897203, -7.4005318499486015e-05, -7.4005318499485988e-05, -0.00014801063699897339, -1.8501329624871687e-05, -0.00014801063699897347, -1.8501329624871514e-05, -1.8501329624871616e-05, -0.0012950930737409797, -7.4005318499485988e-05, -7.4005318499486015e-05, -0.0011285811071171624, -3.7002659249743326e-05, -0.0013320957329907345, -0.0013320957329907342, -0.00014801063699897195, -1.85013296248715e-05, -0.00014801063699897214, -0.0013320957329907345, -0.0013320957329907351, -0.00014801063699897203, -0.00014801063699897184, -3.7002659249742933e-05, -3.7002659249743225e-05, -0.00029602127399794281, -0.0001480106369989719, -0.00014801063699897198, -5.5503988874614308e-05, -0.00029602127399794281, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6905987090532082e-05, -9.6423867751772383e-05, -2.410596693794323e-06, -4.8211933875886122e-07, -1.4463580162766066e-06, -4.8211933875886459e-06, -3.8569547100709506e-05, -9.6423867751772245e-07, -4.4354979165815319e-05, -4.8211933875886133e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100709506e-05, -3.8569547100709506e-05, -3.8569547100708889e-06, -0.00010944108989826091, -9.6423867751772224e-07, -9.6423867751773643e-05, -7.7139094201417779e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708881e-06, -2.410596693794323e-06, -1.4463580162766041e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -7.2317900813830392e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488296997e-06, -3.8569547100708906e-06, -7.2317900813830138e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886654e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -8.1960287589005793e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.2052983468971578e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -4.8211933875886671e-06, -5.3033127263474473e-06, -1.9284773550354445e-06, -7.7139094201417762e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.1570864130212853e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -8.6781480976594163e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -9.6423867751772266e-07, -6.2675514038651213e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.0498024455744657e-05, -3.8569547100708906e-06, -4.2426501810779592e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -3.8569547100709269e-05, -7.7139094201417796e-06, -3.9051666439468223e-05, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.0498024455744657e-05, -3.8569547100709506e-05, -3.8569547100709242e-05, -3.8569547100709337e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886815e-06, -9.6423867751772783e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -1.1570864130212835e-05, -1.4463580162765675e-06, -4.2426501810779938e-05, -7.7139094201417796e-06, -3.4712592390637801e-05, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.2052983468971621e-05, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.3748353713120333e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390637801e-05, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.4712592390637787e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886629e-06, -1.4463580162766041e-06, -3.8569547100708906e-06, -7.2317900813829926e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -2.8927160325532247e-06, -1.4463580162766221e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.2535102807730488e-05, -1.1088744791453825e-05, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325531642e-06, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100709337e-05, -3.8569547100709242e-05, -7.8103332878936703e-05, -3.8569547100709242e-05, -3.8569547100709269e-05, -1.9284773550354445e-06, -9.6423867751772266e-07, -3.8569547100708881e-06, -4.3390740488296912e-06, -1.9284773550354445e-06, -5.3033127263474753e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, 0.0019564402766834685, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.8103332878936513e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4463580162766041e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651064198e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -8.6781480976593993e-06, -4.8211933875886133e-07, -1.9284773550354428e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943335e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325532074e-06, -4.0980143794503334e-05, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -2.2177489582907555e-05, -4.8211933875886459e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897293, 0.001960297231393539, -9.6423867751772993e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.8927160325531774e-05, -5.7854320651064181e-06, -2.4105966937943306e-06, -2.8927160325532102e-05, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936513e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577896, -1.4463580162766033e-06, -9.6423867751773074e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936703e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489406e-05, -4.6283456520851291e-05, -3.8569547100708906e-06, -3.4230473051878928e-05, -5.7854320651062868e-06, -5.7854320651062868e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886866e-06, -3.8569547100708898e-06, -4.8211933875886747e-06, -1.0124506113936158e-05, -3.8569547100708906e-06, -2.4105966937943399e-06, -1.1088744791453774e-05, -3.8569547100708906e-06, -5.7854320651064181e-06, -1.4463580162766225e-06, -2.4105966937943297e-06, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708889e-06, -5.7854320651064147e-06, -2.8927160325532298e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.1570864130212829e-05, -3.8569547100708906e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.33907404882972e-06, -1.639205751780126e-05, -9.6423867751772245e-07, -3.8569547100708889e-06, -3.8569547100708906e-06, -4.33907404882972e-06, -1.2535102807730498e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -8.1960287589005319e-06, -1.4463580162765904e-05, -5.7854320651064181e-06, -2.8927160325532247e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -7.7139094201417796e-06, -1.1570864130212828e-05, -3.8569547100708889e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651064173e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.3390740488297132e-06, -2.410596693794323e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.4712592390637868e-05, -1.9284773550354449e-06, -4.8211933875886133e-07, -2.8927160325531747e-05, -3.8569547100708906e-06, -2.3141728260426008e-05, -2.3141728260425659e-05, -2.4105966937943153e-05, -2.3141728260426008e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.3748353713120299e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.9409279664290738e-05, -9.6423867751772245e-07, -3.4712592390637787e-05, -3.4712592390637801e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390637801e-05, -3.4712592390637733e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.4463580162766041e-06, -7.7139094201417813e-06, -9.6423867751773318e-05, -9.6423867751773047e-05, -9.6423867751773155e-05, -9.6423867751773291e-05, -4.8211933875886246e-05, -4.8211933875886246e-05, -9.6423867751772274e-05, -9.6423867751772356e-05, -1.2052983468971629e-05, -1.2052983468971578e-05, -0.0024226496772632752, -0.0024105966937943337, -6.0264917344857904e-05, -1.2052983468971627e-05, -3.6158950406914445e-05, -0.00012052983468971578, -0.00096423867751772754, -2.4105966937943157e-05, -0.0011088744791453904, -1.2052983468971551e-05, -0.00019284773550354612, -0.00019284773550354599, -9.6423867751772437e-05, -9.6423867751772193e-05, -0.00096423867751772776, -0.00096423867751772776, -9.6423867751771759e-05, 0.046367827405133698, -2.4105966937943343e-05, -0.0024105966937943207, -0.00019284773550354628, -9.6423867751773101e-05, -9.6423867751773372e-05, -1.2052983468971546e-05, -1.2052983468971631e-05, -9.6423867751772857e-05, -9.6423867751772993e-05, -2.4105966937943336e-05, -2.4105966937943336e-05, -1.2052983468971551e-05, -1.20529834689716e-05, -9.6423867751772654e-05, -6.0264917344858053e-05, -3.6158950406914628e-05, -4.8211933875886259e-05, -4.8211933875886232e-05, -1.2052983468971627e-05, -0.00018079475203457168, -9.6423867751772749e-05, -9.6423867751772776e-05, -0.00010847685122074456, -9.6423867751772383e-05, -0.00018079475203457241, -2.4105966937943258e-05, -1.2052983468971658e-05, -9.642386775177241e-05, -9.6423867751772437e-05, -1.2052983468971634e-05, -1.2052983468971612e-05, -9.6423867751772817e-05, -9.6423867751772708e-05, -2.4105966937942865e-05, -1.205298346897159e-05, -9.64238677517726e-05, -0.00019284773550354474, -0.00012052983468971554, -9.6423867751772911e-05, -0.00019284773550354498, -1.2052983468971634e-05, -9.64238677517726e-05, -0.00020490071897251682, -9.642386775177283e-05, -9.6423867751772695e-05, -0.00019284773550354615, -0.00038569547100708791, -0.00030132458672429036, -9.6423867751772464e-05, -0.0001928477355035452, -0.00019284773550354509, -4.8211933875886673e-05, -9.6423867751772383e-05, -0.00012052983468971554, -0.00013258281815868665, -4.8211933875886686e-05, -0.00019284773550354374, -9.6423867751772545e-05, -9.6423867751772871e-05, -9.6423867751772911e-05, -2.4105966937942879e-05, -9.6423867751773237e-05, -9.6423867751772464e-05, -1.2052983468971668e-05, -9.6423867751772424e-05, -2.4105966937943116e-05, -9.642386775177321e-05, -9.642386775177283e-05, -9.6423867751772939e-05, -1.2052983468971638e-05, -0.00019284773550354582, -0.00019284773550354599, -1.2052983468971621e-05, -9.6423867751772518e-05, -9.6423867751772464e-05, -1.2052983468971622e-05, -9.6423867751773345e-05, -9.6423867751773237e-05, -9.6423867751772654e-05, -9.6423867751773264e-05, -0.00028927160325531583, -9.6423867751773291e-05, -9.6423867751772518e-05, -9.642386775177264e-05, -1.2052983468971597e-05, -9.6423867751772627e-05, -9.6423867751772695e-05, -0.0001928477355035455, -4.8211933875886232e-05, -0.00021695370244148839, -4.8211933875886259e-05, -1.2052983468971661e-05, -2.4105966937943214e-05, -0.00015668878509663079, -9.6423867751772939e-05, -0.00019284773550354357, -0.0010124506113936092, -9.6423867751772817e-05, -0.0010606625452695044, -9.6423867751772776e-05, -9.6423867751772654e-05, -0.00019284773550354509, -0.00096423867751772667, -0.0001928477355035452, -0.0009762916609866954, -1.2052983468971548e-05, -0.00019284773550354539, -0.00019284773550354493, -4.8211933875886632e-05, -0.0010124506113936092, -0.00096423867751772754, -0.00096423867751772602, -0.00096423867751772559, -1.2052983468971631e-05, -4.8211933875886415e-05, -1.2052983468971582e-05, -1.2052983468971651e-05, -1.2052983468971668e-05, -9.6423867751772911e-05, -9.6423867751772939e-05, -9.6423867751772884e-05, -9.6423867751772911e-05, -1.2052983468971582e-05, -1.205298346897159e-05, -1.2052983468971578e-05, -9.6423867751773155e-05, -0.00012052983468971602, -0.00024105966937943129, -0.00019284773550354336, -0.00019284773550354523, -9.6423867751773101e-05, -0.00028927160325531638, -3.6158950406915238e-05, -0.0010606625452695049, -0.00019284773550354506, -0.00086781480976596246, -1.2052983468971627e-05, -1.2052983468971607e-05, -0.00030132458672428938, -0.0001928477355035455, -9.6423867751772749e-05, -8.4370884282800718e-05, -4.8211933875886252e-05, -2.4105966937943252e-05, -0.00086781480976596246, -2.4105966937943258e-05, -4.8211933875886246e-05, -4.8211933875886246e-05, -0.00086781480976596246, -9.64238677517726e-05, -1.2052983468971604e-05, -9.6423867751772803e-05, -1.2052983468971578e-05, -9.6423867751772654e-05, -0.00012052983468971611, -3.6158950406914533e-05, -9.6423867751772749e-05, -0.00018079475203457442, -1.2052983468971548e-05, -9.6423867751772573e-05, -2.4105966937943343e-05, -2.4105966937943336e-05, -2.4105966937943228e-05, -1.2052983468971614e-05, -7.2317900813829636e-05, -3.6158950406915116e-05, -9.6423867751772966e-05, -9.6423867751773088e-05, -0.00019284773550354493, -0.00031337757019326136, -0.00027721861978634781, -1.2052983468971548e-05, -0.00019284773550354357, -9.6423867751773047e-05, -7.2317900813829826e-05, -2.4105966937943069e-05, -1.205298346897159e-05, -1.2052983468971648e-05, -0.00096423867751772559, -0.00096423867751772602, -0.0019525833219733921, -0.00096423867751772613, -0.00096423867751772667, -4.8211933875886686e-05, -2.4105966937943028e-05, -9.6423867751772085e-05, -0.00010847685122074459, -4.8211933875886673e-05, -0.000132582818158688, -1.2052983468971627e-05, -1.2052983468971551e-05, -0.00019284773550354422, -9.6423867751772573e-05, -9.6423867751772722e-05, -1.2052983468971607e-05, -1.2052983468971629e-05, -4.8211933875886469e-05, -4.8211933875886496e-05, -0.00019284773550354357, -9.6423867751773128e-05, -1.2052983468971572e-05, -0.0019525833219733869, -9.6423867751773047e-05, -9.6423867751773006e-05, -1.2052983468971621e-05, -4.8211933875886483e-05, -4.8211933875886469e-05, -2.4105966937943082e-05, -2.4105966937943069e-05, -3.6158950406914547e-05, -1.2052983468971631e-05, -2.4105966937943069e-05, -2.4105966937943082e-05, -1.205298346897159e-05, -1.2052983468971634e-05, -4.8211933875886374e-05, -0.00014463580162765824, -9.6423867751772545e-05, -1.2052983468971578e-05, -1.2052983468971551e-05, -0.00021695370244148842, -1.2052983468971612e-05, -4.8211933875886029e-05, -2.410596693794294e-05, -0.00019284773550354471, -0.00019284773550354485, -6.0264917344857971e-05, -4.8211933875886408e-05, -2.4105966937942879e-05, -7.2317900813829053e-05, -0.0010245035948625869, -1.20529834689716e-05, -4.8211933875886395e-05, -4.8211933875886429e-05, -0.00019284773550354501, -0.00019284773550354455, -4.8211933875886429e-05, -4.8211933875886313e-05, -4.8211933875886313e-05, -1.2052983468971578e-05, -0.00055443723957269324, -0.00012052983468971574, -1.2052983468971638e-05, -9.6423867751773006e-05, -9.6423867751771665e-05, -9.6423867751773047e-05, -0.00019284773550354455, -9.6423867751772518e-05, -0.00019284773550354501, -9.6423867751771651e-05, -9.6423867751771665e-05, -0.0037002659249742559, -9.6423867751772993e-05, 0.046693257958795857, -9.6423867751772627e-05, -2.4105966937943262e-05, -0.00072317900813829853, -0.00014463580162765824, -6.0264917344857863e-05, -0.00072317900813828845, -1.2052983468971561e-05, -9.6423867751772911e-05, -9.6423867751772871e-05, -0.0019525833219733869, -9.6423867751772532e-05, -9.6423867751772491e-05, -0.0027601332143944906, -3.615895040691452e-05, -0.0024105966937943198, -9.6423867751772464e-05, -9.6423867751772518e-05, -1.205298346897159e-05, -9.642386775177283e-05, -9.6423867751772952e-05, -1.2052983468971575e-05, -0.00019284773550354485, -0.00019284773550354471, -2.4105966937943228e-05, -4.8211933875886469e-05, -4.8211933875886483e-05, -9.6423867751773047e-05, -9.6423867751773074e-05, -0.0019525833219733921, -9.6423867751773088e-05, -9.6423867751772966e-05, -0.00032543055366223399, -0.0011570864130212664, -9.6423867751772545e-05, -0.00085576182629698084, -0.00014463580162765803, -0.00014463580162765803, -9.6423867751773047e-05, -9.6423867751773237e-05, -0.00012052983468971586, -9.6423867751773345e-05, -0.00012052983468971581, -0.00025311265284840245, -9.6423867751772573e-05, -6.026491734485789e-05, -0.00027721861978634641, -9.6423867751772573e-05, -0.00014463580162765824, -3.615895040691513e-05, -6.0264917344857917e-05, -2.4105966937943316e-05, -1.2052983468971631e-05, -1.2052983468971604e-05, -9.6423867751773372e-05, -0.00014463580162765819, -7.2317900813829772e-05, -4.82119338758863e-05, -9.6423867751773128e-05, -9.6423867751771759e-05, -9.6423867751771665e-05, -0.00019284773550354544, -9.6423867751772437e-05, -4.8211933875886429e-05, -0.00019284773550354493, -9.6423867751772464e-05, -4.8211933875886395e-05, -9.6423867751771665e-05, -1.2052983468971561e-05, -9.6423867751772437e-05, -9.642386775177241e-05, -0.00019284773550354599, -0.00028927160325531627, -9.6423867751772722e-05, -0.00019284773550354628, -0.00019284773550354582, -9.6423867751772356e-05, -9.6423867751772274e-05, -9.6423867751772573e-05, -9.6423867751772464e-05, -0.0001084768512207437, -0.00040980143794503376, -2.4105966937942825e-05, -9.6423867751773291e-05, -9.6423867751772437e-05, -0.00010847685122074388, -0.00031337757019326266, -9.6423867751773047e-05, -9.6423867751772803e-05, -9.6423867751773318e-05, -4.8211933875886408e-05, -4.8211933875886422e-05, -1.2052983468971631e-05, -1.2052983468971668e-05, -1.2052983468971638e-05, -2.4105966937943228e-05, -0.00020490071897251688, -0.00036158950406914916, -0.0001446358016276583, -7.2317900813829636e-05, -1.20529834689716e-05, -4.8211933875886408e-05, -0.00019284773550354506, -0.00028927160325531616, -9.6423867751773237e-05, -4.8211933875886395e-05, -0.00019284773550354542, -0.00019284773550354523, -4.8211933875886395e-05, -0.00014463580162765822, -9.6423867751772532e-05, -1.2052983468971614e-05, -2.4105966937942865e-05, -4.8211933875886408e-05, -4.8211933875886429e-05, -0.00010847685122074395, -6.0264917344857863e-05, -9.642386775177302e-05, -0.00019284773550354471, -0.00086781480976596138, -4.8211933875886632e-05, -1.2052983468971582e-05, -0.00072317900813829875, -9.642386775177264e-05, -0.00057854320651064381, -0.00057854320651063275, -0.00060264917344857627, -0.00057854320651064381, -4.8211933875886618e-05, -4.8211933875886618e-05, -9.6423867751772437e-05, -9.6423867751772302e-05, -4.8211933875886361e-05, -4.8211933875886361e-05, -9.642386775177321e-05, -1.2052983468971614e-05, -9.6423867751773237e-05, -1.2052983468971594e-05, -1.2052983468971622e-05, -0.0008437088428280055, -4.8211933875886361e-05, -4.8211933875886361e-05, -0.00073523199160726996, -2.4105966937943285e-05, -0.00086781480976596246, -0.00086781480976596246, -9.64238677517726e-05, -1.205298346897158e-05, -9.6423867751772722e-05, -0.00086781480976596246, -0.00086781480976595607, -9.6423867751772722e-05, -9.64238677517726e-05, -2.4105966937943136e-05, -2.4105966937943255e-05, -0.00019284773550354477, -9.6423867751772627e-05, -9.6423867751772654e-05, -3.6158950406914533e-05, -0.00019284773550354477, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6905987090531784e-05, -9.642386775177203e-05, -2.4105966937943086e-06, -4.8211933875886133e-07, -1.4463580162765929e-06, -4.8211933875886476e-06, -3.8569547100709289e-05, -9.6423867751772266e-07, -4.4354979165815482e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100709289e-05, -3.8569547100709289e-05, -3.8569547100708898e-06, -0.00010944108989826135, -9.6423867751772245e-07, -9.6423867751773318e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708889e-06, -2.4105966937943086e-06, -1.4463580162765939e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813830121e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297496e-06, -3.8569547100708915e-06, -7.2317900813829858e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886374e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -8.1960287589006216e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.2052983468971534e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.8211933875886391e-06, -5.3033127263474693e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212745e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, 0.0019602972313935386, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.678148097659479e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652492e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.049802445574463e-05, -3.8569547100708906e-06, -4.2426501810779741e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709052e-05, -7.7139094201417796e-06, -3.905166643946806e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.049802445574463e-05, -3.8569547100709289e-05, -3.8569547100709018e-05, -3.856954710070912e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886391e-06, -9.6423867751772884e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -1.1570864130212753e-05, -1.4463580162766149e-06, -4.2426501810780073e-05, -7.7139094201417813e-06, -3.4712592390638051e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971575e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120681e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390638051e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390638038e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886188e-06, -1.4463580162765939e-06, -3.8569547100708915e-06, -7.2317900813829638e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.892716032553204e-06, -1.4463580162766119e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730464e-05, -1.1088744791453876e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532099e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.856954710070912e-05, -3.8569547100709018e-05, -7.8103332878936364e-05, -3.8569547100709018e-05, -3.8569547100709052e-05, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297217e-06, -1.9284773550354449e-06, -5.3033127263474888e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936188e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162765939e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -5.7854320651063775e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976594993e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943196e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -2.892716032553187e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.2177489582907643e-05, -4.8211933875886171e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897192, -3.8569547100708906e-06, -9.6423867751772627e-05, 0.0019602972313935386, -9.6423867751772245e-07, -2.8927160325531679e-05, -5.7854320651063317e-06, -2.4105966937943162e-06, -2.8927160325532001e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936188e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577936, -1.4463580162765931e-06, -9.6423867751772722e-05, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936364e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489342e-05, -4.6283456520851006e-05, -3.8569547100708915e-06, -3.4230473051878975e-05, -5.7854320651063724e-06, -5.7854320651063724e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886425e-06, -3.8569547100708898e-06, -4.8211933875886459e-06, -1.0124506113936151e-05, -3.8569547100708915e-06, -2.4105966937943179e-06, -1.1088744791453825e-05, -3.8569547100708906e-06, -5.7854320651063249e-06, -1.4463580162765922e-06, -2.4105966937943153e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063741e-06, -2.8927160325532091e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.1570864130212748e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.339074048829753e-06, -1.6392057517801328e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488297988e-06, -1.2535102807730478e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -8.1960287589005725e-06, -1.4463580162765839e-05, -5.7854320651063487e-06, -2.892716032553204e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417813e-06, -1.157086413021275e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651063775e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.3390740488297446e-06, -2.4105966937943221e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.4712592390638011e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531672e-05, -3.8569547100708906e-06, -2.3141728260425845e-05, -2.3141728260425496e-05, -2.4105966937943058e-05, -2.3141728260425845e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.3748353713120435e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.9409279664290643e-05, -9.6423867751772245e-07, -3.4712592390638038e-05, -3.4712592390638051e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390638051e-05, -3.4712592390637984e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.446358016276591e-06, -7.713909420141783e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -2.4226496772633041e-05, -2.4105966937943109e-05, -6.0264917344857968e-07, -1.2052983468971531e-07, -3.6158950406915092e-07, -1.2052983468971666e-06, -9.642386775177363e-06, -2.4105966937943061e-07, -1.1088744791453813e-05, -1.2052983468971531e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.642386775177363e-06, -9.6423867751773613e-06, -9.6423867751772224e-07, -2.7360272474565211e-05, -2.4105966937943051e-07, -2.4105966937943431e-05, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943051e-07, -2.4105966937943051e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -9.6423867751772181e-07, -6.0264917344857957e-07, -3.6158950406915113e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -1.8079475203457604e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.0847685122074236e-06, -9.6423867751772245e-07, -1.8079475203457551e-06, -2.4105966937943061e-07, -1.2052983468971528e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971528e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943051e-07, -1.2052983468971533e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.2052983468971644e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.2052983468971528e-07, -9.6423867751772245e-07, -2.049007189725141e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -1.9284773550354445e-06, -3.8569547100708873e-06, -3.0132458672428967e-06, -9.6423867751772245e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -1.2052983468971649e-06, -1.3258281815868631e-06, -4.8211933875886101e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943056e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -2.4105966937943056e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772266e-07, -9.6423867751772224e-07, -2.8927160325532069e-06, -9.6423867751772202e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -4.8211933875886133e-07, -2.1695370244148515e-06, -4.8211933875886133e-07, -1.2052983468971528e-07, -2.4105966937943066e-07, -1.566887850966315e-06, -9.6423867751772245e-07, -1.9284773550354445e-06, -1.0124506113936171e-05, -9.6423867751772245e-07, -1.0606625452694913e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354445e-06, -9.6423867751773037e-06, -1.9284773550354445e-06, -9.762916609867032e-06, -1.2052983468971531e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886112e-07, -1.0124506113936169e-05, -9.642386775177363e-06, -9.642386775177263e-06, -9.6423867751773274e-06, -1.2052983468971528e-07, -4.8211933875886091e-07, -1.2052983468971533e-07, -1.2052983468971528e-07, -1.2052983468971525e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -9.6423867751772224e-07, -1.2052983468971687e-06, -2.4105966937943314e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -2.8927160325532099e-06, -3.6158950406915648e-07, -1.0606625452694989e-05, -1.9284773550354449e-06, -8.67814809765944e-06, -1.2052983468971531e-07, -1.2052983468971533e-07, -3.0132458672428878e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, 0.00049019483768307438, -4.8211933875886101e-07, -2.4105966937943061e-07, -8.67814809765944e-06, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -8.67814809765944e-06, -9.6423867751772266e-07, -1.2052983468971533e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.2052983468971636e-06, -3.6158950406915119e-07, -9.6423867751772245e-07, -1.8079475203457484e-06, -1.2052983468971533e-07, -9.6423867751772266e-07, -2.4105966937943051e-07, -2.4105966937943051e-07, -2.4105966937943056e-07, -1.2052983468971533e-07, -7.2317900813830639e-07, -3.6158950406914219e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -3.1337757019326216e-06, -2.7721861978634545e-06, -1.2052983468971533e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -7.2317900813830798e-07, -2.4105966937943056e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -9.6423867751773274e-06, -9.642386775177263e-06, -1.9525833219734162e-05, -9.64238677517728e-06, -9.6423867751773037e-06, -4.8211933875886101e-07, -2.4105966937943061e-07, -9.6423867751772202e-07, -1.0847685122074215e-06, -4.8211933875886101e-07, -1.3258281815868699e-06, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -9.6423867751772245e-07, -1.2052983468971533e-07, -1.9525833219734115e-05, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -3.6158950406915124e-07, -1.2052983468971531e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -4.8211933875886101e-07, -1.4463580162766056e-06, -9.6423867751772245e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -2.1695370244148566e-06, -1.2052983468971531e-07, -4.8211933875886091e-07, -2.4105966937943056e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -6.0264917344858264e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -7.2317900813830227e-07, -1.0245035948625833e-05, -1.2052983468971533e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971533e-07, -5.5443723957268878e-06, -1.2052983468971591e-06, -1.2052983468971528e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.7002659249743272e-05, -9.6423867751772245e-07, -2.4105966937943262e-05, -9.6423867751772245e-07, 0.00049079748685652283, -7.2317900813829477e-06, -1.4463580162766052e-06, -6.0264917344858148e-07, -7.2317900813830282e-06, -1.2052983468971533e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9525833219734115e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.7601332143944695e-05, -3.6158950406915097e-07, -2.4105966937943285e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971533e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943056e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9525833219734162e-05, -9.6423867751772224e-07, -9.6423867751772224e-07, -3.2543055366223033e-06, -1.157086413021284e-05, -9.6423867751772245e-07, -8.5576182629696812e-06, -1.4463580162766039e-06, -1.4463580162766039e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971693e-06, -9.6423867751772224e-07, -1.2052983468971674e-06, -2.5311265284840411e-06, -9.6423867751772245e-07, -6.0264917344858392e-07, -2.7721861978634393e-06, -9.6423867751772245e-07, -1.4463580162766052e-06, -3.6158950406915579e-07, -6.0264917344858137e-07, -2.4105966937943051e-07, -1.2052983468971528e-07, -1.2052983468971533e-07, -9.6423867751772224e-07, -1.4463580162766045e-06, -7.2317900813830766e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.9284773550354445e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -9.6423867751772266e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.2052983468971533e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354445e-06, -2.8927160325532086e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.0847685122074287e-06, -4.0980143794503074e-06, -2.4105966937943051e-07, -9.6423867751772202e-07, -9.6423867751772266e-07, -1.0847685122074287e-06, -3.1337757019325437e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -1.2052983468971525e-07, -1.2052983468971528e-07, -2.4105966937943066e-07, -2.0490071897251334e-06, -3.6158950406914777e-06, -1.4463580162766052e-06, -7.2317900813830639e-07, -1.2052983468971533e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -2.8927160325532082e-06, -9.6423867751772202e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -1.446358016276605e-06, -9.6423867751772245e-07, -1.2052983468971528e-07, -2.4105966937943056e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.084768512207427e-06, -6.0264917344858307e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -8.6781480976594298e-06, -4.8211933875886112e-07, -1.2052983468971533e-07, -7.231790081382946e-06, -9.6423867751772245e-07, -5.7854320651065045e-06, -5.7854320651064181e-06, -6.0264917344857917e-06, -5.7854320651065045e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772224e-07, -1.2052983468971528e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -8.4370884282800647e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.3523199160726743e-06, -2.4105966937943056e-07, -8.67814809765944e-06, -8.67814809765944e-06, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -8.67814809765944e-06, -8.6781480976594264e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943061e-07, -2.4105966937943056e-07, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.6158950406915113e-07, -1.9284773550354453e-06, -2.8927160325531882e-05, -2.8927160325531808e-05, -2.8927160325531828e-05, -2.8927160325531875e-05, -1.4463580162765819e-05, -1.4463580162765819e-05, -2.8927160325531611e-05, -2.8927160325531598e-05, -3.615895040691473e-06, -3.6158950406914717e-06, -0.00072679490317898842, -0.0007231790081383007, -1.8079475203457304e-05, -3.6158950406914722e-06, -1.0847685122074411e-05, -3.6158950406914913e-05, -0.00028927160325531703, -7.2317900813829435e-06, -0.00033266234374361512, -3.6158950406914514e-06, -5.7854320651063636e-05, -5.7854320651063609e-05, -2.8927160325531591e-05, -2.8927160325531618e-05, -0.00028927160325531692, -0.00028927160325531692, -2.8927160325531882e-05, -0.00082080817423696201, -7.2317900813829739e-06, -0.00072317900813829463, -5.7854320651063676e-05, -2.8927160325531814e-05, -2.8927160325531896e-05, -3.6158950406914476e-06, -3.6158950406914734e-06, -2.8927160325531733e-05, -2.892716032553176e-05, -7.2317900813829739e-06, -7.2317900813829739e-06, -3.6158950406914522e-06, -3.615895040691465e-06, -2.8927160325531692e-05, -1.8079475203457412e-05, -1.0847685122074341e-05, -1.4463580162765823e-05, -1.4463580162765816e-05, -3.6158950406914722e-06, -5.4238425610371997e-05, -2.8927160325531689e-05, -2.8927160325531703e-05, -3.2543055366223308e-05, -2.8927160325531604e-05, -5.4238425610372166e-05, -7.231790081382946e-06, -3.6158950406914836e-06, -2.8927160325531611e-05, -2.8927160325531625e-05, -3.6158950406914768e-06, -3.6158950406914671e-06, -2.8927160325531709e-05, -2.8927160325531682e-05, -7.2317900813828571e-06, -3.6158950406914675e-06, -2.8927160325531665e-05, -5.7854320651063033e-05, -3.6158950406914635e-05, -2.892716032553176e-05, -5.7854320651063358e-05, -3.6158950406914768e-06, -2.8927160325531652e-05, -6.1470215691755044e-05, -2.8927160325531723e-05, -2.8927160325531781e-05, -5.7854320651063656e-05, -0.00011570864130212596, -9.0397376017287519e-05, -2.8927160325531604e-05, -5.7854320651063588e-05, -5.7854320651063561e-05, -1.4463580162765948e-05, -2.8927160325531692e-05, -3.6158950406914757e-05, -3.9774845447606464e-05, -1.4463580162765948e-05, -5.7854320651062924e-05, -2.8927160325531747e-05, -2.892716032553173e-05, -2.8927160325531737e-05, -7.2317900813829062e-06, -2.8927160325531842e-05, -2.8927160325531604e-05, -3.615895040691484e-06, -2.8927160325531591e-05, -7.2317900813829163e-06, -2.8927160325531828e-05, -2.892716032553174e-05, -2.8927160325531767e-05, -3.6158950406914777e-06, -5.7854320651063588e-05, -5.7854320651063629e-05, -3.6158950406914717e-06, -2.8927160325531733e-05, -2.8927160325531726e-05, -3.61589504069147e-06, -2.8927160325531869e-05, -2.8927160325531842e-05, -2.8927160325531787e-05, -2.8927160325531855e-05, -8.6781480976595244e-05, -2.8927160325531869e-05, -2.8927160325531652e-05, -2.8927160325531659e-05, -3.6158950406914633e-06, -2.8927160325531679e-05, -2.8927160325531672e-05, -5.785432065106348e-05, -1.4463580162765816e-05, -6.5086110732446616e-05, -1.4463580162765823e-05, -3.6158950406914819e-06, -7.2317900813829485e-06, -4.7006635528988956e-05, -2.8927160325531767e-05, -5.7854320651062999e-05, -0.00030373518341807979, -2.8927160325531709e-05, -0.00031819876358085139, -2.8927160325531767e-05, -2.8927160325531787e-05, -5.7854320651063561e-05, -0.00028927160325531719, -5.7854320651063588e-05, -0.00029288749829600746, -3.615895040691448e-06, -5.7854320651063629e-05, -5.7854320651063521e-05, -1.4463580162765934e-05, -0.00030373518341807968, -0.00028927160325531703, -0.00028927160325531708, -0.00028927160325532088, -3.615895040691476e-06, -1.4463580162765948e-05, -3.615895040691465e-06, -3.6158950406914785e-06, -3.615895040691487e-06, -2.8927160325531747e-05, -2.892716032553176e-05, -2.8927160325531747e-05, -2.892716032553176e-05, -3.615895040691465e-06, -3.6158950406914675e-06, -3.615895040691459e-06, -2.8927160325531828e-05, -3.6158950406914588e-05, -7.2317900813829826e-05, -5.7854320651063412e-05, -5.7854320651063371e-05, -2.8927160325531821e-05, -8.6781480976594878e-05, -1.0847685122074373e-05, -0.00031819876358085074, -5.7854320651063331e-05, -0.00026034444292978885, -3.6158950406914751e-06, -3.6158950406914743e-06, -9.0397376017287519e-05, -5.785432065106348e-05, -2.8927160325531689e-05, -2.5311265284840447e-05, -1.4463580162765831e-05, -7.2317900813829435e-06, -0.00026034444292978852, -7.231790081382946e-06, -1.4463580162765819e-05, -1.4463580162765819e-05, -0.00026034444292978809, -2.8927160325531665e-05, -3.6158950406914666e-06, -2.892716032553172e-05, -3.615895040691459e-06, -2.8927160325531692e-05, -3.6158950406914588e-05, -1.0847685122074305e-05, -2.8927160325531706e-05, -5.4238425610372396e-05, -3.6158950406914514e-06, -2.8927160325531652e-05, -7.2317900813829739e-06, -7.2317900813829723e-06, -7.2317900813829638e-06, -3.6158950406914683e-06, -2.1695370244148804e-05, -1.0847685122074326e-05, -2.892716032553176e-05, -2.8927160325531787e-05, -5.7854320651063358e-05, -9.4013271057977722e-05, -8.3165585935903767e-05, -3.6158950406914522e-06, -5.7854320651063317e-05, -2.8927160325531787e-05, -2.1695370244148831e-05, -7.2317900813828909e-06, -3.6158950406914675e-06, -3.6158950406914785e-06, -0.00028927160325532088, -0.00028927160325531708, -0.00058577499659201329, -0.00028927160325531708, -0.00028927160325531719, -1.4463580162765948e-05, -7.2317900813829231e-06, -2.8927160325531964e-05, -3.2543055366223348e-05, -1.4463580162765948e-05, -3.9774845447606288e-05, -3.6158950406914726e-06, -3.6158950406914522e-06, -5.7854320651063141e-05, -2.8927160325531652e-05, -2.8927160325531692e-05, -3.6158950406914751e-06, -3.6158950406914722e-06, -1.4463580162765887e-05, -1.4463580162765894e-05, -5.7854320651063331e-05, -2.8927160325531801e-05, -3.6158950406914573e-06, -0.00058577499659201633, -2.8927160325531781e-05, -2.8927160325531774e-05, -3.6158950406914717e-06, -1.446358016276589e-05, -1.4463580162765887e-05, -7.2317900813828977e-06, -7.2317900813828994e-06, -1.0847685122074385e-05, -3.615895040691473e-06, -7.2317900813828994e-06, -7.2317900813828977e-06, -3.6158950406914616e-06, -3.6158950406914768e-06, -1.446358016276588e-05, -4.339074048829752e-05, -2.8927160325531638e-05, -3.6158950406914633e-06, -3.6158950406914514e-06, -6.5086110732446399e-05, -3.6158950406914671e-06, -1.4463580162765819e-05, -7.2317900813828689e-06, -5.7854320651063209e-05, -5.7854320651063236e-05, -1.8079475203457304e-05, -1.446358016276586e-05, -7.2317900813828596e-06, -2.1695370244148753e-05, -0.00030735107845877851, -3.615895040691465e-06, -1.4463580162765856e-05, -1.4463580162765863e-05, -5.7854320651063277e-05, -5.7854320651063182e-05, -1.4463580162765873e-05, -1.4463580162765839e-05, -1.4463580162765836e-05, -3.6158950406914641e-06, -0.00016633117187180753, -3.6158950406914635e-05, -3.6158950406914768e-06, -2.8927160325531774e-05, -2.8927160325531459e-05, -2.8927160325531781e-05, -5.7854320651063182e-05, -2.8927160325531672e-05, -5.7854320651063277e-05, -2.8927160325531459e-05, -2.8927160325531459e-05, -0.0011100797774922881, -2.8927160325531774e-05, -0.00072317900813829853, -2.8927160325531679e-05, -7.2317900813829477e-06, 0.014514202693335526, -4.339074048829752e-05, -1.8079475203457314e-05, -0.00021695370244149127, -3.6158950406914548e-06, -2.8927160325531737e-05, -2.892716032553173e-05, -0.00058577499659201633, -2.8927160325531625e-05, -2.8927160325531618e-05, -0.00082803996431834689, -1.0847685122074305e-05, -0.00072317900813829788, -2.8927160325531726e-05, -2.8927160325531733e-05, -3.6158950406914599e-06, -2.8927160325531723e-05, -2.892716032553175e-05, -3.6158950406914616e-06, -5.7854320651063236e-05, -5.7854320651063209e-05, -7.2317900813829638e-06, -1.4463580162765887e-05, -1.446358016276589e-05, -2.8927160325531787e-05, -2.8927160325531787e-05, -0.00058577499659201329, -2.8927160325531787e-05, -2.892716032553176e-05, -9.7629166098669862e-05, -0.00034712592390638114, -2.8927160325531747e-05, -0.00025672854788909256, -4.3390740488297439e-05, -4.3390740488297439e-05, -2.8927160325531801e-05, -2.8927160325531842e-05, -3.6158950406914832e-05, -2.8927160325531869e-05, -3.6158950406914954e-05, -7.5933795854520841e-05, -2.8927160325531659e-05, -1.8079475203457578e-05, -8.3165585935903686e-05, -2.8927160325531632e-05, -4.3390740488297493e-05, -1.0847685122074326e-05, -1.8079475203457314e-05, -7.2317900813829672e-06, -3.615895040691476e-06, -3.6158950406914666e-06, -2.8927160325531896e-05, -4.3390740488297276e-05, -2.1695370244148713e-05, -1.4463580162765853e-05, -2.8927160325531828e-05, -2.8927160325531882e-05, -2.8927160325531459e-05, -5.7854320651063317e-05, -2.8927160325531591e-05, -1.4463580162765863e-05, -5.7854320651063283e-05, -2.8927160325531645e-05, -1.4463580162765856e-05, -2.8927160325531459e-05, -3.6158950406914548e-06, -2.8927160325531625e-05, -2.8927160325531611e-05, -5.7854320651063629e-05, -8.6781480976594634e-05, -2.8927160325531699e-05, -5.7854320651063676e-05, -5.7854320651063568e-05, -2.8927160325531598e-05, -2.8927160325531611e-05, -2.8927160325531632e-05, -2.8927160325531611e-05, -3.2543055366223186e-05, -0.00012294043138351009, -7.2317900813828875e-06, -2.8927160325531869e-05, -2.8927160325531652e-05, -3.2543055366223199e-05, -9.4013271057977695e-05, -2.8927160325531808e-05, -2.892716032553172e-05, -2.8927160325531882e-05, -1.446358016276586e-05, -1.446358016276586e-05, -3.6158950406914751e-06, -3.615895040691487e-06, -3.6158950406914768e-06, -7.2317900813829367e-06, -6.1470215691755044e-05, -0.00010847685122074497, -4.3390740488297554e-05, -2.1695370244148804e-05, -3.615895040691465e-06, -1.4463580162765856e-05, -5.7854320651063331e-05, -8.678148097659485e-05, -2.8927160325531855e-05, -1.4463580162765853e-05, -5.7854320651063412e-05, -5.7854320651063371e-05, -1.4463580162765853e-05, -4.339074048829754e-05, -2.8927160325531625e-05, -3.6158950406914819e-06, -7.2317900813828994e-06, -1.4463580162765856e-05, -1.4463580162765873e-05, -3.2543055366223254e-05, -1.8079475203457484e-05, -2.8927160325531794e-05, -5.7854320651063019e-05, -0.0002603444429297856, -1.4463580162765934e-05, -3.615895040691465e-06, -0.00021695370244148858, -2.8927160325531659e-05, -0.00017356296195318902, -0.00017356296195318913, -0.00018079475203457504, -0.00017356296195318902, -1.4463580162765934e-05, -1.4463580162765928e-05, -2.8927160325531706e-05, -2.8927160325531679e-05, -1.446358016276585e-05, -1.4463580162765846e-05, -2.8927160325531828e-05, -3.6158950406914819e-06, -2.8927160325531842e-05, -3.6158950406914633e-06, -3.61589504069147e-06, -0.00025311265284840234, -1.4463580162765846e-05, -1.446358016276585e-05, 0.014510586798294809, -7.2317900813829536e-06, -0.00026034444292978809, -0.00026034444292978852, -2.8927160325531652e-05, -3.6158950406914582e-06, -2.8927160325531679e-05, -0.00026034444292978885, -0.0002603444429297882, -2.8927160325531692e-05, -2.8927160325531665e-05, -7.231790081382913e-06, -7.2317900813829502e-06, -5.7854320651063249e-05, -2.8927160325531679e-05, -2.8927160325531686e-05, -1.0847685122074392e-05, -5.7854320651063249e-05, -5.7854320651064495e-06, -5.7854320651064232e-06, -5.7854320651064283e-06, -5.7854320651064461e-06, -2.892716032553182e-06, -2.892716032553182e-06, -5.7854320651063622e-06, -5.7854320651063605e-06, -7.2317900813830227e-07, -7.2317900813830142e-07, -0.00014535898063579788, -0.00014463580162765805, -3.6158950406914658e-06, -7.2317900813830216e-07, -2.1695370244149095e-06, -7.2317900813829689e-06, -5.7854320651063642e-05, -1.4463580162766028e-06, -6.653246874872284e-05, -7.2317900813829316e-07, -1.1570864130212858e-05, -1.1570864130212851e-05, -5.7854320651063588e-06, -5.7854320651063639e-06, -5.7854320651063534e-05, -5.7854320651063521e-05, -5.785432065106347e-06, -0.00016416163484739226, -1.4463580162766132e-06, -0.00014463580162765819, -1.1570864130212865e-05, -5.7854320651064249e-06, -5.7854320651064495e-06, -7.231790081382939e-07, -7.2317900813830227e-07, -5.7854320651064046e-06, -5.7854320651064097e-06, -1.4463580162766132e-06, -1.4463580162766132e-06, -7.2317900813829422e-07, -7.2317900813829888e-07, -5.7854320651063639e-06, -3.6158950406914645e-06, -2.1695370244148951e-06, -2.892716032553182e-06, -2.8927160325531803e-06, -7.2317900813830216e-07, -1.084768512207437e-05, -5.785432065106391e-06, -5.7854320651063927e-06, -6.5086110732446524e-06, -5.7854320651063571e-06, -1.0847685122074397e-05, -1.4463580162766045e-06, -7.2317900813830523e-07, -5.7854320651063521e-06, -5.785432065106347e-06, -7.2317900813829655e-07, -7.2317900813830047e-07, -5.7854320651063961e-06, -5.7854320651063893e-06, -1.4463580162765867e-06, -7.2317900813829782e-07, -5.7854320651063334e-06, -1.1570864130212699e-05, -7.2317900813829553e-06, -5.7854320651063571e-06, -1.1570864130212663e-05, -7.2317900813829676e-07, -5.7854320651063809e-06, -1.2294043138351147e-05, -5.7854320651064029e-06, -5.7854320651063859e-06, -1.157086413021285e-05, -2.3141728260425388e-05, -1.8079475203457318e-05, -5.7854320651063605e-06, -1.1570864130212836e-05, -1.1570864130212829e-05, -2.8927160325532006e-06, -5.7854320651063893e-06, -7.2317900813829519e-06, -7.95496908952116e-06, -2.8927160325532014e-06, -1.1570864130212752e-05, -5.7854320651064046e-06, -5.7854320651064046e-06, -5.7854320651064063e-06, -1.4463580162765939e-06, -5.7854320651064384e-06, -5.7854320651063605e-06, -7.2317900813830629e-07, -5.7854320651063588e-06, -1.4463580162765834e-06, -5.7854320651064351e-06, -5.7854320651063537e-06, -5.7854320651063588e-06, -7.231790081383029e-07, -1.1570864130212836e-05, -1.1570864130212843e-05, -7.2317900813830099e-07, -5.7854320651064012e-06, -5.7854320651064012e-06, -7.2317900813830152e-07, -5.7854320651064495e-06, -5.7854320651064418e-06, -5.7854320651063842e-06, -5.7854320651064444e-06, -1.7356296195319154e-05, -5.7854320651063927e-06, 0.001958368754038502, -5.7854320651063825e-06, -7.2317900813829824e-07, -5.7854320651063317e-06, -5.7854320651063842e-06, -1.1570864130212789e-05, -2.8927160325531803e-06, -1.3017222146489252e-05, -2.892716032553182e-06, -7.2317900813830523e-07, -1.4463580162765994e-06, -9.4013271057977962e-06, -5.7854320651063588e-06, -1.1570864130212753e-05, -6.0747036683617115e-05, -5.7854320651063961e-06, -6.3639752716169293e-05, -5.7854320651063893e-06, -5.7854320651063842e-06, -1.1570864130212829e-05, -5.7854320651063521e-05, -1.1570864130212836e-05, -5.8577499659202073e-05, -7.2317900813829411e-07, -1.1570864130212843e-05, -1.1570864130212823e-05, -2.8927160325532192e-06, -6.0747036683617115e-05, -5.7854320651063642e-05, -5.7854320651063338e-05, -5.785432065106369e-05, -7.2317900813829634e-07, -2.8927160325531718e-06, -7.2317900813829718e-07, -7.2317900813830396e-07, -7.2317900813830639e-07, -5.7854320651064063e-06, -5.785432065106408e-06, -5.7854320651063554e-06, -5.7854320651063571e-06, -7.2317900813829718e-07, -7.2317900813829803e-07, -7.2317900813829718e-07, -5.7854320651063792e-06, -7.2317900813829739e-06, -1.4463580162765914e-05, -1.1570864130212755e-05, -1.1570864130212775e-05, -5.7854320651063775e-06, -1.7356296195319141e-05, -2.169537024414849e-06, -6.3639752716169632e-05, -1.1570864130212768e-05, -5.2068888585956914e-05, -7.2317900813829591e-07, -7.2317900813829972e-07, -1.8079475203457318e-05, -1.1570864130212789e-05, -5.785432065106391e-06, -5.0622530569680915e-06, -2.8927160325531743e-06, -1.4463580162766041e-06, -5.2068888585956914e-05, -1.4463580162766045e-06, -2.892716032553182e-06, -2.892716032553182e-06, -5.2068888585956914e-05, -5.7854320651063724e-06, -7.231790081382993e-07, -5.7854320651063419e-06, -7.2317900813829718e-07, -5.7854320651063368e-06, -7.2317900813829604e-06, -2.1695370244148943e-06, -5.7854320651063402e-06, -1.0847685122074473e-05, -7.2317900813829401e-07, -5.7854320651063707e-06, -1.4463580162766132e-06, -1.4463580162766128e-06, -1.4463580162766096e-06, -7.2317900813830057e-07, -4.3390740488297429e-06, -2.1695370244148532e-06, -5.7854320651064164e-06, -5.7854320651064232e-06, -1.1570864130212762e-05, -1.8802654211595599e-05, -1.6633117187180578e-05, -7.2317900813829401e-07, -1.1570864130212694e-05, -5.7854320651064198e-06, -4.3390740488297319e-06, -1.4463580162765876e-06, -7.2317900813829803e-07, -7.2317900813830396e-07, -5.785432065106369e-05, -5.7854320651063338e-05, -0.00011715499931840341, -5.7854320651063331e-05, -5.7854320651063521e-05, -2.8927160325532014e-06, -1.4463580162765876e-06, -5.7854320651063741e-06, -6.5086110732446295e-06, -2.8927160325532006e-06, -7.9549690895211837e-06, -7.2317900813830205e-07, -7.2317900813829316e-07, -1.1570864130212741e-05, -5.7854320651063741e-06, -5.7854320651063825e-06, -7.2317900813829972e-07, -7.2317900813830216e-07, -2.892716032553204e-06, -2.8927160325532057e-06, -1.1570864130212694e-05, -5.7854320651064232e-06, -7.2317900813829612e-07, -0.00011715499931840463, -5.7854320651064198e-06, -5.7854320651064181e-06, -7.2317900813830099e-07, -2.8927160325532057e-06, -2.892716032553204e-06, -1.4463580162765884e-06, -1.4463580162765884e-06, -2.1695370244148909e-06, -7.2317900813830237e-07, -1.4463580162765884e-06, -1.4463580162765884e-06, -7.2317900813829761e-07, -7.2317900813829634e-07, -2.8927160325531633e-06, -8.6781480976594823e-06, -5.7854320651063741e-06, -7.2317900813829697e-07, -7.2317900813829316e-07, -1.3017222146489234e-05, -7.2317900813830036e-07, -2.8927160325531811e-06, -1.4463580162765872e-06, -1.1570864130212723e-05, -1.157086413021273e-05, -3.6158950406914802e-06, -2.8927160325531985e-06, -1.4463580162765867e-06, -4.3390740488297352e-06, -6.147021569175499e-05, -7.2317900813829909e-07, -2.8927160325531976e-06, -2.8927160325531993e-06, -1.1570864130212736e-05, -1.1570864130212716e-05, -2.8927160325531752e-06, -2.8927160325531887e-06, 0.00097918437701925102, -7.2317900813829718e-07, -3.3266234374361488e-05, -7.2317900813829291e-06, -7.2317900813829676e-07, -5.7854320651064181e-06, -5.785432065106347e-06, -5.7854320651064198e-06, -1.1570864130212716e-05, -5.785432065106347e-06, -1.1570864130212736e-05, -5.785432065106347e-06, -5.785432065106347e-06, -0.00022201595549845631, -5.7854320651064181e-06, -0.00014463580162765824, -5.7854320651063317e-06, -1.4463580162766052e-06, -4.339074048829752e-05, 0.002937553131057757, -3.6158950406914802e-06, -4.339074048829752e-05, -7.2317900813829528e-07, -5.7854320651064063e-06, -5.7854320651064046e-06, -0.00011715499931840463, -5.785432065106369e-06, -5.7854320651063673e-06, -0.00016560799286366925, -2.1695370244148867e-06, -0.00014463580162765835, -5.7854320651064012e-06, -5.7854320651064012e-06, -7.2317900813829824e-07, -5.7854320651064029e-06, -5.785432065106408e-06, -7.2317900813829634e-07, -1.157086413021273e-05, -1.1570864130212723e-05, -1.4463580162766096e-06, -2.892716032553204e-06, -2.8927160325532057e-06, -5.7854320651064198e-06, -5.7854320651064215e-06, -0.00011715499931840341, -5.7854320651064232e-06, -5.7854320651064164e-06, -1.9525833219734037e-05, -6.9425184781276509e-05, -5.7854320651064046e-06, -5.1345709577818768e-05, -8.6781480976596077e-06, -8.6781480976596077e-06, -5.7854320651063741e-06, -5.7854320651064418e-06, -7.2317900813829689e-06, -5.7854320651064495e-06, -7.2317900813829689e-06, -1.5186759170904265e-05, -5.7854320651063368e-06, -3.6158950406914802e-06, -1.6633117187180771e-05, -5.7854320651063707e-06, -8.6781480976594823e-06, -2.1695370244148515e-06, -3.6158950406914819e-06, -1.4463580162766105e-06, -7.2317900813829634e-07, -7.231790081382993e-07, -5.7854320651064495e-06, -8.6781480976595806e-06, -4.3390740488297319e-06, -2.892716032553187e-06, -5.7854320651064266e-06, -5.785432065106347e-06, -5.785432065106347e-06, -1.1570864130212694e-05, -5.7854320651063588e-06, -2.8927160325531993e-06, -1.1570864130212694e-05, -5.7854320651063605e-06, -2.8927160325531976e-06, -5.785432065106347e-06, -7.2317900813829507e-07, -5.785432065106347e-06, -5.7854320651063521e-06, -1.1570864130212843e-05, -1.7356296195319053e-05, -5.7854320651063385e-06, -1.1570864130212865e-05, -1.1570864130212845e-05, -5.7854320651063605e-06, -5.7854320651063622e-06, -5.7854320651063707e-06, -5.7854320651063656e-06, -6.5086110732446177e-06, -2.4588086276702226e-05, -1.4463580162765863e-06, -5.7854320651063927e-06, -5.7854320651063571e-06, -6.5086110732446626e-06, -1.8802654211595521e-05, -5.7854320651064232e-06, -5.7854320651063419e-06, -5.7854320651064495e-06, -2.8927160325531985e-06, -2.8927160325531993e-06, -7.2317900813830184e-07, -7.2317900813830639e-07, -7.2317900813829676e-07, -1.4463580162766011e-06, -1.2294043138351126e-05, -2.1695370244148777e-05, -8.6781480976595162e-06, -4.3390740488297429e-06, -7.2317900813829888e-07, -2.8927160325531968e-06, -1.1570864130212768e-05, -1.7356296195319066e-05, -5.785432065106391e-06, -2.8927160325531968e-06, -1.1570864130212782e-05, -1.1570864130212775e-05, -2.8927160325531968e-06, -8.6781480976595027e-06, -5.785432065106369e-06, -7.2317900813830523e-07, -1.4463580162765939e-06, -2.8927160325531968e-06, -2.8927160325531752e-06, -6.5086110732446202e-06, -3.6158950406914836e-06, -5.7854320651064164e-06, -1.1570864130212699e-05, -5.2068888585956969e-05, -2.8927160325532192e-06, -7.2317900813829739e-07, -4.339074048829752e-05, -5.7854320651063825e-06, -3.4712592390637611e-05, -3.4712592390638255e-05, -3.6158950406914622e-05, -3.4712592390637611e-05, -2.8927160325532192e-06, -2.8927160325532184e-06, -5.785432065106391e-06, -5.7854320651063859e-06, -2.8927160325531913e-06, -2.8927160325531913e-06, -5.7854320651064351e-06, -7.2317900813830481e-07, -5.7854320651064384e-06, -7.2317900813829824e-07, -7.2317900813830163e-07, -5.0622530569680669e-05, -2.8927160325531913e-06, -2.8927160325531913e-06, -4.4113919496436391e-05, -1.4463580162766075e-06, -5.2068888585956914e-05, -5.2068888585956914e-05, -5.7854320651063809e-06, -7.2317900813829739e-07, -5.7854320651063859e-06, -5.2068888585956914e-05, -5.2068888585956901e-05, -5.7854320651063825e-06, -5.7854320651063775e-06, -1.4463580162765825e-06, -1.4463580162765918e-06, -1.1570864130212707e-05, -5.7854320651063792e-06, -5.7854320651063809e-06, -2.1695370244148816e-06, -1.1570864130212707e-05, -2.4105966937943348e-06, -2.4105966937943306e-06, -2.4105966937943297e-06, -2.4105966937943357e-06, -1.2052983468971568e-06, -1.2052983468971568e-06, -2.4105966937943119e-06, -2.4105966937943128e-06, -3.0132458672429063e-07, -3.0132458672429069e-07, -6.0566241931582436e-05, -6.0264917344858053e-05, -1.5066229336214509e-06, -3.0132458672429063e-07, -9.039737601728601e-07, -3.0132458672429162e-06, -2.4105966937942879e-05, -6.0264917344858137e-07, -2.7721861978634897e-05, -3.0132458672428899e-07, -4.8211933875886595e-06, -4.8211933875886612e-06, -2.4105966937943128e-06, -2.4105966937943119e-06, -2.4105966937943109e-05, -2.4105966937943109e-05, -2.410596693794334e-06, -6.8400681186413939e-05, -6.0264917344858392e-07, -6.026491734485789e-05, -4.8211933875886578e-06, -2.4105966937943306e-06, -2.410596693794334e-06, -3.0132458672428857e-07, -3.013245867242909e-07, -2.4105966937943272e-06, -2.4105966937943255e-06, -6.0264917344858392e-07, -6.0264917344858392e-07, -3.0132458672428878e-07, -3.0132458672429005e-07, -2.4105966937943102e-06, -1.506622933621445e-06, -9.0397376017287238e-07, -1.2052983468971568e-06, -1.2052983468971572e-06, -3.0132458672429063e-07, -4.5198688008644251e-06, -2.4105966937943196e-06, -2.4105966937943191e-06, -2.7119212805186115e-06, -2.4105966937943136e-06, -4.5198688008643972e-06, -6.0264917344858137e-07, -3.0132458672429153e-07, -2.4105966937943136e-06, -2.4105966937943128e-06, -3.01324586724291e-07, -3.0132458672429021e-07, -2.4105966937943187e-06, -2.41059669379432e-06, -6.0264917344858582e-07, -3.0132458672428984e-07, -2.410596693794317e-06, -4.8211933875886527e-06, -3.0132458672429124e-06, -2.4105966937943246e-06, -4.8211933875886459e-06, -3.0132458672429111e-07, -2.4105966937943179e-06, -5.1225179743129201e-06, -2.4105966937943238e-06, -2.4105966937943204e-06, -4.8211933875886578e-06, -9.6423867751773697e-06, -7.5331146681072498e-06, -2.4105966937943102e-06, -4.8211933875886569e-06, -4.8211933875886586e-06, -1.2052983468971678e-06, -2.4105966937943196e-06, -3.0132458672429086e-06, -3.3145704539671764e-06, -1.2052983468971678e-06, -4.8211933875886874e-06, -2.4105966937943225e-06, -2.4105966937943234e-06, -2.410596693794323e-06, -6.0264917344858561e-07, -2.4105966937943323e-06, -2.4105966937943102e-06, -3.0132458672429164e-07, -2.4105966937943107e-06, -6.0264917344858201e-07, -2.4105966937943323e-06, -2.4105966937943255e-06, -2.4105966937943238e-06, -3.0132458672429111e-07, -4.8211933875886612e-06, -4.8211933875886578e-06, -3.0132458672429058e-07, -2.410596693794323e-06, -2.4105966937943234e-06, -3.0132458672429048e-07, -2.410596693794334e-06, -2.4105966937943357e-06, -2.4105966937943204e-06, -2.4105966937943357e-06, -7.2317900813828892e-06, -2.4105966937943323e-06, -2.410596693794317e-06, -2.4105966937943174e-06, -3.0132458672428899e-07, -2.4105966937943162e-06, -2.410596693794317e-06, -4.8211933875886459e-06, -1.2052983468971572e-06, -5.4238425610372078e-06, -1.2052983468971568e-06, -3.0132458672429175e-07, -6.0264917344858053e-07, -3.9172196274157522e-06, -2.4105966937943238e-06, -4.8211933875886645e-06, -2.531126528484007e-05, -2.4105966937943187e-06, -2.6516563631737692e-05, -2.4105966937943187e-06, -2.4105966937943204e-06, -4.8211933875886586e-06, -2.4105966937943296e-05, -4.8211933875886569e-06, -2.4407291524667415e-05, -3.0132458672428862e-07, -4.8211933875886552e-06, -4.8211933875886603e-06, -1.2052983468971661e-06, -2.531126528484007e-05, -2.4105966937942879e-05, -2.4105966937943153e-05, -2.4105966937943323e-05, -3.013245867242909e-07, -1.2052983468971543e-06, -3.0132458672428963e-07, -3.0132458672429132e-07, -3.0132458672429185e-07, -2.4105966937943255e-06, -2.4105966937943255e-06, -2.4105966937943255e-06, -2.4105966937943246e-06, -3.0132458672428963e-07, -3.0132458672428984e-07, -3.0132458672428878e-07, -2.4105966937943297e-06, -3.0132458672429162e-06, -6.0264917344858273e-06, -4.8211933875886747e-06, -4.8211933875886425e-06, -2.4105966937943306e-06, -7.2317900813829638e-06, -9.0397376017287608e-07, -2.6516563631737553e-05, -4.8211933875886442e-06, -2.1695370244148679e-05, -3.013245867242909e-07, -3.0132458672429026e-07, -7.5331146681072498e-06, -4.8211933875886459e-06, -2.4105966937943196e-06, -2.1092721070700196e-06, -1.2052983468971541e-06, -6.0264917344858137e-07, -2.1695370244148686e-05, -6.0264917344858137e-07, -1.2052983468971568e-06, -1.2052983468971568e-06, -2.1695370244148686e-05, -2.4105966937943153e-06, -3.0132458672429005e-07, -2.4105966937943204e-06, -3.0132458672428878e-07, -2.4105966937943213e-06, -3.0132458672429145e-06, -9.0397376017287746e-07, -2.4105966937943204e-06, -4.5198688008643277e-06, -3.0132458672428878e-07, -2.4105966937943153e-06, -6.0264917344858392e-07, -6.0264917344858392e-07, -6.0264917344858307e-07, -3.0132458672429048e-07, -1.8079475203457422e-06, -9.0397376017287439e-07, -2.410596693794328e-06, -2.4105966937943263e-06, -4.821193387588651e-06, -7.8344392548315248e-06, -6.930465494658588e-06, -3.0132458672428878e-07, -4.8211933875886662e-06, -2.4105966937943289e-06, -1.8079475203457448e-06, 0.00024491662408950249, -3.0132458672428984e-07, -3.0132458672429132e-07, -2.4105966937943323e-05, -2.4105966937943153e-05, -4.8814583049335338e-05, -2.4105966937943153e-05, -2.4105966937943296e-05, -1.2052983468971678e-06, -6.0264917344858032e-07, -2.4105966937943255e-06, -2.7119212805186124e-06, -1.2052983468971678e-06, -3.3145704539671904e-06, -3.0132458672429069e-07, -3.0132458672428899e-07, -4.8211933875886307e-06, -2.4105966937943086e-06, -2.410596693794317e-06, -3.0132458672429026e-07, -3.0132458672429063e-07, -1.2052983468971632e-06, -1.2052983468971627e-06, -4.8211933875886645e-06, -2.4105966937943289e-06, -3.0132458672428942e-07, -4.881458304933485e-05, -2.4105966937943272e-06, -2.4105966937943272e-06, -3.0132458672429058e-07, -1.2052983468971627e-06, -1.2052983468971632e-06, -6.0264917344857756e-07, -6.0264917344857756e-07, -9.0397376017286677e-07, -3.0132458672429069e-07, -6.0264917344857756e-07, -6.0264917344857756e-07, -3.0132458672428889e-07, -3.01324586724291e-07, -1.2052983468971572e-06, -3.6158950406914717e-06, -2.4105966937943086e-06, -3.0132458672428963e-07, -3.0132458672428899e-07, -5.4238425610372036e-06, -3.0132458672429016e-07, -1.2052983468971661e-06, -6.0264917344858328e-07, -4.821193387588629e-06, -4.8211933875886273e-06, -1.5066229336214587e-06, -1.2052983468971606e-06, -6.026491734485854e-07, -1.8079475203457354e-06, -2.5612589871564596e-05, -3.0132458672429005e-07, -1.2052983468971608e-06, -1.2052983468971604e-06, -4.8211933875886256e-06, -4.8211933875886307e-06, -1.2052983468971615e-06, 0.00098087179470490748, -1.2052983468971551e-06, -3.0132458672428963e-07, -1.3860930989317317e-05, -3.0132458672428887e-06, -3.0132458672429111e-07, -2.4105966937943272e-06, -2.4105966937943344e-06, -2.4105966937943272e-06, -4.8211933875886307e-06, -2.4105966937943073e-06, -4.8211933875886256e-06, -2.4105966937943344e-06, -2.4105966937943344e-06, -9.2506648124356686e-05, -2.4105966937943306e-06, -6.0264917344857863e-05, -2.4105966937943162e-06, -6.0264917344858148e-07, -1.8079475203457314e-05, -3.6158950406914802e-06, 0.0012260897433811367, -1.8079475203457355e-05, -3.013245867242891e-07, -2.410596693794323e-06, -2.4105966937943234e-06, -4.881458304933485e-05, -2.4105966937943136e-06, -2.4105966937943141e-06, -6.9003330359862326e-05, -9.039737601728746e-07, -6.0264917344857849e-05, -2.4105966937943234e-06, -2.410596693794323e-06, -3.0132458672428963e-07, -2.4105966937943238e-06, -2.4105966937943225e-06, -3.0132458672428942e-07, -4.8211933875886273e-06, -4.821193387588629e-06, -6.0264917344858307e-07, -1.2052983468971632e-06, -1.2052983468971627e-06, -2.4105966937943289e-06, -2.4105966937943289e-06, -4.8814583049335338e-05, -2.4105966937943263e-06, -2.410596693794328e-06, -8.1357638415557998e-06, -2.8927160325531747e-05, -2.4105966937943225e-06, -2.1394045657424475e-05, -3.6158950406914971e-06, -3.6158950406914971e-06, -2.4105966937943306e-06, -2.4105966937943357e-06, -3.0132458672429234e-06, -2.410596693794334e-06, -3.0132458672429179e-06, -6.3278163212100854e-06, -2.410596693794317e-06, -1.5066229336214606e-06, -6.9304654946586617e-06, -2.4105966937943132e-06, -3.6158950406914819e-06, -9.0397376017287503e-07, -1.5066229336214376e-06, -6.0264917344858328e-07, -3.013245867242909e-07, -3.0132458672429005e-07, -2.410596693794334e-06, -3.6158950406914954e-06, -1.8079475203457431e-06, -1.2052983468971577e-06, -2.4105966937943306e-06, -2.410596693794334e-06, -2.4105966937943344e-06, -4.8211933875886213e-06, -2.4105966937943128e-06, -1.2052983468971604e-06, -4.8211933875886171e-06, -2.4105966937943119e-06, -1.2052983468971608e-06, -2.4105966937943344e-06, -3.013245867242891e-07, -2.4105966937943128e-06, -2.4105966937943136e-06, -4.8211933875886578e-06, -7.2317900813829841e-06, -2.4105966937943204e-06, -4.8211933875886578e-06, -4.821193387588662e-06, -2.4105966937943128e-06, -2.4105966937943119e-06, -2.4105966937943132e-06, -2.4105966937943145e-06, -2.7119212805185891e-06, -1.024503594862584e-05, -6.026491734485873e-07, -2.4105966937943323e-06, -2.4105966937943119e-06, -2.7119212805185899e-06, -7.8344392548315147e-06, -2.4105966937943306e-06, -2.4105966937943204e-06, -2.4105966937943348e-06, -1.2052983468971606e-06, -1.2052983468971606e-06, -3.013245867242909e-07, -3.0132458672429185e-07, -3.0132458672429111e-07, -6.0264917344858095e-07, -5.1225179743129192e-06, -9.0397376017286571e-06, -3.6158950406914751e-06, -1.8079475203457422e-06, -3.0132458672429005e-07, -1.2052983468971598e-06, -4.8211933875886442e-06, -7.2317900813829519e-06, -2.4105966937943331e-06, -1.20529834689716e-06, -4.8211933875886408e-06, -4.8211933875886425e-06, -1.20529834689716e-06, -3.6158950406914692e-06, -2.4105966937943136e-06, -3.0132458672429159e-07, -6.0264917344858646e-07, -1.2052983468971598e-06, -1.2052983468971615e-06, -2.711921280518598e-06, -1.5066229336214581e-06, -2.4105966937943272e-06, -4.8211933875886527e-06, -2.169537024414874e-05, -1.2052983468971661e-06, -3.0132458672428963e-07, -1.8079475203457314e-05, -2.4105966937943174e-06, -1.4463580162766007e-05, -1.4463580162766e-05, -1.5066229336214506e-05, -1.4463580162766007e-05, -1.2052983468971661e-06, -1.2052983468971666e-06, -2.4105966937943191e-06, -2.4105966937943204e-06, -1.2052983468971555e-06, -1.2052983468971555e-06, -2.4105966937943323e-06, -3.0132458672429148e-07, -2.4105966937943323e-06, -3.0132458672428899e-07, -3.0132458672429048e-07, -2.1092721070700241e-05, -1.2052983468971555e-06, -1.2052983468971555e-06, -1.8380799790181586e-05, -6.0264917344858222e-07, -2.1695370244148686e-05, -2.1695370244148686e-05, -2.4105966937943179e-06, -3.0132458672428947e-07, -2.4105966937943166e-06, -2.1695370244148679e-05, -2.1695370244148906e-05, -2.410596693794317e-06, -2.4105966937943187e-06, -6.0264917344857883e-07, -6.026491734485818e-07, -4.8211933875886205e-06, -2.4105966937943187e-06, -2.4105966937943179e-06, -9.0397376017286454e-07, -4.8211933875886205e-06, -2.8927160325532211e-05, -2.892716032553213e-05, -2.8927160325532157e-05, -2.8927160325532197e-05, -1.4463580162765978e-05, -1.4463580162765982e-05, -2.892716032553193e-05, -2.8927160325531923e-05, -3.6158950406915132e-06, -3.6158950406915128e-06, -0.0007267949031789778, -0.0007231790081382904, -1.8079475203457345e-05, -3.6158950406915132e-06, -1.0847685122074407e-05, -3.6158950406914723e-05, -0.00028927160325531768, -7.2317900813830256e-06, -0.00033266234374361491, -3.6158950406914921e-06, -5.7854320651064279e-05, -5.7854320651064252e-05, -2.8927160325531909e-05, -2.8927160325531936e-05, -0.00028927160325531757, -0.00028927160325531757, -2.8927160325532197e-05, -0.00082080817423696114, -7.2317900813830561e-06, -0.00072317900813828433, -5.785432065106432e-05, -2.8927160325532143e-05, -2.8927160325532218e-05, -3.6158950406914878e-06, -3.6158950406915145e-06, -2.8927160325532062e-05, -2.8927160325532089e-05, -7.2317900813830561e-06, -7.2317900813830544e-06, -3.6158950406914912e-06, -3.615895040691506e-06, -2.8927160325531903e-05, -1.8079475203457541e-05, -1.0847685122074341e-05, -1.4463580162765982e-05, -1.4463580162765975e-05, -3.6158950406915132e-06, -5.4238425610371373e-05, -2.8927160325532018e-05, -2.8927160325532025e-05, -3.2543055366223091e-05, -2.8927160325531923e-05, -5.4238425610371543e-05, -7.2317900813830265e-06, -3.6158950406915247e-06, -2.8927160325531936e-05, -2.8927160325531943e-05, -3.615895040691517e-06, -3.6158950406915081e-06, -2.8927160325532031e-05, -2.8927160325532004e-05, -7.2317900813829384e-06, -3.6158950406914904e-06, -2.8927160325531994e-05, -5.785432065106367e-05, -3.6158950406914947e-05, -2.8927160325532089e-05, -5.7854320651064002e-05, -3.6158950406915179e-06, -2.8927160325531977e-05, -6.1470215691755112e-05, -2.8927160325532045e-05, -2.892716032553193e-05, -5.7854320651064313e-05, -0.0001157086413021272, -9.0397376017286232e-05, -2.8927160325531923e-05, -5.7854320651064232e-05, -5.7854320651064205e-05, -1.4463580162766112e-05, -2.8927160325532021e-05, -3.6158950406914838e-05, -3.977484544760645e-05, -1.4463580162766112e-05, -5.7854320651063561e-05, -2.8927160325532075e-05, -2.8927160325532058e-05, -2.8927160325532065e-05, -7.2317900813829536e-06, -2.892716032553217e-05, -2.8927160325531923e-05, -3.6158950406915251e-06, -2.8927160325531916e-05, -7.2317900813829968e-06, -2.8927160325532157e-05, -2.8927160325532062e-05, -2.8927160325532089e-05, -3.6158950406915179e-06, -5.7854320651064232e-05, -5.7854320651064286e-05, -3.6158950406915128e-06, -2.8927160325532062e-05, -2.8927160325532048e-05, -3.6158950406915111e-06, -2.8927160325532197e-05, -2.892716032553217e-05, -2.892716032553193e-05, -2.8927160325532184e-05, -8.6781480976595216e-05, -2.8927160325532197e-05, -2.892716032553197e-05, -2.8927160325531987e-05, -3.6158950406915043e-06, -2.8927160325532001e-05, -2.8927160325531994e-05, -5.7854320651064124e-05, -1.4463580162765975e-05, -6.5086110732445965e-05, -1.4463580162765982e-05, -3.615895040691523e-06, -7.2317900813829807e-06, -4.7006635528989356e-05, -2.8927160325532089e-05, -5.7854320651063636e-05, -0.00030373518341808461, -2.8927160325532031e-05, -0.00031819876358085117, -2.892716032553193e-05, -2.892716032553193e-05, -5.7854320651064205e-05, -0.00028927160325531784, -5.7854320651064232e-05, -0.00029288749829600909, -3.6158950406914882e-06, -5.7854320651064286e-05, -5.7854320651064178e-05, -1.4463580162766099e-05, -0.0003037351834180845, -0.00028927160325531768, -0.00028927160325531773, -0.00028927160325532153, -3.6158950406915162e-06, -1.4463580162766058e-05, -3.6158950406914912e-06, -3.6158950406915196e-06, -3.6158950406915281e-06, -2.8927160325532075e-05, -2.8927160325532089e-05, -2.8927160325532075e-05, -2.8927160325532089e-05, -3.6158950406914912e-06, -3.6158950406914912e-06, -3.6158950406914993e-06, -2.8927160325532157e-05, -3.6158950406914669e-05, -7.231790081383007e-05, -5.7854320651063697e-05, -5.7854320651064015e-05, -2.8927160325532143e-05, -8.6781480976594878e-05, -1.0847685122074319e-05, -0.00031819876358085063, -5.7854320651063988e-05, -0.00026034444292978614, -3.6158950406915153e-06, -3.6158950406914904e-06, -9.0397376017286232e-05, -5.7854320651064124e-05, -2.8927160325532018e-05, -2.5311265284840443e-05, -1.4463580162765994e-05, -7.2317900813830256e-06, -0.00026034444292978581, -7.2317900813830265e-06, -1.4463580162765982e-05, -1.4463580162765978e-05, -0.00026034444292978538, -2.8927160325531987e-05, -3.6158950406915077e-06, -2.8927160325532041e-05, -3.6158950406914993e-06, -2.8927160325532021e-05, -3.6158950406914669e-05, -1.0847685122074305e-05, -2.8927160325532035e-05, -5.4238425610371766e-05, -3.6158950406914912e-06, -2.8927160325531977e-05, -7.2317900813830561e-06, -7.2317900813830527e-06, -7.2317900813830459e-06, -3.6158950406915094e-06, -2.1695370244148797e-05, -1.0847685122074326e-05, -2.8927160325532089e-05, -2.8927160325532116e-05, -5.7854320651064015e-05, -9.4013271057978955e-05, -8.3165585935903713e-05, -3.6158950406914904e-06, -5.785432065106367e-05, -2.8927160325532116e-05, -2.1695370244148719e-05, -7.2317900813829723e-06, -3.6158950406914912e-06, -3.6158950406915196e-06, -0.00028927160325532153, -0.00028927160325531773, -0.00058577499659201655, -0.00028927160325531773, -0.00028927160325531784, -1.4463580162766112e-05, -7.2317900813829773e-06, -2.8927160325532204e-05, -3.2543055366223132e-05, -1.4463580162766112e-05, -3.9774845447606261e-05, -3.6158950406915128e-06, -3.6158950406914921e-06, -5.7854320651063778e-05, -2.8927160325531977e-05, -2.8927160325532021e-05, -3.6158950406914912e-06, -3.6158950406915132e-06, -1.4463580162766051e-05, -1.4463580162766058e-05, -5.785432065106367e-05, -2.892716032553213e-05, -3.6158950406914971e-06, -0.00058577499659201958, -2.8927160325532102e-05, -2.8927160325532096e-05, -3.6158950406915128e-06, -1.4463580162766051e-05, -1.4463580162766051e-05, -7.2317900813829773e-06, -7.231790081382979e-06, -1.0847685122074385e-05, -3.6158950406915141e-06, -7.231790081382979e-06, -7.2317900813829773e-06, -3.6158950406915026e-06, -3.615895040691517e-06, -1.4463580162766044e-05, -4.339074048829752e-05, -2.8927160325531964e-05, -3.6158950406914912e-06, -3.6158950406914921e-06, -6.5086110732446046e-05, -3.6158950406915081e-06, -1.4463580162765982e-05, -7.2317900813829485e-06, -5.7854320651063846e-05, -5.7854320651063873e-05, -1.8079475203457345e-05, -1.4463580162766021e-05, -7.2317900813829409e-06, -2.1695370244148753e-05, -0.00030735107845877879, -3.615895040691506e-06, -1.4463580162766017e-05, -1.4463580162766024e-05, -5.7854320651063927e-05, -5.7854320651063819e-05, -1.4463580162766038e-05, -1.4463580162766004e-05, -1.4463580162765997e-05, -3.6158950406914912e-06, -0.00016633117187180748, -3.6158950406914893e-05, -3.6158950406915179e-06, -2.8927160325532096e-05, -2.8927160325531781e-05, -2.8927160325532102e-05, -5.7854320651063819e-05, -2.8927160325531997e-05, -5.7854320651063927e-05, -2.8927160325531781e-05, -2.8927160325531777e-05, -0.0011100797774922877, -2.8927160325532102e-05, -0.00072317900813828845, -2.8927160325532001e-05, -7.2317900813830282e-06, -0.00021695370244149127, -4.339074048829752e-05, -1.8079475203457355e-05, 0.014514202693335712, -3.6158950406914954e-06, -2.8927160325532065e-05, -2.8927160325532058e-05, -0.00058577499659201958, -2.892716032553195e-05, -2.8927160325531936e-05, -0.00082803996431834754, -1.0847685122074305e-05, -0.0007231790081382878, -2.8927160325532048e-05, -2.8927160325532062e-05, -3.6158950406915009e-06, -2.8927160325532045e-05, -2.8927160325532072e-05, -3.6158950406914912e-06, -5.7854320651063873e-05, -5.7854320651063846e-05, -7.2317900813830459e-06, -1.4463580162766051e-05, -1.4463580162766051e-05, -2.8927160325532116e-05, -2.8927160325532116e-05, -0.00058577499659201655, -2.8927160325532116e-05, -2.8927160325532089e-05, -9.7629166098670228e-05, -0.00034712592390638027, -2.8927160325532075e-05, -0.00025672854788909202, -4.3390740488297195e-05, -4.3390740488297208e-05, -2.892716032553213e-05, -2.892716032553217e-05, -3.6158950406914913e-05, -2.8927160325532197e-05, -3.6158950406915035e-05, -7.5933795854521885e-05, -2.8927160325531977e-05, -1.8079475203457619e-05, -8.3165585935903632e-05, -2.8927160325531957e-05, -4.3390740488297493e-05, -1.0847685122074326e-05, -1.8079475203457548e-05, -7.2317900813830493e-06, -3.6158950406915162e-06, -3.6158950406915077e-06, -2.8927160325532218e-05, -4.3390740488297276e-05, -2.1695370244148713e-05, -1.4463580162765965e-05, -2.892716032553215e-05, -2.8927160325532197e-05, -2.8927160325531777e-05, -5.7854320651063961e-05, -2.8927160325531909e-05, -1.4463580162766024e-05, -5.7854320651063785e-05, -2.8927160325531923e-05, -1.4463580162766017e-05, -2.8927160325531781e-05, -3.6158950406914946e-06, -2.8927160325531943e-05, -2.8927160325531936e-05, -5.7854320651064286e-05, -8.6781480976594634e-05, -2.8927160325532021e-05, -5.785432065106432e-05, -5.7854320651064212e-05, -2.8927160325531923e-05, -2.892716032553193e-05, -2.8927160325531957e-05, -2.892716032553193e-05, -3.2543055366222847e-05, -0.00012294043138351022, -7.2317900813829316e-06, -2.8927160325532197e-05, -2.892716032553193e-05, -3.2543055366222874e-05, -9.4013271057978982e-05, -2.892716032553213e-05, -2.8927160325532041e-05, -2.8927160325532211e-05, -1.4463580162766021e-05, -1.4463580162766024e-05, -3.6158950406915162e-06, -3.6158950406915272e-06, -3.6158950406915179e-06, -7.2317900813830188e-06, -6.1470215691755112e-05, -0.00010847685122074409, -4.3390740488297554e-05, -2.1695370244148797e-05, -3.615895040691506e-06, -1.4463580162766017e-05, -5.7854320651063988e-05, -8.678148097659485e-05, -2.8927160325532184e-05, -1.4463580162766017e-05, -5.7854320651064069e-05, -5.7854320651064015e-05, -1.4463580162766017e-05, -4.339074048829754e-05, -2.892716032553195e-05, -3.615895040691523e-06, -7.2317900813829435e-06, -1.4463580162766017e-05, -1.4463580162766038e-05, -3.2543055366222928e-05, -1.8079475203457551e-05, -2.8927160325532116e-05, -5.7854320651063656e-05, -0.00026034444292978484, -1.4463580162766099e-05, -3.6158950406914912e-06, -0.00021695370244149262, -2.8927160325531987e-05, -0.00017356296195318902, -0.00017356296195318913, -0.00018079475203457249, -0.00017356296195318902, -1.4463580162766095e-05, -1.4463580162766092e-05, -2.8927160325532035e-05, -2.8927160325532008e-05, -1.4463580162766011e-05, -1.4463580162766011e-05, -2.8927160325532157e-05, -3.615895040691523e-06, -2.892716032553217e-05, -3.6158950406915043e-06, -3.6158950406915111e-06, 0.014478043742928574, -1.4463580162766011e-05, -1.4463580162766011e-05, -0.00022056959748218102, -7.2317900813830358e-06, -0.00026034444292978538, -0.00026034444292978581, -2.8927160325531977e-05, -3.6158950406914984e-06, -2.8927160325532001e-05, -0.00026034444292978614, -0.0002603444429297856, -2.8927160325532021e-05, -2.8927160325531994e-05, -7.2317900813829943e-06, -7.2317900813830307e-06, -5.78543206510639e-05, -2.8927160325532001e-05, -2.8927160325532008e-05, -1.0847685122074392e-05, -5.78543206510639e-05, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -1.2113248386316456e-05, -1.2052983468971483e-05, -3.0132458672428815e-07, -6.0264917344857666e-08, -1.8079475203457363e-07, -6.026491734485801e-07, -4.8211933875886544e-06, -1.2052983468971536e-07, -5.5443723957269463e-06, -6.0264917344857679e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886544e-06, -4.8211933875886544e-06, -4.8211933875886122e-07, -1.3680136237282682e-05, -1.2052983468971531e-07, -1.2052983468971644e-05, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886101e-07, -3.0132458672428815e-07, -1.8079475203457377e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857666e-08, -9.0397376017287524e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610371807e-07, -4.8211933875886144e-07, -9.0397376017287196e-07, -1.2052983468971533e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344857883e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344857666e-08, -4.8211933875886144e-07, -1.024503594862579e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6423867751772266e-07, -1.9284773550354445e-06, -1.5066229336214392e-06, -4.8211933875886144e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -6.0264917344857904e-07, -6.6291409079343303e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -1.2052983468971533e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.4463580162765889e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.0847685122074429e-06, -2.4105966937943072e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -7.8344392548315276e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -5.0622530569680771e-06, -4.8211933875886144e-07, -5.303312726347471e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -4.8211933875886239e-06, -9.6423867751772266e-07, -4.8814583049335024e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -5.0622530569680754e-06, -4.8211933875886544e-06, -4.8211933875886197e-06, -4.8211933875886324e-06, -6.0264917344857666e-08, -2.4105966937943061e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -6.0264917344858095e-07, -1.2052983468971589e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -4.8211933875886133e-07, -1.4463580162765903e-06, -1.8079475203457644e-07, -5.3033127263475125e-06, -9.6423867751772266e-07, -4.3390740488297683e-06, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.5066229336214401e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.2185442141400565e-07, -2.4105966937943061e-07, -1.2052983468971533e-07, -4.3390740488297683e-06, -1.2052983468971533e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297666e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857862e-07, -1.8079475203457377e-07, -4.8211933875886144e-07, -9.0397376017286941e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -3.6158950406914944e-07, -1.8079475203457599e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -1.5668878509663013e-06, -1.3860930989317372e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -3.6158950406915029e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886324e-06, -4.8211933875886197e-06, -9.762916609867032e-06, -4.8211933875886197e-06, -4.8211933875886239e-06, -2.4105966937943061e-07, -1.2052983468971536e-07, -4.8211933875886112e-07, -5.4238425610371669e-07, -2.4105966937943061e-07, -6.6291409079343674e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.7629166098670117e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.8079475203457377e-07, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943061e-07, -7.2317900813829549e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.0847685122074404e-06, -6.0264917344857679e-08, -2.4105966937943051e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.0132458672428947e-07, -2.4105966937943072e-07, -1.2052983468971533e-07, -3.6158950406914743e-07, -5.1225179743129167e-06, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, -2.7721861978634638e-06, -6.0264917344857629e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.8501329624871446e-05, -4.8211933875886133e-07, -1.2052983468971561e-05, -4.8211933875886144e-07, -1.2052983468971533e-07, -3.6158950406914548e-06, -7.2317900813829528e-07, -3.013245867242891e-07, -3.6158950406914954e-06, 0.00024545900834560644, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670117e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, 0.00023171860719097895, -1.8079475203457366e-07, -1.2052983468971572e-05, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.762916609867032e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.627152768311154e-06, -5.7854320651063622e-06, -4.8211933875886144e-07, -4.2788091314848821e-06, -7.2317900813829464e-07, -7.2317900813829464e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344858137e-07, -4.8211933875886122e-07, -6.0264917344857989e-07, -1.265563264242018e-06, -4.8211933875886144e-07, -3.0132458672429026e-07, -1.3860930989317306e-06, -4.8211933875886144e-07, -7.2317900813829528e-07, -1.8079475203457604e-07, -3.0132458672428899e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -7.231790081382921e-07, -3.6158950406914796e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.4463580162765901e-06, -4.8211933875886144e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610372294e-07, -2.0490071897251702e-06, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -5.4238425610372061e-07, -1.5668878509663089e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.0245035948625728e-06, -1.8079475203457282e-06, -7.2317900813829528e-07, -3.6158950406914944e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -9.6423867751772266e-07, -1.4463580162765895e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -7.2317900813829517e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -5.4238425610372188e-07, -3.0132458672428995e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.3390740488297615e-06, -2.4105966937943061e-07, -6.0264917344857679e-08, -3.6158950406914548e-06, -4.8211933875886144e-07, -2.892716032553223e-06, -2.8927160325531794e-06, -3.0132458672428785e-06, -2.892716032553223e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.2185442141400628e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -3.676159958036327e-06, -1.2052983468971533e-07, -4.3390740488297666e-06, -4.3390740488297683e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.3390740488297683e-06, -4.3390740488297598e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.8079475203457371e-07, -9.6423867751772287e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6905987090532028e-05, -9.6423867751772302e-05, -2.4105966937943153e-06, -4.8211933875886122e-07, -1.4463580162765999e-06, -4.8211933875886612e-06, -3.8569547100709398e-05, -9.6423867751772245e-07, -4.4354979165815333e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100709404e-05, -3.8569547100709398e-05, -3.8569547100708889e-06, -0.00010944108989826102, -9.6423867751772224e-07, -9.6423867751773589e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708873e-06, -2.4105966937943149e-06, -1.4463580162766011e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -7.2317900813830282e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488297064e-06, -3.8569547100708906e-06, -7.2317900813830078e-06, -9.6423867751772245e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -7.7139094201417796e-06, -4.8211933875886518e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -8.1960287589005725e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971568e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -4.8211933875886527e-06, -5.3033127263474558e-06, -1.9284773550354445e-06, -7.7139094201417762e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, 0.0019602972313935386, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708889e-06, -1.1570864130212799e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -8.6781480976594298e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -6.2675514038652576e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.0498024455744671e-05, -3.8569547100708898e-06, -4.242650181077968e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417779e-06, -3.8569547100709174e-05, -7.7139094201417796e-06, -3.9051666439468087e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.9284773550354445e-06, -4.0498024455744671e-05, -3.8569547100709398e-05, -3.8569547100708998e-05, -3.8569547100709262e-05, -4.8211933875886122e-07, -1.9284773550354436e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886679e-06, -9.6423867751773121e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -1.1570864130212811e-05, -1.4463580162766223e-06, -4.2426501810779985e-05, -7.7139094201417796e-06, -3.4712592390637855e-05, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.2052983468971534e-05, -7.7139094201417813e-06, -3.8569547100708898e-06, -3.3748353713120719e-06, -1.9284773550354445e-06, -9.6423867751772245e-07, -3.4712592390637855e-05, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.4712592390637855e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886493e-06, -1.4463580162766011e-06, -3.8569547100708906e-06, -7.2317900813829816e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.892716032553218e-06, -1.4463580162765745e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.2535102807730481e-05, -1.1088744791453838e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -2.8927160325532247e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100709262e-05, -3.8569547100708998e-05, -7.8103332878936554e-05, -3.8569547100709066e-05, -3.8569547100709174e-05, -1.9284773550354445e-06, -9.6423867751772245e-07, -3.8569547100708881e-06, -4.339074048829698e-06, -1.9284773550354445e-06, -5.3033127263474829e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.8103332878936391e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4463580162766028e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.785432065106408e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -8.6781480976594502e-06, -4.8211933875886144e-07, -1.9284773550354436e-06, -9.6423867751772224e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943276e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325532023e-06, -4.0980143794503334e-05, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -2.2177489582907585e-05, -4.8211933875886307e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00014801063699897271, -3.8569547100708898e-06, -9.6423867751772911e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.8927160325531737e-05, -5.7854320651064063e-06, -2.410596693794323e-06, -2.8927160325532065e-05, -4.8211933875886133e-07, 0.0019602972313935386, -3.8569547100708898e-06, -7.8103332878936391e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577897, -1.4463580162766003e-06, -9.6423867751773006e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936554e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489217e-05, -4.628345652085125e-05, -3.8569547100708906e-06, -3.4230473051878813e-05, -5.7854320651064012e-06, -5.7854320651064012e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886713e-06, -3.8569547100708889e-06, -4.8211933875886637e-06, -1.0124506113936163e-05, -3.8569547100708906e-06, -2.4105966937943327e-06, -1.1088744791453777e-05, -3.8569547100708906e-06, -5.7854320651064063e-06, -1.4463580162766196e-06, -2.4105966937943225e-06, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708889e-06, -5.7854320651064037e-06, -2.8927160325532235e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417779e-06, -1.1570864130212806e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297268e-06, -1.6392057517801247e-05, -9.6423867751772202e-07, -3.8569547100708889e-06, -3.8569547100708906e-06, -4.3390740488297268e-06, -1.2535102807730229e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -8.1960287589005437e-06, -1.4463580162765885e-05, -5.7854320651064063e-06, -2.892716032553218e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -7.7139094201417796e-06, -1.1570864130212806e-05, -3.8569547100708889e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651064054e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -9.6423867751772224e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.33907404882972e-06, -2.4105966937943289e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.4712592390637814e-05, -1.9284773550354445e-06, -4.8211933875886133e-07, -2.8927160325531737e-05, -3.8569547100708906e-06, -2.314172826042596e-05, -2.3141728260425611e-05, -2.4105966937943133e-05, -2.314172826042596e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.374835371312034e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.9409279664290663e-05, -9.6423867751772245e-07, -3.4712592390637855e-05, -3.4712592390637855e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390637855e-05, -3.4712592390637801e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.4463580162766009e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6905987090532001e-05, -9.6423867751772261e-05, -2.4105966937943162e-06, -4.8211933875886122e-07, -1.4463580162765994e-06, -4.8211933875886612e-06, -3.8569547100709411e-05, -9.6423867751772245e-07, -4.4354979165815347e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100709411e-05, -3.8569547100709404e-05, -3.8569547100708889e-06, -0.00010944108989826105, -9.6423867751772224e-07, -9.6423867751773548e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708873e-06, -2.4105966937943153e-06, -1.4463580162766007e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -7.2317900813830265e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488297098e-06, -3.8569547100708906e-06, -7.2317900813830061e-06, -9.6423867751772245e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -7.7139094201417796e-06, -4.8211933875886527e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -8.1960287589005708e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971563e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -4.8211933875886544e-06, -5.3033127263474558e-06, -1.9284773550354445e-06, -7.7139094201417762e-06, -3.8569547100708906e-06, 0.0019602972313935386, -3.8569547100708898e-06, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708889e-06, -1.1570864130212796e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -8.6781480976594366e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -6.2675514038652576e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.0498024455744671e-05, -3.8569547100708898e-06, -4.242650181077968e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417779e-06, -3.8569547100709174e-05, -7.7139094201417796e-06, -3.9051666439468101e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.9284773550354445e-06, -4.0498024455744671e-05, -3.8569547100709411e-05, -3.8569547100709011e-05, -3.8569547100709269e-05, -4.8211933875886122e-07, -1.9284773550354436e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886696e-06, -9.6423867751773155e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -1.1570864130212807e-05, -1.4463580162766219e-06, -4.2426501810779985e-05, -7.7139094201417796e-06, -3.4712592390637882e-05, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.2052983468971531e-05, -7.7139094201417813e-06, -3.8569547100708898e-06, -3.3748353713120693e-06, -1.9284773550354445e-06, -9.6423867751772245e-07, -3.4712592390637868e-05, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.4712592390637868e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886493e-06, -1.4463580162766007e-06, -3.8569547100708906e-06, -7.2317900813829799e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.8927160325532171e-06, -1.4463580162765736e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.2535102807730481e-05, -1.1088744791453842e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -2.8927160325532239e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100709269e-05, -3.8569547100709011e-05, -7.8103332878936581e-05, -3.8569547100709079e-05, -3.8569547100709174e-05, -1.9284773550354445e-06, -9.6423867751772245e-07, -3.8569547100708881e-06, -4.3390740488297014e-06, -1.9284773550354445e-06, -5.3033127263474829e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.8103332878936405e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4463580162766033e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651064063e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -8.6781480976594535e-06, -4.8211933875886144e-07, -1.9284773550354436e-06, -9.6423867751772224e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.410596693794328e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325532014e-06, -4.0980143794503334e-05, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -2.2177489582907599e-05, -4.8211933875886315e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00014801063699897263, -3.8569547100708898e-06, -9.6423867751772871e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.892716032553173e-05, -5.7854320651064046e-06, -2.4105966937943234e-06, -2.8927160325532058e-05, -4.8211933875886133e-07, -3.8569547100708898e-06, 0.0019602972313935386, -7.8103332878936405e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577901, -1.4463580162765999e-06, -9.6423867751772966e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936581e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489217e-05, -4.6283456520851237e-05, -3.8569547100708906e-06, -3.4230473051878826e-05, -5.7854320651063995e-06, -5.7854320651063995e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886722e-06, -3.8569547100708889e-06, -4.8211933875886645e-06, -1.0124506113936163e-05, -3.8569547100708906e-06, -2.4105966937943331e-06, -1.1088744791453781e-05, -3.8569547100708906e-06, -5.7854320651064046e-06, -1.4463580162766191e-06, -2.410596693794323e-06, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708889e-06, -5.785432065106402e-06, -2.8927160325532226e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417779e-06, -1.1570864130212802e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297302e-06, -1.6392057517801243e-05, -9.6423867751772202e-07, -3.8569547100708889e-06, -3.8569547100708906e-06, -4.3390740488297302e-06, -1.2535102807730236e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -8.1960287589005437e-06, -1.4463580162765882e-05, -5.7854320651064046e-06, -2.8927160325532171e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -7.7139094201417796e-06, -1.1570864130212802e-05, -3.8569547100708889e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651064037e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -9.6423867751772224e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.3390740488297234e-06, -2.4105966937943297e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.4712592390637828e-05, -1.9284773550354445e-06, -4.8211933875886133e-07, -2.892716032553173e-05, -3.8569547100708906e-06, -2.3141728260425954e-05, -2.3141728260425605e-05, -2.4105966937943123e-05, -2.3141728260425954e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.374835371312036e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.9409279664290657e-05, -9.6423867751772245e-07, -3.4712592390637868e-05, -3.4712592390637868e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390637882e-05, -3.4712592390637814e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.4463580162766005e-06, -7.7139094201417813e-06, -7.8103332878936662e-05, -7.810333287893654e-05, -7.8103332878936513e-05, -7.8103332878936676e-05, -3.905166643946806e-05, -3.905166643946806e-05, -7.810333287893612e-05, -7.8103332878936134e-05, -9.7629166098670557e-06, -9.7629166098670506e-06, -0.0019623462385832649, -0.0019525833219733878, -4.8814583049334789e-05, -9.762916609867054e-06, -2.9288749829600749e-05, -9.762916609866993e-05, -0.00078103332878936118, -1.9525833219734101e-05, -0.00089818832810776563, -9.7629166098670066e-06, -0.00015620666575787311, -0.00015620666575787314, -7.8103332878936134e-05, -7.8103332878936107e-05, -0.00078103332878936118, -0.00078103332878936096, -7.8103332878936595e-05, -0.0022161820704398021, -1.9525833219734166e-05, -0.001952583321973386, -0.00015620666575787305, -7.810333287893654e-05, -7.8103332878936649e-05, -9.7629166098670049e-06, -9.7629166098670557e-06, -7.8103332878936432e-05, -7.8103332878936391e-05, -1.9525833219734169e-05, -1.9525833219734169e-05, -9.7629166098670049e-06, -9.7629166098670354e-06, -7.8103332878935985e-05, -4.8814583049334999e-05, -2.928874982960124e-05, -3.9051666439468053e-05, -3.905166643946806e-05, -9.762916609867054e-06, -0.00014644374914800696, -7.8103332878936324e-05, -7.810333287893631e-05, -8.7866249488802666e-05, -7.8103332878936134e-05, -0.0001464437491480062, -1.9525833219734111e-05, -9.7629166098670743e-06, -7.810333287893612e-05, -7.8103332878936107e-05, -9.7629166098670574e-06, -9.7629166098670438e-06, -7.8103332878936296e-05, -7.8103332878936337e-05, -1.9525833219734216e-05, -9.7629166098670269e-06, -7.8103332878936202e-05, -0.00015620666575787281, -9.7629166098669754e-05, -7.8103332878936391e-05, -0.00015620666575787262, -9.7629166098670591e-06, -7.8103332878936269e-05, -0.00016596958236773853, -7.8103332878936418e-05, -7.8103332878936283e-05, -0.00015620666575787297, -0.00031241333151574703, -0.00024407291524667374, -7.810333287893608e-05, -0.00015620666575787297, -0.000156206665757873, -3.9051666439468331e-05, -7.8103332878936283e-05, -9.7629166098669754e-05, -0.00010739208270853604, -3.9051666439468331e-05, -0.00015620666575787368, -7.8103332878936351e-05, -7.8103332878936405e-05, -7.8103332878936391e-05, -1.952583321973421e-05, -7.8103332878936568e-05, -7.810333287893608e-05, -9.7629166098670811e-06, -7.8103332878936093e-05, -1.9525833219734115e-05, -7.8103332878936568e-05, -7.8103332878936418e-05, -7.8103332878936378e-05, -9.7629166098670591e-06, -0.00015620666575787305, -0.000156206665757873, -9.7629166098670472e-06, -7.8103332878936364e-05, -7.8103332878936378e-05, -9.7629166098670506e-06, -7.8103332878936649e-05, -7.8103332878936676e-05, -7.8103332878936296e-05, -7.8103332878936662e-05, -0.00023430999863680621, -7.8103332878936595e-05, -7.8103332878936215e-05, -7.8103332878936256e-05, -9.762916609867032e-06, -7.8103332878936188e-05, -7.8103332878936256e-05, -0.00015620666575787265, -3.905166643946806e-05, -0.00017573249897760471, -3.9051666439468053e-05, -9.7629166098670743e-06, -1.9525833219734078e-05, -0.00012691791592826917, -7.8103332878936378e-05, -0.00015620666575787308, -0.0008200849952288234, -7.8103332878936296e-05, -0.00085913666166828834, -7.8103332878936256e-05, -7.8103332878936296e-05, -0.000156206665757873, -0.00078103332878935814, -0.00015620666575787297, -0.00079079624539922001, -9.7629166098670049e-06, -0.00015620666575787292, -0.00015620666575787305, -3.9051666439468291e-05, -0.0008200849952288234, -0.00078103332878936118, -0.00078103332878935706, -0.00078103332878935868, -9.7629166098670574e-06, -3.9051666439467762e-05, -9.7629166098670235e-06, -9.7629166098670676e-06, -9.7629166098670828e-06, -7.8103332878936418e-05, -7.8103332878936405e-05, -7.8103332878936405e-05, -7.8103332878936391e-05, -9.7629166098670235e-06, -9.7629166098670286e-06, -9.7629166098670235e-06, -7.8103332878936513e-05, -9.7629166098670093e-05, -0.00019525833219733956, -0.00015620666575787335, -0.00015620666575787267, -7.8103332878936527e-05, -0.00023430999863680959, -2.9288749829601382e-05, -0.00085913666166829398, -0.0001562066657578727, -0.00070292999591042718, -9.762916609867054e-06, -9.7629166098670388e-06, -0.00024407291524667369, -0.00015620666575787265, -7.8103332878936324e-05, -6.8340416269068558e-05, -3.9051666439467925e-05, -1.9525833219734108e-05, -0.00070292999591042718, -1.9525833219734111e-05, -3.905166643946806e-05, -3.905166643946806e-05, -0.00070292999591042718, -7.8103332878936161e-05, -9.7629166098670354e-06, -7.8103332878936269e-05, -9.7629166098670235e-06, -7.810333287893631e-05, -9.7629166098669754e-05, -2.9288749829601416e-05, -7.8103332878936283e-05, -0.00014644374914800471, -9.7629166098670049e-06, -7.8103332878936175e-05, -1.9525833219734166e-05, -1.9525833219734169e-05, -1.9525833219734145e-05, -9.7629166098670438e-06, -5.8577499659202534e-05, -2.9288749829601342e-05, -7.81033328789365e-05, -7.8103332878936473e-05, -0.00015620666575787281, -0.00025383583185653927, -0.00022454708202693845, -9.7629166098670049e-06, -0.00015620666575787314, -7.81033328789365e-05, -5.8577499659202588e-05, -1.952583321973404e-05, -9.7629166098670286e-06, -9.7629166098670676e-06, -0.00078103332878935868, -0.00078103332878935706, -0.0015815924907984457, -0.00078103332878935706, -0.00078103332878935814, -3.9051666439468331e-05, -1.9525833219734074e-05, -7.8103332878936256e-05, -8.7866249488802707e-05, -3.9051666439468331e-05, -0.00010739208270853672, -9.762916609867054e-06, -9.7629166098670083e-06, -0.00015620666575787254, -7.8103332878936161e-05, -7.8103332878936215e-05, -9.7629166098670388e-06, -9.7629166098670557e-06, -3.9051666439468209e-05, -3.9051666439468202e-05, -0.00015620666575787308, -7.8103332878936486e-05, -9.7629166098670167e-06, 0.038192529777799793, -7.8103332878936486e-05, -7.81033328789365e-05, -9.7629166098670472e-06, -3.9051666439468202e-05, -3.9051666439468202e-05, -1.9525833219734013e-05, -1.9525833219734013e-05, -2.9288749829601091e-05, -9.7629166098670574e-06, -1.9525833219734013e-05, -1.9525833219734013e-05, -9.7629166098670286e-06, -9.7629166098670574e-06, -3.9051666439467952e-05, -0.00011715499931840496, -7.8103332878936161e-05, -9.7629166098670218e-06, -9.7629166098670066e-06, -0.00017573249897760604, -9.7629166098670438e-06, -3.9051666439468141e-05, -1.9525833219734149e-05, -0.00015620666575787232, -0.00015620666575787229, -4.8814583049334924e-05, -3.9051666439468169e-05, -1.952583321973421e-05, -5.8577499659202493e-05, -0.00082984791183869405, -9.7629166098670354e-06, -3.9051666439468169e-05, -3.9051666439468162e-05, -0.00015620666575787224, -0.00015620666575787238, -3.9051666439468169e-05, -3.9051666439468108e-05, -3.9051666439468108e-05, -9.7629166098670235e-06, -0.00044909416405388255, -9.7629166098669849e-05, -9.7629166098670591e-06, -7.81033328789365e-05, -7.8103332878936703e-05, -7.8103332878936486e-05, -0.00015620666575787238, -7.8103332878935809e-05, -0.00015620666575787224, -7.8103332878936703e-05, -7.8103332878936703e-05, -0.0029972153992291546, -7.8103332878936513e-05, -0.0019525833219733869, -7.8103332878936188e-05, -1.9525833219734115e-05, -0.00058577499659201633, -0.00011715499931840463, -4.881458304933485e-05, -0.00058577499659201958, -9.7629166098670117e-06, -7.8103332878936391e-05, -7.8103332878936405e-05, 0.038192529777799793, -7.8103332878936161e-05, -7.8103332878936175e-05, -0.0022357079036595257, -2.9288749829601267e-05, -0.0019525833219733869, -7.8103332878936378e-05, -7.8103332878936364e-05, -9.7629166098670303e-06, -7.8103332878936418e-05, -7.8103332878936391e-05, -9.7629166098670184e-06, -0.00015620666575787229, -0.00015620666575787232, -1.9525833219734145e-05, -3.9051666439468202e-05, -3.9051666439468202e-05, -7.81033328789365e-05, -7.81033328789365e-05, -0.0015815924907984457, -7.8103332878936473e-05, -7.81033328789365e-05, -0.00026359874846640797, -0.00093723999454723317, -7.8103332878936351e-05, -0.00069316707930055458, -0.00011715499931840512, -0.00011715499931840512, -7.810333287893654e-05, -7.8103332878936676e-05, -9.7629166098670079e-05, -7.8103332878936649e-05, -9.7629166098669944e-05, -0.00020502124880720577, -7.8103332878936215e-05, -4.8814583049334992e-05, -0.0002245470820269416, -7.8103332878936147e-05, -0.00011715499931840472, -2.9288749829601348e-05, -4.881458304933485e-05, -1.9525833219734149e-05, -9.7629166098670574e-06, -9.7629166098670354e-06, -7.8103332878936649e-05, -0.00011715499931840523, -5.8577499659202575e-05, -3.905166643946808e-05, -7.8103332878936527e-05, -7.8103332878936595e-05, -7.8103332878936703e-05, -0.00015620666575787173, -7.8103332878936134e-05, -3.9051666439468162e-05, -0.00015620666575787183, -7.810333287893608e-05, -3.9051666439468169e-05, -7.8103332878936703e-05, -9.7629166098670117e-06, -7.8103332878936107e-05, -7.810333287893612e-05, -0.000156206665757873, -0.00023430999863680997, -7.8103332878936296e-05, -0.00015620666575787305, -0.00015620666575787319, -7.8103332878936134e-05, -7.810333287893612e-05, -7.8103332878936147e-05, -7.8103332878936188e-05, -8.7866249488801894e-05, -0.00033193916473547619, -1.9525833219734254e-05, -7.8103332878936595e-05, -7.8103332878936093e-05, -8.7866249488802002e-05, -0.00025383583185653911, -7.810333287893654e-05, -7.8103332878936269e-05, -7.8103332878936662e-05, -3.9051666439468169e-05, -3.9051666439468162e-05, -9.762916609867054e-06, -9.7629166098670828e-06, -9.7629166098670591e-06, -1.9525833219734091e-05, -0.00016596958236773853, -0.00029288749829600816, -0.00011715499931840472, -5.8577499659202534e-05, -9.7629166098670337e-06, -3.9051666439468148e-05, -0.0001562066657578727, -0.00023430999863680894, -7.8103332878936608e-05, -3.9051666439468148e-05, -0.00015620666575787262, -0.00015620666575787267, -3.9051666439468148e-05, -0.00011715499931840447, -7.8103332878936161e-05, -9.7629166098670726e-06, -1.9525833219734223e-05, -3.9051666439468148e-05, -3.9051666439468169e-05, -8.7866249488802151e-05, -4.8814583049334931e-05, -7.8103332878936459e-05, -0.00015620666575787284, -0.00070292999591042567, -3.9051666439468291e-05, -9.7629166098670252e-06, -0.00058577499659201622, -7.8103332878936256e-05, -0.00046861999727362179, -0.00046861999727362179, -0.00048814583049334748, -0.00046861999727362179, -3.9051666439468291e-05, -3.9051666439468291e-05, -7.8103332878936269e-05, -7.8103332878936296e-05, -3.9051666439468121e-05, -3.9051666439468121e-05, -7.8103332878936568e-05, -9.7629166098670709e-06, -7.8103332878936568e-05, -9.762916609867032e-06, -9.7629166098670506e-06, -0.00068340416269068436, -3.9051666439468121e-05, -3.9051666439468121e-05, -0.00059553791320188297, -1.9525833219734132e-05, -0.00070292999591042718, -0.00070292999591042718, -7.8103332878936269e-05, -9.7629166098670252e-06, -7.8103332878936242e-05, -0.00070292999591042718, -0.00070292999591042046, -7.8103332878936215e-05, -7.8103332878936256e-05, -1.9525833219734037e-05, -1.9525833219734108e-05, -0.00015620666575787208, -7.8103332878936242e-05, -7.8103332878936229e-05, -2.9288749829600996e-05, -0.00015620666575787208, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6905987090531703e-05, -9.6423867751771936e-05, -2.410596693794306e-06, -4.8211933875886133e-07, -1.4463580162765918e-06, -4.8211933875886425e-06, -3.8569547100709249e-05, -9.6423867751772266e-07, -4.435497916581555e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100709255e-05, -3.8569547100709249e-05, -3.8569547100708898e-06, -0.00010944108989826144, -9.6423867751772224e-07, -9.6423867751773223e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.410596693794306e-06, -1.4463580162765931e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813830002e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297369e-06, -3.8569547100708906e-06, -7.231790081382979e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886324e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886122e-07, -3.8569547100708915e-06, -8.196028758900625e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971519e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -4.8211933875886341e-06, -5.3033127263474668e-06, -1.9284773550354445e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.8211933875886112e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212724e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594925e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652492e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -4.0498024455744644e-05, -3.8569547100708906e-06, -4.2426501810779768e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709039e-05, -7.7139094201417796e-06, -3.9051666439468047e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.0498024455744644e-05, -3.8569547100709249e-05, -3.8569547100709005e-05, -3.8569547100709106e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886493e-06, -9.6423867751772749e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -1.1570864130212736e-05, -1.446358016276613e-06, -4.2426501810780087e-05, -7.7139094201417813e-06, -3.4712592390638038e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971561e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120426e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390638038e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390638024e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886307e-06, -1.4463580162765918e-06, -3.8569547100708906e-06, -7.2317900813829536e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325531993e-06, -1.4463580162766096e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730463e-05, -1.1088744791453893e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532057e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709106e-05, -3.8569547100709005e-05, -7.8103332878936337e-05, -3.8569547100709005e-05, -3.8569547100709039e-05, -1.9284773550354445e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297285e-06, -1.9284773550354445e-06, -5.3033127263474947e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936161e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4463580162765842e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651063707e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -8.6781480976595094e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -7.713909420141783e-06, -7.713909420141783e-06, -2.4105966937943111e-06, -1.9284773550354457e-06, -9.6423867751772245e-07, -2.8927160325531828e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886144e-07, -2.217748958290769e-05, -4.821193387588612e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00014801063699897173, -3.8569547100708906e-06, -9.6423867751772532e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.8927160325531625e-05, -5.785432065106369e-06, -2.4105966937943136e-06, -2.892716032553195e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936161e-05, 0.0019602972313935386, -3.8569547100708915e-06, -0.00011040532857577944, -1.446358016276591e-06, -9.6423867751772627e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936337e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489232e-05, -4.6283456520850952e-05, -3.8569547100708906e-06, -3.423047305187903e-05, -5.7854320651063639e-06, -5.7854320651063639e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886527e-06, -3.8569547100708898e-06, -4.8211933875886442e-06, -1.0124506113936158e-05, -3.8569547100708906e-06, -2.4105966937943234e-06, -1.1088744791453842e-05, -3.8569547100708915e-06, -5.785432065106369e-06, -1.44635801627661e-06, -2.4105966937943132e-06, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063665e-06, -2.8927160325532044e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354457e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.1570864130212731e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.3390740488297581e-06, -1.6392057517801355e-05, -9.6423867751772224e-07, -3.8569547100708889e-06, -3.8569547100708915e-06, -4.3390740488297581e-06, -1.2535102807730475e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -8.1960287589005776e-06, -1.4463580162765829e-05, -5.785432065106369e-06, -2.8927160325531993e-06, -4.8211933875886144e-07, -1.9284773550354457e-06, -7.7139094201417813e-06, -1.1570864130212731e-05, -3.8569547100708889e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -5.785432065106336e-06, 0.0019602972313935386, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354453e-06, -4.3390740488297513e-06, -2.4105966937943196e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -3.4712592390638051e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531625e-05, -3.8569547100708915e-06, -2.3141728260425811e-05, -2.3141728260425435e-05, -2.4105966937943014e-05, -2.3141728260425811e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.3748353713120503e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.9409279664290589e-05, -9.6423867751772245e-07, -3.4712592390638024e-05, -3.4712592390638038e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.4712592390638038e-05, -3.4712592390638011e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765916e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6905987090531648e-05, -9.6423867751771895e-05, -2.4105966937943069e-06, -4.8211933875886133e-07, -1.4463580162765922e-06, -4.8211933875886425e-06, -3.8569547100709262e-05, -9.6423867751772266e-07, -4.4354979165815563e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100709262e-05, -3.8569547100709255e-05, -3.8569547100708898e-06, -0.00010944108989826149, -9.6423867751772224e-07, -9.6423867751773182e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.410596693794306e-06, -1.4463580162765935e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813829985e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297395e-06, -3.8569547100708906e-06, -7.2317900813829773e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886341e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886122e-07, -3.8569547100708915e-06, -8.1960287589006267e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971514e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -4.8211933875886357e-06, -5.3033127263474668e-06, -1.9284773550354445e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.8211933875886112e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212721e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594959e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652492e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -4.0498024455744657e-05, -3.8569547100708906e-06, -4.2426501810779768e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709039e-05, -7.7139094201417796e-06, -3.905166643946806e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.0498024455744657e-05, -3.8569547100709262e-05, -3.8569547100709011e-05, -3.8569547100709113e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.821193387588651e-06, -9.6423867751772783e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -1.1570864130212733e-05, -1.4463580162766126e-06, -4.2426501810780073e-05, -7.7139094201417813e-06, -3.4712592390638024e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971558e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120443e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390638024e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390638011e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886307e-06, -1.4463580162765914e-06, -3.8569547100708906e-06, -7.2317900813829502e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325531985e-06, -1.4463580162766092e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730464e-05, -1.1088744791453896e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532048e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709113e-05, -3.8569547100709011e-05, -7.8103332878936337e-05, -3.8569547100709011e-05, -3.8569547100709039e-05, -1.9284773550354445e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297302e-06, -1.9284773550354445e-06, -5.3033127263474947e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936175e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4463580162765838e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.785432065106369e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -8.6781480976595128e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -7.713909420141783e-06, -7.713909420141783e-06, -2.4105966937943111e-06, -1.9284773550354457e-06, -9.6423867751772245e-07, -2.892716032553182e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886144e-07, -2.2177489582907697e-05, -4.8211933875886129e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00014801063699897165, -3.8569547100708906e-06, -9.6423867751772491e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.8927160325531618e-05, -5.7854320651063673e-06, -2.4105966937943141e-06, -2.8927160325531936e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936175e-05, -3.8569547100708915e-06, 0.0019602972313935386, -0.00011040532857577947, -1.4463580162765906e-06, -9.6423867751772586e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936337e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489229e-05, -4.6283456520850938e-05, -3.8569547100708906e-06, -3.4230473051879043e-05, -5.7854320651063622e-06, -5.7854320651063622e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886535e-06, -3.8569547100708898e-06, -4.8211933875886459e-06, -1.0124506113936158e-05, -3.8569547100708906e-06, -2.4105966937943238e-06, -1.1088744791453848e-05, -3.8569547100708915e-06, -5.7854320651063673e-06, -1.4463580162766096e-06, -2.4105966937943136e-06, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063648e-06, -2.8927160325532036e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354457e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.1570864130212728e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.3390740488297598e-06, -1.6392057517801355e-05, -9.6423867751772224e-07, -3.8569547100708889e-06, -3.8569547100708915e-06, -4.3390740488297598e-06, -1.2535102807730475e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -8.1960287589005793e-06, -1.4463580162765826e-05, -5.7854320651063673e-06, -2.8927160325531985e-06, -4.8211933875886144e-07, -1.9284773550354457e-06, -7.7139094201417813e-06, -1.1570864130212728e-05, -3.8569547100708889e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, 0.0019583687540385029, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354453e-06, -4.339074048829753e-06, -2.4105966937943204e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -3.4712592390638065e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531611e-05, -3.8569547100708915e-06, -2.3141728260425805e-05, -2.3141728260425429e-05, -2.4105966937943001e-05, -2.3141728260425805e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.3748353713120503e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.9409279664290582e-05, -9.6423867751772245e-07, -3.4712592390638011e-05, -3.4712592390638024e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.4712592390638024e-05, -3.4712592390638024e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765912e-06, -7.713909420141783e-06, -0.00011040532857577866, -0.00011040532857577898, -0.0001104053285757789, -0.00011040532857577868, -5.520266428788983e-05, -5.520266428788983e-05, -0.0001104053285757798, -0.00011040532857577969, -1.3800666071972352e-05, -1.3800666071972366e-05, -0.0027739338804664564, 0.046343721438196192, -6.9003330359862137e-05, -1.3800666071972352e-05, -4.1401998215917211e-05, -0.00013800666071972487, -0.0011040532857578005, -2.7601332143944732e-05, -0.0012696612786214717, -1.3800666071972451e-05, -0.00022081065715155731, -0.00022081065715155745, -0.00011040532857577963, -0.00011040532857577985, -0.001104053285757797, -0.001104053285757797, -0.00011040532857577868, -0.0031327511983377443, -2.7601332143944603e-05, -0.0027601332143944862, -0.00022081065715155718, -0.00011040532857577896, -0.00011040532857577863, -1.3800666071972454e-05, -1.3800666071972363e-05, -0.00011040532857577912, -0.00011040532857577901, -2.760133214394461e-05, -2.760133214394461e-05, -1.3800666071972457e-05, -1.3800666071972396e-05, -0.00011040532857577958, -6.9003330359861933e-05, -4.1401998215917279e-05, -5.5202664287889816e-05, -5.5202664287889843e-05, -1.3800666071972352e-05, -0.00020700999107958672, -0.00011040532857577917, -0.00011040532857577914, -0.00012420599464775168, -0.00011040532857577966, -0.00020700999107958672, -2.7601332143944705e-05, -1.3800666071972319e-05, -0.00011040532857577963, -0.00011040532857577958, -1.3800666071972349e-05, -1.3800666071972374e-05, -0.00011040532857577912, -0.00011040532857577921, -2.7601332143945044e-05, -1.3800666071972413e-05, -0.00011040532857577942, -0.00022081065715155992, -0.00013800666071972471, -0.00011040532857577901, -0.00022081065715155883, -1.3800666071972349e-05, -0.00011040532857577933, -0.00023461132322352934, -0.00011040532857577904, -0.00011040532857577931, -0.00022081065715155748, -0.00044162131430312157, -0.00034501665179930584, -0.00011040532857577955, -0.00022081065715155769, -0.0002208106571515578, -5.520266428788922e-05, -0.00011040532857577923, -0.00013800666071972476, -0.00015180732679169592, -5.5202664287889206e-05, -0.00022081065715156057, -0.00011040532857577904, -0.00011040532857577901, -0.00011040532857577897, -2.760133214394505e-05, -0.00011040532857577868, -0.00011040532857577955, -1.38006660719723e-05, -0.00011040532857577958, -2.7601332143944854e-05, -0.00011040532857577871, -0.00011040532857577909, -0.00011040532857577898, -1.3800666071972369e-05, -0.00022081065715155775, -0.00022081065715155758, -1.3800666071972393e-05, -0.00011040532857577906, -0.00011040532857577912, -1.3800666071972359e-05, -0.00011040532857577855, -0.00011040532857577863, -0.00011040532857577936, -0.0001104053285757786, -0.00033121598572733775, -0.00011040532857577855, -0.00011040532857577947, -0.00011040532857577931, -1.3800666071972403e-05, -0.00011040532857577936, -0.00011040532857577928, -0.00022081065715155867, -5.5202664287889843e-05, -0.00024841198929550308, -5.5202664287889816e-05, -1.3800666071972325e-05, -2.7601332143944786e-05, -0.00017940865893564386, -0.00011040532857577898, -0.00022081065715156016, -0.0011592559500456798, -0.00011040532857577912, -0.0012144586143335743, -0.00011040532857577925, -0.00011040532857577936, -0.0002208106571515578, -0.0011040532857577942, -0.00022081065715155769, -0.0011178539518297643, -1.3800666071972451e-05, -0.00022081065715155753, -0.00022081065715155796, -5.5202664287889383e-05, -0.0011592559500456798, -0.0011040532857578005, -0.0011040532857577938, -0.001104053285757784, -1.3800666071972352e-05, -5.5202664287890291e-05, 0.00023171860719097928, -1.3800666071972339e-05, -1.3800666071972305e-05, -0.00011040532857577909, -0.00011040532857577906, -0.00011040532857577904, -0.00011040532857577901, -1.380066607197242e-05, -1.3800666071972413e-05, -1.3800666071972424e-05, -0.00011040532857577871, -0.00013800666071972498, -0.00027601332143944676, -0.00022081065715156035, -0.0002208106571515584, -0.00011040532857577874, -0.00033121598572733856, -4.1401998215917286e-05, -0.0012144586143335817, -0.00022081065715155856, -0.0009936479571820121, -1.3800666071972359e-05, -1.3800666071972393e-05, -0.00034501665179930693, -0.00022081065715155867, -0.00011040532857577917, -9.6604662503805937e-05, -5.5202664287889999e-05, -2.7601332143944705e-05, -0.0009936479571820121, -2.7601332143944705e-05, -5.520266428788983e-05, -5.520266428788983e-05, -0.0009936479571820121, -0.00011040532857577955, -1.3800666071972417e-05, -0.0001104053285757792, -1.380066607197242e-05, -0.00011040532857577931, -0.00013800666071972468, -4.1401998215917293e-05, -0.00011040532857577923, -0.00020700999107958667, 0.00023171860719097874, -0.00011040532857577958, -2.7601332143944603e-05, -2.760133214394461e-05, -2.7601332143944644e-05, -1.3800666071972386e-05, -8.2803996431834653e-05, -4.1401998215917313e-05, -0.0001104053285757789, -0.00011040532857577879, -0.00022081065715155899, -0.00035881731787128657, -0.00031741531965536927, -1.3800666071972457e-05, -0.00022081065715156008, -0.0001104053285757789, 0.0013903116431458716, -2.7601332143944922e-05, -1.3800666071972413e-05, -1.3800666071972342e-05, -0.001104053285757784, -0.0011040532857577938, -0.0022357079036595261, -0.0011040532857577946, -0.0011040532857577942, -5.5202664287889206e-05, -2.7601332143944962e-05, -0.00011040532857577923, -0.0001242059946477517, -5.520266428788922e-05, -0.00015180732679169714, 0.00023171860719098015, -1.3800666071972451e-05, -0.00022081065715155981, -0.00011040532857577944, -0.00011040532857577942, -1.380066607197239e-05, -1.3800666071972352e-05, -5.5202664287889586e-05, -5.5202664287889559e-05, -0.00022081065715156008, -0.00011040532857577885, -1.3800666071972444e-05, -0.0022357079036595257, -0.00011040532857577882, -0.00011040532857577887, -1.3800666071972393e-05, -5.5202664287889572e-05, -5.5202664287889572e-05, -2.7601332143944935e-05, -2.7601332143944942e-05, -4.14019982159173e-05, -1.3800666071972349e-05, -2.7601332143944942e-05, -2.7601332143944935e-05, -1.380066607197241e-05, -1.3800666071972352e-05, -5.5202664287889952e-05, -0.00016560799286366936, -0.00011040532857577947, -1.3800666071972424e-05, -1.3800666071972451e-05, -0.00024841198929550313, -1.3800666071972374e-05, -5.5202664287890345e-05, -2.760133214394501e-05, -0.0002208106571515591, -0.00022081065715155894, -6.9003330359862381e-05, -5.5202664287889559e-05, -2.7601332143945027e-05, -8.2803996431834504e-05, -0.0011730566161176667, -1.3800666071972396e-05, -5.5202664287889559e-05, -5.5202664287889532e-05, -0.00022081065715155883, -0.00022081065715155927, -5.5202664287889545e-05, -5.5202664287889681e-05, -5.5202664287889694e-05, -1.380066607197242e-05, 0.0018203620933187864, 0.00010751261254322743, -1.3800666071972346e-05, -0.00011040532857577887, -0.00011040532857578007, -0.00011040532857577882, -0.00022081065715155927, -0.00011040532857578007, -0.00022081065715155883, -0.00011040532857578008, -0.00011040532857578008, -0.0042368044840955287, -0.00011040532857577896, -0.0027601332143944906, -0.00011040532857577936, -2.7601332143944695e-05, -0.00082803996431834689, -0.00016560799286366925, -6.9003330359862326e-05, -0.00082803996431834754, 0.00023171860719097895, -0.00011040532857577897, -0.00011040532857577901, -0.0022357079036595257, -0.00011040532857577944, -0.00011040532857577947, 0.053554599593259741, -4.1401998215917245e-05, -0.0027601332143944871, -0.00011040532857577912, -0.00011040532857577906, -1.3800666071972403e-05, -0.00011040532857577904, -0.00011040532857577893, -1.380066607197243e-05, -0.00022081065715155894, -0.0002208106571515591, -2.7601332143944644e-05, -5.5202664287889572e-05, -5.5202664287889572e-05, -0.0001104053285757789, -0.00011040532857577887, -0.0022357079036595261, -0.00011040532857577879, -0.0001104053285757789, -0.00037261798394325668, -0.0013248639429093549, -0.00011040532857577904, -0.00097984729111003522, -0.00016560799286366909, -0.00016560799286366909, -0.00011040532857577882, -0.00011040532857577863, -0.00013800666071972503, -0.00011040532857577855, -0.00013800666071972487, -0.00028981398751142022, -0.00011040532857577944, -6.9003330359861391e-05, -0.0003174153196553678, -0.00011040532857577942, -0.00016560799286366925, -4.14019982159173e-05, -6.9003330359862299e-05, -2.760133214394463e-05, -1.3800666071972352e-05, -1.3800666071972417e-05, -0.00011040532857577863, -0.00016560799286366914, 0.0013903116431458718, -5.5202664287889721e-05, -0.00011040532857577893, -0.00011040532857577868, -0.00011040532857578008, -0.00022081065715155967, -0.00011040532857577963, -5.5202664287889532e-05, -0.00022081065715155937, -0.00011040532857577961, -5.5202664287889559e-05, -0.00011040532857578007, -1.3800666071972457e-05, -0.00011040532857577958, -0.00011040532857577963, -0.00022081065715155758, -0.00033121598572733818, -0.00011040532857577925, -0.00022081065715155718, -0.00022081065715155758, -0.00011040532857577969, -0.0001104053285757798, -0.00011040532857577942, -0.0001104053285757795, -0.0001242059946477513, -0.00046922264644705955, -2.7601332143945067e-05, -0.00011040532857577855, -0.00011040532857577963, -0.00012420599464775151, -0.00035881731787128701, -0.00011040532857577898, -0.0001104053285757792, -0.00011040532857577866, -5.5202664287889559e-05, -5.5202664287889545e-05, -1.380066607197238e-05, -1.3800666071972305e-05, -1.3800666071972346e-05, -2.7601332143944773e-05, -0.00023461132322353167, -0.00041401998215917312, -0.00016560799286366936, -8.2803996431834653e-05, -1.3800666071972413e-05, -5.5202664287889572e-05, -0.00022081065715155856, -0.00033121598572733823, -0.00011040532857577858, -5.5202664287889572e-05, -0.00022081065715155829, -0.0002208106571515584, -5.5202664287889572e-05, -0.00016560799286366928, -0.00011040532857577944, -1.3800666071972319e-05, -2.7601332143945064e-05, -5.5202664287889572e-05, -5.5202664287889545e-05, -0.00012420599464775146, -6.9003330359861581e-05, -0.00011040532857577906, -0.00022081065715155992, -0.00099364795718201232, -5.5202664287889383e-05, -1.380066607197242e-05, -0.00082803996431834689, -0.00011040532857577931, -0.00066243197145467647, -0.00066243197145467679, -0.00069003330359861126, -0.00066243197145467647, -5.5202664287889396e-05, -5.5202664287889396e-05, -0.0001104053285757792, -0.00011040532857577931, -5.520266428788964e-05, -5.5202664287889654e-05, -0.00011040532857577871, -1.3800666071972322e-05, -0.00011040532857577868, -1.3800666071972403e-05, -1.3800666071972359e-05, -0.00096604662503806604, -5.5202664287889654e-05, -5.520266428788964e-05, -0.00084184063039032344, -2.7601332143944678e-05, -0.0009936479571820121, -0.0009936479571820121, -0.00011040532857577933, -1.3800666071972413e-05, -0.00011040532857577923, -0.0009936479571820121, -0.00099364795718201275, -0.00011040532857577942, -0.00011040532857577952, -2.7601332143944861e-05, -2.7601332143944718e-05, -0.00022081065715155943, -0.00011040532857577947, -0.00011040532857577944, -4.14019982159173e-05, -0.00022081065715155943, -1.4463580162766105e-06, -1.4463580162766045e-06, -1.4463580162766058e-06, -1.44635801627661e-06, -7.2317900813829464e-07, -7.2317900813829464e-07, -1.4463580162765893e-06, -1.4463580162765889e-06, -1.8079475203457541e-07, -1.807947520345752e-07, -3.6339745158949388e-05, -3.6158950406914472e-05, -9.0397376017287174e-07, -1.8079475203457538e-07, -5.4238425610373056e-07, -1.807947520345753e-06, -1.4463580162765897e-05, -3.6158950406915039e-07, -1.6633117187180646e-05, -1.8079475203457345e-07, -2.892716032553212e-06, -2.8927160325532103e-06, -1.4463580162765884e-06, -1.4463580162765897e-06, -1.4463580162765884e-05, -1.4463580162765873e-05, -1.4463580162765855e-06, -4.104040871184805e-05, -3.6158950406914113e-07, -3.61589504069145e-05, -2.8927160325532137e-06, -1.446358016276605e-06, -1.4463580162766111e-06, -1.8079475203457332e-07, -1.8079475203457541e-07, -1.4463580162765999e-06, -1.4463580162766011e-06, -3.6158950406914113e-07, -3.6158950406914113e-07, -1.8079475203457334e-07, -1.8079475203457456e-07, -1.446358016276585e-06, -9.0397376017287418e-07, -5.4238425610372675e-07, -7.2317900813829485e-07, -7.2317900813829443e-07, -1.8079475203457538e-07, -2.7119212805185988e-06, -1.4463580162765965e-06, -1.4463580162765969e-06, -1.6271527683111527e-06, -1.4463580162765906e-06, -2.711921280518581e-06, -3.6158950406915081e-07, -1.8079475203457035e-07, -1.4463580162765901e-06, -1.4463580162765897e-06, -1.8079475203457551e-07, -1.8079475203457496e-07, -1.4463580162765978e-06, -1.4463580162765961e-06, -3.6158950406914637e-07, -1.807947520345743e-07, -1.4463580162765935e-06, -2.8927160325531722e-06, -1.8079475203457496e-06, -1.4463580162766016e-06, -2.892716032553198e-06, -1.8079475203457557e-07, -1.4463580162765939e-06, -3.0735107845877985e-06, -1.4463580162765994e-06, -1.4463580162765952e-06, -2.8927160325531341e-06, -5.7854320651064283e-06, -4.5198688008643226e-06, -1.4463580162765889e-06, -2.8927160325532065e-06, -2.8927160325532048e-06, -7.2317900813830576e-07, -1.4463580162765961e-06, -1.8079475203457486e-06, -1.9887422723802832e-06, -7.2317900813830597e-07, -2.8927160325532065e-06, -1.4463580162765994e-06, -1.4463580162765999e-06, -1.4463580162766003e-06, -3.6158950406915092e-07, -1.4463580162766079e-06, -1.4463580162765889e-06, -1.8079475203457641e-07, -1.4463580162765884e-06, -3.6158950406915092e-07, -1.4463580162766071e-06, -1.4463580162766024e-06, -1.4463580162766011e-06, -1.8079475203457557e-07, -2.8927160325531443e-06, -2.8927160325531392e-06, -1.8079475203457504e-07, -1.4463580162765994e-06, -1.4463580162765986e-06, -1.8079475203457522e-07, -1.4463580162766111e-06, -1.4463580162766092e-06, -1.4463580162765948e-06, -1.4463580162766096e-06, -4.3390740488298259e-06, -1.4463580162766096e-06, -1.4463580162765944e-06, -1.4463580162765944e-06, -1.8079475203457451e-07, -1.4463580162765931e-06, -1.4463580162765948e-06, -2.8927160325531938e-06, -7.2317900813829443e-07, -3.2543055366223038e-06, -7.2317900813829485e-07, -1.8079475203457615e-07, -3.6158950406914944e-07, -2.3503317764494397e-06, -1.4463580162766011e-06, -2.8927160325531985e-06, -1.5186759170904279e-05, -1.4463580162765978e-06, -1.5909938179042269e-05, -1.4463580162765961e-06, -1.4463580162765948e-06, -2.8927160325532048e-06, -1.4463580162765965e-05, -2.8927160325532065e-06, -1.4644374914800569e-05, -1.8079475203457337e-07, -2.8927160325532082e-06, -2.8927160325532031e-06, -7.2317900813830417e-07, -1.5186759170904269e-05, -1.4463580162765897e-05, -1.4463580162765919e-05, -1.4463580162766009e-05, -1.8079475203457546e-07, -7.2317900813829231e-07, -1.8079475203457414e-07, -1.8079475203457583e-07, -1.8079475203457056e-07, -1.4463580162766003e-06, -1.4463580162766007e-06, -1.446358016276602e-06, -1.4463580162766016e-06, -1.8079475203457414e-07, -1.807947520345743e-07, -1.8079475203457408e-07, -1.4463580162766062e-06, -1.8079475203457628e-06, -3.6158950406915009e-06, -2.8927160325532074e-06, -2.8927160325531913e-06, -1.4463580162766058e-06, -4.3390740488298106e-06, -5.4238425610371542e-07, -1.5909938179042317e-05, -2.8927160325531896e-06, -1.3017222146489195e-05, -1.8079475203457541e-07, -1.8079475203457472e-07, -4.5198688008643226e-06, -2.8927160325531938e-06, -1.4463580162765965e-06, -1.2655632642420246e-06, -7.2317900813830523e-07, -3.6158950406915071e-07, -1.3017222146489195e-05, -3.6158950406915081e-07, -7.2317900813829464e-07, -7.2317900813829464e-07, -1.3017222146489195e-05, -1.4463580162765918e-06, -1.8079475203457461e-07, -1.4463580162765969e-06, -1.8079475203457414e-07, -1.4463580162765982e-06, -1.8079475203457547e-06, -5.4238425610371182e-07, -1.4463580162765973e-06, -2.7119212805185997e-06, -1.8079475203457334e-07, -1.4463580162765914e-06, -3.6158950406914113e-07, -3.6158950406914113e-07, -3.6158950406915209e-07, -1.8079475203457498e-07, -1.0847685122074416e-06, -5.4238425610371648e-07, -1.4463580162766028e-06, -1.4463580162766045e-06, -2.8927160325531879e-06, -4.7006635528988803e-06, -4.1582792967951546e-06, -1.8079475203457334e-07, -2.8927160325531709e-06, -1.4463580162766037e-06, -1.0847685122074391e-06, -3.6158950406914658e-07, -1.807947520345743e-07, -1.8079475203457583e-07, -1.4463580162766009e-05, -1.4463580162765919e-05, -2.9288749829600955e-05, -1.4463580162765917e-05, -1.4463580162765965e-05, -7.2317900813830597e-07, -3.6158950406914658e-07, -1.4463580162766272e-06, -1.6271527683111527e-06, -7.2317900813830576e-07, -1.9887422723802845e-06, -1.8079475203457535e-07, -1.807947520345735e-07, -2.8927160325531726e-06, -1.4463580162765918e-06, -1.4463580162765944e-06, -1.8079475203457477e-07, -1.8079475203457538e-07, -7.2317900813830015e-07, -7.2317900813830057e-07, -2.8927160325531709e-06, -1.4463580162766045e-06, -1.8079475203457387e-07, -2.9288749829601267e-05, -1.4463580162766037e-06, -1.4463580162766033e-06, -1.8079475203457509e-07, -7.2317900813830057e-07, -7.2317900813830036e-07, -3.615895040691469e-07, -3.615895040691469e-07, -5.423842561037259e-07, -1.8079475203457543e-07, -3.615895040691469e-07, -3.615895040691469e-07, -1.8079475203457435e-07, -1.8079475203457551e-07, 0.00024479609425481275, -2.1695370244148968e-06, -1.446358016276591e-06, -1.8079475203457408e-07, -1.8079475203457345e-07, -3.2543055366223008e-06, -1.8079475203457493e-07, 0.00049031536751776422, -3.6158950406915071e-07, -2.8927160325531781e-06, -2.8927160325531798e-06, -9.0397376017287524e-07, -7.2317900813829898e-07, -3.6158950406914637e-07, -1.0847685122074488e-06, -1.5367553922938771e-05, -1.8079475203457461e-07, -7.2317900813829877e-07, -7.2317900813829919e-07, -2.8927160325531815e-06, -2.8927160325531764e-06, -7.2317900813829951e-07, -7.2317900813829676e-07, -7.2317900813829655e-07, -1.8079475203457408e-07, -8.3165585935902398e-06, -1.8079475203457549e-06, -1.8079475203457562e-07, -1.4463580162766033e-06, -1.4463580162765855e-06, -1.4463580162766037e-06, -2.8927160325531764e-06, -1.4463580162765855e-06, -2.8927160325531815e-06, -1.4463580162765855e-06, -1.4463580162765855e-06, -5.5503988874613658e-05, -1.4463580162766033e-06, -3.615895040691452e-05, -1.4463580162765931e-06, -3.6158950406915097e-07, -1.0847685122074305e-05, -2.1695370244148867e-06, -9.039737601728746e-07, -1.0847685122074305e-05, -1.8079475203457366e-07, -1.4463580162766003e-06, -1.4463580162765999e-06, -2.9288749829601267e-05, -1.446358016276591e-06, -1.4463580162765906e-06, -4.1401998215917245e-05, 0.00073601543553274368, -3.6158950406914533e-05, -1.4463580162765986e-06, -1.4463580162765994e-06, -1.807947520345744e-07, -1.4463580162765994e-06, -1.4463580162766007e-06, -1.8079475203457393e-07, -2.8927160325531798e-06, -2.8927160325531781e-06, -3.6158950406915209e-07, -7.2317900813830036e-07, -7.2317900813830057e-07, -1.4463580162766037e-06, -1.4463580162766041e-06, -2.9288749829600955e-05, -1.4463580162766045e-06, -1.4463580162766028e-06, -4.8814583049335677e-06, -1.7356296195319222e-05, -1.4463580162765994e-06, -1.2836427394454695e-05, -2.1695370244149138e-06, -2.1695370244149138e-06, -1.446358016276605e-06, -1.4463580162766092e-06, -1.8079475203457615e-06, -1.4463580162766111e-06, -1.807947520345753e-06, -3.7966897927260765e-06, -1.4463580162765939e-06, -9.0397376017288011e-07, -4.1582792967951563e-06, -1.4463580162765914e-06, -2.169537024414885e-06, -5.4238425610371458e-07, -9.0397376017287524e-07, -3.615895040691406e-07, -1.8079475203457546e-07, -1.8079475203457461e-07, -1.4463580162766111e-06, -2.169537024414907e-06, -1.0847685122074395e-06, -7.2317900813829591e-07, -1.4463580162766054e-06, -1.4463580162765855e-06, -1.4463580162765855e-06, -2.8927160325531709e-06, -1.4463580162765884e-06, -7.2317900813829919e-07, -2.8927160325531709e-06, -1.4463580162765884e-06, -7.2317900813829877e-07, -1.4463580162765855e-06, -1.8079475203457361e-07, -1.4463580162765897e-06, -1.4463580162765901e-06, -2.8927160325531392e-06, -4.3390740488296997e-06, -1.4463580162765978e-06, -2.8927160325532137e-06, -2.8927160325532086e-06, -1.4463580162765889e-06, -1.4463580162765893e-06, -1.4463580162765914e-06, -1.4463580162765901e-06, -1.6271527683111493e-06, -6.1470215691756005e-06, -3.6158950406914626e-07, -1.4463580162766096e-06, -1.446358016276588e-06, -1.6271527683111699e-06, -4.7006635528988617e-06, -1.4463580162766045e-06, -1.4463580162765969e-06, -1.4463580162766105e-06, -7.2317900813829898e-07, -7.2317900813829919e-07, -1.807947520345753e-07, -1.8079475203457056e-07, -1.8079475203457562e-07, -3.6158950406914997e-07, -3.0735107845877075e-06, -5.4238425610371883e-06, -2.1695370244148909e-06, -1.0847685122074416e-06, -1.8079475203457451e-07, -7.2317900813829856e-07, -2.8927160325531896e-06, -4.3390740488298038e-06, -1.4463580162766092e-06, -7.2317900813829856e-07, -2.892716032553193e-06, -2.8927160325531913e-06, -7.2317900813829856e-07, -2.1695370244148968e-06, -1.446358016276591e-06, -1.807947520345761e-07, -3.6158950406914944e-07, -7.2317900813829856e-07, -7.2317900813829951e-07, -1.6271527683111504e-06, -9.039737601728763e-07, -1.4463580162766028e-06, -2.8927160325531722e-06, -1.3017222146489205e-05, -7.2317900813830417e-07, -1.8079475203457419e-07, -1.0847685122074305e-05, -1.4463580162765944e-06, -8.6781480976594535e-06, -8.6781480976596145e-06, -9.0397376017286435e-06, -8.6781480976594535e-06, -7.2317900813830417e-07, -7.2317900813830396e-07, -1.4463580162765965e-06, -1.4463580162765952e-06, -7.2317900813829761e-07, -7.2317900813829761e-07, -1.4463580162766071e-06, -1.8079475203457604e-07, -1.4463580162766079e-06, -1.8079475203457451e-07, -1.8079475203457525e-07, -1.2655632642420193e-05, -7.2317900813829761e-07, -7.2317900813829761e-07, -1.1028479874109149e-05, -3.6158950406915156e-07, -1.3017222146489195e-05, -1.3017222146489195e-05, -1.4463580162765939e-06, -1.8079475203457419e-07, -1.4463580162765952e-06, -1.3017222146489195e-05, -1.3017222146489191e-05, -1.4463580162765944e-06, -1.4463580162765931e-06, -3.6158950406914774e-07, -3.6158950406915081e-07, -2.8927160325531743e-06, -1.4463580162765935e-06, -1.4463580162765939e-06, -5.4238425610372442e-07, -2.8927160325531743e-06, -9.6423867751773399e-05, -9.6423867751773128e-05, -9.6423867751773237e-05, -9.6423867751773345e-05, -4.8211933875886286e-05, -4.8211933875886286e-05, -9.6423867751772545e-05, -9.6423867751772491e-05, -1.2052983468971641e-05, -1.2052983468971631e-05, 0.046681204975326879, -0.0024105966937943298, -6.0264917344857971e-05, -1.2052983468971639e-05, -3.61589504069145e-05, -0.00012052983468971575, -0.00096423867751772754, -2.4105966937943262e-05, -0.0011088744791453906, -1.2052983468971561e-05, -0.00019284773550354631, -0.00019284773550354618, -9.6423867751772464e-05, -9.6423867751772573e-05, -0.00096423867751772776, -0.00096423867751772754, -9.6423867751771841e-05, -0.0027360272474565577, -2.4105966937943363e-05, -0.002410596693794345, -0.00019284773550354647, -9.6423867751773182e-05, -9.6423867751773454e-05, -1.2052983468971558e-05, -1.2052983468971641e-05, -9.6423867751772939e-05, -9.6423867751773074e-05, -2.4105966937943357e-05, -2.4105966937943357e-05, -1.2052983468971558e-05, -1.2052983468971611e-05, -9.64238677517726e-05, -6.0264917344858053e-05, -3.6158950406914561e-05, -4.82119338758863e-05, -4.8211933875886259e-05, -1.2052983468971639e-05, -0.00018079475203457157, -9.6423867751772844e-05, -9.6423867751772871e-05, -0.00010847685122074451, -9.6423867751772464e-05, -0.00018079475203457225, -2.4105966937943282e-05, -1.2052983468971668e-05, -9.6423867751772491e-05, -9.6423867751772518e-05, -1.2052983468971644e-05, -1.2052983468971624e-05, -9.6423867751772911e-05, -9.6423867751772803e-05, -2.4105966937942886e-05, -1.20529834689716e-05, -9.6423867751772695e-05, -0.00019284773550354409, -0.00012052983468971567, -9.6423867751772993e-05, -0.00019284773550354515, -1.2052983468971644e-05, -9.6423867751772708e-05, -0.00020490071897251682, -9.6423867751772925e-05, -9.6423867751772776e-05, -0.00019284773550354631, -0.0003856954710070866, -0.00030132458672428846, -9.6423867751772559e-05, -0.00019284773550354609, -0.00019284773550354593, -4.8211933875886713e-05, -9.642386775177283e-05, -0.00012052983468971564, -0.00013258281815868651, -4.8211933875886727e-05, -0.00019284773550354309, -9.6423867751772993e-05, -9.6423867751772966e-05, -9.6423867751773006e-05, -2.4105966937942899e-05, -9.6423867751773318e-05, -9.6423867751772559e-05, -1.205298346897168e-05, -9.6423867751772518e-05, -2.4105966937943136e-05, -9.6423867751773291e-05, -9.6423867751772911e-05, -9.642386775177302e-05, -1.2052983468971648e-05, -0.00019284773550354599, -0.00019284773550354615, -1.2052983468971627e-05, -9.6423867751772939e-05, -9.6423867751772911e-05, -1.2052983468971634e-05, -9.6423867751773426e-05, -9.6423867751773291e-05, -9.6423867751772749e-05, -9.6423867751773345e-05, -0.00028927160325531605, -9.6423867751773372e-05, -9.64238677517726e-05, -9.6423867751772749e-05, -1.2052983468971607e-05, -9.6423867751772722e-05, -9.6423867751772789e-05, -0.00019284773550354561, -4.8211933875886259e-05, -0.00021695370244148828, -4.82119338758863e-05, -1.2052983468971668e-05, -2.4105966937943228e-05, -0.00015668878509663084, -9.642386775177302e-05, -0.00019284773550354374, -0.00101245061139361, -9.6423867751772911e-05, -0.0010606625452695038, -9.6423867751772857e-05, -9.6423867751772749e-05, -0.00019284773550354593, -0.00096423867751772667, -0.00019284773550354609, -0.00097629166098669518, -1.205298346897156e-05, -0.00019284773550354626, -0.00019284773550354577, -4.8211933875886673e-05, -0.00101245061139361, -0.00096423867751772754, -0.00096423867751772602, -0.00096423867751772559, -1.2052983468971641e-05, -4.8211933875886429e-05, -1.2052983468971594e-05, -1.2052983468971661e-05, -1.2052983468971678e-05, -9.6423867751772966e-05, -9.642386775177302e-05, -9.6423867751772966e-05, -9.6423867751772993e-05, -1.2052983468971594e-05, -1.20529834689716e-05, -1.205298346897159e-05, -9.6423867751773237e-05, -0.00012052983468971602, -0.00024105966937943129, -0.00019284773550354352, -0.00019284773550354544, -9.6423867751773182e-05, -0.00028927160325531654, -3.6158950406915252e-05, -0.001060662545269504, -0.00019284773550354525, -0.00086781480976596225, -1.2052983468971638e-05, -1.2052983468971614e-05, -0.00030132458672428938, -0.00019284773550354561, -9.6423867751772844e-05, -8.4370884282800691e-05, -4.82119338758863e-05, -2.4105966937943275e-05, -0.00086781480976596225, -2.4105966937943282e-05, -4.8211933875886286e-05, -4.8211933875886286e-05, -0.00086781480976596203, -9.6423867751772695e-05, -1.2052983468971614e-05, -9.6423867751772884e-05, -1.205298346897159e-05, -9.6423867751772749e-05, -0.00012052983468971608, -3.6158950406914554e-05, -9.642386775177283e-05, -0.00018079475203457425, -1.2052983468971558e-05, -9.6423867751772627e-05, -2.4105966937943363e-05, -2.4105966937943357e-05, -2.4105966937943329e-05, -1.2052983468971624e-05, -7.2317900813829663e-05, -3.6158950406915137e-05, -9.642386775177306e-05, -9.6423867751773182e-05, -0.00019284773550354504, -0.00031337757019326158, -0.00027721861978634787, -1.2052983468971558e-05, -0.00019284773550354374, -9.6423867751773128e-05, -7.2317900813829853e-05, -2.4105966937943075e-05, -1.20529834689716e-05, -1.2052983468971658e-05, -0.00096423867751772559, -0.00096423867751772602, -0.0019525833219733917, -0.00096423867751772613, -0.00096423867751772667, -4.8211933875886727e-05, -2.4105966937943048e-05, -9.6423867751772166e-05, -0.00010847685122074454, -4.8211933875886713e-05, -0.00013258281815868792, -1.2052983468971639e-05, -1.2052983468971561e-05, -0.00019284773550354439, -9.6423867751772654e-05, -9.6423867751772803e-05, -1.2052983468971617e-05, -1.2052983468971641e-05, -4.821193387588651e-05, -4.8211933875886537e-05, -0.00019284773550354374, -9.6423867751773182e-05, -1.2052983468971578e-05, -0.0019525833219733869, -9.6423867751773142e-05, -9.6423867751773101e-05, -1.2052983468971627e-05, -4.8211933875886523e-05, -4.821193387588651e-05, -2.4105966937943116e-05, -2.4105966937943123e-05, -3.6158950406914567e-05, -1.2052983468971643e-05, -2.4105966937943123e-05, -2.4105966937943116e-05, -1.20529834689716e-05, -1.2052983468971644e-05, -4.8211933875886415e-05, -0.00014463580162765835, -9.6423867751772627e-05, -1.205298346897159e-05, -1.2052983468971561e-05, -0.00021695370244148831, -1.2052983468971624e-05, -4.8211933875886042e-05, -2.410596693794296e-05, -0.0001928477355035449, -0.00019284773550354504, -6.0264917344857971e-05, -4.8211933875886456e-05, -2.4105966937942899e-05, -7.231790081382908e-05, -0.0010245035948625921, -1.2052983468971611e-05, -4.8211933875886442e-05, -4.8211933875886476e-05, -0.0001928477355035452, -0.00019284773550354474, -4.8211933875886469e-05, -4.8211933875886361e-05, -4.8211933875886361e-05, -1.205298346897159e-05, -0.00055443723957269335, -0.00012052983468971574, -1.2052983468971648e-05, -9.6423867751773101e-05, -9.6423867751771759e-05, -9.6423867751773142e-05, -0.00019284773550354474, -9.6423867751772613e-05, -0.0001928477355035452, -9.6423867751771759e-05, -9.6423867751771759e-05, -0.0037002659249742499, -9.6423867751773074e-05, -0.0024105966937943198, -9.6423867751772722e-05, -2.4105966937943285e-05, -0.00072317900813829788, -0.00014463580162765835, -6.0264917344857849e-05, -0.0007231790081382878, -1.2052983468971572e-05, -9.6423867751773006e-05, -9.6423867751772966e-05, -0.0019525833219733869, -9.6423867751772627e-05, -9.6423867751772586e-05, -0.0027601332143944871, -3.6158950406914533e-05, 0.046693257958795913, -9.6423867751772911e-05, -9.6423867751772939e-05, -1.2052983468971602e-05, -9.6423867751772925e-05, -9.6423867751773047e-05, -1.2052983468971587e-05, -0.00019284773550354504, -0.0001928477355035449, -2.4105966937943329e-05, -4.821193387588651e-05, -4.8211933875886523e-05, -9.6423867751773128e-05, -9.6423867751773155e-05, -0.0019525833219733917, -9.6423867751773182e-05, -9.642386775177306e-05, -0.00032543055366223371, -0.0011570864130212672, -9.6423867751772993e-05, -0.0008557618262969804, -0.00014463580162765813, -0.00014463580162765813, -9.6423867751773128e-05, -9.6423867751773291e-05, -0.00012052983468971583, -9.6423867751773426e-05, -0.00012052983468971581, -0.00025311265284840267, -9.6423867751772654e-05, -6.026491734485789e-05, -0.00027721861978634662, -9.6423867751772667e-05, -0.00014463580162765835, -3.6158950406915157e-05, -6.0264917344857904e-05, -2.4105966937943336e-05, -1.2052983468971641e-05, -1.2052983468971614e-05, -9.6423867751773454e-05, -0.00014463580162765824, -7.2317900813829826e-05, -4.8211933875886347e-05, -9.6423867751773182e-05, -9.6423867751771841e-05, -9.6423867751771759e-05, -0.00019284773550354504, -9.6423867751772464e-05, -4.8211933875886476e-05, -0.00019284773550354509, -9.6423867751772545e-05, -4.8211933875886442e-05, -9.6423867751771759e-05, -1.2052983468971572e-05, -9.6423867751772518e-05, -9.6423867751772491e-05, -0.00019284773550354615, -0.00028927160325531648, -9.6423867751772803e-05, -0.00019284773550354647, -0.00019284773550354601, -9.6423867751772491e-05, -9.6423867751772545e-05, -9.6423867751772667e-05, -9.6423867751772559e-05, -0.00010847685122074364, -0.00040980143794503365, -2.4105966937942848e-05, -9.6423867751773372e-05, -9.6423867751772518e-05, -0.00010847685122074383, -0.00031337757019326271, -9.6423867751773128e-05, -9.6423867751772884e-05, -9.6423867751773399e-05, -4.8211933875886456e-05, -4.8211933875886469e-05, -1.2052983468971641e-05, -1.2052983468971678e-05, -1.2052983468971648e-05, -2.4105966937943248e-05, -0.00020490071897251682, -0.00036158950406914883, -0.0001446358016276584, -7.2317900813829663e-05, -1.2052983468971607e-05, -4.8211933875886456e-05, -0.00019284773550354525, -0.00028927160325531638, -9.6423867751773318e-05, -4.8211933875886442e-05, -0.00019284773550354561, -0.00019284773550354544, -4.8211933875886442e-05, -0.00014463580162765832, -9.6423867751772627e-05, -1.2052983468971668e-05, -2.4105966937942886e-05, -4.8211933875886456e-05, -4.8211933875886469e-05, -0.00010847685122074393, -6.0264917344857863e-05, -9.6423867751773101e-05, -0.00019284773550354406, -0.00086781480976596095, -4.8211933875886673e-05, -1.2052983468971594e-05, -0.00072317900813829831, -9.6423867751772749e-05, -0.00057854320651064414, -0.00057854320651063308, -0.00060264917344857627, -0.00057854320651064414, -4.8211933875886659e-05, -4.8211933875886645e-05, -9.6423867751772857e-05, -9.6423867751772749e-05, -4.8211933875886401e-05, -4.8211933875886401e-05, -9.6423867751773291e-05, -1.2052983468971665e-05, -9.6423867751773318e-05, -1.2052983468971604e-05, -1.2052983468971634e-05, -0.00084370884282800658, -4.8211933875886401e-05, -4.8211933875886401e-05, -0.00073523199160726953, -2.4105966937943309e-05, -0.00086781480976596203, -0.00086781480976596225, -9.6423867751772708e-05, -1.2052983468971594e-05, -9.6423867751772817e-05, -0.00086781480976596225, -0.00086781480976595563, -9.6423867751772803e-05, -9.6423867751772695e-05, -2.4105966937943157e-05, -2.4105966937943275e-05, -0.00019284773550354493, -9.6423867751772695e-05, -9.6423867751772749e-05, -3.6158950406914561e-05, -0.00019284773550354493, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -9.6905987090531947e-05, -9.642386775177222e-05, -2.4105966937943153e-06, -4.8211933875886122e-07, -1.4463580162766009e-06, -4.8211933875886612e-06, -3.8569547100709411e-05, -9.6423867751772287e-07, -4.435497916581536e-05, -4.8211933875886133e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100709411e-05, -3.8569547100709404e-05, -3.8569547100708898e-06, -0.00010944108989826151, -9.6423867751772224e-07, -9.6423867751773481e-05, -7.7139094201417779e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.4105966937943153e-06, -1.446358016276577e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -7.2317900813830256e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297149e-06, -3.8569547100708906e-06, -7.2317900813830019e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -7.713909420141783e-06, -4.8211933875886315e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -8.1960287589005979e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.2052983468971419e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -3.8569547100708898e-06, -4.8211933875886315e-06, -5.3033127263474541e-06, -1.9284773550354445e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708915e-06, 0.0019602972313935386, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212789e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594468e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652559e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.0498024455744644e-05, -3.8569547100708906e-06, -4.2426501810779673e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709167e-05, -7.7139094201417796e-06, -3.9051666439468155e-05, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.0498024455744644e-05, -3.8569547100709411e-05, -3.8569547100709133e-05, -3.8569547100709235e-05, -4.8211933875886122e-07, -1.9284773550354449e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886696e-06, -9.6423867751773155e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -1.1570864130212799e-05, -1.4463580162766208e-06, -4.2426501810779999e-05, -7.7139094201417796e-06, -3.4712592390637916e-05, -4.8211933875886122e-07, -4.8211933875886144e-07, -1.2052983468971599e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120363e-06, -1.9284773550354445e-06, -9.6423867751772245e-07, -3.4712592390637916e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390637895e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886493e-06, -1.4463580162765997e-06, -3.8569547100708906e-06, -7.2317900813829773e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.892716032553215e-06, -1.4463580162766177e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.2535102807730481e-05, -1.1088744791453848e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -2.8927160325532209e-06, -9.6423867751772266e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -3.8569547100709235e-05, -3.8569547100709133e-05, -7.8103332878936554e-05, -3.8569547100709133e-05, -3.8569547100709167e-05, -1.9284773550354445e-06, -9.6423867751772245e-07, -3.8569547100708881e-06, -4.3390740488297064e-06, -1.9284773550354445e-06, -5.303312726347482e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -7.8103332878936378e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4463580162765994e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651064012e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -8.6781480976594671e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943263e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325531989e-06, -4.0980143794503347e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886144e-07, -2.2177489582907602e-05, -4.8211933875886315e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897244, -3.8569547100708898e-06, -9.6423867751772464e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.8927160325531726e-05, -5.7854320651064012e-06, -2.4105966937943234e-06, -2.8927160325532048e-05, -4.8211933875886144e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936378e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577912, -1.4463580162765986e-06, -9.6423867751772911e-05, 0.0019602972313935386, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936554e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489222e-05, -4.6283456520851196e-05, -3.8569547100708915e-06, -3.4230473051878901e-05, -5.7854320651063944e-06, -5.7854320651063944e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886722e-06, -3.8569547100708898e-06, -4.8211933875886612e-06, -1.0124506113936158e-05, -3.8569547100708906e-06, -2.4105966937943331e-06, -1.1088744791453798e-05, -3.8569547100708906e-06, -5.7854320651064012e-06, -1.4463580162766183e-06, -2.410596693794323e-06, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063978e-06, -2.8927160325532201e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.1570864130212796e-05, -3.8569547100708906e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297352e-06, -1.6392057517801301e-05, -9.6423867751772224e-07, -3.8569547100708889e-06, -3.8569547100708915e-06, -4.3390740488297352e-06, -1.2535102807730492e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -8.1960287589005505e-06, -1.446358016276588e-05, -5.7854320651064012e-06, -2.892716032553215e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417796e-06, -1.1570864130212794e-05, -3.8569547100708889e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651063995e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.3390740488297285e-06, -2.4105966937943297e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.4712592390637916e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.892716032553172e-05, -3.8569547100708906e-06, -2.3141728260425937e-05, -2.3141728260425591e-05, -2.4105966937943109e-05, -2.3141728260425937e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.3748353713120354e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.940927966429067e-05, -9.6423867751772245e-07, -3.4712592390637895e-05, -3.4712592390637916e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390637916e-05, -3.4712592390637841e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765994e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6905987090531974e-05, -9.6423867751772247e-05, -2.4105966937943153e-06, -4.8211933875886133e-07, -1.4463580162766005e-06, -4.8211933875886612e-06, -3.8569547100709398e-05, -9.6423867751772287e-07, -4.4354979165815347e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100709404e-05, -3.8569547100709398e-05, -3.8569547100708898e-06, -0.00010944108989826145, -9.6423867751772245e-07, -9.6423867751773535e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.4105966937943153e-06, -1.4463580162765757e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.231790081383029e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297115e-06, -3.8569547100708915e-06, -7.2317900813830053e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886298e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -8.1960287589005979e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.2052983468971409e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.8211933875886298e-06, -5.3033127263474541e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, 0.0019602972313935386, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212789e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.67814809765944e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652559e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.0498024455744644e-05, -3.8569547100708906e-06, -4.2426501810779673e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.856954710070916e-05, -7.7139094201417796e-06, -3.9051666439468155e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.0498024455744644e-05, -3.8569547100709398e-05, -3.8569547100709133e-05, -3.8569547100709228e-05, -4.8211933875886122e-07, -1.9284773550354449e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -4.8211933875886679e-06, -9.6423867751773121e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -1.1570864130212802e-05, -1.4463580162766213e-06, -4.2426501810779999e-05, -7.7139094201417813e-06, -3.4712592390637895e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971604e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.374835371312035e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390637882e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390637882e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886493e-06, -1.4463580162766001e-06, -3.8569547100708915e-06, -7.2317900813829807e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325532158e-06, -1.4463580162766181e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730481e-05, -1.1088744791453845e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.892716032553223e-06, -9.6423867751772266e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709228e-05, -3.8569547100709133e-05, -7.8103332878936527e-05, -3.8569547100709133e-05, -3.856954710070916e-05, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297031e-06, -1.9284773550354449e-06, -5.303312726347482e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936364e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162765999e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651064046e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976594603e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943263e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325531997e-06, -4.0980143794503347e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.2177489582907595e-05, -4.8211933875886307e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897249, -3.8569547100708906e-06, -9.6423867751772518e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -2.8927160325531733e-05, -5.7854320651064012e-06, -2.410596693794323e-06, -2.8927160325532062e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936364e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577906, -1.4463580162765994e-06, -9.6423867751772939e-05, -3.8569547100708915e-06, 0.0019602972313935386, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936527e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489222e-05, -4.6283456520851209e-05, -3.8569547100708915e-06, -3.4230473051878881e-05, -5.7854320651063978e-06, -5.7854320651063978e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886713e-06, -3.8569547100708898e-06, -4.8211933875886603e-06, -1.0124506113936158e-05, -3.8569547100708915e-06, -2.4105966937943327e-06, -1.1088744791453794e-05, -3.8569547100708906e-06, -5.7854320651064012e-06, -1.4463580162766183e-06, -2.4105966937943225e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063995e-06, -2.8927160325532209e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.1570864130212796e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297319e-06, -1.6392057517801301e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488297319e-06, -1.2535102807730492e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -8.1960287589005505e-06, -1.4463580162765884e-05, -5.7854320651064012e-06, -2.8927160325532158e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417813e-06, -1.1570864130212797e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651064012e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.3390740488297251e-06, -2.4105966937943289e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.4712592390637895e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531733e-05, -3.8569547100708906e-06, -2.3141728260425944e-05, -2.3141728260425598e-05, -2.4105966937943119e-05, -2.3141728260425944e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.374835371312034e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.9409279664290677e-05, -9.6423867751772245e-07, -3.4712592390637882e-05, -3.4712592390637882e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390637895e-05, -3.4712592390637828e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765999e-06, -7.713909420141783e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -1.2113248386316483e-05, -1.2052983468971514e-05, -3.0132458672428873e-07, -6.0264917344857666e-08, -1.8079475203457435e-07, -6.0264917344858116e-07, -4.8211933875886637e-06, -1.2052983468971533e-07, -5.544372395726931e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886645e-06, -4.8211933875886629e-06, -4.8211933875886122e-07, -1.3680136237282656e-05, -1.2052983468971528e-07, -1.2052983468971675e-05, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886101e-07, -3.0132458672428868e-07, -1.8079475203457451e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857666e-08, -9.0397376017287693e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610371542e-07, -4.8211933875886133e-07, -9.039737601728709e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971525e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -9.6423867751772266e-07, -6.0264917344858e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -1.024503594862576e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.928477355035444e-06, -1.5066229336214431e-06, -4.8211933875886144e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943056e-07, -4.8211933875886133e-07, -6.0264917344858021e-07, -6.6291409079343282e-07, -2.4105966937943056e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.4463580162765948e-06, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.084768512207433e-06, -2.4105966937943072e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -7.8344392548315657e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -5.0622530569680822e-06, -4.8211933875886144e-07, -5.3033127263474676e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -4.8211933875886366e-06, -9.6423867751772245e-07, -4.8814583049335109e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -5.0622530569680822e-06, -4.8211933875886637e-06, -4.8211933875886332e-06, -4.8211933875886459e-06, -6.0264917344857653e-08, -2.4105966937943045e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.026491734485764e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886122e-07, -6.0264917344858212e-07, -1.2052983468971613e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -1.4463580162765787e-06, -1.8079475203457715e-07, -5.3033127263475058e-06, -9.6423867751772245e-07, -4.3390740488297496e-06, -6.0264917344857666e-08, -6.0264917344857679e-08, -1.5066229336214479e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.2185442141400464e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -4.3390740488297496e-06, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297479e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -6.0264917344857968e-07, -1.8079475203457451e-07, -4.8211933875886133e-07, -9.039737601728709e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -3.6158950406915097e-07, -1.8079475203457676e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -1.5668878509663089e-06, -1.3860930989317334e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -3.6158950406915177e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886459e-06, -4.8211933875886332e-06, -9.7629166098670523e-06, -4.8211933875886332e-06, -4.8211933875886366e-06, -2.4105966937943056e-07, -1.2052983468971533e-07, -4.8211933875886112e-07, -5.4238425610371436e-07, -2.4105966937943056e-07, -6.6291409079343642e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.7629166098670303e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -1.8079475203457451e-07, -6.0264917344857653e-08, -1.2052983468971533e-07, -1.2052983468971533e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -2.4105966937943056e-07, -7.2317900813829845e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -1.0847685122074353e-06, -6.0264917344857679e-08, -2.4105966937943051e-07, -1.2052983468971531e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.0132458672429026e-07, -2.4105966937943072e-07, -1.2052983468971531e-07, -3.6158950406914891e-07, -5.1225179743129167e-06, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857679e-08, 0.00024274708706508783, -6.0264917344857746e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.8501329624871528e-05, -4.8211933875886133e-07, -1.205298346897159e-05, -4.8211933875886133e-07, -1.2052983468971531e-07, -3.6158950406914599e-06, -7.2317900813829824e-07, -3.0132458672428963e-07, -3.6158950406915009e-06, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670303e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.3800666071972403e-05, -1.807947520345744e-07, -1.2052983468971602e-05, -4.8211933875886133e-07, -4.8211933875886133e-07, 0.00024545900834560633, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670523e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.6271527683111532e-06, -5.7854320651063859e-06, -4.8211933875886133e-07, -4.278809131484866e-06, -7.2317900813829761e-07, -7.2317900813829761e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344858254e-07, -4.8211933875886122e-07, -6.0264917344857926e-07, -1.2655632642420189e-06, -4.8211933875886133e-07, -3.013245867242909e-07, -1.3860930989317275e-06, -4.8211933875886144e-07, -7.2317900813829824e-07, -1.8079475203457681e-07, -3.0132458672428963e-07, -1.2052983468971528e-07, -6.0264917344857653e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -7.2317900813829792e-07, -3.6158950406915161e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.4105966937943072e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -1.4463580162765956e-06, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610371807e-07, -2.0490071897251652e-06, -1.2052983468971528e-07, -4.8211933875886112e-07, -4.8211933875886144e-07, -5.4238425610371807e-07, -1.5668878509663102e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857666e-08, -6.026491734485764e-08, -6.0264917344857653e-08, -1.2052983468971536e-07, -1.0245035948625703e-06, -1.8079475203457316e-06, -7.2317900813829824e-07, -3.6158950406915097e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -9.6423867751772245e-07, -1.4463580162765778e-06, -4.8211933875886112e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -7.2317900813829814e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -5.4238425610371712e-07, -3.0132458672429042e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -4.3390740488297429e-06, -2.4105966937943061e-07, -6.0264917344857679e-08, -3.6158950406914599e-06, -4.8211933875886144e-07, -2.892716032553182e-06, -2.8927160325531561e-06, -3.0132458672428577e-06, -2.892716032553182e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.2185442141400527e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -3.6761599580363278e-06, -1.2052983468971531e-07, -4.3390740488297479e-06, -4.3390740488297496e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.3390740488297496e-06, -4.3390740488297412e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.8079475203457448e-07, -9.6423867751772287e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6905987090531947e-05, -9.642386775177222e-05, -2.4105966937943162e-06, -4.8211933875886122e-07, -1.446358016276599e-06, -4.8211933875886629e-06, -3.8569547100709411e-05, -9.6423867751772245e-07, -4.435497916581536e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100709418e-05, -3.8569547100709411e-05, -3.8569547100708889e-06, -0.00010944108989826109, -9.6423867751772224e-07, -9.6423867751773508e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708873e-06, -2.4105966937943158e-06, -1.4463580162766003e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -7.2317900813830248e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488297115e-06, -3.8569547100708906e-06, -7.2317900813830036e-06, -9.6423867751772245e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -7.7139094201417796e-06, -4.8211933875886535e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -8.1960287589005691e-06, 0.0019602972313935386, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971558e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -4.8211933875886544e-06, -5.3033127263474549e-06, -1.9284773550354445e-06, -7.7139094201417762e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708889e-06, -1.1570864130212792e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -8.67814809765944e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -6.2675514038652585e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.0498024455744685e-05, -3.8569547100708898e-06, -4.2426501810779673e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417779e-06, -3.8569547100709188e-05, -7.7139094201417796e-06, -3.9051666439468101e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.9284773550354445e-06, -4.0498024455744678e-05, -3.8569547100709411e-05, -3.8569547100709011e-05, -3.8569547100709276e-05, -4.8211933875886122e-07, -1.9284773550354436e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886696e-06, -9.6423867751773155e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -1.1570864130212804e-05, -1.4463580162766215e-06, -4.2426501810779978e-05, -7.7139094201417796e-06, -3.4712592390637895e-05, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.2052983468971524e-05, -7.7139094201417813e-06, -3.8569547100708898e-06, -3.3748353713120668e-06, -1.9284773550354445e-06, -9.6423867751772245e-07, -3.4712592390637882e-05, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.4712592390637882e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.821193387588651e-06, -1.4463580162766003e-06, -3.8569547100708906e-06, -7.2317900813829765e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.8927160325532163e-06, -1.4463580162765726e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.2535102807730483e-05, -1.1088744791453845e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -2.892716032553223e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100709276e-05, -3.8569547100709011e-05, -7.8103332878936581e-05, -3.8569547100709079e-05, -3.8569547100709188e-05, -1.9284773550354445e-06, -9.6423867751772245e-07, -3.8569547100708881e-06, -4.3390740488297031e-06, -1.9284773550354445e-06, -5.303312726347482e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.8103332878936418e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4463580162766037e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651064046e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -8.6781480976594569e-06, -4.8211933875886144e-07, -1.9284773550354436e-06, -9.6423867751772224e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943285e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325532006e-06, -4.0980143794503334e-05, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -2.2177489582907606e-05, -4.8211933875886324e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00014801063699897255, -3.8569547100708898e-06, -9.642386775177283e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.8927160325531723e-05, -5.7854320651064029e-06, -2.4105966937943238e-06, -2.8927160325532045e-05, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936418e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577904, -1.4463580162765994e-06, -9.6423867751772925e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, 0.0019602972313935386, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936581e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489213e-05, -4.6283456520851223e-05, -3.8569547100708906e-06, -3.4230473051878847e-05, -5.7854320651063978e-06, -5.7854320651063978e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.821193387588673e-06, -3.8569547100708889e-06, -4.8211933875886654e-06, -1.0124506113936164e-05, -3.8569547100708906e-06, -2.4105966937943335e-06, -1.1088744791453786e-05, -3.8569547100708906e-06, -5.7854320651064029e-06, -1.4463580162766187e-06, -2.4105966937943234e-06, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708889e-06, -5.7854320651064003e-06, -2.8927160325532218e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417779e-06, -1.1570864130212799e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297319e-06, -1.639205751780124e-05, -9.6423867751772202e-07, -3.8569547100708889e-06, -3.8569547100708906e-06, -4.3390740488297319e-06, -1.2535102807730243e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -8.196028758900542e-06, -1.4463580162765877e-05, -5.7854320651064029e-06, -2.8927160325532163e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -7.7139094201417796e-06, -1.1570864130212799e-05, -3.8569547100708889e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.785432065106402e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -9.6423867751772224e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.3390740488297251e-06, -2.4105966937943297e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.4712592390637841e-05, -1.9284773550354445e-06, -4.8211933875886133e-07, -2.8927160325531716e-05, -3.8569547100708906e-06, -2.3141728260425947e-05, -2.3141728260425598e-05, -2.4105966937943113e-05, -2.3141728260425947e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.3748353713120374e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.9409279664290643e-05, -9.6423867751772245e-07, -3.4712592390637882e-05, -3.4712592390637882e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390637895e-05, -3.4712592390637828e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.4463580162766001e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6905987090532082e-05, -9.6423867751772342e-05, -2.4105966937943153e-06, -4.8211933875886122e-07, -1.4463580162766003e-06, -4.8211933875886595e-06, -3.8569547100709398e-05, -9.6423867751772245e-07, -4.4354979165815319e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100709398e-05, -3.8569547100709391e-05, -3.8569547100708889e-06, -0.00010944108989826098, -9.6423867751772224e-07, -9.642386775177363e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708873e-06, -2.4105966937943145e-06, -1.4463580162766016e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -7.2317900813830315e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488297047e-06, -3.8569547100708906e-06, -7.2317900813830104e-06, -9.6423867751772245e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -7.7139094201417796e-06, -4.821193387588651e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, 0.0019559581573447096, -3.8569547100708898e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971573e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -4.8211933875886527e-06, -5.3033127263474566e-06, -1.9284773550354445e-06, -7.7139094201417762e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708889e-06, -1.1570864130212802e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -8.6781480976594264e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -6.2675514038652568e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.0498024455744671e-05, -3.8569547100708898e-06, -4.2426501810779687e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417779e-06, -3.856954710070916e-05, -7.7139094201417796e-06, -3.9051666439468087e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.9284773550354445e-06, -4.0498024455744671e-05, -3.8569547100709398e-05, -3.8569547100708998e-05, -3.8569547100709255e-05, -4.8211933875886122e-07, -1.9284773550354436e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886679e-06, -9.6423867751773121e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -1.1570864130212814e-05, -1.4463580162766227e-06, -4.2426501810779992e-05, -7.7139094201417796e-06, -3.4712592390637841e-05, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.2052983468971541e-05, -7.7139094201417813e-06, -3.8569547100708898e-06, -3.3748353713120748e-06, -1.9284773550354445e-06, -9.6423867751772245e-07, -3.4712592390637841e-05, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.4712592390637841e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886476e-06, -1.4463580162766016e-06, -3.8569547100708906e-06, -7.2317900813829833e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.8927160325532188e-06, -1.4463580162765753e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.253510280773048e-05, -1.1088744791453835e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -2.8927160325532256e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100709255e-05, -3.8569547100708998e-05, -7.8103332878936554e-05, -3.8569547100709066e-05, -3.856954710070916e-05, -1.9284773550354445e-06, -9.6423867751772245e-07, -3.8569547100708881e-06, -4.3390740488296963e-06, -1.9284773550354445e-06, -5.3033127263474837e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.8103332878936391e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4463580162766024e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651064097e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -8.6781480976594468e-06, -4.8211933875886144e-07, -1.9284773550354436e-06, -9.6423867751772224e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943272e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325532031e-06, -4.0980143794503334e-05, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -2.2177489582907578e-05, -4.8211933875886298e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00014801063699897276, -3.8569547100708898e-06, -9.6423867751772952e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.892716032553175e-05, -5.785432065106408e-06, -2.4105966937943225e-06, -2.8927160325532072e-05, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936391e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577893, -1.4463580162766007e-06, -9.6423867751773047e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, 0.0019602972313935386, -4.8211933875886133e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936554e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489217e-05, -4.6283456520851264e-05, -3.8569547100708906e-06, -3.4230473051878793e-05, -5.7854320651064029e-06, -5.7854320651064029e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886705e-06, -3.8569547100708889e-06, -4.8211933875886629e-06, -1.0124506113936163e-05, -3.8569547100708906e-06, -2.4105966937943323e-06, -1.1088744791453772e-05, -3.8569547100708906e-06, -5.785432065106408e-06, -1.44635801627662e-06, -2.4105966937943221e-06, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708889e-06, -5.7854320651064054e-06, -2.8927160325532243e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417779e-06, -1.1570864130212809e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297251e-06, -1.639205751780125e-05, -9.6423867751772202e-07, -3.8569547100708889e-06, -3.8569547100708906e-06, -4.3390740488297251e-06, -1.2535102807730222e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -8.1960287589005454e-06, -1.446358016276589e-05, -5.785432065106408e-06, -2.8927160325532188e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -7.7139094201417796e-06, -1.1570864130212809e-05, -3.8569547100708889e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651064071e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -9.6423867751772224e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.3390740488297183e-06, -2.4105966937943289e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.4712592390637801e-05, -1.9284773550354445e-06, -4.8211933875886133e-07, -2.8927160325531743e-05, -3.8569547100708906e-06, -2.3141728260425967e-05, -2.3141728260425618e-05, -2.4105966937943143e-05, -2.3141728260425967e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.374835371312032e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.9409279664290677e-05, -9.6423867751772245e-07, -3.4712592390637841e-05, -3.4712592390637841e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390637841e-05, -3.4712592390637787e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.4463580162766014e-06, -7.7139094201417813e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -1.2113248386316466e-05, -1.2052983468971497e-05, -3.0132458672428857e-07, -6.0264917344857666e-08, -1.8079475203457393e-07, -6.0264917344858095e-07, -4.8211933875886595e-06, -1.2052983468971536e-07, -5.5443723957269386e-06, -6.0264917344857679e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886595e-06, -4.8211933875886595e-06, -4.8211933875886122e-07, -1.3680136237282672e-05, -1.2052983468971531e-07, -1.2052983468971658e-05, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886101e-07, -3.0132458672428857e-07, -1.8079475203457403e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857666e-08, -9.0397376017287587e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.423842561037169e-07, -4.8211933875886144e-07, -9.0397376017287259e-07, -1.2052983468971533e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344857957e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344857666e-08, -4.8211933875886144e-07, -1.0245035948625796e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6423867751772266e-07, -1.9284773550354445e-06, -1.5066229336214409e-06, -4.8211933875886144e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -6.0264917344857979e-07, -6.6291409079343282e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -1.2052983468971533e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.4463580162765914e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.0847685122074361e-06, -2.4105966937943072e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -7.8344392548315615e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -5.0622530569680788e-06, -4.8211933875886144e-07, -5.3033127263474676e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -4.8211933875886298e-06, -9.6423867751772266e-07, -4.8814583049335058e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -5.0622530569680788e-06, -4.8211933875886595e-06, -4.8211933875886264e-06, -4.8211933875886383e-06, -6.0264917344857666e-08, -2.4105966937943061e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -6.026491734485818e-07, -1.2052983468971602e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -4.8211933875886133e-07, -1.4463580162765927e-06, -1.807947520345767e-07, -5.3033127263475091e-06, -9.6423867751772266e-07, -4.3390740488297615e-06, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.506622933621446e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.2185442141400533e-07, -2.4105966937943061e-07, -1.2052983468971533e-07, -4.3390740488297615e-06, -1.2052983468971533e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297598e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857926e-07, -1.8079475203457408e-07, -4.8211933875886144e-07, -9.0397376017287005e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -3.6158950406914616e-07, -1.8079475203457628e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -1.5668878509663051e-06, -1.3860930989317359e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -3.6158950406915092e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886383e-06, -4.8211933875886264e-06, -9.7629166098670388e-06, -4.8211933875886264e-06, -4.8211933875886298e-06, -2.4105966937943061e-07, -1.2052983468971536e-07, 0.00024503715392419233, -5.4238425610371892e-07, -2.4105966937943061e-07, -6.6291409079343631e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.7629166098670184e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.8079475203457403e-07, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943061e-07, -7.2317900813829676e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.0847685122074387e-06, -6.0264917344857679e-08, -2.4105966937943051e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.0132458672428989e-07, -2.4105966937943072e-07, -1.2052983468971533e-07, -3.6158950406914806e-07, -5.1225179743129167e-06, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, -2.7721861978634596e-06, -6.0264917344857714e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.8501329624871473e-05, -4.8211933875886133e-07, -1.2052983468971575e-05, -4.8211933875886144e-07, -1.2052983468971533e-07, -3.6158950406914616e-06, -7.2317900813829634e-07, -3.0132458672428942e-07, -3.6158950406914912e-06, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670184e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.380066607197243e-05, -1.8079475203457393e-07, -1.2052983468971587e-05, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, 0.00024545900834560644, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670388e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.627152768311154e-06, -5.7854320651063724e-06, -4.8211933875886144e-07, -4.2788091314848787e-06, -7.231790081382957e-07, -7.231790081382957e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344858201e-07, -4.8211933875886122e-07, -6.0264917344858074e-07, -1.265563264242018e-06, -4.8211933875886144e-07, -3.0132458672429069e-07, -1.3860930989317294e-06, -4.8211933875886144e-07, -7.2317900813829634e-07, -1.8079475203457631e-07, -3.0132458672428942e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -7.2317900813829612e-07, -3.6158950406915071e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.4463580162765918e-06, -4.8211933875886144e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610371955e-07, -2.0490071897251685e-06, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -5.4238425610371955e-07, -1.5668878509663066e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.024503594862572e-06, -1.8079475203457304e-06, -7.2317900813829634e-07, -3.6158950406914616e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -9.6423867751772266e-07, -1.446358016276592e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -7.2317900813829634e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -5.423842561037187e-07, -3.0132458672429026e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.3390740488297496e-06, -2.4105966937943061e-07, -6.0264917344857679e-08, -3.6158950406914607e-06, -4.8211933875886144e-07, -2.8927160325532277e-06, -2.8927160325531845e-06, -3.0132458672428819e-06, -2.8927160325532277e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.2185442141400883e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -3.6761599580363338e-06, -1.2052983468971533e-07, -4.3390740488297598e-06, -4.3390740488297615e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.3390740488297615e-06, -4.339074048829753e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.8079475203457403e-07, -9.6423867751772287e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -0.00019381197418106324, -0.00019284773550354365, -4.821193387588612e-06, -9.6423867751772266e-07, -2.8927160325531794e-06, -9.6423867751772833e-06, -7.7139094201418497e-05, -1.9284773550354453e-06, -8.8709958331631195e-05, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201418497e-05, -7.7139094201418497e-05, -7.7139094201417796e-06, -0.00021888217979652299, -1.9284773550354445e-06, -0.00019284773550354623, -1.5427818840283559e-05, -7.7139094201417813e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -7.7139094201417762e-06, -4.821193387588612e-06, -2.8927160325531811e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -1.4463580162765997e-05, -7.713909420141783e-06, -7.713909420141783e-06, -8.6781480976594823e-06, -7.7139094201417813e-06, -1.4463580162765934e-05, -1.9284773550354449e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -1.5427818840283563e-05, -9.6423867751772647e-06, -7.7139094201417813e-06, -1.5427818840283563e-05, -9.6423867751772245e-07, -7.713909420141783e-06, -1.6392057517801247e-05, -7.7139094201417813e-06, -7.713909420141783e-06, -1.5427818840283559e-05, -3.0855637680567105e-05, -2.4105966937943018e-05, -7.713909420141783e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708889e-06, -7.7139094201417813e-06, -9.6423867751772681e-06, -1.0606625452694939e-05, -3.8569547100708889e-06, -1.5427818840283556e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -7.713909420141783e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -7.7139094201417796e-06, -2.3141728260425432e-05, -7.7139094201417779e-06, -7.7139094201417813e-06, -7.713909420141783e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.713909420141783e-06, -1.5427818840283566e-05, -3.8569547100708915e-06, -1.7356296195318999e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.2535102807730495e-05, -7.7139094201417813e-06, -1.5427818840283559e-05, -8.0996048911489261e-05, -7.713909420141783e-06, -8.4853003621559564e-05, -7.713909420141783e-06, -7.713909420141783e-06, -1.5427818840283559e-05, -7.7139094201418077e-05, -1.5427818840283559e-05, -7.8103332878936093e-05, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -8.0996048911489261e-05, -7.7139094201418497e-05, -7.7139094201418009e-05, -7.7139094201418213e-05, -9.6423867751772245e-07, -3.8569547100708881e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.7139094201417796e-06, -9.6423867751772986e-06, -1.928477355035455e-05, -1.5427818840283559e-05, -1.5427818840283566e-05, -7.7139094201417796e-06, -2.3141728260425368e-05, -2.8927160325532239e-06, -8.4853003621560201e-05, -1.5427818840283566e-05, -6.9425184781276292e-05, -9.6423867751772266e-07, -9.6423867751772287e-07, -2.4105966937943096e-05, -1.5427818840283566e-05, -7.713909420141783e-06, -6.7496707426240878e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -6.9425184781276265e-05, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -6.9425184781276265e-05, -7.713909420141783e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -9.6423867751772596e-06, -2.8927160325531815e-06, -7.7139094201417813e-06, -1.44635801627659e-05, -9.6423867751772287e-07, -7.713909420141783e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -5.7854320651063944e-06, -2.8927160325532171e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283563e-05, -2.5070205615460922e-05, -2.2177489582907809e-05, -9.6423867751772287e-07, -1.5427818840283563e-05, -7.7139094201417813e-06, -5.7854320651064071e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.7139094201418213e-05, -7.7139094201418009e-05, -0.00015620666575787262, -7.7139094201418009e-05, -7.7139094201418077e-05, -3.8569547100708889e-06, -1.9284773550354453e-06, -7.7139094201417779e-06, -8.6781480976594637e-06, -3.8569547100708889e-06, -1.0606625452694995e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.5427818840283563e-05, -7.7139094201417813e-06, -7.713909420141783e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.5427818840283559e-05, -7.7139094201417813e-06, -9.6423867751772287e-07, -0.00015620666575787229, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.8927160325531811e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -3.8569547100708889e-06, -1.1570864130212733e-05, -7.7139094201417813e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -1.7356296195319039e-05, -9.6423867751772287e-07, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.5427818840283566e-05, 0.0039128805533669361, -4.8211933875886357e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -5.7854320651063622e-06, -8.1960287589006667e-05, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.5427818840283566e-05, -1.5427818840283566e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772287e-07, -4.4354979165815428e-05, -9.6423867751772241e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283566e-05, -7.7139094201417796e-06, -1.5427818840283566e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00029602127399794336, -7.7139094201417813e-06, -0.00019284773550354485, -7.7139094201417813e-06, -1.9284773550354449e-06, -5.7854320651063236e-05, -1.157086413021273e-05, -4.8211933875886273e-06, -5.7854320651063873e-05, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -0.00015620666575787229, -7.713909420141783e-06, -7.713909420141783e-06, -0.00022081065715155894, -2.8927160325531798e-06, -0.00019284773550354504, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, 0.0039128805533669361, -1.5427818840283566e-05, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -0.00015620666575787262, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.6034444292978471e-05, -9.2566913041701836e-05, -7.7139094201417813e-06, -6.8460946103758114e-05, -1.1570864130212719e-05, -1.1570864130212719e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751773054e-06, -7.7139094201417796e-06, -9.6423867751772579e-06, -2.0249012227872288e-05, -7.7139094201417813e-06, -4.8211933875886459e-06, -2.2177489582907711e-05, -7.713909420141783e-06, -1.157086413021273e-05, -2.892716032553218e-06, -4.8211933875886256e-06, -1.9284773550354445e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -7.7139094201417796e-06, -1.1570864130212724e-05, -5.7854320651064046e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -7.7139094201417813e-06, -3.8569547100708915e-06, -1.5427818840283556e-05, -7.713909420141783e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.5427818840283559e-05, -2.3141728260425445e-05, -7.7139094201417813e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.713909420141783e-06, -7.713909420141783e-06, -8.678148097659523e-06, -3.2784115035602703e-05, -1.9284773550354445e-06, -7.7139094201417779e-06, -7.713909420141783e-06, -8.678148097659523e-06, -2.5070205615460942e-05, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.6392057517801155e-05, -2.8927160325531652e-05, -1.157086413021273e-05, -5.7854320651063944e-06, -9.6423867751772287e-07, -3.8569547100708915e-06, -1.5427818840283566e-05, -2.3141728260425354e-05, -7.7139094201417779e-06, -3.8569547100708915e-06, -1.5427818840283566e-05, -1.5427818840283566e-05, -3.8569547100708915e-06, -1.1570864130212728e-05, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -8.6781480976595094e-06, -4.8211933875886391e-06, -7.7139094201417813e-06, -1.5427818840283563e-05, -6.9425184781276184e-05, -3.8569547100708898e-06, -9.6423867751772287e-07, -5.7854320651063222e-05, -7.713909420141783e-06, -4.6283456520851074e-05, -4.6283456520850715e-05, -4.8211933875885927e-05, -4.6283456520851074e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772287e-07, -6.749670742624106e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -5.881855932858115e-05, -1.9284773550354449e-06, -6.9425184781276265e-05, -6.9425184781276265e-05, -7.713909420141783e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -6.9425184781276292e-05, -6.9425184781276157e-05, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.5427818840283566e-05, -7.713909420141783e-06, -7.713909420141783e-06, -2.8927160325531811e-06, -1.5427818840283566e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -0.00019381197418106308, -0.00019284773550354352, -4.8211933875886137e-06, -9.6423867751772266e-07, -2.8927160325531777e-06, -9.6423867751772867e-06, -7.7139094201418524e-05, -1.9284773550354453e-06, -8.8709958331631262e-05, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201418524e-05, -7.7139094201418524e-05, -7.7139094201417796e-06, -0.00021888217979652318, -1.9284773550354445e-06, -0.00019284773550354609, -1.5427818840283559e-05, -7.7139094201417813e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -7.7139094201417762e-06, -4.8211933875886137e-06, -2.8927160325531794e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -1.4463580162765989e-05, -7.713909420141783e-06, -7.713909420141783e-06, -8.6781480976594925e-06, -7.7139094201417813e-06, -1.4463580162765934e-05, -1.9284773550354449e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -1.5427818840283563e-05, -9.6423867751772681e-06, -7.7139094201417813e-06, -1.5427818840283563e-05, -9.6423867751772245e-07, -7.713909420141783e-06, -1.6392057517801253e-05, -7.7139094201417813e-06, -7.713909420141783e-06, -1.5427818840283559e-05, -3.0855637680567105e-05, -2.4105966937943001e-05, -7.713909420141783e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708889e-06, -7.7139094201417813e-06, -9.6423867751772715e-06, -1.0606625452694935e-05, -3.8569547100708889e-06, -1.5427818840283556e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -7.713909420141783e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -7.7139094201417796e-06, -2.3141728260425418e-05, -7.7139094201417779e-06, -7.7139094201417813e-06, -7.713909420141783e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.713909420141783e-06, -1.5427818840283566e-05, -3.8569547100708915e-06, -1.7356296195319012e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.2535102807730495e-05, -7.7139094201417813e-06, -1.5427818840283559e-05, -8.0996048911489288e-05, -7.713909420141783e-06, -8.4853003621559536e-05, -7.713909420141783e-06, -7.713909420141783e-06, -1.5427818840283559e-05, -7.7139094201418104e-05, -1.5427818840283559e-05, -7.8103332878936093e-05, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -8.0996048911489261e-05, -7.7139094201418524e-05, -7.7139094201418036e-05, -7.713909420141824e-05, -9.6423867751772245e-07, -3.8569547100708881e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.7139094201417796e-06, -9.642386775177302e-06, -1.9284773550354557e-05, -1.5427818840283559e-05, -1.5427818840283566e-05, -7.7139094201417796e-06, -2.3141728260425408e-05, -2.8927160325532222e-06, -8.4853003621560173e-05, -1.5427818840283566e-05, -6.9425184781276347e-05, -9.6423867751772266e-07, -9.6423867751772287e-07, -2.4105966937943079e-05, -1.5427818840283566e-05, -7.713909420141783e-06, -6.7496707426240929e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -6.9425184781276347e-05, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -6.9425184781276319e-05, -7.713909420141783e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -9.642386775177263e-06, -2.8927160325531798e-06, -7.7139094201417813e-06, -1.4463580162765894e-05, -9.6423867751772287e-07, -7.713909420141783e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -5.785432065106391e-06, -2.8927160325532154e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283563e-05, -2.5070205615460922e-05, -2.2177489582907826e-05, -9.6423867751772287e-07, -1.5427818840283563e-05, -7.7139094201417813e-06, -5.7854320651064037e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.713909420141824e-05, -7.7139094201418036e-05, -0.00015620666575787267, -7.7139094201418036e-05, -7.7139094201418104e-05, -3.8569547100708889e-06, -1.9284773550354453e-06, -7.7139094201417779e-06, -8.6781480976594739e-06, -3.8569547100708889e-06, -1.0606625452694991e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.5427818840283563e-05, -7.7139094201417813e-06, -7.713909420141783e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.5427818840283559e-05, -7.7139094201417813e-06, -9.6423867751772287e-07, -0.00015620666575787232, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.8927160325531794e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -3.8569547100708889e-06, -1.1570864130212726e-05, -7.7139094201417813e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -1.7356296195319053e-05, -9.6423867751772287e-07, -3.8569547100708881e-06, -1.9284773550354449e-06, 0.0039128805533669361, -1.5427818840283566e-05, -4.8211933875886374e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -5.7854320651063588e-06, -8.1960287589006667e-05, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.5427818840283566e-05, -1.5427818840283566e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772287e-07, -4.4354979165815462e-05, -9.6423867751772274e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283566e-05, -7.7139094201417796e-06, -1.5427818840283566e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00029602127399794309, -7.7139094201417813e-06, -0.00019284773550354471, -7.7139094201417813e-06, -1.9284773550354449e-06, -5.7854320651063209e-05, -1.1570864130212723e-05, -4.821193387588629e-06, -5.7854320651063846e-05, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -0.00015620666575787232, -7.713909420141783e-06, -7.713909420141783e-06, -0.0002208106571515591, -2.8927160325531781e-06, -0.0001928477355035449, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -1.5427818840283566e-05, 0.0039128805533669361, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -0.00015620666575787267, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.6034444292978464e-05, -9.2566913041701782e-05, -7.7139094201417813e-06, -6.8460946103758168e-05, -1.1570864130212713e-05, -1.1570864130212713e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751773088e-06, -7.7139094201417796e-06, -9.6423867751772579e-06, -2.0249012227872288e-05, -7.7139094201417813e-06, -4.8211933875886476e-06, -2.2177489582907727e-05, -7.713909420141783e-06, -1.1570864130212723e-05, -2.8927160325532163e-06, -4.8211933875886273e-06, -1.9284773550354445e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -7.7139094201417796e-06, -1.1570864130212718e-05, -5.7854320651064012e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -7.7139094201417813e-06, -3.8569547100708915e-06, -1.5427818840283556e-05, -7.713909420141783e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.5427818840283559e-05, -2.3141728260425432e-05, -7.7139094201417813e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.713909420141783e-06, -7.713909420141783e-06, -8.6781480976595332e-06, -3.2784115035602717e-05, -1.9284773550354445e-06, -7.7139094201417779e-06, -7.713909420141783e-06, -8.6781480976595332e-06, -2.5070205615460942e-05, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.6392057517801162e-05, -2.8927160325531632e-05, -1.1570864130212723e-05, -5.785432065106391e-06, -9.6423867751772287e-07, -3.8569547100708915e-06, -1.5427818840283566e-05, -2.3141728260425395e-05, -7.7139094201417779e-06, -3.8569547100708915e-06, -1.5427818840283566e-05, -1.5427818840283566e-05, -3.8569547100708915e-06, -1.1570864130212721e-05, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -8.6781480976595162e-06, -4.8211933875886408e-06, -7.7139094201417813e-06, -1.5427818840283563e-05, -6.9425184781276238e-05, -3.8569547100708898e-06, -9.6423867751772287e-07, -5.7854320651063195e-05, -7.713909420141783e-06, -4.628345652085102e-05, -4.6283456520850796e-05, -4.8211933875886008e-05, -4.628345652085102e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772287e-07, -6.749670742624106e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -5.881855932858111e-05, -1.9284773550354449e-06, -6.9425184781276319e-05, -6.9425184781276347e-05, -7.713909420141783e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -6.9425184781276347e-05, -6.9425184781276211e-05, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.5427818840283566e-05, -7.713909420141783e-06, -7.713909420141783e-06, -2.8927160325531794e-06, -1.5427818840283566e-05, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772245e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971528e-07, -1.2052983468971531e-07, -2.4226496772633082e-05, -2.4105966937943157e-05, -6.0264917344858116e-07, -1.2052983468971528e-07, -3.6158950406915219e-07, -1.2052983468971699e-06, -9.6423867751773867e-06, -2.4105966937943061e-07, -1.1088744791453782e-05, -1.2052983468971531e-07, -1.928477355035444e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751773884e-06, -9.6423867751773867e-06, -9.6423867751772202e-07, -2.7360272474565255e-05, -2.4105966937943051e-07, -2.4105966937943479e-05, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772202e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943051e-07, -2.4105966937943051e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772181e-07, -6.0264917344858116e-07, -3.6158950406914446e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971528e-07, -1.8079475203457645e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.0847685122074203e-06, -9.6423867751772245e-07, -1.8079475203457589e-06, -2.4105966937943056e-07, -1.2052983468971525e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971528e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943051e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.2052983468971621e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.2052983468971528e-07, -9.6423867751772245e-07, -2.0490071897251414e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.9284773550354445e-06, -3.8569547100708949e-06, -3.0132458672428438e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -1.2052983468971621e-06, -1.325828181586861e-06, -4.8211933875886101e-07, -1.9284773550354445e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -2.4105966937943051e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.2052983468971525e-07, -9.6423867751772245e-07, -2.4105966937943056e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.928477355035444e-06, -1.928477355035444e-06, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971528e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772245e-07, -9.6423867751772202e-07, -2.8927160325532158e-06, -9.6423867751772202e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -4.8211933875886122e-07, -2.1695370244148448e-06, -4.8211933875886122e-07, -1.2052983468971528e-07, -2.4105966937943061e-07, -1.5668878509663161e-06, -9.6423867751772245e-07, -1.9284773550354445e-06, -1.0124506113936168e-05, -9.6423867751772245e-07, -1.0606625452694898e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -9.6423867751773274e-06, -1.9284773550354449e-06, -9.7629166098670659e-06, -1.2052983468971531e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886101e-07, -1.0124506113936164e-05, -9.6423867751773867e-06, -9.6423867751773206e-06, -9.6423867751773443e-06, -1.2052983468971528e-07, -4.8211933875886101e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -1.2052983468971525e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772224e-07, -1.2052983468971716e-06, -2.4105966937943374e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -2.8927160325532188e-06, -3.6158950406915754e-07, -1.0606625452694979e-05, -1.9284773550354445e-06, -8.6781480976594129e-06, -1.2052983468971531e-07, -1.2052983468971531e-07, -3.0132458672429128e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -8.437088428280059e-07, -4.8211933875886101e-07, -2.4105966937943056e-07, -8.6781480976594095e-06, -2.4105966937943056e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -8.6781480976594095e-06, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.205298346897167e-06, -3.615895040691523e-07, -9.6423867751772245e-07, -1.807947520345753e-06, -1.2052983468971531e-07, -9.6423867751772245e-07, -2.4105966937943051e-07, -2.4105966937943051e-07, 0.00049079748685652272, -1.2052983468971531e-07, -7.2317900813830872e-07, -3.615895040691568e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -3.1337757019326237e-06, -2.7721861978634477e-06, -1.2052983468971531e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -7.2317900813831021e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751773443e-06, -9.6423867751773206e-06, -1.9525833219734189e-05, -9.6423867751773206e-06, -9.6423867751773274e-06, -4.8211933875886101e-07, -2.4105966937943061e-07, -9.6423867751772202e-07, -1.0847685122074181e-06, -4.8211933875886101e-07, -1.325828181586868e-06, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.9525833219734145e-05, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -3.615895040691523e-07, -1.2052983468971528e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -4.8211933875886101e-07, -1.44635801627661e-06, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -2.1695370244148498e-06, -1.2052983468971531e-07, -4.8211933875886101e-07, -2.4105966937943056e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -6.0264917344858392e-07, -4.8211933875886122e-07, -2.4105966937943056e-07, -7.2317900813830438e-07, -1.0245035948625833e-05, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -5.5443723957268717e-06, -1.2052983468971623e-06, -1.2052983468971528e-07, -9.6423867751772224e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -9.6423867751772202e-07, -1.9284773550354449e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -3.7002659249743374e-05, -9.6423867751772245e-07, -2.4105966937943228e-05, -9.6423867751772245e-07, -2.4105966937943056e-07, -7.2317900813829638e-06, -1.4463580162766096e-06, -6.0264917344858307e-07, -7.2317900813830459e-06, -1.2052983468971531e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.9525833219734145e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.7601332143944644e-05, -3.6158950406915209e-07, -2.4105966937943329e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, 0.00049079748685652272, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9525833219734189e-05, -9.6423867751772224e-07, -9.6423867751772224e-07, -3.2543055366223021e-06, -1.1570864130212874e-05, -9.6423867751772245e-07, -8.5576182629696693e-06, -1.4463580162766083e-06, -1.4463580162766083e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.2052983468971725e-06, -9.6423867751772202e-07, -1.2052983468971697e-06, -2.5311265284840402e-06, -9.6423867751772245e-07, -6.026491734485855e-07, -2.772186197863435e-06, -9.6423867751772245e-07, -1.4463580162766096e-06, -3.615895040691569e-07, -6.0264917344858296e-07, -2.4105966937943051e-07, -1.2052983468971528e-07, -1.2052983468971531e-07, -9.6423867751772202e-07, -1.4463580162766088e-06, -7.2317900813830999e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -9.6423867751772202e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.928477355035444e-06, -2.8927160325532175e-06, -9.6423867751772245e-07, -1.928477355035444e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.0847685122074253e-06, -4.0980143794503083e-06, -2.4105966937943051e-07, -9.6423867751772202e-07, -9.6423867751772245e-07, -1.0847685122074253e-06, -3.1337757019326263e-06, -9.6423867751772202e-07, -9.6423867751772245e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -1.2052983468971525e-07, -1.2052983468971528e-07, -2.4105966937943061e-07, -2.0490071897251296e-06, -3.6158950406914853e-06, -1.4463580162766096e-06, -7.2317900813830872e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -2.8927160325532171e-06, -9.6423867751772202e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -1.4463580162766094e-06, -9.6423867751772245e-07, -1.2052983468971536e-07, -2.4105966937943051e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.0847685122074236e-06, -6.0264917344858455e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -8.6781480976594129e-06, -4.8211933875886101e-07, -1.2052983468971531e-07, -7.2317900813829638e-06, -9.6423867751772245e-07, -5.7854320651065223e-06, -5.7854320651064351e-06, -6.0264917344858044e-06, -5.7854320651065223e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -8.4370884282800376e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.3523199160726895e-06, -2.4105966937943056e-07, -8.6781480976594095e-06, -8.6781480976594095e-06, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -8.6781480976594129e-06, -8.6781480976593959e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -2.4105966937943056e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.6158950406915219e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8452993545266014e-05, -4.8211933875886164e-05, -1.2052983468971594e-06, -2.4105966937943061e-07, -7.2317900813830036e-07, -2.410596693794334e-06, -1.9284773550354726e-05, -4.8211933875886122e-07, -2.217748958290766e-05, -2.4105966937943066e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354726e-05, -1.9284773550354726e-05, -1.9284773550354449e-06, -5.4720544949130456e-05, -4.8211933875886112e-07, -4.8211933875886795e-05, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354453e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.928477355035444e-06, -1.2052983468971594e-06, -7.2317900813830078e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943061e-07, -3.6158950406915179e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.1695370244148532e-06, -1.9284773550354453e-06, -3.615895040691506e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -3.8569547100708906e-06, -2.4105966937943289e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -2.4105966937943061e-07, -1.9284773550354453e-06, -4.0980143794502964e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -6.0264917344857858e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -1.9284773550354453e-06, -2.4105966937943297e-06, -2.6516563631737253e-06, -9.6423867751772224e-07, -3.8569547100708881e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886112e-07, -1.9284773550354449e-06, -1.9284773550354453e-06, -2.4105966937943056e-07, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -5.7854320651064012e-06, -1.9284773550354445e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -9.6423867751772287e-07, -4.3390740488297988e-06, -9.6423867751772287e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -3.1337757019325615e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -2.0249012227872329e-05, -1.9284773550354453e-06, -2.1213250905389823e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -1.9284773550354604e-05, -3.8569547100708898e-06, -1.9525833219734084e-05, -2.4105966937943061e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -2.0249012227872329e-05, -1.9284773550354726e-05, -1.9284773550354587e-05, -1.9284773550354638e-05, -2.4105966937943061e-07, -9.6423867751772245e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -2.4105966937943056e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.9284773550354449e-06, -2.4105966937943374e-06, -4.8211933875886629e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -1.9284773550354449e-06, -5.785432065106408e-06, -7.2317900813831148e-07, -2.1213250905389993e-05, -3.8569547100708898e-06, -1.7356296195318927e-05, -2.4105966937943061e-07, -2.4105966937943072e-07, -6.0264917344857231e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.6874176856560162e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -1.7356296195318921e-05, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.7356296195318921e-05, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -2.410596693794328e-06, -7.2317900813830099e-07, -1.9284773550354453e-06, -3.6158950406914946e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.4463580162766096e-06, -7.2317900813830989e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -6.2675514038651128e-06, -5.5443723957269158e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -1.9284773550354449e-06, -1.4463580162766132e-06, -4.8211933875886133e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -1.9284773550354638e-05, -1.9284773550354587e-05, -3.9051666439468291e-05, -1.9284773550354587e-05, -1.9284773550354604e-05, -9.6423867751772224e-07, -4.8211933875886144e-07, -1.928477355035444e-06, -2.169537024414849e-06, -9.6423867751772224e-07, -2.6516563631737402e-06, -2.4105966937943061e-07, -2.4105966937943066e-07, -3.8569547100708915e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -2.4105966937943061e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.8569547100708898e-06, -1.9284773550354449e-06, -2.4105966937943072e-07, -3.9051666439468202e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943072e-07, -9.6423867751772287e-07, 0.00098111285437428651, -4.8211933875886133e-07, -4.8211933875886133e-07, -7.2317900813830078e-07, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -2.4105966937943061e-07, -9.6423867751772224e-07, -2.8927160325532057e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -4.3390740488297251e-06, -2.4105966937943066e-07, -9.6423867751772139e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.2052983468971647e-06, -9.6423867751772266e-07, -4.8211933875886133e-07, -1.4463580162766016e-06, -2.0490071897251667e-05, -2.4105966937943072e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943072e-07, -1.1088744791453794e-05, -2.4105966937943187e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -7.4005318499486341e-05, -1.9284773550354449e-06, -4.8211933875886469e-05, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.4463580162765887e-05, -2.892716032553204e-06, -1.2052983468971632e-06, -1.4463580162766051e-05, -2.4105966937943072e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.9051666439468202e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -5.5202664287889572e-05, -7.2317900813830036e-07, -4.821193387588651e-05, -1.9284773550354449e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, 0.00098111285437428651, -9.6423867751772287e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.9051666439468291e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -6.5086110732446092e-06, -2.3141728260425632e-05, -1.9284773550354453e-06, -1.7115236525939396e-05, -2.8927160325532023e-06, -2.8927160325532023e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.410596693794339e-06, -1.9284773550354449e-06, -2.4105966937943331e-06, -5.0622530569680771e-06, -1.9284773550354453e-06, -1.2052983468971678e-06, -5.5443723957268921e-06, -1.9284773550354453e-06, -2.892716032553204e-06, -7.2317900813830999e-07, -1.2052983468971627e-06, -4.8211933875886112e-07, -2.4105966937943061e-07, -2.4105966937943072e-07, -1.9284773550354449e-06, -2.8927160325531443e-06, -1.4463580162765808e-06, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354445e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -1.9284773550354457e-06, -9.6423867751772266e-07, -1.9284773550354445e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -5.7854320651064046e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.1695370244149146e-06, -8.1960287589006301e-06, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354457e-06, -2.1695370244148634e-06, -6.2675514038652475e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943072e-07, -2.4105966937943056e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.0980143794502719e-06, -7.2317900813829468e-06, -2.892716032553204e-06, -1.4463580162766096e-06, -2.4105966937943072e-07, -9.6423867751772266e-07, -3.8569547100708898e-06, -5.7854320651064054e-06, -1.9284773550354445e-06, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -2.892716032553204e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.1695370244149112e-06, -1.2052983468971666e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -1.7356296195318894e-05, -9.6423867751772245e-07, -2.4105966937943072e-07, -1.4463580162765887e-05, -1.9284773550354453e-06, -1.1570864130212985e-05, -1.1570864130212813e-05, -1.205298346897157e-05, -1.1570864130212985e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.4105966937943066e-07, -2.4105966937943061e-07, -1.6874176856560143e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4704639832145352e-05, -4.8211933875886122e-07, -1.7356296195318921e-05, -1.7356296195318921e-05, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.7356296195318927e-05, -1.7356296195318894e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.2317900813830078e-07, -3.8569547100708915e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8452993545266028e-05, -4.8211933875886178e-05, -1.2052983468971594e-06, -2.4105966937943061e-07, -7.2317900813830057e-07, -2.410596693794334e-06, -1.9284773550354719e-05, -4.8211933875886122e-07, -2.2177489582907653e-05, -2.4105966937943066e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354719e-05, -1.9284773550354719e-05, -1.9284773550354449e-06, -5.4720544949130456e-05, -4.8211933875886112e-07, -4.8211933875886822e-05, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354453e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.928477355035444e-06, -1.2052983468971594e-06, -7.2317900813830099e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943061e-07, -3.6158950406915179e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.1695370244148532e-06, -1.9284773550354453e-06, -3.615895040691506e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -3.8569547100708906e-06, -2.4105966937943285e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -2.4105966937943061e-07, -1.9284773550354453e-06, -4.0980143794502964e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -6.0264917344857875e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -1.9284773550354453e-06, -2.4105966937943293e-06, -2.6516563631737253e-06, -9.6423867751772224e-07, -3.8569547100708881e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886112e-07, -1.9284773550354449e-06, -1.9284773550354453e-06, -2.4105966937943056e-07, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -5.7854320651064046e-06, -1.9284773550354445e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -9.6423867751772287e-07, -4.3390740488297988e-06, -9.6423867751772287e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -3.1337757019325615e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -2.0249012227872329e-05, -1.9284773550354453e-06, -2.1213250905389823e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -1.9284773550354601e-05, -3.8569547100708898e-06, -1.9525833219734084e-05, -2.4105966937943061e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -2.0249012227872329e-05, -1.9284773550354719e-05, -1.9284773550354587e-05, -1.9284773550354634e-05, -2.4105966937943061e-07, -9.6423867751772245e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -2.4105966937943056e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.9284773550354449e-06, -2.4105966937943374e-06, -4.8211933875886629e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -1.9284773550354449e-06, -5.7854320651064097e-06, -7.2317900813831169e-07, -2.1213250905389993e-05, -3.8569547100708898e-06, -1.7356296195318921e-05, -2.4105966937943061e-07, -2.4105966937943072e-07, -6.0264917344857248e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.6874176856560162e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -1.7356296195318921e-05, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.7356296195318914e-05, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -2.4105966937943272e-06, -7.2317900813830099e-07, -1.9284773550354453e-06, -3.6158950406914946e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.44635801627661e-06, -7.231790081383101e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -6.2675514038651111e-06, -5.5443723957269158e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -1.9284773550354449e-06, -1.4463580162766132e-06, -4.8211933875886133e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -1.9284773550354634e-05, -1.9284773550354587e-05, -3.9051666439468291e-05, -1.9284773550354587e-05, -1.9284773550354601e-05, -9.6423867751772224e-07, -4.8211933875886144e-07, -1.928477355035444e-06, -2.1695370244148481e-06, -9.6423867751772224e-07, -2.6516563631737402e-06, -2.4105966937943061e-07, -2.4105966937943066e-07, -3.8569547100708915e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -2.4105966937943061e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.8569547100708898e-06, -1.9284773550354449e-06, -2.4105966937943072e-07, -3.9051666439468202e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943072e-07, 0.00098111285437428651, -9.6423867751772287e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -7.2317900813830099e-07, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -2.4105966937943061e-07, -9.6423867751772224e-07, -2.8927160325532065e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -4.3390740488297234e-06, -2.4105966937943066e-07, -9.6423867751772139e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.2052983468971647e-06, -9.6423867751772266e-07, -4.8211933875886133e-07, -1.4463580162766024e-06, -2.0490071897251667e-05, -2.4105966937943072e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943072e-07, -1.1088744791453791e-05, -2.4105966937943187e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -7.4005318499486354e-05, -1.9284773550354449e-06, -4.8211933875886483e-05, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.446358016276589e-05, -2.8927160325532057e-06, -1.2052983468971627e-06, -1.4463580162766051e-05, -2.4105966937943072e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.9051666439468202e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -5.5202664287889572e-05, -7.2317900813830057e-07, -4.8211933875886523e-05, -1.9284773550354449e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, 0.00098111285437428651, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.9051666439468291e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -6.5086110732446092e-06, -2.3141728260425639e-05, -1.9284773550354453e-06, -1.7115236525939393e-05, -2.8927160325532023e-06, -2.8927160325532023e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943382e-06, -1.9284773550354449e-06, -2.4105966937943331e-06, -5.0622530569680771e-06, -1.9284773550354453e-06, -1.2052983468971678e-06, -5.5443723957268904e-06, -1.9284773550354453e-06, -2.8927160325532057e-06, -7.2317900813831042e-07, -1.2052983468971627e-06, -4.8211933875886112e-07, -2.4105966937943061e-07, -2.4105966937943072e-07, -1.9284773550354449e-06, -2.8927160325531434e-06, -1.4463580162765812e-06, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354445e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -1.9284773550354457e-06, -9.6423867751772266e-07, -1.9284773550354445e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -5.785432065106408e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.1695370244149163e-06, -8.1960287589006301e-06, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354457e-06, -2.1695370244148634e-06, -6.2675514038652475e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943072e-07, -2.4105966937943056e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.0980143794502719e-06, -7.2317900813829485e-06, -2.8927160325532057e-06, -1.44635801627661e-06, -2.4105966937943072e-07, -9.6423867751772266e-07, -3.8569547100708898e-06, -5.7854320651064071e-06, -1.9284773550354445e-06, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -2.8927160325532048e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.1695370244149129e-06, -1.2052983468971661e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -1.7356296195318894e-05, -9.6423867751772245e-07, -2.4105966937943072e-07, -1.4463580162765887e-05, -1.9284773550354453e-06, -1.1570864130212989e-05, -1.1570864130212816e-05, -1.2052983468971573e-05, -1.1570864130212989e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.4105966937943066e-07, -2.4105966937943061e-07, -1.6874176856560143e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4704639832145355e-05, -4.8211933875886122e-07, -1.7356296195318914e-05, -1.7356296195318921e-05, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.7356296195318921e-05, -1.7356296195318887e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.2317900813830099e-07, -3.8569547100708915e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6905987090532136e-05, -9.642386775177241e-05, -2.4105966937943221e-06, -4.8211933875886122e-07, -1.4463580162766062e-06, -4.8211933875886442e-06, -3.8569547100709506e-05, -9.6423867751772245e-07, -4.4354979165815292e-05, -4.8211933875886133e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100709506e-05, -3.8569547100709506e-05, -3.8569547100708889e-06, -0.00010944108989826086, -9.6423867751772224e-07, -9.6423867751773697e-05, -7.7139094201417779e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708881e-06, -2.4105966937943221e-06, -1.4463580162766045e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -7.2317900813830409e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.339074048829698e-06, -3.8569547100708906e-06, -7.2317900813830155e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886645e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -8.196028758900581e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.2052983468971582e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -4.8211933875886662e-06, -5.3033127263474473e-06, -1.9284773550354445e-06, -7.7139094201417762e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.157086413021285e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -8.6781480976594129e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -9.6423867751772266e-07, -6.2675514038651213e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.0498024455744657e-05, -3.8569547100708906e-06, -4.2426501810779592e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -3.8569547100709262e-05, -7.7139094201417796e-06, -3.9051666439468223e-05, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.0498024455744657e-05, -3.8569547100709506e-05, -3.8569547100709228e-05, -3.856954710070933e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886815e-06, -9.6423867751772783e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -1.1570864130212838e-05, -1.4463580162765683e-06, -4.2426501810779938e-05, -7.7139094201417796e-06, -3.4712592390637787e-05, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.2052983468971624e-05, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.3748353713120316e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390637787e-05, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.4712592390637773e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886629e-06, -1.4463580162766045e-06, -3.8569547100708906e-06, -7.2317900813829943e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -2.8927160325532247e-06, -1.4463580162766225e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.2535102807730488e-05, -1.1088744791453818e-05, -4.8211933875886133e-07, -7.7139094201417813e-06, 0.0019602972313935386, -2.892716032553165e-06, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.856954710070933e-05, -3.8569547100709228e-05, -7.8103332878936676e-05, -3.8569547100709228e-05, -3.8569547100709262e-05, -1.9284773550354445e-06, -9.6423867751772266e-07, -3.8569547100708881e-06, -4.3390740488296895e-06, -1.9284773550354445e-06, -5.3033127263474753e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.81033328789365e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4463580162766045e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651064215e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -8.6781480976593959e-06, -4.8211933875886133e-07, -1.9284773550354428e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943327e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325532082e-06, -4.0980143794503334e-05, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -2.2177489582907548e-05, -4.8211933875886442e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897298, -3.8569547100708906e-06, -9.6423867751773047e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.8927160325531787e-05, -5.7854320651064198e-06, -2.4105966937943289e-06, -2.8927160325532116e-05, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.81033328789365e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.0001104053285757789, -1.4463580162766037e-06, -9.6423867751773128e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, 0.0019602972313935386, -3.8569547100708906e-06, -7.8103332878936676e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489406e-05, -4.6283456520851304e-05, -3.8569547100708906e-06, -3.4230473051878914e-05, -5.7854320651062817e-06, -5.7854320651062817e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886849e-06, -3.8569547100708898e-06, -4.821193387588673e-06, -1.0124506113936158e-05, -3.8569547100708906e-06, -2.410596693794339e-06, -1.1088744791453767e-05, -3.8569547100708906e-06, -5.7854320651064198e-06, -1.446358016276623e-06, -2.4105966937943289e-06, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708889e-06, -5.7854320651064181e-06, -2.8927160325532298e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.1570864130212836e-05, -3.8569547100708906e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297183e-06, -1.639205751780126e-05, -9.6423867751772245e-07, -3.8569547100708889e-06, -3.8569547100708906e-06, -4.3390740488297183e-06, -1.2535102807730497e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -8.1960287589005319e-06, -1.4463580162765911e-05, -5.7854320651064198e-06, -2.8927160325532247e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -7.7139094201417796e-06, -1.1570864130212831e-05, -3.8569547100708889e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.785432065106419e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.3390740488297115e-06, -2.4105966937943221e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.4712592390637855e-05, -1.9284773550354449e-06, -4.8211933875886133e-07, -2.8927160325531753e-05, -3.8569547100708906e-06, -2.3141728260426015e-05, -2.3141728260425666e-05, -2.4105966937943163e-05, -2.3141728260426015e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.3748353713120272e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.9409279664290738e-05, -9.6423867751772245e-07, -3.4712592390637773e-05, -3.4712592390637787e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390637787e-05, -3.4712592390637719e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.4463580162766045e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6905987090532163e-05, -9.6423867751772464e-05, -2.4105966937943221e-06, -4.8211933875886122e-07, -1.4463580162766058e-06, -4.8211933875886442e-06, -3.8569547100709493e-05, -9.6423867751772245e-07, -4.4354979165815292e-05, -4.8211933875886133e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100709493e-05, -3.8569547100709493e-05, -3.8569547100708889e-06, -0.00010944108989826083, -9.6423867751772224e-07, -9.6423867751773752e-05, -7.7139094201417779e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708881e-06, -2.4105966937943221e-06, -1.446358016276605e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -7.2317900813830426e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488296963e-06, -3.8569547100708906e-06, -7.2317900813830188e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886637e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -8.1960287589005827e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.205298346897159e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -4.8211933875886654e-06, -5.3033127263474473e-06, -1.9284773550354445e-06, -7.7139094201417762e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.1570864130212846e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -8.6781480976594095e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -9.6423867751772266e-07, -6.2675514038651213e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.0498024455744657e-05, -3.8569547100708906e-06, -4.2426501810779592e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -3.8569547100709255e-05, -7.7139094201417796e-06, -3.9051666439468223e-05, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.0498024455744657e-05, -3.8569547100709493e-05, -3.8569547100709228e-05, -3.8569547100709323e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886815e-06, -9.6423867751772749e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -1.1570864130212841e-05, -1.4463580162765692e-06, -4.2426501810779944e-05, -7.7139094201417796e-06, -3.4712592390637773e-05, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.2052983468971627e-05, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.3748353713120308e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.471259239063776e-05, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.471259239063776e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886612e-06, -1.446358016276605e-06, -3.8569547100708906e-06, -7.2317900813829968e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -2.8927160325532264e-06, -1.446358016276623e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.2535102807730488e-05, -1.1088744791453815e-05, -4.8211933875886133e-07, 0.0019564402766834685, -3.8569547100708906e-06, -2.8927160325531659e-06, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100709323e-05, -3.8569547100709228e-05, -7.8103332878936676e-05, -3.8569547100709228e-05, -3.8569547100709255e-05, -1.9284773550354445e-06, -9.6423867751772266e-07, -3.8569547100708881e-06, -4.3390740488296878e-06, -1.9284773550354445e-06, -5.303312726347477e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.81033328789365e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.446358016276605e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651064232e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -8.6781480976593926e-06, -4.8211933875886133e-07, -1.9284773550354428e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943327e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325532091e-06, -4.0980143794503334e-05, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -2.2177489582907534e-05, -4.8211933875886442e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897303, -3.8569547100708906e-06, -9.6423867751773074e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.8927160325531787e-05, -5.7854320651064215e-06, -2.4105966937943289e-06, -2.8927160325532116e-05, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.81033328789365e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577887, -1.4463580162766041e-06, -9.6423867751773155e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, 0.0019602972313935386, -7.8103332878936676e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489406e-05, -4.6283456520851318e-05, -3.8569547100708906e-06, -3.4230473051878894e-05, -5.7854320651062767e-06, -5.7854320651062767e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886832e-06, -3.8569547100708898e-06, -4.821193387588673e-06, -1.0124506113936158e-05, -3.8569547100708906e-06, -2.410596693794339e-06, -1.1088744791453764e-05, -3.8569547100708906e-06, -5.7854320651064215e-06, -1.4463580162766234e-06, -2.4105966937943289e-06, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708889e-06, -5.7854320651064181e-06, -2.8927160325532315e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.1570864130212836e-05, -3.8569547100708906e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297166e-06, -1.639205751780126e-05, -9.6423867751772245e-07, -3.8569547100708889e-06, -3.8569547100708906e-06, -4.3390740488297166e-06, -1.2535102807730497e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -8.1960287589005352e-06, -1.4463580162765914e-05, -5.7854320651064215e-06, -2.8927160325532264e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -7.7139094201417796e-06, -1.1570864130212835e-05, -3.8569547100708889e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651064207e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.3390740488297081e-06, -2.4105966937943221e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.4712592390637828e-05, -1.9284773550354449e-06, -4.8211933875886133e-07, -2.892716032553176e-05, -3.8569547100708906e-06, -2.3141728260426021e-05, -2.3141728260425672e-05, -2.4105966937943177e-05, -2.3141728260426021e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.3748353713120259e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.9409279664290751e-05, -9.6423867751772245e-07, -3.471259239063776e-05, -3.471259239063776e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390637773e-05, -3.4712592390637706e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.446358016276605e-06, -7.7139094201417813e-06, -7.8103332878936839e-05, -7.810333287893673e-05, -7.8103332878936703e-05, -7.8103332878936839e-05, -3.9051666439468141e-05, -3.9051666439468141e-05, -7.8103332878936283e-05, -7.8103332878936283e-05, -9.762916609867076e-06, -9.7629166098670726e-06, -0.0019623462385832541, -0.0019525833219733925, -4.8814583049335284e-05, -9.762916609867076e-06, -2.9288749829600444e-05, -9.7629166098670919e-05, -0.00078103332878936887, -1.9525833219734145e-05, -0.00089818832810776498, -9.7629166098670286e-06, -0.00015620666575787346, -0.00015620666575787351, -7.8103332878936283e-05, -7.8103332878936256e-05, -0.00078103332878936887, -0.00078103332878936887, -7.8103332878936784e-05, -0.0022161820704397935, -1.952583321973421e-05, -0.0019525833219733912, -0.00015620666575787341, -7.810333287893673e-05, -7.8103332878936811e-05, -9.7629166098670252e-06, -9.762916609867076e-06, -7.8103332878936608e-05, -7.8103332878936554e-05, -1.952583321973421e-05, -1.952583321973421e-05, -9.7629166098670252e-06, -9.7629166098670557e-06, -7.8103332878936134e-05, -4.8814583049335494e-05, -2.9288749829600928e-05, -3.9051666439468141e-05, -3.9051666439468141e-05, -9.762916609867076e-06, -0.00014644374914800622, -7.81033328789365e-05, -7.8103332878936473e-05, -8.7866249488803411e-05, -7.810333287893631e-05, -0.00014644374914800549, -1.9525833219734152e-05, -9.762916609867098e-06, -7.8103332878936283e-05, -7.8103332878936283e-05, -9.7629166098670811e-06, -9.7629166098670659e-06, -7.8103332878936473e-05, -7.81033328789365e-05, -1.952583321973426e-05, -9.7629166098670489e-06, -7.8103332878936364e-05, -0.00015620666575787316, -9.7629166098670743e-05, -7.8103332878936554e-05, -0.00015620666575787295, -9.7629166098670811e-06, -7.8103332878936446e-05, -0.00016596958236773839, -7.8103332878936581e-05, -7.8103332878936446e-05, -0.00015620666575787335, -0.00031241333151574768, -0.00024407291524667445, -7.8103332878936256e-05, -0.00015620666575787335, -0.00015620666575787335, -3.9051666439468419e-05, -7.8103332878936446e-05, -9.7629166098670757e-05, -0.0001073920827085353, -3.9051666439468419e-05, -0.000156206665757874, -7.8103332878936527e-05, -7.8103332878936581e-05, -7.8103332878936554e-05, -1.9525833219734254e-05, -7.8103332878936757e-05, -7.8103332878936256e-05, -9.7629166098671014e-06, -7.8103332878936256e-05, -1.9525833219734162e-05, -7.8103332878936757e-05, -7.8103332878936581e-05, -7.8103332878936554e-05, -9.7629166098670811e-06, -0.00015620666575787341, -0.00015620666575787335, -9.7629166098670692e-06, -7.8103332878936527e-05, -7.8103332878936554e-05, -9.7629166098670726e-06, -7.8103332878936811e-05, -7.8103332878936839e-05, -7.8103332878936473e-05, -7.8103332878936839e-05, -0.00023430999863680377, -7.8103332878936784e-05, -7.8103332878936391e-05, -7.8103332878936418e-05, -9.7629166098670523e-06, -7.8103332878936364e-05, -7.8103332878936418e-05, -0.000156206665757873, -3.9051666439468141e-05, -0.0001757324989776062, -3.9051666439468141e-05, -9.762916609867098e-06, -1.9525833219734118e-05, -0.00012691791592826877, -7.8103332878936554e-05, -0.00015620666575787346, -0.0008200849952288247, -7.8103332878936473e-05, -0.00085913666166828238, -7.8103332878936418e-05, -7.8103332878936473e-05, -0.00015620666575787335, -0.00078103332878936605, -0.00015620666575787335, -0.00079079624539923042, -9.7629166098670252e-06, -0.0001562066657578733, -0.00015620666575787341, -3.9051666439468379e-05, -0.0008200849952288247, -0.00078103332878936887, -0.00078103332878936508, -0.0007810333287893666, -9.7629166098670811e-06, -3.9051666439467843e-05, -9.7629166098670455e-06, -9.7629166098670913e-06, -9.7629166098671048e-06, -7.8103332878936581e-05, -7.8103332878936581e-05, -7.8103332878936581e-05, -7.8103332878936554e-05, -9.7629166098670455e-06, -9.7629166098670489e-06, -9.7629166098670455e-06, -7.8103332878936703e-05, -9.7629166098671082e-05, -0.00019525833219734157, -0.00015620666575787368, -0.000156206665757873, -7.8103332878936703e-05, -0.0002343099986368071, -2.9288749829601077e-05, -0.00085913666166829094, -0.00015620666575787305, -0.00070292999591042773, -9.762916609867076e-06, -9.7629166098670591e-06, -0.00024407291524667434, -0.000156206665757873, -7.81033328789365e-05, -6.8340416269068273e-05, -3.9051666439468006e-05, -1.9525833219734152e-05, -0.00070292999591042935, -1.9525833219734152e-05, -3.9051666439468141e-05, -3.9051666439468141e-05, -0.0007029299959104313, -7.8103332878936337e-05, -9.7629166098670557e-06, -7.8103332878936446e-05, -9.7629166098670455e-06, -7.8103332878936473e-05, -9.7629166098670757e-05, -2.9288749829601108e-05, -7.8103332878936446e-05, -0.00014644374914800397, -9.7629166098670252e-06, -7.8103332878936337e-05, -1.952583321973421e-05, -1.952583321973421e-05, -1.9525833219734189e-05, -9.7629166098670659e-06, -5.8577499659201924e-05, -2.9288749829601037e-05, -7.8103332878936839e-05, -7.8103332878936784e-05, -0.00015620666575787316, -0.00025383583185653846, -0.00022454708202693829, -9.7629166098670252e-06, -0.00015620666575787351, -7.8103332878936676e-05, -5.8577499659201978e-05, -1.9525833219734078e-05, -9.7629166098670489e-06, -9.7629166098670913e-06, -0.0007810333287893666, -0.00078103332878936508, 0.038192529777799439, -0.00078103332878936508, -0.00078103332878936605, -3.9051666439468419e-05, -1.9525833219734118e-05, -7.8103332878936418e-05, -8.7866249488803452e-05, -3.9051666439468419e-05, -0.00010739208270853596, -9.7629166098670947e-06, -9.7629166098670286e-06, -0.00015620666575787289, -7.8103332878936337e-05, -7.8103332878936391e-05, -9.7629166098670591e-06, -9.762916609867076e-06, -3.9051666439468291e-05, -3.9051666439468291e-05, -0.00015620666575787346, -7.8103332878936676e-05, -9.7629166098670388e-06, -0.0015815924907984457, -7.8103332878936811e-05, -7.8103332878936811e-05, -9.7629166098670692e-06, -3.9051666439468291e-05, -3.9051666439468291e-05, -1.952583321973405e-05, -1.952583321973405e-05, -2.9288749829600783e-05, -9.7629166098670811e-06, -1.952583321973405e-05, -1.952583321973405e-05, -9.7629166098670489e-06, -9.7629166098670811e-06, -3.9051666439468379e-05, -0.00011715499931840374, -7.8103332878936337e-05, -9.7629166098670421e-06, -9.7629166098670286e-06, -0.00017573249897760753, -9.7629166098670659e-06, -3.9051666439468223e-05, -1.9525833219734196e-05, -0.00015620666575787267, -0.00015620666575787262, -4.8814583049335426e-05, -3.905166643946825e-05, -1.952583321973425e-05, -5.8577499659201884e-05, -0.00082984791183868874, -9.7629166098670557e-06, -3.905166643946825e-05, -3.905166643946825e-05, -0.00015620666575787257, -0.00015620666575787273, -3.905166643946825e-05, -3.9051666439468196e-05, -3.9051666439468196e-05, -9.7629166098670455e-06, -0.00044909416405388211, -9.7629166098670852e-05, -9.7629166098670811e-06, -7.8103332878936811e-05, -7.8103332878936866e-05, -7.8103332878936811e-05, -0.00015620666575787273, -7.8103332878935985e-05, -0.00015620666575787257, -7.8103332878936866e-05, -7.8103332878936866e-05, -0.0029972153992291655, -7.8103332878936703e-05, -0.0019525833219733921, -7.8103332878936364e-05, -1.9525833219734162e-05, -0.00058577499659201329, -0.00011715499931840341, -4.8814583049335338e-05, -0.00058577499659201655, -9.762916609867032e-06, -7.8103332878936554e-05, -7.8103332878936581e-05, -0.0015815924907984457, -7.8103332878936337e-05, -7.8103332878936337e-05, -0.0022357079036595261, -2.9288749829600955e-05, -0.0019525833219733917, -7.8103332878936554e-05, -7.8103332878936527e-05, -9.7629166098670523e-06, -7.8103332878936581e-05, -7.8103332878936554e-05, -9.7629166098670388e-06, -0.00015620666575787262, -0.00015620666575787267, -1.9525833219734189e-05, -3.9051666439468291e-05, -3.9051666439468291e-05, -7.8103332878936676e-05, -7.8103332878936676e-05, 0.038192529777799439, -7.8103332878936784e-05, -7.8103332878936839e-05, -0.00026359874846640824, -0.00093723999454722331, -7.8103332878936527e-05, -0.00069316707930054959, -0.0001171549993184039, -0.0001171549993184039, -7.810333287893673e-05, -7.8103332878936839e-05, -9.7629166098671069e-05, -7.8103332878936811e-05, -9.7629166098670933e-05, -0.00020502124880720604, -7.8103332878936391e-05, -4.8814583049335487e-05, -0.00022454708202694138, -7.810333287893631e-05, -0.0001171549993184035, -2.9288749829601043e-05, -4.8814583049335351e-05, -1.9525833219734196e-05, -9.7629166098670811e-06, -9.7629166098670557e-06, -7.8103332878936811e-05, -0.00011715499931840401, -5.8577499659201965e-05, -3.9051666439468169e-05, -7.8103332878936703e-05, -7.8103332878936784e-05, -7.8103332878936866e-05, -0.00015620666575787205, -7.8103332878936283e-05, -3.905166643946825e-05, -0.00015620666575787219, -7.8103332878936256e-05, -3.905166643946825e-05, -7.8103332878936866e-05, -9.762916609867032e-06, -7.8103332878936283e-05, -7.8103332878936283e-05, -0.00015620666575787335, -0.00023430999863680753, -7.8103332878936473e-05, -0.00015620666575787341, -0.00015620666575787357, -7.8103332878936283e-05, -7.8103332878936283e-05, -7.810333287893631e-05, -7.8103332878936364e-05, -8.7866249488802653e-05, -0.00033193916473547592, -1.9525833219734298e-05, -7.8103332878936784e-05, -7.8103332878936256e-05, -8.7866249488802761e-05, -0.00025383583185653824, -7.810333287893673e-05, -7.8103332878936446e-05, -7.8103332878936839e-05, -3.905166643946825e-05, -3.905166643946825e-05, -9.762916609867076e-06, -9.7629166098671048e-06, -9.7629166098670811e-06, -1.9525833219734132e-05, -0.00016596958236773847, -0.00029288749829600665, -0.0001171549993184035, -5.8577499659201924e-05, -9.7629166098670557e-06, -3.9051666439468236e-05, -0.00015620666575787305, -0.0002343099986368065, -7.8103332878936784e-05, -3.9051666439468236e-05, -0.00015620666575787295, -0.000156206665757873, -3.9051666439468236e-05, -0.00011715499931840323, -7.8103332878936337e-05, -9.7629166098670947e-06, -1.9525833219734267e-05, -3.9051666439468236e-05, -3.905166643946825e-05, -8.7866249488802896e-05, -4.8814583049335419e-05, -7.8103332878936649e-05, -0.00015620666575787316, -0.00070292999591043163, -3.9051666439468379e-05, -9.7629166098670455e-06, -0.00058577499659201329, -7.8103332878936418e-05, -0.0004686199972736168, -0.0004686199972736168, -0.00048814583049334889, -0.0004686199972736168, -3.9051666439468379e-05, -3.9051666439468379e-05, -7.8103332878936446e-05, -7.8103332878936473e-05, -3.9051666439468209e-05, -3.9051666439468209e-05, -7.8103332878936757e-05, -9.7629166098670947e-06, -7.8103332878936757e-05, -9.7629166098670523e-06, -9.7629166098670726e-06, -0.00068340416269068393, -3.9051666439468209e-05, -3.9051666439468209e-05, -0.00059553791320188492, -1.9525833219734216e-05, -0.0007029299959104313, -0.00070292999591042935, -7.8103332878936446e-05, -9.7629166098670455e-06, -7.8103332878936418e-05, -0.00070292999591042773, -0.00070292999591042805, -7.8103332878936391e-05, -7.8103332878936418e-05, -1.9525833219734078e-05, -1.9525833219734152e-05, -0.0001562066657578724, -7.8103332878936418e-05, -7.8103332878936391e-05, -2.9288749829600688e-05, -0.0001562066657578724, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6905987090532218e-05, -9.6423867751772478e-05, -2.4105966937943187e-06, -4.8211933875886122e-07, -1.4463580162766043e-06, -4.8211933875886679e-06, -3.8569547100709459e-05, -9.6423867751772245e-07, -4.4354979165815231e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100709465e-05, -3.8569547100709452e-05, -3.8569547100708889e-06, -0.00010944108989826083, -9.6423867751772202e-07, -9.6423867751773765e-05, -7.7139094201417779e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708873e-06, -2.4105966937943187e-06, -1.4463580162766054e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -7.2317900813830426e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488296929e-06, -3.8569547100708898e-06, -7.2317900813830205e-06, -9.6423867751772224e-07, -4.8211933875886112e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886586e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -8.196028758900581e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971592e-05, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.928477355035444e-06, -3.8569547100708898e-06, -4.8211933875886603e-06, -5.3033127263474507e-06, -1.928477355035444e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -3.8569547100708898e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708889e-06, -1.1570864130212833e-05, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -8.6781480976594027e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -6.2675514038652593e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -4.0498024455744685e-05, -3.8569547100708898e-06, -4.2426501810779646e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417779e-06, -3.8569547100709242e-05, -7.7139094201417796e-06, -3.9051666439468209e-05, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.9284773550354445e-06, -4.0498024455744671e-05, -3.8569547100709459e-05, -3.8569547100709208e-05, -3.856954710070931e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886756e-06, -9.6423867751773274e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -1.1570864130212845e-05, -1.4463580162766266e-06, -4.2426501810779843e-05, -7.7139094201417796e-06, -3.4712592390637828e-05, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.2052983468971633e-05, -7.7139094201417813e-06, -3.8569547100708898e-06, -3.3748353713120274e-06, -1.928477355035444e-06, -9.6423867751772224e-07, -3.4712592390637841e-05, -9.6423867751772224e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.4712592390637868e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886561e-06, -1.4463580162766054e-06, -3.8569547100708898e-06, -7.2317900813829943e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.8927160325532268e-06, -1.4463580162766234e-06, -3.8569547100708898e-06, 0.0019602972313935386, -7.7139094201417796e-06, -1.2535102807730486e-05, -1.1088744791453813e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -2.8927160325532332e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.856954710070931e-05, -3.8569547100709208e-05, -7.8103332878936784e-05, -3.8569547100709208e-05, -3.8569547100709242e-05, -1.928477355035444e-06, -9.6423867751772245e-07, -3.8569547100708881e-06, -4.3390740488296844e-06, -1.928477355035444e-06, -5.3033127263474795e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.8103332878936473e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.4463580162766054e-06, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651064249e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -8.678148097659423e-06, -4.8211933875886122e-07, -1.9284773550354436e-06, -9.6423867751772224e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.410596693794331e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -2.8927160325532099e-06, -4.0980143794503334e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886133e-07, -2.2177489582907538e-05, -4.8211933875886374e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708881e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -0.00014801063699897309, -3.8569547100708898e-06, -9.6423867751773088e-05, -3.8569547100708898e-06, -9.6423867751772224e-07, -2.8927160325531787e-05, -5.7854320651064232e-06, -2.4105966937943263e-06, -2.8927160325532116e-05, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936473e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00011040532857577879, -1.4463580162766045e-06, -9.6423867751773182e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936784e-05, 0.0019602972313935386, -3.8569547100708898e-06, -1.3017222146489212e-05, -4.6283456520851386e-05, -3.8569547100708898e-06, -3.4230473051878711e-05, -5.7854320651064181e-06, -5.7854320651064181e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886781e-06, -3.8569547100708889e-06, -4.8211933875886696e-06, -1.0124506113936164e-05, -3.8569547100708898e-06, -2.4105966937943365e-06, -1.1088744791453767e-05, -3.8569547100708898e-06, -5.7854320651064232e-06, -1.4463580162766238e-06, -2.4105966937943263e-06, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708889e-06, -5.7854320651064207e-06, -2.8927160325532319e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -3.8569547100708906e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -1.157086413021284e-05, -3.8569547100708898e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488297132e-06, -1.6392057517801267e-05, -9.6423867751772202e-07, -3.8569547100708881e-06, -3.8569547100708906e-06, -4.3390740488297132e-06, -1.2535102807730497e-05, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -8.1960287589005319e-06, -1.4463580162765911e-05, -5.7854320651064232e-06, -2.8927160325532268e-06, -4.8211933875886133e-07, -1.9284773550354449e-06, -7.7139094201417796e-06, -1.157086413021284e-05, -3.8569547100708881e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -5.7854320651064224e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.3390740488297064e-06, -2.4105966937943327e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.4712592390637706e-05, -1.9284773550354445e-06, -4.8211933875886133e-07, -2.8927160325531787e-05, -3.8569547100708898e-06, -2.3141728260426028e-05, -2.3141728260425679e-05, -2.410596693794318e-05, -2.3141728260426028e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.3748353713120245e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.9409279664290711e-05, -9.6423867751772245e-07, -3.4712592390637868e-05, -3.4712592390637841e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.4712592390637828e-05, -3.4712592390637956e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.4463580162766052e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6905987090532082e-05, -9.6423867751772356e-05, -2.4105966937943204e-06, -4.8211933875886122e-07, -1.4463580162766026e-06, -4.8211933875886705e-06, -3.8569547100709479e-05, -9.6423867751772245e-07, -4.4354979165815286e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100709479e-05, -3.8569547100709479e-05, -3.8569547100708889e-06, -0.00010944108989826094, -9.6423867751772202e-07, -9.6423867751773643e-05, -7.7139094201417779e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708873e-06, -2.4105966937943204e-06, -1.4463580162766037e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -7.2317900813830358e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488296997e-06, -3.8569547100708898e-06, -7.2317900813830138e-06, -9.6423867751772224e-07, -4.8211933875886112e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886612e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -8.1960287589005776e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971575e-05, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.928477355035444e-06, -3.8569547100708898e-06, -4.8211933875886629e-06, -5.303312726347449e-06, -1.928477355035444e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -3.8569547100708898e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708889e-06, -1.1570864130212819e-05, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -8.6781480976594163e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -6.267551403865261e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -4.0498024455744685e-05, -3.8569547100708898e-06, -4.2426501810779633e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417779e-06, -3.8569547100709255e-05, -7.7139094201417796e-06, -3.9051666439468223e-05, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.9284773550354445e-06, -4.0498024455744671e-05, -3.8569547100709479e-05, -3.8569547100709228e-05, -3.856954710070933e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886781e-06, -9.6423867751773325e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -1.1570864130212831e-05, -1.4463580162766249e-06, -4.2426501810779829e-05, -7.7139094201417796e-06, -3.4712592390637882e-05, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.2052983468971617e-05, -7.7139094201417813e-06, -3.8569547100708898e-06, -3.3748353713120312e-06, -1.928477355035444e-06, -9.6423867751772224e-07, -3.4712592390637895e-05, -9.6423867751772224e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.4712592390637929e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886586e-06, -1.4463580162766037e-06, -3.8569547100708898e-06, -7.2317900813829875e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.8927160325532235e-06, -1.4463580162766217e-06, 0.0019602972313935386, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.2535102807730488e-05, -1.1088744791453826e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -2.8927160325532298e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.856954710070933e-05, -3.8569547100709228e-05, -7.8103332878936839e-05, -3.8569547100709228e-05, -3.8569547100709255e-05, -1.928477355035444e-06, -9.6423867751772245e-07, -3.8569547100708881e-06, -4.3390740488296912e-06, -1.928477355035444e-06, -5.3033127263474778e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.81033328789365e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.4463580162766037e-06, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651064181e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -8.6781480976594366e-06, -4.8211933875886122e-07, -1.9284773550354436e-06, -9.6423867751772224e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.4105966937943323e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -2.8927160325532065e-06, -4.0980143794503334e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886133e-07, -2.2177489582907565e-05, -4.8211933875886408e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708881e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -0.0001480106369989729, -3.8569547100708898e-06, -9.6423867751772966e-05, -3.8569547100708898e-06, -9.6423867751772224e-07, -2.892716032553176e-05, -5.7854320651064164e-06, -2.410596693794328e-06, -2.8927160325532089e-05, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.81033328789365e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.0001104053285757789, -1.4463580162766028e-06, -9.642386775177306e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936839e-05, -3.8569547100708898e-06, 0.0019602972313935386, -1.3017222146489212e-05, -4.6283456520851331e-05, -3.8569547100708898e-06, -3.4230473051878765e-05, -5.7854320651064113e-06, -5.7854320651064113e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886815e-06, -3.8569547100708889e-06, -4.821193387588673e-06, -1.0124506113936164e-05, -3.8569547100708898e-06, -2.4105966937943374e-06, -1.1088744791453781e-05, -3.8569547100708898e-06, -5.7854320651064164e-06, -1.4463580162766221e-06, -2.4105966937943272e-06, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708889e-06, -5.7854320651064139e-06, -2.8927160325532285e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -3.8569547100708906e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -1.1570864130212826e-05, -3.8569547100708898e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.33907404882972e-06, -1.639205751780126e-05, -9.6423867751772202e-07, -3.8569547100708881e-06, -3.8569547100708906e-06, -4.33907404882972e-06, -1.2535102807730498e-05, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -8.1960287589005285e-06, -1.4463580162765897e-05, -5.7854320651064164e-06, -2.8927160325532235e-06, -4.8211933875886133e-07, -1.9284773550354449e-06, -7.7139094201417796e-06, -1.1570864130212826e-05, -3.8569547100708881e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -5.7854320651064156e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.3390740488297132e-06, -2.410596693794334e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.471259239063776e-05, -1.9284773550354445e-06, -4.8211933875886133e-07, -2.892716032553176e-05, -3.8569547100708898e-06, -2.3141728260426001e-05, -2.3141728260425652e-05, -2.4105966937943147e-05, -2.3141728260426001e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.3748353713120299e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.9409279664290684e-05, -9.6423867751772245e-07, -3.4712592390637929e-05, -3.4712592390637895e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.4712592390637882e-05, -3.4712592390638011e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.4463580162766035e-06, -7.7139094201417813e-06, -1.3017222146489201e-05, -1.3017222146489205e-05, -1.3017222146489212e-05, -1.3017222146489201e-05, -6.508611073244616e-06, -6.508611073244616e-06, -1.3017222146489232e-05, -1.3017222146489232e-05, -1.6271527683111519e-06, -1.6271527683111523e-06, -0.00032705770643054433, -0.00032543055366223409, -8.1357638415558202e-06, -1.6271527683111519e-06, -4.881458304933477e-06, -1.6271527683111654e-05, -0.0001301722214648922, -3.2543055366223046e-06, -0.0001496980546846273, -1.627152768311157e-06, -2.6034444292978423e-05, -2.6034444292978423e-05, -1.3017222146489232e-05, -1.3017222146489232e-05, -0.00013017222146489361, -0.00013017222146489339, -1.3017222146489208e-05, -0.00036936367840663241, -3.2543055366223004e-06, -0.00032543055366223377, -2.6034444292978427e-05, -1.3017222146489205e-05, -1.3017222146489201e-05, -1.6271527683111544e-06, -1.6271527683111767e-06, -1.301722214648941e-05, -1.3017222146489413e-05, -3.2543055366223012e-06, -3.2543055366223004e-06, -1.6271527683111544e-06, -1.6271527683111758e-06, -1.3017222146489252e-05, -8.1357638415558015e-06, -4.8814583049335143e-06, -6.508611073244616e-06, -6.508611073244616e-06, -1.6271527683111519e-06, -2.4407291524667598e-05, -1.301722214648922e-05, -1.3017222146489224e-05, -1.4644374914800606e-05, -1.3017222146489259e-05, -2.440729152466753e-05, -3.2543055366223033e-06, -1.627152768311151e-06, -1.3017222146489266e-05, -1.3017222146489273e-05, -1.6271527683111911e-06, -1.6271527683111525e-06, -1.3017222146489224e-05, -1.301722214648922e-05, -3.2543055366222978e-06, -1.6271527683111536e-06, -1.3017222146489335e-05, -2.603444429297843e-05, -1.6271527683111593e-05, -1.3017222146489464e-05, -2.6034444292978671e-05, -1.6271527683111919e-06, -1.3017222146489225e-05, -2.7661597061289686e-05, -1.3017222146489213e-05, -1.3017222146489225e-05, -2.603444429297843e-05, -5.2068888585956752e-05, -4.0678819207779296e-05, -1.3017222146489235e-05, -2.603444429297843e-05, -2.603444429297843e-05, -6.5086110732447727e-06, -1.3017222146489225e-05, -1.6271527683111606e-05, -1.7898680451422527e-05, -6.5086110732447727e-06, -2.603444429297843e-05, -1.3017222146489222e-05, -1.3017222146489217e-05, -1.3017222146489217e-05, -3.2543055366223055e-06, -1.3017222146489406e-05, -1.3017222146489235e-05, -1.6271527683111504e-06, -1.3017222146489232e-05, -3.2543055366223448e-06, -1.3017222146489403e-05, -1.3017222146489451e-05, -1.3017222146489471e-05, -1.6271527683111515e-06, -2.603444429297843e-05, -2.603444429297843e-05, -1.6271527683111523e-06, -1.3017222146489222e-05, -1.3017222146489222e-05, -1.6271527683111523e-06, -1.30172221464894e-05, -1.3017222146489396e-05, -1.3017222146489225e-05, -1.30172221464894e-05, -3.9051666439468223e-05, -1.3017222146489545e-05, -1.3017222146489322e-05, -1.3017222146489225e-05, -1.6271527683111536e-06, -1.3017222146489342e-05, -1.3017222146489229e-05, -2.603444429297845e-05, -6.508611073244616e-06, -2.9288749829601294e-05, -6.508611073244616e-06, -1.6271527683111754e-06, -3.2543055366223055e-06, -2.1152985988045181e-05, -1.3017222146489471e-05, -2.6034444292978457e-05, -0.00013668083253813782, -1.3017222146489224e-05, -0.00014318944361138293, -1.3017222146489225e-05, -1.3017222146489225e-05, -2.603444429297843e-05, -0.00013017222146489315, -2.603444429297843e-05, -0.00013179937423320396, -1.6271527683111544e-06, -2.6034444292978437e-05, -2.603444429297843e-05, -6.5086110732446024e-06, -0.00013668083253813763, -0.0001301722214648922, -0.0001301722214648935, -0.0001301722214648928, -1.6271527683111902e-06, -6.5086110732445804e-06, -1.6271527683111536e-06, -1.6271527683111758e-06, -1.6271527683111506e-06, -1.301722214648941e-05, -1.3017222146489413e-05, -1.3017222146489457e-05, -1.3017222146489464e-05, -1.6271527683111536e-06, -1.6271527683111536e-06, -1.6271527683111536e-06, -1.3017222146489552e-05, -1.6271527683111484e-05, 0.0043868038633668918, -2.6034444292978457e-05, -2.603444429297845e-05, 0.001951136963957122, -3.905166643946806e-05, -4.8814583049335143e-06, -0.00014318944361138276, -2.603444429297845e-05, -0.00011715499931840388, -1.6271527683111885e-06, -1.6271527683111532e-06, -4.0678819207779302e-05, -2.603444429297845e-05, -1.301722214648922e-05, -1.1390069378178083e-05, -6.5086110732446041e-06, -3.2543055366223038e-06, -0.00011715499931840388, -3.2543055366223033e-06, -6.508611073244616e-06, -6.508611073244616e-06, -0.0001171549993184039, -1.3017222146489229e-05, -1.6271527683111532e-06, -1.30172221464894e-05, -1.6271527683111536e-06, -1.3017222146489379e-05, -1.6271527683111518e-05, -4.8814583049335355e-06, -1.3017222146489393e-05, -2.4407291524667398e-05, -1.6271527683111544e-06, -1.3017222146489229e-05, -3.2543055366223004e-06, -3.2543055366223012e-06, -3.2543055366223021e-06, -1.6271527683111771e-06, -9.762916609867015e-06, -4.8814583049335236e-06, -1.3017222146489212e-05, -1.3017222146489212e-05, -2.6034444292978437e-05, -4.2305971976090206e-05, -3.7424513671156459e-05, -1.6271527683111544e-06, -2.6034444292978444e-05, -1.3017222146489406e-05, -9.7629166098669913e-06, -3.2543055366223071e-06, -1.6271527683111536e-06, -1.6271527683111758e-06, -0.0001301722214648928, -0.0001301722214648935, -0.00026359874846640824, -0.00013017222146489348, -0.00013017222146489315, -6.5086110732447727e-06, -3.2543055366223063e-06, -1.3017222146489212e-05, -1.4644374914800603e-05, -6.5086110732447727e-06, -1.7898680451422862e-05, -1.6271527683111519e-06, -1.6271527683111574e-06, -2.6034444292978437e-05, -1.3017222146489229e-05, -1.3017222146489225e-05, -1.6271527683111527e-06, -1.6271527683111519e-06, -6.5086110732446092e-06, -6.5086110732446092e-06, -2.6034444292978437e-05, -1.3017222146489406e-05, -1.627152768311154e-06, -0.00026359874846640797, -1.3017222146489212e-05, -1.3017222146489212e-05, -1.6271527683111523e-06, -6.5086110732446092e-06, -6.5086110732446092e-06, -3.2543055366223088e-06, -3.2543055366223088e-06, -4.8814583049334931e-06, -1.6271527683111517e-06, -3.2543055366223088e-06, -3.2543055366223088e-06, -1.6271527683111536e-06, -1.6271527683111906e-06, -6.5086110732446092e-06, -1.9525833219734003e-05, -1.3017222146489229e-05, -1.6271527683111536e-06, -1.627152768311157e-06, -2.9288749829601033e-05, -1.6271527683111525e-06, -6.5086110732445906e-06, -3.2543055366223021e-06, -2.6034444292978464e-05, -2.6034444292978471e-05, -8.1357638415557965e-06, -6.5086110732446109e-06, -3.2543055366222991e-06, -9.7629166098669812e-06, -0.0001383079853064505, -1.6271527683111758e-06, -6.5086110732446109e-06, -6.5086110732446109e-06, -2.6034444292978471e-05, -2.6034444292978464e-05, -6.5086110732447202e-06, -6.5086110732446143e-06, -6.5086110732446143e-06, -1.6271527683111536e-06, 0.00017067024592063758, -1.6271527683111556e-05, -1.6271527683111923e-06, -1.3017222146489212e-05, -1.3017222146489203e-05, -1.3017222146489212e-05, -2.6034444292978464e-05, -1.3017222146489203e-05, -2.6034444292978471e-05, -1.3017222146489201e-05, -1.3017222146489201e-05, -0.00049953589987152935, -1.3017222146489406e-05, -0.00032543055366223399, -1.3017222146489342e-05, -3.2543055366223033e-06, -9.7629166098669862e-05, -1.9525833219734037e-05, -8.1357638415557998e-06, -9.7629166098670228e-05, -1.627152768311154e-06, -1.3017222146489217e-05, -1.3017222146489217e-05, -0.00026359874846640797, -1.3017222146489232e-05, -1.3017222146489229e-05, -0.00037261798394325668, -4.8814583049335677e-06, -0.00032543055366223371, -1.3017222146489222e-05, -1.3017222146489222e-05, -1.6271527683111532e-06, -1.3017222146489213e-05, -1.3017222146489217e-05, -1.627152768311154e-06, -2.6034444292978471e-05, -2.6034444292978464e-05, -3.2543055366223021e-06, -6.5086110732446092e-06, -6.5086110732446092e-06, -1.3017222146489406e-05, -1.3017222146489406e-05, -0.00026359874846640824, -1.3017222146489212e-05, -1.3017222146489212e-05, 0.006585087253355314, -0.00015620666575787143, -1.3017222146489222e-05, -0.0001155278465500925, -1.9525833219734044e-05, -1.9525833219734037e-05, -1.3017222146489535e-05, -1.3017222146489396e-05, -1.6271527683111498e-05, -1.30172221464894e-05, -1.6271527683111579e-05, -3.4170208134534415e-05, -1.3017222146489329e-05, -8.1357638415557558e-06, -3.7424513671156716e-05, -1.3017222146489232e-05, -1.952583321973403e-05, -4.8814583049335312e-06, -8.1357638415557931e-06, -3.2543055366223021e-06, -1.6271527683111902e-06, -1.6271527683111532e-06, -1.3017222146489201e-05, -1.9525833219734084e-05, -9.7629166098670252e-06, -6.508611073244616e-06, -1.3017222146489212e-05, -1.3017222146489208e-05, -1.3017222146489201e-05, -2.60344442929784e-05, -1.3017222146489232e-05, -6.5086110732446109e-06, -2.6034444292978505e-05, -1.3017222146489235e-05, -6.5086110732446109e-06, -1.3017222146489203e-05, -1.627152768311154e-06, -1.3017222146489273e-05, -1.3017222146489266e-05, -2.603444429297843e-05, -3.9051666439468338e-05, -1.3017222146489386e-05, -2.6034444292978427e-05, -2.603444429297842e-05, -1.3017222146489232e-05, -1.3017222146489232e-05, -1.3017222146489232e-05, -1.3017222146489229e-05, -1.464437491480065e-05, -5.532319412257944e-05, -3.2543055366223012e-06, -1.3017222146489545e-05, -1.3017222146489235e-05, -1.4644374914800703e-05, -4.2305971976090084e-05, -1.3017222146489205e-05, -1.30172221464894e-05, -1.3017222146489201e-05, -6.5086110732446109e-06, -6.5086110732446109e-06, -1.6271527683111519e-06, -1.6271527683111506e-06, -1.6271527683111919e-06, -3.2543055366223542e-06, -2.7661597061289411e-05, -4.8814583049335202e-05, -1.9525833219734003e-05, -9.762916609867015e-06, -1.6271527683111532e-06, -6.5086110732446126e-06, -2.603444429297845e-05, -3.9051666439468433e-05, -1.3017222146489545e-05, -6.5086110732446126e-06, -2.603444429297845e-05, -2.603444429297845e-05, -6.5086110732446126e-06, -1.9525833219734111e-05, -1.3017222146489232e-05, -1.627152768311151e-06, -3.2543055366223055e-06, -6.5086110732446126e-06, -6.5086110732447202e-06, -1.4644374914800674e-05, -8.1357638415558269e-06, -1.3017222146489212e-05, -2.603444429297843e-05, -0.00011715499931840415, -6.5086110732446024e-06, -1.6271527683111536e-06, -9.7629166098670066e-05, -1.3017222146489225e-05, -7.8103332878936378e-05, -7.8103332878936337e-05, -8.1357638415558646e-05, -7.8103332878936378e-05, -6.5086110732446024e-06, -6.5086110732446024e-06, -1.3017222146489225e-05, -1.3017222146489225e-05, -6.5086110732446143e-06, -6.5086110732446143e-06, -1.3017222146489403e-05, -1.627152768311151e-06, -1.3017222146489406e-05, -1.6271527683111536e-06, -1.6271527683111523e-06, -0.00011390069378178315, -6.5086110732446143e-06, -6.5086110732446143e-06, -9.9256318866981606e-05, -3.2543055366223029e-06, -0.0001171549993184039, -0.00011715499931840388, -1.3017222146489225e-05, -1.6271527683111536e-06, -1.3017222146489229e-05, -0.00011715499931840388, -0.00011715499931840463, -1.3017222146489225e-05, -1.3017222146489225e-05, -3.2543055366223287e-06, -3.254305536622377e-06, -2.6034444292978478e-05, -1.3017222146489225e-05, -1.3017222146489225e-05, -4.8814583049335278e-06, -2.6034444292978478e-05, -4.6283456520851582e-05, -4.6283456520851386e-05, -4.6283456520851426e-05, -4.6283456520851569e-05, -2.3141728260425449e-05, -2.3141728260425456e-05, -4.6283456520850898e-05, -4.6283456520850884e-05, 0.00023973384119784543, -5.7854320651064097e-06, -0.0011628718450863822, -0.0011570864130212649, -2.8927160325531686e-05, -5.7854320651064164e-06, -1.735629619531927e-05, -5.7854320651063534e-05, -0.00046283456520850556, -1.1570864130212819e-05, -0.00053225974998978619, -5.7854320651063537e-06, -9.2566913041702839e-05, -9.2566913041702785e-05, -4.6283456520850871e-05, -4.6283456520850911e-05, -0.00046283456520850459, -0.00046283456520850459, -4.6283456520850776e-05, -0.0013132930787791385, -1.1570864130212906e-05, -0.0011570864130212659, -9.2566913041702893e-05, -4.6283456520851399e-05, -4.6283456520851596e-05, -5.7854320651063512e-06, -5.7854320651064113e-06, -4.6283456520851182e-05, -4.6283456520851223e-05, -1.1570864130212906e-05, -1.1570864130212902e-05, -5.7854320651063537e-06, -5.7854320651063859e-06, -4.6283456520850755e-05, -2.8927160325531855e-05, -1.7356296195319175e-05, -2.3141728260425456e-05, -2.3141728260425449e-05, -5.7854320651064164e-06, -8.6781480976595176e-05, -4.6283456520851128e-05, -4.6283456520851142e-05, -5.2068888585956955e-05, -4.6283456520850844e-05, -8.6781480976595311e-05, -1.1570864130212835e-05, -5.7854320651064418e-06, -4.6283456520850844e-05, -4.6283456520850871e-05, -5.7854320651064198e-06, -5.785432065106402e-06, -4.6283456520851155e-05, -4.6283456520851115e-05, -1.1570864130212692e-05, -5.7854320651063842e-06, -4.6283456520850979e-05, -9.2566913041701579e-05, -5.785432065106348e-05, -4.628345652085125e-05, -9.2566913041702039e-05, -5.7854320651064215e-06, -4.6283456520851047e-05, -9.8352345106808957e-05, -4.6283456520851223e-05, -4.6283456520851155e-05, -9.2566913041702798e-05, -0.00018513382608340305, -0.00014463580162765849, -4.6283456520850884e-05, -9.2566913041702663e-05, -9.2566913041702609e-05, -2.3141728260425791e-05, -4.6283456520851087e-05, -5.7854320651063466e-05, -6.363975271616928e-05, -2.3141728260425798e-05, -9.2566913041701606e-05, -4.6283456520851223e-05, -4.6283456520851237e-05, -4.628345652085125e-05, -1.1570864130212768e-05, -4.6283456520851453e-05, -4.6283456520850884e-05, -5.7854320651064486e-06, -4.6283456520850871e-05, -1.1570864130212765e-05, -4.6283456520851426e-05, -4.6283456520851223e-05, -4.628345652085125e-05, -5.7854320651064232e-06, -9.256691304170269e-05, -9.2566913041702744e-05, -5.785432065106408e-06, -4.6283456520851209e-05, -4.6283456520851196e-05, -5.7854320651064122e-06, -4.6283456520851535e-05, -4.628345652085148e-05, -4.6283456520851169e-05, -4.6283456520851494e-05, -0.00013885036956255372, -4.6283456520851521e-05, -4.6283456520850952e-05, -4.628345652085106e-05, -5.785432065106391e-06, -4.6283456520851006e-05, -4.6283456520851074e-05, -9.2566913041702283e-05, -2.3141728260425449e-05, -0.00010413777717191388, -2.3141728260425456e-05, -5.7854320651064351e-06, -1.1570864130212796e-05, -7.5210616846382777e-05, -4.628345652085125e-05, -9.2566913041701606e-05, -0.00048597629346893692, -4.6283456520851155e-05, -0.00050911802172935348, -4.6283456520851128e-05, -4.6283456520851169e-05, -9.2566913041702609e-05, -0.00046283456520850719, -9.2566913041702663e-05, -0.00022310072401066433, -5.7854320651063529e-06, -9.2566913041702717e-05, -9.2566913041702554e-05, -2.3141728260425754e-05, -0.00048597629346893692, -0.00046283456520850556, -0.000462834565208506, -0.00046283456520850854, -5.7854320651064198e-06, -2.3141728260425368e-05, -5.7854320651063792e-06, -5.7854320651064266e-06, -5.7854320651064512e-06, -4.6283456520851196e-05, -4.6283456520851209e-05, -4.6283456520851223e-05, -4.628345652085125e-05, -5.7854320651063792e-06, -5.7854320651063842e-06, -5.7854320651063775e-06, -4.6283456520851413e-05, -5.7854320651063778e-05, -0.00011570864130212691, 0.0018715872730619184, -9.2566913041702202e-05, -4.6283456520851413e-05, -0.00013885036956255296, -1.7356296195318887e-05, -0.00050911802172935684, -9.2566913041702148e-05, -0.0004165511086876551, -5.7854320651064147e-06, -5.7854320651063978e-06, -0.00014463580162765854, -9.2566913041702283e-05, -4.6283456520851128e-05, -4.0498024455744786e-05, -2.3141728260425395e-05, -1.1570864130212833e-05, -0.0004165511086876551, -1.1570864130212835e-05, -2.3141728260425456e-05, -2.3141728260425449e-05, -0.0004165511086876551, -4.6283456520850979e-05, -5.7854320651063927e-06, -4.6283456520851115e-05, -5.7854320651063775e-06, -4.628345652085106e-05, -5.7854320651063629e-05, -1.7356296195319175e-05, -4.6283456520851087e-05, 0.0035960076179676584, -5.7854320651063537e-06, -4.6283456520850965e-05, -1.1570864130212906e-05, -1.1570864130212902e-05, -1.1570864130212874e-05, -5.7854320651063978e-06, -3.4712592390637916e-05, 0.0007192015235935363, -4.6283456520851331e-05, -4.6283456520851386e-05, -9.2566913041702094e-05, 9.5098039570184575e-05, -0.00013306493749744484, -5.7854320651063537e-06, -9.2566913041701714e-05, -4.6283456520851304e-05, -3.4712592390638051e-05, -1.1570864130212701e-05, -5.7854320651063842e-06, -5.7854320651064266e-06, -0.00046283456520850854, -0.000462834565208506, -0.00093723999454722331, -0.00046283456520850562, -0.00046283456520850719, -2.3141728260425798e-05, -1.1570864130212752e-05, -4.6283456520851237e-05, -5.2068888585957118e-05, -2.3141728260425791e-05, -6.3639752716169591e-05, -5.7854320651064164e-06, -5.7854320651063554e-06, -9.2566913041701606e-05, -4.6283456520850979e-05, -4.628345652085106e-05, -5.7854320651063995e-06, -5.7854320651064173e-06, -2.3141728260425625e-05, -2.3141728260425639e-05, -9.2566913041701714e-05, -4.6283456520851331e-05, -5.7854320651063707e-06, -0.00093723999454723317, -4.6283456520851359e-05, -4.6283456520851345e-05, 0.00023973384119784535, -2.3141728260425639e-05, -2.3141728260425632e-05, -1.1570864130212709e-05, -1.1570864130212709e-05, -1.7356296195319154e-05, -5.785432065106419e-06, -1.1570864130212709e-05, -1.1570864130212709e-05, -5.7854320651063842e-06, -5.7854320651064198e-06, -2.3141728260425459e-05, -6.9425184781276374e-05, -4.6283456520850965e-05, -5.7854320651063775e-06, -5.7854320651063537e-06, 0.00014138149609103519, -5.785432065106402e-06, -2.3141728260425381e-05, -1.1570864130212696e-05, -9.2566913041701782e-05, -9.2566913041701836e-05, -2.8927160325531821e-05, -2.3141728260425588e-05, -1.1570864130212691e-05, -3.4712592390638241e-05, -0.00049176172553404068, -5.7854320651063859e-06, -2.3141728260425581e-05, -2.3141728260425595e-05, -9.256691304170189e-05, -9.2566913041701728e-05, -2.3141728260425584e-05, -2.3141728260425523e-05, -2.314172826042551e-05, -5.7854320651063775e-06, -0.00026612987499489304, -5.7854320651063161e-05, -5.7854320651064232e-06, -4.6283456520851345e-05, -4.6283456520850789e-05, -4.6283456520851359e-05, -9.2566913041701728e-05, -4.6283456520850776e-05, -9.256691304170189e-05, -4.6283456520850789e-05, -4.6283456520850789e-05, -0.0017761276439876574, -4.6283456520851291e-05, -0.0011570864130212664, -4.6283456520851006e-05, -1.157086413021284e-05, -0.00034712592390638114, -6.9425184781276509e-05, -2.8927160325531747e-05, -0.00034712592390638027, -5.7854320651063622e-06, -4.628345652085125e-05, -4.6283456520851237e-05, -0.00093723999454723317, -4.6283456520850952e-05, -4.6283456520850938e-05, -0.0013248639429093549, -1.7356296195319222e-05, -0.0011570864130212672, -4.6283456520851196e-05, -4.6283456520851209e-05, -5.7854320651063859e-06, -4.6283456520851223e-05, -4.6283456520851264e-05, -5.7854320651063724e-06, -9.2566913041701836e-05, -9.2566913041701782e-05, -1.1570864130212874e-05, -2.3141728260425632e-05, -2.3141728260425639e-05, -4.6283456520851304e-05, -4.6283456520851318e-05, -0.00093723999454722331, -4.6283456520851386e-05, -4.6283456520851331e-05, -0.00015620666575787143, 0.023014448754993169, -4.6283456520851223e-05, -0.00041076567662255031, -6.9425184781276807e-05, -6.9425184781276807e-05, -4.6283456520851386e-05, -4.628345652085148e-05, -5.7854320651063717e-05, -4.6283456520851535e-05, -5.7854320651063629e-05, -0.00012149407336723388, -4.6283456520850979e-05, -2.8927160325531835e-05, 0.00084901215555435467, -4.6283456520850965e-05, -6.9425184781276509e-05, -1.7356296195318894e-05, -2.8927160325531699e-05, -1.1570864130212884e-05, -5.7854320651064198e-06, -5.7854320651063927e-06, -4.6283456520851596e-05, -6.9425184781276618e-05, -3.4712592390637916e-05, -2.3141728260425496e-05, -4.6283456520851413e-05, -4.6283456520850776e-05, -4.6283456520850789e-05, -9.2566913041701552e-05, -4.6283456520850871e-05, -2.3141728260425595e-05, -9.2566913041701592e-05, -4.6283456520850898e-05, -2.3141728260425581e-05, -4.6283456520850789e-05, -5.7854320651063622e-06, -4.6283456520850871e-05, -4.6283456520850844e-05, -9.2566913041702744e-05, -0.00013885036956255351, -4.6283456520851087e-05, -9.2566913041702893e-05, -9.2566913041702731e-05, -4.6283456520850884e-05, -4.6283456520850898e-05, -4.6283456520850965e-05, -4.6283456520850925e-05, -5.2068888585956792e-05, -0.00019670469021361686, -1.1570864130212707e-05, -4.6283456520851521e-05, -4.6283456520850911e-05, -5.2068888585956833e-05, -0.00015042123369276452, -4.6283456520851386e-05, -4.6283456520851115e-05, -4.6283456520851582e-05, -2.3141728260425588e-05, -2.3141728260425595e-05, -5.7854320651064147e-06, -5.7854320651064512e-06, -5.7854320651064232e-06, -1.1570864130212796e-05, -9.8352345106808768e-05, -0.00017356296195319008, -6.9425184781276319e-05, -3.4712592390637916e-05, -5.7854320651063893e-06, -2.3141728260425574e-05, -9.2566913041702148e-05, -0.00013885036956255356, -4.6283456520851494e-05, -2.3141728260425574e-05, -9.2566913041702256e-05, -9.2566913041702202e-05, -2.3141728260425574e-05, -6.9425184781276563e-05, -4.6283456520850952e-05, -5.7854320651064401e-06, -1.1570864130212718e-05, -2.3141728260425574e-05, -2.3141728260425584e-05, -5.2068888585956894e-05, -2.892716032553176e-05, -4.6283456520851331e-05, -9.2566913041701579e-05, -0.00041655110868765607, -2.3141728260425754e-05, -5.7854320651063809e-06, 0.014384030471870732, -4.628345652085106e-05, -0.00027770073912510121, -0.00027770073912510636, -0.00028927160325531692, -0.00027770073912510121, -2.3141728260425754e-05, -2.3141728260425747e-05, -4.6283456520851115e-05, -4.628345652085106e-05, -2.3141728260425544e-05, -2.3141728260425544e-05, -4.6283456520851426e-05, 0.00023973384119784565, -4.6283456520851453e-05, -5.7854320651063893e-06, -5.785432065106413e-06, -0.00040498024455744443, -2.3141728260425544e-05, -2.3141728260425544e-05, -0.00035291135597148707, -1.157086413021286e-05, -0.0004165511086876551, -0.0004165511086876551, -4.6283456520851047e-05, -5.7854320651063792e-06, -4.6283456520851087e-05, -0.0004165511086876551, -0.00041655110868765499, -4.628345652085106e-05, -4.628345652085102e-05, -1.1570864130212731e-05, -1.1570864130212829e-05, -9.2566913041701687e-05, -4.6283456520851033e-05, -4.6283456520851047e-05, -1.7356296195319188e-05, -9.2566913041701687e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6905987090532001e-05, -9.6423867751772302e-05, -2.4105966937943145e-06, -4.8211933875886133e-07, -1.4463580162766001e-06, -4.8211933875886595e-06, -3.8569547100709398e-05, -9.6423867751772287e-07, -4.4354979165815333e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100709398e-05, -3.8569547100709391e-05, -3.8569547100708898e-06, -0.00010944108989826143, -9.6423867751772245e-07, -9.6423867751773589e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.4105966937943145e-06, -1.4463580162765745e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813830307e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297098e-06, -3.8569547100708915e-06, -7.2317900813830087e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886298e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -8.1960287589005996e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.2052983468971399e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.8211933875886298e-06, -5.3033127263474558e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, 0.0019602972313935386, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212796e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594366e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652559e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.0498024455744644e-05, -3.8569547100708906e-06, -4.2426501810779673e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709154e-05, -7.7139094201417796e-06, -3.9051666439468141e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.0498024455744644e-05, -3.8569547100709398e-05, -3.856954710070912e-05, -3.8569547100709221e-05, -4.8211933875886122e-07, -1.9284773550354449e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -4.8211933875886679e-06, -9.6423867751773121e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -1.1570864130212806e-05, -1.4463580162766217e-06, -4.2426501810780005e-05, -7.7139094201417813e-06, -3.4712592390637882e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971609e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120338e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390637868e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390637868e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886476e-06, -1.4463580162766005e-06, -3.8569547100708915e-06, -7.2317900813829841e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325532167e-06, -1.4463580162766185e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730478e-05, -1.1088744791453838e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.892716032553223e-06, -9.6423867751772266e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709221e-05, -3.856954710070912e-05, -7.8103332878936527e-05, -3.856954710070912e-05, -3.8569547100709154e-05, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297014e-06, -1.9284773550354449e-06, -5.3033127263474837e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936351e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162766003e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651064046e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976594569e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943255e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325532006e-06, -4.0980143794503347e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.2177489582907582e-05, -4.8211933875886298e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897255, -3.8569547100708906e-06, -9.6423867751772545e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -2.8927160325531747e-05, -5.7854320651064046e-06, -2.4105966937943225e-06, -2.8927160325532075e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936351e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577904, -1.4463580162765994e-06, -9.6423867751772993e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936527e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489222e-05, -4.6283456520851223e-05, 0.0019602972313935386, -3.4230473051878867e-05, -5.7854320651063978e-06, -5.7854320651063978e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886705e-06, -3.8569547100708898e-06, -4.8211933875886595e-06, -1.0124506113936158e-05, -3.8569547100708915e-06, -2.4105966937943323e-06, -1.1088744791453791e-05, -3.8569547100708906e-06, -5.7854320651064046e-06, -1.4463580162766191e-06, -2.4105966937943221e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651064012e-06, -2.8927160325532222e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.1570864130212802e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297302e-06, -1.6392057517801301e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488297302e-06, -1.2535102807730488e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -8.1960287589005522e-06, -1.4463580162765887e-05, -5.7854320651064046e-06, -2.8927160325532167e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417813e-06, -1.1570864130212801e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651064029e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.3390740488297234e-06, -2.4105966937943289e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.4712592390637882e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531747e-05, -3.8569547100708906e-06, -2.314172826042595e-05, -2.3141728260425605e-05, -2.410596693794313e-05, -2.314172826042595e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.3748353713120327e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.9409279664290684e-05, -9.6423867751772245e-07, -3.4712592390637868e-05, -3.4712592390637868e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390637882e-05, -3.4712592390637814e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162766003e-06, -7.713909420141783e-06, -3.4230473051878576e-05, -3.4230473051878725e-05, -3.4230473051878671e-05, -3.4230473051878596e-05, -1.7115236525939522e-05, -1.7115236525939522e-05, -3.423047305187905e-05, -3.4230473051879064e-05, -4.2788091314848431e-06, -4.2788091314848541e-06, -0.00086004063542846837, -0.0008557618262969752, -2.1394045657424536e-05, -4.2788091314848431e-06, -1.2836427394454682e-05, -4.2788091314848821e-05, -0.00034230473051879024, -8.55761826296971e-06, -0.00014813116683366762, -4.2788091314848855e-06, -6.8460946103757395e-05, -6.846094610375745e-05, -3.4230473051879064e-05, -3.423047305187905e-05, -0.00034230473051879024, -0.00034230473051879035, -3.4230473051879362e-05, -0.00097128967284707338, -8.5576182629696355e-06, -0.00085576182629697845, -6.8460946103757314e-05, -3.4230473051878711e-05, -3.4230473051878562e-05, -4.2788091314848889e-06, -4.2788091314848635e-06, -3.4230473051879009e-05, -3.4230473051878955e-05, -8.5576182629696371e-06, -8.5576182629696388e-06, -4.278809131484888e-06, -4.2788091314848829e-06, -3.4230473051879111e-05, -2.1394045657424526e-05, -1.2836427394454678e-05, -1.7115236525939518e-05, -1.7115236525939522e-05, -4.2788091314848431e-06, -6.4182136972273194e-05, -3.4230473051878908e-05, -3.4230473051878887e-05, -3.8509282183364213e-05, -3.423047305187907e-05, -6.4182136972273357e-05, -8.5576182629696863e-06, -4.2788091314848245e-06, -3.4230473051879064e-05, -3.4230473051879064e-05, -4.2788091314848397e-06, -4.2788091314848525e-06, -3.4230473051878874e-05, -3.4230473051878921e-05, -8.5576182629698303e-06, -4.2788091314848736e-06, -3.4230473051878989e-05, -6.8460946103758466e-05, -4.2788091314848929e-05, -3.4230473051878813e-05, -6.8460946103758141e-05, -4.2788091314848381e-06, -3.4230473051878989e-05, -7.2739755235244036e-05, -3.4230473051878847e-05, -3.4230473051879016e-05, -6.8460946103757395e-05, -0.00013692189220751731, -0.00010697022828712223, -3.423047305187907e-05, -6.8460946103757626e-05, -6.8460946103757707e-05, -1.7115236525939278e-05, -3.4230473051878935e-05, -4.2788091314848902e-05, -4.7066900446334736e-05, -1.7115236525939274e-05, 0.0018956932399998576, -3.4230473051878867e-05, -3.4230473051878826e-05, -3.4230473051878813e-05, -8.5576182629698557e-06, -3.4230473051878806e-05, -3.423047305187907e-05, -4.2788091314848203e-06, -3.423047305187907e-05, -8.5576182629697557e-06, -3.4230473051878826e-05, -3.4230473051878847e-05, -3.4230473051878793e-05, -4.2788091314848381e-06, -6.8460946103757531e-05, -6.846094610375745e-05, -4.2788091314848499e-06, -3.4230473051878881e-05, -3.4230473051878901e-05, -4.2788091314848465e-06, -3.4230473051878745e-05, -3.4230473051878799e-05, -3.4230473051879036e-05, -3.4230473051878779e-05, -0.00010269141915563754, -3.4230473051878596e-05, -3.4230473051879023e-05, -3.4230473051878962e-05, -4.2788091314848626e-06, -3.4230473051878975e-05, -3.4230473051878948e-05, -6.8460946103757788e-05, -1.7115236525939522e-05, -7.7018564366728508e-05, -1.7115236525939518e-05, -4.2788091314848465e-06, -8.557618262969732e-06, -5.5624518709303837e-05, -3.4230473051878793e-05, -6.846094610375852e-05, -0.00035941996704473393, -3.4230473051878874e-05, -0.0003765352035706722, -3.4230473051878975e-05, -3.4230473051879036e-05, -6.8460946103757707e-05, -0.00034230473051879171, -6.8460946103757626e-05, -0.00034658353965027523, -4.278809131484888e-06, -6.8460946103757544e-05, -6.8460946103757761e-05, -1.7115236525939308e-05, -0.00035941996704473393, -0.00034230473051879024, -0.00034230473051879176, -0.00034230473051879057, -4.2788091314848406e-06, -1.7115236525939589e-05, -4.2788091314848753e-06, -4.2788091314848533e-06, -4.2788091314848186e-06, -3.4230473051878996e-05, -3.4230473051878975e-05, -3.4230473051878833e-05, -3.4230473051878813e-05, 0.00024124046413146632, -4.2788091314848728e-06, -4.2788091314848719e-06, -3.4230473051878671e-05, -4.278809131484874e-05, -8.5576182629697723e-05, -6.8460946103758791e-05, -6.8460946103757897e-05, -3.4230473051878691e-05, -0.00010269141915563746, -1.283642739445476e-05, -0.00037653520357067215, -6.8460946103757965e-05, -0.00030807425746691582, -4.2788091314848431e-06, -4.278809131484866e-06, -0.00010697022828712233, -6.8460946103757788e-05, -3.4230473051878908e-05, -2.9951663920394656e-05, -1.7115236525939559e-05, -8.5576182629696897e-06, -0.00030807425746691582, -8.5576182629696863e-06, -1.7115236525939522e-05, -1.7115236525939522e-05, -0.00030807425746691582, -3.4230473051879003e-05, -4.2788091314848601e-06, -3.4230473051878894e-05, -4.2788091314848711e-06, -3.4230473051878948e-05, -4.2788091314848862e-05, -1.2836427394454682e-05, -3.4230473051878914e-05, -6.4182136972273601e-05, -4.278809131484888e-06, -3.4230473051879016e-05, -8.5576182629696355e-06, -8.5576182629696405e-06, -8.5576182629696693e-06, -4.2788091314848736e-06, -2.5672854788909635e-05, -1.2836427394454684e-05, -3.4230473051878765e-05, -3.4230473051878711e-05, -6.8460946103758073e-05, -0.00011124903741860773, -9.841261002415427e-05, -4.278809131484888e-06, -6.8460946103758507e-05, -3.4230473051878914e-05, -2.567285478890952e-05, -8.5576182629697727e-06, -4.2788091314848728e-06, -4.2788091314848533e-06, -0.00034230473051879057, -0.00034230473051879176, -0.00069316707930054959, -0.00034230473051879176, -0.00034230473051879171, -1.7115236525939274e-05, -8.5576182629697981e-06, -3.4230473051879362e-05, -3.8509282183364159e-05, -1.7115236525939278e-05, -4.7066900446334282e-05, -4.278809131484844e-06, -4.2788091314848855e-06, -6.8460946103758181e-05, -3.4230473051879003e-05, -3.4230473051878942e-05, -4.278809131484866e-06, -4.2788091314848431e-06, -1.71152365259394e-05, -1.7115236525939386e-05, -6.846094610375848e-05, -3.4230473051878881e-05, -4.2788091314848762e-06, -0.00069316707930055458, -3.4230473051878738e-05, -3.4230473051878752e-05, -4.2788091314848491e-06, -1.7115236525939393e-05, -1.7115236525939396e-05, -8.5576182629697761e-06, -8.5576182629697727e-06, -1.2836427394454685e-05, -4.2788091314848414e-06, -8.5576182629697727e-06, -8.5576182629697761e-06, -4.278809131484866e-06, -4.2788091314848406e-06, -1.7115236525939603e-05, -5.1345709577818768e-05, -3.4230473051879023e-05, -4.2788091314848762e-06, -4.2788091314848855e-06, -7.7018564366728644e-05, -4.2788091314848533e-06, -1.7115236525939603e-05, -8.5576182629698015e-06, -6.8460946103758168e-05, -6.8460946103758114e-05, -2.1394045657424421e-05, -1.7115236525939434e-05, -8.5576182629698421e-06, -2.5672854788909374e-05, -0.00036369877617621854, -4.2788091314848829e-06, -1.711523652593944e-05, -1.7115236525939427e-05, -6.8460946103758059e-05, -6.8460946103758208e-05, -1.7115236525939423e-05, -1.7115236525939481e-05, -1.7115236525939484e-05, -4.2788091314848762e-06, -0.00019682522004830659, -4.2788091314849045e-05, -4.2788091314848381e-06, -3.4230473051878752e-05, -3.4230473051879362e-05, -3.4230473051878738e-05, -6.8460946103758208e-05, -3.4230473051879036e-05, -6.8460946103758059e-05, -3.4230473051879375e-05, -3.4230473051879375e-05, -0.0013135944033658572, -3.4230473051878928e-05, -0.00085576182629698084, -3.4230473051878975e-05, -8.5576182629696812e-06, -0.00025672854788909256, -5.1345709577818768e-05, -2.1394045657424475e-05, -0.00025672854788909202, -4.2788091314848821e-06, -3.4230473051878813e-05, -3.4230473051878826e-05, -0.00069316707930055458, -3.423047305187903e-05, -3.4230473051879043e-05, -0.00097984729111003522, -1.2836427394454695e-05, -0.0008557618262969804, -3.4230473051878901e-05, -3.4230473051878881e-05, -4.278809131484866e-06, -3.4230473051878847e-05, -3.4230473051878793e-05, -4.2788091314848787e-06, -6.8460946103758114e-05, -6.8460946103758168e-05, -8.5576182629696693e-06, -1.7115236525939396e-05, -1.7115236525939393e-05, -3.4230473051878914e-05, -3.4230473051878894e-05, -0.00069316707930054959, -3.4230473051878711e-05, -3.4230473051878765e-05, -0.0001155278465500925, -0.00041076567662255031, -3.4230473051878867e-05, 0.017128072953334118, -5.1345709577818687e-05, -5.1345709577818687e-05, -3.4230473051878725e-05, -3.4230473051878799e-05, -4.2788091314848787e-05, -3.4230473051878745e-05, -4.2788091314848835e-05, -8.9854991761183049e-05, -3.4230473051879009e-05, -2.139404565742441e-05, -9.8412610024153322e-05, -3.4230473051879003e-05, -5.1345709577818768e-05, -1.2836427394454695e-05, -2.1394045657424495e-05, -8.557618262969649e-06, -4.2788091314848406e-06, -4.2788091314848601e-06, -3.4230473051878562e-05, -5.1345709577818782e-05, -2.5672854788909398e-05, -1.7115236525939515e-05, -3.4230473051878691e-05, -3.4230473051879362e-05, -3.4230473051879375e-05, -6.8460946103758059e-05, -3.4230473051879064e-05, -1.7115236525939427e-05, -6.8460946103758303e-05, -3.4230473051879091e-05, -1.711523652593944e-05, -3.4230473051879362e-05, -4.2788091314848821e-06, -3.4230473051879064e-05, -3.4230473051879064e-05, -6.846094610375745e-05, -0.00010269141915563751, -3.4230473051878928e-05, -6.8460946103757314e-05, -6.8460946103757531e-05, -3.4230473051879064e-05, -3.423047305187905e-05, -3.4230473051879003e-05, -3.4230473051879057e-05, -3.8509282183364457e-05, -0.00014547951047048639, 0.0002369616549999822, -3.4230473051878596e-05, -3.4230473051879111e-05, -3.8509282183364444e-05, -0.00011124903741860695, -3.4230473051878725e-05, -3.4230473051878894e-05, -3.4230473051878576e-05, -1.7115236525939434e-05, -1.7115236525939427e-05, -4.2788091314848431e-06, -4.2788091314848186e-06, -4.2788091314848381e-06, -8.557618262969749e-06, -7.273975523524447e-05, -0.0001283642739445465, -5.1345709577818768e-05, -2.5672854788909635e-05, -4.2788091314848618e-06, -1.711523652593944e-05, -6.8460946103757965e-05, -0.00010269141915563746, -3.4230473051878616e-05, -1.711523652593944e-05, -6.8460946103757815e-05, -6.8460946103757897e-05, -1.711523652593944e-05, -5.1345709577818741e-05, -3.423047305187903e-05, -4.2788091314848338e-06, -8.5576182629698455e-06, -1.711523652593944e-05, -1.7115236525939423e-05, -3.8509282183364329e-05, -2.1394045657424424e-05, -3.4230473051878752e-05, -6.8460946103758466e-05, 0.014423082138310143, -1.7115236525939308e-05, -4.2788091314848753e-06, -0.00025672854788909267, -3.4230473051878962e-05, -0.00020538283831127513, -0.00020538283831127491, -0.00021394045657424434, -0.00020538283831127513, -1.7115236525939312e-05, -1.7115236525939315e-05, -3.4230473051878921e-05, -3.4230473051878975e-05, -1.7115236525939461e-05, -1.7115236525939467e-05, -3.4230473051878826e-05, -4.2788091314848347e-06, -3.4230473051878806e-05, -4.2788091314848635e-06, -4.2788091314848465e-06, -0.00029951663920394558, -1.7115236525939467e-05, -1.7115236525939461e-05, -0.00026100735702057879, -8.5576182629696676e-06, -0.00030807425746691582, -0.00030807425746691582, -3.4230473051878989e-05, -4.2788091314848702e-06, -3.4230473051878935e-05, -0.00030807425746691582, -0.00030807425746691235, -3.4230473051878942e-05, -3.4230473051878996e-05, -8.5576182629697523e-06, -8.5576182629696863e-06, -6.8460946103758208e-05, -3.4230473051878982e-05, -3.4230473051878962e-05, -1.2836427394454695e-05, -6.8460946103758208e-05, -5.7854320651064418e-06, -5.7854320651064181e-06, -5.7854320651064215e-06, -5.7854320651064384e-06, -2.8927160325531803e-06, -2.8927160325531803e-06, -5.7854320651063571e-06, -5.7854320651063554e-06, -7.2317900813830163e-07, -7.2317900813830078e-07, -0.00014535898063579755, -0.00014463580162765784, -3.6158950406914937e-06, -7.2317900813830152e-07, -2.1695370244148706e-06, -7.2317900813829723e-06, -5.785432065106371e-05, -1.4463580162766016e-06, -6.6532468748722515e-05, -7.2317900813829379e-07, -1.1570864130212848e-05, -1.1570864130212841e-05, -5.7854320651063537e-06, -5.7854320651063588e-06, -5.7854320651063602e-05, -5.7854320651063588e-05, -5.7854320651064046e-06, -0.0001641616348473922, -1.4463580162766115e-06, -0.00014463580162765797, -1.1570864130212855e-05, -5.7854320651064181e-06, -5.7854320651064418e-06, -7.2317900813829327e-07, -7.2317900813828437e-07, -5.7854320651063029e-06, -5.7854320651062868e-06, -1.4463580162766115e-06, -1.4463580162766115e-06, -7.2317900813829358e-07, -7.2317900813828808e-07, -5.7854320651064384e-06, -3.6158950406914865e-06, -2.169537024414907e-06, -2.8927160325531786e-06, -2.8927160325531803e-06, -7.2317900813830152e-07, -1.0847685122074295e-05, -5.7854320651063859e-06, -5.7854320651063876e-06, -6.5086110732446109e-06, -5.7854320651063521e-06, -1.0847685122074321e-05, -1.4463580162766033e-06, -7.2317900813830459e-07, -5.7854320651063537e-06, -5.7854320651063554e-06, -7.2317900813830184e-07, -7.2317900813829983e-07, -5.785432065106391e-06, -5.7854320651063842e-06, -1.4463580162766014e-06, -7.2317900813829718e-07, -5.7854320651063707e-06, -1.1570864130212689e-05, -7.2317900813830019e-06, -5.7854320651064012e-06, -1.1570864130212748e-05, -7.2317900813830227e-07, -5.7854320651063758e-06, -1.2294043138351201e-05, -5.7854320651063978e-06, -5.7854320651063809e-06, -1.157086413021284e-05, -2.3141728260425368e-05, -1.807947520345729e-05, -5.7854320651063554e-06, -1.1570864130212826e-05, -1.1570864130212819e-05, -2.892716032553223e-06, -5.7854320651063842e-06, -7.2317900813829985e-06, -7.9549690895211057e-06, -2.892716032553223e-06, -1.157086413021268e-05, -5.7854320651063978e-06, -5.7854320651063995e-06, -5.7854320651064012e-06, -1.4463580162765855e-06, -5.785432065106258e-06, -5.7854320651063554e-06, -7.2317900813830565e-07, -5.7854320651063537e-06, -1.4463580162765944e-06, -5.7854320651062631e-06, -5.7854320651063978e-06, -5.7854320651064029e-06, -7.2317900813830227e-07, -1.1570864130212826e-05, -1.1570864130212833e-05, -7.2317900813830057e-07, -5.7854320651063978e-06, -5.7854320651063944e-06, -7.2317900813830089e-07, -5.7854320651062462e-06, -5.7854320651062546e-06, -5.7854320651063792e-06, -5.7854320651062513e-06, 0.0019467978899082919, -5.7854320651064368e-06, -5.7854320651063673e-06, -5.7854320651063775e-06, -7.2317900813829803e-07, -5.7854320651063724e-06, -5.7854320651063792e-06, -1.1570864130212796e-05, -2.8927160325531803e-06, -1.3017222146489291e-05, -2.8927160325531786e-06, -7.2317900813828141e-07, -1.4463580162765982e-06, -9.4013271057978386e-06, -5.7854320651064029e-06, -1.1570864130212685e-05, -6.0747036683617251e-05, -5.785432065106391e-06, -6.3639752716168914e-05, -5.7854320651063842e-06, -5.7854320651063792e-06, -1.1570864130212819e-05, -5.7854320651063886e-05, -1.1570864130212826e-05, -5.8577499659202317e-05, -7.2317900813829348e-07, -1.1570864130212833e-05, -1.1570864130212813e-05, -2.8927160325532158e-06, -6.0747036683617251e-05, -5.785432065106371e-05, -5.7854320651063703e-05, -5.7854320651064063e-05, -7.2317900813830184e-07, -2.8927160325531701e-06, -7.2317900813829655e-07, -7.2317900813828247e-07, -7.2317900813830576e-07, -5.7854320651062978e-06, -5.7854320651062928e-06, -5.7854320651063995e-06, -5.7854320651064012e-06, -7.2317900813829655e-07, -7.2317900813829739e-07, -7.2317900813829634e-07, -5.7854320651064232e-06, -7.2317900813830256e-06, -1.4463580162765955e-05, -1.1570864130212687e-05, -1.1570864130212765e-05, -5.7854320651064215e-06, -1.7356296195319243e-05, -2.1695370244148515e-06, -6.3639752716169293e-05, -1.1570864130212758e-05, -5.2068888585956779e-05, -7.2317900813830142e-07, -7.2317900813829909e-07, -1.8079475203457487e-05, -1.1570864130212796e-05, -5.7854320651063859e-06, -5.0622530569681e-06, -2.8927160325531718e-06, -1.4463580162766028e-06, -5.2068888585956779e-05, -1.4463580162766033e-06, -2.8927160325531803e-06, -2.8927160325531803e-06, -5.2068888585956779e-05, -5.7854320651063673e-06, -7.2317900813829845e-07, -5.7854320651063859e-06, -7.2317900813829655e-07, -5.7854320651063809e-06, -7.2317900813830239e-06, -2.1695370244149066e-06, -5.7854320651063842e-06, -1.0847685122074392e-05, -7.2317900813829337e-07, -5.785432065106369e-06, -1.4463580162766115e-06, -1.4463580162766115e-06, -1.4463580162766083e-06, -7.2317900813828628e-07, -4.3390740488297666e-06, -2.1695370244148659e-06, -5.7854320651064113e-06, -5.7854320651064181e-06, -1.1570864130212809e-05, -1.8802654211595535e-05, -1.6633117187180425e-05, -7.2317900813829337e-07, -1.1570864130212884e-05, -5.7854320651062817e-06, -4.3390740488297446e-06, -1.446358016276591e-06, -7.2317900813829739e-07, -7.2317900813828247e-07, -5.7854320651064063e-05, -5.7854320651063703e-05, -0.0001171549993184039, -5.7854320651063697e-05, -5.7854320651063886e-05, -2.892716032553223e-06, -1.446358016276591e-06, -5.7854320651063402e-06, -6.5086110732446109e-06, -2.892716032553223e-06, -7.9549690895211396e-06, -7.2317900813830142e-07, -7.2317900813829379e-07, -1.1570864130212741e-05, -5.7854320651063673e-06, -5.7854320651063792e-06, -7.2317900813829909e-07, -7.2317900813830152e-07, -2.8927160325532023e-06, 0.00097918437701925102, -1.1570864130212896e-05, -5.7854320651062716e-06, -7.2317900813829549e-07, -0.00011715499931840512, -5.7854320651064147e-06, -5.785432065106413e-06, -7.2317900813830057e-07, -2.8927160325532023e-06, -2.8927160325532023e-06, -1.4463580162765876e-06, -1.4463580162765876e-06, -2.1695370244149036e-06, -7.2317900813830174e-07, -1.4463580162765876e-06, -1.4463580162765876e-06, -7.2317900813829739e-07, -7.2317900813830184e-07, -2.8927160325531803e-06, -8.6781480976595874e-06, -5.7854320651063639e-06, -7.2317900813829634e-07, -7.2317900813829379e-07, -1.3017222146489449e-05, -7.2317900813829972e-07, -2.8927160325531684e-06, -1.4463580162765859e-06, -1.1570864130212713e-05, -1.1570864130212719e-05, -3.6158950406915094e-06, -2.8927160325531959e-06, -1.4463580162766007e-06, -4.3390740488297954e-06, -6.1470215691755085e-05, -7.2317900813828808e-07, -2.8927160325531951e-06, -2.8927160325531968e-06, -1.1570864130212726e-05, -1.1570864130212706e-05, -2.8927160325531972e-06, -2.892716032553187e-06, -2.8927160325531862e-06, -7.2317900813829655e-07, -3.3266234374361224e-05, -7.2317900813829579e-06, -7.2317900813830227e-07, -5.785432065106413e-06, -5.7854320651063419e-06, -5.7854320651064147e-06, -1.1570864130212706e-05, -5.7854320651063419e-06, -1.1570864130212726e-05, -5.7854320651063419e-06, -5.7854320651063419e-06, -0.00022201595549845479, -5.7854320651062868e-06, -0.00014463580162765803, -5.7854320651063724e-06, -1.4463580162766039e-06, -4.3390740488297439e-05, -8.6781480976596077e-06, -3.6158950406914971e-06, -4.3390740488297195e-05, -7.2317900813829464e-07, -5.7854320651064012e-06, -5.7854320651063995e-06, -0.00011715499931840512, -5.7854320651063639e-06, -5.7854320651063622e-06, -0.00016560799286366909, -2.1695370244149138e-06, -0.00014463580162765813, -5.7854320651063944e-06, -5.7854320651063978e-06, -7.2317900813829761e-07, -5.7854320651063978e-06, -5.7854320651064029e-06, -7.231790081382957e-07, -1.1570864130212719e-05, -1.1570864130212713e-05, -1.4463580162766083e-06, -2.8927160325532023e-06, -2.8927160325532023e-06, -5.7854320651062817e-06, -5.7854320651062767e-06, -0.0001171549993184039, -5.7854320651064181e-06, -5.7854320651064113e-06, -1.9525833219734044e-05, -6.9425184781276807e-05, -5.7854320651063978e-06, -5.1345709577818687e-05, 0.0029375531310577587, -8.6781480976593858e-06, -5.7854320651064181e-06, -5.7854320651062546e-06, -7.2317900813830341e-06, -5.7854320651062462e-06, -7.2317900813830155e-06, -1.5186759170904292e-05, -5.785432065106369e-06, -3.6158950406915128e-06, -1.6633117187180615e-05, -5.7854320651063656e-06, -8.6781480976596043e-06, -2.1695370244148659e-06, -3.6158950406915026e-06, -1.4463580162766096e-06, -7.2317900813830184e-07, -7.2317900813829867e-07, -5.7854320651064418e-06, -8.6781480976594705e-06, -4.3390740488297479e-06, -2.8927160325531845e-06, -5.7854320651064215e-06, -5.7854320651064046e-06, -5.7854320651063419e-06, -1.1570864130212684e-05, -5.7854320651063537e-06, -2.8927160325531968e-06, -1.1570864130212684e-05, -5.7854320651063554e-06, -2.8927160325531951e-06, -5.7854320651063419e-06, -7.2317900813829464e-07, -5.7854320651063554e-06, -5.7854320651063537e-06, -1.1570864130212833e-05, -1.7356296195319276e-05, -5.7854320651063825e-06, -1.1570864130212855e-05, -1.1570864130212835e-05, -5.7854320651063554e-06, -5.7854320651063571e-06, -5.7854320651063656e-06, -5.7854320651063605e-06, -6.508611073244666e-06, -2.458808627670247e-05, -1.4463580162766092e-06, -5.7854320651064368e-06, -5.7854320651063521e-06, -6.5086110732445974e-06, -1.880265421159544e-05, -5.7854320651064181e-06, -5.7854320651063859e-06, -5.7854320651064418e-06, -2.8927160325531959e-06, -2.8927160325531968e-06, -7.2317900813830099e-07, -7.2317900813830576e-07, -7.2317900813830227e-07, -1.4463580162765721e-06, -1.2294043138351184e-05, -2.1695370244148618e-05, -8.6781480976595941e-06, -4.3390740488297666e-06, -7.2317900813829824e-07, -2.8927160325531942e-06, -1.1570864130212758e-05, -1.735629619531929e-05, -5.7854320651064351e-06, -2.8927160325531942e-06, -1.1570864130212772e-05, -1.1570864130212765e-05, -2.8927160325531942e-06, -8.6781480976596145e-06, -5.7854320651063639e-06, -7.2317900813830438e-07, -1.4463580162766096e-06, -2.8927160325531942e-06, -2.8927160325531972e-06, -6.5086110732446685e-06, -3.6158950406914878e-06, -5.7854320651064113e-06, -1.1570864130212689e-05, -5.2068888585956738e-05, -2.8927160325532158e-06, -7.2317900813829676e-07, -4.339074048829733e-05, -5.7854320651063775e-06, -3.4712592390637814e-05, -3.4712592390638458e-05, -3.6158950406914574e-05, -3.4712592390637814e-05, -2.8927160325532158e-06, -2.8927160325532158e-06, -5.7854320651063859e-06, -5.7854320651063809e-06, -2.8927160325531904e-06, -2.8927160325531904e-06, -5.7854320651062631e-06, -7.2317900813830417e-07, -5.785432065106258e-06, -7.2317900813829803e-07, -7.2317900813830099e-07, -5.0622530569680737e-05, -2.8927160325531904e-06, -2.8927160325531904e-06, -4.411391949643629e-05, -1.4463580162766062e-06, -5.2068888585956779e-05, -5.2068888585956779e-05, -5.7854320651063758e-06, -7.2317900813829676e-07, -5.7854320651063809e-06, -5.2068888585956779e-05, -5.2068888585956765e-05, -5.7854320651063792e-06, -5.7854320651063842e-06, -1.446358016276591e-06, -1.4463580162766028e-06, -1.1570864130212697e-05, -5.7854320651063825e-06, -5.7854320651063809e-06, -2.1695370244149036e-06, -1.1570864130212697e-05, -5.7854320651064418e-06, -5.7854320651064181e-06, -5.7854320651064215e-06, -5.7854320651064384e-06, -2.8927160325531803e-06, -2.8927160325531803e-06, -5.7854320651063571e-06, -5.7854320651063554e-06, -7.2317900813830163e-07, -7.2317900813830078e-07, -0.00014535898063579755, -0.00014463580162765784, -3.6158950406914929e-06, -7.2317900813830152e-07, -2.1695370244148697e-06, -7.2317900813829723e-06, -5.7854320651063697e-05, -1.4463580162766016e-06, -6.6532468748722529e-05, -7.2317900813829379e-07, -1.1570864130212848e-05, -1.1570864130212841e-05, -5.7854320651063537e-06, -5.7854320651063588e-06, -5.7854320651063588e-05, -5.7854320651063588e-05, -5.785432065106408e-06, -0.0001641616348473922, -1.4463580162766115e-06, -0.00014463580162765797, -1.1570864130212855e-05, -5.7854320651064181e-06, -5.7854320651064418e-06, -7.2317900813829327e-07, -7.2317900813828437e-07, -5.7854320651063029e-06, -5.7854320651062868e-06, -1.4463580162766115e-06, -1.4463580162766115e-06, -7.2317900813829358e-07, -7.2317900813828808e-07, -5.7854320651064384e-06, -3.6158950406914857e-06, -2.169537024414907e-06, -2.8927160325531786e-06, -2.8927160325531803e-06, -7.2317900813830152e-07, -1.0847685122074295e-05, -5.7854320651063859e-06, -5.7854320651063876e-06, -6.5086110732446109e-06, -5.7854320651063521e-06, -1.0847685122074321e-05, -1.4463580162766033e-06, -7.2317900813830459e-07, -5.7854320651063537e-06, -5.7854320651063554e-06, -7.2317900813830184e-07, -7.2317900813829983e-07, -5.785432065106391e-06, -5.7854320651063842e-06, -1.4463580162766005e-06, -7.2317900813829718e-07, -5.7854320651063707e-06, -1.1570864130212689e-05, -7.2317900813830002e-06, -5.7854320651064012e-06, -1.1570864130212748e-05, -7.2317900813830227e-07, -5.7854320651063758e-06, -1.2294043138351201e-05, -5.7854320651063978e-06, -5.7854320651063809e-06, -1.157086413021284e-05, -2.3141728260425368e-05, -1.807947520345729e-05, -5.7854320651063554e-06, -1.1570864130212826e-05, -1.1570864130212819e-05, -2.892716032553223e-06, -5.7854320651063842e-06, -7.2317900813829985e-06, -7.9549690895211057e-06, -2.892716032553223e-06, -1.157086413021268e-05, -5.7854320651063978e-06, -5.7854320651063995e-06, -5.7854320651064012e-06, -1.4463580162765855e-06, -5.785432065106258e-06, -5.7854320651063554e-06, -7.2317900813830565e-07, -5.7854320651063537e-06, -1.4463580162765944e-06, -5.7854320651062631e-06, -5.7854320651063978e-06, -5.7854320651064029e-06, -7.2317900813830227e-07, -1.1570864130212826e-05, -1.1570864130212833e-05, -7.2317900813830057e-07, -5.7854320651063978e-06, -5.7854320651063944e-06, -7.2317900813830089e-07, -5.7854320651062462e-06, -5.7854320651062563e-06, -5.7854320651063792e-06, 0.0019583687540385025, -1.735629619531888e-05, -5.7854320651064368e-06, -5.7854320651063673e-06, -5.7854320651063775e-06, -7.2317900813829803e-07, -5.7854320651063724e-06, -5.7854320651063792e-06, -1.1570864130212796e-05, -2.8927160325531803e-06, -1.3017222146489295e-05, -2.8927160325531786e-06, -7.2317900813828141e-07, -1.4463580162765982e-06, -9.4013271057978386e-06, -5.7854320651064029e-06, -1.1570864130212685e-05, -6.0747036683617251e-05, -5.785432065106391e-06, -6.3639752716168914e-05, -5.7854320651063842e-06, -5.7854320651063792e-06, -1.1570864130212819e-05, -5.785432065106388e-05, -1.1570864130212826e-05, -5.857749965920231e-05, -7.2317900813829348e-07, -1.1570864130212833e-05, -1.1570864130212813e-05, -2.8927160325532158e-06, -6.0747036683617251e-05, -5.7854320651063697e-05, -5.785432065106369e-05, -5.7854320651064056e-05, -7.2317900813830184e-07, -2.8927160325531701e-06, -7.2317900813829655e-07, -7.2317900813828247e-07, -7.2317900813830576e-07, -5.7854320651062978e-06, -5.7854320651062928e-06, -5.7854320651063995e-06, -5.7854320651064012e-06, -7.2317900813829655e-07, -7.2317900813829739e-07, -7.2317900813829634e-07, -5.7854320651064232e-06, -7.2317900813830256e-06, -1.4463580162765951e-05, -1.1570864130212687e-05, -1.1570864130212765e-05, -5.7854320651064215e-06, -1.7356296195319243e-05, -2.1695370244148515e-06, -6.3639752716169293e-05, -1.1570864130212758e-05, -5.2068888585956806e-05, -7.2317900813830142e-07, -7.2317900813829909e-07, -1.8079475203457487e-05, -1.1570864130212796e-05, -5.7854320651063859e-06, -5.0622530569681e-06, -2.8927160325531718e-06, -1.4463580162766028e-06, -5.2068888585956806e-05, -1.4463580162766033e-06, -2.8927160325531803e-06, -2.8927160325531803e-06, -5.2068888585956806e-05, -5.7854320651063673e-06, -7.2317900813829845e-07, -5.7854320651063859e-06, -7.2317900813829655e-07, -5.7854320651063809e-06, -7.2317900813830222e-06, -2.1695370244149066e-06, -5.7854320651063842e-06, -1.0847685122074392e-05, -7.2317900813829337e-07, -5.785432065106369e-06, -1.4463580162766115e-06, -1.4463580162766115e-06, -1.4463580162766083e-06, -7.2317900813828628e-07, -4.3390740488297666e-06, -2.1695370244148659e-06, -5.7854320651064113e-06, -5.7854320651064181e-06, -1.1570864130212802e-05, -1.8802654211595535e-05, -1.6633117187180425e-05, -7.2317900813829337e-07, -1.1570864130212884e-05, -5.7854320651062817e-06, -4.3390740488297446e-06, -1.446358016276591e-06, -7.2317900813829739e-07, -7.2317900813828247e-07, -5.7854320651064056e-05, -5.785432065106369e-05, -0.0001171549993184039, -5.7854320651063697e-05, -5.785432065106388e-05, -2.892716032553223e-06, -1.446358016276591e-06, -5.7854320651063402e-06, -6.5086110732446126e-06, -2.892716032553223e-06, -7.9549690895211396e-06, -7.2317900813830142e-07, -7.2317900813829379e-07, -1.1570864130212741e-05, -5.7854320651063673e-06, -5.7854320651063792e-06, -7.2317900813829909e-07, -7.2317900813830152e-07, 0.00097918437701925102, -2.8927160325532023e-06, -1.1570864130212896e-05, -5.7854320651062716e-06, -7.2317900813829549e-07, -0.00011715499931840512, -5.7854320651064147e-06, -5.785432065106413e-06, -7.2317900813830057e-07, -2.8927160325532023e-06, -2.8927160325532023e-06, -1.4463580162765876e-06, -1.4463580162765876e-06, -2.1695370244149036e-06, -7.2317900813830174e-07, -1.4463580162765876e-06, -1.4463580162765876e-06, -7.2317900813829739e-07, -7.2317900813830184e-07, -2.8927160325531803e-06, -8.6781480976595874e-06, -5.7854320651063639e-06, -7.2317900813829634e-07, -7.2317900813829379e-07, -1.3017222146489452e-05, -7.2317900813829972e-07, -2.8927160325531684e-06, -1.4463580162765859e-06, -1.1570864130212713e-05, -1.1570864130212719e-05, -3.6158950406915086e-06, -2.8927160325531959e-06, -1.4463580162766007e-06, -4.3390740488297954e-06, -6.1470215691755085e-05, -7.2317900813828808e-07, -2.8927160325531951e-06, -2.8927160325531968e-06, -1.1570864130212726e-05, -1.1570864130212706e-05, -2.8927160325531972e-06, -2.892716032553187e-06, -2.8927160325531862e-06, -7.2317900813829655e-07, -3.326623437436123e-05, -7.2317900813829579e-06, -7.2317900813830227e-07, -5.785432065106413e-06, -5.7854320651063419e-06, -5.7854320651064147e-06, -1.1570864130212706e-05, -5.7854320651063419e-06, -1.1570864130212726e-05, -5.7854320651063419e-06, -5.7854320651063419e-06, -0.00022201595549845485, -5.7854320651062868e-06, -0.00014463580162765803, -5.7854320651063724e-06, -1.4463580162766039e-06, -4.3390740488297439e-05, -8.6781480976596077e-06, -3.6158950406914971e-06, -4.3390740488297208e-05, -7.2317900813829464e-07, -5.7854320651064012e-06, -5.7854320651063995e-06, -0.00011715499931840512, -5.7854320651063639e-06, -5.7854320651063622e-06, -0.00016560799286366909, -2.1695370244149138e-06, -0.00014463580162765813, -5.7854320651063944e-06, -5.7854320651063978e-06, -7.2317900813829761e-07, -5.7854320651063978e-06, -5.7854320651064029e-06, -7.231790081382957e-07, -1.1570864130212719e-05, -1.1570864130212713e-05, -1.4463580162766083e-06, -2.8927160325532023e-06, -2.8927160325532023e-06, -5.7854320651062817e-06, -5.7854320651062767e-06, -0.0001171549993184039, -5.7854320651064181e-06, -5.7854320651064113e-06, -1.9525833219734037e-05, -6.9425184781276807e-05, -5.7854320651063978e-06, -5.1345709577818687e-05, -8.6781480976593858e-06, 0.0029375531310577587, -5.7854320651064181e-06, -5.7854320651062563e-06, -7.2317900813830324e-06, -5.7854320651062462e-06, -7.2317900813830155e-06, -1.5186759170904292e-05, -5.785432065106369e-06, -3.6158950406915128e-06, -1.6633117187180619e-05, -5.7854320651063656e-06, -8.6781480976596043e-06, -2.1695370244148659e-06, -3.6158950406915026e-06, -1.4463580162766096e-06, -7.2317900813830184e-07, -7.2317900813829867e-07, -5.7854320651064418e-06, -8.678148097659479e-06, -4.3390740488297479e-06, -2.8927160325531845e-06, -5.7854320651064215e-06, -5.785432065106408e-06, -5.7854320651063419e-06, -1.1570864130212684e-05, -5.7854320651063537e-06, -2.8927160325531968e-06, -1.1570864130212684e-05, -5.7854320651063554e-06, -2.8927160325531951e-06, -5.7854320651063419e-06, -7.2317900813829464e-07, -5.7854320651063554e-06, -5.7854320651063537e-06, -1.1570864130212833e-05, -1.7356296195319276e-05, -5.7854320651063825e-06, -1.1570864130212855e-05, -1.1570864130212835e-05, -5.7854320651063554e-06, -5.7854320651063571e-06, -5.7854320651063656e-06, -5.7854320651063605e-06, -6.5086110732446609e-06, -2.4588086276702476e-05, -1.4463580162766092e-06, -5.7854320651064368e-06, -5.7854320651063521e-06, -6.5086110732445974e-06, -1.8802654211595437e-05, -5.7854320651064181e-06, -5.7854320651063859e-06, -5.7854320651064418e-06, -2.8927160325531959e-06, -2.8927160325531968e-06, -7.2317900813830099e-07, -7.2317900813830576e-07, -7.2317900813830227e-07, -1.4463580162765721e-06, -1.2294043138351184e-05, -2.1695370244148618e-05, -8.6781480976595941e-06, -4.3390740488297666e-06, -7.2317900813829824e-07, -2.8927160325531942e-06, -1.1570864130212758e-05, -1.735629619531929e-05, -5.7854320651064351e-06, -2.8927160325531942e-06, -1.1570864130212772e-05, -1.1570864130212765e-05, -2.8927160325531942e-06, -8.6781480976596145e-06, -5.7854320651063639e-06, -7.2317900813830438e-07, -1.4463580162766096e-06, -2.8927160325531942e-06, -2.8927160325531972e-06, -6.5086110732446634e-06, -3.615895040691487e-06, -5.7854320651064113e-06, -1.1570864130212689e-05, -5.2068888585956738e-05, -2.8927160325532158e-06, -7.2317900813829676e-07, -4.3390740488297344e-05, -5.7854320651063775e-06, -3.4712592390637814e-05, -3.4712592390638458e-05, -3.6158950406914574e-05, -3.4712592390637814e-05, -2.8927160325532158e-06, -2.8927160325532158e-06, -5.7854320651063859e-06, -5.7854320651063809e-06, -2.8927160325531904e-06, -2.8927160325531904e-06, -5.7854320651062631e-06, -7.2317900813830417e-07, -5.785432065106258e-06, -7.2317900813829803e-07, -7.2317900813830099e-07, -5.0622530569680737e-05, -2.8927160325531904e-06, -2.8927160325531904e-06, -4.411391949643629e-05, -1.4463580162766062e-06, -5.2068888585956806e-05, -5.2068888585956806e-05, -5.7854320651063758e-06, -7.2317900813829676e-07, -5.7854320651063809e-06, -5.2068888585956806e-05, -5.2068888585956779e-05, -5.7854320651063792e-06, -5.7854320651063842e-06, -1.446358016276591e-06, -1.4463580162766028e-06, -1.1570864130212697e-05, -5.7854320651063825e-06, -5.7854320651063809e-06, -2.1695370244149036e-06, -1.1570864130212697e-05, -3.8569547100708881e-06, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6905987090532136e-05, -9.6423867751772437e-05, -2.410596693794323e-06, -4.8211933875886112e-07, -1.4463580162766043e-06, -4.8211933875886764e-06, -3.856954710070952e-05, -9.6423867751772245e-07, -4.4354979165815252e-05, -4.8211933875886122e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.856954710070952e-05, -3.856954710070952e-05, -3.8569547100708881e-06, -0.00010944108989826086, -9.6423867751772202e-07, -9.6423867751773697e-05, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708881e-06, -2.410596693794323e-06, -1.4463580162766054e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886112e-07, -7.2317900813830426e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488297132e-06, -3.8569547100708906e-06, -7.2317900813830188e-06, -9.6423867751772224e-07, -4.8211933875886101e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -7.7139094201417796e-06, -4.8211933875886662e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -8.1960287589005759e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -1.5427818840283549e-05, -1.2052983468971582e-05, -3.8569547100708898e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -4.8211933875886679e-06, -5.3033127263474676e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772245e-07, -3.8569547100708889e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -3.8569547100708898e-06, -9.6423867751772245e-07, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -1.1570864130212863e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -8.6781480976594061e-06, -1.9284773550354449e-06, -4.8211933875886112e-07, -9.6423867751772245e-07, -6.2675514038652627e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -4.0498024455744671e-05, -3.8569547100708898e-06, -4.2426501810779592e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -3.8569547100709282e-05, -7.7139094201417779e-06, -3.9051666439468236e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417762e-06, -1.928477355035444e-06, -4.0498024455744657e-05, -3.856954710070952e-05, -3.8569547100709249e-05, -3.856954710070935e-05, -4.8211933875886133e-07, -1.928477355035444e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, 0.0019593329927160208, -9.6423867751773426e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -1.1570864130212845e-05, -1.4463580162766268e-06, -4.2426501810779931e-05, -7.7139094201417779e-06, -3.471259239063776e-05, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971627e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.3748353713120998e-06, -1.928477355035444e-06, -9.6423867751772224e-07, -3.471259239063776e-05, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.4712592390637746e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -4.8211933875886459e-06, -1.4463580162766054e-06, -3.8569547100708906e-06, -7.2317900813829968e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.8927160325532264e-06, -1.4463580162766234e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -1.2535102807730488e-05, -1.1088744791453818e-05, -4.8211933875886122e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -2.8927160325532332e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.856954710070935e-05, -3.8569547100709249e-05, -7.810333287893673e-05, -3.8569547100709249e-05, -3.8569547100709282e-05, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.8569547100708889e-06, -4.3390740488296861e-06, -1.9284773550354449e-06, -5.3033127263474719e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417779e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.810333287893654e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.4463580162766054e-06, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.9284773550354445e-06, -5.7854320651064215e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -8.6781480976594264e-06, -4.8211933875886122e-07, -1.9284773550354428e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.410596693794334e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -2.8927160325532099e-06, -4.0980143794503334e-05, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -2.2177489582907534e-05, -4.8211933875886468e-06, -4.8211933875886133e-07, -3.8569547100708889e-06, -3.8569547100708881e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -0.00014801063699897303, -3.8569547100708898e-06, -9.6423867751773047e-05, -3.8569547100708906e-06, -9.6423867751772224e-07, -2.8927160325531801e-05, -5.7854320651063741e-06, -2.4105966937943306e-06, -2.892716032553213e-05, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.810333287893654e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00011040532857577882, -1.446358016276605e-06, -9.6423867751773128e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.810333287893673e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.3017222146489535e-05, -4.6283456520851386e-05, -3.8569547100708898e-06, -3.4230473051878725e-05, -5.7854320651064181e-06, -5.7854320651064181e-06, 0.001960297231393539, -3.8569547100708881e-06, -4.8211933875886459e-06, -3.8569547100708881e-06, -4.8211933875886747e-06, -1.0124506113936161e-05, -3.8569547100708906e-06, -2.410596693794323e-06, -1.108874479145376e-05, -3.8569547100708898e-06, -5.7854320651063673e-06, -1.4463580162765687e-06, -2.4105966937943306e-06, -9.6423867751772202e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100708881e-06, -5.7854320651064215e-06, -2.8927160325532315e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417762e-06, -1.1570864130212843e-05, -3.8569547100708906e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488297166e-06, -1.6392057517801247e-05, -9.6423867751772202e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488298377e-06, -1.2535102807730502e-05, -3.8569547100708881e-06, -3.8569547100708906e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -8.1960287589005268e-06, -1.4463580162765904e-05, -5.7854320651063944e-06, -2.8927160325532264e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -7.7139094201417779e-06, -1.1570864130212868e-05, -3.8569547100708898e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -5.7854320651064198e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354453e-06, -4.3390740488297081e-06, -2.4105966937943374e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.4712592390637719e-05, -1.928477355035444e-06, -4.8211933875886122e-07, -2.8927160325531801e-05, -3.8569547100708898e-06, -2.3141728260426028e-05, -2.3141728260425679e-05, -2.410596693794316e-05, -2.3141728260426028e-05, -1.928477355035444e-06, -1.928477355035444e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -4.8211933875886101e-07, -3.8569547100708889e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.3748353713120245e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.9409279664290724e-05, -9.6423867751772224e-07, -3.4712592390637746e-05, -3.471259239063776e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.471259239063776e-05, -3.4712592390637692e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.4463580162766028e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6905987090532299e-05, -9.64238677517726e-05, -2.410596693794328e-06, -4.8211933875886112e-07, -1.4463580162766096e-06, -4.8211933875886561e-06, -3.8569547100709601e-05, -9.6423867751772245e-07, -4.4354979165815184e-05, -4.8211933875886122e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100709601e-05, -3.8569547100709601e-05, -3.8569547100708881e-06, -0.00010944108989826064, -9.6423867751772202e-07, -9.6423867751773887e-05, -7.7139094201417762e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708881e-06, -2.410596693794328e-06, -1.44635801627661e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886112e-07, -7.2317900813830561e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.339074048829681e-06, -3.8569547100708898e-06, -7.2317900813830324e-06, -9.6423867751772224e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886764e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886112e-07, -3.8569547100708898e-06, -8.196028758900559e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -1.5427818840283549e-05, -1.2052983468971607e-05, -3.8569547100708898e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -1.928477355035444e-06, -3.8569547100708898e-06, -4.8211933875886781e-06, -5.303312726347438e-06, -1.928477355035444e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772202e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -3.8569547100708898e-06, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -3.8569547100708991e-06, 0.001960297231393539, -3.8569547100708898e-06, -3.8569547100708991e-06, -1.1570864130212889e-05, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -8.678148097659379e-06, -1.9284773550354449e-06, -4.8211933875886218e-07, -9.6423867751772245e-07, -6.2675514038651263e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.0498024455744685e-05, -3.8569547100708898e-06, -4.2426501810779518e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -3.8569547100709357e-05, -7.7139094201417779e-06, -3.9051666439468304e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417762e-06, -1.928477355035444e-06, -4.0498024455744685e-05, -3.8569547100709601e-05, -3.8569547100709323e-05, -3.8569547100709425e-05, -4.8211933875886112e-07, -1.928477355035444e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708889e-06, -4.8211933875886933e-06, -9.642386775177302e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -3.8569547100708889e-06, -1.1570864130212882e-05, -1.446358016276567e-06, -4.2426501810779877e-05, -7.7139094201417779e-06, -3.4712592390637652e-05, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971648e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.3748353713120266e-06, -1.928477355035444e-06, -9.6423867751772224e-07, -3.4712592390637652e-05, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.4712592390637638e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.821193387588673e-06, -1.44635801627661e-06, -3.8569547100708898e-06, -7.2317900813830104e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.8927160325532366e-06, -1.446358016276628e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -1.2535102807730502e-05, -1.1088744791453791e-05, -4.8211933875886122e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -2.892716032553176e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100709425e-05, -3.8569547100709323e-05, -7.8103332878936839e-05, -3.8569547100709323e-05, -3.8569547100709357e-05, -1.928477355035444e-06, -9.6423867751772245e-07, -3.8569547100708873e-06, -4.3390740488296726e-06, -1.928477355035444e-06, -5.3033127263474668e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.8103332878936676e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.44635801627661e-06, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -1.928477355035444e-06, -5.7854320651064444e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -8.6781480976593587e-06, -4.8211933875886122e-07, -1.9284773550354428e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.4105966937943386e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -2.8927160325532192e-06, -4.0980143794503334e-05, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -2.2177489582907494e-05, -4.8211933875886561e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708881e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -0.00014801063699897355, -3.8569547100708898e-06, -9.6423867751773237e-05, -3.8569547100708898e-06, -9.6423867751772224e-07, -2.8927160325531842e-05, -5.7854320651064418e-06, -2.4105966937943357e-06, -2.892716032553217e-05, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.8103332878936676e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00011040532857577863, -1.4463580162766092e-06, -9.6423867751773291e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936839e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.3017222146489396e-05, -4.628345652085148e-05, -3.8569547100708898e-06, -3.4230473051878799e-05, -5.7854320651062546e-06, -5.7854320651062563e-06, -3.8569547100708881e-06, 0.001960297231393539, -4.8211933875886967e-06, -3.8569547100708991e-06, -4.8211933875886849e-06, -1.0124506113936161e-05, -3.8569547100708898e-06, -2.4105966937943458e-06, -1.108874479145374e-05, -3.8569547100708898e-06, -5.7854320651064418e-06, -1.4463580162766285e-06, -2.4105966937943348e-06, -9.6423867751772202e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -3.8569547100708881e-06, -5.7854320651064384e-06, -2.8927160325532417e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -1.1570864130212877e-05, -3.8569547100708898e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488297014e-06, -1.639205751780122e-05, -9.6423867751772224e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -4.3390740488297014e-06, -1.2535102807730509e-05, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -8.1960287589005115e-06, -1.4463580162765941e-05, -5.7854320651064418e-06, -2.8927160325532366e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -7.7139094201417779e-06, -1.1570864130212875e-05, -3.8569547100708881e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -5.785432065106441e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.3390740488296946e-06, -2.410596693794328e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.4712592390637719e-05, -1.928477355035444e-06, -4.8211933875886122e-07, -2.8927160325531814e-05, -3.8569547100708898e-06, -2.3141728260426103e-05, -2.3141728260425754e-05, -2.4105966937943214e-05, -2.3141728260426103e-05, -1.928477355035444e-06, -1.928477355035444e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.3748353713120177e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.9409279664290779e-05, -9.6423867751772224e-07, -3.4712592390637638e-05, -3.4712592390637652e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.4712592390637652e-05, -3.4712592390637584e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.44635801627661e-06, -7.7139094201417796e-06, -4.821193387588695e-06, -4.8211933875886866e-06, -4.8211933875886849e-06, -4.8211933875886967e-06, -2.4105966937943263e-06, -2.4105966937943263e-06, -4.8211933875886493e-06, -4.821193387588651e-06, -6.0264917344858444e-07, -6.0264917344858455e-07, -0.00012113248386316493, -0.00012052983468971624, -3.0132458672429132e-06, -6.0264917344858444e-07, -1.8079475203457278e-06, -6.0264917344858586e-06, -4.8211933875886307e-05, -1.2052983468971691e-06, -5.5443723957269015e-05, -6.0264917344858074e-07, -9.6423867751773697e-06, -9.6423867751773731e-06, -4.821193387588651e-06, -4.8211933875886493e-06, -4.821193387588632e-05, -4.821193387588632e-05, -4.8211933875886933e-06, -0.00013680136237282828, -1.2052983468971742e-06, -0.00012052983468971592, -9.6423867751773664e-06, -4.8211933875886866e-06, -4.8211933875886933e-06, -6.0264917344858032e-07, -6.0264917344858519e-07, -4.8211933875886798e-06, -4.8211933875886764e-06, -1.2052983468971742e-06, -1.2052983468971744e-06, -6.0264917344858095e-07, -6.0264917344858328e-07, -4.8211933875886459e-06, -3.0132458672429069e-06, -1.8079475203457522e-06, -2.4105966937943263e-06, -2.4105966937943272e-06, -6.0264917344858444e-07, -9.039737601728901e-06, -4.8211933875886645e-06, -4.8211933875886637e-06, -5.4238425610372044e-06, -4.8211933875886425e-06, -9.0397376017288468e-06, -1.2052983468971691e-06, -6.0264917344858646e-07, -4.8211933875886425e-06, -4.8211933875886425e-06, -6.0264917344858053e-07, -6.026491734485836e-07, -4.8211933875886629e-06, -4.8211933875886654e-06, -1.2052983468971782e-06, -6.0264917344858286e-07, -4.8211933875886425e-06, -9.6423867751773562e-06, -6.0264917344858527e-06, -4.8211933875886425e-06, -9.6423867751772783e-06, -6.0264917344858053e-07, -4.8211933875886612e-06, -1.024503594862584e-05, -4.821193387588673e-06, -4.8211933875886662e-06, -9.6423867751773664e-06, -1.9284773550354841e-05, -1.5066229336214517e-05, -4.8211933875886459e-06, -9.6423867751773647e-06, -9.6423867751773681e-06, -2.410596693794328e-06, -4.8211933875886645e-06, -6.0264917344858434e-06, -6.6291409079345239e-06, -2.410596693794328e-06, -9.6423867751773477e-06, -4.8211933875886705e-06, -4.8211933875886722e-06, -4.8211933875886713e-06, -1.2052983468971678e-06, -4.82119338758869e-06, -4.8211933875886459e-06, -6.0264917344858646e-07, -4.8211933875886468e-06, -1.2052983468971615e-06, -4.82119338758869e-06, -4.8211933875886425e-06, -4.8211933875886425e-06, -6.026491734485854e-07, -9.6423867751773731e-06, -9.6423867751773697e-06, -6.0264917344858434e-07, -4.8211933875886713e-06, -4.8211933875886722e-06, 0.00024491662408950259, -4.8211933875886933e-06, -4.8211933875886967e-06, -4.8211933875886662e-06, -4.8211933875886967e-06, -1.4463580162765887e-05, -4.8211933875886493e-06, -4.8211933875886425e-06, -4.8211933875886603e-06, -6.0264917344858307e-07, -4.8211933875886425e-06, -4.8211933875886595e-06, -9.6423867751773426e-06, -2.4105966937943272e-06, -1.084768512207436e-05, -2.4105966937943263e-06, -6.0264917344858667e-07, -1.2052983468971674e-06, -7.8344392548314876e-06, -4.8211933875886425e-06, -9.6423867751773223e-06, -5.0622530569680676e-05, -4.8211933875886629e-06, -5.3033127263474666e-05, -4.8211933875886645e-06, -4.8211933875886662e-06, -9.6423867751773681e-06, -4.8211933875886801e-05, -9.6423867751773647e-06, -4.8814583049335013e-05, -6.0264917344858042e-07, -9.6423867751773613e-06, -9.6423867751773714e-06, -2.410596693794345e-06, -5.0622530569680676e-05, -4.8211933875886307e-05, -4.8211933875886523e-05, -4.8211933875886856e-05, -6.0264917344858053e-07, -2.4105966937943213e-06, -6.0264917344858243e-07, -6.0264917344858603e-07, -6.0264917344858699e-07, -4.8211933875886781e-06, -4.8211933875886764e-06, -4.8211933875886425e-06, -4.8211933875886425e-06, -6.0264917344858243e-07, -6.0264917344858286e-07, -6.0264917344858222e-07, 0.0019593329927160208, -6.0264917344856782e-06, -1.2052983468971707e-05, -9.6423867751773257e-06, -9.6423867751773359e-06, -4.8211933875886442e-06, -1.4463580162765989e-05, -1.8079475203457602e-06, -5.3033127263475046e-05, -9.6423867751773393e-06, -4.3390740488297168e-05, -6.0264917344858053e-07, -6.026491734485837e-07, -1.5066229336214523e-05, -9.6423867751773426e-06, -4.8211933875886645e-06, -4.2185442141400035e-06, -2.4105966937943208e-06, -1.2052983468971691e-06, -4.3390740488297168e-05, -1.2052983468971691e-06, -2.4105966937943263e-06, -2.4105966937943263e-06, -4.3390740488297168e-05, -4.8211933875886561e-06, -6.0264917344858328e-07, -4.8211933875886425e-06, -6.0264917344858222e-07, -4.8211933875886425e-06, -6.0264917344857595e-06, -1.8079475203457621e-06, -4.8211933875886425e-06, -9.0397376017287079e-06, -6.0264917344858095e-07, -4.8211933875886561e-06, -1.2052983468971742e-06, -1.2052983468971744e-06, -1.2052983468971725e-06, -6.0264917344858413e-07, -3.6158950406915018e-06, -1.8079475203457566e-06, -4.8211933875886815e-06, -4.8211933875886781e-06, -9.6423867751773528e-06, -1.5668878509663016e-05, -1.3860930989317076e-05, -6.0264917344858095e-07, -9.6423867751773833e-06, -4.8211933875886849e-06, -3.6158950406915069e-06, -1.2052983468971642e-06, -6.0264917344858286e-07, -6.0264917344858603e-07, -4.8211933875886856e-05, -4.8211933875886523e-05, -9.7629166098671069e-05, -4.8211933875886523e-05, -4.8211933875886801e-05, -2.410596693794328e-06, -1.205298346897167e-06, -4.8211933875886425e-06, -5.423842561037201e-06, -2.410596693794328e-06, 0.00023889013235501737, -6.0264917344858455e-07, -6.0264917344858074e-07, -9.6423867751773359e-06, -4.8211933875886544e-06, -4.8211933875886595e-06, -6.026491734485837e-07, -6.0264917344858444e-07, -2.410596693794339e-06, -2.4105966937943382e-06, -9.6423867751773799e-06, -4.8211933875886832e-06, -6.0264917344858201e-07, -9.7629166098670079e-05, -4.8211933875886798e-06, -4.8211933875886798e-06, -6.0264917344858434e-07, -2.4105966937943382e-06, -2.410596693794339e-06, -1.2052983468971615e-06, -1.2052983468971615e-06, -1.8079475203457418e-06, -6.0264917344858455e-07, -1.2052983468971615e-06, -1.2052983468971615e-06, -6.0264917344858286e-07, -6.0264917344858053e-07, -2.410596693794323e-06, -7.2317900813829909e-06, -4.8211933875886561e-06, -6.0264917344858243e-07, -6.0264917344858074e-07, -1.0847685122074358e-05, -6.0264917344858349e-07, -2.410596693794345e-06, -1.2052983468971729e-06, -9.6423867751773088e-06, -9.6423867751773054e-06, -3.0132458672429272e-06, -2.410596693794334e-06, -1.2052983468971771e-06, -3.6158950406915009e-06, -5.1225179743129226e-05, -6.0264917344858349e-07, -2.4105966937943344e-06, -2.4105966937943335e-06, -9.642386775177302e-06, -9.6423867751773121e-06, -2.4105966937943221e-06, -2.4105966937943306e-06, -2.4105966937943306e-06, -6.0264917344858243e-07, -2.7721861978634389e-05, -6.0264917344858231e-06, -6.0264917344858053e-07, -4.8211933875886798e-06, -4.8211933875886942e-06, -4.8211933875886798e-06, -9.6423867751773121e-06, -4.82119338758864e-06, -9.642386775177302e-06, -4.8211933875886942e-06, -4.8211933875886942e-06, -0.00018501329624871508, -4.8211933875886866e-06, -0.00012052983468971586, -4.8211933875886425e-06, -1.2052983468971693e-06, -3.6158950406914832e-05, -7.2317900813829689e-06, -3.0132458672429234e-06, -3.6158950406914913e-05, -6.0264917344858137e-07, -4.8211933875886713e-06, -4.8211933875886722e-06, -9.7629166098670079e-05, -4.8211933875886527e-06, -4.8211933875886535e-06, -0.00013800666071972503, -1.8079475203457615e-06, -0.00012052983468971583, -4.8211933875886722e-06, -4.8211933875886713e-06, -6.0264917344858254e-07, -4.821193387588673e-06, -4.8211933875886705e-06, -6.0264917344858201e-07, -9.6423867751773054e-06, -9.6423867751773088e-06, -1.2052983468971725e-06, -2.410596693794339e-06, -2.4105966937943382e-06, -4.8211933875886849e-06, -4.8211933875886832e-06, -9.7629166098671069e-05, -4.8211933875886781e-06, -4.8211933875886815e-06, -1.6271527683111498e-05, -5.7854320651063717e-05, -4.8211933875886705e-06, -4.2788091314848787e-05, -7.2317900813830341e-06, -7.2317900813830324e-06, -4.8211933875886459e-06, -4.8211933875886967e-06, 0.0024491662408950335, -4.8211933875886933e-06, -6.026491734485862e-06, -1.2655632642420181e-05, -4.8211933875886425e-06, -3.013245867242845e-06, -1.3860930989317249e-05, -4.8211933875886518e-06, -7.2317900813829672e-06, -1.8079475203457443e-06, -3.0132458672429234e-06, -1.2052983468971731e-06, -6.0264917344858053e-07, -6.0264917344858328e-07, -4.8211933875886933e-06, -7.231790081383029e-06, -3.615895040691506e-06, -2.4105966937943289e-06, -4.8211933875886866e-06, -4.8211933875886933e-06, -4.8211933875886942e-06, -9.6423867751772935e-06, -4.821193387588651e-06, -2.4105966937943335e-06, -9.642386775177285e-06, -4.8211933875886493e-06, -2.4105966937943344e-06, -4.8211933875886942e-06, -6.0264917344858137e-07, -4.8211933875886425e-06, -4.8211933875886425e-06, -9.6423867751773697e-06, -1.4463580162766044e-05, -4.8211933875886425e-06, -9.6423867751773664e-06, -9.6423867751773748e-06, -4.821193387588651e-06, -4.8211933875886493e-06, -4.8211933875886518e-06, -4.8211933875886544e-06, -5.4238425610371511e-06, -2.0490071897251687e-05, -1.2052983468971807e-06, -4.8211933875886493e-06, -4.8211933875886493e-06, -5.4238425610371926e-06, -1.5668878509663009e-05, -4.8211933875886866e-06, -4.8211933875886425e-06, -4.821193387588695e-06, -2.410596693794334e-06, -2.410596693794334e-06, -6.0264917344858497e-07, -6.0264917344858699e-07, -6.0264917344858053e-07, -1.2052983468971683e-06, -1.0245035948625835e-05, -1.807947520345747e-05, -7.2317900813829706e-06, -3.6158950406915018e-06, -6.0264917344858328e-07, -2.4105966937943323e-06, -9.6423867751773393e-06, -1.4463580162766017e-05, -4.821193387588651e-06, -2.4105966937943327e-06, -9.6423867751773325e-06, -9.6423867751773359e-06, -2.4105966937943327e-06, -7.2317900813829807e-06, -4.8211933875886527e-06, -6.0264917344858635e-07, -1.2052983468971729e-06, -2.4105966937943323e-06, -2.4105966937943221e-06, -5.4238425610371705e-06, -3.0132458672429285e-06, -4.8211933875886798e-06, -9.6423867751773562e-06, -4.339074048829729e-05, -2.410596693794345e-06, -6.0264917344858264e-07, -3.6158950406914832e-05, -4.8211933875886603e-06, -2.8927160325532143e-05, -2.892716032553213e-05, -3.0132458672429053e-05, -2.8927160325532143e-05, -2.410596693794345e-06, -2.4105966937943458e-06, -4.8211933875886637e-06, -4.8211933875886662e-06, -2.4105966937943314e-06, -2.4105966937943314e-06, -4.82119338758869e-06, -6.0264917344858614e-07, -4.82119338758869e-06, -6.0264917344858307e-07, -6.0264917344858423e-07, -4.2185442141400386e-05, -2.4105966937943314e-06, -2.4105966937943314e-06, -3.6761599580363436e-05, -1.2052983468971708e-06, -4.3390740488297168e-05, -4.3390740488297168e-05, -4.8211933875886612e-06, -6.0264917344858212e-07, -4.8211933875886586e-06, -4.3390740488297168e-05, -4.3390740488297608e-05, -4.8211933875886595e-06, -4.8211933875886629e-06, -1.2052983468971615e-06, -1.2052983468971611e-06, -9.6423867751772952e-06, -4.8211933875886629e-06, -4.8211933875886612e-06, -1.8079475203457418e-06, -9.6423867751772952e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6905987090532407e-05, -9.6423867751772749e-05, -2.4105966937943272e-06, -4.8211933875886112e-07, -1.4463580162766115e-06, -4.8211933875886544e-06, -3.8569547100709574e-05, -9.6423867751772245e-07, -4.435497916581513e-05, -4.8211933875886122e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100709574e-05, -3.8569547100709574e-05, -3.8569547100708881e-06, -0.00010944108989826053, -9.6423867751772202e-07, -9.6423867751774023e-05, -7.7139094201417762e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708881e-06, -2.4105966937943272e-06, -1.4463580162766119e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886112e-07, -7.2317900813830629e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488296743e-06, -3.8569547100708898e-06, -7.2317900813830392e-06, -9.6423867751772224e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886739e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886112e-07, -3.8569547100708898e-06, -8.196028758900564e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -1.5427818840283549e-05, -1.2052983468971624e-05, -3.8569547100708898e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -1.928477355035444e-06, -3.8569547100708898e-06, -4.8211933875886756e-06, -5.3033127263474397e-06, -1.928477355035444e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772202e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -3.8569547100708898e-06, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, 0.001960297231393539, -3.8569547100708991e-06, -3.8569547100708898e-06, -3.8569547100709025e-06, -1.157086413021288e-05, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -8.6781480976593654e-06, -1.9284773550354449e-06, -4.8211933875886218e-07, -9.6423867751772245e-07, -6.2675514038651247e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.0498024455744685e-05, -3.8569547100708898e-06, -4.2426501810779538e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -3.8569547100709337e-05, -7.7139094201417779e-06, -3.9051666439468291e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417762e-06, -1.928477355035444e-06, -4.0498024455744685e-05, -3.8569547100709574e-05, -3.856954710070931e-05, -3.8569547100709404e-05, -4.8211933875886112e-07, -1.928477355035444e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708889e-06, -4.8211933875886916e-06, -9.6423867751772952e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -3.8569547100708889e-06, -1.1570864130212897e-05, -1.4463580162765687e-06, -4.242650181077989e-05, -7.7139094201417779e-06, -3.4712592390637597e-05, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971661e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.3748353713120223e-06, -1.928477355035444e-06, -9.6423867751772224e-07, -3.4712592390637597e-05, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.4712592390637584e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886713e-06, -1.4463580162766119e-06, -3.8569547100708898e-06, -7.2317900813830171e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.89271603255324e-06, -1.4463580162766297e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -1.2535102807730498e-05, -1.1088744791453777e-05, -4.8211933875886122e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -2.8927160325531794e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100709404e-05, -3.856954710070931e-05, -7.8103332878936811e-05, -3.856954710070931e-05, -3.8569547100709337e-05, -1.928477355035444e-06, -9.6423867751772245e-07, -3.8569547100708873e-06, -4.3390740488296658e-06, -1.928477355035444e-06, -5.3033127263474702e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.8103332878936649e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.4463580162766119e-06, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -1.928477355035444e-06, -5.7854320651064512e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -8.6781480976593451e-06, -4.8211933875886122e-07, -1.9284773550354428e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.4105966937943378e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -2.892716032553223e-06, -4.0980143794503334e-05, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -2.2177489582907467e-05, -4.8211933875886544e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708881e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -0.00014801063699897377, -3.8569547100708898e-06, -9.6423867751773345e-05, -3.8569547100708898e-06, -9.6423867751772224e-07, -2.8927160325531869e-05, -5.7854320651064495e-06, -2.410596693794334e-06, -2.8927160325532197e-05, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.8103332878936649e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00011040532857577855, -1.4463580162766111e-06, -9.6423867751773426e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936811e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.30172221464894e-05, -4.6283456520851535e-05, -3.8569547100708898e-06, -3.4230473051878745e-05, -5.7854320651062462e-06, -5.7854320651062462e-06, -3.8569547100708881e-06, -3.8569547100708991e-06, -4.8211933875886933e-06, 0.001960297231393539, -4.8211933875886832e-06, -1.0124506113936161e-05, -3.8569547100708898e-06, -2.4105966937943441e-06, -1.1088744791453727e-05, -3.8569547100708898e-06, -5.7854320651064495e-06, -1.4463580162766302e-06, -2.410596693794334e-06, -9.6423867751772202e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -3.8569547100708881e-06, -5.7854320651064461e-06, -2.8927160325532451e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -1.1570864130212892e-05, -3.8569547100708898e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488296946e-06, -1.6392057517801226e-05, -9.6423867751772224e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -4.3390740488296946e-06, -1.2535102807730505e-05, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -8.1960287589005149e-06, -1.4463580162765955e-05, -5.7854320651064495e-06, -2.89271603255324e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -7.7139094201417779e-06, -1.157086413021289e-05, -3.8569547100708881e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -5.7854320651064486e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.3390740488296878e-06, -2.4105966937943272e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.4712592390637665e-05, -1.928477355035444e-06, -4.8211933875886122e-07, -2.8927160325531842e-05, -3.8569547100708898e-06, -2.314172826042613e-05, -2.3141728260425784e-05, -2.4105966937943245e-05, -2.314172826042613e-05, -1.928477355035444e-06, -1.928477355035444e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.3748353713120123e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.9409279664290819e-05, -9.6423867751772224e-07, -3.4712592390637584e-05, -3.4712592390637597e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.4712592390637597e-05, -3.471259239063753e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.4463580162766119e-06, -7.7139094201417796e-06, -4.8211933875886832e-06, -4.8211933875886747e-06, -4.821193387588673e-06, -4.8211933875886849e-06, -2.4105966937943213e-06, -2.4105966937943213e-06, -4.8211933875886408e-06, -4.8211933875886408e-06, -6.0264917344858349e-07, -6.0264917344858317e-07, -0.00012113248386316485, -0.00012052983468971621, -3.0132458672429098e-06, -6.0264917344858349e-07, -1.8079475203457253e-06, -6.026491734485851e-06, -4.8211933875886225e-05, -1.2052983468971663e-06, -5.5443723957269097e-05, -6.0264917344857968e-07, -9.6423867751773545e-06, -9.6423867751773579e-06, -4.8211933875886425e-06, -4.8211933875886391e-06, -4.8211933875886239e-05, -4.8211933875886239e-05, -4.8211933875886815e-06, -0.00013680136237282804, -1.2052983468971712e-06, -0.00012052983468971589, -9.6423867751773511e-06, -4.8211933875886747e-06, -4.8211933875886832e-06, -6.0264917344857936e-07, -6.026491734485837e-07, -4.8211933875886679e-06, -4.8211933875886645e-06, -1.2052983468971712e-06, -1.2052983468971714e-06, -6.0264917344857947e-07, -6.0264917344858201e-07, -4.8211933875886357e-06, -3.0132458672428984e-06, -1.8079475203457501e-06, -2.4105966937943204e-06, -2.4105966937943213e-06, -6.0264917344858349e-07, -9.0397376017289315e-06, -4.8211933875886569e-06, -4.8211933875886561e-06, -5.4238425610372053e-06, -4.8211933875886408e-06, -9.0397376017287841e-06, -1.2052983468971672e-06, -6.0264917344858497e-07, -4.8211933875886408e-06, -4.8211933875886391e-06, -6.026491734485837e-07, -6.0264917344858264e-07, -4.8211933875886552e-06, -4.8211933875886578e-06, -1.2052983468971676e-06, -6.0264917344858137e-07, -4.8211933875886476e-06, -9.6423867751773376e-06, -6.02649173448584e-06, -4.8211933875886629e-06, -9.6423867751773189e-06, -6.0264917344858392e-07, -4.8211933875886527e-06, -1.024503594862584e-05, -4.8211933875886654e-06, -4.8211933875886544e-06, -9.6423867751773426e-06, -1.9284773550354797e-05, -1.5066229336214513e-05, -4.8211933875886374e-06, -9.6423867751773426e-06, -9.642386775177346e-06, -2.4105966937943424e-06, -4.8211933875886535e-06, -6.0264917344858417e-06, -6.6291409079343307e-06, -2.4105966937943424e-06, -9.6423867751774036e-06, -4.8211933875886595e-06, -4.8211933875886645e-06, -4.8211933875886637e-06, -1.205298346897175e-06, -4.8211933875886781e-06, -4.8211933875886374e-06, -6.026491734485855e-07, -4.8211933875886391e-06, -1.2052983468971674e-06, -4.8211933875886781e-06, -4.8211933875886645e-06, -4.8211933875886629e-06, -6.0264917344858392e-07, -9.6423867751773494e-06, -9.642386775177346e-06, -6.0264917344858286e-07, -4.8211933875886603e-06, -4.8211933875886612e-06, -6.0264917344857926e-07, -4.8211933875886832e-06, -4.8211933875886849e-06, -4.8211933875886561e-06, -4.8211933875886849e-06, -1.4463580162765809e-05, -4.8211933875886798e-06, -4.8211933875886493e-06, -4.8211933875886527e-06, -6.026491734485818e-07, -4.8211933875886459e-06, -4.821193387588651e-06, -9.6423867751773189e-06, -2.4105966937943213e-06, -1.084768512207437e-05, -2.4105966937943204e-06, -6.0264917344858519e-07, -1.2052983468971649e-06, -7.8344392548314943e-06, -4.8211933875886629e-06, -9.6423867751773596e-06, -5.0622530569680724e-05, -4.8211933875886552e-06, -5.3033127263474673e-05, -4.8211933875886527e-06, -4.8211933875886561e-06, -9.642386775177346e-06, -4.821193387588672e-05, -9.6423867751773426e-06, -4.8814583049334952e-05, -6.0264917344857947e-07, -9.6423867751773393e-06, -9.6423867751773494e-06, -2.4105966937943399e-06, -5.0622530569680724e-05, -4.8211933875886225e-05, -4.8211933875886449e-05, -4.8211933875886774e-05, -6.026491734485837e-07, -2.4105966937943166e-06, -6.0264917344858116e-07, -6.0264917344858455e-07, -6.026491734485855e-07, -4.8211933875886662e-06, -4.8211933875886662e-06, -4.8211933875886645e-06, -4.8211933875886629e-06, -6.0264917344858116e-07, -6.0264917344858137e-07, -6.0264917344858095e-07, -4.821193387588673e-06, -6.0264917344858646e-06, -1.2052983468971687e-05, -9.6423867751773765e-06, -9.6423867751772579e-06, -4.8211933875886747e-06, -1.4463580162765884e-05, -1.8079475203457556e-06, -5.3033127263475012e-05, -9.6423867751772579e-06, -4.3390740488297215e-05, -6.0264917344858349e-07, -6.0264917344858222e-07, -1.506622933621452e-05, -9.6423867751773189e-06, -4.8211933875886569e-06, -4.2185442141400595e-06, -2.4105966937943166e-06, -1.2052983468971589e-06, -4.3390740488297222e-05, -1.2052983468971672e-06, -2.4105966937943213e-06, -2.4105966937943213e-06, -4.3390740488297229e-05, -4.8211933875886442e-06, -6.0264917344858201e-07, -4.8211933875886544e-06, -6.0264917344858095e-07, -4.8211933875886561e-06, -6.0264917344858459e-06, -1.8079475203457596e-06, -4.8211933875886544e-06, -9.039737601728735e-06, -6.0264917344857947e-07, -4.8211933875886442e-06, -1.2052983468971712e-06, -1.2052983468971714e-06, -1.2052983468971697e-06, -6.0264917344858286e-07, -3.6158950406914921e-06, -1.8079475203457539e-06, -4.821193387588673e-06, -4.8211933875886696e-06, -9.6423867751773325e-06, -1.5668878509663029e-05, -1.3860930989317108e-05, -6.0264917344857947e-07, -9.6423867751773596e-06, -4.821193387588673e-06, -3.6158950406914971e-06, -1.2052983468971615e-06, -6.0264917344858137e-07, -6.0264917344858455e-07, -4.8211933875886774e-05, -4.8211933875886449e-05, -9.7629166098670933e-05, -4.8211933875886442e-05, -4.821193387588672e-05, -2.4105966937943424e-06, -1.205298346897164e-06, -4.8211933875886662e-06, -5.423842561037207e-06, -2.4105966937943424e-06, 0.00023889013235501758, -6.0264917344858349e-07, -6.0264917344857968e-07, -9.6423867751773121e-06, -4.8211933875886442e-06, -4.8211933875886493e-06, -6.0264917344858243e-07, -6.0264917344858349e-07, -2.4105966937943331e-06, -2.4105966937943331e-06, -9.6423867751773596e-06, -4.8211933875886713e-06, -6.0264917344858053e-07, -9.7629166098669944e-05, -4.8211933875886713e-06, -4.8211933875886713e-06, -6.0264917344858286e-07, -2.4105966937943331e-06, -2.4105966937943331e-06, -1.2052983468971594e-06, -1.2052983468971589e-06, -1.8079475203457388e-06, -6.026491734485836e-07, -1.2052983468971589e-06, -1.2052983468971594e-06, -6.0264917344858137e-07, -6.026491734485837e-07, -2.4105966937943217e-06, -7.2317900813829773e-06, -4.8211933875886442e-06, -6.0264917344858095e-07, -6.0264917344857968e-07, -1.0847685122074361e-05, -6.0264917344858254e-07, -2.4105966937943395e-06, -1.2052983468971706e-06, -9.6423867751772579e-06, -9.6423867751772579e-06, -3.0132458672429255e-06, -2.4105966937943297e-06, -1.2052983468971746e-06, -3.6158950406915018e-06, -5.1225179743129219e-05, -6.0264917344858201e-07, -2.4105966937943306e-06, -2.4105966937943297e-06, -9.6423867751772579e-06, -9.6423867751772579e-06, -2.4105966937943297e-06, -2.4105966937943246e-06, -2.4105966937943246e-06, -6.0264917344858095e-07, -2.7721861978634548e-05, -6.0264917344857976e-06, -6.0264917344858392e-07, -4.8211933875886713e-06, -4.8211933875886815e-06, -4.8211933875886713e-06, -9.6423867751772579e-06, -4.8211933875886298e-06, -9.6423867751772579e-06, -4.8211933875886832e-06, -4.8211933875886832e-06, -0.00018501329624871462, -4.8211933875886747e-06, -0.00012052983468971581, -4.8211933875886459e-06, -1.2052983468971674e-06, -3.6158950406914954e-05, -7.2317900813829689e-06, -3.0132458672429179e-06, -3.6158950406915035e-05, -6.0264917344857989e-07, -4.8211933875886637e-06, -4.8211933875886645e-06, -9.7629166098669944e-05, -4.8211933875886442e-06, -4.8211933875886459e-06, -0.00013800666071972487, -1.807947520345753e-06, -0.00012052983468971581, -4.8211933875886612e-06, -4.8211933875886603e-06, -6.0264917344857926e-07, -4.8211933875886654e-06, -4.8211933875886629e-06, -6.0264917344858074e-07, -9.6423867751772579e-06, -9.6423867751772579e-06, -1.2052983468971697e-06, -2.4105966937943331e-06, -2.4105966937943331e-06, -4.821193387588673e-06, -4.821193387588673e-06, -9.7629166098670933e-05, -4.8211933875886696e-06, -4.821193387588673e-06, -1.6271527683111579e-05, -5.7854320651063629e-05, -4.8211933875886595e-06, -4.2788091314848835e-05, -7.2317900813830155e-06, -7.2317900813830155e-06, -4.8211933875886747e-06, -4.8211933875886849e-06, -6.026491734485862e-06, -4.8211933875886832e-06, 0.0024491662408950439, 0.00219701782672415, -4.8211933875886476e-06, -3.0132458672429285e-06, -1.3860930989317256e-05, -4.8211933875886442e-06, -7.2317900813829723e-06, -1.8079475203457539e-06, -3.0132458672429183e-06, -1.2052983468971702e-06, -6.026491734485837e-07, -6.0264917344858201e-07, -4.8211933875886832e-06, -7.2317900813830121e-06, -3.6158950406914963e-06, -2.410596693794323e-06, -4.8211933875886747e-06, -4.8211933875886815e-06, -4.8211933875886832e-06, -9.6423867751772766e-06, -4.8211933875886425e-06, -2.4105966937943297e-06, -9.6423867751772647e-06, -4.8211933875886374e-06, -2.4105966937943306e-06, -4.8211933875886815e-06, -6.0264917344857989e-07, -4.8211933875886391e-06, -4.8211933875886408e-06, -9.642386775177346e-06, -1.4463580162766004e-05, -4.8211933875886561e-06, -9.6423867751773511e-06, -9.6423867751773596e-06, -4.8211933875886408e-06, -4.8211933875886408e-06, -4.8211933875886442e-06, -4.8211933875886459e-06, -5.4238425610371604e-06, -2.0490071897251677e-05, -1.2052983468971784e-06, -4.8211933875886798e-06, -4.8211933875886391e-06, -5.4238425610371604e-06, -1.5668878509663016e-05, -4.8211933875886747e-06, -4.8211933875886544e-06, -4.8211933875886832e-06, -2.4105966937943297e-06, -2.4105966937943297e-06, -6.0264917344858349e-07, -6.026491734485855e-07, -6.0264917344858392e-07, -1.2052983468971657e-06, -1.0245035948625837e-05, -1.8079475203457545e-05, -7.2317900813829638e-06, -3.6158950406914921e-06, -6.026491734485818e-07, -2.410596693794328e-06, -9.6423867751772579e-06, -1.4463580162765853e-05, -4.8211933875886798e-06, -2.4105966937943289e-06, -9.6423867751772579e-06, -9.6423867751772579e-06, -2.4105966937943289e-06, -7.2317900813829604e-06, -4.8211933875886442e-06, -6.0264917344858497e-07, -1.2052983468971763e-06, -2.410596693794328e-06, -2.4105966937943297e-06, -5.4238425610371765e-06, -3.0132458672429242e-06, -4.8211933875886679e-06, -9.6423867751773376e-06, -4.3390740488297344e-05, -2.4105966937943399e-06, -6.0264917344858116e-07, -3.6158950406914954e-05, -4.8211933875886527e-06, -2.8927160325531869e-05, -2.8927160325531869e-05, -3.0132458672428952e-05, -2.8927160325531869e-05, -2.4105966937943399e-06, -2.4105966937943399e-06, -4.8211933875886527e-06, -4.8211933875886552e-06, -2.4105966937943263e-06, -2.4105966937943263e-06, -4.8211933875886781e-06, -6.0264917344858476e-07, -4.8211933875886781e-06, -6.0264917344858159e-07, -6.0264917344857926e-07, -4.2185442141400386e-05, -2.4105966937943263e-06, -2.4105966937943263e-06, -3.6761599580363619e-05, -1.2052983468971687e-06, -4.3390740488297229e-05, -4.3390740488297222e-05, -4.8211933875886527e-06, -6.0264917344858116e-07, -4.821193387588651e-06, -4.3390740488297215e-05, -4.3390740488297656e-05, -4.8211933875886493e-06, -4.821193387588651e-06, -1.2052983468971611e-06, -1.205298346897167e-06, -9.6423867751772715e-06, -4.821193387588651e-06, -4.8211933875886493e-06, -1.8079475203457342e-06, -9.6423867751772715e-06, -1.0124506113936161e-05, -1.0124506113936158e-05, -1.0124506113936158e-05, -1.0124506113936161e-05, -5.0622530569680737e-06, -5.0622530569680737e-06, -1.0124506113936154e-05, -1.0124506113936154e-05, -1.2655632642420205e-06, -1.2655632642420197e-06, -0.00025437821611264371, -0.00025311265284840153, -6.3278163212100947e-06, -1.2655632642420205e-06, -3.7966897927260765e-06, -1.2655632642420178e-05, -0.00010124506113936157, -2.5311265284840394e-06, -0.0001164318203102646, -1.265563264242018e-06, -2.0249012227872325e-05, -2.0249012227872329e-05, -1.0124506113936154e-05, -1.0124506113936154e-05, -0.00010124506113936154, -0.00010124506113936157, -1.0124506113936161e-05, -0.00028728286098293662, -2.5311265284840419e-06, -0.00025311265284840186, -2.0249012227872325e-05, -1.0124506113936158e-05, -1.0124506113936161e-05, -1.2655632642420189e-06, -1.2655632642420193e-06, -1.0124506113936154e-05, -1.0124506113936154e-05, -2.5311265284840419e-06, -2.5311265284840419e-06, -1.2655632642420176e-06, -1.2655632642420189e-06, -1.0124506113936151e-05, -6.3278163212100947e-06, -3.796689792726068e-06, -5.062253056968072e-06, -5.0622530569680737e-06, -1.2655632642420205e-06, -1.8983448963630478e-05, -1.0124506113936161e-05, -1.0124506113936161e-05, -1.1390069378178101e-05, -1.0124506113936147e-05, -1.8983448963630383e-05, -2.5311265284840411e-06, -1.2655632642420205e-06, -1.0124506113936147e-05, -1.0124506113936147e-05, -1.2655632642420197e-06, -1.2655632642420203e-06, -1.0124506113936161e-05, -1.0124506113936163e-05, -2.5311265284840411e-06, -1.265563264242018e-06, -1.0124506113936151e-05, -2.0249012227872329e-05, -1.2655632642420171e-05, -1.0124506113936154e-05, -2.0249012227872302e-05, -1.2655632642420197e-06, -1.0124506113936161e-05, -2.1514575492113922e-05, -1.0124506113936164e-05, -1.0124506113936147e-05, -2.0249012227872308e-05, -4.0498024455744712e-05, -3.1639081606050218e-05, -1.0124506113936154e-05, -2.0249012227872308e-05, -2.0249012227872315e-05, -5.0622530569680805e-06, -1.0124506113936154e-05, -1.2655632642420171e-05, -1.392119590666203e-05, -5.0622530569680805e-06, -2.0249012227872349e-05, -1.0124506113936158e-05, -1.0124506113936163e-05, -1.0124506113936163e-05, -2.5311265284840411e-06, -1.0124506113936158e-05, -1.0124506113936154e-05, -1.2655632642420212e-06, -1.0124506113936154e-05, -2.5311265284840394e-06, -1.0124506113936158e-05, -1.0124506113936154e-05, -1.0124506113936154e-05, -1.2655632642420193e-06, -2.0249012227872315e-05, -2.0249012227872315e-05, -1.2655632642420193e-06, -1.0124506113936158e-05, -1.0124506113936158e-05, -1.2655632642420189e-06, -1.0124506113936161e-05, -1.0124506113936161e-05, -1.0124506113936147e-05, -1.0124506113936161e-05, -3.0373518341808598e-05, -1.0124506113936161e-05, -1.0124506113936151e-05, -1.0124506113936161e-05, -1.2655632642420193e-06, -1.0124506113936151e-05, -1.0124506113936161e-05, -2.0249012227872295e-05, -5.0622530569680737e-06, -2.2780138756356081e-05, -5.062253056968072e-06, -1.2655632642420197e-06, -2.5311265284840369e-06, -1.645232243514618e-05, -1.0124506113936154e-05, -2.0249012227872342e-05, -0.00010630731419632834, -1.0124506113936161e-05, -0.00011136956725329785, -1.0124506113936147e-05, -1.0124506113936147e-05, -2.0249012227872315e-05, -0.00010124506113936146, -2.0249012227872308e-05, -0.00010251062440360314, -1.2655632642420189e-06, -2.0249012227872308e-05, -2.0249012227872315e-05, -5.0622530569680788e-06, -0.00010630731419632834, -0.00010124506113936157, -0.00010124506113936142, -0.00010124506113936137, -1.2655632642420197e-06, -5.0622530569680915e-06, -1.265563264242018e-06, -1.2655632642420197e-06, -1.265563264242021e-06, -1.0124506113936154e-05, -1.0124506113936154e-05, -1.0124506113936154e-05, -1.0124506113936154e-05, -1.265563264242018e-06, -1.265563264242018e-06, -1.2655632642420189e-06, -1.0124506113936158e-05, -1.2655632642420193e-05, -2.5311265284840321e-05, -2.0249012227872322e-05, -2.0249012227872288e-05, -1.0124506113936161e-05, -3.037351834180849e-05, -3.796689792726068e-06, -0.00011136956725329724, -2.0249012227872288e-05, -9.1120555025425246e-05, -1.2655632642420193e-06, -1.2655632642420184e-06, -3.1639081606050225e-05, -2.0249012227872295e-05, -1.0124506113936161e-05, -8.8589428496941442e-06, -5.0622530569680856e-06, -2.5311265284840377e-06, -9.1120555025425246e-05, -2.5311265284840411e-06, -5.0622530569680737e-06, -5.0622530569680737e-06, -9.1120555025425218e-05, -1.0124506113936147e-05, -1.2655632642420189e-06, -1.0124506113936154e-05, -1.2655632642420189e-06, -1.0124506113936154e-05, -1.2655632642420189e-05, -3.7966897927260722e-06, -1.0124506113936154e-05, -1.8983448963630288e-05, -1.2655632642420176e-06, -1.0124506113936147e-05, -2.5311265284840419e-06, -2.5311265284840419e-06, -2.5311265284840402e-06, -1.2655632642420193e-06, -7.5933795854521292e-06, -3.7966897927260663e-06, -1.0124506113936164e-05, -1.0124506113936164e-05, -2.0249012227872302e-05, -3.2904644870292401e-05, -2.9107955077566592e-05, -1.2655632642420176e-06, -2.0249012227872322e-05, -1.0124506113936158e-05, -7.5933795854521292e-06, -2.5311265284840386e-06, -1.265563264242018e-06, -1.2655632642420197e-06, -0.00010124506113936137, -0.00010124506113936142, -0.00020502124880720604, -0.00010124506113936142, -0.00010124506113936146, -5.0622530569680805e-06, -2.5311265284840377e-06, -1.0124506113936178e-05, -1.1390069378178105e-05, -5.0622530569680805e-06, -1.3921195906662177e-05, -1.2655632642420205e-06, -1.265563264242018e-06, -2.0249012227872315e-05, -1.0124506113936151e-05, -1.0124506113936151e-05, -1.2655632642420184e-06, -1.2655632642420205e-06, -5.0622530569680771e-06, -5.0622530569680771e-06, -2.0249012227872322e-05, -1.0124506113936158e-05, -1.2655632642420184e-06, -0.00020502124880720577, -1.0124506113936164e-05, -1.0124506113936164e-05, -1.2655632642420193e-06, -5.0622530569680771e-06, -5.0622530569680771e-06, -2.5311265284840377e-06, -2.5311265284840377e-06, -3.7966897927260671e-06, -1.2655632642420205e-06, -2.5311265284840377e-06, -2.5311265284840377e-06, -1.2655632642420193e-06, -1.2655632642420197e-06, -5.0622530569680856e-06, 0.00023033251409204942, -1.0124506113936151e-05, -1.265563264242018e-06, -1.265563264242018e-06, -2.2780138756356291e-05, -1.2655632642420201e-06, -5.0622530569680983e-06, -2.5311265284840428e-06, -2.0249012227872288e-05, -2.0249012227872288e-05, -6.3278163212100947e-06, -5.0622530569680805e-06, -2.5311265284840436e-06, -7.5933795854521258e-06, -0.00010757287746057267, -1.2655632642420189e-06, -5.0622530569680805e-06, -5.0622530569680805e-06, -2.0249012227872288e-05, -2.0249012227872288e-05, -5.0622530569680771e-06, -5.0622530569680754e-06, -5.0622530569680771e-06, -1.265563264242018e-06, -5.8215910155132512e-05, -1.2655632642420172e-05, -1.2655632642420197e-06, -1.0124506113936164e-05, -1.0124506113936169e-05, -1.0124506113936164e-05, -2.0249012227872288e-05, -1.0124506113936171e-05, -2.0249012227872288e-05, -1.0124506113936169e-05, -1.0124506113936169e-05, -0.00038852792212229655, -1.0124506113936158e-05, -0.00025311265284840245, -1.0124506113936151e-05, -2.5311265284840411e-06, -7.5933795854520841e-05, -1.5186759170904265e-05, -6.3278163212100854e-06, -7.5933795854521885e-05, -1.265563264242018e-06, -1.0124506113936163e-05, -1.0124506113936163e-05, -0.00020502124880720577, -1.0124506113936158e-05, -1.0124506113936158e-05, -0.00028981398751142022, -3.7966897927260765e-06, -0.00025311265284840267, -1.0124506113936158e-05, -1.0124506113936158e-05, -1.2655632642420189e-06, -1.0124506113936164e-05, -1.0124506113936163e-05, -1.265563264242018e-06, -2.0249012227872288e-05, -2.0249012227872288e-05, -2.5311265284840402e-06, -5.0622530569680771e-06, -5.0622530569680771e-06, -1.0124506113936158e-05, -1.0124506113936158e-05, -0.00020502124880720604, -1.0124506113936164e-05, -1.0124506113936164e-05, -3.4170208134534415e-05, -0.00012149407336723388, -1.0124506113936158e-05, -8.9854991761183049e-05, -1.5186759170904292e-05, -1.5186759170904292e-05, -1.0124506113936161e-05, -1.0124506113936161e-05, -1.2655632642420181e-05, -1.0124506113936161e-05, 0.00219701782672415, 0.0051293279099728578, -1.0124506113936151e-05, -6.3278163212100871e-06, -2.9107955077566212e-05, -1.0124506113936158e-05, -1.5186759170904265e-05, -3.796689792726068e-06, -6.3278163212100854e-06, -2.5311265284840411e-06, -1.2655632642420197e-06, -1.2655632642420189e-06, -1.0124506113936161e-05, -1.5186759170904272e-05, -7.5933795854521292e-06, -5.062253056968072e-06, -1.0124506113936158e-05, -1.0124506113936161e-05, -1.0124506113936169e-05, -2.0249012227872346e-05, -1.0124506113936154e-05, -5.0622530569680805e-06, -2.0249012227872298e-05, -1.0124506113936144e-05, -5.0622530569680805e-06, -1.0124506113936169e-05, -1.265563264242018e-06, -1.0124506113936147e-05, -1.0124506113936147e-05, -2.0249012227872315e-05, -3.0373518341808571e-05, -1.0124506113936154e-05, -2.0249012227872325e-05, -2.0249012227872329e-05, -1.0124506113936154e-05, -1.0124506113936154e-05, -1.0124506113936158e-05, -1.0124506113936158e-05, -1.1390069378177959e-05, -4.3029150984227993e-05, -2.5311265284840453e-06, -1.0124506113936161e-05, -1.0124506113936144e-05, -1.1390069378177966e-05, -3.2904644870292211e-05, -1.0124506113936158e-05, -1.0124506113936154e-05, -1.0124506113936161e-05, -5.0622530569680805e-06, -5.0622530569680805e-06, -1.2655632642420193e-06, 0.00024425370999870934, -1.2655632642420197e-06, -2.5311265284840386e-06, -2.1514575492113919e-05, -3.7966897927260034e-05, -1.5186759170904252e-05, -7.5933795854521292e-06, -1.2655632642420189e-06, -5.0622530569680805e-06, -2.0249012227872288e-05, -3.0373518341808537e-05, -1.0124506113936161e-05, -5.0622530569680805e-06, -2.0249012227872288e-05, -2.0249012227872288e-05, -5.0622530569680805e-06, -1.5186759170904272e-05, -1.0124506113936158e-05, -1.2655632642420201e-06, -2.5311265284840419e-06, -5.0622530569680805e-06, -5.0622530569680771e-06, -1.1390069378178002e-05, -6.3278163212100837e-06, -1.0124506113936154e-05, -2.0249012227872329e-05, -9.1120555025424866e-05, -5.0622530569680788e-06, -1.265563264242018e-06, -7.5933795854520841e-05, -1.0124506113936161e-05, -6.0747036683617088e-05, -6.0747036683616952e-05, -6.3278163212100654e-05, -6.0747036683617088e-05, -5.0622530569680788e-06, -5.0622530569680788e-06, -1.0124506113936154e-05, -1.0124506113936154e-05, -5.0622530569680771e-06, -5.0622530569680771e-06, -1.0124506113936158e-05, -1.2655632642420201e-06, -1.0124506113936158e-05, -1.2655632642420193e-06, -1.2655632642420189e-06, 0.0023666033041325686, -5.0622530569680771e-06, -5.0622530569680771e-06, -7.7199359118763675e-05, -2.5311265284840411e-06, -9.1120555025425218e-05, -9.1120555025425246e-05, -1.0124506113936161e-05, -1.2655632642420197e-06, -1.0124506113936158e-05, -9.1120555025425246e-05, -9.1120555025425218e-05, -1.0124506113936151e-05, -1.0124506113936151e-05, -2.5311265284840369e-06, -2.5311265284840386e-06, -2.0249012227872281e-05, -1.0124506113936151e-05, -1.0124506113936151e-05, -3.7966897927260697e-06, -2.0249012227872281e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6905987090531703e-05, -9.6423867751771976e-05, -2.4105966937943094e-06, -4.8211933875886133e-07, -1.446358016276592e-06, -4.8211933875886493e-06, -3.8569547100709303e-05, -9.6423867751772266e-07, -4.4354979165815543e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100709303e-05, -3.8569547100709303e-05, -3.8569547100708898e-06, -0.0001094410898982614, -9.6423867751772245e-07, -9.6423867751773264e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708889e-06, -2.4105966937943094e-06, -1.4463580162765931e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.231790081383007e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297547e-06, -3.8569547100708915e-06, -7.2317900813829807e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886391e-06, -3.8569547100708906e-06, 0.0019564402766834681, -4.8211933875886133e-07, -3.8569547100708906e-06, -8.196028758900625e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.2052983468971524e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.8211933875886408e-06, -5.3033127263474693e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212752e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594891e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652509e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.049802445574463e-05, -3.8569547100708906e-06, -4.2426501810779728e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709066e-05, -7.7139094201417796e-06, -3.9051666439468074e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.049802445574463e-05, -3.8569547100709303e-05, -3.8569547100709032e-05, -3.8569547100709133e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886391e-06, -9.6423867751772884e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -1.1570864130212746e-05, -1.4463580162766141e-06, -4.2426501810780066e-05, -7.7139094201417813e-06, -3.4712592390638092e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971565e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120638e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390638078e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390638078e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886188e-06, -1.4463580162765931e-06, -3.8569547100708915e-06, -7.2317900813829587e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325532023e-06, -1.4463580162766111e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730468e-05, -1.1088744791453887e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532082e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709133e-05, -3.8569547100709032e-05, -7.8103332878936391e-05, -3.8569547100709032e-05, -3.8569547100709066e-05, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297268e-06, -1.9284773550354449e-06, -5.3033127263474888e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936215e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162765931e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -5.7854320651063741e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976595061e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943204e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -2.8927160325531853e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.2177489582907663e-05, -4.8211933875886188e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897179, -3.8569547100708906e-06, -9.6423867751772573e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -2.8927160325531659e-05, -5.7854320651063368e-06, -2.410596693794317e-06, -2.8927160325531977e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936215e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577944, -1.4463580162765939e-06, -9.6423867751772654e-05, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936391e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489329e-05, -4.6283456520850979e-05, -3.8569547100708915e-06, -3.4230473051879009e-05, -5.785432065106369e-06, -5.785432065106369e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886425e-06, -3.8569547100708898e-06, -4.8211933875886476e-06, -1.0124506113936151e-05, 0.0019602972313935386, -2.4105966937943179e-06, -1.1088744791453835e-05, -3.8569547100708906e-06, -5.78543206510633e-06, -1.4463580162765906e-06, -2.410596693794317e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063707e-06, -2.8927160325532074e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.1570864130212755e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297564e-06, -1.6392057517801321e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488297886e-06, -1.2535102807730478e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -8.1960287589005759e-06, -1.4463580162765829e-05, -5.7854320651063453e-06, -2.8927160325532023e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417813e-06, -1.1570864130212757e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651063809e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.3390740488297496e-06, -2.4105966937943238e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.4712592390638038e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531652e-05, -3.8569547100708906e-06, -2.3141728260425832e-05, -2.3141728260425483e-05, -2.4105966937943045e-05, -2.3141728260425832e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.3748353713120449e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.9409279664290623e-05, -9.6423867751772245e-07, -3.4712592390638078e-05, -3.4712592390638078e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390638092e-05, -3.4712592390638024e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765918e-06, -7.713909420141783e-06, -2.4105966937943441e-06, -2.4105966937943407e-06, -2.410596693794339e-06, -2.410596693794345e-06, -1.2052983468971619e-06, -1.2052983468971619e-06, -2.4105966937943221e-06, -2.4105966937943221e-06, -3.0132458672429185e-07, -3.013245867242919e-07, -6.056624193158245e-05, -6.026491734485808e-05, -1.5066229336214556e-06, -3.0132458672429185e-07, -9.0397376017286327e-07, -3.0132458672429272e-06, -2.4105966937943136e-05, -6.0264917344858381e-07, -2.7721861978634548e-05, -3.0132458672428995e-07, -4.8211933875886789e-06, -4.8211933875886806e-06, -2.410596693794323e-06, -2.4105966937943213e-06, -2.4105966937943143e-05, -2.4105966937943143e-05, -2.4105966937943433e-06, -6.8400681186413031e-05, -6.0264917344858624e-07, -6.0264917344857917e-05, -4.8211933875886772e-06, -2.4105966937943399e-06, -2.4105966937943441e-06, -3.0132458672428979e-07, -3.0132458672429217e-07, -2.4105966937943365e-06, -2.4105966937943357e-06, -6.0264917344858624e-07, -6.0264917344858646e-07, -3.0132458672429005e-07, -3.0132458672429132e-07, -2.4105966937943208e-06, -1.506622933621442e-06, -9.0397376017287545e-07, -1.2052983468971619e-06, -1.2052983468971619e-06, -3.0132458672429185e-07, -4.519868800864492e-06, -2.4105966937943293e-06, -2.4105966937943289e-06, -2.7119212805186039e-06, -2.4105966937943179e-06, -4.5198688008644649e-06, -6.0264917344858381e-07, -3.0132458672429291e-07, -2.4105966937943179e-06, -2.4105966937943179e-06, -3.0132458672429005e-07, -3.0132458672429143e-07, -2.4105966937943285e-06, -2.4105966937943297e-06, -6.0264917344858836e-07, -3.0132458672429111e-07, -2.4105966937943179e-06, -4.821193387588673e-06, -3.0132458672429225e-06, -2.4105966937943179e-06, -4.8211933875886307e-06, -3.0132458672429005e-07, -2.4105966937943276e-06, -5.1225179743129201e-06, -2.4105966937943335e-06, -2.4105966937943306e-06, -4.8211933875886764e-06, -9.6423867751774104e-06, -7.5331146681072532e-06, -2.41059669379432e-06, -4.8211933875886764e-06, -4.8211933875886781e-06, -1.205298346897164e-06, -2.4105966937943293e-06, -3.0132458672429196e-06, -3.3145704539672505e-06, -1.205298346897164e-06, -4.8211933875886739e-06, -2.4105966937943323e-06, -2.4105966937943331e-06, -2.4105966937943327e-06, -6.0264917344858392e-07, -2.4105966937943416e-06, -2.41059669379432e-06, -3.0132458672429286e-07, -2.4105966937943204e-06, -6.026491734485801e-07, -2.4105966937943424e-06, -2.4105966937943179e-06, -2.4105966937943179e-06, -3.0132458672429238e-07, -4.8211933875886798e-06, -4.8211933875886798e-06, -3.0132458672429175e-07, -2.4105966937943327e-06, -2.4105966937943331e-06, -3.0132458672429175e-07, -2.4105966937943441e-06, -2.4105966937943458e-06, -2.4105966937943306e-06, -2.410596693794345e-06, -7.2317900813829333e-06, -2.4105966937943246e-06, -2.4105966937943179e-06, -2.4105966937943272e-06, -3.0132458672429122e-07, -2.4105966937943179e-06, -2.4105966937943268e-06, -4.8211933875886645e-06, -1.2052983468971619e-06, -5.4238425610371866e-06, -1.2052983468971619e-06, -3.0132458672429291e-07, -6.0264917344858307e-07, -3.9172196274157472e-06, -2.4105966937943179e-06, -4.8211933875886561e-06, -2.5311265284840328e-05, -2.4105966937943285e-06, -2.651656363173735e-05, -2.4105966937943289e-06, -2.4105966937943306e-06, -4.8211933875886781e-06, -2.4105966937943384e-05, -4.8211933875886764e-06, -2.4407291524667486e-05, -3.0132458672428984e-07, -4.8211933875886747e-06, -4.8211933875886798e-06, -1.2052983468971712e-06, -2.5311265284840328e-05, -2.4105966937943136e-05, -2.4105966937943245e-05, -2.4105966937943411e-05, -3.0132458672428995e-07, -1.2052983468971594e-06, -3.013245867242909e-07, -3.0132458672429259e-07, -3.0132458672429312e-07, -2.4105966937943357e-06, -2.4105966937943357e-06, -2.4105966937943179e-06, -2.4105966937943179e-06, -3.013245867242909e-07, -3.0132458672429111e-07, -3.0132458672429079e-07, -2.4105966937943221e-06, -3.0132458672428429e-06, -6.0264917344858493e-06, -4.8211933875886612e-06, -4.8211933875886612e-06, -2.4105966937943221e-06, -7.2317900813829875e-06, -9.0397376017287926e-07, -2.6516563631737499e-05, -4.8211933875886629e-06, -2.1695370244148611e-05, -3.0132458672428995e-07, -3.0132458672429153e-07, -7.5331146681072566e-06, -4.8211933875886645e-06, -2.4105966937943293e-06, -2.1092721070699984e-06, -1.2052983468971589e-06, -6.026491734485837e-07, -2.1695370244148611e-05, -6.0264917344858381e-07, -1.2052983468971619e-06, -1.2052983468971619e-06, -2.1695370244148611e-05, -2.4105966937943246e-06, -3.0132458672429132e-07, -2.4105966937943179e-06, -3.0132458672429079e-07, -2.4105966937943179e-06, -3.0132458672428709e-06, -9.0397376017288043e-07, -2.4105966937943179e-06, -4.5198688008643904e-06, -3.0132458672429005e-07, -2.4105966937943255e-06, -6.0264917344858624e-07, -6.0264917344858646e-07, -6.026491734485855e-07, -3.0132458672429175e-07, -1.8079475203457486e-06, -9.0397376017287746e-07, -2.4105966937943374e-06, -2.4105966937943365e-06, -4.8211933875886713e-06, -7.8344392548315147e-06, -6.9304654946585507e-06, -3.0132458672429005e-07, -4.8211933875886849e-06, -2.410596693794339e-06, -1.8079475203457513e-06, -6.0264917344858137e-07, -3.0132458672429111e-07, -3.0132458672429259e-07, -2.4105966937943411e-05, -2.4105966937943245e-05, -4.8814583049335487e-05, -2.4105966937943245e-05, -2.4105966937943384e-05, -1.205298346897164e-06, -6.0264917344858264e-07, 0.0012251857696209611, -2.7119212805186031e-06, -1.205298346897164e-06, -3.3145704539671836e-06, -3.0132458672429196e-07, -3.0132458672428995e-07, -4.8211933875886612e-06, -2.4105966937943246e-06, -2.4105966937943272e-06, -3.0132458672429153e-07, -3.0132458672429185e-07, -1.2052983468971678e-06, -1.2052983468971678e-06, -4.8211933875886849e-06, -2.410596693794339e-06, -3.0132458672429058e-07, -4.8814583049334992e-05, -2.4105966937943365e-06, -2.4105966937943374e-06, -3.0132458672429175e-07, -1.2052983468971678e-06, -1.2052983468971678e-06, -6.026491734485801e-07, -6.0264917344857989e-07, -9.0397376017286973e-07, -3.013245867242919e-07, -6.0264917344857989e-07, -6.026491734485801e-07, -3.01324586724291e-07, -3.0132458672429005e-07, -1.2052983468971602e-06, -3.6158950406914921e-06, -2.4105966937943246e-06, -3.013245867242909e-07, -3.0132458672428995e-07, -5.4238425610371824e-06, -3.0132458672429138e-07, -1.2052983468971712e-06, -6.0264917344858582e-07, -4.8211933875886476e-06, -4.8211933875886459e-06, -1.5066229336214625e-06, -1.2052983468971655e-06, -6.0264917344858794e-07, -1.8079475203457486e-06, -2.561258987156461e-05, -3.0132458672429132e-07, -1.2052983468971657e-06, -1.2052983468971653e-06, -4.8211933875886442e-06, -4.8211933875886493e-06, -1.2052983468971594e-06, -1.2052983468971636e-06, -1.2052983468971636e-06, -3.013245867242909e-07, -1.3860930989317491e-05, -3.0132458672428582e-06, -3.0132458672429016e-07, -2.4105966937943374e-06, -2.4105966937943441e-06, -2.4105966937943365e-06, -4.8211933875886493e-06, -2.4105966937943166e-06, -4.8211933875886442e-06, -2.4105966937943441e-06, -2.4105966937943441e-06, -9.2506648124357377e-05, -2.4105966937943399e-06, -6.026491734485789e-05, -2.4105966937943179e-06, -6.0264917344858392e-07, -1.8079475203457578e-05, -3.6158950406914802e-06, -1.5066229336214606e-06, -1.8079475203457619e-05, -3.0132458672429026e-07, -2.4105966937943327e-06, -2.4105966937943331e-06, -4.8814583049334992e-05, -2.4105966937943234e-06, -2.4105966937943238e-06, -6.9003330359861391e-05, -9.0397376017288011e-07, -6.026491734485789e-05, -2.4105966937943331e-06, -2.4105966937943327e-06, -3.013245867242909e-07, -2.4105966937943335e-06, -2.4105966937943323e-06, -3.0132458672429069e-07, -4.8211933875886459e-06, -4.8211933875886476e-06, -6.026491734485855e-07, -1.2052983468971678e-06, -1.2052983468971678e-06, -2.410596693794339e-06, -2.410596693794339e-06, -4.8814583049335487e-05, -2.4105966937943365e-06, -2.4105966937943374e-06, -8.1357638415557558e-06, -2.8927160325531835e-05, -2.4105966937943323e-06, -2.139404565742441e-05, -3.6158950406915128e-06, -3.6158950406915128e-06, -2.410596693794323e-06, -2.4105966937943458e-06, -3.013245867242845e-06, -2.4105966937943441e-06, -3.0132458672429285e-06, -6.3278163212100871e-06, -2.4105966937943179e-06, 0.0012260897433811393, -6.9304654946586337e-06, -2.410596693794323e-06, -3.6158950406914802e-06, -9.0397376017287174e-07, -1.5066229336214606e-06, -6.0264917344858582e-07, -3.0132458672428995e-07, -3.0132458672429132e-07, -2.4105966937943441e-06, -3.6158950406915111e-06, -1.8079475203457513e-06, -1.2052983468971627e-06, -2.4105966937943399e-06, -2.4105966937943433e-06, -2.4105966937943441e-06, -4.8211933875886417e-06, -2.410596693794323e-06, -1.2052983468971653e-06, -4.8211933875886374e-06, -2.4105966937943221e-06, -1.2052983468971657e-06, -2.4105966937943441e-06, -3.0132458672429026e-07, -2.4105966937943179e-06, -2.4105966937943179e-06, -4.8211933875886798e-06, -7.2317900813830138e-06, -2.4105966937943179e-06, -4.8211933875886772e-06, -4.8211933875886815e-06, -2.4105966937943221e-06, -2.4105966937943221e-06, -2.410596693794323e-06, -2.4105966937943242e-06, -2.7119212805185781e-06, -1.0245035948625844e-05, -6.0264917344858984e-07, -2.4105966937943246e-06, -2.4105966937943221e-06, -2.7119212805185963e-06, -7.8344392548315113e-06, -2.4105966937943407e-06, -2.4105966937943179e-06, -2.4105966937943441e-06, -1.2052983468971655e-06, -1.2052983468971655e-06, -3.0132458672429206e-07, -3.0132458672429312e-07, -3.0132458672429005e-07, -6.0264917344858349e-07, -5.1225179743129192e-06, -9.0397376017287841e-06, -3.6158950406914819e-06, -1.8079475203457486e-06, -3.0132458672429122e-07, -1.2052983468971647e-06, -4.8211933875886629e-06, -7.2317900813829943e-06, -2.4105966937943255e-06, -1.2052983468971649e-06, -4.8211933875886595e-06, -4.8211933875886612e-06, -1.2052983468971649e-06, -3.615895040691487e-06, -2.4105966937943234e-06, -3.013245867242928e-07, -6.0264917344858561e-07, -1.2052983468971647e-06, -1.2052983468971594e-06, -2.7119212805185874e-06, -1.5066229336214632e-06, -2.4105966937943374e-06, -4.821193387588673e-06, -2.1695370244148658e-05, -1.2052983468971712e-06, -3.013245867242909e-07, -1.8079475203457578e-05, -2.4105966937943272e-06, -1.4463580162766055e-05, -1.4463580162766048e-05, -1.506622933621452e-05, -1.4463580162766055e-05, -1.2052983468971712e-06, -1.2052983468971712e-06, -2.4105966937943289e-06, -2.4105966937943302e-06, -1.2052983468971644e-06, -1.2052983468971644e-06, -2.4105966937943424e-06, -3.013245867242927e-07, -2.4105966937943416e-06, -3.0132458672429111e-07, -3.0132458672429175e-07, -2.10927210707002e-05, -1.2052983468971644e-06, -1.2052983468971644e-06, -1.8380799790181823e-05, -6.0264917344858476e-07, -2.1695370244148611e-05, -2.1695370244148611e-05, -2.4105966937943276e-06, -3.0132458672429069e-07, -2.4105966937943263e-06, -2.1695370244148611e-05, -2.1695370244148831e-05, -2.4105966937943272e-06, -2.4105966937943289e-06, -6.0264917344857989e-07, -6.0264917344857989e-07, -4.8211933875886408e-06, -2.410596693794328e-06, -2.4105966937943272e-06, -9.0397376017287005e-07, -4.8211933875886408e-06, -1.108874479145373e-05, -1.1088744791453767e-05, -1.1088744791453754e-05, -1.1088744791453733e-05, -5.5443723957269242e-06, -5.5443723957269226e-06, -1.1088744791453848e-05, -1.1088744791453855e-05, -1.3860930989317201e-06, -1.3860930989317226e-06, -0.00027860471288527837, -0.00027721861978634798, -6.9304654946586837e-06, -1.3860930989317201e-06, -4.1582792967951961e-06, -1.3860930989317267e-05, -0.00011088744791453926, -2.7721861978634452e-06, -0.00012752056510171911, -1.3860930989317315e-06, -2.2177489582907504e-05, -2.2177489582907521e-05, -1.1088744791453859e-05, -1.1088744791453845e-05, -0.00011088744791453922, -0.00011088744791453924, -1.1088744791453932e-05, -0.00031464313345750208, -2.7721861978634308e-06, -0.00027721861978634684, -2.2177489582907484e-05, -1.108874479145376e-05, -1.1088744791453727e-05, -1.3860930989317328e-06, -1.3860930989317209e-06, -1.1088744791453791e-05, -1.1088744791453777e-05, -2.7721861978634316e-06, -2.7721861978634316e-06, -1.3860930989317319e-06, -1.386093098931726e-06, 0.0012165076215233017, -6.9304654946587091e-06, -4.158279296795164e-06, -5.5443723957269209e-06, -5.5443723957269242e-06, -1.3860930989317201e-06, -2.0791396483975908e-05, -1.1088744791453803e-05, -1.1088744791453799e-05, -1.247483789038561e-05, -1.1088744791453859e-05, -2.0791396483975915e-05, -2.7721861978634401e-06, -1.3860930989317171e-06, -1.1088744791453855e-05, -1.1088744791453848e-05, 0.00024413318016401947, -1.3860930989317228e-06, -1.1088744791453794e-05, -1.1088744791453808e-05, -2.7721861978634905e-06, -1.3860930989317272e-06, -1.1088744791453832e-05, -2.2177489582907768e-05, -1.3860930989317296e-05, -1.1088744791453781e-05, -2.2177489582907683e-05, -1.3860930989317196e-06, -1.1088744791453835e-05, -2.3563582681839418e-05, -1.1088744791453786e-05, -1.1088744791453818e-05, -2.2177489582907528e-05, -4.4354979165815753e-05, -3.4652327473293355e-05, -1.1088744791453852e-05, -2.2177489582907555e-05, -2.2177489582907575e-05, -5.5443723957268599e-06, -1.1088744791453815e-05, -1.3860930989317305e-05, -1.5247024088249067e-05, -5.5443723957268582e-06, -2.2177489582907897e-05, -1.1088744791453791e-05, -1.1088744791453781e-05, -1.1088744791453777e-05, -2.772186197863488e-06, -1.1088744791453743e-05, -1.1088744791453852e-05, -1.3860930989317145e-06, -1.1088744791453852e-05, -2.7721861978634587e-06, -1.1088744791453747e-05, -1.1088744791453791e-05, -1.1088744791453777e-05, -1.3860930989317201e-06, -2.2177489582907561e-05, -2.2177489582907548e-05, -1.386093098931723e-06, -1.1088744791453794e-05, -1.1088744791453798e-05, -1.3860930989317226e-06, -1.1088744791453727e-05, -1.108874479145374e-05, -1.1088744791453825e-05, -1.1088744791453737e-05, -3.3266234374361637e-05, -1.108874479145373e-05, -1.1088744791453838e-05, -1.1088744791453828e-05, -1.3860930989317264e-06, -1.1088744791453825e-05, -1.1088744791453825e-05, -2.2177489582907622e-05, -5.5443723957269242e-06, -2.4949675780771245e-05, -5.5443723957269209e-06, -1.3860930989317171e-06, -2.7721861978634503e-06, -1.8019210286112492e-05, -1.1088744791453777e-05, -2.2177489582907866e-05, -0.00011643182031026485, -1.1088744791453794e-05, -0.0001219761927059927, -1.1088744791453811e-05, -1.1088744791453825e-05, -2.2177489582907575e-05, -0.00011088744791453865, -2.2177489582907555e-05, -0.00011227354101347066, -1.3860930989317325e-06, -2.2177489582907534e-05, -2.2177489582907589e-05, -5.54437239572687e-06, -0.00011643182031026485, -0.00011088744791453926, -0.0001108874479145388, -0.00011088744791453838, -1.3860930989317201e-06, -5.5443723957268938e-06, -1.3860930989317281e-06, -1.3860930989317184e-06, -1.3860930989317158e-06, -1.1088744791453788e-05, -1.1088744791453784e-05, -1.1088744791453788e-05, -1.1088744791453781e-05, -1.3860930989317281e-06, -1.3860930989317272e-06, -1.3860930989317285e-06, -1.1088744791453747e-05, -1.3860930989317267e-05, -2.7721861978634589e-05, -2.2177489582907863e-05, -2.2177489582907653e-05, -1.108874479145375e-05, -3.3266234374361447e-05, -4.1582792967951606e-06, -0.00012197619270599267, -2.217748958290767e-05, -9.9798703123085182e-05, -1.3860930989317209e-06, -1.3860930989317251e-06, -3.4652327473293416e-05, -2.2177489582907622e-05, -1.1088744791453803e-05, -9.7026516925221611e-06, -5.5443723957269166e-06, -2.7721861978634439e-06, -9.9798703123085182e-05, -2.7721861978634401e-06, -5.5443723957269226e-06, -5.5443723957269242e-06, -9.9798703123085182e-05, -1.1088744791453832e-05, -1.3860930989317256e-06, -1.1088744791453804e-05, -1.3860930989317285e-06, -1.1088744791453818e-05, -1.3860930989317345e-05, -4.1582792967951513e-06, -1.1088744791453811e-05, -2.0791396483975901e-05, -1.3860930989317323e-06, -1.1088744791453838e-05, -2.7721861978634308e-06, -2.7721861978634316e-06, -2.772186197863435e-06, -1.3860930989317234e-06, -8.3165585935903787e-06, -4.1582792967951665e-06, -1.1088744791453781e-05, -1.1088744791453767e-05, -2.2177489582907683e-05, -3.6038420572225012e-05, -3.1880141275429777e-05, -1.3860930989317323e-06, -2.2177489582907849e-05, -1.1088744791453767e-05, -8.3165585935903635e-06, 0.00024274708706508772, -1.3860930989317272e-06, -1.3860930989317184e-06, -0.00011088744791453838, -0.0001108874479145388, -0.00022454708202694138, -0.00011088744791453903, -0.00011088744791453865, -5.5443723957268582e-06, -2.7721861978634736e-06, -1.1088744791453737e-05, -1.2474837890385607e-05, -5.5443723957268599e-06, -1.5247024088249067e-05, -1.3860930989317217e-06, -1.3860930989317315e-06, -2.2177489582907788e-05, -1.1088744791453835e-05, -1.1088744791453821e-05, -1.3860930989317247e-06, -1.3860930989317201e-06, -5.5443723957268921e-06, -5.5443723957268887e-06, -2.2177489582907843e-05, -1.108874479145376e-05, -1.3860930989317294e-06, -0.0002245470820269416, -1.1088744791453771e-05, -1.1088744791453777e-05, -1.386093098931723e-06, -5.5443723957268904e-06, -5.5443723957268921e-06, -2.7721861978634647e-06, -2.7721861978634647e-06, -4.158279296795175e-06, -1.3860930989317196e-06, -2.7721861978634647e-06, -2.7721861978634647e-06, -1.3860930989317272e-06, -1.3860930989317201e-06, -5.544372395726909e-06, -1.6633117187180774e-05, -1.1088744791453838e-05, -1.3860930989317285e-06, -1.3860930989317315e-06, -2.4949675780771214e-05, -1.386093098931723e-06, -5.5443723957269454e-06, -2.7721861978634761e-06, -2.2177489582907727e-05, -2.2177489582907711e-05, -6.9304654946586583e-06, -5.5443723957269022e-06, -2.7721861978634863e-06, -8.3165585935903787e-06, -0.00011781791340919797, -1.3860930989317256e-06, -5.5443723957269039e-06, -5.5443723957269005e-06, -2.217748958290769e-05, -2.2177489582907748e-05, -5.5443723957268971e-06, -5.5443723957269124e-06, -5.5443723957269141e-06, -1.3860930989317285e-06, -6.3760282550859553e-05, -1.386093098931742e-05, 0.00024413318016401947, -1.1088744791453777e-05, -1.1088744791453928e-05, -1.1088744791453771e-05, -2.2177489582907748e-05, -1.1088744791453891e-05, -2.217748958290769e-05, -1.1088744791453926e-05, -1.1088744791453928e-05, -0.00042553058137204228, -1.1088744791453774e-05, -0.00027721861978634641, -1.1088744791453825e-05, -2.7721861978634393e-06, -8.3165585935903686e-05, -1.6633117187180771e-05, -6.9304654946586617e-06, -8.3165585935903632e-05, -1.3860930989317306e-06, -1.1088744791453777e-05, -1.1088744791453781e-05, -0.0002245470820269416, -1.1088744791453842e-05, -1.1088744791453848e-05, -0.0003174153196553678, -4.1582792967951563e-06, -0.00027721861978634662, -1.1088744791453798e-05, -1.1088744791453794e-05, -1.3860930989317275e-06, -1.1088744791453786e-05, -1.1088744791453772e-05, -1.3860930989317294e-06, -2.2177489582907711e-05, -2.2177489582907727e-05, -2.772186197863435e-06, -5.5443723957268921e-06, -5.5443723957268904e-06, -1.1088744791453767e-05, -1.1088744791453764e-05, -0.00022454708202694138, -1.1088744791453767e-05, -1.1088744791453781e-05, -3.7424513671156716e-05, 0.00084901215555435467, -1.1088744791453791e-05, -9.8412610024153322e-05, -1.6633117187180615e-05, -1.6633117187180619e-05, -1.108874479145376e-05, -1.108874479145374e-05, -1.3860930989317249e-05, -1.1088744791453727e-05, -1.3860930989317256e-05, -2.9107955077566212e-05, -1.1088744791453835e-05, -6.9304654946586337e-06, 0.0056150631437724662, -1.1088744791453838e-05, -1.6633117187180764e-05, -4.1582792967951665e-06, -6.9304654946586667e-06, -2.7721861978634342e-06, -1.3860930989317201e-06, -1.3860930989317256e-06, -1.1088744791453727e-05, -1.6633117187180656e-05, -8.3165585935903652e-06, -5.5443723957269158e-06, -1.1088744791453757e-05, -1.1088744791453932e-05, -1.1088744791453928e-05, -2.2177489582907788e-05, -1.1088744791453859e-05, -5.5443723957269005e-06, -2.217748958290767e-05, -1.1088744791453848e-05, -5.5443723957269039e-06, -1.1088744791453928e-05, -1.3860930989317306e-06, -1.1088744791453848e-05, -1.1088744791453855e-05, -2.2177489582907548e-05, -3.3266234374361346e-05, -1.1088744791453815e-05, -2.2177489582907484e-05, -2.2177489582907538e-05, -1.1088744791453855e-05, -1.1088744791453848e-05, -1.1088744791453838e-05, 0.0019530654413121556, 0.00023304443537256766, -4.7127165363678606e-05, -2.7721861978634913e-06, -1.108874479145373e-05, -1.1088744791453855e-05, -1.2474837890385655e-05, -3.6038420572225032e-05, -1.1088744791453767e-05, -1.1088744791453804e-05, -1.108874479145373e-05, -5.5443723957269022e-06, -5.5443723957269005e-06, -1.3860930989317213e-06, -1.3860930989317158e-06, -1.3860930989317196e-06, -2.7721861978634477e-06, -2.3563582681839716e-05, -4.1582792967951816e-05, -1.6633117187180791e-05, -8.3165585935903787e-06, -1.386093098931726e-06, -5.5443723957269039e-06, -2.217748958290767e-05, -3.326623437436144e-05, -1.1088744791453733e-05, -5.5443723957269039e-06, -2.2177489582907633e-05, -2.2177489582907653e-05, -5.5443723957269039e-06, -1.6633117187180781e-05, -1.1088744791453842e-05, -1.3860930989317175e-06, -2.7721861978634897e-06, -5.5443723957269039e-06, -5.5443723957268971e-06, -1.2474837890385639e-05, -6.9304654946586388e-06, -1.1088744791453771e-05, -2.2177489582907768e-05, -9.9798703123085073e-05, -5.54437239572687e-06, -1.3860930989317281e-06, -8.3165585935903686e-05, -1.1088744791453828e-05, -6.6532468748722529e-05, -6.6532468748722583e-05, -6.9304654946586791e-05, -6.6532468748722529e-05, -5.54437239572687e-06, -5.5443723957268717e-06, -1.1088744791453811e-05, -1.1088744791453825e-05, -5.544372395726909e-06, -5.544372395726909e-06, -1.1088744791453747e-05, -1.3860930989317175e-06, -1.1088744791453743e-05, -1.3860930989317268e-06, -1.3860930989317226e-06, -9.7026516925222397e-05, -5.544372395726909e-06, -5.544372395726909e-06, -8.4551679034835316e-05, 0.00048826636032803917, -9.9798703123085182e-05, -9.9798703123085182e-05, -1.1088744791453835e-05, -1.3860930989317285e-06, -1.1088744791453821e-05, -9.9798703123085182e-05, -9.9798703123084586e-05, -1.1088744791453821e-05, -1.1088744791453835e-05, -2.7721861978634587e-06, -2.7721861978634418e-06, -2.2177489582907717e-05, -1.1088744791453828e-05, -1.1088744791453825e-05, -4.1582792967952012e-06, -2.2177489582907717e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.690598709053173e-05, -9.6423867751771976e-05, -2.410596693794306e-06, -4.8211933875886133e-07, -1.4463580162765914e-06, -4.8211933875886408e-06, -3.8569547100709249e-05, -9.6423867751772266e-07, -4.4354979165815523e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100709249e-05, -3.8569547100709242e-05, -3.8569547100708898e-06, -0.00010944108989826141, -9.6423867751772224e-07, -9.6423867751773264e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.4105966937943052e-06, -1.4463580162765927e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813830019e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297335e-06, -3.8569547100708906e-06, -7.2317900813829807e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886324e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886122e-07, -3.8569547100708915e-06, -8.1960287589006233e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971524e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -4.8211933875886341e-06, -5.3033127263474676e-06, -1.9284773550354445e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.8211933875886112e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212728e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594857e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652483e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -4.0498024455744644e-05, -3.8569547100708906e-06, -4.2426501810779775e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709025e-05, -7.7139094201417796e-06, -3.9051666439468047e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.0498024455744644e-05, -3.8569547100709249e-05, -3.8569547100708998e-05, -3.85695471007091e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886493e-06, -9.6423867751772749e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -1.157086413021274e-05, -1.4463580162766134e-06, -4.2426501810780087e-05, -7.7139094201417813e-06, -3.4712592390638051e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971568e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120418e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390638051e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390638038e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.821193387588629e-06, -1.4463580162765922e-06, -3.8569547100708906e-06, -7.2317900813829553e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325532002e-06, -1.44635801627661e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730463e-05, -1.1088744791453887e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532065e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.85695471007091e-05, -3.8569547100708998e-05, -7.810333287893631e-05, -3.8569547100708998e-05, -3.8569547100709025e-05, -1.9284773550354445e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297251e-06, -1.9284773550354445e-06, -5.3033127263474956e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936147e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4463580162765846e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651063724e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -8.6781480976595061e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -7.713909420141783e-06, -7.713909420141783e-06, -2.4105966937943111e-06, -1.9284773550354457e-06, -9.6423867751772245e-07, -2.8927160325531836e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886144e-07, -2.2177489582907677e-05, -4.8211933875886112e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00014801063699897181, -3.8569547100708906e-06, -9.6423867751772573e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.8927160325531632e-05, -5.7854320651063707e-06, -2.4105966937943132e-06, -2.8927160325531957e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936147e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -0.00011040532857577942, -1.4463580162765914e-06, -9.6423867751772667e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.810333287893631e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489232e-05, -4.6283456520850965e-05, -3.8569547100708906e-06, -3.4230473051879003e-05, -5.7854320651063656e-06, -5.7854320651063656e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886518e-06, -3.8569547100708898e-06, -4.8211933875886442e-06, -1.0124506113936158e-05, -3.8569547100708906e-06, -2.410596693794323e-06, -1.1088744791453838e-05, 0.0019602972313935386, -5.7854320651063707e-06, -1.4463580162766105e-06, -2.4105966937943128e-06, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063681e-06, -2.8927160325532052e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354457e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.1570864130212735e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, 0.0019602972313935386, -3.8569547100708915e-06, -4.3390740488297547e-06, -1.6392057517801348e-05, -9.6423867751772224e-07, -3.8569547100708889e-06, -3.8569547100708915e-06, -4.3390740488297547e-06, -1.2535102807730473e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -8.1960287589005759e-06, -1.4463580162765833e-05, -5.7854320651063707e-06, -2.8927160325532002e-06, -4.8211933875886144e-07, -1.9284773550354457e-06, -7.7139094201417813e-06, -1.1570864130212735e-05, -3.8569547100708889e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -5.7854320651063343e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354453e-06, -4.3390740488297479e-06, -2.4105966937943196e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -3.4712592390638038e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531632e-05, -3.8569547100708915e-06, -2.3141728260425818e-05, -2.3141728260425442e-05, -2.4105966937943021e-05, -2.3141728260425818e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.3748353713120489e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.9409279664290602e-05, -9.6423867751772245e-07, -3.4712592390638038e-05, -3.4712592390638051e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.4712592390638051e-05, -3.4712592390637997e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.446358016276592e-06, -7.713909420141783e-06, -5.7854320651064495e-06, -5.7854320651064232e-06, -5.7854320651064283e-06, -5.7854320651064461e-06, -2.892716032553182e-06, -2.892716032553182e-06, -5.7854320651063622e-06, -5.7854320651063605e-06, -7.2317900813830227e-07, -7.2317900813830142e-07, -0.00014535898063579793, -0.00014463580162765805, -3.6158950406914683e-06, -7.2317900813830216e-07, -2.1695370244149095e-06, -7.2317900813829739e-06, -5.7854320651063656e-05, -1.4463580162766028e-06, -6.6532468748722827e-05, -7.2317900813829316e-07, -1.1570864130212858e-05, -1.1570864130212851e-05, -5.7854320651063588e-06, -5.7854320651063639e-06, -5.7854320651063548e-05, -5.7854320651063548e-05, -5.785432065106347e-06, -0.00016416163484739226, -1.4463580162766132e-06, -0.00014463580162765819, -1.1570864130212865e-05, -5.7854320651064249e-06, -5.7854320651064495e-06, -7.231790081382939e-07, -7.2317900813830227e-07, -5.7854320651064046e-06, -5.7854320651064097e-06, -1.4463580162766132e-06, -1.4463580162766132e-06, -7.2317900813829422e-07, -7.2317900813829888e-07, -5.7854320651063673e-06, -3.6158950406914662e-06, -2.1695370244148943e-06, -2.892716032553182e-06, -2.8927160325531803e-06, -7.2317900813830216e-07, -1.0847685122074366e-05, -5.785432065106391e-06, -5.7854320651063927e-06, -6.5086110732446507e-06, -5.7854320651063571e-06, -1.0847685122074394e-05, -1.4463580162766045e-06, -7.2317900813830523e-07, -5.7854320651063521e-06, -5.785432065106347e-06, -7.231790081382957e-07, -7.2317900813830047e-07, -5.7854320651063961e-06, -5.7854320651063893e-06, -1.4463580162765867e-06, -7.2317900813829782e-07, 0.001958368754038502, -1.1570864130212699e-05, -7.2317900813829587e-06, -5.7854320651063504e-06, -1.1570864130212653e-05, -7.2317900813829591e-07, -5.7854320651063809e-06, -1.229404313835115e-05, -5.7854320651064029e-06, -5.7854320651063859e-06, -1.157086413021285e-05, -2.3141728260425388e-05, -1.8079475203457318e-05, -5.7854320651063605e-06, -1.1570864130212836e-05, -1.1570864130212829e-05, -2.8927160325531972e-06, -5.7854320651063893e-06, -7.231790081382957e-06, -7.9549690895211583e-06, -2.892716032553198e-06, -1.1570864130212745e-05, -5.7854320651064046e-06, -5.7854320651064046e-06, -5.7854320651064063e-06, -1.4463580162765931e-06, -5.7854320651064384e-06, -5.7854320651063605e-06, -7.2317900813830629e-07, -5.7854320651063588e-06, -1.4463580162765817e-06, -5.7854320651064351e-06, -5.785432065106347e-06, -5.7854320651063521e-06, -7.231790081383029e-07, -1.1570864130212836e-05, -1.1570864130212843e-05, -7.2317900813830099e-07, -5.7854320651064012e-06, -5.7854320651064012e-06, -7.2317900813830152e-07, -5.7854320651064495e-06, -5.7854320651064418e-06, -5.7854320651063842e-06, -5.7854320651064444e-06, -1.7356296195319141e-05, -5.7854320651063859e-06, -5.7854320651063334e-06, -5.7854320651063825e-06, -7.2317900813829824e-07, -5.7854320651063249e-06, -5.7854320651063842e-06, -1.1570864130212789e-05, -2.8927160325531803e-06, -1.3017222146489249e-05, -2.892716032553182e-06, -7.2317900813830523e-07, -1.4463580162765994e-06, -9.4013271057977929e-06, -5.7854320651063521e-06, -1.1570864130212746e-05, -6.0747036683617115e-05, -5.7854320651063961e-06, -6.363975271616932e-05, -5.7854320651063893e-06, -5.7854320651063842e-06, -1.1570864130212829e-05, -5.7854320651063548e-05, -1.1570864130212836e-05, -5.8577499659202107e-05, -7.2317900813829411e-07, -1.1570864130212843e-05, -1.1570864130212823e-05, -2.8927160325532192e-06, -6.0747036683617115e-05, -5.7854320651063656e-05, -5.7854320651063365e-05, -5.7854320651063717e-05, -7.2317900813829549e-07, -2.8927160325531718e-06, -7.2317900813829718e-07, -7.2317900813830396e-07, -7.2317900813830639e-07, -5.7854320651064063e-06, -5.785432065106408e-06, -5.7854320651063487e-06, -5.7854320651063504e-06, -7.2317900813829718e-07, -7.2317900813829803e-07, -7.2317900813829718e-07, -5.7854320651063724e-06, -7.2317900813829723e-06, -1.4463580162765921e-05, -1.1570864130212748e-05, -1.1570864130212775e-05, -5.7854320651063707e-06, -1.7356296195319141e-05, -2.169537024414849e-06, -6.3639752716169646e-05, -1.1570864130212768e-05, -5.2068888585956914e-05, -7.2317900813829507e-07, -7.2317900813829972e-07, -1.8079475203457318e-05, -1.1570864130212789e-05, -5.785432065106391e-06, -5.0622530569680915e-06, -2.8927160325531743e-06, -1.4463580162766041e-06, -5.2068888585956914e-05, -1.4463580162766045e-06, -2.892716032553182e-06, -2.892716032553182e-06, -5.2068888585956914e-05, -5.7854320651063724e-06, -7.231790081382993e-07, -5.7854320651063351e-06, -7.2317900813829718e-07, -5.78543206510633e-06, -7.2317900813829587e-06, -2.1695370244148943e-06, -5.7854320651063334e-06, -1.084768512207447e-05, -7.2317900813829401e-07, -5.7854320651063707e-06, -1.4463580162766132e-06, -1.4463580162766128e-06, -1.4463580162766096e-06, -7.2317900813830057e-07, -4.3390740488297412e-06, -2.1695370244148532e-06, -5.7854320651064164e-06, -5.7854320651064232e-06, -1.1570864130212762e-05, -1.8802654211595592e-05, -1.6633117187180571e-05, -7.2317900813829401e-07, -1.1570864130212694e-05, -5.7854320651064198e-06, -4.3390740488297302e-06, -1.4463580162765876e-06, -7.2317900813829803e-07, -7.2317900813830396e-07, -5.7854320651063717e-05, -5.7854320651063365e-05, -0.0001171549993184035, -5.7854320651063358e-05, -5.7854320651063548e-05, -2.892716032553198e-06, -1.4463580162765876e-06, -5.7854320651063707e-06, -6.5086110732446278e-06, -2.8927160325531972e-06, -7.9549690895211837e-06, -7.2317900813830205e-07, -7.2317900813829316e-07, -1.1570864130212741e-05, -5.7854320651063741e-06, -5.7854320651063825e-06, -7.2317900813829972e-07, -7.2317900813830216e-07, -2.892716032553204e-06, -2.8927160325532057e-06, -1.1570864130212694e-05, -5.7854320651064232e-06, -7.2317900813829612e-07, -0.00011715499931840472, -5.7854320651064198e-06, -5.7854320651064181e-06, -7.2317900813830099e-07, -2.8927160325532057e-06, -2.892716032553204e-06, -1.4463580162765884e-06, -1.4463580162765884e-06, -2.1695370244148909e-06, -7.2317900813830237e-07, -1.4463580162765884e-06, -1.4463580162765884e-06, -7.2317900813829761e-07, -7.2317900813829549e-07, -2.892716032553165e-06, -8.6781480976594823e-06, -5.7854320651063741e-06, -7.2317900813829697e-07, -7.2317900813829316e-07, -1.3017222146489234e-05, -7.2317900813830036e-07, -2.8927160325531828e-06, -1.4463580162765872e-06, -1.1570864130212723e-05, -1.157086413021273e-05, -3.6158950406914827e-06, -2.8927160325531985e-06, -1.4463580162765867e-06, -4.3390740488297352e-06, 0.00092060687736005237, -7.2317900813829909e-07, -2.8927160325531976e-06, -2.8927160325531993e-06, -1.1570864130212736e-05, -1.1570864130212716e-05, -2.8927160325531718e-06, -2.8927160325531887e-06, -2.8927160325531887e-06, -7.2317900813829718e-07, -3.3266234374361508e-05, -7.231790081382924e-06, -7.2317900813829591e-07, -5.7854320651064181e-06, -5.785432065106347e-06, -5.7854320651064198e-06, -1.1570864130212716e-05, -5.785432065106347e-06, -1.1570864130212736e-05, -5.785432065106347e-06, -5.785432065106347e-06, -0.0002220159554984562, -5.7854320651064181e-06, -0.00014463580162765824, -5.7854320651063249e-06, -1.4463580162766052e-06, -4.3390740488297493e-05, -8.6781480976594823e-06, -3.6158950406914819e-06, -4.3390740488297493e-05, -7.2317900813829528e-07, -5.7854320651064063e-06, -5.7854320651064046e-06, -0.00011715499931840472, -5.785432065106369e-06, -5.7854320651063673e-06, -0.00016560799286366925, -2.169537024414885e-06, -0.00014463580162765835, -5.7854320651064012e-06, -5.7854320651064012e-06, -7.2317900813829824e-07, -5.7854320651064029e-06, -5.785432065106408e-06, -7.2317900813829634e-07, -1.157086413021273e-05, -1.1570864130212723e-05, -1.4463580162766096e-06, -2.892716032553204e-06, -2.8927160325532057e-06, -5.7854320651064198e-06, -5.7854320651064215e-06, -0.0001171549993184035, -5.7854320651064232e-06, -5.7854320651064164e-06, -1.952583321973403e-05, -6.9425184781276509e-05, -5.7854320651064046e-06, -5.1345709577818768e-05, -8.6781480976596043e-06, -8.6781480976596043e-06, -5.7854320651063673e-06, -5.7854320651064418e-06, -7.2317900813829672e-06, -5.7854320651064495e-06, -7.2317900813829723e-06, -1.5186759170904265e-05, -5.78543206510633e-06, -3.6158950406914802e-06, -1.6633117187180764e-05, -5.7854320651063707e-06, 0.002937553131057757, -2.1695370244148515e-06, -3.6158950406914853e-06, -1.4463580162766105e-06, -7.2317900813829549e-07, -7.231790081382993e-07, -5.7854320651064495e-06, -8.6781480976595772e-06, -4.3390740488297319e-06, -2.892716032553187e-06, -5.7854320651064266e-06, -5.785432065106347e-06, -5.785432065106347e-06, -1.1570864130212694e-05, -5.7854320651063588e-06, -2.8927160325531993e-06, -1.1570864130212694e-05, -5.7854320651063605e-06, -2.8927160325531976e-06, -5.785432065106347e-06, -7.2317900813829507e-07, -5.785432065106347e-06, -5.7854320651063521e-06, -1.1570864130212843e-05, -1.7356296195319039e-05, -5.7854320651063317e-06, -1.1570864130212865e-05, -1.1570864130212845e-05, -5.7854320651063605e-06, -5.7854320651063622e-06, -5.7854320651063707e-06, -5.7854320651063656e-06, -6.5086110732446177e-06, -2.4588086276702219e-05, -1.4463580162765863e-06, -5.7854320651063859e-06, -5.7854320651063571e-06, -6.5086110732446677e-06, -1.8802654211595515e-05, -5.7854320651064232e-06, -5.7854320651063351e-06, -5.7854320651064495e-06, -2.8927160325531985e-06, -2.8927160325531993e-06, -7.2317900813830184e-07, -7.2317900813830639e-07, -7.2317900813829591e-07, -1.4463580162766011e-06, -1.2294043138351133e-05, -2.169537024414877e-05, -8.6781480976595128e-06, -4.3390740488297412e-06, -7.2317900813829888e-07, -2.8927160325531968e-06, -1.1570864130212768e-05, -1.735629619531906e-05, -5.7854320651063842e-06, -2.8927160325531968e-06, -1.1570864130212782e-05, -1.1570864130212775e-05, -2.8927160325531968e-06, -8.6781480976594959e-06, -5.785432065106369e-06, -7.2317900813830523e-07, -1.4463580162765931e-06, -2.8927160325531968e-06, -2.8927160325531718e-06, -6.5086110732446185e-06, -3.6158950406914853e-06, -5.7854320651064164e-06, -1.1570864130212699e-05, -5.2068888585956955e-05, -2.8927160325532192e-06, -7.2317900813829739e-07, -4.3390740488297493e-05, -5.7854320651063825e-06, -3.4712592390637611e-05, -3.4712592390638255e-05, -3.6158950406914622e-05, -3.4712592390637611e-05, -2.8927160325532192e-06, -2.8927160325532184e-06, -5.785432065106391e-06, -5.7854320651063859e-06, -2.8927160325531913e-06, -2.8927160325531913e-06, -5.7854320651064351e-06, -7.2317900813830481e-07, -5.7854320651064384e-06, -7.2317900813829824e-07, -7.2317900813830163e-07, -5.0622530569680656e-05, -2.8927160325531913e-06, -2.8927160325531913e-06, -4.4113919496436418e-05, -1.4463580162766075e-06, -5.2068888585956914e-05, -5.2068888585956914e-05, -5.7854320651063809e-06, -7.2317900813829739e-07, -5.7854320651063859e-06, -5.2068888585956914e-05, -5.2068888585956901e-05, -5.7854320651063825e-06, -5.7854320651063775e-06, -1.4463580162765825e-06, -1.4463580162765901e-06, -1.1570864130212707e-05, -5.7854320651063792e-06, -5.7854320651063809e-06, -2.1695370244148807e-06, -1.1570864130212707e-05, -1.4463580162766302e-06, -1.4463580162766238e-06, -1.4463580162766251e-06, -1.4463580162766293e-06, -7.2317900813830438e-07, -7.2317900813830438e-07, -1.4463580162766083e-06, -1.4463580162766079e-06, -1.8079475203457782e-07, -1.807947520345776e-07, -3.6339745158950059e-05, -3.6158950406915082e-05, -9.0397376017287238e-07, -1.8079475203457779e-07, -5.423842561037187e-07, -1.8079475203457543e-06, -1.4463580162765928e-05, -3.6158950406915521e-07, -1.6633117187180673e-05, -1.8079475203457535e-07, -2.8927160325532506e-06, -2.8927160325532489e-06, -1.4463580162766075e-06, -1.4463580162766088e-06, -1.44635801627659e-05, -1.4463580162765897e-05, -1.4463580162766045e-06, -4.1040408711848064e-05, -3.6158950406915775e-07, -3.6158950406915116e-05, -2.8927160325532523e-06, -1.4463580162766242e-06, -1.4463580162766302e-06, -1.807947520345757e-07, -1.8079475203457782e-07, -1.4463580162766191e-06, -1.4463580162766204e-06, -3.6158950406915775e-07, -3.6158950406915775e-07, -1.8079475203457578e-07, -1.8079475203457697e-07, -1.4463580162766037e-06, -9.0397376017287206e-07, -5.4238425610371479e-07, -7.2317900813830438e-07, -7.2317900813830396e-07, -1.8079475203457779e-07, -2.7119212805185798e-06, -1.4463580162766158e-06, -1.4463580162766162e-06, -1.6271527683111618e-06, -1.4463580162765973e-06, -2.7119212805185861e-06, -3.6158950406915563e-07, -1.8079475203457856e-07, -1.4463580162765982e-06, -1.446358016276599e-06, -1.8079475203457109e-07, -1.8079475203457737e-07, -1.446358016276617e-06, -1.4463580162766153e-06, -3.6158950406915113e-07, -1.807947520345767e-07, -1.4463580162765914e-06, -2.8927160325532103e-06, -1.8079475203457505e-06, -1.4463580162765753e-06, -2.8927160325531557e-06, -1.8079475203457104e-07, -1.4463580162766132e-06, -3.0735107845877994e-06, -1.4463580162766187e-06, -1.4463580162766145e-06, -2.8927160325532484e-06, -5.7854320651064181e-06, -4.5198688008644005e-06, -1.4463580162766079e-06, -2.8927160325532451e-06, -2.8927160325532434e-06, -7.2317900813828765e-07, -1.4463580162766153e-06, -1.8079475203457496e-06, -1.9887422723802925e-06, -7.2317900813828787e-07, -2.8927160325531358e-06, -1.4463580162766191e-06, -1.4463580162766191e-06, -1.4463580162766196e-06, -3.6158950406914208e-07, -1.4463580162766276e-06, -1.4463580162766079e-06, -1.807947520345788e-07, -1.4463580162766075e-06, -3.615895040691424e-07, -1.4463580162766268e-06, -1.4463580162765736e-06, -1.4463580162765762e-06, -1.8079475203457798e-07, -2.8927160325532451e-06, -2.8927160325532468e-06, -1.807947520345775e-07, -1.4463580162766183e-06, -1.4463580162766183e-06, -1.8079475203457763e-07, -1.4463580162766302e-06, -1.4463580162766285e-06, -1.4463580162766141e-06, -1.4463580162766289e-06, -4.3390740488297302e-06, -1.4463580162765736e-06, -1.4463580162765897e-06, -1.4463580162766136e-06, -1.8079475203457692e-07, -1.4463580162765922e-06, -1.4463580162766141e-06, -2.8927160325532332e-06, -7.2317900813830396e-07, -3.2543055366223105e-06, -7.2317900813830438e-07, -1.8079475203457856e-07, -3.6158950406915436e-07, -2.350331776449474e-06, -1.4463580162765762e-06, -2.8927160325531553e-06, -1.5186759170904286e-05, -1.446358016276617e-06, -1.5909938179042293e-05, -1.4463580162766153e-06, -1.4463580162766141e-06, -2.8927160325532434e-06, -1.4463580162765972e-05, -2.8927160325532451e-06, -1.4644374914800615e-05, -1.8079475203457575e-07, -2.8927160325532468e-06, -2.8927160325532417e-06, -7.2317900813831381e-07, -1.5186759170904286e-05, -1.4463580162765928e-05, -1.4463580162765926e-05, -1.4463580162766016e-05, -1.807947520345712e-07, -7.2317900813830184e-07, -1.8079475203457655e-07, -1.8079475203457824e-07, -1.8079475203457882e-07, -1.4463580162766196e-06, -1.44635801627662e-06, -1.4463580162765745e-06, -1.4463580162765753e-06, -1.8079475203457655e-07, -1.8079475203457676e-07, -1.8079475203457655e-07, -1.44635801627657e-06, -1.8079475203457456e-06, -3.6158950406915026e-06, -2.8927160325531366e-06, -2.8927160325532298e-06, -1.4463580162765696e-06, -4.3390740488297149e-06, -5.4238425610370356e-07, -1.5909938179042398e-05, -2.8927160325532281e-06, -1.3017222146489222e-05, -1.8079475203457146e-07, -1.8079475203457718e-07, -4.5198688008643988e-06, -2.8927160325532332e-06, -1.4463580162766158e-06, -1.2655632642420222e-06, -7.2317900813830248e-07, -3.6158950406915553e-07, -1.3017222146489222e-05, -3.6158950406915563e-07, -7.2317900813830438e-07, -7.2317900813830438e-07, -1.3017222146489222e-05, -1.4463580162766111e-06, -1.8079475203457708e-07, -1.446358016276585e-06, -1.8079475203457655e-07, -1.4463580162765825e-06, -1.8079475203457473e-06, -5.4238425610371468e-07, -1.4463580162765842e-06, -2.7119212805186056e-06, -1.8079475203457573e-07, -1.4463580162766105e-06, -3.6158950406915775e-07, -3.6158950406915764e-07, -3.615895040691569e-07, -1.8079475203457739e-07, -1.0847685122074177e-06, -5.4238425610370462e-07, -1.4463580162766221e-06, -1.4463580162766238e-06, -2.8927160325532264e-06, -4.7006635528989498e-06, -4.1582792967951182e-06, -1.8079475203457573e-07, -2.8927160325532091e-06, -1.446358016276623e-06, -1.0847685122074152e-06, -3.6158950406915134e-07, -1.8079475203457676e-07, -1.8079475203457824e-07, -1.4463580162766016e-05, -1.4463580162765926e-05, -2.9288749829601043e-05, -1.4463580162765924e-05, -1.4463580162765972e-05, -7.2317900813828787e-07, -3.6158950406915134e-07, -1.44635801627657e-06, -1.6271527683111561e-06, -7.2317900813828765e-07, -1.9887422723802942e-06, -1.8079475203457776e-07, -1.8079475203457535e-07, -2.8927160325532108e-06, -1.4463580162766105e-06, -1.4463580162766136e-06, -1.8079475203457718e-07, -1.8079475203457779e-07, -7.2317900813830999e-07, -7.2317900813831042e-07, -2.8927160325532091e-06, -1.4463580162766238e-06, -1.8079475203457625e-07, -2.9288749829601348e-05, -1.446358016276623e-06, -1.4463580162766225e-06, -1.807947520345775e-07, -7.2317900813831042e-07, -7.2317900813830999e-07, -3.6158950406915156e-07, -3.6158950406915156e-07, -5.4238425610371394e-07, -1.8079475203457784e-07, -3.6158950406915156e-07, -3.6158950406915156e-07, -1.8079475203457676e-07, -1.807947520345712e-07, -7.2317900813829739e-07, -2.169537024414849e-06, -1.4463580162766105e-06, -1.8079475203457649e-07, -1.8079475203457535e-07, -3.2543055366223076e-06, -1.8079475203457734e-07, -7.2317900813830184e-07, -3.6158950406915124e-07, -2.8927160325532163e-06, -2.892716032553218e-06, -9.0397376017287566e-07, -7.2317900813830862e-07, -3.6158950406915113e-07, -1.0847685122074249e-06, -1.5367553922938771e-05, -1.8079475203457702e-07, -7.2317900813830841e-07, -7.2317900813830883e-07, -2.8927160325532196e-06, -2.8927160325532146e-06, -7.2317900813828935e-07, -7.2317900813830639e-07, -7.2317900813830618e-07, -1.8079475203457655e-07, 0.00072824126119525468, -1.807947520345742e-06, -1.8079475203457109e-07, -1.4463580162766225e-06, -1.4463580162766045e-06, -1.446358016276623e-06, -2.8927160325532146e-06, -1.4463580162766045e-06, -2.8927160325532196e-06, -1.4463580162766045e-06, -1.4463580162766045e-06, -5.5503988874613725e-05, -1.4463580162766225e-06, -3.615895040691513e-05, -1.4463580162765922e-06, -3.6158950406915579e-07, -1.0847685122074326e-05, -2.1695370244148515e-06, -9.0397376017287503e-07, -1.0847685122074326e-05, -1.8079475203457604e-07, -1.4463580162766196e-06, -1.4463580162766191e-06, -2.9288749829601348e-05, -1.44635801627661e-06, -1.4463580162766096e-06, -4.14019982159173e-05, -5.4238425610371458e-07, -3.6158950406915157e-05, -1.4463580162766183e-06, -1.4463580162766183e-06, -1.8079475203457681e-07, -1.4463580162766187e-06, -1.44635801627662e-06, -1.8079475203457631e-07, -2.892716032553218e-06, -2.8927160325532163e-06, -3.615895040691569e-07, -7.2317900813830999e-07, -7.2317900813831042e-07, -1.446358016276623e-06, -1.4463580162766234e-06, -2.9288749829601043e-05, -1.4463580162766238e-06, -1.4463580162766221e-06, -4.8814583049335312e-06, -1.7356296195318894e-05, -1.4463580162766191e-06, -1.2836427394454695e-05, -2.1695370244148659e-06, -2.1695370244148659e-06, -1.4463580162765687e-06, -1.4463580162766285e-06, -1.8079475203457443e-06, -1.4463580162766302e-06, -1.8079475203457539e-06, -3.796689792726068e-06, -1.4463580162765906e-06, -9.0397376017287174e-07, -4.1582792967951665e-06, -1.4463580162766105e-06, -2.1695370244148515e-06, 0.0007360154355327543, -9.0397376017287566e-07, -3.6158950406915711e-07, -1.807947520345712e-07, -1.8079475203457708e-07, -1.4463580162766302e-06, -2.1695370244148591e-06, -1.0847685122074156e-06, -7.2317900813830576e-07, -1.4463580162766246e-06, -1.4463580162766045e-06, -1.4463580162766045e-06, -2.8927160325532091e-06, -1.4463580162766075e-06, -7.2317900813830883e-07, -2.8927160325532091e-06, -1.4463580162766079e-06, -7.2317900813830841e-07, -1.4463580162766045e-06, -1.8079475203457599e-07, -1.446358016276599e-06, -1.4463580162765982e-06, -2.8927160325532468e-06, -4.3390740488297149e-06, -1.4463580162765834e-06, -2.8927160325532523e-06, -2.8927160325532472e-06, -1.4463580162766079e-06, -1.4463580162766083e-06, -1.4463580162766105e-06, -1.4463580162766092e-06, -1.6271527683111527e-06, -6.1470215691755802e-06, -3.6158950406915103e-07, -1.4463580162765736e-06, -1.4463580162766071e-06, -1.6271527683111915e-06, -4.7006635528989303e-06, -1.4463580162766238e-06, -1.446358016276585e-06, -1.4463580162766302e-06, -7.2317900813830862e-07, -7.2317900813830883e-07, -1.8079475203457771e-07, -1.8079475203457882e-07, -1.8079475203457109e-07, -3.6158950406915479e-07, -3.0735107845877943e-06, -5.4238425610371663e-06, -2.1695370244148507e-06, -1.0847685122074177e-06, -1.8079475203457697e-07, -7.2317900813830819e-07, -2.8927160325532281e-06, -4.3390740488297081e-06, -1.4463580162765732e-06, -7.2317900813830819e-07, -2.8927160325532315e-06, -2.8927160325532298e-06, -7.2317900813830819e-07, -2.1695370244148498e-06, -1.44635801627661e-06, -1.8079475203457856e-07, -3.6158950406914489e-07, -7.2317900813830819e-07, -7.2317900813828935e-07, -1.6271527683111538e-06, -9.0397376017287693e-07, -1.4463580162766221e-06, -2.8927160325532103e-06, -1.3017222146489232e-05, -7.2317900813831381e-07, -1.807947520345766e-07, -1.0847685122074326e-05, -1.4463580162766136e-06, -8.6781480976592638e-06, -8.678148097659423e-06, -9.039737601728796e-06, -8.6781480976592638e-06, -7.2317900813831381e-07, -7.2317900813831359e-07, -1.4463580162766158e-06, -1.4463580162766145e-06, -7.2317900813830703e-07, -7.2317900813830703e-07, -1.4463580162766268e-06, -1.8079475203457845e-07, -1.4463580162766276e-06, -1.8079475203457686e-07, -1.8079475203457766e-07, -1.2655632642420167e-05, -7.2317900813830703e-07, -7.2317900813830703e-07, -1.1028479874109001e-05, -3.6158950406915637e-07, -1.3017222146489222e-05, -1.3017222146489222e-05, -1.4463580162766132e-06, -1.807947520345766e-07, -1.4463580162766145e-06, -1.3017222146489222e-05, -1.3017222146489218e-05, -1.4463580162766136e-06, -1.4463580162766124e-06, -3.615895040691488e-07, -3.6158950406914282e-07, -2.8927160325532124e-06, -1.4463580162766128e-06, -1.4463580162766132e-06, -5.4238425610371309e-07, -2.8927160325532124e-06, -2.410596693794334e-06, -2.4105966937943306e-06, -2.4105966937943289e-06, -2.4105966937943348e-06, -1.2052983468971568e-06, -1.2052983468971568e-06, -2.4105966937943119e-06, -2.4105966937943119e-06, -3.0132458672429058e-07, -3.0132458672429063e-07, -6.0566241931582463e-05, -6.0264917344858107e-05, -1.5066229336214513e-06, -3.0132458672429058e-07, -9.0397376017286094e-07, -3.013245867242917e-06, -2.4105966937942906e-05, -6.0264917344858127e-07, -2.7721861978634897e-05, -3.0132458672428889e-07, -4.8211933875886586e-06, -4.8211933875886603e-06, -2.4105966937943128e-06, -2.4105966937943111e-06, -2.410596693794313e-05, -2.410596693794313e-05, -2.4105966937943331e-06, -6.8400681186413966e-05, -6.026491734485837e-07, -6.0264917344857944e-05, -4.8211933875886569e-06, -2.4105966937943297e-06, -2.410596693794334e-06, -3.0132458672428852e-07, -3.013245867242909e-07, -2.4105966937943263e-06, -2.4105966937943246e-06, -6.026491734485837e-07, -6.0264917344858392e-07, -3.0132458672428878e-07, -3.0132458672429005e-07, -2.4105966937943098e-06, -1.5066229336214437e-06, -9.0397376017287301e-07, -1.2052983468971568e-06, -1.2052983468971568e-06, -3.0132458672429058e-07, -4.5198688008644226e-06, -2.4105966937943191e-06, -2.4105966937943187e-06, -2.7119212805186107e-06, -2.4105966937943136e-06, -4.5198688008643955e-06, -6.0264917344858127e-07, -3.0132458672429153e-07, -2.4105966937943128e-06, -2.4105966937943119e-06, -3.013245867242909e-07, -3.0132458672429016e-07, -2.4105966937943183e-06, -2.4105966937943196e-06, -6.0264917344858582e-07, -3.0132458672428984e-07, -2.4105966937943162e-06, -4.8211933875886527e-06, -3.0132458672429124e-06, -2.4105966937943238e-06, -4.8211933875886442e-06, -3.01324586724291e-07, -2.4105966937943174e-06, -5.1225179743129192e-06, -2.4105966937943234e-06, -2.4105966937943204e-06, -4.8211933875886561e-06, -9.6423867751773664e-06, -7.5331146681072566e-06, -2.4105966937943098e-06, -4.8211933875886561e-06, -4.8211933875886578e-06, -1.2052983468971678e-06, -2.4105966937943191e-06, -3.0132458672429094e-06, -3.3145704539671764e-06, -1.2052983468971678e-06, -4.8211933875886866e-06, -2.4105966937943221e-06, -2.410596693794323e-06, -2.4105966937943225e-06, -6.0264917344858561e-07, -2.4105966937943314e-06, -2.4105966937943098e-06, -3.0132458672429159e-07, -2.4105966937943102e-06, -6.026491734485818e-07, -2.4105966937943314e-06, -2.4105966937943255e-06, -2.4105966937943238e-06, -3.0132458672429111e-07, -4.8211933875886595e-06, -4.8211933875886578e-06, -3.0132458672429048e-07, -2.4105966937943225e-06, -2.410596693794323e-06, -3.0132458672429048e-07, -2.410596693794334e-06, -2.4105966937943348e-06, -2.4105966937943204e-06, -2.4105966937943348e-06, -7.2317900813828842e-06, -2.4105966937943323e-06, -2.410596693794317e-06, -2.410596693794317e-06, -3.0132458672428899e-07, -2.4105966937943153e-06, -2.4105966937943166e-06, -4.8211933875886442e-06, -1.2052983468971568e-06, -5.4238425610372061e-06, -1.2052983468971568e-06, -3.0132458672429164e-07, -6.0264917344858053e-07, -3.9172196274157455e-06, -2.4105966937943238e-06, -4.8211933875886629e-06, -2.5311265284840098e-05, -2.4105966937943183e-06, -2.6516563631737692e-05, -2.4105966937943187e-06, -2.4105966937943204e-06, -4.8211933875886578e-06, -2.4105966937943299e-05, -4.8211933875886561e-06, -2.4407291524667415e-05, -3.0132458672428857e-07, -4.8211933875886544e-06, -4.8211933875886595e-06, -1.2052983468971661e-06, -2.5311265284840098e-05, -2.4105966937942906e-05, -2.410596693794316e-05, -2.4105966937943326e-05, -3.013245867242909e-07, -1.2052983468971551e-06, -3.0132458672428963e-07, -3.0132458672429132e-07, -3.0132458672429175e-07, -2.4105966937943255e-06, -2.4105966937943255e-06, -2.4105966937943246e-06, -2.4105966937943238e-06, -3.0132458672428963e-07, -3.0132458672428984e-07, -3.0132458672428868e-07, -2.4105966937943289e-06, -3.0132458672429221e-06, -6.0264917344858273e-06, -4.8211933875886781e-06, -4.8211933875886408e-06, -2.4105966937943297e-06, -7.231790081382957e-06, -9.0397376017287672e-07, -2.6516563631737564e-05, -4.8211933875886425e-06, -2.1695370244148679e-05, -3.0132458672429079e-07, -3.0132458672429026e-07, -7.53311466810726e-06, -4.8211933875886442e-06, -2.4105966937943191e-06, -2.1092721070700187e-06, -1.2052983468971539e-06, -6.0264917344858116e-07, -2.1695370244148679e-05, -6.0264917344858127e-07, -1.2052983468971568e-06, -1.2052983468971568e-06, -2.1695370244148686e-05, -2.4105966937943145e-06, -3.0132458672429005e-07, -2.4105966937943196e-06, -3.0132458672428868e-07, -2.4105966937943204e-06, -3.0132458672429145e-06, -9.0397376017287788e-07, -2.4105966937943204e-06, -4.5198688008643252e-06, -3.0132458672428878e-07, -2.4105966937943153e-06, -6.026491734485837e-07, -6.0264917344858392e-07, -6.0264917344858296e-07, -3.0132458672429048e-07, -1.8079475203457418e-06, -9.0397376017287513e-07, -2.4105966937943272e-06, -2.4105966937943263e-06, -4.821193387588651e-06, -7.8344392548315147e-06, -6.9304654946585914e-06, -3.0132458672428878e-07, -4.8211933875886645e-06, -2.4105966937943289e-06, -1.807947520345746e-06, -6.0264917344857873e-07, -3.0132458672428984e-07, -3.0132458672429132e-07, -2.4105966937943326e-05, -2.410596693794316e-05, -4.8814583049335351e-05, -2.4105966937943157e-05, -2.4105966937943299e-05, -1.2052983468971678e-06, -6.026491734485801e-07, -2.4105966937943255e-06, -2.7119212805186124e-06, -1.2052983468971678e-06, -3.3145704539671921e-06, -3.0132458672429069e-07, -3.0132458672428889e-07, -4.8211933875886307e-06, -2.4105966937943077e-06, -2.410596693794317e-06, 0.00024521794867622682, -3.0132458672429058e-07, -1.2052983468971627e-06, -1.2052983468971627e-06, -4.8211933875886645e-06, -2.410596693794328e-06, -3.0132458672428931e-07, -4.881458304933485e-05, -2.4105966937943263e-06, -2.4105966937943272e-06, -3.0132458672429048e-07, -1.2052983468971627e-06, -1.2052983468971627e-06, -6.0264917344857756e-07, -6.0264917344857735e-07, -9.039737601728674e-07, -3.0132458672429063e-07, -6.0264917344857735e-07, -6.0264917344857756e-07, -3.0132458672428889e-07, -3.013245867242909e-07, -1.2052983468971568e-06, -3.6158950406914683e-06, -2.4105966937943077e-06, -3.0132458672428952e-07, -3.0132458672428889e-07, -5.4238425610372036e-06, -3.013245867242901e-07, -1.2052983468971657e-06, -6.0264917344858328e-07, -4.8211933875886273e-06, -4.8211933875886256e-06, -1.5066229336214587e-06, -1.2052983468971604e-06, -6.0264917344858529e-07, 0.00098026914553145513, -2.5612589871564596e-05, -3.0132458672429005e-07, -1.2052983468971606e-06, -1.2052983468971602e-06, -4.8211933875886239e-06, -4.821193387588629e-06, -1.2052983468971611e-06, -1.2052983468971551e-06, -1.2052983468971551e-06, -3.0132458672428963e-07, -1.3860930989317327e-05, -3.0132458672428895e-06, -3.0132458672429111e-07, -2.4105966937943272e-06, -2.410596693794334e-06, -2.4105966937943263e-06, -4.821193387588629e-06, -2.4105966937943064e-06, -4.8211933875886239e-06, -2.410596693794334e-06, -2.410596693794334e-06, -9.2506648124356659e-05, -2.4105966937943297e-06, -6.0264917344857917e-05, -2.4105966937943153e-06, -6.0264917344858137e-07, -1.8079475203457314e-05, -3.6158950406914819e-06, -1.5066229336214376e-06, -1.8079475203457548e-05, -3.0132458672428899e-07, -2.4105966937943225e-06, -2.410596693794323e-06, -4.881458304933485e-05, -2.4105966937943132e-06, -2.4105966937943136e-06, -6.9003330359862299e-05, -9.0397376017287524e-07, -6.0264917344857904e-05, -2.410596693794323e-06, -2.4105966937943225e-06, -3.0132458672428963e-07, -2.4105966937943234e-06, -2.4105966937943221e-06, -3.0132458672428942e-07, -4.8211933875886256e-06, -4.8211933875886273e-06, -6.0264917344858296e-07, -1.2052983468971627e-06, -1.2052983468971627e-06, -2.4105966937943289e-06, -2.4105966937943289e-06, -4.8814583049335351e-05, -2.4105966937943263e-06, -2.4105966937943272e-06, -8.1357638415557931e-06, -2.8927160325531699e-05, -2.4105966937943221e-06, -2.1394045657424495e-05, -3.6158950406915026e-06, -3.6158950406915026e-06, -2.4105966937943306e-06, -2.4105966937943348e-06, -3.0132458672429234e-06, -2.410596693794334e-06, -3.0132458672429183e-06, -6.3278163212100854e-06, -2.410596693794317e-06, -1.5066229336214606e-06, -6.9304654946586667e-06, -2.4105966937943128e-06, -3.6158950406914853e-06, -9.0397376017287566e-07, 0.0012260897433811365, -6.0264917344858307e-07, -3.013245867242909e-07, -3.0132458672429005e-07, -2.410596693794334e-06, -3.6158950406914971e-06, -1.807947520345746e-06, -1.2052983468971577e-06, -2.4105966937943297e-06, -2.4105966937943331e-06, -2.410596693794334e-06, -4.8211933875886213e-06, -2.4105966937943128e-06, -1.2052983468971602e-06, -4.8211933875886171e-06, -2.4105966937943119e-06, -1.2052983468971606e-06, -2.410596693794334e-06, -3.0132458672428899e-07, -2.4105966937943119e-06, -2.4105966937943128e-06, -4.8211933875886578e-06, -7.2317900813829909e-06, -2.4105966937943204e-06, -4.8211933875886569e-06, -4.8211933875886612e-06, -2.4105966937943119e-06, -2.4105966937943119e-06, -2.4105966937943128e-06, -2.4105966937943141e-06, -2.7119212805185882e-06, -1.0245035948625838e-05, -6.0264917344858709e-07, -2.4105966937943323e-06, -2.4105966937943119e-06, -2.7119212805185891e-06, -7.8344392548315079e-06, -2.4105966937943306e-06, -2.4105966937943196e-06, -2.410596693794334e-06, -1.2052983468971604e-06, -1.2052983468971604e-06, -3.0132458672429079e-07, -3.0132458672429175e-07, -3.01324586724291e-07, -6.0264917344858095e-07, -5.1225179743129192e-06, -9.0397376017286571e-06, -3.6158950406914734e-06, -1.8079475203457418e-06, -3.0132458672428995e-07, -1.2052983468971596e-06, -4.8211933875886425e-06, -7.2317900813829587e-06, -2.4105966937943323e-06, -1.2052983468971598e-06, -4.8211933875886391e-06, -4.8211933875886408e-06, -1.2052983468971598e-06, -3.6158950406914717e-06, -2.4105966937943132e-06, -3.0132458672429153e-07, -6.0264917344858624e-07, -1.2052983468971596e-06, -1.2052983468971611e-06, -2.7119212805185971e-06, -1.5066229336214581e-06, -2.4105966937943272e-06, -4.8211933875886527e-06, -2.169537024414874e-05, -1.2052983468971661e-06, -3.0132458672428963e-07, -1.8079475203457318e-05, -2.410596693794317e-06, -1.4463580162766017e-05, -1.4463580162766011e-05, -1.5066229336214527e-05, -1.4463580162766017e-05, -1.2052983468971661e-06, -1.2052983468971661e-06, -2.4105966937943187e-06, -2.41059669379432e-06, -1.2052983468971555e-06, -1.2052983468971555e-06, -2.4105966937943314e-06, -3.0132458672429143e-07, -2.4105966937943314e-06, -3.0132458672428899e-07, -3.0132458672429048e-07, -2.1092721070700234e-05, -1.2052983468971555e-06, -1.2052983468971555e-06, -1.8380799790181576e-05, -6.0264917344858222e-07, -2.1695370244148686e-05, -2.1695370244148679e-05, -2.4105966937943174e-06, -3.0132458672428942e-07, -2.4105966937943162e-06, -2.1695370244148679e-05, -2.1695370244148899e-05, -2.410596693794317e-06, -2.4105966937943187e-06, -6.0264917344857883e-07, -6.026491734485818e-07, -4.8211933875886205e-06, -2.4105966937943179e-06, -2.410596693794317e-06, -9.0397376017286581e-07, -4.8211933875886205e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -2.4226496772633088e-05, -2.4105966937943163e-05, -6.0264917344858137e-07, -1.2052983468971528e-07, -3.615895040691523e-07, -1.2052983468971704e-06, -9.6423867751773765e-06, -2.4105966937943056e-07, -1.1088744791453796e-05, -1.2052983468971531e-07, -1.928477355035444e-06, -1.9284773550354436e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751773426e-06, -9.6423867751773562e-06, -9.6423867751772202e-07, -2.736027247456514e-05, -2.4105966937943114e-07, -2.4105966937943479e-05, -1.928477355035444e-06, -9.6423867751772224e-07, -9.6423867751772202e-07, -1.2052983468971528e-07, -1.2052983468971531e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -2.4105966937943114e-07, -2.4105966937943114e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772181e-07, -6.0264917344858137e-07, -3.6158950406915251e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971528e-07, -1.8079475203457477e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.0847685122074198e-06, -9.6423867751772245e-07, -1.8079475203457594e-06, -2.4105966937943051e-07, -1.2052983468971552e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971525e-07, -1.2052983468971528e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -2.4105966937943051e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.2052983468971678e-06, -9.6423867751772224e-07, -1.9284773550354445e-06, -1.2052983468971525e-07, -9.6423867751772224e-07, -2.049007189725141e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -3.8569547100708957e-06, -3.0132458672429035e-06, -9.6423867751772224e-07, -1.928477355035444e-06, -1.928477355035444e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -1.2052983468971683e-06, -1.3258281815868606e-06, -4.8211933875886101e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -2.4105966937943051e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -1.2052983468971523e-07, -9.6423867751772224e-07, -2.4105966937943051e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971528e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.2052983468971528e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.2052983468971528e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772245e-07, -9.6423867751772202e-07, -2.8927160325532175e-06, -9.6423867751772202e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -4.8211933875886122e-07, -2.1695370244148439e-06, -4.8211933875886122e-07, -1.2052983468971525e-07, -2.4105966937943061e-07, -1.5668878509663165e-06, -9.6423867751772224e-07, -1.9284773550354445e-06, -1.0124506113936147e-05, -9.6423867751772224e-07, -1.0606625452694888e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.928477355035444e-06, -9.6423867751773308e-06, -1.928477355035444e-06, -9.7629166098670659e-06, -1.2052983468971528e-07, -1.928477355035444e-06, -1.928477355035444e-06, -4.8211933875886101e-07, -1.0124506113936141e-05, -9.6423867751773765e-06, -9.642386775177324e-06, -9.6423867751773477e-06, -1.2052983468971525e-07, -4.8211933875886101e-07, -1.2052983468971531e-07, -1.2052983468971525e-07, -1.2052983468971557e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772202e-07, -1.2052983468971725e-06, -2.410596693794339e-06, -1.928477355035444e-06, -1.9284773550354445e-06, -9.6423867751772202e-07, -2.8927160325532209e-06, -3.6158950406915786e-07, -1.0606625452694976e-05, -1.9284773550354445e-06, -8.6781480976594095e-06, -1.2052983468971528e-07, -1.2052983468971531e-07, -3.0132458672429136e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -8.4370884282800558e-07, -4.8211933875886122e-07, -2.4105966937943051e-07, -8.6781480976594061e-06, -2.4105966937943051e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -8.6781480976594061e-06, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.2052983468971678e-06, -3.6158950406914081e-07, -9.6423867751772245e-07, -1.8079475203457481e-06, -1.2052983468971531e-07, -9.6423867751772245e-07, -2.4105966937943114e-07, -2.4105966937943114e-07, -2.4105966937943051e-07, -1.2052983468971531e-07, -7.2317900813830915e-07, -3.6158950406915706e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.9284773550354445e-06, -3.1337757019326237e-06, -2.7721861978634299e-06, -1.2052983468971531e-07, -1.9284773550354445e-06, -9.6423867751772224e-07, -7.2317900813831084e-07, -2.4105966937943056e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -9.6423867751773477e-06, -9.642386775177324e-06, -1.9525833219734196e-05, -9.642386775177324e-06, -9.6423867751773308e-06, -4.8211933875886101e-07, -2.4105966937943056e-07, 0.00049007430784838476, -1.0847685122074177e-06, -4.8211933875886101e-07, -1.3258281815868675e-06, -1.2052983468971528e-07, -1.2052983468971531e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.928477355035444e-06, -9.6423867751772224e-07, -1.2052983468971531e-07, -1.9525833219734149e-05, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.2052983468971528e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -3.6158950406915251e-07, -1.2052983468971525e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -1.2052983468971525e-07, -4.8211933875886091e-07, -1.4463580162766115e-06, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -2.169537024414849e-06, -1.2052983468971528e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -6.0264917344858413e-07, -4.8211933875886112e-07, -2.4105966937943051e-07, -7.2317900813830502e-07, -1.0245035948625833e-05, -1.2052983468971531e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -5.54437239572687e-06, -1.205298346897163e-06, -1.2052983468971525e-07, -9.6423867751772202e-07, -9.6423867751772181e-07, -9.6423867751772202e-07, -1.9284773550354445e-06, -9.6423867751772181e-07, -1.9284773550354445e-06, -9.6423867751772181e-07, -9.6423867751772181e-07, -3.7002659249743407e-05, -9.6423867751772224e-07, -2.4105966937943316e-05, -9.6423867751772245e-07, -2.4105966937943051e-07, -7.2317900813829672e-06, -1.4463580162766105e-06, -6.0264917344858328e-07, -7.2317900813830493e-06, -1.2052983468971531e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.9525833219734149e-05, -9.6423867751772224e-07, -9.6423867751772224e-07, -2.760133214394463e-05, -3.615895040691406e-07, -2.4105966937943336e-05, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.2052983468971528e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.4105966937943051e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.9525833219734196e-05, -9.6423867751772202e-07, -9.6423867751772202e-07, -3.2543055366223021e-06, -1.1570864130212884e-05, -9.6423867751772245e-07, -8.557618262969649e-06, -1.4463580162766096e-06, -1.4463580162766096e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.2052983468971731e-06, -9.6423867751772202e-07, -1.2052983468971702e-06, -2.5311265284840411e-06, -9.6423867751772245e-07, -6.0264917344858582e-07, -2.7721861978634342e-06, -9.6423867751772224e-07, -1.4463580162766105e-06, -3.6158950406915711e-07, -6.0264917344858307e-07, 0.00049079748685652272, -1.2052983468971525e-07, -1.2052983468971531e-07, -9.6423867751772202e-07, -1.44635801627661e-06, -7.2317900813831042e-07, -4.8211933875886122e-07, -9.6423867751772224e-07, -9.6423867751772202e-07, -9.6423867751772181e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -4.8211933875886112e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -4.8211933875886112e-07, -9.6423867751772181e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -2.8927160325531506e-06, -9.6423867751772245e-07, -1.928477355035444e-06, -1.9284773550354436e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.0847685122074249e-06, -4.0980143794503083e-06, -2.4105966937943045e-07, -9.6423867751772202e-07, -9.6423867751772245e-07, -1.0847685122074249e-06, -3.1337757019326267e-06, -9.6423867751772202e-07, -9.6423867751772245e-07, -9.6423867751772202e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.2052983468971528e-07, -1.2052983468971557e-07, -1.2052983468971525e-07, -2.4105966937943061e-07, -2.0490071897252092e-06, -3.6158950406914929e-06, -1.4463580162766105e-06, -7.2317900813830915e-07, -1.2052983468971531e-07, -4.8211933875886112e-07, -1.9284773550354445e-06, -2.8927160325532196e-06, -9.6423867751772202e-07, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886112e-07, -1.4463580162766105e-06, -9.6423867751772224e-07, -1.2052983468971525e-07, -2.4105966937943051e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -1.0847685122074232e-06, -6.0264917344858497e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -8.6781480976593959e-06, -4.8211933875886101e-07, -1.2052983468971531e-07, -7.2317900813829672e-06, -9.6423867751772224e-07, -5.7854320651065265e-06, -5.7854320651064401e-06, -6.0264917344858061e-06, -5.7854320651065265e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772202e-07, -1.2052983468971525e-07, -9.6423867751772202e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -8.4370884282800308e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.3523199160726929e-06, -2.4105966937943051e-07, -8.6781480976594061e-06, -8.6781480976594061e-06, -9.6423867751772224e-07, -1.2052983468971528e-07, -9.6423867751772224e-07, -8.6781480976594095e-06, -8.6781480976593926e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -2.4105966937943051e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.6158950406915251e-07, -1.9284773550354449e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -1.211324838631652e-05, -1.2052983468971555e-05, -3.0132458672429005e-07, -6.0264917344857653e-08, -1.8079475203457541e-07, -6.026491734485837e-07, -4.8211933875886849e-06, -1.2052983468971531e-07, -5.5443723957269065e-06, -6.0264917344857666e-08, -9.6423867751772224e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886849e-06, -4.8211933875886849e-06, -4.8211933875886112e-07, -1.3680136237282607e-05, -1.2052983468971525e-07, -1.2052983468971712e-05, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971525e-07, -1.2052983468971525e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.8211933875886112e-07, -3.0132458672429005e-07, -1.8079475203457551e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857653e-08, -9.0397376017288053e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -5.4238425610371436e-07, -4.8211933875886133e-07, -9.0397376017287735e-07, -1.2052983468971528e-07, -6.026491734485764e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -9.6423867751772245e-07, -6.0264917344858254e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -1.0245035948625733e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -1.928477355035444e-06, -1.5066229336214484e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -6.0264917344858275e-07, -6.6291409079343367e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857627e-08, -4.8211933875886122e-07, -1.2052983468971533e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -9.6423867751772224e-07, -9.6423867751772224e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886112e-07, -1.4463580162766037e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -1.0847685122074262e-06, -2.4105966937943066e-07, -6.0264917344857653e-08, -1.2052983468971533e-07, -7.8344392548315742e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -5.0622530569680822e-06, -4.8211933875886122e-07, -5.3033127263474524e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772224e-07, -4.8211933875886535e-06, -9.6423867751772245e-07, -4.8814583049335245e-06, -6.0264917344857653e-08, -9.6423867751772245e-07, -9.6423867751772224e-07, -2.4105966937943056e-07, -5.0622530569680822e-06, -4.8211933875886849e-06, -4.8211933875886501e-06, -4.8211933875886629e-06, 0.00024545900834560644, -2.4105966937943051e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -6.0264917344857627e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.8211933875886133e-07, -6.0264917344858032e-07, -1.2052983468971666e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -1.4463580162766045e-06, -1.8079475203457819e-07, -5.3033127263474947e-06, -9.6423867751772245e-07, -4.3390740488297217e-06, -6.0264917344857666e-08, -6.0264917344857666e-08, -1.5066229336214534e-06, -9.6423867751772266e-07, -4.8211933875886122e-07, -4.2185442141401227e-07, -2.4105966937943056e-07, -1.2052983468971528e-07, -4.3390740488297217e-06, -1.2052983468971528e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.33907404882972e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -6.0264917344857989e-07, -1.8079475203457557e-07, -4.8211933875886133e-07, -9.039737601728746e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -1.2052983468971525e-07, -1.2052983468971525e-07, -1.2052983468971528e-07, -6.0264917344857666e-08, -3.6158950406915309e-07, -1.8079475203457779e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.5668878509663106e-06, -1.3860930989317272e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.6158950406915394e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.8211933875886629e-06, -4.8211933875886501e-06, -9.7629166098670811e-06, -4.8211933875886501e-06, -4.8211933875886535e-06, -2.4105966937943061e-07, -1.2052983468971531e-07, -4.8211933875886112e-07, -5.4238425610371098e-07, -2.4105966937943061e-07, -6.6291409079343441e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -9.6423867751772266e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -9.7629166098670574e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.8079475203457551e-07, -6.026491734485764e-08, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -2.4105966937943061e-07, -7.2317900813830227e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -1.0847685122074287e-06, -6.0264917344857653e-08, -2.4105966937943051e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.0132458672429138e-07, -2.4105966937943061e-07, -1.2052983468971528e-07, -3.6158950406915103e-07, -5.1225179743129167e-06, -6.0264917344857666e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943066e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.0264917344857666e-08, -2.7721861978634401e-06, -6.026491734485801e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.8211933875886101e-07, -9.6423867751772245e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -1.8501329624871626e-05, -4.8211933875886122e-07, -1.2052983468971631e-05, -4.8211933875886133e-07, -1.2052983468971528e-07, -3.615895040691476e-06, -7.2317900813829634e-07, -3.013245867242909e-07, -3.6158950406915162e-06, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.7629166098670574e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.3800666071972352e-05, -1.8079475203457546e-07, -1.2052983468971641e-05, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971528e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.7629166098670811e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.6271527683111902e-06, -5.7854320651064198e-06, -4.8211933875886122e-07, -4.2788091314848406e-06, -7.2317900813830184e-07, -7.2317900813830184e-07, -4.8211933875886133e-07, -4.8211933875886112e-07, -6.0264917344858053e-07, -4.8211933875886112e-07, -6.026491734485837e-07, -1.2655632642420197e-06, -4.8211933875886133e-07, -3.0132458672428995e-07, -1.3860930989317201e-06, -4.8211933875886122e-07, -7.2317900813829549e-07, -1.807947520345712e-07, -3.013245867242909e-07, -1.2052983468971525e-07, 0.00024545900834560644, -6.0264917344857666e-08, -4.8211933875886112e-07, -7.2317900813830205e-07, -3.6158950406915373e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886101e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.4105966937943061e-07, -4.8211933875886101e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772224e-07, -1.4463580162766041e-06, -4.8211933875886133e-07, -9.6423867751772224e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -5.4238425610371479e-07, -2.0490071897251584e-06, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -5.4238425610373035e-07, -1.5668878509663123e-06, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886112e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.0264917344857653e-08, -6.0264917344857627e-08, -6.0264917344857666e-08, -1.2052983468971533e-07, -1.0245035948625671e-06, -1.807947520345738e-06, -7.2317900813829888e-07, -3.6158950406915309e-07, -6.0264917344857666e-08, -2.4105966937943061e-07, -9.6423867751772245e-07, -1.4463580162766045e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -7.2317900813830205e-07, -4.8211933875886122e-07, -6.026491734485764e-08, -1.2052983468971531e-07, -2.4105966937943061e-07, -2.4105966937943066e-07, -5.4238425610371373e-07, -3.0132458672429175e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.3390740488297166e-06, -2.4105966937943056e-07, -6.0264917344857666e-08, -3.6158950406914751e-06, -4.8211933875886122e-07, -2.8927160325532514e-06, -2.8927160325532082e-06, -3.013245867242895e-06, -2.8927160325532514e-06, -2.4105966937943056e-07, -2.4105966937943056e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -6.026491734485764e-08, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.218544214140029e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -3.6761599580363405e-06, -1.2052983468971531e-07, -4.33907404882972e-06, -4.3390740488297217e-06, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.3390740488297217e-06, -4.3390740488297132e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.8079475203457525e-07, -9.6423867751772266e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -1.211324838631649e-05, -1.2052983468971524e-05, -3.013245867242892e-07, -6.0264917344857666e-08, -1.8079475203457461e-07, -6.0264917344858222e-07, -4.8211933875886696e-06, -1.2052983468971536e-07, -5.5443723957269251e-06, -6.0264917344857679e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886696e-06, -4.8211933875886696e-06, -4.8211933875886122e-07, -1.3680136237282638e-05, -1.2052983468971531e-07, -1.2052983468971685e-05, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886101e-07, -3.013245867242892e-07, -1.8079475203457472e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857666e-08, -9.039737601728782e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610371479e-07, -4.8211933875886144e-07, -9.0397376017287503e-07, -1.2052983468971533e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344858084e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344857666e-08, -4.8211933875886144e-07, -1.0245035948625758e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6423867751772266e-07, -1.9284773550354445e-06, -1.5066229336214443e-06, -4.8211933875886144e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -6.0264917344858106e-07, -6.6291409079343197e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -1.2052983468971533e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.4463580162765969e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.084768512207451e-06, -2.4105966937943072e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -7.8344392548314471e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -5.0622530569680805e-06, -4.8211933875886144e-07, -5.3033127263474609e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -4.82119338758864e-06, -9.6423867751772266e-07, -4.8814583049335143e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -5.0622530569680788e-06, -4.8211933875886696e-06, -4.8211933875886366e-06, -4.8211933875886485e-06, -6.0264917344857666e-08, -2.4105966937943061e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -6.0264917344858307e-07, -1.2052983468971632e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -4.8211933875886133e-07, -1.4463580162765982e-06, -1.8079475203457739e-07, -5.3033127263475032e-06, -9.6423867751772266e-07, -4.3390740488297446e-06, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.5066229336214308e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.2185442141400459e-07, -2.4105966937943061e-07, -1.2052983468971533e-07, -4.3390740488297429e-06, -1.2052983468971533e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297429e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344858053e-07, -1.8079475203457472e-07, -4.8211933875886144e-07, -9.0397376017287238e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -3.6158950406915145e-07, -1.80794752034577e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -1.5668878509662869e-06, -1.3860930989317315e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -3.6158950406915219e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886485e-06, -4.8211933875886366e-06, -9.7629166098670557e-06, -4.8211933875886366e-06, -4.82119338758864e-06, -2.4105966937943061e-07, -1.2052983468971536e-07, -4.8211933875886112e-07, -5.4238425610371373e-07, -2.4105966937943061e-07, -6.6291409079343568e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.7629166098670354e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.8079475203457472e-07, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943061e-07, -7.2317900813829951e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.0847685122074342e-06, -6.0264917344857679e-08, -2.4105966937943051e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.0132458672429053e-07, -2.4105966937943072e-07, -1.2052983468971533e-07, -3.6158950406914944e-07, -5.1225179743129167e-06, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, 0.00024274708706508799, -6.0264917344857841e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.8501329624871541e-05, -4.8211933875886133e-07, -1.2052983468971604e-05, -4.8211933875886144e-07, -1.2052983468971533e-07, -3.6158950406914666e-06, -7.231790081382993e-07, -3.0132458672429005e-07, -3.6158950406915077e-06, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670354e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.3800666071972417e-05, -1.8079475203457461e-07, -1.2052983468971614e-05, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670557e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.6271527683111532e-06, -5.7854320651063927e-06, -4.8211933875886144e-07, -4.2788091314848601e-06, -7.2317900813829867e-07, -7.2317900813829867e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344858328e-07, -4.8211933875886122e-07, -6.0264917344858201e-07, -1.2655632642420189e-06, -4.8211933875886144e-07, -3.0132458672429132e-07, -1.3860930989317256e-06, -4.8211933875886144e-07, -7.231790081382993e-07, -1.8079475203457708e-07, -3.0132458672429005e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, 0.00024545900834560644, -4.8211933875886122e-07, -7.2317900813828808e-07, -3.6158950406914425e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.4463580162765978e-06, -4.8211933875886144e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610372696e-07, -2.0490071897251618e-06, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -5.4238425610371743e-07, -1.566887850966311e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.0245035948625697e-06, -1.8079475203457342e-06, -7.231790081382993e-07, -3.6158950406915145e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -9.6423867751772266e-07, -1.4463580162765975e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -7.2317900813829909e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -5.4238425610372612e-07, -3.013245867242909e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.3390740488297369e-06, -2.4105966937943061e-07, -6.0264917344857679e-08, -3.6158950406914666e-06, -4.8211933875886144e-07, -2.8927160325532387e-06, -2.8927160325531955e-06, -3.0132458672428887e-06, -2.8927160325532387e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.2185442141400442e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -3.6761599580363346e-06, -1.2052983468971533e-07, -4.3390740488297429e-06, -4.3390740488297429e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.3390740488297446e-06, -4.3390740488297352e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.8079475203457472e-07, -9.6423867751772287e-07, -3.8569547100709093e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100709059e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6905987090532434e-05, -9.6423867751772749e-05, -2.4105966937943272e-06, -4.8211933875886112e-07, -1.4463580162766111e-06, -4.8211933875886849e-06, -3.8569547100709574e-05, -9.6423867751772245e-07, -4.4354979165815089e-05, -4.8211933875886122e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100709574e-05, -3.8569547100709574e-05, -3.8569547100708898e-06, -0.00010944108989826045, -9.6423867751772202e-07, -9.6423867751774023e-05, -7.7139094201417762e-06, -3.8569547100708898e-06, 0.001960297231393539, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708873e-06, -2.4105966937943272e-06, -1.4463580162766119e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886112e-07, -7.2317900813830646e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488296743e-06, -3.8569547100708898e-06, -7.2317900813830392e-06, -9.6423867751772224e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886739e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886112e-07, -3.8569547100708898e-06, -8.1960287589005624e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -1.5427818840283549e-05, -1.2052983468971624e-05, -3.8569547100708898e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -1.928477355035444e-06, -3.8569547100708898e-06, -4.8211933875886756e-06, -5.3033127263474397e-06, -1.928477355035444e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772202e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -3.8569547100708898e-06, -9.6423867751772224e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -1.1570864130212884e-05, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -8.6781480976595332e-06, -1.9284773550354449e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -6.2675514038650654e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.0498024455744671e-05, -3.8569547100708898e-06, -4.2426501810779565e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -3.8569547100709337e-05, -7.7139094201417779e-06, -3.9051666439468291e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417762e-06, -1.9284773550354462e-06, -4.0498024455744657e-05, -3.8569547100709574e-05, -3.856954710070931e-05, -3.8569547100709404e-05, -4.8211933875886112e-07, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708889e-06, -4.8211933875886916e-06, -9.6423867751773596e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -3.8569547100708889e-06, -1.1570864130212899e-05, -1.4463580162766331e-06, -4.2426501810779897e-05, -7.7139094201417779e-06, -3.4712592390637584e-05, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.20529834689715e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.3748353713120215e-06, -1.928477355035444e-06, -9.6423867751772224e-07, -3.4712592390637584e-05, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.471259239063757e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886713e-06, -1.4463580162766124e-06, -3.8569547100708898e-06, -7.2317900813830188e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.89271603255324e-06, -1.4463580162766299e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -1.2535102807730202e-05, -1.1088744791453777e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -3.8569547100708889e-06, -2.8927160325532468e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100709404e-05, -3.856954710070931e-05, -7.8103332878936811e-05, -3.856954710070931e-05, -3.8569547100709337e-05, -1.928477355035444e-06, -9.6423867751772245e-07, -3.8569547100708873e-06, -4.3390740488296658e-06, -1.928477355035444e-06, -5.3033127263474702e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -7.8103332878936649e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.4463580162766119e-06, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -1.928477355035444e-06, -5.7854320651064528e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -8.6781480976593824e-06, -4.8211933875886122e-07, -1.9284773550354428e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.4105966937943378e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -2.8927160325532239e-06, -4.0980143794503334e-05, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -2.217748958290748e-05, -4.8211933875886544e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708881e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -0.00014801063699897377, -3.8569547100708889e-06, -9.6423867751773372e-05, -3.8569547100708898e-06, -9.6423867751772224e-07, -2.8927160325531896e-05, -5.7854320651064495e-06, -2.410596693794334e-06, -2.8927160325532218e-05, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.8103332878936649e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00011040532857577863, -1.4463580162766111e-06, -9.6423867751773454e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.8103332878936811e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.3017222146489201e-05, -4.6283456520851596e-05, -3.8569547100708898e-06, -3.4230473051878562e-05, -5.7854320651064418e-06, -5.7854320651064418e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -4.8211933875886933e-06, -3.8569547100708881e-06, -4.8211933875886832e-06, -1.0124506113936161e-05, -3.8569547100708898e-06, -2.4105966937943441e-06, -1.1088744791453727e-05, -3.8569547100708898e-06, -5.7854320651064495e-06, -1.4463580162766302e-06, -2.410596693794334e-06, -9.6423867751772202e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, 0.001960297231393539, -5.7854320651062885e-06, -2.892716032553182e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -1.1570864130212892e-05, -3.8569547100708898e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488298682e-06, -1.6392057517801206e-05, -9.6423867751772181e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -4.3390740488296946e-06, -1.2535102807730509e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100709093e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -8.1960287589005132e-06, -1.4463580162765951e-05, -5.7854320651064495e-06, -2.89271603255324e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -7.7139094201417779e-06, -1.1570864130212894e-05, -3.8569547100708881e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -5.7854320651064495e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.3390740488298089e-06, -2.4105966937943407e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.4712592390637557e-05, -1.9284773550354462e-06, -4.8211933875886122e-07, -2.8927160325531889e-05, -3.8569547100708898e-06, -2.3141728260426133e-05, -2.3141728260425791e-05, -2.4105966937943248e-05, -2.3141728260426133e-05, -1.9284773550354453e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -4.8211933875886101e-07, -3.8569547100708881e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.3748353713120083e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.9409279664290799e-05, -9.6423867751772224e-07, -3.471259239063757e-05, -3.4712592390637584e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.4712592390637584e-05, -3.4712592390637516e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.4463580162766119e-06, -7.7139094201417796e-06, -5.7854320651062868e-06, -5.7854320651062784e-06, -5.7854320651062716e-06, -5.7854320651062851e-06, -2.8927160325531692e-06, -2.8927160325531676e-06, -5.7854320651063605e-06, -5.7854320651063571e-06, -7.2317900813830195e-07, -7.2317900813830099e-07, -0.00014535898063579777, -0.000144635801627658, -3.6158950406914912e-06, -7.2317900813830184e-07, -2.1695370244149155e-06, -7.2317900813830138e-06, -5.785432065106367e-05, -1.446358016276602e-06, -6.653246874872265e-05, -7.2317900813829422e-07, -1.1570864130212853e-05, -1.1570864130212846e-05, -5.7854320651063571e-06, -5.7854320651063605e-06, -5.7854320651063561e-05, -5.7854320651063561e-05, -5.7854320651064283e-06, -0.0001641616348473922, -1.4463580162766124e-06, -0.00014463580162765811, -1.157086413021286e-05, 0.0019583687540385025, -5.7854320651062885e-06, -7.2317900813829358e-07, -7.2317900813830184e-07, -5.7854320651064012e-06, -5.785432065106408e-06, -1.4463580162766124e-06, -1.4463580162766124e-06, -7.2317900813829379e-07, -7.2317900813829867e-07, -5.785432065106408e-06, -3.6158950406914976e-06, -2.1695370244149002e-06, -2.8927160325531667e-06, -2.8927160325531701e-06, -7.2317900813830184e-07, -1.0847685122074316e-05, -5.7854320651063885e-06, -5.7854320651063902e-06, -6.5086110732446211e-06, -5.7854320651063537e-06, -1.0847685122074341e-05, -1.4463580162766039e-06, -7.2317900813830481e-07, -5.7854320651063571e-06, -5.7854320651063571e-06, -7.2317900813830227e-07, -7.2317900813830015e-07, -5.7854320651063936e-06, -5.7854320651063868e-06, -1.4463580162766052e-06, -7.2317900813829718e-07, -5.7854320651063741e-06, -1.1570864130212694e-05, -7.2317900813829968e-06, -5.7854320651064046e-06, -1.1570864130212752e-05, -7.2317900813830248e-07, -5.7854320651063783e-06, -1.2294043138351201e-05, -5.7854320651064003e-06, -5.7854320651063809e-06, -1.1570864130212843e-05, -2.3141728260425374e-05, -1.8079475203457304e-05, -5.785432065106358e-06, -1.1570864130212829e-05, -1.1570864130212823e-05, -2.8927160325532239e-06, -5.7854320651063876e-06, -7.2317900813829943e-06, -7.9549690895211295e-06, -2.8927160325532247e-06, -1.1570864130212687e-05, -5.7854320651064012e-06, -5.785432065106402e-06, -5.7854320651064037e-06, -1.4463580162765914e-06, -5.7854320651064351e-06, -5.785432065106358e-06, -7.2317900813830597e-07, -5.7854320651063563e-06, -1.4463580162765952e-06, -5.7854320651064317e-06, -5.7854320651064012e-06, -5.7854320651064046e-06, -7.2317900813828395e-07, -1.1570864130212829e-05, -1.1570864130212836e-05, -7.2317900813828607e-07, -5.7854320651063995e-06, -5.7854320651063978e-06, -7.2317900813830121e-07, -5.7854320651064461e-06, -5.7854320651064384e-06, -5.7854320651063792e-06, -5.7854320651064418e-06, -1.735629619531929e-05, -5.7854320651064384e-06, -5.7854320651063707e-06, -5.78543206510638e-06, -7.2317900813829845e-07, -5.7854320651063741e-06, -5.7854320651063817e-06, -1.1570864130212619e-05, -2.8927160325531701e-06, -1.301722214648944e-05, -2.8927160325531667e-06, -7.2317900813830481e-07, -1.4463580162765978e-06, -9.4013271057978759e-06, -5.7854320651064046e-06, -1.1570864130212691e-05, -6.0747036683617196e-05, -5.7854320651063936e-06, -6.3639752716169076e-05, -5.7854320651063842e-06, -5.7854320651063792e-06, -1.1570864130212823e-05, -5.7854320651063853e-05, -1.1570864130212829e-05, -5.8577499659202365e-05, -7.2317900813829379e-07, -1.1570864130212836e-05, -1.1570864130212816e-05, -2.8927160325531383e-06, -6.0747036683617183e-05, -5.785432065106367e-05, -5.7854320651063663e-05, -5.7854320651064029e-05, -7.2317900813830205e-07, -2.8927160325532099e-06, -7.2317900813829655e-07, -7.2317900813830375e-07, -7.2317900813830618e-07, -5.7854320651064046e-06, -5.7854320651064046e-06, -5.7854320651064012e-06, -5.7854320651064046e-06, -7.2317900813829655e-07, -7.2317900813829718e-07, -7.2317900813829676e-07, -5.7854320651064249e-06, -7.2317900813830222e-06, -1.4463580162766004e-05, -1.1570864130212735e-05, -1.157086413021277e-05, -5.7854320651064249e-06, -1.7356296195319161e-05, -2.1695370244148549e-06, -6.3639752716169483e-05, -1.1570864130212763e-05, -5.206888858595686e-05, -7.2317900813830163e-07, -7.2317900813829888e-07, -1.8079475203457494e-05, -1.1570864130212619e-05, -5.7854320651063885e-06, -5.0622530569680983e-06, -2.8927160325531735e-06, -1.4463580162766035e-06, -5.206888858595686e-05, -1.4463580162766039e-06, -2.8927160325531676e-06, -2.8927160325531692e-06, -5.206888858595686e-05, -5.78543206510633e-06, -7.2317900813828829e-07, -5.7854320651063876e-06, -7.2317900813829676e-07, -5.7854320651063842e-06, -7.2317900813830188e-06, -2.1695370244148998e-06, -5.7854320651063876e-06, -1.0847685122074412e-05, -7.2317900813829379e-07, -5.7854320651063351e-06, -1.4463580162766124e-06, -1.4463580162766124e-06, -1.4463580162766088e-06, -7.2317900813830015e-07, -4.3390740488297496e-06, -2.1695370244148591e-06, -5.7854320651064139e-06, -5.7854320651064207e-06, -1.1570864130212701e-05, -1.8802654211595779e-05, -1.6633117187180453e-05, -7.2317900813829379e-07, -1.1570864130212735e-05, -5.7854320651064181e-06, -4.3390740488297429e-06, -1.4463580162765918e-06, -7.2317900813829718e-07, -7.2317900813830375e-07, -5.7854320651064029e-05, -5.7854320651063663e-05, -0.00011715499931840401, -5.785432065106367e-05, -5.7854320651063853e-05, -2.8927160325532247e-06, -1.4463580162765969e-06, -5.7854320651063419e-06, -6.508611073244638e-06, -2.8927160325532239e-06, -7.9549690895211684e-06, -7.2317900813830174e-07, -7.2317900813829422e-07, -1.1570864130212768e-05, -5.785432065106369e-06, -5.7854320651063199e-06, -7.2317900813829909e-07, -7.2317900813830184e-07, -2.8927160325531464e-06, -2.8927160325531417e-06, -1.1570864130212735e-05, -5.7854320651064215e-06, -7.2317900813829125e-07, -0.00011715499931840523, -5.7854320651064173e-06, -5.7854320651064156e-06, -7.2317900813828607e-07, -2.8927160325531434e-06, -2.8927160325531443e-06, -1.446358016276588e-06, -1.446358016276588e-06, -2.1695370244148968e-06, -7.2317900813830205e-07, -1.446358016276588e-06, -1.446358016276588e-06, -7.2317900813829761e-07, -7.2317900813830227e-07, -2.892716032553182e-06, -8.6781480976595603e-06, -5.7854320651063673e-06, -7.2317900813829634e-07, -7.2317900813829422e-07, -1.3017222146489224e-05, -7.2317900813830004e-07, -2.8927160325531701e-06, -1.4463580162765865e-06, -1.1570864130212718e-05, -1.1570864130212724e-05, -3.6158950406915069e-06, -2.8927160325531972e-06, -1.4463580162766011e-06, -4.3390740488297818e-06, -6.1470215691755085e-05, -7.2317900813829888e-07, -2.8927160325531964e-06, -2.892716032553198e-06, -1.1570864130212731e-05, -1.1570864130212711e-05, -2.8927160325531989e-06, -2.8927160325531887e-06, -2.892716032553187e-06, -7.2317900813829634e-07, -3.3266234374361325e-05, -7.2317900813829528e-06, -7.2317900813830269e-07, -5.7854320651064156e-06, -5.7854320651063453e-06, -5.7854320651064173e-06, -1.1570864130212711e-05, -5.7854320651063444e-06, -1.1570864130212731e-05, -5.7854320651063444e-06, -5.7854320651063444e-06, -0.0002220159554984549, -5.7854320651064147e-06, -0.00014463580162765819, -5.7854320651063741e-06, -1.4463580162766045e-06, -4.3390740488297276e-05, -8.6781480976595806e-06, -3.6158950406914954e-06, -4.3390740488297276e-05, -7.231790081382921e-07, -5.7854320651064037e-06, -5.785432065106402e-06, -0.00011715499931840523, -5.7854320651063665e-06, -5.7854320651063648e-06, -0.00016560799286366914, -2.169537024414907e-06, -0.00014463580162765824, -5.7854320651063978e-06, -5.7854320651063995e-06, -7.2317900813829792e-07, -5.7854320651064003e-06, -5.7854320651064054e-06, -7.2317900813829612e-07, -1.1570864130212724e-05, -1.1570864130212718e-05, -1.4463580162766088e-06, -2.8927160325531443e-06, -2.8927160325531434e-06, -5.7854320651064181e-06, -5.7854320651064181e-06, -0.00011715499931840401, -5.7854320651064207e-06, -5.7854320651064139e-06, -1.9525833219734084e-05, -6.9425184781276618e-05, -5.7854320651064012e-06, -5.1345709577818782e-05, -8.6781480976594705e-06, -8.678148097659479e-06, -5.7854320651064215e-06, -5.7854320651064384e-06, -7.231790081383029e-06, -5.7854320651064461e-06, -7.2317900813830121e-06, -1.5186759170904272e-05, -5.7854320651063707e-06, -3.6158950406915111e-06, -1.6633117187180656e-05, -5.7854320651063681e-06, -8.6781480976595772e-06, -2.1695370244148591e-06, -3.6158950406914971e-06, -1.44635801627661e-06, -7.2317900813830205e-07, -7.2317900813828808e-07, -5.7854320651062885e-06, 0.0029375531310577578, -4.3390740488297319e-06, -2.8927160325531845e-06, -5.7854320651062733e-06, -5.7854320651064283e-06, -5.7854320651063444e-06, -1.1570864130212689e-05, -5.7854320651063571e-06, -2.892716032553198e-06, -1.1570864130212694e-05, -5.7854320651063571e-06, -2.8927160325531964e-06, -5.7854320651063453e-06, -7.231790081382921e-07, -5.7854320651063571e-06, -5.7854320651063571e-06, -1.1570864130212836e-05, -1.7356296195319222e-05, -5.7854320651063842e-06, -1.157086413021286e-05, -1.157086413021284e-05, -5.7854320651063571e-06, -5.7854320651063605e-06, -5.7854320651063681e-06, -5.7854320651063631e-06, -6.508611073244793e-06, -2.4588086276702327e-05, -1.4463580162765855e-06, -5.7854320651064384e-06, -5.7854320651063588e-06, -6.5086110732446075e-06, -1.8802654211595413e-05, -5.7854320651062784e-06, -5.7854320651063876e-06, -5.7854320651062868e-06, -2.8927160325531972e-06, -2.892716032553198e-06, -7.2317900813828501e-07, -7.2317900813830618e-07, -7.2317900813830269e-07, -1.4463580162766003e-06, -1.2294043138351177e-05, -2.1695370244148611e-05, 0.00097339894495414487, -4.3390740488297496e-06, -7.231790081382885e-07, -2.8927160325531955e-06, -1.1570864130212763e-05, -1.7356296195319236e-05, -5.7854320651064384e-06, -2.8927160325531955e-06, -1.1570864130212777e-05, -1.157086413021277e-05, -2.8927160325531955e-06, -8.6781480976595874e-06, -5.7854320651063665e-06, -7.2317900813830481e-07, -1.4463580162765859e-06, -2.8927160325531955e-06, -2.8927160325531989e-06, -6.5086110732447634e-06, -3.615895040691506e-06, -5.7854320651062851e-06, -1.1570864130212694e-05, -5.2068888585956901e-05, -2.8927160325531383e-06, -7.2317900813829676e-07, -4.339074048829729e-05, -5.78543206510638e-06, -3.4712592390637706e-05, -3.4712592390638349e-05, -3.6158950406914601e-05, -3.4712592390637706e-05, -2.8927160325531383e-06, -2.8927160325531375e-06, -5.7854320651063876e-06, -5.7854320651063842e-06, -2.8927160325531913e-06, -2.8927160325531913e-06, -5.7854320651064317e-06, -7.2317900813830438e-07, -5.7854320651064351e-06, -7.2317900813829824e-07, -7.2317900813830131e-07, -5.0622530569680669e-05, -2.8927160325531913e-06, -2.8927160325531913e-06, -4.4113919496436418e-05, -1.4463580162766069e-06, -5.206888858595686e-05, -5.206888858595686e-05, -5.7854320651063783e-06, -7.2317900813829708e-07, -5.7854320651063834e-06, -5.206888858595686e-05, -5.2068888585956847e-05, -5.7854320651063199e-06, -5.7854320651063351e-06, -1.4463580162765918e-06, -1.4463580162766033e-06, -1.1570864130212687e-05, -5.78543206510633e-06, -5.7854320651063249e-06, -2.1695370244148748e-06, -1.1570864130212687e-05, -2.8927160325531811e-06, -2.8927160325531692e-06, -2.8927160325531718e-06, -2.8927160325531803e-06, -1.4463580162765889e-06, -1.4463580162765893e-06, -2.8927160325532006e-06, -2.8927160325532006e-06, -3.6158950406915367e-07, -3.615895040691533e-07, -7.2679490317899658e-05, -7.2317900813829677e-05, -1.8079475203457409e-06, -3.6158950406915362e-07, -1.0847685122074438e-06, -3.6158950406914984e-06, -2.8927160325531767e-05, -7.2317900813830661e-07, -3.3266234374361468e-05, -3.6158950406914965e-07, -5.7854320651064698e-06, -5.7854320651064664e-06, -2.8927160325531989e-06, -2.8927160325532023e-06, -2.8927160325531713e-05, -2.8927160325531713e-05, -2.8927160325531532e-06, -8.2080817423696128e-05, -7.2317900813831148e-07, -7.2317900813829745e-05, -5.7854320651064732e-06, -2.8927160325531701e-06, -2.892716032553182e-06, -3.6158950406914944e-07, -3.6158950406915373e-07, -2.892716032553223e-06, -2.8927160325532247e-06, -7.2317900813831148e-07, -7.2317900813831148e-07, -3.6158950406914954e-07, -3.6158950406915198e-07, -2.8927160325531921e-06, -1.8079475203457378e-06, -1.0847685122074361e-06, -1.4463580162765897e-06, -1.4463580162765884e-06, -3.6158950406915362e-07, -5.4238425610371765e-06, -2.8927160325532154e-06, -2.8927160325532163e-06, -3.2543055366223148e-06, -2.8927160325531989e-06, -5.4238425610371892e-06, -7.2317900813830735e-07, -3.6158950406915521e-07, -2.8927160325531989e-06, -2.8927160325532006e-06, -3.6158950406915383e-07, -3.6158950406915277e-07, -2.892716032553218e-06, -2.8927160325532146e-06, -7.2317900813828808e-07, -3.6158950406915134e-07, -2.8927160325532074e-06, -5.7854320651063893e-06, -3.6158950406914895e-06, -2.892716032553223e-06, -5.7854320651064181e-06, -3.6158950406915394e-07, -2.8927160325532103e-06, -6.1470215691755835e-06, -2.8927160325532218e-06, -2.8927160325532124e-06, -5.7854320651064664e-06, -1.1570864130212775e-05, -9.0397376017287401e-06, -2.8927160325532002e-06, -5.7854320651064596e-06, -5.7854320651064562e-06, -1.4463580162766225e-06, -2.8927160325532141e-06, -3.6158950406914887e-06, -3.9774845447605783e-06, -1.446358016276623e-06, -5.7854320651063859e-06, -2.8927160325532222e-06, -2.8927160325532226e-06, -2.8927160325532235e-06, -7.2317900813829845e-07, -2.8927160325532391e-06, -2.8927160325532002e-06, -3.6158950406915563e-07, -2.8927160325531993e-06, -7.2317900813830269e-07, -2.8927160325532374e-06, -2.8927160325532209e-06, -2.8927160325532247e-06, -3.6158950406914616e-07, -5.7854320651064596e-06, -5.785432065106463e-06, -3.615895040691451e-07, -2.8927160325532209e-06, -2.8927160325532201e-06, -3.615895040691533e-07, -2.8927160325532451e-06, -2.8927160325532417e-06, -2.8927160325532124e-06, -2.8927160325532417e-06, -8.6781480976595467e-06, -2.8927160325532417e-06, -2.8927160325532057e-06, -2.8927160325532112e-06, -3.6158950406915177e-07, -2.8927160325532091e-06, -2.892716032553212e-06, -5.785432065106308e-06, -1.4463580162765884e-06, -6.5086110732447151e-06, -1.4463580162765897e-06, -3.6158950406915521e-07, -7.2317900813830459e-07, -4.700663552898921e-06, -2.8927160325532247e-06, -5.7854320651063876e-06, -3.0373518341808557e-05, -2.892716032553218e-06, -3.181987635808464e-05, -2.8927160325532141e-06, -2.8927160325532124e-06, -5.7854320651064562e-06, -2.8927160325531859e-05, -5.7854320651064596e-06, -2.9288749829601162e-05, -3.6158950406914954e-07, -5.785432065106463e-06, -5.7854320651064528e-06, -1.4463580162765884e-06, -3.0373518341808557e-05, -2.8927160325531767e-05, -2.8927160325531764e-05, -2.8927160325531943e-05, -3.6158950406915373e-07, -1.4463580162765958e-06, -3.6158950406915113e-07, -3.6158950406915457e-07, -3.6158950406915563e-07, -2.892716032553223e-06, -2.8927160325532247e-06, -2.892716032553223e-06, -2.892716032553223e-06, -3.6158950406915113e-07, -3.6158950406915145e-07, -3.6158950406915103e-07, -2.8927160325532349e-06, -3.6158950406915018e-06, -7.2317900813829841e-06, -5.7854320651063876e-06, -5.7854320651064274e-06, -2.8927160325532332e-06, -8.678148097659479e-06, -1.0847685122074131e-06, -3.1819876358084843e-05, -5.785432065106424e-06, -2.6034444292978471e-05, -3.6158950406915351e-07, -3.615895040691523e-07, -9.0397376017287435e-06, -5.785432065106308e-06, -2.8927160325532154e-06, -2.5311265284840466e-06, -1.4463580162765973e-06, -7.2317900813830714e-07, -2.6034444292978471e-05, -7.2317900813830735e-07, -1.4463580162765893e-06, -1.4463580162765889e-06, -2.6034444292978471e-05, -2.8927160325531735e-06, -3.6158950406914425e-07, -2.8927160325532158e-06, -3.6158950406915113e-07, -2.8927160325532124e-06, -3.6158950406915009e-06, -1.0847685122074357e-06, -2.8927160325532141e-06, -5.423842561037223e-06, -3.6158950406914944e-07, -2.8927160325531718e-06, -7.2317900813831148e-07, -7.2317900813831126e-07, -7.2317900813830999e-07, -3.6158950406915288e-07, -2.1695370244148481e-06, -1.0847685122074156e-06, -2.8927160325532285e-06, -2.8927160325532319e-06, -5.7854320651063097e-06, -9.4013271057978691e-06, -8.3165585935902703e-06, -3.6158950406914944e-07, -5.785432065106347e-06, -2.8927160325532298e-06, -2.1695370244148431e-06, -7.2317900813829401e-07, -3.6158950406915145e-07, -3.6158950406915457e-07, -2.8927160325531943e-05, -2.8927160325531764e-05, -5.8577499659201965e-05, -2.8927160325531767e-05, -2.8927160325531859e-05, -1.446358016276623e-06, -7.2317900813829401e-07, -2.8927160325531921e-06, -3.2543055366223156e-06, -1.4463580162766225e-06, -3.9774845447605944e-06, -3.6158950406915357e-07, -3.6158950406914976e-07, -5.7854320651063334e-06, -2.8927160325532057e-06, -2.8927160325531633e-06, -3.615895040691524e-07, -3.6158950406915362e-07, -1.4463580162765804e-06, -1.4463580162765812e-06, -5.7854320651063436e-06, -2.8927160325532315e-06, -3.6158950406914711e-07, -5.8577499659202575e-05, -2.8927160325532302e-06, -2.8927160325532294e-06, -3.615895040691452e-07, -1.4463580162765812e-06, -1.4463580162765808e-06, -7.231790081382993e-07, -7.231790081382993e-07, -1.0847685122074342e-06, -3.6158950406915373e-07, -7.231790081382993e-07, -7.231790081382993e-07, -3.6158950406915156e-07, -3.6158950406915373e-07, -1.4463580162766011e-06, -4.3390740488297217e-06, -2.8927160325532048e-06, -3.6158950406915092e-07, -3.6158950406914965e-07, -6.5086110732446219e-06, -3.6158950406915272e-07, -1.4463580162765956e-06, -7.2317900813829856e-07, -5.7854320651064012e-06, -5.7854320651064046e-06, -1.8079475203457492e-06, -1.4463580162766092e-06, -7.2317900813828829e-07, -2.1695370244148625e-06, -3.0735107845877536e-05, -3.6158950406915198e-07, -1.4463580162766088e-06, -1.4463580162766096e-06, -5.785432065106408e-06, -5.7854320651063978e-06, -1.4463580162766096e-06, -1.4463580162766045e-06, -1.4463580162766045e-06, -3.6158950406915103e-07, -1.6633117187180751e-05, -3.6158950406914679e-06, -3.6158950406915394e-07, -2.8927160325532294e-06, -2.8927160325531938e-06, -2.8927160325532302e-06, -5.7854320651063978e-06, -2.8927160325531934e-06, -5.785432065106408e-06, -2.8927160325531934e-06, -2.8927160325531934e-06, -0.00011100797774922786, -2.8927160325532298e-06, -7.2317900813829772e-05, -2.8927160325532091e-06, -7.2317900813830766e-07, -2.1695370244148713e-05, -4.3390740488297319e-06, -1.8079475203457431e-06, -2.1695370244148713e-05, -3.6158950406914796e-07, -2.8927160325532235e-06, -2.8927160325532226e-06, -5.8577499659202575e-05, -2.8927160325532044e-06, -2.8927160325532036e-06, 0.0013903116431458718, -1.0847685122074395e-06, -7.2317900813829826e-05, -2.8927160325532201e-06, -2.8927160325532209e-06, -3.6158950406915161e-07, -2.8927160325532218e-06, -2.8927160325532243e-06, -3.6158950406915071e-07, -5.7854320651064046e-06, -5.7854320651064012e-06, -7.2317900813830999e-07, -1.4463580162765808e-06, -1.4463580162765812e-06, -2.8927160325532298e-06, -2.8927160325532315e-06, -5.8577499659201965e-05, -2.8927160325532319e-06, -2.8927160325532285e-06, -9.7629166098670252e-06, -3.4712592390637916e-05, -2.8927160325532222e-06, -2.5672854788909398e-05, -4.3390740488297479e-06, -4.3390740488297479e-06, -2.8927160325532315e-06, -2.8927160325532417e-06, -3.615895040691506e-06, -2.8927160325532451e-06, -3.6158950406914963e-06, -7.5933795854521292e-06, -2.8927160325532074e-06, -1.8079475203457513e-06, -8.3165585935903652e-06, -2.8927160325532052e-06, -4.3390740488297319e-06, -1.0847685122074156e-06, -1.807947520345746e-06, -7.2317900813831042e-07, -3.6158950406915373e-07, -3.6158950406914425e-07, -2.892716032553182e-06, -4.3390740488297319e-06, 0.0014709461025532809, -1.4463580162766033e-06, -2.8927160325531709e-06, -2.8927160325531532e-06, -2.8927160325531934e-06, -5.7854320651063868e-06, -2.8927160325531989e-06, -1.4463580162766096e-06, -5.7854320651063868e-06, -2.8927160325531997e-06, -1.4463580162766088e-06, -2.8927160325531938e-06, -3.6158950406914806e-07, -2.8927160325532006e-06, -2.8927160325531989e-06, -5.785432065106463e-06, -8.6781480976594959e-06, -2.8927160325532141e-06, -5.7854320651064732e-06, -5.785432065106463e-06, -2.8927160325532006e-06, -2.8927160325532006e-06, -2.8927160325532052e-06, -2.8927160325532027e-06, -3.2543055366223542e-06, -1.229404313835113e-05, -7.2317900813829824e-07, -2.8927160325532417e-06, -2.8927160325531989e-06, -3.254305536622308e-06, -9.4013271057978149e-06, -2.8927160325531692e-06, -2.8927160325532158e-06, -2.8927160325531811e-06, -1.4463580162766092e-06, -1.4463580162766096e-06, -3.6158950406914563e-07, -3.6158950406915563e-07, -3.6158950406915394e-07, -7.2317900813830576e-07, -6.1470215691755751e-06, -1.0847685122074363e-05, -4.3390740488297268e-06, -2.1695370244148481e-06, -3.6158950406914436e-07, -1.4463580162766083e-06, -5.785432065106424e-06, -8.6781480976595027e-06, -2.89271603255324e-06, -1.4463580162766083e-06, -5.7854320651064308e-06, -5.7854320651064274e-06, -1.4463580162766083e-06, -4.3390740488297352e-06, -2.8927160325532044e-06, -3.615895040691551e-07, -7.2317900813829845e-07, -1.4463580162766083e-06, -1.4463580162766096e-06, -3.2543055366223554e-06, -1.8079475203457486e-06, -2.8927160325531659e-06, -5.7854320651063893e-06, -2.6034444292978484e-05, -1.4463580162765884e-06, -3.6158950406915113e-07, -2.1695370244148713e-05, -2.8927160325532112e-06, -1.7356296195318622e-05, -1.7356296195318941e-05, -1.8079475203457477e-05, -1.7356296195318622e-05, -1.4463580162765884e-06, -1.446358016276588e-06, -2.8927160325532158e-06, -2.8927160325532124e-06, -1.4463580162766062e-06, -1.4463580162766062e-06, -2.8927160325532374e-06, -3.61589504069155e-07, -2.8927160325532391e-06, -3.6158950406915177e-07, -3.6158950406915336e-07, -2.5311265284840328e-05, -1.4463580162766062e-06, -1.4463580162766062e-06, -2.2056959748218084e-05, -7.2317900813830883e-07, -2.6034444292978471e-05, -2.6034444292978471e-05, -2.8927160325532103e-06, -3.6158950406915119e-07, -2.8927160325532129e-06, -2.6034444292978471e-05, -2.6034444292978457e-05, -2.8927160325531633e-06, -2.8927160325531582e-06, -7.2317900813830121e-07, -7.2317900813830703e-07, -5.7854320651063758e-06, -2.8927160325531599e-06, -2.8927160325531616e-06, -1.0847685122074342e-06, -5.7854320651063758e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -2.4105966937943072e-07, -4.8452993545265865e-05, -4.8211933875886002e-05, -1.2052983468971543e-06, -2.4105966937943066e-07, -7.2317900813829591e-07, -2.4105966937943238e-06, -1.9284773550354645e-05, -4.8211933875886144e-07, -2.2177489582907755e-05, -2.4105966937943072e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354645e-05, -1.9284773550354645e-05, -1.9284773550354449e-06, -5.4720544949130673e-05, -4.8211933875886122e-07, -4.8211933875886632e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.928477355035444e-06, -1.2052983468971543e-06, -7.2317900813829634e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -3.6158950406915043e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.1695370244148676e-06, -1.9284773550354457e-06, -3.6158950406914912e-06, -4.8211933875886133e-07, -2.4105966937943061e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.9284773550354457e-06, -3.8569547100708915e-06, -2.4105966937943187e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -2.4105966937943066e-07, -1.9284773550354457e-06, -4.0980143794503201e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -7.7139094201417779e-06, -6.0264917344857655e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -2.4105966937943196e-06, -2.6516563631737321e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -2.4105966937943061e-07, -1.9284773550354457e-06, -4.8211933875886133e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -5.7854320651063656e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -4.3390740488297446e-06, -9.6423867751772287e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -3.1337757019326254e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -2.0249012227872315e-05, -1.9284773550354457e-06, -2.1213250905389871e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -1.9284773550354523e-05, -3.8569547100708906e-06, -1.9525833219734023e-05, -2.4105966937943072e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -2.0249012227872315e-05, -1.9284773550354645e-05, -1.9284773550354506e-05, -1.9284773550354557e-05, -2.4105966937943066e-07, -9.6423867751772245e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -2.4105966937943272e-06, -4.8211933875886425e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -5.7854320651063707e-06, -7.2317900813830703e-07, -2.121325090539004e-05, -3.8569547100708906e-06, -1.7356296195319046e-05, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857858e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.6874176856560209e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -1.7356296195319046e-05, -4.8211933875886133e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.7356296195319039e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -2.4105966937943179e-06, -7.2317900813829634e-07, -1.9284773550354457e-06, -3.615895040691481e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.4463580162765829e-06, -7.2317900813830544e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -6.2675514038652221e-06, -5.5443723957269395e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.4463580162766037e-06, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.9284773550354557e-05, -1.9284773550354506e-05, -3.9051666439468169e-05, -1.9284773550354506e-05, -1.9284773550354523e-05, -9.6423867751772245e-07, -4.8211933875886144e-07, -1.9284773550354445e-06, -2.1695370244148757e-06, -9.6423867751772245e-07, -2.6516563631737461e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.8569547100708906e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.905166643946808e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -7.2317900813829634e-07, -2.4105966937943066e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -9.6423867751772245e-07, -2.892716032553187e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.339074048829753e-06, -2.4105966937943072e-07, -9.6423867751772202e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.2052983468971596e-06, -9.6423867751772287e-07, -4.8211933875886133e-07, -1.4463580162765922e-06, -2.0490071897251667e-05, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.1088744791453835e-05, -2.4105966937943086e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.4005318499485893e-05, -1.9284773550354453e-06, -4.82119338758863e-05, -1.9284773550354457e-06, -4.8211933875886133e-07, -1.4463580162765853e-05, -2.892716032553187e-06, -1.2052983468971577e-06, -1.4463580162765965e-05, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.905166643946808e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -5.5202664287889721e-05, -7.2317900813829591e-07, -4.8211933875886347e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.9051666439468169e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -6.508611073244616e-06, -2.3141728260425496e-05, -1.9284773550354457e-06, -1.7115236525939515e-05, -2.8927160325531845e-06, -2.8927160325531845e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943289e-06, -1.9284773550354449e-06, -2.410596693794323e-06, -5.062253056968072e-06, -1.9284773550354457e-06, -1.2052983468971627e-06, -5.5443723957269158e-06, -1.9284773550354457e-06, -2.892716032553187e-06, -7.2317900813830576e-07, -1.2052983468971577e-06, -4.8211933875886122e-07, -2.4105966937943066e-07, -2.4105966937943072e-07, -1.9284773550354449e-06, -2.8927160325531845e-06, -1.4463580162766033e-06, 0.00098111285437428629, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -3.8569547100708898e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -1.9284773550354449e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -5.7854320651063707e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.1695370244148782e-06, -8.1960287589006742e-06, -4.8211933875886112e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -2.1695370244148782e-06, -6.267551403865228e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -2.4105966937943066e-07, -4.8211933875886144e-07, -4.098014379450288e-06, 0.00097484530297042241, -2.8927160325531853e-06, -1.4463580162765829e-06, -2.4105966937943072e-07, -9.6423867751772287e-07, -3.8569547100708906e-06, -5.7854320651063698e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -2.8927160325531862e-06, -1.9284773550354457e-06, -2.4105966937943061e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.1695370244148748e-06, -1.2052983468971611e-06, -1.9284773550354453e-06, -3.8569547100708915e-06, -1.7356296195318992e-05, -9.6423867751772245e-07, -2.4105966937943072e-07, -1.446358016276585e-05, -1.9284773550354457e-06, -1.1570864130212914e-05, -1.1570864130212741e-05, -1.2052983468971529e-05, -1.1570864130212914e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.6874176856560346e-05, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4704639832145342e-05, -4.8211933875886133e-07, -1.7356296195319039e-05, -1.7356296195319046e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.7356296195319046e-05, -1.7356296195319012e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.2317900813829634e-07, -3.8569547100708915e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6905987090532218e-05, -9.6423867751772491e-05, -2.410596693794323e-06, -4.8211933875886122e-07, -1.4463580162766052e-06, -4.8211933875886764e-06, -3.8569547100709506e-05, -9.6423867751772245e-07, -4.4354979165815211e-05, -4.8211933875886133e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100709506e-05, -3.8569547100709506e-05, -3.8569547100708898e-06, 0.001854713096205361, -9.6423867751772224e-07, -9.6423867751773779e-05, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708881e-06, -2.410596693794323e-06, -1.4463580162766062e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -7.2317900813830476e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488296929e-06, -3.8569547100708906e-06, -7.2317900813830222e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886654e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -8.1960287589005776e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.2052983468971594e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -4.8211933875886671e-06, -5.3033127263474456e-06, -1.9284773550354445e-06, -7.7139094201417762e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708889e-06, -1.157086413021284e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -8.6781480976595704e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -6.2675514038650857e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.0498024455744671e-05, -3.8569547100708906e-06, -4.2426501810779606e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -3.8569547100709269e-05, -7.7139094201417796e-06, -3.9051666439468236e-05, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354453e-06, -4.0498024455744657e-05, -3.8569547100709506e-05, -3.8569547100709242e-05, -3.8569547100709337e-05, -4.8211933875886122e-07, -1.9284773550354449e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886832e-06, -9.6423867751773426e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -1.1570864130212851e-05, -1.4463580162766276e-06, -4.2426501810779938e-05, -7.7139094201417796e-06, -3.4712592390637733e-05, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.205298346897147e-05, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.3748353713120283e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390637733e-05, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.4712592390637719e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886629e-06, -1.4463580162766062e-06, -3.8569547100708906e-06, -7.2317900813830019e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -2.8927160325532281e-06, -1.4463580162766242e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730192e-05, -1.1088744791453808e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -2.8927160325532349e-06, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100709337e-05, -3.8569547100709242e-05, -7.8103332878936703e-05, -3.8569547100709242e-05, -3.8569547100709269e-05, -1.9284773550354445e-06, -9.6423867751772245e-07, -3.8569547100708881e-06, -4.3390740488296827e-06, -1.9284773550354445e-06, -5.3033127263474753e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.8103332878936527e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4463580162766062e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651064283e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -8.6781480976594197e-06, -4.8211933875886133e-07, -1.9284773550354428e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943335e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325532116e-06, -4.0980143794503334e-05, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -2.2177489582907541e-05, -4.8211933875886459e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897317, -3.8569547100708898e-06, -9.6423867751773128e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.8927160325531828e-05, -5.7854320651064266e-06, -2.4105966937943306e-06, -2.892716032553215e-05, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936527e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577893, -1.4463580162766054e-06, -9.6423867751773182e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936703e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489212e-05, -4.6283456520851413e-05, -3.8569547100708906e-06, -3.4230473051878691e-05, -5.7854320651064215e-06, -5.7854320651064215e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -4.8211933875886866e-06, -3.8569547100708889e-06, -4.8211933875886747e-06, -1.0124506113936158e-05, -3.8569547100708906e-06, -2.4105966937943399e-06, -1.1088744791453757e-05, -3.8569547100708906e-06, -5.7854320651064266e-06, -1.4463580162766246e-06, -2.4105966937943297e-06, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -5.7854320651062733e-06, -2.8927160325531709e-06, -1.9284773550354453e-06, 0.001960297231393539, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.157086413021285e-05, -3.8569547100708906e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488298496e-06, -1.639205751780122e-05, -9.6423867751772224e-07, -3.8569547100708889e-06, -3.8569547100708906e-06, -4.3390740488297132e-06, -1.2535102807730502e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -8.1960287589005285e-06, -1.4463580162765917e-05, -5.7854320651064266e-06, -2.8927160325532281e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -7.7139094201417796e-06, -1.1570864130212845e-05, -3.8569547100708889e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651064257e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.3390740488298276e-06, -2.4105966937943365e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -3.4712592390637679e-05, -1.9284773550354453e-06, -4.8211933875886133e-07, -2.8927160325531821e-05, -3.8569547100708906e-06, -2.3141728260426042e-05, -2.3141728260425693e-05, -2.4105966937943187e-05, -2.3141728260426042e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.3748353713120205e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.9409279664290745e-05, -9.6423867751772245e-07, -3.4712592390637719e-05, -3.4712592390637733e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390637733e-05, -3.4712592390637665e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.4463580162766058e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6905987090530822e-05, -9.6423867751771163e-05, -2.4105966937943263e-06, -4.8211933875886112e-07, -1.4463580162765853e-06, -4.8211933875886815e-06, -3.856954710070956e-05, -9.6423867751772245e-07, -4.4354979165815909e-05, -4.8211933875886122e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.856954710070956e-05, -3.856954710070956e-05, 0.001960297231393539, -0.00010944108989826053, -9.6423867751772202e-07, -9.6423867751772437e-05, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708873e-06, -2.4105966937943263e-06, -1.4463580162765863e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886112e-07, -7.2317900813830612e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488297751e-06, -3.8569547100708898e-06, -7.2317900813830358e-06, -9.6423867751772224e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886722e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886112e-07, -3.8569547100708898e-06, -8.1960287589005691e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -1.5427818840283549e-05, -1.2052983468971426e-05, -3.8569547100708898e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -1.928477355035444e-06, -3.8569547100708898e-06, -4.8211933875886739e-06, -5.3033127263474397e-06, -1.928477355035444e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772202e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -3.8569547100708898e-06, -9.6423867751772224e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -1.157086413021268e-05, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -8.6781480976594332e-06, -1.9284773550354449e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -6.2675514038652458e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.0498024455744671e-05, -3.8569547100708898e-06, -4.2426501810779565e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -3.8569547100709323e-05, -7.7139094201417779e-06, -3.9051666439468263e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417762e-06, -1.9284773550354449e-06, -4.0498024455744657e-05, -3.856954710070956e-05, -3.8569547100709296e-05, -3.8569547100709391e-05, -4.8211933875886112e-07, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708889e-06, -4.82119338758869e-06, -9.6423867751773528e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -3.8569547100708889e-06, -1.1570864130212692e-05, -1.4463580162766071e-06, -4.2426501810779897e-05, -7.7139094201417779e-06, -3.4712592390638404e-05, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971604e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.3748353713120274e-06, -1.928477355035444e-06, -9.6423867751772224e-07, -3.471259239063839e-05, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.471259239063839e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886696e-06, -1.4463580162765863e-06, -3.8569547100708898e-06, -7.2317900813830155e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.8927160325531887e-06, -1.4463580162766041e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -1.2535102807730464e-05, -1.1088744791453976e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -3.8569547100708889e-06, -2.8927160325531947e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100709391e-05, -3.8569547100709296e-05, -7.8103332878936784e-05, -3.8569547100709296e-05, -3.8569547100709323e-05, -1.928477355035444e-06, -9.6423867751772245e-07, -3.8569547100708873e-06, -4.3390740488297683e-06, -1.928477355035444e-06, -5.3033127263474702e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417779e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -7.8103332878936595e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.4463580162765863e-06, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -1.928477355035444e-06, -5.7854320651063487e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -8.6781480976595874e-06, -4.8211933875886122e-07, -1.9284773550354428e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.4105966937943369e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -2.8927160325532023e-06, -4.0980143794503334e-05, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -2.2177489582907697e-05, -4.8211933875886527e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708881e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -0.00014801063699897054, -3.8569547100708889e-06, -9.6423867751771759e-05, -3.8569547100708898e-06, -9.6423867751772224e-07, -2.8927160325531882e-05, -5.785432065106347e-06, -2.410596693794334e-06, -2.8927160325532197e-05, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.8103332878936595e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00011040532857577868, -1.4463580162765855e-06, -9.6423867751771841e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.8103332878936784e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.3017222146489208e-05, -4.6283456520850776e-05, -3.8569547100708898e-06, -3.4230473051879362e-05, -5.7854320651064046e-06, -5.785432065106408e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -4.8211933875886933e-06, -3.8569547100708881e-06, -4.8211933875886815e-06, -1.0124506113936161e-05, -3.8569547100708898e-06, -2.4105966937943433e-06, -1.1088744791453932e-05, -3.8569547100708898e-06, -5.785432065106347e-06, -1.4463580162766045e-06, -2.4105966937943331e-06, -9.6423867751772202e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -5.7854320651064283e-06, -2.8927160325531532e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, 0.001960297231393539, -3.8569547100708881e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -1.1570864130212687e-05, -3.8569547100708898e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488296759e-06, -1.6392057517801199e-05, -9.6423867751772181e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -4.3390740488297954e-06, -1.2535102807730505e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -8.1960287589005183e-06, -1.4463580162765948e-05, -5.785432065106347e-06, -2.8927160325531887e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -7.7139094201417779e-06, -1.1570864130212685e-05, -3.8569547100708881e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -5.7854320651063461e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.339074048829698e-06, -2.4105966937943399e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.4712592390638336e-05, -1.9284773550354449e-06, -4.8211933875886122e-07, -2.8927160325531875e-05, -3.8569547100708898e-06, -2.314172826042572e-05, -2.3141728260425374e-05, -2.4105966937942848e-05, -2.314172826042572e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -4.8211933875886101e-07, -3.8569547100708881e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.3748353713120869e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.9409279664290792e-05, -9.6423867751772224e-07, -3.471259239063839e-05, -3.471259239063839e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.4712592390638404e-05, -3.4712592390638336e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.4463580162765969e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -9.690598709053074e-05, -9.6423867751771068e-05, -2.4105966937943272e-06, -4.8211933875886122e-07, -1.446358016276585e-06, -4.8211933875886832e-06, -3.8569547100709587e-05, -9.6423867751772224e-07, -4.4354979165815936e-05, -4.8211933875886112e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100709587e-05, -3.8569547100709581e-05, -3.8569547100708881e-06, -0.00010944108989826217, -9.6423867751772181e-07, -9.6423867751772342e-05, -7.7139094201417796e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772181e-07, -9.6423867751772181e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708856e-06, -2.4105966937943263e-06, -1.4463580162765863e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -7.2317900813829579e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488297767e-06, -3.8569547100708889e-06, -7.2317900813829392e-06, -9.6423867751772245e-07, -4.8211933875886101e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886101e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772181e-07, -4.8211933875886122e-07, -3.8569547100708889e-06, -7.7139094201417779e-06, -4.8211933875886747e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -4.8211933875886101e-07, -3.8569547100708898e-06, -8.196028758900542e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -1.5427818840283542e-05, -1.2052983468971414e-05, -3.8569547100708898e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -1.9284773550354436e-06, -3.8569547100708889e-06, -4.8211933875886764e-06, -5.3033127263474422e-06, -1.9284773550354436e-06, -7.7139094201417745e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -9.6423867751772202e-07, -3.8569547100708881e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886112e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886101e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -1.157086413021268e-05, -3.8569547100708873e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -8.6781480976595704e-06, -1.9284773550354449e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -6.2675514038652678e-06, -3.8569547100708889e-06, -7.7139094201417762e-06, -4.0498024455744712e-05, -3.8569547100708898e-06, -4.2426501810779578e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -3.856954710070935e-05, -7.7139094201417762e-06, -3.9051666439468236e-05, -4.8211933875886122e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -1.928477355035444e-06, -4.0498024455744705e-05, -3.8569547100709587e-05, -3.8569547100709188e-05, -3.8569547100709445e-05, -4.8211933875886101e-07, -1.9284773550354428e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886091e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708881e-06, -4.8211933875886916e-06, -9.6423867751773596e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -1.1570864130212704e-05, -1.4463580162766073e-06, -4.2426501810779877e-05, -7.7139094201417762e-06, -3.4712592390638417e-05, -4.8211933875886112e-07, -4.8211933875886122e-07, -1.2052983468971534e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.3748353713120037e-06, -1.928477355035444e-06, -9.6423867751772202e-07, -3.4712592390638404e-05, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.4712592390638404e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -4.8211933875886713e-06, -1.4463580162765863e-06, -3.8569547100708889e-06, -7.2317900813829104e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -9.6423867751772181e-07, -9.6423867751772181e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.8927160325531883e-06, -1.4463580162765687e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -7.7139094201417779e-06, -1.2535102807730502e-05, -1.1088744791453989e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -3.8569547100708889e-06, -2.8927160325531947e-06, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100709445e-05, -3.8569547100709188e-05, -7.8103332878936866e-05, -3.8569547100709255e-05, -3.856954710070935e-05, -1.9284773550354436e-06, -9.6423867751772224e-07, -3.8569547100708873e-06, -4.3390740488297683e-06, -1.9284773550354436e-06, -5.3033127263474693e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -7.7139094201417779e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -7.7139094201417762e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -7.8103332878936703e-05, -3.8569547100708881e-06, -3.8569547100708881e-06, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.4463580162766043e-06, -4.8211933875886122e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886112e-07, -4.8211933875886101e-07, -1.9284773550354436e-06, -5.7854320651063487e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -8.6781480976595874e-06, -4.8211933875886122e-07, -1.9284773550354428e-06, -9.6423867751772202e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.410596693794339e-06, -1.9284773550354449e-06, -9.6423867751772202e-07, -2.8927160325531726e-06, -4.0980143794503334e-05, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886122e-07, -2.2177489582907887e-05, -4.8211933875886527e-06, -4.8211933875886101e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, 0.001960297231393539, -0.00014801063699897054, -3.8569547100708889e-06, -9.6423867751771665e-05, -3.8569547100708889e-06, -9.6423867751772245e-07, -2.8927160325531459e-05, -5.785432065106347e-06, -2.4105966937943344e-06, -2.8927160325531777e-05, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936703e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00011040532857578008, -1.4463580162765855e-06, -9.6423867751771759e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772202e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.8103332878936866e-05, -3.8569547100708881e-06, -3.8569547100708881e-06, -1.3017222146489201e-05, -4.6283456520850789e-05, -3.8569547100708889e-06, -3.4230473051879375e-05, -5.7854320651063419e-06, -5.7854320651063419e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -4.8211933875886942e-06, -3.8569547100708881e-06, -4.8211933875886832e-06, -1.0124506113936169e-05, -3.8569547100708889e-06, -2.4105966937943441e-06, -1.1088744791453928e-05, -3.8569547100708898e-06, -5.785432065106347e-06, -1.4463580162766045e-06, -2.410596693794334e-06, -9.6423867751772181e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -3.8569547100708881e-06, -5.7854320651063444e-06, -2.8927160325531934e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, 0.001960297231393539, -7.7139094201417779e-06, -3.8569547100708889e-06, -1.9284773550354449e-06, -7.7139094201417779e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417762e-06, -1.1570864130212687e-05, -3.8569547100708889e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488297971e-06, -1.6392057517801176e-05, -9.6423867751772202e-07, -3.8569547100708873e-06, -3.8569547100708898e-06, -4.3390740488297971e-06, -1.253510280773047e-05, -3.8569547100708881e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886112e-07, -4.8211933875886091e-07, -4.8211933875886101e-07, -9.6423867751772245e-07, -8.196028758900564e-06, -1.4463580162765743e-05, -5.785432065106347e-06, -2.8927160325531883e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -7.7139094201417762e-06, -1.1570864130212697e-05, -3.8569547100708873e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -5.7854320651063461e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -4.3390740488297886e-06, -2.4105966937943407e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -3.4712592390638363e-05, -1.928477355035444e-06, -4.8211933875886122e-07, -2.8927160325531452e-05, -3.8569547100708898e-06, -2.3141728260425686e-05, -2.3141728260425398e-05, -2.4105966937942852e-05, -2.3141728260425686e-05, -1.928477355035444e-06, -1.928477355035444e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.8569547100708881e-06, -4.8211933875886101e-07, -3.8569547100708881e-06, -4.8211933875886112e-07, -4.8211933875886101e-07, -3.3748353713120814e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.9409279664290335e-05, -9.6423867751772202e-07, -3.4712592390638404e-05, -3.4712592390638404e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.4712592390638417e-05, -3.4712592390638349e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -9.6423867751772202e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.4463580162765861e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -0.00019381197418106308, -0.00019284773550354422, -4.8211933875886061e-06, -9.6423867751772224e-07, -2.8927160325531705e-06, -9.6423867751772732e-06, -7.7139094201418402e-05, -1.9284773550354445e-06, -8.8709958331631045e-05, -9.6423867751772245e-07, -1.5427818840283556e-05, -1.5427818840283556e-05, -7.7139094201417796e-06, 0.0019564402766834676, -7.7139094201418429e-05, -7.7139094201418402e-05, -7.7139094201417762e-06, -0.0002188821797965228, -1.928477355035444e-06, -0.00019284773550354626, -1.5427818840283556e-05, -7.7139094201417779e-06, -7.7139094201417762e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -7.7139094201417779e-06, -7.7139094201417796e-06, -1.928477355035444e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417711e-06, -4.8211933875886307e-06, -2.8927160325531726e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -1.4463580162766017e-05, -7.7139094201417779e-06, -7.7139094201417779e-06, -8.6781480976595298e-06, -7.7139094201417796e-06, -1.4463580162765978e-05, -1.9284773550354445e-06, -9.6423867751772202e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772202e-07, -9.6423867751772224e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -1.9284773550354436e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -1.5427818840283556e-05, -9.6423867751772529e-06, -7.7139094201417779e-06, -1.5427818840283556e-05, -9.6423867751772202e-07, -7.7139094201417779e-06, -1.6392057517801172e-05, -7.7139094201417779e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -3.0855637680567084e-05, -2.4105966937943021e-05, -7.7139094201417779e-06, -1.5427818840283552e-05, -1.5427818840283552e-05, -3.8569547100708881e-06, -7.7139094201417796e-06, -9.6423867751772562e-06, -1.0606625452694984e-05, -3.8569547100708881e-06, -1.5427818840283549e-05, -7.7139094201417796e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -1.928477355035444e-06, -7.7139094201417762e-06, -7.7139094201417779e-06, -9.6423867751772224e-07, -7.7139094201417779e-06, -1.928477355035444e-06, -7.7139094201417762e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772224e-07, -1.5427818840283552e-05, -1.5427818840283552e-05, -9.6423867751772224e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -9.6423867751772224e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -2.3141728260425361e-05, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.5427818840283559e-05, -3.8569547100708898e-06, -1.73562961953191e-05, -3.8569547100708898e-06, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.2535102807730541e-05, -7.7139094201417779e-06, -1.5427818840283552e-05, -8.0996048911489464e-05, -7.7139094201417779e-06, -8.4853003621559943e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -7.7139094201417982e-05, -1.5427818840283552e-05, -7.8103332878935849e-05, -9.6423867751772224e-07, -1.5427818840283552e-05, -1.5427818840283552e-05, -3.8569547100708881e-06, -8.0996048911489423e-05, -7.7139094201418402e-05, -7.7139094201417914e-05, -7.7139094201418118e-05, -9.6423867751772202e-07, -3.8569547100708856e-06, -9.6423867751772245e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417762e-06, -9.6423867751772867e-06, -1.9284773550354526e-05, -1.5427818840283552e-05, -1.5427818840283556e-05, -7.7139094201417762e-06, -2.3141728260425395e-05, -2.8927160325532146e-06, -8.4853003621560553e-05, -1.5427818840283556e-05, -6.9425184781276645e-05, -9.6423867751772224e-07, -9.6423867751772245e-07, -2.4105966937942981e-05, -1.5427818840283559e-05, -7.7139094201417779e-06, -6.7496707426240387e-06, -3.8569547100708873e-06, -1.928477355035444e-06, -6.9425184781276618e-05, -1.9284773550354445e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -6.9425184781276618e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751772495e-06, -2.8927160325531726e-06, -7.7139094201417796e-06, -1.4463580162765922e-05, -9.6423867751772245e-07, -7.7139094201417796e-06, -1.928477355035444e-06, -1.928477355035444e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -5.7854320651063766e-06, -2.8927160325532091e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -1.5427818840283556e-05, -2.5070205615461014e-05, -2.2177489582907775e-05, -9.6423867751772245e-07, -1.5427818840283556e-05, -7.7139094201417779e-06, -5.7854320651063893e-06, -1.9284773550354445e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -7.7139094201418118e-05, -7.7139094201417914e-05, -0.00015620666575787205, -7.7139094201417914e-05, -7.7139094201417982e-05, -3.8569547100708881e-06, -1.9284773550354445e-06, -7.7139094201417745e-06, -8.6781480976595128e-06, -3.8569547100708881e-06, -1.0606625452695042e-05, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.5427818840283552e-05, -7.7139094201417779e-06, -9.6423867751772245e-07, -0.00015620666575787173, -7.7139094201417762e-06, -7.7139094201417762e-06, -9.6423867751772224e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.8927160325531735e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772202e-07, -3.8569547100708881e-06, -1.1570864130212697e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.7356296195319127e-05, -9.6423867751772224e-07, -3.8569547100708856e-06, -1.928477355035444e-06, -1.5427818840283556e-05, -1.5427818840283556e-05, -4.8211933875886298e-06, -3.8569547100708889e-06, -1.928477355035444e-06, -5.7854320651063453e-06, -8.1960287589006667e-05, -9.6423867751772245e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.5427818840283556e-05, -1.5427818840283556e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -4.4354979165815367e-05, -9.6423867751772105e-06, -9.6423867751772202e-07, -7.7139094201417762e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -1.5427818840283556e-05, -7.7139094201417779e-06, -1.5427818840283556e-05, 0.0019564402766834689, -7.7139094201417779e-06, -0.0002960212739979414, -7.7139094201417779e-06, -0.00019284773550354544, -7.7139094201417796e-06, -1.9284773550354445e-06, -5.7854320651063317e-05, -1.1570864130212694e-05, -4.8211933875886213e-06, -5.7854320651063961e-05, -9.6423867751772245e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -0.00015620666575787173, -7.7139094201417779e-06, -7.7139094201417779e-06, -0.00022081065715155967, -2.8927160325531709e-06, -0.00019284773550354504, -7.7139094201417779e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772245e-07, -1.5427818840283556e-05, -1.5427818840283556e-05, -1.928477355035444e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -0.00015620666575787205, -7.7139094201417762e-06, -7.7139094201417762e-06, -2.60344442929784e-05, -9.2566913041701552e-05, -7.7139094201417796e-06, -6.8460946103758059e-05, -1.1570864130212684e-05, -1.1570864130212684e-05, -7.7139094201417762e-06, -7.7139094201417762e-06, -9.6423867751772935e-06, -7.7139094201417762e-06, -9.6423867751772766e-06, -2.0249012227872346e-05, -7.7139094201417796e-06, -4.8211933875886417e-06, -2.2177489582907788e-05, -7.7139094201417779e-06, -1.1570864130212694e-05, -2.8927160325532091e-06, -4.8211933875886213e-06, -1.928477355035444e-06, -9.6423867751772202e-07, -9.6423867751772245e-07, -7.7139094201417762e-06, -1.1570864130212689e-05, -5.7854320651063868e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -7.7139094201417779e-06, 0.0039128805533669379, -7.7139094201417796e-06, -3.8569547100708889e-06, -1.5427818840283556e-05, -7.7139094201417796e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -2.3141728260425374e-05, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.5427818840283556e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -8.6781480976595704e-06, -3.2784115035602392e-05, -1.9284773550354436e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -8.6781480976595704e-06, -2.5070205615460949e-05, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772224e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.6392057517801237e-05, -2.8927160325531686e-05, -1.1570864130212694e-05, -5.7854320651063766e-06, -9.6423867751772245e-07, -3.8569547100708889e-06, -1.5427818840283556e-05, -2.3141728260425381e-05, -7.7139094201417762e-06, -3.8569547100708889e-06, -1.5427818840283556e-05, -1.5427818840283556e-05, -3.8569547100708889e-06, -1.1570864130212692e-05, -7.7139094201417779e-06, -9.6423867751772202e-07, -1.928477355035444e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -8.6781480976595569e-06, -4.8211933875886332e-06, -7.7139094201417779e-06, -1.5427818840283556e-05, -6.9425184781276536e-05, -3.8569547100708881e-06, -9.6423867751772245e-07, -5.785432065106331e-05, -7.7139094201417779e-06, -4.6283456520851426e-05, -4.6283456520850769e-05, -4.8211933875886049e-05, -4.6283456520851426e-05, -3.8569547100708881e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -9.6423867751772202e-07, -7.7139094201417762e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -6.7496707426241033e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -5.8818559328581056e-05, -1.928477355035444e-06, -6.9425184781276618e-05, -6.9425184781276618e-05, -7.7139094201417779e-06, -9.6423867751772224e-07, -7.7139094201417779e-06, -6.9425184781276645e-05, -6.9425184781276509e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.928477355035444e-06, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.8927160325531722e-06, -1.5427818840283559e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6905987090531567e-05, -9.6423867751771841e-05, -2.4105966937943052e-06, -4.8211933875886133e-07, -1.4463580162765882e-06, -4.8211933875886408e-06, -3.8569547100709242e-05, -9.6423867751772266e-07, -4.4354979165815624e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, 0.0019602972313935386, -3.8569547100708915e-06, -3.8569547100709249e-05, -3.8569547100709235e-05, -3.8569547100708898e-06, -0.00010944108989826151, -9.6423867751772245e-07, -9.6423867751773074e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.4105966937943052e-06, -1.4463580162765893e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813829909e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297479e-06, -3.8569547100708915e-06, -7.2317900813829706e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.7139094201417813e-06, -4.8211933875886315e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -8.1960287589006352e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971504e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.8211933875886332e-06, -5.3033127263474676e-06, -1.9284773550354449e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212704e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976595128e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652492e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -4.0498024455744644e-05, -3.8569547100708906e-06, -4.2426501810779768e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709011e-05, -7.7139094201417796e-06, -3.9051666439468033e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.049802445574463e-05, -3.8569547100709242e-05, -3.8569547100708984e-05, -3.8569547100709086e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -4.8211933875886485e-06, -9.6423867751772732e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -1.1570864130212716e-05, -1.4463580162766105e-06, -4.2426501810780093e-05, -7.7139094201417813e-06, -3.4712592390638187e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971544e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120477e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390638173e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390638173e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.821193387588629e-06, -1.4463580162765893e-06, -3.8569547100708915e-06, -7.2317900813829435e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325531938e-06, -1.4463580162766071e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730461e-05, -1.1088744791453911e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532006e-06, -9.6423867751772266e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709086e-05, -3.8569547100708984e-05, -7.8103332878936283e-05, -3.8569547100708984e-05, -3.8569547100709011e-05, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297395e-06, -1.9284773550354449e-06, -5.3033127263474956e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936134e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162765893e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651063605e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976595332e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.410596693794317e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325531777e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.2177489582907731e-05, -4.8211933875886103e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897138, -3.8569547100708906e-06, -9.6423867751772437e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -2.8927160325531591e-05, -5.7854320651063588e-06, -2.4105966937943128e-06, -2.8927160325531909e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936134e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577963, -1.4463580162765884e-06, -9.6423867751772464e-05, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936283e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489232e-05, -4.6283456520850871e-05, -3.8569547100708915e-06, -3.4230473051879064e-05, -5.7854320651063537e-06, -5.7854320651063537e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.821193387588651e-06, -3.8569547100708898e-06, -4.8211933875886425e-06, -1.0124506113936154e-05, -3.8569547100708915e-06, -2.410596693794323e-06, -1.1088744791453859e-05, -3.8569547100708906e-06, -5.7854320651063588e-06, -1.4463580162766075e-06, -2.4105966937943128e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063571e-06, -2.8927160325531989e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, 0.0019602972313935386, -1.9284773550354453e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.1570864130212711e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297683e-06, -1.6392057517801375e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488297683e-06, -1.2535102807730473e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -8.1960287589005895e-06, -1.4463580162765812e-05, -5.7854320651063588e-06, -2.8927160325531938e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417813e-06, -1.1570864130212709e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.785432065106358e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.3390740488297615e-06, -2.4105966937943191e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -3.4712592390638146e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531584e-05, -3.8569547100708906e-06, -2.3141728260425767e-05, -2.3141728260425422e-05, -2.4105966937943004e-05, -2.3141728260425767e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.374835371312053e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.9409279664290562e-05, -9.6423867751772245e-07, -3.4712592390638173e-05, -3.4712592390638173e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390638187e-05, -3.4712592390638119e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765893e-06, -7.713909420141783e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8452993545265987e-05, -4.8211933875886124e-05, -1.2052983468971568e-06, -2.4105966937943066e-07, -7.2317900813829919e-07, -2.410596693794328e-06, -1.9284773550354685e-05, -4.8211933875886133e-07, -2.2177489582907683e-05, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354685e-05, -1.9284773550354682e-05, -1.9284773550354449e-06, -5.4720544949130558e-05, -4.8211933875886112e-07, -4.8211933875886767e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.928477355035444e-06, -1.2052983468971564e-06, -7.2317900813829951e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -3.6158950406915128e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.1695370244148566e-06, -1.9284773550354453e-06, -3.6158950406915026e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886112e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -3.8569547100708906e-06, -2.4105966937943238e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -2.4105966937943061e-07, -1.9284773550354457e-06, -4.0980143794502998e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -6.026491734485779e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -1.9284773550354453e-06, -2.4105966937943246e-06, -2.6516563631737296e-06, -9.6423867751772224e-07, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -2.4105966937943056e-07, -1.9284773550354457e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -5.7854320651063919e-06, -1.9284773550354445e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -4.3390740488297217e-06, -9.6423867751772287e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -3.1337757019326284e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -2.0249012227872329e-05, -1.9284773550354453e-06, -2.1213250905389854e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -1.9284773550354573e-05, -3.8569547100708898e-06, -1.9525833219734064e-05, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -2.0249012227872329e-05, -1.9284773550354685e-05, -1.928477355035456e-05, -1.9284773550354611e-05, -2.4105966937943061e-07, -9.6423867751772202e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -2.4105966937943056e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.9284773550354449e-06, -2.4105966937943323e-06, -4.8211933875886527e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -5.7854320651063978e-06, -7.2317900813831021e-07, -2.1213250905389989e-05, -3.8569547100708906e-06, -1.7356296195318907e-05, -2.4105966937943066e-07, -2.4105966937943072e-07, -6.0264917344858019e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -1.6874176856560167e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -1.73562961953189e-05, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.73562961953189e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -2.4105966937943221e-06, -7.2317900813829962e-07, -1.9284773550354453e-06, -3.6158950406914887e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.4463580162766071e-06, -7.2317900813830862e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -6.267551403865239e-06, -5.5443723957269234e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.4463580162766102e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.9284773550354611e-05, -1.928477355035456e-05, -3.905166643946825e-05, -1.928477355035456e-05, -1.9284773550354573e-05, -9.6423867751772224e-07, -4.8211933875886133e-07, -1.9284773550354445e-06, -2.1695370244148524e-06, -9.6423867751772224e-07, -2.6516563631737436e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.8569547100708898e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.9051666439468162e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -7.2317900813829591e-07, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -2.4105966937943061e-07, -9.6423867751772224e-07, -2.8927160325532002e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -4.3390740488297319e-06, -2.4105966937943066e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.2052983468971564e-06, -9.6423867751772287e-07, -4.8211933875886122e-07, -1.446358016276599e-06, -2.0490071897251667e-05, -2.4105966937943072e-07, -9.6423867751772287e-07, 0.00098111285437428694, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943072e-07, -1.1088744791453804e-05, -2.4105966937943132e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.4005318499486232e-05, -1.9284773550354453e-06, -4.8211933875886429e-05, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.4463580162765863e-05, -2.8927160325531993e-06, -1.2052983468971604e-06, -1.4463580162766024e-05, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.9051666439468162e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -5.5202664287889532e-05, -7.2317900813829919e-07, -4.8211933875886476e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.905166643946825e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -6.5086110732446109e-06, -2.3141728260425595e-05, -1.9284773550354453e-06, -1.7115236525939427e-05, -2.8927160325531968e-06, -2.8927160325531968e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943335e-06, -1.9284773550354449e-06, -2.4105966937943297e-06, -5.0622530569680805e-06, -1.9284773550354453e-06, -1.2052983468971653e-06, -5.5443723957269005e-06, -1.9284773550354457e-06, -2.8927160325531993e-06, -7.2317900813830883e-07, -1.2052983468971602e-06, -4.8211933875886112e-07, -2.4105966937943061e-07, -2.4105966937943072e-07, -1.9284773550354449e-06, -2.892716032553198e-06, -1.4463580162766096e-06, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, 0.00098111285437428694, -3.8569547100708889e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -1.9284773550354449e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -5.7854320651063953e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.1695370244148668e-06, -8.1960287589006504e-06, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354457e-06, -2.1695370244148668e-06, -6.2675514038652449e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -2.4105966937943056e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.0980143794502761e-06, -7.2317900813829401e-06, -2.8927160325531993e-06, -1.4463580162766071e-06, -2.4105966937943072e-07, -9.6423867751772287e-07, -3.8569547100708906e-06, -5.7854320651063944e-06, -1.9284773550354445e-06, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -2.892716032553179e-06, -1.9284773550354457e-06, -2.4105966937943061e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -2.1695370244148634e-06, -1.2052983468971636e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -1.7356296195318934e-05, -9.6423867751772245e-07, -2.4105966937943072e-07, -1.446358016276586e-05, -1.9284773550354457e-06, -1.1570864130212965e-05, -1.1570864130212775e-05, -1.2052983468971544e-05, -1.1570864130212965e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.6874176856560184e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4704639832145328e-05, -4.8211933875886122e-07, -1.73562961953189e-05, -1.73562961953189e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.7356296195318907e-05, -1.7356296195318887e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.2317900813829951e-07, -3.8569547100708915e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -0.00019381197418106319, -0.00019284773550354374, -4.8211933875886002e-06, -9.6423867751772224e-07, -2.8927160325531705e-06, -9.6423867751772681e-06, -7.7139094201418335e-05, -1.9284773550354445e-06, -8.870995833163133e-05, -9.6423867751772245e-07, -1.5427818840283556e-05, -1.5427818840283556e-05, -7.7139094201417779e-06, -7.7139094201417779e-06, -7.7139094201418362e-05, -7.7139094201418335e-05, -7.7139094201417762e-06, -0.0002188821797965228, -1.928477355035444e-06, -0.00019284773550354631, -1.5427818840283556e-05, -7.7139094201417779e-06, -7.7139094201417762e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -7.7139094201417779e-06, -7.7139094201417796e-06, -1.928477355035444e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417745e-06, -4.8211933875886078e-06, -2.8927160325531726e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -1.446358016276597e-05, -7.7139094201417779e-06, -7.7139094201417779e-06, -8.6781480976595061e-06, -7.7139094201417796e-06, -1.4463580162765936e-05, -1.9284773550354445e-06, -9.6423867751772202e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -1.5427818840283559e-05, -9.6423867751772444e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -9.6423867751772224e-07, -7.7139094201417779e-06, -1.6392057517801152e-05, -7.7139094201417779e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -3.0855637680567098e-05, -2.4105966937943028e-05, -7.7139094201417779e-06, -1.5427818840283556e-05, -1.5427818840283552e-05, -3.8569547100708881e-06, -7.7139094201417796e-06, -9.6423867751772478e-06, -1.0606625452694935e-05, -3.8569547100708881e-06, -1.5427818840283552e-05, -7.7139094201417796e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -1.928477355035444e-06, -7.7139094201417762e-06, -7.7139094201417779e-06, -9.6423867751772224e-07, -7.7139094201417779e-06, -1.9284773550354445e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -1.5427818840283552e-05, -1.5427818840283552e-05, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -9.6423867751772224e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -2.3141728260425374e-05, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.5427818840283559e-05, -3.8569547100708898e-06, -1.7356296195319039e-05, -3.8569547100708898e-06, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.253510280773049e-05, -7.7139094201417796e-06, -1.5427818840283556e-05, -8.0996048911489274e-05, -7.7139094201417779e-06, -8.4853003621559564e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -7.7139094201417901e-05, -1.5427818840283556e-05, -7.8103332878935876e-05, -9.6423867751772224e-07, -1.5427818840283556e-05, -1.5427818840283552e-05, -3.8569547100708881e-06, -8.0996048911489274e-05, -7.7139094201418335e-05, -7.7139094201417833e-05, -7.7139094201418036e-05, -9.6423867751772224e-07, -3.8569547100708881e-06, -9.6423867751772245e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417779e-06, -9.6423867751772817e-06, -1.9284773550354516e-05, -1.5427818840283552e-05, -1.5427818840283556e-05, -7.7139094201417779e-06, -2.3141728260425395e-05, -2.8927160325532141e-06, -8.4853003621560214e-05, -1.5427818840283556e-05, -6.9425184781276401e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943014e-05, -1.5427818840283559e-05, -7.7139094201417779e-06, -6.7496707426240938e-06, -3.8569547100708873e-06, -1.928477355035444e-06, -6.9425184781276374e-05, -1.9284773550354445e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -6.9425184781276374e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.642386775177241e-06, -2.8927160325531726e-06, -7.7139094201417796e-06, -1.4463580162765878e-05, -9.6423867751772245e-07, -7.7139094201417796e-06, -1.928477355035444e-06, -1.928477355035444e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -5.7854320651063673e-06, -2.8927160325532086e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -1.5427818840283556e-05, -2.5070205615460898e-05, -2.2177489582907849e-05, -9.6423867751772245e-07, -1.5427818840283556e-05, -7.7139094201417779e-06, -5.7854320651063893e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -7.7139094201418036e-05, -7.7139094201417833e-05, -0.00015620666575787219, -7.7139094201417833e-05, -7.7139094201417901e-05, -3.8569547100708881e-06, -1.9284773550354449e-06, -7.7139094201417745e-06, -8.6781480976594857e-06, -3.8569547100708881e-06, 0.0019535475606509154, -9.6423867751772202e-07, -9.6423867751772245e-07, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.5427818840283556e-05, -7.7139094201417779e-06, -9.6423867751772245e-07, -0.00015620666575787183, -7.7139094201417762e-06, -7.7139094201417762e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.8927160325531735e-06, -9.6423867751772224e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -3.8569547100708881e-06, -1.1570864130212697e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.7356296195319087e-05, -9.6423867751772224e-07, -3.8569547100708856e-06, -1.9284773550354445e-06, -1.5427818840283556e-05, -1.5427818840283556e-05, -4.8211933875886239e-06, -3.8569547100708889e-06, -1.9284773550354449e-06, -5.7854320651063453e-06, -8.1960287589006681e-05, -9.6423867751772245e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.5427818840283556e-05, -1.5427818840283556e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -4.4354979165815496e-05, -9.6423867751772054e-06, -9.6423867751772224e-07, -7.7139094201417762e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -1.5427818840283556e-05, 0.0019564402766834689, -1.5427818840283556e-05, -7.7139094201417779e-06, -7.7139094201417779e-06, -0.00029602127399794271, -7.7139094201417779e-06, -0.00019284773550354493, -7.7139094201417796e-06, -1.9284773550354445e-06, -5.7854320651063283e-05, -1.1570864130212694e-05, -4.8211933875886171e-06, -5.7854320651063785e-05, -9.6423867751772245e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -0.00015620666575787183, -7.7139094201417779e-06, -7.7139094201417779e-06, -0.00022081065715155937, -2.8927160325531709e-06, -0.00019284773550354509, -7.7139094201417779e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772245e-07, -1.5427818840283556e-05, -1.5427818840283556e-05, -1.928477355035444e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -0.00015620666575787219, -7.7139094201417762e-06, -7.7139094201417762e-06, -2.6034444292978505e-05, -9.2566913041701592e-05, -7.7139094201417796e-06, -6.8460946103758303e-05, -1.1570864130212684e-05, -1.1570864130212684e-05, -7.7139094201417762e-06, -7.7139094201417762e-06, -9.642386775177285e-06, -7.7139094201417762e-06, -9.6423867751772647e-06, -2.0249012227872298e-05, -7.7139094201417796e-06, -4.8211933875886374e-06, -2.217748958290767e-05, -7.7139094201417779e-06, -1.1570864130212694e-05, -2.8927160325532091e-06, -4.8211933875886171e-06, -1.928477355035444e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -7.7139094201417762e-06, -1.1570864130212694e-05, -5.7854320651063868e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -7.7139094201417779e-06, -1.5427818840283556e-05, -7.7139094201417779e-06, -3.8569547100708889e-06, 0.0039128805533669379, -7.7139094201417796e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -2.3141728260425374e-05, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.5427818840283556e-05, -7.7139094201417779e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -8.6781480976595433e-06, -3.2784115035602459e-05, -1.928477355035444e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -8.6781480976595433e-06, -2.5070205615460929e-05, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772245e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.6392057517801189e-05, -2.8927160325531587e-05, -1.1570864130212699e-05, -5.7854320651063673e-06, -9.6423867751772245e-07, -3.8569547100708889e-06, -1.5427818840283556e-05, -2.3141728260425371e-05, -7.7139094201417762e-06, -3.8569547100708889e-06, -1.5427818840283556e-05, -1.5427818840283556e-05, -3.8569547100708889e-06, -1.1570864130212692e-05, -7.7139094201417779e-06, -9.6423867751772202e-07, -1.928477355035444e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -8.6781480976595298e-06, -4.8211933875886307e-06, -7.7139094201417779e-06, -1.5427818840283559e-05, -6.9425184781276292e-05, -3.8569547100708881e-06, -9.6423867751772245e-07, -5.785432065106327e-05, -7.7139094201417779e-06, -4.628345652085142e-05, -4.6283456520850749e-05, -4.8211933875886049e-05, -4.628345652085142e-05, -3.8569547100708881e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -9.6423867751772202e-07, -7.7139094201417762e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -6.7496707426240924e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -5.8818559328581259e-05, -1.928477355035444e-06, -6.9425184781276374e-05, -6.9425184781276374e-05, -7.7139094201417779e-06, -9.6423867751772224e-07, -7.7139094201417779e-06, -6.9425184781276401e-05, -6.9425184781276265e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354445e-06, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.8927160325531722e-06, -1.5427818840283559e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6905987090531621e-05, -9.6423867751771868e-05, -2.4105966937943043e-06, -4.8211933875886133e-07, -1.4463580162765884e-06, -4.8211933875886391e-06, -3.8569547100709221e-05, -9.6423867751772287e-07, -4.4354979165815584e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100709221e-05, -3.8569547100709221e-05, -3.8569547100708898e-06, -0.00010944108989826151, -9.6423867751772245e-07, -9.6423867751773155e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.4105966937943043e-06, -1.4463580162765893e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813829968e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.3390740488297463e-06, -3.8569547100708915e-06, -7.2317900813829706e-06, -9.6423867751772266e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.713909420141783e-06, -4.821193387588629e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -8.1960287589006386e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -1.5427818840283556e-05, -1.2052983468971514e-05, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.8211933875886307e-06, -5.3033127263474659e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -3.8569547100708915e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212707e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976595094e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652458e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -4.0498024455744617e-05, -3.8569547100708915e-06, -4.2426501810779768e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100708978e-05, -7.7139094201417813e-06, -3.9051666439468006e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.0498024455744603e-05, -3.8569547100709221e-05, -3.8569547100708944e-05, -3.8569547100709045e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886459e-06, -9.6423867751772681e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -3.8569547100708906e-06, -1.1570864130212718e-05, -1.4463580162766105e-06, -4.24265018107801e-05, -7.7139094201417813e-06, -3.4712592390638173e-05, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971551e-05, -7.713909420141783e-06, -3.8569547100708915e-06, -3.374835371312046e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.471259239063816e-05, -9.6423867751772266e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.471259239063816e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886256e-06, -1.4463580162765893e-06, -3.8569547100708915e-06, -7.2317900813829502e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.892716032553182e-06, -1.4463580162766073e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -1.2535102807730434e-05, -1.1088744791453901e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532006e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709045e-05, -3.8569547100708944e-05, -7.8103332878936256e-05, -3.8569547100708944e-05, -3.8569547100708978e-05, -1.9284773550354449e-06, -9.6423867751772287e-07, -3.8569547100708889e-06, 0.0019598151120547806, -1.9284773550354449e-06, -5.3033127263474956e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.810333287893608e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162765893e-06, -4.8211933875886133e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -5.7854320651063605e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976595298e-06, -4.8211933875886144e-07, -1.928477355035444e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -7.713909420141783e-06, -2.4105966937943149e-06, -1.9284773550354457e-06, -9.6423867751772266e-07, -2.8927160325531777e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.2177489582907704e-05, -4.8211933875886086e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00014801063699897146, -3.8569547100708906e-06, -9.6423867751772464e-05, -3.8569547100708915e-06, -9.6423867751772266e-07, -2.8927160325531645e-05, -5.7854320651063605e-06, -2.4105966937943119e-06, -2.8927160325531923e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.810333287893608e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -0.00011040532857577961, -1.4463580162765884e-06, -9.6423867751772545e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936256e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.3017222146489235e-05, -4.6283456520850898e-05, -3.8569547100708915e-06, -3.4230473051879091e-05, -5.7854320651063554e-06, -5.7854320651063554e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886493e-06, -3.8569547100708898e-06, -4.8211933875886374e-06, -1.0124506113936144e-05, -3.8569547100708915e-06, -2.4105966937943221e-06, -1.1088744791453848e-05, -3.8569547100708915e-06, -5.7854320651063605e-06, -1.4463580162766079e-06, -2.4105966937943119e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063571e-06, -2.8927160325531997e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -7.7139094201417796e-06, 0.0019602972313935382, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.1570864130212714e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.3390740488297666e-06, -1.6392057517801375e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488297666e-06, -1.2535102807730446e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -8.1960287589005861e-06, -1.4463580162765823e-05, -5.7854320651063605e-06, -2.892716032553182e-06, -4.8211933875886144e-07, -1.9284773550354457e-06, -7.7139094201417813e-06, -1.1570864130212713e-05, -3.8569547100708898e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -5.7854320651063588e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.3390740488297581e-06, -2.4105966937943179e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.4712592390638106e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531638e-05, -3.8569547100708915e-06, -2.3141728260425774e-05, -2.3141728260425429e-05, -2.4105966937943025e-05, -2.3141728260425774e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.3748353713120625e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.9409279664290643e-05, -9.6423867751772266e-07, -3.471259239063816e-05, -3.471259239063816e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.4712592390638173e-05, -3.4712592390638106e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765893e-06, -7.713909420141783e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.845299354526596e-05, -4.821193387588609e-05, -1.2052983468971572e-06, -2.4105966937943066e-07, -7.2317900813829941e-07, -2.4105966937943289e-06, -1.9284773550354692e-05, -4.8211933875886133e-07, -2.2177489582907697e-05, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354692e-05, -1.9284773550354689e-05, -1.9284773550354449e-06, -5.4720544949130571e-05, -4.8211933875886112e-07, -4.8211933875886734e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.928477355035444e-06, -1.2052983468971568e-06, -7.2317900813829909e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -3.6158950406915111e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.1695370244148583e-06, -1.9284773550354453e-06, -3.6158950406915009e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886112e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -3.8569547100708906e-06, -2.4105966937943246e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -2.4105966937943061e-07, -1.9284773550354457e-06, -4.0980143794503015e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -6.0264917344857748e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -1.9284773550354453e-06, -2.4105966937943255e-06, -2.6516563631737292e-06, -9.6423867751772224e-07, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -2.4105966937943056e-07, -1.9284773550354457e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -5.7854320651063885e-06, -1.9284773550354445e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -4.3390740488297251e-06, -9.6423867751772287e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -3.1337757019326284e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -2.0249012227872329e-05, -1.9284773550354453e-06, -2.121325090538985e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -1.928477355035458e-05, -3.8569547100708898e-06, -1.9525833219734071e-05, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -2.0249012227872329e-05, -1.9284773550354692e-05, -1.9284773550354567e-05, -1.9284773550354618e-05, -2.4105966937943061e-07, -9.6423867751772202e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -2.4105966937943056e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.9284773550354449e-06, -2.4105966937943331e-06, -4.8211933875886544e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -5.7854320651063944e-06, -7.2317900813830978e-07, -2.1213250905389989e-05, -3.8569547100708906e-06, -1.7356296195318894e-05, -2.4105966937943066e-07, -2.4105966937943072e-07, -6.0264917344857968e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -1.6874176856560175e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -1.7356296195318894e-05, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.7356296195318894e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -2.410596693794323e-06, -7.2317900813829919e-07, -1.9284773550354453e-06, -3.615895040691487e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.4463580162766062e-06, -7.2317900813830819e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -6.267551403865239e-06, -5.5443723957269268e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.4463580162766094e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.9284773550354618e-05, -1.9284773550354567e-05, -3.905166643946825e-05, -1.9284773550354567e-05, -1.928477355035458e-05, -9.6423867751772224e-07, -4.8211933875886133e-07, -1.9284773550354445e-06, -2.1695370244148541e-06, -9.6423867751772224e-07, -2.6516563631737431e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.8569547100708898e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.9051666439468169e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -7.2317900813829549e-07, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -2.4105966937943061e-07, -9.6423867751772224e-07, -2.8927160325531985e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -4.3390740488297335e-06, -2.4105966937943066e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.2052983468971568e-06, -9.6423867751772287e-07, -4.8211933875886122e-07, -1.4463580162765982e-06, -2.0490071897251667e-05, -2.4105966937943072e-07, 0.00098111285437428694, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943072e-07, -1.1088744791453811e-05, -2.4105966937943141e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.4005318499486192e-05, -1.9284773550354453e-06, -4.8211933875886395e-05, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.4463580162765856e-05, -2.8927160325531976e-06, -1.2052983468971608e-06, -1.4463580162766017e-05, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.9051666439468169e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -5.5202664287889559e-05, -7.2317900813829877e-07, -4.8211933875886442e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.905166643946825e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -6.5086110732446109e-06, -2.3141728260425581e-05, -1.9284773550354453e-06, -1.711523652593944e-05, -2.8927160325531951e-06, -2.8927160325531951e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943344e-06, -1.9284773550354449e-06, -2.4105966937943306e-06, -5.0622530569680805e-06, -1.9284773550354453e-06, -1.2052983468971657e-06, -5.5443723957269039e-06, -1.9284773550354457e-06, -2.8927160325531976e-06, -7.2317900813830841e-07, -1.2052983468971606e-06, -4.8211933875886112e-07, -2.4105966937943061e-07, -2.4105966937943072e-07, -1.9284773550354449e-06, -2.8927160325531964e-06, -1.4463580162766088e-06, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -3.8569547100708889e-06, -1.9284773550354457e-06, 0.00098111285437428694, -1.9284773550354449e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -5.7854320651063919e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.1695370244148685e-06, -8.1960287589006538e-06, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354457e-06, -2.1695370244148685e-06, -6.2675514038652449e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -2.4105966937943056e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.0980143794502778e-06, -7.2317900813829367e-06, -2.8927160325531976e-06, -1.4463580162766062e-06, -2.4105966937943072e-07, -9.6423867751772287e-07, -3.8569547100708906e-06, -5.785432065106391e-06, -1.9284773550354445e-06, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -2.8927160325531773e-06, -1.9284773550354457e-06, -2.4105966937943061e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -2.1695370244148651e-06, -1.205298346897164e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -1.7356296195318941e-05, -9.6423867751772245e-07, -2.4105966937943072e-07, -1.4463580162765853e-05, -1.9284773550354457e-06, -1.1570864130212958e-05, -1.1570864130212768e-05, -1.2052983468971538e-05, -1.1570864130212958e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.6874176856560197e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4704639832145321e-05, -4.8211933875886122e-07, -1.7356296195318894e-05, -1.7356296195318894e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.7356296195318894e-05, -1.7356296195318894e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.2317900813829909e-07, -3.8569547100708915e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -9.690598709053074e-05, -9.6423867751771068e-05, -2.4105966937943272e-06, -4.8211933875886122e-07, -1.4463580162765853e-06, -4.8211933875886832e-06, -3.8569547100709587e-05, -9.6423867751772224e-07, -4.4354979165815936e-05, -4.8211933875886112e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100709587e-05, -3.8569547100709581e-05, -3.8569547100708881e-06, -0.00010944108989826219, -9.6423867751772181e-07, -9.6423867751772342e-05, -7.7139094201417796e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772181e-07, -9.6423867751772181e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708856e-06, -2.4105966937943263e-06, -1.4463580162765863e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -7.2317900813829579e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488297751e-06, -3.8569547100708889e-06, -7.2317900813829392e-06, -9.6423867751772245e-07, -4.8211933875886101e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886101e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772181e-07, -4.8211933875886122e-07, -3.8569547100708889e-06, -7.7139094201417779e-06, -4.8211933875886747e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -4.8211933875886101e-07, -3.8569547100708898e-06, -8.1960287589005437e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -1.5427818840283542e-05, -1.2052983468971414e-05, -3.8569547100708898e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -1.9284773550354436e-06, -3.8569547100708889e-06, -4.8211933875886764e-06, -5.3033127263474422e-06, -1.9284773550354436e-06, -7.7139094201417745e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -9.6423867751772202e-07, -3.8569547100708881e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886112e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886101e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -1.157086413021268e-05, -3.8569547100708873e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -8.6781480976595704e-06, -1.9284773550354449e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -6.2675514038652678e-06, -3.8569547100708889e-06, -7.7139094201417762e-06, -4.0498024455744712e-05, -3.8569547100708898e-06, -4.2426501810779578e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -3.856954710070935e-05, -7.7139094201417762e-06, -3.9051666439468236e-05, -4.8211933875886122e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -1.928477355035444e-06, -4.0498024455744712e-05, -3.8569547100709587e-05, -3.8569547100709188e-05, -3.8569547100709445e-05, -4.8211933875886101e-07, -1.9284773550354428e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886091e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708881e-06, -4.8211933875886916e-06, -9.6423867751773596e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -1.1570864130212707e-05, -1.4463580162766075e-06, -4.2426501810779877e-05, -7.7139094201417762e-06, -3.4712592390638417e-05, -4.8211933875886112e-07, -4.8211933875886122e-07, -1.2052983468971534e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.3748353713120037e-06, -1.928477355035444e-06, -9.6423867751772202e-07, -3.4712592390638404e-05, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.4712592390638404e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -4.8211933875886713e-06, -1.4463580162765863e-06, -3.8569547100708889e-06, -7.2317900813829113e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -9.6423867751772181e-07, -9.6423867751772181e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.8927160325531887e-06, -1.4463580162765687e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -7.7139094201417779e-06, -1.2535102807730502e-05, -1.1088744791453989e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -3.8569547100708889e-06, -2.8927160325531947e-06, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100709445e-05, -3.8569547100709188e-05, -7.8103332878936866e-05, -3.8569547100709255e-05, -3.856954710070935e-05, -1.9284773550354436e-06, -9.6423867751772224e-07, -3.8569547100708873e-06, -4.3390740488297666e-06, -1.9284773550354436e-06, -5.3033127263474702e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -7.7139094201417779e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -7.7139094201417762e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -7.8103332878936703e-05, -3.8569547100708881e-06, -3.8569547100708881e-06, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.4463580162766045e-06, -4.8211933875886122e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886112e-07, -4.8211933875886101e-07, -1.9284773550354436e-06, -5.7854320651063487e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -8.6781480976595874e-06, -4.8211933875886122e-07, -1.9284773550354428e-06, -9.6423867751772202e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.410596693794339e-06, -1.9284773550354449e-06, -9.6423867751772202e-07, -2.8927160325531731e-06, -4.0980143794503334e-05, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886122e-07, -2.2177489582907887e-05, -4.8211933875886527e-06, -4.8211933875886101e-07, -3.8569547100708881e-06, 0.001960297231393539, -3.8569547100708881e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00014801063699897051, -3.8569547100708889e-06, -9.6423867751771665e-05, -3.8569547100708889e-06, -9.6423867751772245e-07, -2.8927160325531459e-05, -5.785432065106347e-06, -2.4105966937943344e-06, -2.8927160325531781e-05, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936703e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00011040532857578007, -1.4463580162765855e-06, -9.6423867751771759e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772202e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.8103332878936866e-05, -3.8569547100708881e-06, -3.8569547100708881e-06, -1.3017222146489203e-05, -4.6283456520850789e-05, -3.8569547100708889e-06, -3.4230473051879362e-05, -5.7854320651063419e-06, -5.7854320651063419e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -4.8211933875886942e-06, -3.8569547100708881e-06, -4.8211933875886815e-06, -1.0124506113936169e-05, -3.8569547100708889e-06, -2.4105966937943441e-06, -1.1088744791453928e-05, -3.8569547100708898e-06, -5.785432065106347e-06, -1.4463580162766045e-06, -2.410596693794334e-06, -9.6423867751772181e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -3.8569547100708881e-06, -5.7854320651063453e-06, -2.8927160325531938e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -3.8569547100708889e-06, -1.9284773550354449e-06, -7.7139094201417779e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, 0.001960297231393539, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417762e-06, -1.1570864130212687e-05, -3.8569547100708889e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488297954e-06, -1.6392057517801179e-05, -9.6423867751772202e-07, -3.8569547100708873e-06, -3.8569547100708898e-06, -4.3390740488297954e-06, -1.2535102807730471e-05, -3.8569547100708881e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886112e-07, -4.8211933875886091e-07, -4.8211933875886101e-07, -9.6423867751772245e-07, -8.1960287589005657e-06, -1.4463580162765745e-05, -5.785432065106347e-06, -2.8927160325531887e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -7.7139094201417762e-06, -1.1570864130212702e-05, -3.8569547100708873e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -5.785432065106347e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -4.3390740488297886e-06, -2.4105966937943407e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -3.4712592390638363e-05, -1.928477355035444e-06, -4.8211933875886122e-07, -2.8927160325531455e-05, -3.8569547100708898e-06, -2.3141728260425672e-05, -2.3141728260425408e-05, -2.4105966937942862e-05, -2.3141728260425672e-05, -1.928477355035444e-06, -1.928477355035444e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.8569547100708881e-06, -4.8211933875886101e-07, -3.8569547100708881e-06, -4.8211933875886112e-07, -4.8211933875886101e-07, -3.3748353713120808e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.9409279664290335e-05, -9.6423867751772202e-07, -3.4712592390638404e-05, -3.4712592390638404e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.4712592390638417e-05, -3.4712592390638349e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -9.6423867751772202e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.4463580162765863e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -1.2113248386316456e-05, -1.2052983468971483e-05, -3.0132458672428815e-07, -6.0264917344857666e-08, -1.8079475203457361e-07, -6.026491734485801e-07, -4.8211933875886544e-06, -1.2052983468971536e-07, -5.5443723957269463e-06, -6.0264917344857679e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886544e-06, -4.8211933875886544e-06, -4.8211933875886122e-07, -1.3680136237282682e-05, -1.2052983468971531e-07, -1.2052983468971644e-05, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886101e-07, -3.0132458672428815e-07, -1.8079475203457371e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857666e-08, -9.0397376017287503e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610371807e-07, -4.8211933875886144e-07, -9.0397376017287174e-07, -1.2052983468971533e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344857883e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344857666e-08, -4.8211933875886144e-07, -1.024503594862579e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6423867751772266e-07, -1.9284773550354445e-06, -1.5066229336214392e-06, -4.8211933875886144e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -6.0264917344857904e-07, -6.6291409079343303e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -1.2052983468971533e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857666e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.4463580162765884e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.0847685122074429e-06, -2.4105966937943072e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -7.8344392548315276e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -5.0622530569680771e-06, -4.8211933875886144e-07, -5.303312726347471e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -4.8211933875886239e-06, -9.6423867751772266e-07, -4.8814583049335024e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943066e-07, -5.0622530569680754e-06, -4.8211933875886544e-06, -4.8211933875886197e-06, -4.8211933875886324e-06, -6.0264917344857666e-08, -2.4105966937943061e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -6.0264917344858095e-07, -1.2052983468971589e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -4.8211933875886133e-07, -1.4463580162765901e-06, -1.8079475203457639e-07, -5.3033127263475125e-06, -9.6423867751772266e-07, -4.3390740488297683e-06, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.5066229336214401e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.2185442141400565e-07, -2.4105966937943061e-07, -1.2052983468971533e-07, -4.3390740488297683e-06, -1.2052983468971533e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297666e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857862e-07, -1.8079475203457377e-07, -4.8211933875886144e-07, -9.039737601728692e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -3.6158950406914944e-07, -1.8079475203457596e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -1.5668878509663017e-06, -1.3860930989317372e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -3.6158950406915029e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886324e-06, -4.8211933875886197e-06, -9.762916609867032e-06, -4.8211933875886197e-06, -4.8211933875886239e-06, -2.4105966937943061e-07, -1.2052983468971536e-07, -4.8211933875886112e-07, -5.4238425610371669e-07, -2.4105966937943061e-07, -6.6291409079343674e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.7629166098670117e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.8079475203457371e-07, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943061e-07, -7.2317900813829549e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.0847685122074404e-06, -6.0264917344857679e-08, -2.4105966937943051e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.0132458672428947e-07, -2.4105966937943072e-07, -1.2052983468971533e-07, -3.6158950406914743e-07, -5.1225179743129167e-06, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, 0.00024274708706508783, -6.0264917344857629e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.8501329624871443e-05, -4.8211933875886133e-07, -1.2052983468971561e-05, -4.8211933875886144e-07, -1.2052983468971533e-07, -3.6158950406914548e-06, -7.2317900813829507e-07, -3.013245867242891e-07, -3.6158950406914946e-06, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670117e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.3800666071972457e-05, -1.8079475203457361e-07, -1.2052983468971572e-05, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.762916609867032e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.627152768311154e-06, -5.7854320651063622e-06, -4.8211933875886144e-07, -4.2788091314848821e-06, -7.2317900813829464e-07, -7.2317900813829464e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344858137e-07, -4.8211933875886122e-07, -6.0264917344857989e-07, -1.265563264242018e-06, -4.8211933875886144e-07, -3.0132458672429026e-07, -1.3860930989317306e-06, -4.8211933875886144e-07, -7.2317900813829507e-07, -1.8079475203457599e-07, -3.0132458672428899e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -7.231790081382921e-07, -3.6158950406914806e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, 0.00024545900834560644, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.4463580162765893e-06, -4.8211933875886144e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610372294e-07, -2.0490071897251702e-06, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -5.4238425610372061e-07, -1.5668878509663089e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.0245035948625728e-06, -1.8079475203457282e-06, -7.2317900813829507e-07, -3.6158950406914944e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -9.6423867751772266e-07, -1.4463580162765895e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -7.2317900813829507e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -5.4238425610372188e-07, -3.0132458672428995e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.3390740488297632e-06, -2.4105966937943066e-07, -6.0264917344857679e-08, -3.6158950406914539e-06, -4.8211933875886144e-07, -2.8927160325532226e-06, -2.8927160325531794e-06, -3.0132458672428785e-06, -2.8927160325532226e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.2185442141400628e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -3.676159958036327e-06, -1.2052983468971533e-07, -4.3390740488297666e-06, -4.3390740488297683e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.3390740488297683e-06, -4.3390740488297598e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.8079475203457371e-07, -9.6423867751772287e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6905987090531621e-05, -9.6423867751771841e-05, -2.4105966937943052e-06, -4.8211933875886133e-07, -1.4463580162765886e-06, -4.8211933875886408e-06, -3.8569547100709235e-05, -9.6423867751772266e-07, -4.4354979165815597e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100709235e-05, -3.8569547100709235e-05, -3.8569547100708898e-06, -0.00010944108989826155, -9.6423867751772245e-07, -9.6423867751773101e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708889e-06, -2.4105966937943052e-06, -1.4463580162765897e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813829985e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297598e-06, -3.8569547100708915e-06, -7.2317900813829723e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, 0.0019602972313935386, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886307e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -8.1960287589006352e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.2052983468971511e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.8211933875886324e-06, -5.3033127263474693e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212718e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976595061e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652458e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.0498024455744617e-05, -3.8569547100708906e-06, -4.2426501810779768e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100708998e-05, -7.7139094201417796e-06, -3.9051666439468019e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.0498024455744603e-05, -3.8569547100709235e-05, -3.8569547100708964e-05, -3.8569547100709066e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886391e-06, -9.6423867751772749e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -1.1570864130212719e-05, -1.4463580162766105e-06, -4.24265018107801e-05, -7.7139094201417813e-06, -3.471259239063816e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971551e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120545e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.471259239063816e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390638146e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886188e-06, -1.4463580162765897e-06, -3.8569547100708915e-06, -7.2317900813829502e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325531955e-06, -1.4463580162766075e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730461e-05, -1.1088744791453901e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532014e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709066e-05, -3.8569547100708964e-05, -7.8103332878936283e-05, -3.8569547100708964e-05, -3.8569547100708998e-05, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297352e-06, -1.9284773550354449e-06, -5.3033127263474939e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936107e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162765897e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -5.7854320651063605e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976595264e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943162e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -2.8927160325531786e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.2177489582907697e-05, -4.8211933875886103e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897149, -3.8569547100708906e-06, -9.6423867751772437e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -2.8927160325531625e-05, -5.785432065106347e-06, -2.4105966937943128e-06, -2.8927160325531943e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936107e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577958, -1.4463580162765897e-06, -9.6423867751772518e-05, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936283e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489273e-05, -4.6283456520850871e-05, -3.8569547100708915e-06, -3.4230473051879064e-05, -5.7854320651063554e-06, -5.7854320651063554e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886425e-06, -3.8569547100708898e-06, -4.8211933875886391e-06, -1.0124506113936147e-05, -3.8569547100708915e-06, -2.4105966937943179e-06, -1.1088744791453848e-05, -3.8569547100708906e-06, -5.785432065106347e-06, -1.446358016276599e-06, -2.4105966937943119e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063571e-06, -2.8927160325532006e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886144e-07, 0.0019602972313935386, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.1570864130212721e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297666e-06, -1.6392057517801355e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488297784e-06, -1.2535102807730471e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -8.1960287589005861e-06, -1.4463580162765819e-05, -5.7854320651063402e-06, -2.8927160325531955e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417813e-06, -1.1570864130212723e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651063639e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.3390740488297581e-06, -2.4105966937943187e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.4712592390638119e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531618e-05, -3.8569547100708906e-06, -2.3141728260425778e-05, -2.3141728260425429e-05, -2.4105966937943018e-05, -2.3141728260425778e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.3748353713120503e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.9409279664290602e-05, -9.6423867751772245e-07, -3.4712592390638146e-05, -3.471259239063816e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.471259239063816e-05, -3.4712592390638092e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765876e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6905987090531567e-05, -9.6423867751771814e-05, -2.410596693794306e-06, -4.8211933875886133e-07, -1.4463580162765882e-06, -4.8211933875886425e-06, -3.8569547100709249e-05, -9.6423867751772266e-07, -4.4354979165815611e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100709249e-05, -3.8569547100709235e-05, -3.8569547100708898e-06, -0.00010944108989826158, -9.6423867751772245e-07, -9.6423867751773101e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708889e-06, -2.4105966937943052e-06, -1.4463580162765893e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813829943e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297564e-06, -3.8569547100708915e-06, -7.2317900813829706e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, 0.0019602972313935386, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886315e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -8.1960287589006369e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.2052983468971507e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.8211933875886332e-06, -5.3033127263474693e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212721e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976595128e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652475e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.0498024455744617e-05, -3.8569547100708906e-06, -4.2426501810779768e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100708998e-05, -7.7139094201417796e-06, -3.9051666439468033e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.0498024455744603e-05, -3.8569547100709249e-05, -3.8569547100708971e-05, -3.8569547100709072e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886391e-06, -9.6423867751772749e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -1.1570864130212716e-05, -1.4463580162766105e-06, -4.24265018107801e-05, -7.7139094201417813e-06, -3.4712592390638187e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971544e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.374835371312052e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390638173e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390638173e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886188e-06, -1.4463580162765893e-06, -3.8569547100708915e-06, -7.2317900813829468e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325531938e-06, -1.4463580162766071e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730461e-05, -1.1088744791453908e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532006e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709072e-05, -3.8569547100708971e-05, -7.8103332878936283e-05, -3.8569547100708971e-05, -3.8569547100708998e-05, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297395e-06, -1.9284773550354449e-06, -5.3033127263474922e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.810333287893612e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162765893e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -5.7854320651063605e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976595298e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943166e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -2.8927160325531777e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.2177489582907711e-05, -4.8211933875886112e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897141, -3.8569547100708906e-06, -9.642386775177241e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -2.8927160325531611e-05, -5.7854320651063521e-06, -2.4105966937943136e-06, -2.8927160325531936e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.810333287893612e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577963, -1.4463580162765901e-06, -9.6423867751772491e-05, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936283e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489266e-05, -4.6283456520850844e-05, -3.8569547100708915e-06, -3.4230473051879064e-05, -5.7854320651063537e-06, -5.7854320651063537e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886425e-06, -3.8569547100708898e-06, -4.8211933875886408e-06, -1.0124506113936147e-05, -3.8569547100708915e-06, -2.4105966937943179e-06, -1.1088744791453855e-05, -3.8569547100708906e-06, -5.7854320651063521e-06, -1.4463580162765982e-06, -2.4105966937943128e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063571e-06, -2.8927160325531989e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, 0.0019602972313935386, -7.7139094201417796e-06, -1.1570864130212728e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297683e-06, -1.6392057517801355e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488297734e-06, -1.2535102807730471e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -8.1960287589005878e-06, -1.4463580162765823e-05, -5.7854320651063436e-06, -2.8927160325531938e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417813e-06, -1.1570864130212726e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651063656e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.3390740488297615e-06, -2.4105966937943196e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.4712592390638133e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531611e-05, -3.8569547100708906e-06, -2.3141728260425767e-05, -2.3141728260425422e-05, -2.4105966937943011e-05, -2.3141728260425767e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.3748353713120516e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.9409279664290589e-05, -9.6423867751772245e-07, -3.4712592390638173e-05, -3.4712592390638173e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390638187e-05, -3.4712592390638119e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.446358016276588e-06, -7.713909420141783e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -0.00019381197418106427, -0.00019284773550354477, -4.8211933875886442e-06, -9.6423867751772224e-07, -2.8927160325532078e-06, -9.6423867751773494e-06, -7.7139094201418877e-05, -1.9284773550354449e-06, -8.8709958331630693e-05, -9.6423867751772245e-07, -1.5427818840283552e-05, -1.5427818840283552e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201418606e-05, -7.7139094201418741e-05, -7.7139094201417762e-06, -0.00021888217979652166, -1.9284773550354449e-06, -0.00019284773550354729, -1.5427818840283552e-05, -7.7139094201417796e-06, -7.7139094201417762e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417745e-06, -4.8211933875886442e-06, -2.8927160325532099e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -1.4463580162765985e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -8.6781480976593926e-06, -7.7139094201417796e-06, -1.4463580162766044e-05, -1.9284773550354445e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -1.5427818840283559e-05, -9.6423867751773291e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -9.6423867751772224e-07, -7.7139094201417796e-06, -1.6392057517801148e-05, -7.7139094201417779e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -3.0855637680567139e-05, -2.4105966937943157e-05, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.5427818840283552e-05, -3.8569547100708881e-06, -7.7139094201417796e-06, -9.6423867751773325e-06, -1.0606625452694895e-05, -3.8569547100708881e-06, -1.5427818840283552e-05, -7.7139094201417796e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -1.928477355035444e-06, -7.7139094201417779e-06, -7.7139094201417796e-06, -9.6423867751772202e-07, -7.7139094201417796e-06, -1.9284773550354445e-06, -7.7139094201417779e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -1.5427818840283559e-05, 0.003912880553366937, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -2.3141728260425659e-05, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -3.8569547100708898e-06, -1.7356296195318819e-05, -3.8569547100708898e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.2535102807730519e-05, -7.7139094201417796e-06, -1.5427818840283559e-05, -8.0996048911489125e-05, -7.7139094201417796e-06, -8.4853003621559184e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -7.7139094201418524e-05, -1.5427818840283556e-05, -7.8103332878936446e-05, -9.6423867751772245e-07, -1.5427818840283556e-05, -1.5427818840283552e-05, -3.8569547100708881e-06, -8.0996048911489071e-05, -7.7139094201418877e-05, -7.7139094201418457e-05, -7.713909420141866e-05, -9.6423867751772224e-07, -3.8569547100708881e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417779e-06, -9.642386775177363e-06, -1.9284773550354679e-05, -1.5427818840283556e-05, -1.5427818840283559e-05, -7.7139094201417779e-06, -2.3141728260425683e-05, -2.8927160325532518e-06, -8.4853003621559889e-05, -1.5427818840283556e-05, -6.9425184781275547e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943241e-05, -1.5427818840283559e-05, -7.7139094201417796e-06, -6.7496707426240599e-06, -3.8569547100708898e-06, -1.9284773550354445e-06, -6.9425184781275547e-05, -1.9284773550354445e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -6.942518478127552e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751773257e-06, -2.89271603255314e-06, -7.7139094201417796e-06, -1.4463580162765975e-05, -9.6423867751772245e-07, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -5.7854320651064528e-06, -2.8927160325532459e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -1.5427818840283559e-05, -2.507020561546097e-05, -2.21774895829075e-05, -9.6423867751772245e-07, -1.5427818840283559e-05, -7.7139094201417796e-06, -5.7854320651064647e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.713909420141866e-05, -7.7139094201418457e-05, -0.00015620666575787335, -7.7139094201418457e-05, -7.7139094201418524e-05, -3.8569547100708881e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -8.6781480976593756e-06, -3.8569547100708881e-06, -1.0606625452694951e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.5427818840283556e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -0.000156206665757873, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.8927160325532099e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -3.8569547100708881e-06, -1.1570864130212846e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.735629619531886e-05, -9.6423867751772245e-07, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -4.8211933875886654e-06, -3.8569547100708898e-06, -1.9284773550354445e-06, -5.7854320651064181e-06, -8.1960287589006667e-05, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -4.4354979165815109e-05, -9.6423867751772884e-06, -9.6423867751772224e-07, -7.7139094201417779e-06, -7.7139094201417762e-06, -7.7139094201417779e-06, -1.5427818840283559e-05, -7.7139094201417762e-06, -1.5427818840283559e-05, -7.7139094201417762e-06, -7.7139094201417762e-06, -0.00029602127399794612, -7.7139094201417796e-06, -0.00019284773550354599, -7.7139094201417796e-06, -1.9284773550354445e-06, -5.7854320651063629e-05, -1.1570864130212843e-05, -4.8211933875886578e-06, -5.7854320651064286e-05, -9.6423867751772245e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -0.000156206665757873, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00022081065715155758, -2.8927160325531392e-06, -0.00019284773550354615, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772245e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -1.928477355035444e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00015620666575787335, -7.7139094201417779e-06, -7.7139094201417779e-06, -2.603444429297843e-05, -9.2566913041702744e-05, -7.7139094201417796e-06, -6.846094610375745e-05, -1.1570864130212833e-05, -1.1570864130212833e-05, -7.7139094201417762e-06, -7.7139094201417762e-06, -9.6423867751773697e-06, -7.7139094201417762e-06, -9.642386775177346e-06, -2.0249012227872315e-05, -7.7139094201417796e-06, -4.8211933875886798e-06, -2.2177489582907548e-05, -7.7139094201417796e-06, -1.1570864130212843e-05, -2.8927160325532468e-06, -4.8211933875886578e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -7.7139094201417762e-06, -1.1570864130212836e-05, -5.785432065106463e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -1.5427818840283552e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -1.5427818840283552e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, 0.003912880553366937, -2.3141728260425147e-05, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.5427818840283552e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -8.6781480976594332e-06, -3.2784115035602493e-05, -1.928477355035444e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -8.6781480976594332e-06, -2.507020561546099e-05, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.6392057517801687e-05, -2.8927160325531957e-05, -1.1570864130212843e-05, -5.7854320651064528e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -1.5427818840283556e-05, -2.3141728260425669e-05, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -1.1570864130212841e-05, -7.7139094201417796e-06, -9.6423867751772202e-07, -1.928477355035444e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -8.6781480976594197e-06, -4.8211933875886713e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -6.9425184781275466e-05, -3.8569547100708881e-06, -9.6423867751772245e-07, -5.7854320651063629e-05, -7.7139094201417796e-06, -4.6283456520852043e-05, -4.6283456520851345e-05, -4.8211933875886307e-05, -4.6283456520852043e-05, -3.8569547100708881e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -9.6423867751772202e-07, -7.7139094201417779e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -6.749670742624049e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -5.8818559328581449e-05, -1.9284773550354445e-06, -6.942518478127552e-05, -6.9425184781275547e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -6.9425184781275547e-05, -6.9425184781275411e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354445e-06, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.8927160325532091e-06, -1.5427818840283559e-05, -1.1570864130212892e-05, -1.1570864130212843e-05, -1.157086413021285e-05, -1.1570864130212884e-05, -5.7854320651063605e-06, -5.7854320651063605e-06, -1.1570864130212718e-05, -1.1570864130212714e-05, -1.4463580162766037e-06, -1.446358016276602e-06, -0.00029071796127159543, -0.00028927160325531589, -7.2317900813829638e-06, -1.4463580162766035e-06, -4.3390740488298343e-06, -1.4463580162766e-05, -0.00011570864130212699, -2.892716032553204e-06, -0.00013306493749744554, -1.4463580162765884e-06, -2.3141728260425703e-05, -2.3141728260425689e-05, -1.1570864130212711e-05, -1.1570864130212721e-05, -0.00011570864130212688, -0.0001157086413021268, -1.1570864130212687e-05, -0.00032832326969478451, -2.8927160325531549e-06, -0.00028927160325531616, -2.3141728260425717e-05, -1.1570864130212843e-05, -1.1570864130212892e-05, -1.446358016276587e-06, -1.4463580162766037e-06, -1.1570864130212802e-05, -1.1570864130212816e-05, -2.8927160325531549e-06, -2.8927160325531549e-06, -1.4463580162765876e-06, -1.4463580162765969e-06, -1.157086413021268e-05, -7.2317900813829833e-06, -4.3390740488298038e-06, -5.7854320651063605e-06, -5.7854320651063571e-06, -1.4463580162766035e-06, -2.1695370244148811e-05, -1.1570864130212775e-05, -1.1570864130212779e-05, -1.3017222146489235e-05, -1.1570864130212728e-05, -2.1695370244148692e-05, -2.8927160325532074e-06, -1.4463580162765753e-06, -1.1570864130212728e-05, -1.1570864130212721e-05, -1.4463580162766045e-06, -1.4463580162766001e-06, -1.1570864130212785e-05, -1.1570864130212772e-05, -2.8927160325531718e-06, -1.4463580162765952e-06, -1.1570864130212755e-05, -2.3141728260425384e-05, -1.4463580162765972e-05, -1.1570864130212809e-05, -2.3141728260425537e-05, -1.446358016276605e-06, -1.1570864130212755e-05, -2.4588086276702388e-05, -1.1570864130212799e-05, -1.1570864130212768e-05, -2.3141728260425134e-05, -4.6283456520851304e-05, -3.6158950406914608e-05, -1.1570864130212714e-05, -2.3141728260425659e-05, -2.3141728260425645e-05, -5.7854320651064478e-06, -1.1570864130212772e-05, -1.4463580162765968e-05, -1.5909938179042286e-05, -5.7854320651064495e-06, -2.3141728260425537e-05, -1.1570864130212802e-05, -1.1570864130212802e-05, -1.1570864130212806e-05, -2.8927160325531921e-06, -1.157086413021287e-05, -1.1570864130212714e-05, -1.4463580162766117e-06, -1.1570864130212711e-05, -2.8927160325531921e-06, -1.1570864130212863e-05, -1.1570864130212802e-05, -1.1570864130212809e-05, -1.4463580162766054e-06, 0.0039051666439467963, -2.3141728260425147e-05, -1.4463580162766011e-06, -1.1570864130212796e-05, -1.1570864130212796e-05, -1.4463580162766022e-06, -1.1570864130212892e-05, -1.1570864130212877e-05, -1.1570864130212762e-05, -1.1570864130212884e-05, -3.471259239063858e-05, -1.1570864130212877e-05, -1.1570864130212762e-05, -1.1570864130212758e-05, -1.4463580162765965e-06, -1.1570864130212748e-05, -1.1570864130212762e-05, -2.3141728260425564e-05, -5.7854320651063571e-06, -2.6034444292978457e-05, -5.7854320651063605e-06, -1.4463580162766096e-06, -2.8927160325531972e-06, -1.8802654211595538e-05, -1.1570864130212809e-05, -2.3141728260425544e-05, -0.00012149407336723412, -1.1570864130212785e-05, -0.00012727950543233845, -1.1570864130212775e-05, -1.1570864130212762e-05, -2.3141728260425645e-05, -0.00011570864130212754, -2.3141728260425659e-05, -0.00011715499931840449, -1.4463580162765874e-06, -2.3141728260425672e-05, -2.3141728260425632e-05, -5.7854320651064351e-06, -0.00012149407336723404, -0.00011570864130212699, -0.00011570864130212716, -0.00011570864130212788, -1.4463580162766041e-06, -5.785432065106341e-06, -1.4463580162765935e-06, -1.4463580162766071e-06, -1.4463580162765774e-06, -1.1570864130212809e-05, -1.1570864130212809e-05, -1.1570864130212802e-05, -1.1570864130212809e-05, -1.4463580162765935e-06, -1.4463580162765952e-06, -1.4463580162765935e-06, -1.157086413021285e-05, -1.4463580162766058e-05, -2.8927160325531964e-05, -2.3141728260425537e-05, -2.3141728260425537e-05, -1.157086413021285e-05, -3.4712592390638404e-05, -4.3390740488297132e-06, -0.00012727950543233886, -2.3141728260425523e-05, -0.00010413777717191367, -1.4463580162766033e-06, -1.4463580162765986e-06, -3.6158950406914594e-05, -2.3141728260425564e-05, -1.1570864130212775e-05, -1.0124506113936193e-05, -5.7854320651064215e-06, -2.8927160325532065e-06, -0.00010413777717191367, -2.8927160325532074e-06, -5.7854320651063605e-06, -5.7854320651063605e-06, -0.00010413777717191367, -1.1570864130212741e-05, -1.4463580162765978e-06, -1.1570864130212775e-05, -1.4463580162765935e-06, -1.1570864130212775e-05, -1.4463580162766004e-05, -4.3390740488296954e-06, 0.0019525833219733975, -2.1695370244148811e-05, -1.4463580162765876e-06, -1.1570864130212735e-05, -2.8927160325531549e-06, -2.8927160325531549e-06, -2.8927160325532175e-06, -1.4463580162766003e-06, -8.6781480976595162e-06, -4.3390740488297217e-06, -1.1570864130212826e-05, -1.157086413021284e-05, -2.314172826042551e-05, -3.7605308423191097e-05, -3.3266234374361264e-05, -1.4463580162765876e-06, -2.3141728260425374e-05, -1.1570864130212836e-05, -8.6781480976594959e-06, -2.8927160325531735e-06, -1.4463580162765952e-06, -1.4463580162766071e-06, -0.00011570864130212788, -0.00011570864130212716, -0.00023430999863680753, -0.00011570864130212718, -0.00011570864130212754, -5.7854320651064495e-06, -2.8927160325531735e-06, -1.1570864130212926e-05, -1.3017222146489235e-05, -5.7854320651064478e-06, -1.5909938179042313e-05, -1.4463580162766033e-06, -1.4463580162765884e-06, -2.3141728260425388e-05, -1.1570864130212735e-05, -1.1570864130212762e-05, -1.4463580162765986e-06, -1.4463580162766035e-06, -5.7854320651064046e-06, -5.785432065106408e-06, -2.3141728260425374e-05, -1.1570864130212843e-05, -1.4463580162765918e-06, -0.00023430999863680997, -1.1570864130212833e-05, -1.1570864130212829e-05, -1.4463580162766011e-06, -5.785432065106408e-06, -5.7854320651064046e-06, -2.8927160325531752e-06, -2.8927160325531752e-06, -4.3390740488297971e-06, -1.4463580162766039e-06, -2.8927160325531752e-06, -2.8927160325531752e-06, -1.4463580162765952e-06, -1.4463580162766045e-06, -5.7854320651063639e-06, -1.7356296195319134e-05, -1.1570864130212735e-05, -1.4463580162765935e-06, -1.4463580162765884e-06, -2.603444429297842e-05, -1.4463580162765999e-06, -5.78543206510643e-06, -2.8927160325532065e-06, -2.3141728260425432e-05, -2.3141728260425445e-05, -7.2317900813829909e-06, -5.7854320651063936e-06, -2.8927160325531718e-06, -8.6781480976595704e-06, -0.00012294043138351017, -1.4463580162765978e-06, -5.7854320651063919e-06, -5.7854320651063953e-06, -2.3141728260425459e-05, -2.3141728260425418e-05, -5.7854320651063978e-06, -5.7854320651063758e-06, -5.7854320651063741e-06, -1.4463580162765935e-06, -6.6532468748722366e-05, -1.4463580162765983e-05, -1.4463580162766054e-06, -1.1570864130212829e-05, -1.1570864130212687e-05, -1.1570864130212833e-05, -2.3141728260425418e-05, -1.1570864130212687e-05, -2.3141728260425459e-05, -1.1570864130212687e-05, -1.1570864130212687e-05, -0.00044403191099691024, -1.1570864130212829e-05, -0.00028927160325531627, -1.1570864130212748e-05, -2.8927160325532086e-06, -8.6781480976594634e-05, -1.7356296195319053e-05, -7.2317900813829841e-06, -8.6781480976594634e-05, -1.4463580162765901e-06, -1.1570864130212806e-05, -1.1570864130212802e-05, -0.00023430999863680997, -1.1570864130212731e-05, -1.1570864130212728e-05, -0.00033121598572733818, -4.3390740488296997e-06, -0.00028927160325531648, -1.1570864130212796e-05, -1.1570864130212796e-05, -1.4463580162765956e-06, -1.1570864130212799e-05, -1.1570864130212809e-05, -1.4463580162765918e-06, -2.3141728260425445e-05, -2.3141728260425432e-05, -2.8927160325532175e-06, -5.7854320651064046e-06, -5.785432065106408e-06, -1.1570864130212836e-05, -1.1570864130212836e-05, -0.00023430999863680753, -1.157086413021284e-05, -1.1570864130212826e-05, -3.9051666439468338e-05, -0.00013885036956255351, -1.1570864130212802e-05, -0.00010269141915563751, -1.7356296195319276e-05, -1.7356296195319276e-05, -1.1570864130212843e-05, -1.1570864130212877e-05, -1.4463580162766044e-05, -1.1570864130212892e-05, -1.4463580162766004e-05, -3.0373518341808571e-05, -1.1570864130212755e-05, -7.2317900813830138e-06, -3.3266234374361346e-05, -1.1570864130212735e-05, -1.7356296195319039e-05, -4.3390740488297149e-06, -7.2317900813829909e-06, -2.8927160325531506e-06, -1.4463580162766041e-06, -1.4463580162765978e-06, -1.1570864130212892e-05, -1.7356296195319222e-05, -8.6781480976594959e-06, -5.7854320651063707e-06, -1.157086413021285e-05, -1.1570864130212687e-05, -1.1570864130212687e-05, -2.3141728260425374e-05, -1.1570864130212711e-05, -5.7854320651063953e-06, -2.3141728260425374e-05, -1.1570864130212714e-05, -5.7854320651063919e-06, -1.1570864130212687e-05, -1.4463580162765893e-06, -1.1570864130212721e-05, -1.1570864130212728e-05, -2.3141728260425147e-05, 0.0058577499659201943, -1.1570864130212775e-05, -2.3141728260425717e-05, -2.3141728260425676e-05, -1.1570864130212714e-05, -1.1570864130212718e-05, -1.1570864130212735e-05, -1.1570864130212724e-05, -1.3017222146489208e-05, -4.9176172553404777e-05, -2.8927160325531709e-06, -1.1570864130212877e-05, -1.1570864130212707e-05, -1.3017222146489229e-05, -3.7605308423190934e-05, -1.1570864130212843e-05, -1.1570864130212775e-05, -1.1570864130212892e-05, -5.7854320651063936e-06, -5.7854320651063953e-06, -1.4463580162766028e-06, -1.4463580162765774e-06, -1.4463580162766054e-06, -2.8927160325532006e-06, -2.4588086276701674e-05, -4.3390740488297568e-05, -1.7356296195319093e-05, -8.6781480976595162e-06, -1.4463580162765969e-06, -5.7854320651063902e-06, -2.3141728260425523e-05, -3.4712592390638404e-05, -1.1570864130212877e-05, -5.7854320651063902e-06, -2.3141728260425551e-05, -2.3141728260425537e-05, -5.7854320651063902e-06, -1.7356296195319141e-05, -1.1570864130212731e-05, -1.4463580162766096e-06, -2.8927160325531921e-06, -5.7854320651063902e-06, -5.7854320651063978e-06, -1.3017222146489217e-05, -7.2317900813829985e-06, -1.1570864130212829e-05, -2.3141728260425384e-05, -0.00010413777717191375, -5.7854320651064351e-06, -1.4463580162765944e-06, -8.6781480976594634e-05, -1.1570864130212758e-05, -6.9425184781275466e-05, -6.9425184781276753e-05, -7.2317900813829189e-05, -6.9425184781275466e-05, -5.7854320651064351e-06, -5.7854320651064351e-06, -1.1570864130212775e-05, -1.1570864130212765e-05, -5.7854320651063809e-06, -5.7854320651063809e-06, -1.1570864130212863e-05, -1.4463580162766088e-06, -1.157086413021287e-05, -1.4463580162765961e-06, -1.4463580162766024e-06, -0.00010124506113936142, -5.7854320651063809e-06, -5.7854320651063809e-06, -8.8227838992873108e-05, -2.8927160325532133e-06, -0.00010413777717191367, -0.00010413777717191367, -1.1570864130212755e-05, -1.4463580162765939e-06, -1.1570864130212765e-05, -0.00010413777717191367, -0.00010413777717191361, -1.1570864130212762e-05, -1.1570864130212748e-05, -2.8927160325531836e-06, -2.8927160325532065e-06, -2.3141728260425401e-05, -1.1570864130212755e-05, -1.1570864130212755e-05, -4.3390740488297903e-06, -2.3141728260425401e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6905987090531811e-05, -9.6423867751772112e-05, -2.4105966937943136e-06, -4.8211933875886133e-07, -1.4463580162765954e-06, -4.8211933875886561e-06, -3.8569547100709371e-05, -9.6423867751772266e-07, -4.4354979165815455e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100709371e-05, -3.8569547100709371e-05, -3.8569547100708898e-06, -0.00010944108989826126, -9.6423867751772245e-07, -9.6423867751773372e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708889e-06, -2.4105966937943136e-06, -1.4463580162765965e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813830171e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297429e-06, -3.8569547100708915e-06, -7.2317900813829909e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886468e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -8.1960287589006149e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.2052983468971541e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.8211933875886485e-06, -5.3033127263474693e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212779e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594637e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652543e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.0498024455744644e-05, -3.8569547100708906e-06, -4.24265018107797e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.856954710070912e-05, -7.7139094201417796e-06, -3.9051666439468114e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.049802445574463e-05, -3.8569547100709371e-05, -3.8569547100709093e-05, -3.8569547100709194e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886391e-06, -9.6423867751773054e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -1.1570864130212774e-05, -1.4463580162766174e-06, -4.2426501810780033e-05, -7.7139094201417813e-06, -3.4712592390637997e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971587e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120753e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390637997e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390637984e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, 0.0019593329927160203, -1.4463580162765965e-06, -3.8569547100708915e-06, -7.2317900813829689e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325532091e-06, -1.4463580162766145e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730471e-05, -1.1088744791453865e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.892716032553215e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709194e-05, -3.8569547100709093e-05, -7.8103332878936473e-05, -3.8569547100709093e-05, -3.856954710070912e-05, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297149e-06, -1.9284773550354449e-06, -5.3033127263474837e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936296e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162765965e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -5.7854320651063876e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976594857e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943238e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -2.8927160325531921e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.2177489582907622e-05, -4.8211933875886264e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897211, -3.8569547100708906e-06, -9.6423867751772722e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -2.8927160325531699e-05, -5.7854320651063385e-06, -2.4105966937943204e-06, -2.8927160325532021e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936296e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577925, -1.4463580162765978e-06, -9.6423867751772803e-05, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936473e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489386e-05, -4.6283456520851087e-05, -3.8569547100708915e-06, -3.4230473051878928e-05, -5.7854320651063825e-06, -5.7854320651063825e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886425e-06, -3.8569547100708898e-06, -4.8211933875886561e-06, -1.0124506113936154e-05, -3.8569547100708915e-06, -2.4105966937943179e-06, -1.1088744791453815e-05, -3.8569547100708906e-06, -5.7854320651063317e-06, -1.4463580162765834e-06, -2.4105966937943204e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063842e-06, -2.8927160325532141e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.1570864130212775e-05, 0.0019602972313935386, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297463e-06, -1.6392057517801308e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488298038e-06, -1.2535102807730485e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -8.1960287589005657e-06, -1.446358016276585e-05, -5.7854320651063588e-06, -2.8927160325532091e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417813e-06, -1.1570864130212784e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651063961e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.3390740488297369e-06, -2.4105966937943272e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.4712592390637956e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531692e-05, -3.8569547100708906e-06, -2.3141728260425886e-05, -2.3141728260425537e-05, -2.4105966937943079e-05, -2.3141728260425886e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.3748353713120408e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.940927966429065e-05, -9.6423867751772245e-07, -3.4712592390637984e-05, -3.4712592390637997e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390637997e-05, -3.4712592390637929e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765956e-06, -7.713909420141783e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -0.00019381197418106454, -0.00019284773550354506, -4.8211933875886425e-06, -9.6423867751772245e-07, -2.8927160325532133e-06, -9.642386775177346e-06, -7.7139094201418985e-05, -1.9284773550354445e-06, -8.8709958331630395e-05, -9.6423867751772245e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201418999e-05, -7.7139094201418985e-05, -7.7139094201417762e-06, -0.00021888217979652136, -1.928477355035444e-06, -0.00019284773550354764, 0.003912880553366937, -7.7139094201417779e-06, -7.7139094201417762e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417779e-06, -7.7139094201417796e-06, -1.928477355035444e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417711e-06, -4.8211933875886425e-06, -2.892716032553215e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -1.4463580162766107e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -8.6781480976593688e-06, -7.7139094201417796e-06, -1.4463580162766065e-05, -1.9284773550354449e-06, -9.6423867751772202e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -1.5427818840283556e-05, -9.6423867751773274e-06, -7.7139094201417779e-06, -1.5427818840283556e-05, -9.6423867751772224e-07, -7.7139094201417796e-06, -1.6392057517801101e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -3.0855637680567098e-05, -2.4105966937943197e-05, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.5427818840283552e-05, -3.8569547100708881e-06, -7.7139094201417796e-06, -9.6423867751773291e-06, -1.0606625452694901e-05, -3.8569547100708881e-06, -1.5427818840283549e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.928477355035444e-06, -7.7139094201417779e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -1.9284773550354445e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772224e-07, -1.5427818840283552e-05, -1.5427818840283552e-05, -9.6423867751772224e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -9.6423867751772245e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -2.3141728260425703e-05, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -3.8569547100708898e-06, -1.7356296195318772e-05, -3.8569547100708898e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.253510280773052e-05, -7.7139094201417779e-06, -1.5427818840283552e-05, -8.0996048911489342e-05, -7.7139094201417796e-06, -8.4853003621559279e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -7.7139094201418538e-05, -1.5427818840283556e-05, -7.810333287893631e-05, -9.6423867751772245e-07, -1.5427818840283556e-05, -1.5427818840283552e-05, -3.8569547100708881e-06, -8.0996048911489342e-05, -7.7139094201418985e-05, -7.7139094201418185e-05, -7.7139094201418714e-05, -9.6423867751772224e-07, -3.8569547100708856e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772202e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417779e-06, -9.6423867751773596e-06, -1.9284773550354672e-05, -1.5427818840283556e-05, -1.5427818840283559e-05, -7.7139094201417779e-06, -2.3141728260425727e-05, -2.8927160325532578e-06, -8.4853003621559889e-05, -1.5427818840283559e-05, -6.9425184781275357e-05, -9.6423867751772224e-07, -9.6423867751772245e-07, -2.410596693794313e-05, -1.5427818840283559e-05, -7.7139094201417796e-06, -6.7496707426241598e-06, -3.8569547100708881e-06, -1.9284773550354445e-06, -6.9425184781275357e-05, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -6.9425184781275357e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751773223e-06, -2.8927160325532154e-06, -7.7139094201417796e-06, -1.4463580162766012e-05, -9.6423867751772245e-07, -7.7139094201417796e-06, -1.928477355035444e-06, -1.928477355035444e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -5.785432065106463e-06, -2.8927160325531434e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -1.5427818840283556e-05, -2.5070205615460973e-05, -2.2177489582907609e-05, -9.6423867751772245e-07, -1.5427818840283556e-05, -7.7139094201417779e-06, -5.7854320651064757e-06, -1.9284773550354445e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -7.7139094201418714e-05, -7.7139094201418185e-05, -0.00015620666575787341, -7.7139094201418321e-05, -7.7139094201418538e-05, -3.8569547100708881e-06, -1.9284773550354445e-06, -7.7139094201417745e-06, -8.6781480976593519e-06, -3.8569547100708881e-06, -1.0606625452694956e-05, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.5427818840283556e-05, -7.7139094201417779e-06, -9.6423867751772245e-07, -0.00015620666575787305, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772224e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.8927160325532158e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -3.8569547100708881e-06, -1.1570864130212868e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.7356296195318812e-05, -9.6423867751772245e-07, -3.8569547100708856e-06, -1.928477355035444e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -4.8211933875886671e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -5.78543206510643e-06, -8.1960287589006667e-05, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -4.4354979165815035e-05, -9.642386775177285e-06, -9.6423867751772224e-07, -7.7139094201417779e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.5427818840283559e-05, -7.7139094201417796e-06, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00029602127399794693, -7.7139094201417779e-06, -0.00019284773550354628, -7.7139094201417796e-06, -1.9284773550354449e-06, -5.7854320651063676e-05, -1.1570864130212865e-05, -4.8211933875886578e-06, -5.785432065106432e-05, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00015620666575787305, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00022081065715155718, -2.8927160325532137e-06, -0.00019284773550354647, -7.7139094201417779e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -1.928477355035444e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -0.00015620666575787341, -7.7139094201417779e-06, -7.7139094201417779e-06, -2.6034444292978427e-05, -9.2566913041702893e-05, -7.7139094201417796e-06, -6.8460946103757314e-05, -1.1570864130212855e-05, -1.1570864130212855e-05, -7.7139094201417762e-06, -7.7139094201417762e-06, -9.6423867751773664e-06, -7.7139094201417762e-06, -9.6423867751773511e-06, -2.0249012227872325e-05, -7.7139094201417796e-06, -4.8211933875886772e-06, -2.2177489582907484e-05, -7.7139094201417796e-06, -1.1570864130212865e-05, -2.8927160325532523e-06, -4.8211933875886569e-06, -1.928477355035444e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -7.7139094201417762e-06, -1.157086413021286e-05, -5.7854320651064732e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -1.5427818840283556e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -2.3141728260425717e-05, -7.7139094201417796e-06, 0.003912880553366937, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -8.6781480976594095e-06, -3.2784115035602405e-05, -1.928477355035444e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -8.6781480976594095e-06, -2.5070205615460248e-05, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.639205751780104e-05, -2.8927160325531869e-05, -1.1570864130212865e-05, -5.785432065106463e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -1.5427818840283559e-05, -2.3141728260425713e-05, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -1.1570864130212863e-05, -7.7139094201417796e-06, -9.6423867751772202e-07, -1.928477355035444e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -8.6781480976593959e-06, -4.8211933875886696e-06, -7.7139094201417779e-06, -1.5427818840283556e-05, -6.9425184781275276e-05, -3.8569547100708881e-06, -9.6423867751772245e-07, -5.7854320651063663e-05, -7.7139094201417796e-06, -4.6283456520852131e-05, -4.628345652085144e-05, -4.8211933875886388e-05, -4.6283456520852131e-05, -3.8569547100708881e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -9.6423867751772202e-07, -7.7139094201417779e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.7496707426240396e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -5.8818559328581462e-05, -1.9284773550354445e-06, -6.9425184781275357e-05, -6.9425184781275357e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -6.9425184781275357e-05, -6.9425184781275249e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354445e-06, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.892716032553215e-06, -1.5427818840283559e-05, -7.7139094201417762e-06, -7.7139094201417762e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -0.00019381197418106411, -0.0001928477355035446, -4.8211933875886476e-06, -9.6423867751772245e-07, -2.8927160325532082e-06, -9.6423867751773528e-06, -7.7139094201419066e-05, -1.9284773550354445e-06, -8.8709958331630612e-05, -9.6423867751772224e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -7.7139094201417779e-06, -7.7139094201417779e-06, -7.7139094201419066e-05, -7.7139094201419053e-05, -7.7139094201417762e-06, 0.0037094261924107185, -1.9284773550354436e-06, -0.00019284773550354718, -1.5427818840283559e-05, -7.7139094201417779e-06, -7.7139094201417762e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -1.9284773550354436e-06, -1.9284773550354436e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417711e-06, -4.8211933875886468e-06, -2.8927160325532099e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -1.446358016276608e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -8.6781480976593926e-06, -7.7139094201417779e-06, -1.4463580162766038e-05, -1.9284773550354449e-06, -9.6423867751772202e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772202e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354436e-06, -9.6423867751772245e-07, -7.7139094201417779e-06, -1.5427818840283556e-05, -9.6423867751773359e-06, -7.7139094201417779e-06, -1.5427818840283556e-05, -9.6423867751772202e-07, -7.7139094201417779e-06, -1.6392057517801084e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -3.0855637680567084e-05, -2.4105966937943136e-05, -7.7139094201417779e-06, -1.5427818840283552e-05, -1.5427818840283552e-05, -3.8569547100708873e-06, -7.7139094201417779e-06, -9.6423867751773393e-06, -1.0606625452694895e-05, -3.8569547100708873e-06, -1.5427818840283549e-05, -7.7139094201417779e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.928477355035444e-06, -7.7139094201417762e-06, -7.7139094201417779e-06, -9.6423867751772245e-07, -7.7139094201417779e-06, -1.928477355035444e-06, -7.7139094201417762e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772224e-07, -1.5427818840283552e-05, -1.5427818840283552e-05, -9.6423867751772224e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772224e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -2.3141728260425662e-05, -7.7139094201417745e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772224e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -1.5427818840283559e-05, -3.8569547100708898e-06, -1.7356296195318819e-05, -3.8569547100708898e-06, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.2535102807730527e-05, -7.7139094201417779e-06, -1.5427818840283552e-05, -8.0996048911489369e-05, -7.7139094201417796e-06, -8.4853003621559225e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -7.7139094201418592e-05, -1.5427818840283552e-05, -7.8103332878936391e-05, -9.6423867751772245e-07, -1.5427818840283552e-05, -1.5427818840283552e-05, -3.8569547100708881e-06, -8.0996048911489356e-05, -7.7139094201419066e-05, -7.7139094201418267e-05, -7.7139094201418782e-05, -9.6423867751772202e-07, -3.8569547100708856e-06, -9.6423867751772245e-07, -9.6423867751772202e-07, -9.6423867751772181e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -7.7139094201417762e-06, -9.6423867751773697e-06, -1.9284773550354692e-05, -1.5427818840283552e-05, -1.5427818840283559e-05, -7.7139094201417762e-06, -2.3141728260425686e-05, -2.8927160325532527e-06, -8.4853003621559835e-05, -1.5427818840283556e-05, -6.9425184781275547e-05, -9.6423867751772224e-07, -9.6423867751772245e-07, -2.4105966937943069e-05, -1.5427818840283559e-05, -7.7139094201417796e-06, -6.7496707426241548e-06, -3.8569547100708881e-06, -1.928477355035444e-06, -6.9425184781275547e-05, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -6.9425184781275547e-05, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417779e-06, -9.6423867751772224e-07, -7.7139094201417779e-06, -9.6423867751773291e-06, -2.8927160325532103e-06, -7.7139094201417779e-06, -1.4463580162765983e-05, -9.6423867751772245e-07, -7.7139094201417796e-06, -1.9284773550354436e-06, -1.9284773550354436e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -5.7854320651064528e-06, -2.8927160325531383e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -1.5427818840283556e-05, -2.5070205615460987e-05, -2.2177489582907663e-05, -9.6423867751772245e-07, -1.5427818840283556e-05, -7.7139094201417779e-06, -5.7854320651064656e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -7.7139094201418782e-05, -7.7139094201418267e-05, -0.00015620666575787357, -7.7139094201418402e-05, -7.7139094201418592e-05, -3.8569547100708873e-06, -1.9284773550354445e-06, -7.7139094201417745e-06, -8.6781480976593756e-06, -3.8569547100708873e-06, -1.0606625452694949e-05, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.5427818840283556e-05, -7.7139094201417779e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.5427818840283552e-05, -7.7139094201417779e-06, -9.6423867751772245e-07, -0.00015620666575787319, -7.7139094201417762e-06, -7.7139094201417762e-06, -9.6423867751772224e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.8927160325532108e-06, -9.6423867751772245e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -9.6423867751772224e-07, -9.6423867751772202e-07, -3.8569547100708873e-06, -1.1570864130212848e-05, -7.7139094201417779e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.735629619531886e-05, -9.6423867751772245e-07, -3.8569547100708856e-06, -1.928477355035444e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -4.8211933875886713e-06, -3.8569547100708889e-06, -1.928477355035444e-06, -5.7854320651064198e-06, -8.1960287589006667e-05, -9.6423867751772245e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772245e-07, -4.4354979165815143e-05, -9.6423867751772935e-06, -9.6423867751772202e-07, -7.7139094201417762e-06, -7.7139094201417796e-06, -7.7139094201417762e-06, -1.5427818840283559e-05, -7.7139094201417796e-06, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00029602127399794607, -7.7139094201417779e-06, -0.00019284773550354582, -7.7139094201417779e-06, -1.9284773550354449e-06, -5.7854320651063568e-05, -1.1570864130212845e-05, -4.821193387588662e-06, -5.7854320651064212e-05, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00015620666575787319, -7.7139094201417779e-06, -7.7139094201417779e-06, -0.00022081065715155758, -2.8927160325532086e-06, -0.00019284773550354601, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -1.928477355035444e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -0.00015620666575787357, -7.7139094201417762e-06, -7.7139094201417762e-06, -2.603444429297842e-05, -9.2566913041702731e-05, -7.7139094201417779e-06, -6.8460946103757531e-05, -1.1570864130212835e-05, -1.1570864130212835e-05, -7.7139094201417762e-06, -7.7139094201417762e-06, -9.6423867751773748e-06, -7.7139094201417762e-06, -9.6423867751773596e-06, -2.0249012227872329e-05, -7.7139094201417779e-06, -4.8211933875886815e-06, -2.2177489582907538e-05, -7.7139094201417779e-06, -1.1570864130212845e-05, -2.8927160325532472e-06, -4.8211933875886612e-06, -1.9284773550354436e-06, -9.6423867751772202e-07, -9.6423867751772245e-07, -7.7139094201417762e-06, -1.157086413021284e-05, -5.785432065106463e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -7.7139094201417779e-06, -3.8569547100708889e-06, -1.5427818840283556e-05, -7.7139094201417796e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -1.5427818840283552e-05, -2.3141728260425676e-05, -7.7139094201417779e-06, -1.5427818840283559e-05, 0.0039128805533669379, -7.7139094201417779e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -8.6781480976594332e-06, -3.2784115035602351e-05, -1.928477355035444e-06, -7.7139094201417745e-06, -7.7139094201417796e-06, -8.6781480976594332e-06, -2.5070205615460316e-05, -7.7139094201417762e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772224e-07, -9.6423867751772181e-07, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.6392057517801023e-05, -2.8927160325531814e-05, -1.1570864130212845e-05, -5.7854320651064528e-06, -9.6423867751772245e-07, -3.8569547100708889e-06, -1.5427818840283556e-05, -2.3141728260425672e-05, -7.7139094201417745e-06, -3.8569547100708889e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708889e-06, -1.1570864130212843e-05, -7.7139094201417779e-06, -9.6423867751772202e-07, -1.928477355035444e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -8.6781480976594197e-06, -4.8211933875886747e-06, -7.7139094201417779e-06, -1.5427818840283556e-05, -6.9425184781275466e-05, -3.8569547100708881e-06, -9.6423867751772245e-07, -5.7854320651063554e-05, -7.7139094201417779e-06, -4.628345652085205e-05, -4.6283456520851359e-05, -4.8211933875886266e-05, -4.628345652085205e-05, -3.8569547100708881e-06, -3.8569547100708881e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417762e-06, -9.6423867751772202e-07, -7.7139094201417762e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -6.7496707426240626e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -5.881855932858134e-05, -1.928477355035444e-06, -6.9425184781275547e-05, -6.9425184781275547e-05, -7.7139094201417779e-06, -9.6423867751772224e-07, -7.7139094201417779e-06, -6.9425184781275547e-05, -6.9425184781275439e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -1.928477355035444e-06, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.8927160325532099e-06, -1.5427818840283559e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, 0.0019602972313935386, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6905987090531621e-05, -9.6423867751771759e-05, -2.4105966937943052e-06, -4.8211933875886133e-07, -1.4463580162765886e-06, -4.82119338758864e-06, -3.8569547100709235e-05, -9.6423867751772266e-07, -4.4354979165815597e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100709235e-05, -3.8569547100709235e-05, -3.8569547100708898e-06, -0.00010944108989826163, -9.6423867751772245e-07, -9.6423867751773101e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.4105966937943052e-06, -1.4463580162765897e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813829943e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297463e-06, -3.8569547100708915e-06, -7.2317900813829723e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.7139094201417813e-06, -4.8211933875886307e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -8.1960287589006318e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971509e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.8211933875886324e-06, -5.3033127263474676e-06, -1.9284773550354449e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212707e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976595061e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652475e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -4.049802445574463e-05, -3.8569547100708906e-06, -4.2426501810779768e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709011e-05, -7.7139094201417796e-06, -3.9051666439468033e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.049802445574463e-05, -3.8569547100709235e-05, -3.8569547100708978e-05, -3.8569547100709079e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -4.8211933875886476e-06, -9.6423867751772715e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -1.1570864130212719e-05, -1.4463580162766105e-06, -4.2426501810780093e-05, -7.7139094201417813e-06, -3.4712592390638173e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.205298346897155e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120465e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.471259239063816e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.471259239063816e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886281e-06, -1.4463580162765897e-06, -3.8569547100708915e-06, -7.2317900813829468e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325531955e-06, -1.4463580162766075e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730461e-05, -1.1088744791453904e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532014e-06, -9.6423867751772266e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709079e-05, -3.8569547100708978e-05, -7.8103332878936283e-05, -3.8569547100708978e-05, -3.8569547100709011e-05, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297369e-06, -1.9284773550354449e-06, -5.3033127263474956e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936134e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162765897e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651063622e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976595264e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943166e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325531786e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.2177489582907721e-05, -4.8211933875886103e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897146, -3.8569547100708906e-06, -9.6423867751772356e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -2.8927160325531598e-05, -5.7854320651063605e-06, -2.4105966937943128e-06, -2.8927160325531923e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936134e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577969, -1.4463580162765889e-06, -9.6423867751772491e-05, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936283e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489232e-05, -4.6283456520850884e-05, -3.8569547100708915e-06, -3.4230473051879064e-05, -5.7854320651063554e-06, -5.7854320651063554e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.821193387588651e-06, -3.8569547100708898e-06, -4.8211933875886408e-06, -1.0124506113936154e-05, -3.8569547100708915e-06, -2.4105966937943221e-06, -1.1088744791453855e-05, -3.8569547100708906e-06, -5.7854320651063605e-06, -1.4463580162766079e-06, -2.4105966937943119e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063571e-06, -2.8927160325532006e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.1570864130212714e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, 0.0019602972313935386, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297666e-06, -1.6392057517801369e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488297666e-06, -1.2535102807730471e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -8.1960287589005861e-06, -1.4463580162765816e-05, -5.7854320651063605e-06, -2.8927160325531955e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417813e-06, -1.1570864130212713e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651063597e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.3390740488297581e-06, -2.4105966937943187e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -3.4712592390638119e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531598e-05, -3.8569547100708906e-06, -2.3141728260425778e-05, -2.3141728260425429e-05, -2.4105966937943014e-05, -2.3141728260425778e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.3748353713120516e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.9409279664290575e-05, -9.6423867751772245e-07, -3.471259239063816e-05, -3.471259239063816e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390638173e-05, -3.4712592390638106e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765893e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, 0.0019602972313935386, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6905987090531648e-05, -9.6423867751771678e-05, -2.4105966937943043e-06, -4.8211933875886133e-07, -1.4463580162765891e-06, -4.8211933875886391e-06, -3.8569547100709228e-05, -9.6423867751772266e-07, -4.4354979165815584e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100709235e-05, -3.8569547100709221e-05, -3.8569547100708898e-06, -0.00010944108989826168, -9.6423867751772245e-07, -9.6423867751773155e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.4105966937943043e-06, -1.4463580162765901e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813829943e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297446e-06, -3.8569547100708915e-06, -7.2317900813829739e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.7139094201417813e-06, -4.8211933875886298e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -8.1960287589006301e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971512e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.8211933875886315e-06, -5.3033127263474676e-06, -1.9284773550354449e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212711e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976595027e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652475e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -4.049802445574463e-05, -3.8569547100708906e-06, -4.2426501810779782e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100708998e-05, -7.7139094201417796e-06, -3.9051666439468033e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.049802445574463e-05, -3.8569547100709228e-05, -3.8569547100708971e-05, -3.8569547100709072e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -4.8211933875886468e-06, -9.6423867751772698e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -1.1570864130212723e-05, -1.4463580162766115e-06, -4.24265018107801e-05, -7.7139094201417813e-06, -3.471259239063816e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971553e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120452e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390638146e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390638146e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886273e-06, -1.4463580162765901e-06, -3.8569547100708915e-06, -7.2317900813829485e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325531955e-06, -1.4463580162766079e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730461e-05, -1.1088744791453901e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532023e-06, -9.6423867751772266e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709072e-05, -3.8569547100708971e-05, -7.8103332878936283e-05, -3.8569547100708971e-05, -3.8569547100708998e-05, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297352e-06, -1.9284773550354449e-06, -5.3033127263474964e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.810333287893612e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162765901e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651063639e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.678148097659523e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943162e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325531794e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.2177489582907711e-05, -4.8211933875886086e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897152, -3.8569547100708906e-06, -9.6423867751772274e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -2.8927160325531611e-05, -5.7854320651063622e-06, -2.4105966937943119e-06, -2.892716032553193e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.810333287893612e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.0001104053285757798, -1.4463580162765893e-06, -9.6423867751772545e-05, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936283e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489232e-05, -4.6283456520850898e-05, -3.8569547100708915e-06, -3.423047305187905e-05, -5.7854320651063571e-06, -5.7854320651063571e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886493e-06, -3.8569547100708898e-06, -4.8211933875886408e-06, -1.0124506113936154e-05, -3.8569547100708915e-06, -2.4105966937943221e-06, -1.1088744791453848e-05, -3.8569547100708906e-06, -5.7854320651063622e-06, -1.4463580162766083e-06, -2.4105966937943119e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063605e-06, -2.8927160325532006e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.1570864130212718e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, 0.0019602972313935386, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297649e-06, -1.6392057517801365e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488297649e-06, -1.2535102807730471e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -8.1960287589005827e-06, -1.4463580162765819e-05, -5.7854320651063622e-06, -2.8927160325531955e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417813e-06, -1.1570864130212716e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651063614e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.3390740488297564e-06, -2.4105966937943183e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -3.4712592390638106e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531604e-05, -3.8569547100708906e-06, -2.3141728260425784e-05, -2.3141728260425435e-05, -2.4105966937943021e-05, -2.3141728260425784e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.3748353713120516e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.9409279664290589e-05, -9.6423867751772245e-07, -3.4712592390638146e-05, -3.4712592390638146e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.471259239063816e-05, -3.4712592390638092e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765901e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.690598709053173e-05, -9.6423867751771976e-05, -2.410596693794306e-06, -4.8211933875886133e-07, -1.4463580162765914e-06, -4.8211933875886408e-06, -3.8569547100709249e-05, -9.6423867751772266e-07, -4.4354979165815523e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100709249e-05, -3.8569547100709242e-05, -3.8569547100708898e-06, -0.00010944108989826141, -9.6423867751772224e-07, -9.6423867751773264e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.4105966937943052e-06, -1.4463580162765927e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813830019e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297335e-06, -3.8569547100708906e-06, -7.2317900813829807e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886324e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886122e-07, -3.8569547100708915e-06, -8.1960287589006233e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971524e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -4.8211933875886341e-06, -5.3033127263474676e-06, -1.9284773550354445e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.8211933875886112e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212728e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594857e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652483e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -4.0498024455744644e-05, -3.8569547100708906e-06, -4.2426501810779775e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709025e-05, -7.7139094201417796e-06, -3.9051666439468047e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.0498024455744644e-05, -3.8569547100709249e-05, -3.8569547100708998e-05, -3.85695471007091e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886493e-06, -9.6423867751772749e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -1.157086413021274e-05, -1.4463580162766134e-06, -4.2426501810780087e-05, -7.7139094201417813e-06, -3.4712592390638051e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971568e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120418e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390638051e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390638038e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.821193387588629e-06, -1.4463580162765922e-06, -3.8569547100708906e-06, -7.2317900813829553e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325532002e-06, -1.44635801627661e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730463e-05, -1.1088744791453887e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532065e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.85695471007091e-05, -3.8569547100708998e-05, -7.810333287893631e-05, -3.8569547100708998e-05, -3.8569547100709025e-05, -1.9284773550354445e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297251e-06, -1.9284773550354445e-06, -5.3033127263474956e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936147e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4463580162765846e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651063724e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -8.6781480976595061e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -7.713909420141783e-06, -7.713909420141783e-06, -2.4105966937943111e-06, -1.9284773550354457e-06, -9.6423867751772245e-07, -2.8927160325531836e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886144e-07, -2.2177489582907677e-05, -4.8211933875886112e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00014801063699897181, -3.8569547100708906e-06, -9.6423867751772573e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.8927160325531632e-05, -5.7854320651063707e-06, -2.4105966937943132e-06, -2.8927160325531957e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936147e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -0.00011040532857577942, -1.4463580162765914e-06, -9.6423867751772667e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.810333287893631e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489232e-05, -4.6283456520850965e-05, -3.8569547100708906e-06, -3.4230473051879003e-05, -5.7854320651063656e-06, -5.7854320651063656e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886518e-06, -3.8569547100708898e-06, -4.8211933875886442e-06, -1.0124506113936158e-05, -3.8569547100708906e-06, -2.410596693794323e-06, -1.1088744791453838e-05, 0.0019602972313935386, -5.7854320651063707e-06, -1.4463580162766105e-06, -2.4105966937943128e-06, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063681e-06, -2.8927160325532052e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354457e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.1570864130212735e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, 0.0019602972313935386, -3.8569547100708915e-06, -4.3390740488297547e-06, -1.6392057517801348e-05, -9.6423867751772224e-07, -3.8569547100708889e-06, -3.8569547100708915e-06, -4.3390740488297547e-06, -1.2535102807730473e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -8.1960287589005759e-06, -1.4463580162765833e-05, -5.7854320651063707e-06, -2.8927160325532002e-06, -4.8211933875886144e-07, -1.9284773550354457e-06, -7.7139094201417813e-06, -1.1570864130212735e-05, -3.8569547100708889e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -5.7854320651063343e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354453e-06, -4.3390740488297479e-06, -2.4105966937943196e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -3.4712592390638038e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531632e-05, -3.8569547100708915e-06, -2.3141728260425818e-05, -2.3141728260425442e-05, -2.4105966937943021e-05, -2.3141728260425818e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.3748353713120489e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.9409279664290602e-05, -9.6423867751772245e-07, -3.4712592390638038e-05, -3.4712592390638051e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.4712592390638051e-05, -3.4712592390637997e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.446358016276592e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6905987090531621e-05, -9.6423867751771868e-05, -2.4105966937943069e-06, -4.8211933875886133e-07, -1.4463580162765927e-06, -4.8211933875886442e-06, -3.8569547100709262e-05, -9.6423867751772266e-07, -4.4354979165815584e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100709269e-05, -3.8569547100709262e-05, -3.8569547100708898e-06, -0.00010944108989826154, -9.6423867751772224e-07, -9.6423867751773155e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.4105966937943069e-06, -1.4463580162765939e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813829968e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297412e-06, -3.8569547100708906e-06, -7.2317900813829739e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886341e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886122e-07, -3.8569547100708915e-06, -8.1960287589006284e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971511e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -4.8211933875886357e-06, -5.3033127263474659e-06, -1.9284773550354445e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.8211933875886112e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212718e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594993e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.26755140386525e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -4.0498024455744657e-05, -3.8569547100708906e-06, -4.2426501810779761e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709052e-05, -7.7139094201417796e-06, -3.905166643946806e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.0498024455744657e-05, -3.8569547100709262e-05, -3.8569547100709018e-05, -3.856954710070912e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.821193387588651e-06, -9.6423867751772783e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -1.157086413021273e-05, -1.4463580162766122e-06, -4.2426501810780073e-05, -7.7139094201417813e-06, -3.4712592390638011e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971555e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120452e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390638011e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390637997e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886324e-06, -1.446358016276591e-06, -3.8569547100708906e-06, -7.2317900813829485e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325531976e-06, -1.4463580162766088e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730464e-05, -1.1088744791453901e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.892716032553204e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.856954710070912e-05, -3.8569547100709018e-05, -7.8103332878936364e-05, -3.8569547100709018e-05, -3.8569547100709052e-05, -1.9284773550354445e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297319e-06, -1.9284773550354445e-06, -5.3033127263474939e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936188e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4463580162765834e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651063673e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -8.6781480976595196e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -7.713909420141783e-06, -7.713909420141783e-06, -2.4105966937943111e-06, -1.9284773550354457e-06, -9.6423867751772245e-07, -2.8927160325531811e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886144e-07, -2.2177489582907704e-05, -4.8211933875886137e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.0001480106369989716, -3.8569547100708906e-06, -9.6423867751772464e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.8927160325531611e-05, -5.7854320651063656e-06, -2.4105966937943145e-06, -2.892716032553193e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936188e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -0.0001104053285757795, -1.4463580162765901e-06, -9.6423867751772559e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936364e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489229e-05, -4.6283456520850925e-05, -3.8569547100708906e-06, -3.4230473051879057e-05, -5.7854320651063605e-06, -5.7854320651063605e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886544e-06, -3.8569547100708898e-06, -4.8211933875886459e-06, -1.0124506113936158e-05, -3.8569547100708906e-06, -2.4105966937943242e-06, 0.0019530654413121556, -3.8569547100708915e-06, -5.7854320651063656e-06, -1.4463580162766092e-06, -2.4105966937943141e-06, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063631e-06, -2.8927160325532027e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354457e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.1570864130212724e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, 0.0019602972313935386, -4.3390740488297615e-06, -1.6392057517801362e-05, -9.6423867751772224e-07, -3.8569547100708889e-06, -3.8569547100708915e-06, -4.3390740488297615e-06, -1.2535102807730476e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -8.196028758900581e-06, -1.4463580162765819e-05, -5.7854320651063656e-06, -2.8927160325531976e-06, -4.8211933875886144e-07, -1.9284773550354457e-06, -7.7139094201417813e-06, -1.1570864130212724e-05, -3.8569547100708889e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -5.785432065106341e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354453e-06, -4.3390740488297547e-06, -2.4105966937943204e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -3.4712592390638092e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531604e-05, -3.8569547100708915e-06, -2.3141728260425798e-05, -2.3141728260425422e-05, -2.4105966937942994e-05, -2.3141728260425798e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.3748353713120503e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.9409279664290568e-05, -9.6423867751772245e-07, -3.4712592390637997e-05, -3.4712592390638011e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.4712592390638011e-05, -3.4712592390638038e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765908e-06, -7.713909420141783e-06, -4.3390740488298665e-06, -4.3390740488298394e-06, -4.3390740488298547e-06, 0.001959815112054781, -2.1695370244148909e-06, -2.1695370244148926e-06, -4.3390740488297649e-06, -4.3390740488297666e-06, -5.4238425610371479e-07, -5.4238425610371542e-07, -0.00010901923547684697, -0.00010847685122074437, -2.711921280518598e-06, -5.4238425610371479e-07, -1.6271527683111472e-06, -5.4238425610371595e-06, -4.3390740488297168e-05, -1.0847685122074308e-06, -4.9899351561542835e-05, -5.4238425610372103e-07, -8.6781480976594163e-06, -8.6781480976594264e-06, -4.3390740488297683e-06, -4.3390740488297615e-06, -4.3390740488297168e-05, -4.3390740488297168e-05, -4.3390740488296759e-06, -0.00012312122613554425, -1.0847685122074228e-06, -0.00010847685122074291, -8.6781480976594095e-06, -4.3390740488298445e-06, -4.3390740488298682e-06, -5.4238425610372114e-07, -5.42384256103715e-07, -4.3390740488297319e-06, -4.3390740488297251e-06, -1.0847685122074228e-06, -1.0847685122074232e-06, -5.4238425610372125e-07, -5.4238425610371765e-07, -4.3390740488297047e-06, -2.711921280518587e-06, -1.6271527683111523e-06, -2.1695370244148935e-06, -2.1695370244148892e-06, -5.4238425610371479e-07, -8.135763841555705e-06, -4.3390740488297412e-06, -4.3390740488297395e-06, -4.8814583049335312e-06, -4.33907404882977e-06, -8.1357638415557355e-06, -1.0847685122074296e-06, -5.4238425610371246e-07, -4.3390740488297683e-06, -4.3390740488297666e-06, -5.4238425610371458e-07, -5.4238425610371627e-07, -4.3390740488297369e-06, -4.3390740488297429e-06, -1.0847685122074283e-06, -5.4238425610371849e-07, -4.3390740488297547e-06, -8.6781480976595772e-06, -5.4238425610371748e-06, -4.3390740488297302e-06, -8.6781480976595264e-06, -5.4238425610371436e-07, -4.3390740488297513e-06, -9.2205323537633681e-06, -4.3390740488297319e-06, -4.3390740488297479e-06, -8.678148097659423e-06, -1.7356296195319256e-05, -1.3559606402592837e-05, -4.3390740488297632e-06, -8.6781480976594366e-06, -8.6781480976594468e-06, -2.1695370244148473e-06, -4.3390740488297446e-06, -5.4238425610371731e-06, -5.9662268171410893e-06, -2.1695370244148473e-06, -8.6781480976596179e-06, -4.3390740488297302e-06, -4.3390740488297302e-06, -4.3390740488297268e-06, -1.0847685122074514e-06, -4.3390740488297047e-06, -4.3390740488297632e-06, -5.423842561037114e-07, -4.3390740488297666e-06, -1.0847685122074387e-06, -4.3390740488297064e-06, -4.3390740488297335e-06, -4.3390740488297268e-06, -5.4238425610373099e-07, -8.67814809765944e-06, -8.6781480976594332e-06, -5.4238425610372887e-07, -4.3390740488297319e-06, -4.3390740488297352e-06, -5.4238425610371521e-07, -4.3390740488296946e-06, -4.3390740488297014e-06, -4.3390740488297496e-06, -4.3390740488296997e-06, -1.3017222146489171e-05, -4.3390740488297014e-06, -4.3390740488297581e-06, -4.3390740488297496e-06, -5.4238425610371786e-07, -4.339074048829753e-06, -4.3390740488297463e-06, -8.6781480976596043e-06, -2.1695370244148892e-06, -9.7629166098670455e-06, -2.1695370244148935e-06, -5.4238425610371246e-07, -1.0847685122074342e-06, -7.0509953293485136e-06, -4.3390740488297268e-06, -8.6781480976595975e-06, -4.5560277512711877e-05, -4.3390740488297369e-06, -4.7729814537127956e-05, -4.3390740488297446e-06, -4.3390740488297496e-06, -8.6781480976594468e-06, -4.3390740488297391e-05, -8.6781480976594366e-06, -4.3933124744401116e-05, -5.4238425610372103e-07, -8.6781480976594298e-06, -8.6781480976594535e-06, -2.1695370244149324e-06, -4.5560277512711877e-05, -4.3390740488297168e-05, -4.3390740488297405e-05, -4.3390740488297371e-05, -5.4238425610371479e-07, -2.1695370244148388e-06, -5.4238425610371913e-07, -5.4238425610371331e-07, -5.4238425610371161e-07, -4.3390740488297302e-06, -4.3390740488297285e-06, -4.3390740488297319e-06, -4.3390740488297302e-06, -5.4238425610371892e-07, -5.4238425610371849e-07, -5.4238425610371892e-07, -4.3390740488297115e-06, -5.4238425610371494e-06, -1.0847685122074336e-05, -8.6781480976596043e-06, -8.6781480976594891e-06, -4.3390740488297132e-06, -1.3017222146489225e-05, -1.6271527683111527e-06, -4.7729814537128274e-05, -8.6781480976594993e-06, -3.9051666439468528e-05, -5.42384256103715e-07, -5.4238425610371712e-07, -1.3559606402593114e-05, -8.6781480976596043e-06, -4.3390740488297412e-06, -3.796689792726068e-06, -2.1695370244148896e-06, -1.08476851220743e-06, -3.9051666439468528e-05, -1.0847685122074296e-06, -2.1695370244148926e-06, -2.1695370244148909e-06, -3.9051666439468528e-05, -4.3390740488297954e-06, -5.4238425610372696e-07, -4.3390740488297412e-06, -5.4238425610371892e-07, -4.3390740488297479e-06, -5.4238425610371697e-06, -1.6271527683111517e-06, -4.3390740488297446e-06, -8.1357638415557524e-06, -5.4238425610372146e-07, -4.3390740488297903e-06, -1.0847685122074228e-06, -1.0847685122074232e-06, -1.0847685122074253e-06, -5.4238425610371627e-07, -3.2543055366223105e-06, -1.6271527683111529e-06, -4.33907404882972e-06, -4.3390740488297132e-06, -8.6781480976595128e-06, -1.4101990658696883e-05, -1.2474837890385712e-05, -5.4238425610372146e-07, -8.6781480976595298e-06, -4.3390740488297183e-06, -3.2543055366223088e-06, -1.0847685122074387e-06, -5.4238425610371849e-07, -5.4238425610371352e-07, -4.3390740488297371e-05, -4.3390740488297405e-05, -8.7866249488802653e-05, -4.3390740488297405e-05, -4.3390740488297391e-05, -2.1695370244148473e-06, -1.08476851220744e-06, -4.3390740488297971e-06, -4.8814583049335312e-06, -2.1695370244148473e-06, -5.966226817141025e-06, -5.4238425610371479e-07, -5.4238425610372103e-07, -8.6781480976594739e-06, -4.3390740488297564e-06, -4.3390740488298055e-06, -5.423842561037169e-07, -5.4238425610371479e-07, -2.1695370244149138e-06, -2.169537024414918e-06, -8.6781480976595332e-06, -4.3390740488297149e-06, -5.42384256103724e-07, -8.7866249488801894e-05, -4.3390740488297166e-06, -4.3390740488297183e-06, -5.4238425610372887e-07, -2.1695370244149163e-06, -2.1695370244149146e-06, -1.0847685122074425e-06, -1.0847685122074421e-06, -1.6271527683111527e-06, -5.4238425610371458e-07, -1.0847685122074421e-06, -1.0847685122074425e-06, -5.4238425610371828e-07, -5.4238425610371458e-07, -2.169537024414896e-06, -6.5086110732446295e-06, -4.3390740488297581e-06, -5.4238425610371913e-07, -5.4238425610372103e-07, -9.7629166098670659e-06, -5.4238425610371627e-07, -2.1695370244149095e-06, -1.0847685122074493e-06, -8.6781480976595332e-06, -8.678148097659523e-06, -2.711921280518584e-06, -2.1695370244148676e-06, -1.0847685122074325e-06, -3.2543055366223127e-06, -4.61026617688171e-05, -5.4238425610371765e-07, -2.1695370244148685e-06, -2.1695370244148668e-06, -8.6781480976595162e-06, -8.6781480976595399e-06, -2.1695370244148676e-06, -2.1695370244148757e-06, -2.1695370244148757e-06, -5.4238425610371913e-07, -2.4949675780771197e-05, -5.4238425610371705e-06, -5.4238425610371436e-07, -4.3390740488297183e-06, -4.3390740488297954e-06, -4.3390740488297166e-06, -8.6781480976595399e-06, -4.3390740488297818e-06, -8.6781480976595162e-06, -4.3390740488297954e-06, -4.3390740488297971e-06, -0.000166511966623842, -4.33907404882972e-06, -0.0001084768512207437, -4.339074048829753e-06, -1.0847685122074287e-06, -3.2543055366223186e-05, -6.5086110732446177e-06, -2.7119212805185891e-06, -3.2543055366222847e-05, -5.4238425610372294e-07, -4.3390740488297268e-06, -4.3390740488297302e-06, -8.7866249488801894e-05, -4.3390740488297581e-06, -4.3390740488297598e-06, -0.0001242059946477513, -1.6271527683111493e-06, -0.00010847685122074364, -4.3390740488297352e-06, -4.3390740488297319e-06, -5.4238425610371807e-07, -4.3390740488297319e-06, -4.3390740488297251e-06, -5.4238425610371955e-07, -8.678148097659523e-06, -8.6781480976595332e-06, -1.0847685122074253e-06, -2.1695370244149146e-06, -2.1695370244149163e-06, -4.3390740488297183e-06, -4.3390740488297166e-06, -8.7866249488802653e-05, -4.3390740488297132e-06, -4.33907404882972e-06, -1.464437491480065e-05, -5.2068888585956792e-05, -4.3390740488297302e-06, -3.8509282183364457e-05, -6.508611073244666e-06, -6.5086110732446609e-06, -4.3390740488297166e-06, -4.3390740488297014e-06, -5.4238425610371511e-06, -4.3390740488296946e-06, -5.4238425610371604e-06, -1.1390069378177959e-05, -4.3390740488297564e-06, -2.7119212805185781e-06, 0.00023304443537256766, -4.3390740488297547e-06, -6.5086110732446177e-06, -1.6271527683111527e-06, -2.7119212805185882e-06, -1.0847685122074249e-06, -5.4238425610371479e-07, -5.4238425610372696e-07, -4.3390740488298682e-06, -6.508611073244793e-06, -3.2543055366223542e-06, -2.1695370244148782e-06, -4.3390740488298496e-06, -4.3390740488296759e-06, -4.3390740488297971e-06, -8.6781480976595704e-06, -4.3390740488297683e-06, -2.1695370244148668e-06, -8.6781480976595433e-06, -4.3390740488297666e-06, -2.1695370244148685e-06, -4.3390740488297954e-06, -5.4238425610372294e-07, -4.3390740488297666e-06, -4.3390740488297683e-06, -8.6781480976594332e-06, -1.3017222146489208e-05, -4.3390740488297463e-06, -8.6781480976594095e-06, -8.6781480976594332e-06, -4.3390740488297666e-06, -4.3390740488297649e-06, -4.3390740488297547e-06, -4.3390740488297615e-06, 0.0022047920010616353, -1.8441064707526733e-05, -1.0847685122074531e-06, -4.3390740488297014e-06, -4.3390740488297683e-06, -4.8814583049335677e-06, -1.4101990658697071e-05, -4.3390740488298394e-06, -4.3390740488297412e-06, -4.3390740488298665e-06, -2.1695370244148676e-06, -2.1695370244148668e-06, -5.4238425610372993e-07, -5.4238425610371161e-07, -5.4238425610371436e-07, -1.0847685122074325e-06, -9.220532353763507e-06, -1.6271527683111437e-05, -6.5086110732446211e-06, -3.2543055366223105e-06, -5.4238425610372654e-07, -2.1695370244148685e-06, -8.6781480976594993e-06, -1.3017222146489193e-05, -4.3390740488297031e-06, -2.1695370244148697e-06, -8.6781480976594823e-06, -8.6781480976594891e-06, -2.1695370244148697e-06, -6.5086110732446143e-06, -4.3390740488297581e-06, -5.4238425610371246e-07, -1.0847685122074518e-06, -2.1695370244148685e-06, -2.1695370244148676e-06, -4.8814583049335262e-06, -2.7119212805185823e-06, -4.3390740488298377e-06, -8.6781480976595772e-06, -3.9051666439468128e-05, -2.1695370244149324e-06, -5.4238425610371892e-07, -3.2543055366223132e-05, -4.3390740488297496e-06, -2.6034444292978457e-05, -2.6034444292978454e-05, -2.7119212805185887e-05, -2.6034444292978457e-05, -2.1695370244149307e-06, -2.1695370244149299e-06, -4.3390740488297412e-06, -4.3390740488297479e-06, -2.1695370244148731e-06, -2.169537024414874e-06, -4.3390740488297064e-06, -5.4238425610371267e-07, -4.3390740488297047e-06, -5.4238425610371786e-07, -5.4238425610371521e-07, -3.7966897927260766e-05, -2.169537024414874e-06, -2.1695370244148731e-06, -3.3085439622326613e-05, -1.084768512207427e-06, -3.9051666439468528e-05, -3.9051666439468528e-05, -4.3390740488297513e-06, -5.423842561037187e-07, -4.3390740488297446e-06, -3.9051666439468528e-05, -3.9051666439468108e-05, -4.3390740488298055e-06, -4.3390740488297903e-06, -1.0847685122074395e-06, -1.0847685122074304e-06, -8.6781480976595365e-06, -4.3390740488297954e-06, -4.3390740488298005e-06, -1.627152768311157e-06, -8.6781480976595365e-06, -1.6392057517801199e-05, -1.6392057517801213e-05, 0.0019477621285858093, -1.6392057517801199e-05, -8.1960287589006742e-06, -8.1960287589006775e-06, -1.6392057517801365e-05, -1.6392057517801369e-05, -2.0490071897251546e-06, -2.0490071897251609e-06, -0.00041185044513475697, -0.00040980143794503354, -1.024503594862584e-05, -2.0490071897251546e-06, -6.1470215691755598e-06, -2.0490071897251674e-05, -0.00016392057517801352, -4.0980143794503201e-06, -0.00018850866145471391, -2.0490071897251711e-06, -3.2784115035602392e-05, 0.0038955242571716204, -1.6392057517801375e-05, -1.6392057517801362e-05, -0.0001639205751780135, -0.00016392057517801352, -1.6392057517801199e-05, -0.00046512463206761361, -4.0980143794503049e-06, -0.0004098014379450331, -3.2784115035602405e-05, -1.6392057517801213e-05, -1.6392057517801206e-05, -2.0490071897251715e-06, -2.0490071897251592e-06, -1.6392057517801281e-05, -1.6392057517801287e-05, -4.0980143794503032e-06, -4.0980143794503032e-06, -2.0490071897251728e-06, -2.0490071897251643e-06, -1.6392057517801389e-05, -1.0245035948625838e-05, -6.1470215691755615e-06, -8.1960287589006775e-06, -8.1960287589006742e-06, -2.0490071897251546e-06, -3.0735107845877522e-05, -1.6392057517801274e-05, -1.6392057517801277e-05, -1.8441064707526458e-05, -1.6392057517801348e-05, -3.0735107845877522e-05, -4.0980143794503083e-06, -2.0490071897251541e-06, -1.6392057517801355e-05, -1.6392057517801355e-05, -2.0490071897251584e-06, -2.049007189725158e-06, -1.6392057517801281e-05, -1.639205751780127e-05, -4.0980143794503083e-06, -2.0490071897251668e-06, -1.6392057517801321e-05, -3.2784115035602832e-05, -2.0490071897251677e-05, -1.6392057517801287e-05, -3.2784115035602588e-05, -2.0490071897251575e-06, -1.6392057517801342e-05, -3.483312222532762e-05, -1.639205751780124e-05, -1.6392057517801335e-05, -3.2784115035602507e-05, -6.5568230071205664e-05, -5.1225179743129206e-05, -1.6392057517801362e-05, -3.2784115035602507e-05, -3.2784115035602493e-05, -8.1960287589006064e-06, -1.6392057517801328e-05, -2.0490071897251677e-05, -2.2539079086976635e-05, -8.1960287589006064e-06, -3.278411503560252e-05, -1.6392057517801301e-05, -1.6392057517801243e-05, -1.6392057517801247e-05, -4.0980143794503066e-06, -1.6392057517801247e-05, -1.6392057517801362e-05, -2.0490071897251499e-06, -1.6392057517801369e-05, -4.0980143794503151e-06, -1.639205751780124e-05, -1.6392057517801281e-05, -1.6392057517801294e-05, -2.0490071897251541e-06, -3.2784115035602493e-05, -3.2784115035602493e-05, -2.0490071897251584e-06, -1.6392057517801301e-05, -1.6392057517801301e-05, -2.0490071897251596e-06, -1.6392057517801226e-05, -1.639205751780122e-05, -1.6392057517801342e-05, -1.639205751780122e-05, -4.917617255340475e-05, -1.6392057517801233e-05, -1.6392057517801321e-05, -1.6392057517801335e-05, -2.0490071897251652e-06, -1.6392057517801328e-05, -1.6392057517801328e-05, -3.2784115035602534e-05, -8.1960287589006742e-06, -3.6882129415053222e-05, -8.1960287589006775e-06, -2.0490071897251541e-06, -4.0980143794503269e-06, -2.6637093466426763e-05, -1.6392057517801294e-05, -3.2784115035602371e-05, -0.00017211660393691186, -1.6392057517801281e-05, -0.00018031263269581622, -1.6392057517801328e-05, -1.6392057517801342e-05, -3.2784115035602493e-05, -0.00016392057517801366, -3.2784115035602507e-05, -0.00016596958236773853, -2.0490071897251711e-06, -3.278411503560252e-05, -3.2784115035602493e-05, -8.1960287589006098e-06, -0.00017211660393691186, -0.00016392057517801352, -0.00016392057517801352, -0.0001639205751780135, -2.0490071897251584e-06, -8.1960287589007114e-06, -2.0490071897251677e-06, -2.0490071897251558e-06, -2.0490071897251524e-06, -1.6392057517801281e-05, -1.6392057517801287e-05, -1.6392057517801287e-05, -1.6392057517801287e-05, -2.0490071897251677e-06, -2.0490071897251668e-06, -2.0490071897251677e-06, -1.6392057517801253e-05, 0.00022502920136569806, -4.0980143794503347e-05, -3.2784115035602548e-05, -3.2784115035602622e-05, -1.6392057517801253e-05, -4.9176172553404438e-05, -6.1470215691755802e-06, -0.00018031263269581627, -3.2784115035602629e-05, -0.00014752851766021053, -2.0490071897251592e-06, -2.0490071897251643e-06, -5.1225179743129206e-05, -3.2784115035602534e-05, -1.6392057517801274e-05, -1.4343050328076274e-05, -8.196028758900708e-06, -4.0980143794503176e-06, -0.00014752851766021056, -4.0980143794503083e-06, -8.1960287589006775e-06, -8.1960287589006742e-06, -0.00014752851766021056, -1.6392057517801342e-05, -2.0490071897251618e-06, -1.6392057517801308e-05, -2.0490071897251677e-06, 0.0019477621285858085, -2.049007189725168e-05, -6.1470215691755861e-06, -1.6392057517801308e-05, -3.0735107845877522e-05, -2.0490071897251728e-06, -1.6392057517801335e-05, -4.0980143794503049e-06, -4.0980143794503032e-06, -4.0980143794503083e-06, -2.0490071897251618e-06, -1.2294043138351113e-05, -6.1470215691753997e-06, -1.639205751780126e-05, -1.6392057517801267e-05, -3.278411503560248e-05, -5.3274186932853791e-05, -4.7127165363678457e-05, -2.0490071897251728e-06, -3.2784115035602453e-05, -1.639205751780126e-05, -1.2294043138351123e-05, -4.0980143794503354e-06, -2.0490071897251668e-06, -2.0490071897251558e-06, -0.0001639205751780135, -0.00016392057517801352, -0.00033193916473547592, -0.00016392057517801355, -0.00016392057517801366, -8.1960287589006064e-06, -4.0980143794503388e-06, -1.6392057517801308e-05, -1.8441064707526448e-05, -8.1960287589006064e-06, -2.253907908697698e-05, -2.0490071897251592e-06, -2.0490071897251711e-06, -3.2784115035602629e-05, -1.6392057517801348e-05, -1.6392057517801321e-05, -2.0490071897251635e-06, -2.0490071897251546e-06, -8.1960287589006301e-06, -8.1960287589006301e-06, -3.2784115035602466e-05, -1.6392057517801267e-05, -2.0490071897251677e-06, -0.00033193916473547619, -1.639205751780126e-05, -1.639205751780126e-05, -2.0490071897251584e-06, -8.1960287589006301e-06, -8.1960287589006301e-06, -4.098014379450343e-06, -4.0980143794503422e-06, -6.147021569175548e-06, -2.0490071897251537e-06, -4.0980143794503422e-06, -4.098014379450343e-06, -2.049007189725166e-06, -2.0490071897251584e-06, -8.1960287589006945e-06, -2.4588086276702192e-05, -1.6392057517801355e-05, -2.0490071897251685e-06, -2.0490071897251711e-06, -3.6882129415052625e-05, -2.0490071897251584e-06, -8.1960287589006979e-06, -4.0980143794503489e-06, -3.2784115035602717e-05, -3.2784115035602703e-05, -1.0245035948625838e-05, -8.1960287589006538e-06, -4.0980143794502778e-06, -1.2294043138351167e-05, -0.00017416561112664205, -2.0490071897251643e-06, -8.1960287589006538e-06, -8.1960287589006504e-06, -3.2784115035602683e-05, -3.2784115035602737e-05, -8.1960287589006504e-06, -8.1960287589006674e-06, -8.1960287589006708e-06, -2.0490071897251677e-06, 0.00015126494253559571, -2.0490071897251674e-05, -2.0490071897251575e-06, -1.639205751780126e-05, -1.6392057517801179e-05, -1.639205751780126e-05, -3.2784115035602737e-05, -1.6392057517801192e-05, -3.2784115035602683e-05, -1.6392057517801172e-05, -1.6392057517801176e-05, -0.00062904520724563033, -1.639205751780126e-05, -0.00040980143794503376, -1.6392057517801328e-05, -4.0980143794503074e-06, -0.00012294043138351009, -2.4588086276702226e-05, -1.024503594862584e-05, -0.00012294043138351022, -2.0490071897251702e-06, -1.6392057517801247e-05, -1.6392057517801243e-05, -0.00033193916473547619, -1.6392057517801355e-05, -1.6392057517801355e-05, -0.00046922264644705955, -6.1470215691756005e-06, -0.00040980143794503365, -1.6392057517801301e-05, -1.6392057517801301e-05, -2.0490071897251652e-06, -1.639205751780124e-05, -1.639205751780125e-05, -2.0490071897251685e-06, -3.2784115035602703e-05, -3.2784115035602717e-05, -4.0980143794503083e-06, -8.1960287589006301e-06, -8.1960287589006301e-06, -1.639205751780126e-05, -1.639205751780126e-05, -0.00033193916473547592, -1.6392057517801267e-05, -1.639205751780126e-05, -5.532319412257944e-05, -0.00019670469021361686, -1.6392057517801301e-05, -0.00014547951047048639, -2.458808627670247e-05, -2.4588086276702476e-05, -1.6392057517801247e-05, -1.639205751780122e-05, -2.0490071897251687e-05, -1.6392057517801226e-05, -2.0490071897251677e-05, -4.3029150984227993e-05, -1.6392057517801321e-05, -1.0245035948625844e-05, -4.7127165363678606e-05, -1.6392057517801348e-05, -2.4588086276702219e-05, -6.1470215691755802e-06, -1.0245035948625838e-05, -4.0980143794503083e-06, -2.0490071897251584e-06, -2.0490071897251618e-06, -1.6392057517801206e-05, -2.4588086276702327e-05, -1.229404313835113e-05, -8.1960287589006742e-06, -1.639205751780122e-05, -1.6392057517801199e-05, -1.6392057517801176e-05, -3.2784115035602392e-05, -1.6392057517801375e-05, -8.1960287589006504e-06, -3.2784115035602459e-05, -1.6392057517801375e-05, -8.1960287589006538e-06, -1.6392057517801179e-05, -2.0490071897251702e-06, -1.6392057517801355e-05, -1.6392057517801355e-05, -3.2784115035602493e-05, -4.9176172553404777e-05, -1.6392057517801308e-05, -3.2784115035602405e-05, -3.2784115035602351e-05, -1.6392057517801369e-05, -1.6392057517801365e-05, -1.6392057517801348e-05, -1.6392057517801362e-05, -1.8441064707526733e-05, 0.0082779890464897109, -4.0980143794502744e-06, -1.6392057517801233e-05, -1.6392057517801375e-05, -1.8441064707526672e-05, -5.3274186932853994e-05, -1.6392057517801213e-05, -1.6392057517801308e-05, -1.6392057517801199e-05, -8.1960287589006538e-06, -8.1960287589006504e-06, -2.0490071897251558e-06, -2.0490071897251524e-06, -2.0490071897251575e-06, -4.0980143794503235e-06, -3.4833122225327661e-05, -6.1470215691755044e-05, -2.4588086276702185e-05, -1.2294043138351113e-05, -2.0490071897251626e-06, -8.1960287589006538e-06, -3.2784115035602629e-05, -4.9176172553404709e-05, -1.6392057517801233e-05, -8.1960287589006572e-06, -3.2784115035602615e-05, -3.2784115035602622e-05, -8.1960287589006572e-06, -2.458808627670228e-05, -1.6392057517801355e-05, -2.0490071897251541e-06, -4.0980143794502863e-06, -8.1960287589006538e-06, -8.1960287589006504e-06, -1.8441064707526689e-05, -1.0245035948625837e-05, -1.639205751780124e-05, -3.2784115035602832e-05, -0.00014752851766021058, -8.1960287589006098e-06, -2.0490071897251677e-06, -0.00012294043138351009, -1.6392057517801335e-05, -9.8352345106809147e-05, -9.835234510680912e-05, -0.00010245035948625841, -9.8352345106809147e-05, -8.1960287589006098e-06, -8.1960287589006064e-06, -1.6392057517801321e-05, -1.6392057517801335e-05, -8.196028758900664e-06, -8.196028758900664e-06, -1.639205751780124e-05, -2.049007189725155e-06, -1.6392057517801247e-05, -2.0490071897251652e-06, -2.0490071897251596e-06, -0.00014343050328076196, -8.196028758900664e-06, -8.196028758900664e-06, -0.00012498943857323461, -4.0980143794503117e-06, -0.00014752851766021056, -0.00014752851766021056, -1.6392057517801342e-05, -2.0490071897251668e-06, -1.6392057517801328e-05, -0.00014752851766021053, -0.00014752851766021064, -1.6392057517801321e-05, -1.6392057517801308e-05, -4.0980143794503354e-06, -4.0980143794503184e-06, -3.2784115035602724e-05, -1.6392057517801314e-05, -1.6392057517801314e-05, -6.1470215691755869e-06, -3.2784115035602724e-05, -9.6423867751772181e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -9.6423867751772181e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -2.4226496772632583e-05, -2.4105966937942676e-05, -6.0264917344858519e-07, -1.2052983468971531e-07, -3.6158950406915166e-07, -1.2052983468971712e-06, -9.6423867751774544e-06, -2.4105966937943056e-07, -1.1088744791454015e-05, -1.2052983468971528e-07, -1.928477355035444e-06, -1.928477355035444e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751774544e-06, -9.6423867751774544e-06, -9.6423867751772181e-07, -2.7360272474565621e-05, -2.4105966937943045e-07, -2.4105966937942994e-05, -1.928477355035444e-06, -9.6423867751772224e-07, -9.6423867751772181e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943045e-07, -2.4105966937943045e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -9.6423867751772202e-07, -6.026491734485854e-07, -3.6158950406914647e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.2052983468971531e-07, -1.8079475203457354e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.0847685122074476e-06, -9.6423867751772224e-07, -1.807947520345731e-06, -2.4105966937943051e-07, -1.2052983468971525e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971528e-07, -1.2052983468971525e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -2.4105966937943051e-07, -1.2052983468971528e-07, -9.6423867751772224e-07, -1.9284773550354445e-06, -1.2052983468971757e-06, -9.6423867751772224e-07, -1.9284773550354445e-06, -1.2052983468971528e-07, -9.6423867751772224e-07, -2.049007189725138e-06, -9.6423867751772202e-07, -9.6423867751772224e-07, -1.928477355035444e-06, -3.8569547100708873e-06, -3.0132458672428425e-06, -9.6423867751772224e-07, -1.928477355035444e-06, -1.928477355035444e-06, -4.8211933875886091e-07, -9.6423867751772224e-07, -1.2052983468971763e-06, -1.3258281815868561e-06, -4.8211933875886091e-07, -1.9284773550354436e-06, -9.6423867751772224e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -2.4105966937943045e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971525e-07, -9.6423867751772224e-07, -2.4105966937943056e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971528e-07, -1.928477355035444e-06, -1.928477355035444e-06, -1.2052983468971528e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971525e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -2.8927160325532184e-06, -9.6423867751772181e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971528e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.9284773550354445e-06, -4.8211933875886112e-07, -2.1695370244149002e-06, -4.8211933875886112e-07, -1.2052983468971528e-07, -2.4105966937943056e-07, -1.5668878509663163e-06, -9.6423867751772224e-07, -1.9284773550354445e-06, -1.0124506113936183e-05, -9.6423867751772202e-07, -1.0606625452694859e-05, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.928477355035444e-06, -9.6423867751773918e-06, -1.928477355035444e-06, -9.7629166098671014e-06, -1.2052983468971528e-07, -1.928477355035444e-06, -1.928477355035444e-06, -4.8211933875886101e-07, -1.0124506113936183e-05, -9.6423867751774544e-06, -9.6423867751773511e-06, -9.6423867751774155e-06, -1.2052983468971528e-07, -4.8211933875886091e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -1.2052983468971523e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -9.6423867751772224e-07, -1.2052983468971803e-06, -2.4105966937943424e-06, -1.928477355035444e-06, -1.9284773550354445e-06, -9.6423867751772224e-07, -2.8927160325531718e-06, -3.6158950406914123e-07, -1.0606625452694939e-05, -1.928477355035444e-06, -8.6781480976596314e-06, -1.2052983468971528e-07, -1.2052983468971528e-07, -3.0132458672428721e-06, -1.9284773550354445e-06, -9.6423867751772202e-07, -8.4370884282800007e-07, -4.8211933875886091e-07, -2.4105966937943051e-07, -8.678148097659628e-06, -2.4105966937943051e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -8.678148097659628e-06, -9.6423867751772224e-07, -1.2052983468971528e-07, -9.6423867751772224e-07, -1.2052983468971528e-07, -9.6423867751772224e-07, -1.2052983468971755e-06, -3.6158950406914647e-07, -9.6423867751772224e-07, -1.8079475203457236e-06, -1.2052983468971528e-07, -9.6423867751772224e-07, -2.4105966937943045e-07, -2.4105966937943045e-07, -2.4105966937943051e-07, -1.2052983468971531e-07, -7.2317900813829697e-07, -3.615895040691425e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.9284773550354445e-06, -3.1337757019326318e-06, -2.7721861978635057e-06, -1.2052983468971528e-07, -1.9284773550354445e-06, -9.6423867751772245e-07, -7.2317900813828765e-07, -2.4105966937943056e-07, -1.2052983468971528e-07, -1.2052983468971531e-07, -9.6423867751774155e-06, -9.6423867751773511e-06, -1.9525833219734298e-05, -9.6423867751773681e-06, -9.6423867751773918e-06, -4.8211933875886091e-07, -2.4105966937943056e-07, -9.6423867751772181e-07, -1.0847685122074455e-06, -4.8211933875886091e-07, -1.3258281815868631e-06, -1.2052983468971525e-07, -1.2052983468971528e-07, -1.9284773550354445e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971528e-07, -1.2052983468971531e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.9284773550354445e-06, -9.6423867751772245e-07, -1.2052983468971528e-07, -1.9525833219734254e-05, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.2052983468971528e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -2.4105966937943056e-07, -2.4105966937943056e-07, -3.6158950406915081e-07, -1.2052983468971525e-07, -2.4105966937943056e-07, -2.4105966937943056e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -4.8211933875886112e-07, -1.4463580162765867e-06, -9.6423867751772224e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, 0.00024334973623853644, -1.2052983468971525e-07, -4.8211933875886069e-07, -2.4105966937943056e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -6.0264917344858815e-07, -4.8211933875886112e-07, -2.4105966937943056e-07, -7.2317900813829295e-07, -1.0245035948625833e-05, -1.2052983468971531e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.2052983468971528e-07, -5.5443723957269903e-06, -1.2052983468971704e-06, -1.2052983468971528e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.9284773550354445e-06, -9.6423867751772202e-07, -1.9284773550354445e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -3.700265924974252e-05, -9.6423867751772245e-07, -2.4105966937942825e-05, -9.6423867751772224e-07, -2.4105966937943051e-07, -7.2317900813828875e-06, -1.4463580162765863e-06, -6.026491734485873e-07, -7.2317900813829316e-06, -1.2052983468971528e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.9525833219734254e-05, -9.6423867751772224e-07, -9.6423867751772224e-07, -2.7601332143945067e-05, -3.6158950406914626e-07, -2.4105966937942848e-05, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971528e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.2052983468971528e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.4105966937943051e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9525833219734298e-05, -9.6423867751772202e-07, -9.6423867751772202e-07, -3.2543055366223012e-06, -1.1570864130212707e-05, -9.6423867751772224e-07, 0.0002369616549999822, -1.4463580162766092e-06, -1.4463580162766092e-06, -9.6423867751772202e-07, -9.6423867751772224e-07, -1.2052983468971807e-06, -9.6423867751772224e-07, -1.2052983468971784e-06, -2.5311265284840453e-06, -9.6423867751772224e-07, -6.0264917344858984e-07, -2.7721861978634913e-06, -9.6423867751772224e-07, -1.4463580162765863e-06, -3.6158950406915103e-07, -6.0264917344858709e-07, -2.4105966937943045e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -9.6423867751772181e-07, -1.4463580162765855e-06, -7.2317900813829824e-07, -4.8211933875886112e-07, -9.6423867751772224e-07, -9.6423867751772181e-07, -9.6423867751772202e-07, -1.9284773550354436e-06, -9.6423867751772224e-07, -4.8211933875886112e-07, -1.928477355035444e-06, -9.6423867751772224e-07, -4.8211933875886112e-07, -9.6423867751772202e-07, -1.2052983468971528e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.928477355035444e-06, -2.8927160325531709e-06, -9.6423867751772224e-07, -1.928477355035444e-06, -1.928477355035444e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.0847685122074531e-06, -4.0980143794502744e-06, 0.00049079748685652272, -9.6423867751772181e-07, -9.6423867751772224e-07, -1.0847685122074531e-06, -3.1337757019326259e-06, -9.6423867751772202e-07, -9.6423867751772224e-07, -9.6423867751772181e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.2052983468971528e-07, -1.2052983468971523e-07, -1.2052983468971528e-07, -2.4105966937943056e-07, -2.0490071897251431e-06, -3.6158950406914277e-06, -1.4463580162765863e-06, -7.2317900813829697e-07, -1.2052983468971528e-07, -4.8211933875886112e-07, -1.928477355035444e-06, -2.8927160325531709e-06, -9.6423867751772181e-07, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886112e-07, -1.4463580162765863e-06, -9.6423867751772224e-07, -1.2052983468971525e-07, -2.4105966937943056e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.0847685122074514e-06, -6.0264917344858561e-07, -9.6423867751772224e-07, -1.9284773550354445e-06, -8.6781480976595975e-06, -4.8211933875886101e-07, -1.2052983468971528e-07, -7.2317900813828537e-06, -9.6423867751772224e-07, -5.7854320651064283e-06, -5.7854320651063419e-06, -6.0264917344856833e-06, -5.7854320651064283e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -9.6423867751772224e-07, -1.2052983468971525e-07, -9.6423867751772224e-07, -1.2052983468971528e-07, -1.2052983468971525e-07, -8.4370884282802206e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -7.3523199160726065e-06, -2.4105966937943051e-07, -8.678148097659628e-06, -8.678148097659628e-06, -9.6423867751772224e-07, -1.2052983468971528e-07, -9.6423867751772224e-07, -8.6781480976596314e-06, -8.6781480976596145e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -2.4105966937943056e-07, -2.4105966937943056e-07, -1.9284773550354445e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -3.6158950406914647e-07, -1.9284773550354445e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -9.6905987090532353e-05, -9.6423867751772695e-05, -2.4105966937943255e-06, -4.8211933875886112e-07, -1.446358016276609e-06, -4.8211933875886798e-06, -3.856954710070956e-05, -9.6423867751772224e-07, -4.435497916581513e-05, -4.8211933875886122e-07, -7.7139094201417762e-06, -7.7139094201417745e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.856954710070956e-05, -3.856954710070956e-05, -3.8569547100708881e-06, -0.00010944108989826061, -9.6423867751772202e-07, -9.6423867751773969e-05, -7.7139094201417762e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -4.8211933875886112e-07, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708881e-06, -2.4105966937943255e-06, -1.44635801627661e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886112e-07, -7.2317900813830595e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.339074048829698e-06, -3.8569547100708898e-06, -7.2317900813830358e-06, -9.6423867751772202e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772202e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886705e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -8.1960287589005691e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -1.5427818840283549e-05, -1.2052983468971614e-05, -3.8569547100708889e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -1.9284773550354487e-06, -3.8569547100708898e-06, -4.8211933875886722e-06, -5.3033127263474693e-06, -1.9284773550354487e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772245e-07, -3.8569547100708881e-06, -3.8569547100708889e-06, -4.8211933875886091e-07, -3.8569547100708889e-06, -9.6423867751772245e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -4.8211933875886112e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -4.8211933875886112e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -1.1570864130212877e-05, 0.001960297231393539, -3.8569547100708898e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -8.6781480976593756e-06, -1.9284773550354449e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -6.2675514038652644e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.0498024455744671e-05, -3.8569547100708889e-06, -4.2426501810779578e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -3.856954710070931e-05, -7.7139094201417762e-06, -3.9051666439468263e-05, -4.8211933875886112e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -1.928477355035444e-06, -4.0498024455744657e-05, -3.856954710070956e-05, -3.8569547100709282e-05, -3.8569547100709384e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886493e-06, -9.6423867751773528e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708898e-06, -1.1570864130212882e-05, -1.446358016276631e-06, -4.2426501810779911e-05, -7.7139094201417779e-06, -3.4712592390637638e-05, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971655e-05, -7.7139094201417796e-06, -3.8569547100708889e-06, -3.3748353713120922e-06, -1.928477355035444e-06, -9.6423867751772202e-07, -3.4712592390637624e-05, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.4712592390637624e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886493e-06, -1.44635801627661e-06, -3.8569547100708898e-06, -7.2317900813830121e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.8927160325532366e-06, -1.446358016276628e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -7.7139094201417779e-06, -1.2535102807730495e-05, -1.1088744791453784e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -3.8569547100708889e-06, -2.8927160325532425e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100709384e-05, -3.8569547100709282e-05, -7.8103332878936784e-05, -3.8569547100709282e-05, -3.856954710070931e-05, -1.9284773550354487e-06, -9.6423867751772224e-07, -3.8569547100708881e-06, -4.3390740488296709e-06, -1.9284773550354487e-06, -5.3033127263474702e-06, -4.8211933875886112e-07, -4.8211933875886122e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -7.7139094201417762e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -7.8103332878936595e-05, -3.8569547100708881e-06, -3.8569547100708881e-06, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.44635801627661e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651064418e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -8.6781480976593959e-06, -4.8211933875886112e-07, -1.9284773550354428e-06, -9.6423867751772224e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -2.4105966937943361e-06, -1.9284773550354445e-06, -9.6423867751772224e-07, -2.8927160325532192e-06, -4.0980143794503334e-05, -4.8211933875886122e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -2.2177489582907467e-05, -4.821193387588651e-06, -4.8211933875886122e-07, -3.8569547100708881e-06, -3.8569547100708873e-06, -3.8569547100708881e-06, -7.7139094201417779e-06, -3.8569547100708873e-06, -7.7139094201417779e-06, -3.8569547100708873e-06, -3.8569547100708873e-06, -0.0001480106369989736, -3.8569547100708889e-06, -9.6423867751773291e-05, -3.8569547100708898e-06, -9.6423867751772202e-07, -2.8927160325531869e-05, -5.7854320651063927e-06, -2.4105966937943323e-06, -2.8927160325532197e-05, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.8103332878936595e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00011040532857577855, -1.4463580162766096e-06, -9.6423867751773372e-05, -3.8569547100708889e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772202e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.8103332878936784e-05, -3.8569547100708881e-06, -3.8569547100708881e-06, -1.3017222146489545e-05, -4.6283456520851521e-05, -3.8569547100708898e-06, -3.4230473051878596e-05, -5.7854320651064368e-06, -5.7854320651064368e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -4.8211933875886493e-06, -3.8569547100708881e-06, -4.8211933875886798e-06, -1.0124506113936161e-05, -3.8569547100708898e-06, -2.4105966937943246e-06, -1.108874479145373e-05, -3.8569547100708889e-06, -5.7854320651063859e-06, -1.4463580162765736e-06, -2.4105966937943323e-06, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708881e-06, -5.7854320651064384e-06, -2.8927160325532417e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -3.8569547100708873e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354445e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354445e-06, -3.8569547100708873e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -1.1570864130212877e-05, -3.8569547100708898e-06, -7.7139094201417762e-06, -7.7139094201417745e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.3390740488297014e-06, -1.6392057517801233e-05, -9.6423867751772181e-07, 0.001960297231393539, -3.8569547100708898e-06, -4.3390740488298564e-06, -1.2535102807730505e-05, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886112e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -8.19602875890052e-06, -1.4463580162765934e-05, -5.785432065106413e-06, -2.8927160325532366e-06, -4.8211933875886122e-07, -1.9284773550354445e-06, -7.7139094201417779e-06, -1.1570864130212882e-05, -3.856954710070894e-06, -1.9284773550354445e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -1.9284773550354445e-06, -5.7854320651064384e-06, -3.8569547100708889e-06, -4.8211933875886101e-07, -9.6423867751772202e-07, -1.9284773550354445e-06, -1.9284773550354449e-06, -4.3390740488296929e-06, -2.410596693794339e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.4712592390637584e-05, -1.928477355035444e-06, -4.8211933875886122e-07, -2.8927160325531869e-05, -3.8569547100708889e-06, -2.3141728260426103e-05, -2.3141728260425754e-05, -2.4105966937943224e-05, -2.3141728260426103e-05, -1.928477355035444e-06, -1.928477355035444e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -4.8211933875886101e-07, -3.8569547100708881e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.3748353713120123e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.9409279664290779e-05, -9.6423867751772202e-07, -3.4712592390637624e-05, -3.4712592390637624e-05, -3.8569547100708889e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.4712592390637638e-05, -3.471259239063757e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.4463580162766075e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6905987090531594e-05, -9.6423867751771814e-05, -2.4105966937943052e-06, -4.8211933875886133e-07, -1.446358016276588e-06, -4.8211933875886408e-06, -3.8569547100709221e-05, -9.6423867751772287e-07, -4.4354979165815597e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100709221e-05, -3.8569547100709221e-05, -3.8569547100708898e-06, -0.00010944108989826155, -9.6423867751772245e-07, -9.6423867751773101e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.4105966937943052e-06, -1.4463580162765889e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813829943e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.3390740488297479e-06, -3.8569547100708915e-06, -7.2317900813829689e-06, -9.6423867751772266e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886298e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -8.1960287589006386e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -1.5427818840283556e-05, -1.2052983468971507e-05, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.8211933875886315e-06, -5.3033127263474659e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -3.8569547100708915e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212711e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976595128e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652458e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -4.0498024455744617e-05, -3.8569547100708915e-06, -4.2426501810779768e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100708984e-05, -7.7139094201417813e-06, -3.9051666439468019e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.0498024455744603e-05, -3.8569547100709221e-05, -3.8569547100708957e-05, -3.8569547100709052e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886476e-06, -9.6423867751772681e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -3.8569547100708906e-06, -1.1570864130212721e-05, -1.44635801627661e-06, -4.24265018107801e-05, -7.7139094201417813e-06, -3.4712592390638187e-05, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971548e-05, -7.713909420141783e-06, -3.8569547100708915e-06, -3.3748353713120477e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.4712592390638187e-05, -9.6423867751772266e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390638173e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886273e-06, -1.4463580162765893e-06, -3.8569547100708915e-06, -7.2317900813829485e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325531803e-06, -1.4463580162766069e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -1.2535102807730434e-05, 0.0019530654413121545, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532006e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709052e-05, -3.8569547100708957e-05, -7.8103332878936256e-05, -3.8569547100708957e-05, -3.8569547100708984e-05, -1.9284773550354449e-06, -9.6423867751772287e-07, -3.8569547100708889e-06, -4.3390740488297564e-06, -1.9284773550354449e-06, -5.3033127263474956e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936093e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162765889e-06, -4.8211933875886133e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -5.7854320651063605e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976595332e-06, -4.8211933875886144e-07, -1.928477355035444e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -7.713909420141783e-06, -2.4105966937943158e-06, -1.9284773550354457e-06, -9.6423867751772266e-07, -2.8927160325531777e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.2177489582907717e-05, -4.8211933875886103e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00014801063699897141, -3.8569547100708906e-06, -9.6423867751772437e-05, -3.8569547100708915e-06, -9.6423867751772266e-07, -2.8927160325531652e-05, -5.7854320651063571e-06, -2.4105966937943119e-06, -2.892716032553193e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936093e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -0.00011040532857577963, -1.446358016276588e-06, -9.6423867751772518e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936256e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.3017222146489235e-05, -4.6283456520850911e-05, -3.8569547100708915e-06, -3.4230473051879111e-05, -5.7854320651063521e-06, -5.7854320651063521e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886493e-06, -3.8569547100708898e-06, -4.8211933875886391e-06, -1.0124506113936144e-05, -3.8569547100708915e-06, -2.4105966937943221e-06, -1.1088744791453855e-05, -3.8569547100708915e-06, -5.7854320651063571e-06, -1.4463580162766071e-06, -2.4105966937943119e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063588e-06, -2.8927160325531989e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.1570864130212707e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.3390740488297683e-06, -1.6392057517801375e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, 0.0019602972313935386, -4.3390740488297683e-06, -1.2535102807730446e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -8.1960287589005895e-06, -1.4463580162765826e-05, -5.7854320651063605e-06, -2.8927160325531803e-06, -4.8211933875886144e-07, -1.9284773550354457e-06, -7.7139094201417813e-06, -1.1570864130212709e-05, -3.8569547100708898e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -5.7854320651063571e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.3390740488297615e-06, -2.4105966937943187e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.4712592390638119e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531645e-05, -3.8569547100708915e-06, -2.3141728260425764e-05, -2.3141728260425422e-05, -2.4105966937943014e-05, -2.3141728260425764e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.3748353713120584e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.9409279664290643e-05, -9.6423867751772266e-07, -3.4712592390638173e-05, -3.4712592390638187e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.4712592390638187e-05, -3.4712592390638119e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765889e-06, -7.713909420141783e-06, -4.3390740488296963e-06, -4.3390740488297166e-06, -4.3390740488297098e-06, -4.339074048829698e-06, -2.1695370244148824e-06, -2.1695370244148816e-06, -4.3390740488297649e-06, -4.3390740488297666e-06, -5.4238425610371479e-07, -5.4238425610371542e-07, -0.00010901923547684697, -0.00010847685122074459, -2.7119212805185988e-06, -5.4238425610371479e-07, -1.6271527683111464e-06, -5.4238425610371612e-06, -4.3390740488297181e-05, -1.0847685122074308e-06, -4.9899351561542821e-05, -5.4238425610372209e-07, -8.6781480976594163e-06, -8.6781480976594264e-06, -4.3390740488297683e-06, -4.3390740488297615e-06, -4.3390740488297181e-05, -4.3390740488297181e-05, -4.3390740488297954e-06, -0.00012312122613554428, -1.0847685122074228e-06, -0.00010847685122074313, -8.6781480976594095e-06, -4.3390740488297149e-06, -4.3390740488296946e-06, -5.4238425610372114e-07, -5.42384256103715e-07, -4.3390740488297319e-06, -4.3390740488297251e-06, -1.0847685122074228e-06, -1.0847685122074232e-06, -5.4238425610372125e-07, -5.4238425610371765e-07, -4.3390740488296997e-06, -2.7119212805185929e-06, -1.6271527683111515e-06, -2.1695370244148816e-06, -2.1695370244148824e-06, -5.4238425610371479e-07, -8.1357638415557118e-06, -4.3390740488297412e-06, -4.3390740488297395e-06, -4.8814583049335262e-06, -4.3390740488297683e-06, -8.1357638415557389e-06, -1.0847685122074296e-06, -5.4238425610371246e-07, -4.3390740488297734e-06, -4.3390740488297784e-06, -5.4238425610373035e-07, -5.4238425610371627e-07, -4.3390740488297369e-06, -4.3390740488297429e-06, -1.0847685122074518e-06, -5.4238425610371849e-07, -4.3390740488297937e-06, -8.6781480976595772e-06, -5.4238425610371765e-06, -4.3390740488298259e-06, -8.6781480976595027e-06, -5.4238425610373078e-07, -4.3390740488297513e-06, -9.220532353763341e-06, -4.3390740488297319e-06, -4.3390740488297479e-06, -8.678148097659423e-06, -1.7356296195319256e-05, -1.355960640259287e-05, -4.3390740488297632e-06, -8.6781480976594366e-06, -8.6781480976594468e-06, -2.1695370244149239e-06, -4.3390740488297446e-06, -5.4238425610371748e-06, -5.9662268171408513e-06, -2.1695370244149239e-06, -8.6781480976593858e-06, -4.3390740488297302e-06, -4.3390740488297302e-06, -4.3390740488297268e-06, -1.0847685122074198e-06, -4.3390740488297047e-06, -4.3390740488297632e-06, -5.423842561037114e-07, -4.3390740488297666e-06, -1.0847685122074425e-06, -4.3390740488297064e-06, -4.3390740488298157e-06, -4.339074048829831e-06, -5.4238425610371436e-07, -8.67814809765944e-06, -8.6781480976594332e-06, -5.4238425610371606e-07, -4.3390740488297319e-06, -4.3390740488297352e-06, -5.4238425610371521e-07, -4.3390740488296946e-06, -4.3390740488297014e-06, -4.3390740488297496e-06, -4.3390740488296997e-06, 0.0019511369639571225, -4.3390740488298564e-06, -4.3390740488297835e-06, -4.3390740488297496e-06, -5.4238425610371786e-07, -4.3390740488297988e-06, -4.3390740488297463e-06, -8.6781480976594823e-06, -2.1695370244148824e-06, -9.7629166098670947e-06, -2.1695370244148816e-06, -5.4238425610371246e-07, -1.0847685122074342e-06, -7.0509953293485052e-06, -4.339074048829831e-06, -8.6781480976594298e-06, -4.5560277512711904e-05, -4.3390740488297369e-06, -4.7729814537127922e-05, -4.3390740488297446e-06, -4.3390740488297496e-06, -8.6781480976594468e-06, -4.3390740488297405e-05, -8.6781480976594366e-06, -4.393312474440117e-05, -5.4238425610372103e-07, -8.6781480976594298e-06, -8.6781480976594535e-06, -2.1695370244148515e-06, -4.5560277512711904e-05, -4.3390740488297181e-05, -4.3390740488297418e-05, -4.3390740488297385e-05, -5.4238425610373035e-07, -2.1695370244148943e-06, -5.4238425610371913e-07, -5.4238425610371331e-07, -5.4238425610371161e-07, -4.3390740488297302e-06, -4.3390740488297285e-06, -4.3390740488298208e-06, -4.3390740488298259e-06, -5.4238425610371892e-07, -5.4238425610371849e-07, -5.4238425610371892e-07, -4.339074048829853e-06, -5.42384256103719e-06, -1.0847685122074339e-05, -8.6781480976593858e-06, -8.6781480976594891e-06, -4.3390740488298479e-06, -1.3017222146489218e-05, -1.6271527683111519e-06, -4.7729814537128247e-05, -8.6781480976594993e-06, -3.9051666439468534e-05, -5.4238425610372972e-07, -5.4238425610371712e-07, -1.3559606402592889e-05, -8.6781480976594823e-06, -4.3390740488297412e-06, -3.7966897927260646e-06, -2.1695370244148896e-06, -1.08476851220743e-06, -3.9051666439468534e-05, -1.0847685122074296e-06, -2.1695370244148816e-06, -2.1695370244148824e-06, -3.9051666439468534e-05, -4.3390740488297564e-06, -5.4238425610371743e-07, -4.339074048829814e-06, -5.4238425610371892e-07, -4.3390740488297988e-06, -5.4238425610371926e-06, -1.6271527683111508e-06, -4.3390740488298089e-06, -8.1357638415557558e-06, -5.4238425610372146e-07, -4.3390740488297581e-06, -1.0847685122074228e-06, -1.0847685122074232e-06, -1.0847685122074253e-06, -5.4238425610371627e-07, -3.2543055366223088e-06, -1.6271527683111521e-06, -4.33907404882972e-06, -4.3390740488297132e-06, -8.6781480976595196e-06, -1.4101990658696943e-05, -1.2474837890385709e-05, -5.4238425610372146e-07, -8.6781480976595908e-06, -4.3390740488297183e-06, -3.2543055366223071e-06, -1.0847685122074446e-06, -5.4238425610371849e-07, -5.4238425610371352e-07, -4.3390740488297385e-05, -4.3390740488297418e-05, -8.7866249488802761e-05, -4.3390740488297418e-05, -4.3390740488297405e-05, -2.1695370244149239e-06, -1.0847685122074459e-06, -4.3390740488297132e-06, -4.8814583049335312e-06, -2.1695370244149239e-06, -5.966226817141025e-06, -5.4238425610371479e-07, -5.4238425610372209e-07, -8.678148097659567e-06, -4.3390740488297564e-06, -4.3390740488297496e-06, -5.423842561037169e-07, -5.4238425610371479e-07, -2.1695370244148642e-06, -2.1695370244148625e-06, -8.6781480976595941e-06, -4.3390740488297149e-06, -5.4238425610371976e-07, -8.7866249488802002e-05, -4.3390740488297166e-06, -4.3390740488297183e-06, -5.4238425610371606e-07, -2.1695370244148634e-06, -2.1695370244148634e-06, -1.0847685122074425e-06, -1.0847685122074421e-06, -1.6271527683111519e-06, -5.4238425610371458e-07, -1.0847685122074421e-06, -1.0847685122074425e-06, -5.4238425610371828e-07, -5.4238425610373035e-07, -2.1695370244148524e-06, -6.5086110732446228e-06, -4.3390740488297581e-06, -5.4238425610371913e-07, -5.4238425610372209e-07, -9.7629166098670913e-06, -5.4238425610371627e-07, -2.1695370244148668e-06, -1.0847685122074493e-06, -8.6781480976595332e-06, -8.678148097659523e-06, -2.7119212805185848e-06, -2.1695370244148676e-06, -1.0847685122074514e-06, -3.2543055366223127e-06, -4.6102661768817018e-05, -5.4238425610371765e-07, -2.1695370244148685e-06, -2.1695370244148668e-06, -8.6781480976595162e-06, -8.6781480976595399e-06, -2.1695370244149095e-06, -2.1695370244148757e-06, -2.1695370244148757e-06, -5.4238425610371913e-07, 0.00022056959748217937, -5.4238425610371968e-06, -5.4238425610373078e-07, -4.3390740488297183e-06, -4.3390740488297954e-06, -4.3390740488297166e-06, -8.6781480976595399e-06, -4.3390740488297818e-06, -8.6781480976595162e-06, -4.3390740488297954e-06, -4.3390740488297971e-06, -0.00016651196662384189, -4.33907404882972e-06, -0.00010847685122074388, -4.3390740488297988e-06, -1.0847685122074287e-06, -3.2543055366223199e-05, -6.5086110732446626e-06, -2.7119212805185899e-06, -3.2543055366222874e-05, -5.4238425610372061e-07, -4.3390740488297268e-06, -4.3390740488297302e-06, -8.7866249488802002e-05, -4.3390740488297581e-06, -4.3390740488297598e-06, -0.00012420599464775151, -1.6271527683111699e-06, -0.00010847685122074383, -4.3390740488297352e-06, -4.3390740488297319e-06, -5.4238425610371807e-07, -4.3390740488297319e-06, -4.3390740488297251e-06, -5.4238425610371955e-07, -8.678148097659523e-06, -8.6781480976595332e-06, -1.0847685122074253e-06, -2.1695370244148634e-06, -2.1695370244148634e-06, -4.3390740488297183e-06, -4.3390740488297166e-06, -8.7866249488802761e-05, -4.3390740488297132e-06, -4.33907404882972e-06, -1.4644374914800703e-05, -5.2068888585956833e-05, -4.3390740488297302e-06, -3.8509282183364444e-05, -6.5086110732445974e-06, -6.5086110732445974e-06, -4.3390740488298377e-06, -4.3390740488297014e-06, -5.4238425610371926e-06, -4.3390740488296946e-06, -5.4238425610371604e-06, -1.1390069378177966e-05, -4.3390740488297886e-06, -2.7119212805185963e-06, -1.2474837890385655e-05, -4.3390740488297547e-06, -6.5086110732446677e-06, -1.6271527683111915e-06, -2.7119212805185891e-06, -1.0847685122074249e-06, -5.4238425610373035e-07, -5.4238425610371743e-07, -4.3390740488296946e-06, -6.5086110732446075e-06, -3.254305536622308e-06, -2.1695370244148782e-06, -4.3390740488297132e-06, -4.3390740488297954e-06, -4.3390740488297971e-06, -8.6781480976595704e-06, -4.3390740488297683e-06, -2.1695370244148668e-06, -8.6781480976595433e-06, -4.3390740488297666e-06, -2.1695370244148685e-06, -4.3390740488297954e-06, -5.4238425610372061e-07, -4.3390740488297784e-06, -4.3390740488297734e-06, -8.6781480976594332e-06, -1.3017222146489229e-05, -4.3390740488298038e-06, -8.6781480976594095e-06, -8.6781480976594332e-06, -4.3390740488297666e-06, -4.3390740488297649e-06, -4.3390740488297547e-06, -4.3390740488297615e-06, -4.8814583049335677e-06, -1.8441064707526672e-05, -1.0847685122074531e-06, -4.3390740488298564e-06, -4.3390740488297683e-06, 0.002204792001061634, -1.4101990658697051e-05, -4.3390740488297166e-06, -4.339074048829814e-06, -4.3390740488296963e-06, -2.1695370244148676e-06, -2.1695370244148668e-06, -5.4238425610371521e-07, -5.4238425610371161e-07, -5.4238425610373078e-07, -1.0847685122074325e-06, -9.2205323537634833e-06, -1.6271527683111457e-05, -6.5086110732446414e-06, -3.2543055366223088e-06, -5.4238425610371786e-07, -2.1695370244148685e-06, -8.6781480976594993e-06, -1.3017222146489445e-05, -4.3390740488298547e-06, -2.1695370244148697e-06, -8.6781480976594823e-06, -8.6781480976594891e-06, -2.1695370244148697e-06, -6.5086110732446524e-06, -4.3390740488297581e-06, -5.4238425610371246e-07, -1.0847685122074366e-06, -2.1695370244148685e-06, -2.1695370244149095e-06, -4.8814583049335541e-06, -2.7119212805185831e-06, -4.3390740488297217e-06, -8.6781480976595772e-06, -3.9051666439468114e-05, -2.1695370244148515e-06, -5.4238425610371892e-07, -3.2543055366223145e-05, -4.3390740488297496e-06, -2.6034444292978444e-05, -2.603444429297844e-05, -2.7119212805185948e-05, -2.6034444292978444e-05, -2.1695370244148515e-06, -2.1695370244148524e-06, -4.3390740488297412e-06, -4.3390740488297479e-06, -2.1695370244148731e-06, -2.169537024414874e-06, -4.3390740488297064e-06, -5.4238425610371267e-07, -4.3390740488297047e-06, -5.4238425610371786e-07, -5.4238425610371521e-07, -3.7966897927260739e-05, -2.169537024414874e-06, -2.1695370244148731e-06, -3.3085439622326613e-05, -1.084768512207427e-06, -3.9051666439468534e-05, -3.9051666439468534e-05, -4.3390740488297513e-06, -5.423842561037187e-07, -4.3390740488297446e-06, -3.9051666439468534e-05, -3.9051666439468108e-05, -4.3390740488297496e-06, -4.3390740488297547e-06, -1.0847685122074476e-06, -1.0847685122074599e-06, -8.6781480976595399e-06, -4.339074048829753e-06, -4.3390740488297513e-06, -1.6271527683111775e-06, -8.6781480976595399e-06, -1.2535102807730509e-05, -1.2535102807730502e-05, -1.2535102807730498e-05, -1.2535102807730509e-05, -6.2675514038652373e-06, -6.2675514038652373e-06, -1.2535102807730471e-05, -1.2535102807730471e-05, -1.5668878509662735e-06, -1.5668878509663119e-06, -0.00031494445804422874, -0.00031337757019326515, -7.8344392548315011e-06, -1.5668878509662735e-06, -4.7006635528989193e-06, -1.5668878509663023e-05, -0.00012535102807730407, -3.1337757019326237e-06, -0.00014415368228889999, -1.5668878509663085e-06, 0.0039032381665917611, -2.5070205615460282e-05, -1.2535102807730473e-05, -1.253510280773047e-05, -0.00012535102807730402, -0.00012535102807730402, -1.2535102807730505e-05, -0.00035568354216935295, -3.1337757019326275e-06, -0.00031337757019326326, -2.5070205615460248e-05, -1.2535102807730502e-05, -1.2535102807730509e-05, -1.5668878509663081e-06, -1.5668878509663119e-06, -1.2535102807730492e-05, -1.253510280773049e-05, -3.133775701932628e-06, -3.1337757019326275e-06, -1.566887850966307e-06, -1.5668878509663104e-06, -1.2535102807730454e-05, -7.8344392548315113e-06, -4.7006635528988685e-06, -6.2675514038652373e-06, -6.2675514038652373e-06, -1.5668878509662735e-06, -2.3503317764494769e-05, -1.2535102807730295e-05, -1.2535102807730288e-05, -1.4101990658696895e-05, -1.2535102807730471e-05, -2.3503317764494678e-05, -3.1337757019325462e-06, -1.5668878509663134e-06, -1.2535102807730471e-05, -1.2535102807730471e-05, -1.5668878509663123e-06, -1.5668878509662812e-06, -1.253510280773028e-05, -1.2535102807730302e-05, -3.1337757019326318e-06, -1.5668878509663074e-06, -1.2535102807730478e-05, -2.507020561546101e-05, -1.5668878509663023e-05, -1.2535102807730492e-05, -2.5070205615460976e-05, -1.5668878509663123e-06, -1.2535102807730483e-05, -2.6637093466426892e-05, -1.2535102807730243e-05, -1.2535102807730463e-05, -2.507020561546099e-05, -5.0140411230922156e-05, -3.9172196274157954e-05, -1.2535102807730468e-05, -2.507020561546099e-05, -2.507020561546099e-05, -6.2675514038652559e-06, -1.2535102807730485e-05, -1.5668878509663029e-05, -1.7235766360629592e-05, -6.2675514038652559e-06, -2.5070205615461071e-05, -1.2535102807730488e-05, -1.2535102807730236e-05, -1.2535102807730229e-05, -3.1337757019326305e-06, -1.25351028077305e-05, -1.2535102807730468e-05, -1.5668878509662642e-06, -1.253510280773047e-05, -3.1337757019326246e-06, -1.2535102807730502e-05, -1.2535102807730492e-05, -1.2535102807730492e-05, -1.5668878509663123e-06, -2.5070205615460997e-05, -2.507020561546099e-05, -1.5668878509663114e-06, -1.2535102807730492e-05, -1.2535102807730492e-05, -1.5668878509663117e-06, -1.2535102807730505e-05, -1.2535102807730509e-05, -1.2535102807730463e-05, -1.2535102807730507e-05, -3.760530842319128e-05, -1.2535102807730505e-05, -1.2535102807730481e-05, -1.2535102807730483e-05, -1.5668878509663102e-06, -1.2535102807730478e-05, -1.2535102807730481e-05, -2.507020561546097e-05, -6.2675514038652373e-06, -2.8203981317393933e-05, -6.2675514038652373e-06, -1.5668878509663131e-06, -3.1337757019326165e-06, 0.00022514973120039007, -1.2535102807730492e-05, -2.5070205615460973e-05, -0.00013161857948116914, -1.253510280773028e-05, -0.00013788613088503522, -1.2535102807730463e-05, -1.2535102807730463e-05, -2.507020561546099e-05, -0.00012535102807730437, -2.507020561546099e-05, -0.00012691791592827004, -1.5668878509663083e-06, -2.5070205615460983e-05, -2.5070205615460997e-05, -6.2675514038652526e-06, -0.00013161857948116914, -0.00012535102807730407, -0.00012535102807730459, -0.0001253510280773044, -1.5668878509663123e-06, -6.2675514038652881e-06, -1.566887850966307e-06, -1.5668878509663127e-06, -1.5668878509663138e-06, -1.2535102807730492e-05, -1.253510280773049e-05, -1.2535102807730492e-05, -1.2535102807730492e-05, -1.566887850966307e-06, -1.5668878509663074e-06, -1.5668878509663095e-06, -1.2535102807730498e-05, -1.5668878509662989e-05, -3.1337757019326072e-05, -2.5070205615461041e-05, -2.507020561546097e-05, -1.2535102807730502e-05, -3.7605308423190948e-05, -4.7006635528989371e-06, -0.0001378861308850359, -2.507020561546097e-05, -0.00011281592526957507, -1.5668878509663119e-06, -1.5668878509663083e-06, -3.9172196274157873e-05, -2.507020561546097e-05, -1.2535102807730295e-05, -1.0968214956764064e-05, -6.2675514038652534e-06, -3.1337757019326237e-06, -0.00011281592526957507, -3.1337757019325462e-06, -6.2675514038652373e-06, -6.2675514038652373e-06, -0.00011281592526957507, -1.2535102807730475e-05, -1.566887850966311e-06, -1.2535102807730485e-05, -1.5668878509663095e-06, -1.2535102807730485e-05, -1.5668878509662975e-05, -4.7006635528988473e-06, -1.2535102807730485e-05, -2.3503317764494424e-05, -1.5668878509663074e-06, -1.2535102807730475e-05, -3.1337757019326275e-06, -3.133775701932628e-06, -3.1337757019326263e-06, -1.566887850966311e-06, -9.4013271057977878e-06, -4.700663552898954e-06, -1.2535102807730498e-05, -1.2535102807730497e-05, -2.5070205615460983e-05, 0.0019234151019784842, -3.6038420572224998e-05, -1.5668878509663074e-06, -2.5070205615461017e-05, -1.2535102807730497e-05, -9.4013271057978183e-06, -3.1337757019326191e-06, -1.5668878509663074e-06, -1.5668878509663125e-06, -0.0001253510280773044, -0.00012535102807730459, -0.00025383583185653824, -0.00012535102807730453, -0.00012535102807730437, -6.2675514038652559e-06, -3.1337757019326212e-06, -1.2535102807730541e-05, -1.410199065869688e-05, -6.2675514038652559e-06, -1.7235766360629484e-05, -1.5668878509663119e-06, -1.5668878509663085e-06, -2.5070205615460983e-05, -1.2535102807730473e-05, -1.2535102807730481e-05, -1.5668878509663083e-06, -1.5668878509662735e-06, -6.2675514038652492e-06, -6.2675514038652475e-06, -2.5070205615461017e-05, -1.2535102807730497e-05, -1.5668878509663093e-06, -0.00025383583185653911, -1.2535102807730497e-05, -1.2535102807730498e-05, -1.5668878509663114e-06, -6.2675514038652475e-06, -6.2675514038652475e-06, -3.1337757019326165e-06, -3.133775701932617e-06, -4.7006635528989481e-06, -1.5668878509662727e-06, -3.133775701932617e-06, -3.1337757019326165e-06, -1.56688785096631e-06, -1.5668878509663123e-06, -6.2675514038652636e-06, -1.8802654211595491e-05, -1.2535102807730473e-05, -1.566887850966307e-06, -1.5668878509663085e-06, -2.8203981317393956e-05, -1.5668878509662812e-06, -6.267551403865289e-06, -3.133775701932628e-06, -2.5070205615460942e-05, -2.5070205615460942e-05, -7.8344392548315011e-06, -6.2675514038652449e-06, -3.1337757019326233e-06, -9.401327105797737e-06, -0.00013318546733213734, -1.5668878509663104e-06, -6.2675514038652449e-06, -6.2675514038652449e-06, -2.5070205615460936e-05, -2.5070205615460949e-05, -6.2675514038652458e-06, -6.2675514038652399e-06, -6.2675514038652399e-06, -1.566887850966307e-06, -7.207684114445001e-05, -1.5668878509663023e-05, -1.5668878509663123e-06, -1.2535102807730498e-05, -1.2535102807730471e-05, -1.2535102807730497e-05, -2.5070205615460949e-05, -1.253510280773047e-05, -2.5070205615460936e-05, -1.2535102807730471e-05, -1.253510280773047e-05, -0.000481034570246659, -1.2535102807730498e-05, -0.00031337757019326266, -1.2535102807730478e-05, -3.1337757019325437e-06, -9.4013271057977695e-05, -1.8802654211595521e-05, -7.8344392548315147e-06, -9.4013271057978982e-05, -1.5668878509663089e-06, -1.2535102807730229e-05, -1.2535102807730236e-05, -0.00025383583185653911, -1.2535102807730475e-05, -1.2535102807730475e-05, -0.00035881731787128701, -4.7006635528988617e-06, -0.00031337757019326271, -1.2535102807730492e-05, -1.2535102807730492e-05, -1.5668878509663102e-06, -1.2535102807730243e-05, -1.2535102807730222e-05, -1.5668878509663066e-06, -2.5070205615460942e-05, -2.5070205615460942e-05, -3.1337757019326263e-06, -6.2675514038652475e-06, -6.2675514038652475e-06, -1.2535102807730497e-05, -1.2535102807730497e-05, -0.00025383583185653824, -1.2535102807730497e-05, -1.2535102807730498e-05, -4.2305971976090084e-05, -0.00015042123369276452, -1.2535102807730488e-05, -0.00011124903741860695, -1.880265421159544e-05, -1.8802654211595437e-05, -1.2535102807730502e-05, -1.2535102807730509e-05, -1.5668878509663009e-05, -1.2535102807730505e-05, -1.5668878509663016e-05, -3.2904644870292211e-05, -1.2535102807730478e-05, -7.8344392548315113e-06, -3.6038420572225032e-05, -1.2535102807730473e-05, -1.8802654211595515e-05, -4.7006635528989303e-06, -7.8344392548315079e-06, -3.1337757019326267e-06, -1.5668878509663123e-06, -1.566887850966311e-06, -1.2535102807730509e-05, -1.8802654211595413e-05, -9.4013271057978149e-06, -6.267551403865228e-06, -1.2535102807730502e-05, -1.2535102807730505e-05, -1.253510280773047e-05, -2.5070205615460949e-05, -1.2535102807730473e-05, -6.2675514038652449e-06, -2.5070205615460929e-05, -1.2535102807730446e-05, -6.2675514038652449e-06, -1.2535102807730471e-05, -1.5668878509663089e-06, -1.2535102807730471e-05, -1.2535102807730471e-05, -2.507020561546099e-05, -3.7605308423190934e-05, -1.2535102807730485e-05, -2.5070205615460248e-05, -2.5070205615460316e-05, -1.2535102807730471e-05, -1.2535102807730471e-05, -1.2535102807730473e-05, -1.2535102807730476e-05, -1.4101990658697071e-05, -5.3274186932853994e-05, -3.1337757019326259e-06, -1.2535102807730505e-05, -1.2535102807730446e-05, -1.4101990658697051e-05, 0.0063427620207116295, -1.2535102807730502e-05, -1.2535102807730485e-05, -1.2535102807730509e-05, -6.2675514038652449e-06, -6.2675514038652449e-06, -1.5668878509663119e-06, -1.5668878509663138e-06, -1.5668878509663123e-06, -3.133775701932622e-06, -2.6637093466426814e-05, -4.700663552898882e-05, -1.8802654211595494e-05, -9.4013271057977878e-06, -1.5668878509663106e-06, -6.2675514038652432e-06, -2.507020561546097e-05, -3.7605308423191056e-05, -1.2535102807730505e-05, -6.2675514038652432e-06, -2.507020561546097e-05, -2.507020561546097e-05, -6.2675514038652432e-06, -1.8802654211595542e-05, -1.2535102807730475e-05, -1.5668878509663131e-06, 0.00024238549756101885, -6.2675514038652432e-06, -6.2675514038652458e-06, -1.4101990658697014e-05, -7.8344392548315147e-06, -1.2535102807730495e-05, -2.507020561546101e-05, -0.00011281592526957507, -6.2675514038652526e-06, -1.566887850966307e-06, -9.4013271057977695e-05, -1.2535102807730483e-05, -7.5210616846382993e-05, -7.5210616846381665e-05, -7.8344392548315936e-05, -7.5210616846382993e-05, -6.2675514038652526e-06, -6.2675514038652543e-06, -1.2535102807730485e-05, -1.2535102807730485e-05, -6.2675514038652407e-06, -6.2675514038652407e-06, -1.2535102807730502e-05, -1.5668878509663131e-06, -1.25351028077305e-05, -1.5668878509663102e-06, -1.5668878509663117e-06, -0.00010968214956764028, -6.2675514038652407e-06, -6.2675514038652407e-06, -9.5580158908944112e-05, -3.1337757019326254e-06, -0.00011281592526957507, -0.00011281592526957507, -1.2535102807730483e-05, -1.5668878509663098e-06, -1.2535102807730481e-05, -0.00011281592526957507, -0.00011281592526957507, -1.2535102807730481e-05, -1.2535102807730481e-05, -3.1337757019326187e-06, -3.1337757019326237e-06, -2.5070205615460922e-05, -1.2535102807730481e-05, -1.2535102807730481e-05, -4.7006635528988981e-06, -2.5070205615460922e-05, -3.8569547100708898e-06, 0.001960297231393539, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6905987090532136e-05, -9.6423867751772437e-05, -2.410596693794323e-06, -4.8211933875886112e-07, -1.4463580162766043e-06, -4.8211933875886764e-06, -3.856954710070952e-05, -9.6423867751772245e-07, -4.4354979165815252e-05, -4.8211933875886122e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.856954710070952e-05, -3.856954710070952e-05, -3.8569547100708898e-06, -0.0001094410898982608, -9.6423867751772202e-07, -9.6423867751773697e-05, -7.7139094201417762e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708873e-06, -2.410596693794323e-06, -1.4463580162766054e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886112e-07, -7.2317900813830426e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488296963e-06, -3.8569547100708898e-06, -7.2317900813830188e-06, -9.6423867751772224e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886662e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886112e-07, -3.8569547100708898e-06, -8.1960287589005759e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -1.5427818840283549e-05, -1.2052983468971587e-05, -3.8569547100708898e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -1.928477355035444e-06, -3.8569547100708898e-06, -4.8211933875886679e-06, -5.3033127263474439e-06, -1.928477355035444e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772202e-07, -3.8569547100708889e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -3.8569547100708898e-06, -9.6423867751772224e-07, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -1.1570864130212833e-05, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.9284773550354449e-06, -8.6781480976595772e-06, -1.9284773550354449e-06, -4.8211933875886112e-07, -9.6423867751772245e-07, -6.2675514038650925e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.0498024455744671e-05, -3.8569547100708898e-06, -4.2426501810779592e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -3.8569547100709276e-05, -7.7139094201417779e-06, -3.9051666439468236e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417762e-06, -1.9284773550354453e-06, -4.0498024455744657e-05, -3.856954710070952e-05, -3.8569547100709242e-05, -3.8569547100709343e-05, -4.8211933875886112e-07, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708889e-06, -4.8211933875886849e-06, -9.642386775177346e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -3.8569547100708889e-06, -1.1570864130212845e-05, -1.4463580162766268e-06, -4.2426501810779931e-05, -7.7139094201417779e-06, -3.471259239063776e-05, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.205298346897146e-05, -7.7139094201417813e-06, -3.8569547100708898e-06, -3.3748353713120308e-06, -1.928477355035444e-06, -9.6423867751772224e-07, -3.471259239063776e-05, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.4712592390637746e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886629e-06, -1.4463580162766054e-06, -3.8569547100708898e-06, -7.2317900813829968e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.8927160325532264e-06, -1.4463580162766234e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -1.2535102807730195e-05, -1.1088744791453818e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -3.8569547100708898e-06, -2.8927160325532332e-06, -9.6423867751772266e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100709343e-05, -3.8569547100709242e-05, -7.810333287893673e-05, -3.8569547100709242e-05, -3.8569547100709276e-05, -1.928477355035444e-06, -9.6423867751772245e-07, -3.8569547100708873e-06, -4.3390740488296861e-06, -1.928477355035444e-06, -5.3033127263474736e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.810333287893654e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.4463580162766054e-06, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -1.928477355035444e-06, -5.7854320651064249e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -8.6781480976594264e-06, -4.8211933875886122e-07, -1.9284773550354428e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.4105966937943335e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -2.8927160325532099e-06, -4.0980143794503334e-05, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -2.2177489582907555e-05, -4.8211933875886459e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708881e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -0.00014801063699897303, -3.8569547100708898e-06, -9.6423867751773047e-05, -3.8569547100708898e-06, -9.6423867751772224e-07, -2.8927160325531808e-05, -5.7854320651064232e-06, -2.4105966937943306e-06, -2.892716032553213e-05, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.810333287893654e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00011040532857577898, -1.4463580162766045e-06, -9.6423867751773128e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.810333287893673e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.3017222146489205e-05, -4.6283456520851386e-05, -3.8569547100708898e-06, -3.4230473051878725e-05, -5.7854320651064181e-06, -5.7854320651064181e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -4.8211933875886866e-06, -3.8569547100708881e-06, -4.8211933875886747e-06, -1.0124506113936158e-05, -3.8569547100708898e-06, -2.4105966937943407e-06, -1.1088744791453767e-05, -3.8569547100708898e-06, -5.7854320651064232e-06, -1.4463580162766238e-06, -2.4105966937943306e-06, -9.6423867751772202e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -5.7854320651062784e-06, -2.8927160325531692e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -1.1570864130212843e-05, -3.8569547100708898e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488298394e-06, -1.6392057517801213e-05, -9.6423867751772202e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -4.3390740488297166e-06, -1.2535102807730502e-05, 0.001960297231393539, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -8.1960287589005268e-06, -1.4463580162765911e-05, -5.7854320651064232e-06, -2.8927160325532264e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -7.7139094201417779e-06, -1.1570864130212838e-05, -3.8569547100708881e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -5.7854320651064224e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.339074048829831e-06, -2.4105966937943365e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -3.4712592390637719e-05, -1.9284773550354453e-06, -4.8211933875886122e-07, -2.8927160325531801e-05, -3.8569547100708898e-06, -2.3141728260426028e-05, -2.3141728260425679e-05, -2.4105966937943167e-05, -2.3141728260426028e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -4.8211933875886101e-07, -3.8569547100708889e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.3748353713120245e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.9409279664290724e-05, -9.6423867751772224e-07, -3.4712592390637746e-05, -3.471259239063776e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.471259239063776e-05, -3.4712592390637692e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.446358016276605e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6905987090531892e-05, -9.6423867751772193e-05, -2.4105966937943128e-06, -4.8211933875886133e-07, -1.4463580162765963e-06, -4.8211933875886561e-06, -3.8569547100709357e-05, -9.6423867751772266e-07, -4.4354979165815414e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100709357e-05, -3.8569547100709343e-05, -3.8569547100708898e-06, -0.00010944108989826118, -9.6423867751772245e-07, -9.6423867751773481e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708889e-06, -2.4105966937943128e-06, -1.4463580162765973e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813830222e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297395e-06, -3.8569547100708915e-06, -7.2317900813829968e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886451e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -8.1960287589006115e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.2052983468971551e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.8211933875886468e-06, -5.3033127263474693e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212772e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594569e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652526e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.0498024455744644e-05, -3.8569547100708906e-06, -4.24265018107797e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709106e-05, -7.7139094201417796e-06, -3.9051666439468101e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.049802445574463e-05, -3.8569547100709357e-05, -3.8569547100709079e-05, -3.8569547100709181e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886391e-06, -9.642386775177302e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -1.157086413021278e-05, -1.4463580162766183e-06, -4.2426501810780039e-05, -7.7139094201417813e-06, -3.471259239063797e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971594e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120795e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390637956e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390637956e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, 0.0019602972313935386, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886222e-06, -1.4463580162765973e-06, -3.8569547100708915e-06, -7.2317900813829739e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325532108e-06, -1.4463580162766153e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730471e-05, -1.1088744791453859e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532167e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709181e-05, -3.8569547100709079e-05, -7.8103332878936446e-05, -3.8569547100709079e-05, -3.8569547100709106e-05, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297115e-06, -1.9284773550354449e-06, -5.3033127263474854e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936269e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162765973e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -5.785432065106391e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.678148097659479e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.410596693794323e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -2.8927160325531938e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.2177489582907602e-05, -4.8211933875886247e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897227, -3.8569547100708906e-06, -9.6423867751772803e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -2.892716032553172e-05, -5.7854320651063419e-06, -2.4105966937943204e-06, -2.8927160325532041e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936269e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.0001104053285757792, -1.4463580162765969e-06, -9.6423867751772884e-05, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936446e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.30172221464894e-05, -4.6283456520851115e-05, -3.8569547100708915e-06, -3.4230473051878894e-05, -5.7854320651063859e-06, -5.7854320651063859e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886425e-06, -3.8569547100708898e-06, -4.8211933875886544e-06, -1.0124506113936154e-05, -3.8569547100708915e-06, -2.4105966937943179e-06, -1.1088744791453804e-05, -3.8569547100708906e-06, -5.7854320651063351e-06, -1.446358016276585e-06, -2.4105966937943196e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063876e-06, -2.8927160325532158e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.1570864130212775e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297412e-06, -1.6392057517801308e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.339074048829814e-06, -1.2535102807730485e-05, -3.8569547100708898e-06, 0.0019602972313935386, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -8.1960287589005624e-06, -1.446358016276586e-05, -5.7854320651063622e-06, -2.8927160325532108e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417813e-06, -1.1570864130212777e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651063927e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.3390740488297335e-06, -2.4105966937943263e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.4712592390637916e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531713e-05, -3.8569547100708906e-06, -2.3141728260425899e-05, -2.3141728260425551e-05, -2.4105966937943099e-05, -2.3141728260425899e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.3748353713120367e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.940927966429067e-05, -9.6423867751772245e-07, -3.4712592390637956e-05, -3.4712592390637956e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.471259239063797e-05, -3.4712592390637895e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765948e-06, -7.713909420141783e-06, 0.001960297231393539, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100709059e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.690598709053238e-05, -9.6423867751772722e-05, -2.4105966937943272e-06, -4.8211933875886112e-07, -1.4463580162766105e-06, -4.8211933875886849e-06, -3.8569547100709587e-05, -9.6423867751772245e-07, -4.4354979165815103e-05, -4.8211933875886122e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100709587e-05, -3.8569547100709587e-05, -3.8569547100708898e-06, -0.00010944108989826051, -9.6423867751772202e-07, -9.6423867751773969e-05, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100709093e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708873e-06, -2.4105966937943272e-06, -1.4463580162766115e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886112e-07, -7.2317900813830629e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488296759e-06, -3.8569547100708898e-06, -7.2317900813830375e-06, -9.6423867751772224e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886747e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886112e-07, -3.8569547100708898e-06, -8.1960287589005607e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -1.5427818840283549e-05, -1.2052983468971621e-05, -3.8569547100708898e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -1.928477355035444e-06, -3.8569547100708898e-06, -4.8211933875886764e-06, -5.303312726347438e-06, -1.928477355035444e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772202e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -3.8569547100708898e-06, -9.6423867751772224e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -1.1570864130212884e-05, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -8.6781480976595365e-06, -1.9284773550354449e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -6.2675514038650654e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.0498024455744671e-05, -3.8569547100708898e-06, -4.2426501810779551e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -3.8569547100709343e-05, -7.7139094201417779e-06, -3.9051666439468291e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417762e-06, -1.9284773550354462e-06, -4.0498024455744657e-05, -3.8569547100709587e-05, -3.856954710070931e-05, -3.8569547100709411e-05, -4.8211933875886112e-07, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708889e-06, -4.8211933875886916e-06, -9.6423867751773596e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -3.8569547100708889e-06, -1.1570864130212896e-05, -1.4463580162766327e-06, -4.242650181077989e-05, -7.7139094201417779e-06, -3.4712592390637611e-05, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971494e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.3748353713120232e-06, -1.928477355035444e-06, -9.6423867751772224e-07, -3.4712592390637597e-05, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.4712592390637597e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.821193387588673e-06, -1.4463580162766115e-06, -3.8569547100708898e-06, -7.2317900813830171e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.8927160325532391e-06, -1.4463580162766295e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -1.2535102807730202e-05, -1.1088744791453777e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -3.8569547100708889e-06, -2.8927160325532451e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100709411e-05, -3.856954710070931e-05, -7.8103332878936839e-05, -3.856954710070931e-05, -3.8569547100709343e-05, -1.928477355035444e-06, -9.6423867751772245e-07, -3.8569547100708873e-06, -4.3390740488296675e-06, -1.928477355035444e-06, -5.3033127263474685e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -7.8103332878936662e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.4463580162766115e-06, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -1.928477355035444e-06, -5.7854320651064512e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -8.6781480976593892e-06, -4.8211933875886122e-07, -1.9284773550354428e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.4105966937943378e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -2.8927160325532239e-06, -4.0980143794503334e-05, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -2.2177489582907487e-05, -4.8211933875886544e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708881e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -0.00014801063699897371, -3.8569547100708889e-06, -9.6423867751773318e-05, -3.8569547100708898e-06, -9.6423867751772224e-07, -2.8927160325531882e-05, -5.7854320651064495e-06, -2.4105966937943348e-06, -2.8927160325532211e-05, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.8103332878936662e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00011040532857577866, -1.4463580162766105e-06, -9.6423867751773399e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.8103332878936839e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -1.3017222146489201e-05, -4.6283456520851582e-05, -3.8569547100708898e-06, -3.4230473051878576e-05, -5.7854320651064418e-06, -5.7854320651064418e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -4.821193387588695e-06, -3.8569547100708881e-06, -4.8211933875886832e-06, -1.0124506113936161e-05, -3.8569547100708898e-06, -2.4105966937943441e-06, -1.108874479145373e-05, -3.8569547100708898e-06, -5.7854320651064495e-06, -1.4463580162766302e-06, -2.410596693794334e-06, -9.6423867751772202e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -3.8569547100709093e-06, -5.7854320651062868e-06, -2.8927160325531811e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -1.1570864130212892e-05, -3.8569547100708898e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488298665e-06, -1.6392057517801199e-05, -9.6423867751772181e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -4.3390740488296963e-06, -1.2535102807730509e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, 0.001960297231393539, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -8.1960287589005115e-06, -1.4463580162765948e-05, -5.7854320651064495e-06, -2.8927160325532391e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -7.7139094201417779e-06, -1.157086413021289e-05, -3.8569547100708881e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -5.7854320651064478e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.3390740488298123e-06, -2.4105966937943416e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.471259239063757e-05, -1.9284773550354462e-06, -4.8211933875886122e-07, -2.8927160325531882e-05, -3.8569547100708898e-06, -2.3141728260426126e-05, -2.3141728260425784e-05, -2.4105966937943238e-05, -2.3141728260426126e-05, -1.9284773550354453e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -4.8211933875886101e-07, -3.8569547100708881e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.3748353713120096e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.9409279664290792e-05, -9.6423867751772224e-07, -3.4712592390637597e-05, -3.4712592390637597e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.4712592390637611e-05, -3.4712592390637543e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.4463580162766115e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8452993545265973e-05, -4.8211933875886103e-05, -1.2052983468971568e-06, -2.4105966937943066e-07, -7.2317900813829941e-07, -2.4105966937943289e-06, -1.9284773550354685e-05, -4.8211933875886133e-07, -2.2177489582907694e-05, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354689e-05, -1.9284773550354685e-05, -1.9284773550354449e-06, -5.4720544949130571e-05, -4.8211933875886112e-07, -4.8211933875886747e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.928477355035444e-06, -1.2052983468971568e-06, -7.231790081382993e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -3.615895040691512e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.1695370244148575e-06, -1.9284773550354453e-06, -3.6158950406915009e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886112e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -3.8569547100708906e-06, -2.4105966937943238e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -2.4105966937943061e-07, -1.9284773550354457e-06, -4.0980143794503015e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -6.0264917344857765e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -1.9284773550354453e-06, -2.4105966937943246e-06, -2.6516563631737292e-06, -9.6423867751772224e-07, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -2.4105966937943056e-07, -1.9284773550354457e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -5.7854320651063902e-06, -1.9284773550354445e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -4.3390740488297234e-06, -9.6423867751772287e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -3.1337757019326284e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -2.0249012227872329e-05, -1.9284773550354453e-06, -2.121325090538985e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -1.928477355035458e-05, -3.8569547100708898e-06, -1.9525833219734071e-05, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -2.0249012227872329e-05, -1.9284773550354685e-05, -1.9284773550354563e-05, -1.9284773550354614e-05, -2.4105966937943061e-07, -9.6423867751772202e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -2.4105966937943056e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.9284773550354449e-06, -2.4105966937943323e-06, -4.8211933875886527e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -5.7854320651063961e-06, -7.2317900813830999e-07, -2.1213250905389989e-05, -3.8569547100708906e-06, -1.73562961953189e-05, -2.4105966937943066e-07, -2.4105966937943072e-07, -6.0264917344857985e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -1.6874176856560175e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -1.7356296195318894e-05, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.7356296195318894e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -2.410596693794323e-06, -7.2317900813829941e-07, -1.9284773550354453e-06, -3.6158950406914878e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.4463580162766066e-06, -7.2317900813830841e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -6.267551403865239e-06, -5.5443723957269259e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.4463580162766098e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.9284773550354614e-05, -1.9284773550354563e-05, -3.905166643946825e-05, -1.9284773550354563e-05, -1.928477355035458e-05, -9.6423867751772224e-07, -4.8211933875886133e-07, -1.9284773550354445e-06, -2.1695370244148532e-06, -9.6423867751772224e-07, -2.6516563631737431e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.8569547100708898e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.9051666439468169e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -7.231790081382957e-07, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -2.4105966937943061e-07, -9.6423867751772224e-07, -2.8927160325531993e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -4.3390740488297335e-06, -2.4105966937943066e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.2052983468971568e-06, 0.00098111285437428694, -4.8211933875886122e-07, -1.4463580162765986e-06, -2.0490071897251667e-05, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943072e-07, -1.1088744791453808e-05, -2.4105966937943136e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.4005318499486205e-05, -1.9284773550354453e-06, -4.8211933875886408e-05, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.446358016276586e-05, -2.8927160325531985e-06, -1.2052983468971606e-06, -1.4463580162766021e-05, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.9051666439468169e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -5.5202664287889559e-05, -7.2317900813829898e-07, -4.8211933875886456e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.905166643946825e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -6.5086110732446109e-06, -2.3141728260425588e-05, -1.9284773550354453e-06, -1.7115236525939434e-05, -2.8927160325531959e-06, -2.8927160325531959e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.410596693794334e-06, -1.9284773550354449e-06, -2.4105966937943297e-06, -5.0622530569680805e-06, -1.9284773550354453e-06, -1.2052983468971655e-06, -5.5443723957269022e-06, -1.9284773550354457e-06, -2.8927160325531985e-06, -7.2317900813830862e-07, -1.2052983468971604e-06, -4.8211933875886112e-07, -2.4105966937943061e-07, -2.4105966937943072e-07, -1.9284773550354449e-06, -2.8927160325531972e-06, -1.4463580162766092e-06, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -3.8569547100708889e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -1.9284773550354449e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -5.7854320651063936e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.1695370244148676e-06, -8.1960287589006538e-06, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354457e-06, -2.1695370244148676e-06, -6.2675514038652449e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, 0.00098111285437428694, -9.6423867751772287e-07, -2.4105966937943066e-07, -2.4105966937943056e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.0980143794502778e-06, -7.2317900813829367e-06, -2.8927160325531985e-06, -1.4463580162766066e-06, -2.4105966937943072e-07, -9.6423867751772287e-07, -3.8569547100708906e-06, -5.7854320651063927e-06, -1.9284773550354445e-06, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -2.8927160325531781e-06, -1.9284773550354457e-06, -2.4105966937943061e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -2.1695370244148642e-06, -1.2052983468971636e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -1.7356296195318941e-05, -9.6423867751772245e-07, -2.4105966937943072e-07, -1.4463580162765856e-05, -1.9284773550354457e-06, -1.1570864130212962e-05, -1.1570864130212772e-05, -1.2052983468971541e-05, -1.1570864130212962e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.687417685656019e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4704639832145321e-05, -4.8211933875886122e-07, -1.7356296195318894e-05, -1.7356296195318894e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.73562961953189e-05, -1.7356296195318894e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.231790081382993e-07, -3.8569547100708915e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8452993545265987e-05, -4.8211933875886117e-05, -1.2052983468971568e-06, -2.4105966937943066e-07, -7.2317900813829919e-07, -2.4105966937943289e-06, -1.9284773550354685e-05, -4.8211933875886133e-07, -2.2177489582907687e-05, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354689e-05, -1.9284773550354685e-05, -1.9284773550354449e-06, -5.4720544949130558e-05, -4.8211933875886112e-07, -4.8211933875886761e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.928477355035444e-06, -1.2052983468971568e-06, -7.2317900813829951e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -3.615895040691512e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.1695370244148566e-06, -1.9284773550354453e-06, -3.6158950406915018e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886112e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -3.8569547100708906e-06, -2.4105966937943238e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -2.4105966937943061e-07, -1.9284773550354457e-06, -4.0980143794502998e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -6.0264917344857782e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -1.9284773550354453e-06, -2.4105966937943246e-06, -2.6516563631737296e-06, -9.6423867751772224e-07, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -2.4105966937943056e-07, -1.9284773550354457e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -5.7854320651063919e-06, -1.9284773550354445e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -4.3390740488297217e-06, -9.6423867751772287e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -3.1337757019326284e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -2.0249012227872329e-05, -1.9284773550354453e-06, -2.1213250905389854e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -1.928477355035458e-05, -3.8569547100708898e-06, -1.9525833219734064e-05, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -2.0249012227872329e-05, -1.9284773550354685e-05, -1.9284773550354563e-05, -1.9284773550354614e-05, -2.4105966937943061e-07, -9.6423867751772202e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -2.4105966937943056e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.9284773550354449e-06, -2.4105966937943323e-06, -4.8211933875886527e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -5.7854320651063978e-06, -7.2317900813831021e-07, -2.1213250905389989e-05, -3.8569547100708906e-06, -1.73562961953189e-05, -2.4105966937943066e-07, -2.4105966937943072e-07, -6.0264917344858002e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -1.6874176856560171e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -1.73562961953189e-05, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.73562961953189e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -2.410596693794323e-06, -7.2317900813829962e-07, -1.9284773550354453e-06, -3.6158950406914887e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.4463580162766071e-06, -7.2317900813830862e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -6.267551403865239e-06, -5.5443723957269242e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.4463580162766102e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.9284773550354614e-05, -1.9284773550354563e-05, -3.905166643946825e-05, -1.9284773550354563e-05, -1.928477355035458e-05, -9.6423867751772224e-07, -4.8211933875886133e-07, -1.9284773550354445e-06, -2.1695370244148524e-06, -9.6423867751772224e-07, -2.6516563631737436e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.8569547100708898e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.9051666439468162e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -7.2317900813829591e-07, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -2.4105966937943061e-07, -9.6423867751772224e-07, -2.8927160325532002e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -4.3390740488297319e-06, -2.4105966937943066e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, 0.00098087179470490748, -9.6423867751772287e-07, -4.8211933875886122e-07, -1.446358016276599e-06, -2.0490071897251667e-05, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943072e-07, -1.1088744791453804e-05, -2.4105966937943136e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.4005318499486219e-05, -1.9284773550354453e-06, -4.8211933875886422e-05, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.446358016276586e-05, -2.8927160325531993e-06, -1.2052983468971606e-06, -1.4463580162766024e-05, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.9051666439468162e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -5.5202664287889545e-05, -7.2317900813829919e-07, -4.8211933875886469e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.905166643946825e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -6.5086110732446109e-06, -2.3141728260425595e-05, -1.9284773550354453e-06, -1.7115236525939427e-05, -2.8927160325531968e-06, -2.8927160325531968e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.410596693794334e-06, -1.9284773550354449e-06, -2.4105966937943297e-06, -5.0622530569680805e-06, -1.9284773550354453e-06, -1.2052983468971655e-06, -5.5443723957269005e-06, -1.9284773550354457e-06, -2.8927160325531993e-06, -7.2317900813830883e-07, -1.2052983468971604e-06, -4.8211933875886112e-07, -2.4105966937943061e-07, -2.4105966937943072e-07, -1.9284773550354449e-06, -2.892716032553198e-06, -1.4463580162766096e-06, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -3.8569547100708889e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -1.9284773550354449e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -5.7854320651063953e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.1695370244148668e-06, -8.1960287589006504e-06, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354457e-06, -2.1695370244148668e-06, -6.2675514038652449e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, 0.00098111285437428694, -2.4105966937943066e-07, -2.4105966937943056e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.0980143794502761e-06, -7.2317900813829384e-06, -2.8927160325531993e-06, -1.4463580162766071e-06, -2.4105966937943072e-07, -9.6423867751772287e-07, -3.8569547100708906e-06, -5.7854320651063944e-06, -1.9284773550354445e-06, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -2.892716032553179e-06, -1.9284773550354457e-06, -2.4105966937943061e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -2.1695370244148634e-06, -1.2052983468971636e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -1.7356296195318934e-05, -9.6423867751772245e-07, -2.4105966937943072e-07, -1.446358016276586e-05, -1.9284773550354457e-06, -1.1570864130212965e-05, -1.1570864130212775e-05, -1.2052983468971544e-05, -1.1570864130212965e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.6874176856560184e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4704639832145325e-05, -4.8211933875886122e-07, -1.73562961953189e-05, -1.73562961953189e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.73562961953189e-05, -1.7356296195318887e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.2317900813829951e-07, -3.8569547100708915e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -1.2113248386316517e-05, -1.2052983468971551e-05, -3.0132458672428995e-07, -6.0264917344857653e-08, -1.807947520345753e-07, -6.026491734485837e-07, -4.8211933875886815e-06, -1.2052983468971531e-07, -5.5443723957269082e-06, -6.0264917344857666e-08, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886815e-06, -4.8211933875886815e-06, -4.8211933875886122e-07, -1.3680136237282604e-05, -1.2052983468971528e-07, -1.2052983468971712e-05, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, 0.00024503715392419233, -3.0132458672428995e-07, -1.8079475203457541e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857653e-08, -9.0397376017288032e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610371267e-07, -4.8211933875886133e-07, -9.0397376017287714e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -9.6423867751772266e-07, -6.0264917344858233e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -1.0245035948625737e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.9284773550354445e-06, -1.5066229336214477e-06, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943056e-07, -4.8211933875886133e-07, -6.0264917344858254e-07, -6.6291409079343113e-07, -2.4105966937943056e-07, -9.6423867751772202e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.026491734485764e-08, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.446358016276602e-06, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -2.4105966937943072e-07, -1.0847685122074484e-06, -2.4105966937943072e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -7.8344392548313868e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -5.0622530569680822e-06, -4.8211933875886133e-07, -5.3033127263474541e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -4.8211933875886518e-06, -9.6423867751772245e-07, -4.8814583049335228e-06, -6.0264917344857653e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -5.0622530569680822e-06, -4.8211933875886815e-06, -4.8211933875886485e-06, -4.8211933875886603e-06, -6.0264917344857653e-08, -2.4105966937943061e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.026491734485764e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886122e-07, -6.0264917344858455e-07, -1.2052983468971661e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -4.8211933875886122e-07, -1.4463580162766037e-06, -1.8079475203457808e-07, -5.3033127263474964e-06, -9.6423867751772245e-07, -4.3390740488297251e-06, -6.0264917344857653e-08, -6.0264917344857679e-08, -1.5066229336214325e-06, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.2185442141400374e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -4.3390740488297251e-06, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297234e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -6.0264917344858201e-07, -1.8079475203457546e-07, -4.8211933875886133e-07, -9.039737601728746e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -3.6158950406915288e-07, -1.8079475203457768e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -1.5668878509662748e-06, -1.3860930989317277e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -4.8211933875886122e-07, -3.6158950406915373e-07, -1.2052983468971533e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -4.8211933875886603e-06, -4.8211933875886485e-06, -9.762916609867076e-06, -4.8211933875886485e-06, -4.8211933875886518e-06, -2.4105966937943056e-07, -1.2052983468971536e-07, -4.8211933875886101e-07, -5.4238425610371161e-07, -2.4105966937943056e-07, -6.6291409079343483e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -9.6423867751772287e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -9.762916609867054e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -1.8079475203457541e-07, -6.0264917344857653e-08, -1.2052983468971533e-07, -1.2052983468971533e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -2.4105966937943056e-07, -7.2317900813830227e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -1.0847685122074296e-06, -6.0264917344857666e-08, -2.4105966937943035e-07, -1.2052983468971531e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.0132458672429127e-07, -2.4105966937943066e-07, -1.2052983468971533e-07, -3.6158950406915081e-07, -5.1225179743129167e-06, -6.0264917344857679e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857679e-08, -2.772186197863446e-06, -6.0264917344857989e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -4.8211933875886112e-07, -9.6423867751772266e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.8501329624871612e-05, -4.8211933875886122e-07, -1.2052983468971631e-05, -4.8211933875886133e-07, -1.2052983468971531e-07, -3.6158950406914751e-06, -7.2317900813830184e-07, -3.013245867242909e-07, -3.6158950406915162e-06, -6.0264917344857679e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.762916609867054e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.380066607197238e-05, -1.807947520345753e-07, -1.2052983468971641e-05, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.762916609867076e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.6271527683111519e-06, -5.7854320651064147e-06, -4.8211933875886133e-07, -4.2788091314848431e-06, -7.2317900813830099e-07, -7.2317900813830099e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344858497e-07, -4.8211933875886122e-07, -6.0264917344858349e-07, -1.2655632642420193e-06, -4.8211933875886133e-07, -3.0132458672429206e-07, -1.3860930989317213e-06, -4.8211933875886133e-07, -7.2317900813830184e-07, -1.8079475203457771e-07, -3.0132458672429079e-07, -1.2052983468971528e-07, -6.0264917344857653e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -7.2317900813828501e-07, -3.6158950406914563e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943066e-07, -4.8211933875886112e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -1.4463580162766028e-06, -4.8211933875886133e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610372993e-07, -2.0490071897251558e-06, -1.2052983468971528e-07, -4.8211933875886112e-07, -4.8211933875886144e-07, -5.4238425610371521e-07, -1.5668878509663119e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, 0.00024545900834560644, -6.026491734485764e-08, -6.0264917344857653e-08, -1.2052983468971536e-07, -1.0245035948625675e-06, -1.8079475203457384e-06, -7.2317900813830184e-07, -3.6158950406915288e-07, -6.0264917344857679e-08, -2.4105966937943066e-07, -9.6423867751772245e-07, -1.446358016276603e-06, -4.8211933875886112e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -7.2317900813830184e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -5.4238425610372908e-07, -3.0132458672429164e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -4.3390740488297183e-06, -2.4105966937943061e-07, -6.0264917344857679e-08, -3.6158950406914751e-06, -4.8211933875886133e-07, -2.8927160325532497e-06, -2.8927160325532065e-06, -3.0132458672428954e-06, -2.8927160325532497e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.2185442141400307e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -3.6761599580363405e-06, -1.2052983468971531e-07, -4.3390740488297234e-06, -4.3390740488297251e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.3390740488297251e-06, -4.3390740488297166e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -9.6423867751772287e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.8079475203457541e-07, -9.6423867751772287e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -4.8211933875886112e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.026491734485764e-08, -6.026491734485764e-08, -1.2113248386316554e-05, -1.2052983468971594e-05, -3.013245867242909e-07, -6.026491734485764e-08, -1.8079475203457641e-07, -6.0264917344858561e-07, -4.8211933875886916e-06, -1.2052983468971528e-07, -5.5443723957268946e-06, -6.0264917344857653e-08, -9.6423867751772202e-07, -9.6423867751772181e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886747e-06, -4.8211933875886815e-06, -4.8211933875886101e-07, -1.368013623728256e-05, -1.2052983468971605e-07, -1.2052983468971753e-05, -9.6423867751772202e-07, -4.8211933875886112e-07, -4.8211933875886101e-07, -6.026491734485764e-08, -6.0264917344857653e-08, -4.8211933875886112e-07, -4.8211933875886122e-07, -1.2052983468971605e-07, -1.2052983468971605e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886091e-07, -3.013245867242909e-07, -1.8079475203457655e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.026491734485764e-08, -9.0397376017287428e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -5.4238425610370907e-07, -4.8211933875886122e-07, -9.0397376017288032e-07, -1.2052983468971525e-07, -6.0264917344857759e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857627e-08, -6.026491734485764e-08, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.2052983468971525e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -9.6423867751772245e-07, -6.0264917344858434e-07, -4.8211933875886112e-07, -9.6423867751772224e-07, -6.0264917344857627e-08, -4.8211933875886112e-07, -1.0245035948625701e-06, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354479e-06, -1.506622933621453e-06, -4.8211933875886112e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -2.4105966937943051e-07, -4.8211933875886122e-07, -6.0264917344858455e-07, -6.6291409079342996e-07, -2.4105966937943051e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.2052983468971525e-07, -4.8211933875886101e-07, -4.8211933875886112e-07, -6.0264917344857613e-08, -4.8211933875886112e-07, -1.2052983468971525e-07, -4.8211933875886101e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -6.026491734485764e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.026491734485764e-08, -4.8211933875886122e-07, -4.8211933875886112e-07, -6.026491734485764e-08, -4.8211933875886101e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -1.4463580162766111e-06, -4.8211933875886101e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -1.0847685122074203e-06, -2.4105966937943061e-07, -6.0264917344857627e-08, -1.2052983468971531e-07, -7.8344392548315826e-07, -4.8211933875886112e-07, -9.6423867751772224e-07, -5.0622530569680737e-06, -4.8211933875886112e-07, -5.3033127263474422e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772202e-07, -4.8211933875886688e-06, -9.6423867751772202e-07, -4.8814583049335363e-06, -6.026491734485764e-08, -9.6423867751772202e-07, -9.6423867751772202e-07, -2.4105966937943051e-07, -5.0622530569680703e-06, -4.8211933875886916e-06, -4.8211933875886654e-06, -4.8211933875886772e-06, -6.0264917344857627e-08, -2.4105966937943051e-07, -6.0264917344857653e-08, -6.0264917344857627e-08, -6.0264917344858024e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886101e-07, -6.0264917344858667e-07, -1.2052983468971704e-06, -9.6423867751772202e-07, -9.6423867751772224e-07, -4.8211933875886101e-07, -1.4463580162766126e-06, -1.8079475203457919e-07, -5.3033127263474863e-06, -9.6423867751772224e-07, -4.339074048829698e-06, -6.026491734485764e-08, -6.0264917344857653e-08, -1.5066229336214581e-06, -9.6423867751772245e-07, -4.8211933875886112e-07, -4.2185442141400258e-07, -2.4105966937943061e-07, -1.2052983468971525e-07, -4.3390740488296963e-06, -1.2052983468971525e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.3390740488296963e-06, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344858434e-07, -1.8079475203457014e-07, -4.8211933875886122e-07, -9.039737601728746e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -1.2052983468971605e-07, -1.2052983468971605e-07, -1.2052983468971525e-07, -6.0264917344857653e-08, -3.61589504069155e-07, -1.8079475203457877e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -9.6423867751772224e-07, -1.5668878509663127e-06, -1.3860930989317145e-06, -6.0264917344857653e-08, -9.6423867751772224e-07, -4.8211933875886112e-07, -3.6158950406915584e-07, -1.2052983468971528e-07, -6.0264917344857653e-08, -6.026491734485764e-08, -4.8211933875886772e-06, -4.8211933875886654e-06, -9.7629166098671048e-06, -4.8211933875886654e-06, -4.8211933875886688e-06, -2.4105966937943051e-07, -1.2052983468971528e-07, -4.8211933875886101e-07, -5.4238425610370801e-07, -2.4105966937943051e-07, -6.6291409079343356e-07, -6.026491734485764e-08, -6.0264917344857653e-08, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.026491734485764e-08, -2.4105966937943056e-07, -2.4105966937943056e-07, -9.6423867751772202e-07, -4.8211933875886112e-07, -6.0264917344857653e-08, -9.7629166098670828e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -6.026491734485764e-08, -2.4105966937943056e-07, -2.4105966937943056e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.8079475203457655e-07, -6.0264917344857627e-08, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -6.0264917344857627e-08, -2.4105966937943045e-07, -7.2317900813830661e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -1.0847685122074228e-06, -6.026491734485764e-08, -2.4105966937943051e-07, -1.2052983468971531e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -3.0132458672429228e-07, -2.4105966937943056e-07, -1.2052983468971525e-07, -3.6158950406915299e-07, -5.1225179743129167e-06, -6.0264917344857653e-08, -2.4105966937943056e-07, -2.4105966937943056e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.0264917344857653e-08, -2.7721861978634325e-06, -6.026491734485819e-07, -6.0264917344857627e-08, -4.8211933875886101e-07, -4.8211933875886091e-07, -4.8211933875886101e-07, -9.6423867751772224e-07, -4.8211933875886091e-07, -9.6423867751772224e-07, -4.8211933875886091e-07, -4.8211933875886091e-07, -1.8501329624871727e-05, -4.8211933875886112e-07, -1.2052983468971668e-05, -4.8211933875886122e-07, -1.2052983468971525e-07, -3.615895040691487e-06, -7.2317900813830639e-07, -3.0132458672429185e-07, -3.6158950406915272e-06, -6.0264917344857653e-08, -4.8211933875886112e-07, -4.8211933875886112e-07, -9.7629166098670828e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.3800666071972305e-05, -1.8079475203457056e-07, -1.2052983468971678e-05, -4.8211933875886112e-07, -4.8211933875886122e-07, -6.026491734485764e-08, -4.8211933875886112e-07, -4.8211933875886112e-07, -6.0264917344857653e-08, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971525e-07, -2.4105966937943056e-07, -2.4105966937943056e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -9.7629166098671048e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -1.6271527683111506e-06, -5.7854320651064512e-06, -4.8211933875886122e-07, -4.2788091314848186e-06, -7.2317900813830576e-07, -7.2317900813830576e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -6.0264917344858699e-07, -4.8211933875886101e-07, -6.026491734485855e-07, 0.00024425370999870934, -4.8211933875886122e-07, -3.0132458672429312e-07, -1.3860930989317158e-06, -4.8211933875886112e-07, -7.2317900813830639e-07, -1.8079475203457882e-07, -3.0132458672429175e-07, -1.2052983468971557e-07, -6.0264917344857627e-08, -6.0264917344857653e-08, -4.8211933875886101e-07, -7.2317900813830618e-07, -3.6158950406915563e-07, -2.4105966937943061e-07, -4.8211933875886112e-07, -4.8211933875886101e-07, -4.8211933875886091e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.4105966937943056e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.4105966937943056e-07, -4.8211933875886091e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.4463580162765774e-06, -4.8211933875886122e-07, -9.6423867751772202e-07, -9.6423867751772181e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -5.4238425610371161e-07, -2.0490071897251524e-06, -1.2052983468971523e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -5.4238425610371161e-07, -1.5668878509663138e-06, -4.8211933875886101e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -2.4105966937943056e-07, -2.4105966937943056e-07, -6.026491734485764e-08, 0.00024545900834560639, -6.0264917344857627e-08, -1.2052983468971531e-07, -1.0245035948626038e-06, -1.8079475203457477e-06, -7.2317900813830639e-07, -3.61589504069155e-07, -6.0264917344857653e-08, -2.4105966937943056e-07, -9.6423867751772224e-07, -1.4463580162766117e-06, -4.8211933875886101e-07, -2.4105966937943056e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -2.4105966937943056e-07, -7.2317900813830629e-07, -4.8211933875886112e-07, -6.0264917344857627e-08, -1.2052983468971525e-07, -2.4105966937943056e-07, -2.4105966937943061e-07, -5.4238425610371076e-07, -3.013245867242927e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -4.3390740488296912e-06, -2.4105966937943051e-07, -6.0264917344857653e-08, -3.6158950406914861e-06, -4.8211933875886112e-07, -2.8927160325532671e-06, -2.8927160325532239e-06, -3.0132458672429056e-06, -2.8927160325532671e-06, -2.4105966937943051e-07, -2.4105966937943051e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886101e-07, -6.0264917344857627e-08, -4.8211933875886101e-07, -6.0264917344857653e-08, -6.026491734485764e-08, -4.2185442141400103e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -3.676159958036349e-06, -1.2052983468971525e-07, -4.3390740488296963e-06, -4.3390740488296963e-06, -4.8211933875886112e-07, -6.026491734485764e-08, -4.8211933875886112e-07, -4.339074048829698e-06, -4.3390740488296895e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -1.2052983468971525e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.8079475203457655e-07, -9.6423867751772245e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -1.2113248386316524e-05, -1.2052983468971561e-05, -3.0132458672429016e-07, -6.0264917344857653e-08, -1.8079475203457554e-07, -6.0264917344858413e-07, -4.8211933875886866e-06, -1.2052983468971531e-07, -5.5443723957269048e-06, -6.0264917344857666e-08, -9.6423867751772224e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886866e-06, -4.8211933875886849e-06, -4.8211933875886112e-07, -1.36801362372826e-05, -1.2052983468971525e-07, -1.2052983468971719e-05, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971525e-07, -1.2052983468971525e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.8211933875886112e-07, -3.0132458672429016e-07, -1.8079475203457567e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857653e-08, -9.0397376017288074e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -5.4238425610371415e-07, -4.8211933875886133e-07, -9.0397376017287778e-07, -1.2052983468971528e-07, -6.026491734485764e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -9.6423867751772245e-07, -6.0264917344858275e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -1.0245035948625728e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -1.928477355035444e-06, -1.5066229336214492e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -6.0264917344858296e-07, -6.6291409079343367e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857627e-08, -4.8211933875886122e-07, -1.2052983468971533e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -9.6423867751772224e-07, -9.6423867751772224e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886112e-07, -1.4463580162766045e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -1.0847685122074258e-06, -2.4105966937943066e-07, -6.0264917344857653e-08, -1.2052983468971533e-07, -7.8344392548315763e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -5.0622530569680822e-06, -4.8211933875886122e-07, -5.3033127263474524e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772224e-07, -4.8211933875886552e-06, -9.6423867751772245e-07, -4.8814583049335262e-06, -6.0264917344857653e-08, -9.6423867751772245e-07, -9.6423867751772224e-07, -2.4105966937943056e-07, -5.0622530569680822e-06, -4.8211933875886866e-06, -4.8211933875886518e-06, -4.8211933875886645e-06, -6.0264917344857666e-08, -2.4105966937943051e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -6.0264917344857627e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.8211933875886133e-07, -6.0264917344858032e-07, -1.205298346897167e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -1.4463580162766056e-06, -1.8079475203457835e-07, -5.3033127263474939e-06, -9.6423867751772245e-07, -4.33907404882972e-06, -6.0264917344857666e-08, -6.0264917344857666e-08, -1.5066229336214543e-06, -9.6423867751772266e-07, -4.8211933875886122e-07, -4.2185442141401205e-07, -2.4105966937943056e-07, -1.2052983468971528e-07, -4.3390740488297183e-06, -1.2052983468971528e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.3390740488297183e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -6.0264917344857989e-07, -1.8079475203457567e-07, -4.8211933875886133e-07, -9.0397376017287503e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -1.2052983468971525e-07, -1.2052983468971525e-07, -1.2052983468971528e-07, -6.0264917344857666e-08, -3.615895040691533e-07, -1.8079475203457792e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.566887850966311e-06, -1.3860930989317264e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.6158950406915415e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.8211933875886645e-06, -4.8211933875886518e-06, -9.7629166098670811e-06, -4.8211933875886518e-06, -4.8211933875886552e-06, -2.4105966937943061e-07, -1.2052983468971531e-07, -4.8211933875886112e-07, -5.4238425610371076e-07, -2.4105966937943061e-07, -6.6291409079343441e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -9.6423867751772266e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -9.7629166098670591e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.8079475203457567e-07, -6.026491734485764e-08, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -2.4105966937943061e-07, -7.2317900813830269e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -1.0847685122074279e-06, -6.0264917344857653e-08, -2.4105966937943051e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.0132458672429148e-07, -2.4105966937943061e-07, -1.2052983468971528e-07, -3.6158950406915124e-07, -5.1225179743129167e-06, -6.0264917344857666e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943066e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.0264917344857666e-08, -2.7721861978634401e-06, -6.0264917344858032e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.8211933875886101e-07, -9.6423867751772245e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -1.8501329624871636e-05, -4.8211933875886122e-07, -1.2052983468971638e-05, -4.8211933875886133e-07, -1.2052983468971528e-07, -3.6158950406914768e-06, -7.2317900813829676e-07, -3.0132458672429111e-07, -3.6158950406915179e-06, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.7629166098670591e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.3800666071972346e-05, -1.8079475203457562e-07, -1.2052983468971648e-05, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971528e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.7629166098670811e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.6271527683111919e-06, -5.7854320651064232e-06, -4.8211933875886122e-07, -4.2788091314848381e-06, -7.2317900813830227e-07, -7.2317900813830227e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -6.0264917344858053e-07, -4.8211933875886112e-07, -6.0264917344858392e-07, -1.2655632642420197e-06, -4.8211933875886133e-07, -3.0132458672429005e-07, -1.3860930989317196e-06, -4.8211933875886122e-07, -7.2317900813829591e-07, -1.8079475203457109e-07, -3.01324586724291e-07, -1.2052983468971525e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.8211933875886112e-07, -7.2317900813830269e-07, -3.6158950406915394e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886101e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.4105966937943061e-07, -4.8211933875886101e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772224e-07, -1.4463580162766054e-06, -4.8211933875886133e-07, -9.6423867751772224e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -5.4238425610371436e-07, -2.0490071897251575e-06, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -5.4238425610373078e-07, -1.5668878509663123e-06, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886112e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.0264917344857653e-08, -6.0264917344857627e-08, 0.00024545900834560644, -1.2052983468971533e-07, -1.0245035948625667e-06, -1.8079475203457388e-06, -7.231790081382993e-07, -3.615895040691533e-07, -6.0264917344857666e-08, -2.4105966937943061e-07, -9.6423867751772245e-07, -1.4463580162766054e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -7.2317900813830248e-07, -4.8211933875886122e-07, -6.026491734485764e-08, -1.2052983468971531e-07, -2.4105966937943061e-07, -2.4105966937943066e-07, -5.4238425610371352e-07, -3.0132458672429185e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.3390740488297132e-06, -2.4105966937943056e-07, -6.0264917344857666e-08, -3.6158950406914768e-06, -4.8211933875886122e-07, -2.8927160325532535e-06, -2.8927160325532099e-06, -3.0132458672428971e-06, -2.8927160325532535e-06, -2.4105966937943056e-07, -2.4105966937943056e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -6.026491734485764e-08, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.2185442141400256e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -3.6761599580363422e-06, -1.2052983468971531e-07, -4.3390740488297183e-06, -4.3390740488297183e-06, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.33907404882972e-06, -4.3390740488297115e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, 0.00024533847851091666, -9.6423867751772266e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971533e-07, -1.2052983468971536e-07, -2.4226496772633e-05, -2.4105966937943075e-05, -6.0264917344857926e-07, -1.2052983468971533e-07, -3.6158950406914997e-07, -1.2052983468971589e-06, -9.6423867751773528e-06, -2.4105966937943072e-07, -1.1088744791453837e-05, -1.2052983468971536e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751773528e-06, -9.6423867751773528e-06, -9.6423867751772245e-07, -2.7360272474565255e-05, -2.4105966937943061e-07, -2.4105966937943397e-05, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -9.6423867751772202e-07, -6.0264917344857926e-07, -3.6158950406915018e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971533e-07, -1.8079475203457581e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.0847685122074275e-06, -9.6423867751772287e-07, -1.8079475203457522e-06, -2.4105966937943066e-07, -1.2052983468971531e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971533e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943061e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -1.9284773550354457e-06, -1.2052983468971634e-06, -9.6423867751772287e-07, -1.9284773550354457e-06, -1.2052983468971533e-07, -9.6423867751772287e-07, -2.0490071897251495e-06, -9.6423867751772266e-07, -9.6423867751772287e-07, -1.9284773550354453e-06, -3.8569547100708889e-06, -3.013245867242892e-06, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -1.2052983468971638e-06, -1.3258281815868631e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943061e-07, -9.6423867751772266e-07, -9.6423867751772287e-07, -1.2052983468971531e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971533e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.2052983468971536e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971533e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772287e-07, -9.6423867751772245e-07, -2.8927160325531997e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.1695370244148591e-06, -4.8211933875886144e-07, -1.2052983468971533e-07, -2.4105966937943072e-07, -1.5668878509662833e-06, -9.6423867751772287e-07, -1.9284773550354457e-06, -1.0124506113936161e-05, -9.6423867751772287e-07, -1.0606625452694915e-05, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -9.6423867751772935e-06, -1.9284773550354453e-06, -9.7629166098670388e-06, -1.2052983468971536e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -1.0124506113936158e-05, -9.6423867751773528e-06, -9.6423867751772867e-06, -9.6423867751773105e-06, -1.2052983468971533e-07, -4.8211933875886122e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -9.6423867751772266e-07, -1.2052983468971678e-06, 0.00048862794983210776, -1.9284773550354449e-06, -1.9284773550354457e-06, -9.6423867751772266e-07, -2.8927160325532019e-06, -3.615895040691451e-07, -1.0606625452694998e-05, -1.9284773550354453e-06, -8.6781480976594705e-06, -1.2052983468971536e-07, -1.2052983468971536e-07, -3.0132458672429018e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -8.4370884282800854e-07, -4.8211933875886122e-07, -2.4105966937943066e-07, -8.6781480976594705e-06, -2.4105966937943066e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976594671e-06, -9.6423867751772287e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -1.2052983468971627e-06, -3.6158950406915018e-07, -9.6423867751772287e-07, -1.8079475203457465e-06, -1.2052983468971536e-07, -9.6423867751772287e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971536e-07, -7.2317900813830438e-07, -3.6158950406915468e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354453e-06, -3.1337757019326203e-06, -2.7721861978634596e-06, -1.2052983468971536e-07, -1.9284773550354453e-06, -9.6423867751772266e-07, -7.2317900813828935e-07, -2.4105966937943072e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -9.6423867751773105e-06, -9.6423867751772867e-06, -1.9525833219734132e-05, -9.6423867751772867e-06, -9.6423867751772935e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -9.6423867751772224e-07, -1.0847685122074253e-06, -4.8211933875886122e-07, -1.3258281815868705e-06, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.9284773550354453e-06, -9.6423867751772266e-07, -1.2052983468971536e-07, -1.9525833219734091e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971536e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -3.6158950406915018e-07, -1.2052983468971533e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -4.8211933875886122e-07, -1.4463580162766016e-06, -9.6423867751772287e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -2.1695370244148575e-06, -1.2052983468971536e-07, -4.8211933875886101e-07, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -6.026491734485819e-07, -4.8211933875886144e-07, -2.4105966937943066e-07, -7.2317900813830015e-07, -1.0245035948625833e-05, -1.2052983468971536e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971536e-07, -5.5443723957268971e-06, -1.2052983468971585e-06, -1.2052983468971533e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -9.6423867751772266e-07, -1.9284773550354457e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.700265924974315e-05, -9.6423867751772266e-07, -2.4105966937943228e-05, -9.6423867751772287e-07, -2.4105966937943066e-07, -7.2317900813829367e-06, -1.4463580162766011e-06, -6.0264917344858095e-07, -7.2317900813830188e-06, -1.2052983468971536e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9525833219734091e-05, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.7601332143944773e-05, -3.6158950406914997e-07, -2.4105966937943248e-05, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971536e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971536e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9525833219734132e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.2543055366223542e-06, -1.1570864130212796e-05, -9.6423867751772287e-07, -8.557618262969749e-06, -1.4463580162765721e-06, -1.4463580162765721e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971683e-06, -9.6423867751772245e-07, -1.2052983468971657e-06, -2.5311265284840386e-06, -9.6423867751772287e-07, -6.0264917344858349e-07, -2.7721861978634477e-06, -9.6423867751772287e-07, -1.4463580162766011e-06, -3.6158950406915479e-07, -6.0264917344858095e-07, -2.4105966937943061e-07, -1.2052983468971533e-07, -1.2052983468971536e-07, -9.6423867751772245e-07, -1.4463580162766003e-06, -7.2317900813830576e-07, -4.8211933875886144e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -1.9284773550354449e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -2.8927160325532006e-06, -9.6423867751772287e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.0847685122074325e-06, -4.0980143794503235e-06, -2.4105966937943056e-07, -9.6423867751772245e-07, -9.6423867751772287e-07, -1.0847685122074325e-06, -3.133775701932622e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971536e-07, -1.2052983468971531e-07, -1.2052983468971533e-07, 0.00049079748685652272, -2.0490071897251372e-06, -3.6158950406914734e-06, -1.4463580162766011e-06, -7.2317900813830438e-07, -1.2052983468971536e-07, -4.8211933875886144e-07, -1.9284773550354453e-06, -2.8927160325532002e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -1.4463580162766009e-06, -9.6423867751772287e-07, -1.2052983468971531e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.0847685122074308e-06, -6.0264917344857926e-07, -9.6423867751772266e-07, -1.9284773550354457e-06, -8.6781480976594891e-06, -4.8211933875886122e-07, -1.2052983468971536e-07, -7.2317900813829299e-06, -9.6423867751772287e-07, -5.7854320651064884e-06, -5.7854320651064012e-06, -6.0264917344857832e-06, -5.7854320651064884e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772266e-07, -1.2052983468971531e-07, -9.6423867751772266e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -8.437088428280085e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -7.3523199160726777e-06, -2.4105966937943066e-07, -8.6781480976594671e-06, -8.6781480976594705e-06, -9.6423867751772287e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -8.6781480976594705e-06, -8.6781480976594535e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.6158950406915018e-07, -1.9284773550354457e-06, -8.1960287589005115e-06, -8.1960287589005268e-06, -8.1960287589005302e-06, -8.1960287589005115e-06, -4.0980143794502913e-06, -4.0980143794502905e-06, -8.1960287589005827e-06, -8.1960287589005861e-06, -1.0245035948625671e-06, -1.024503594862568e-06, -0.00020592522256737865, -0.00020490071897251682, -5.1225179743129184e-06, -1.0245035948625671e-06, -3.0735107845877765e-06, -1.0245035948625835e-05, -8.1960287589006599e-05, -2.0490071897251355e-06, -9.4254330727356806e-05, -1.0245035948625733e-06, -1.6392057517801033e-05, -1.639205751780103e-05, -8.1960287589005895e-06, -8.1960287589005827e-06, -8.1960287589006572e-05, -8.1960287589006572e-05, -8.1960287589005183e-06, -0.00023256231603380827, -2.0490071897252075e-06, -0.00020490071897251661, -1.639205751780104e-05, -8.1960287589005268e-06, -8.1960287589005132e-06, -1.0245035948625735e-06, -1.0245035948625673e-06, -8.196028758900542e-06, -8.1960287589005454e-06, -2.0490071897252067e-06, -2.0490071897252067e-06, -1.0245035948625737e-06, -1.0245035948625699e-06, -8.1960287589005827e-06, -5.1225179743129184e-06, -3.0735107845877913e-06, -4.0980143794502905e-06, -4.0980143794502922e-06, -1.0245035948625671e-06, -1.5367553922938761e-05, -8.1960287589005607e-06, -8.196028758900559e-06, -9.2205323537633613e-06, -8.1960287589005895e-06, -1.5367553922938761e-05, -2.0490071897251338e-06, -1.0245035948626046e-06, -8.1960287589005878e-06, -8.1960287589005861e-06, -1.0245035948625669e-06, -1.0245035948625686e-06, -8.1960287589005573e-06, -8.1960287589005624e-06, -2.0490071897251478e-06, -1.0245035948625707e-06, -8.1960287589005742e-06, -1.6392057517801223e-05, -1.0245035948625837e-05, -8.1960287589005471e-06, -1.6392057517801142e-05, -1.0245035948625667e-06, -8.1960287589005708e-06, -1.7416561112663844e-05, -8.196028758900542e-06, -8.1960287589005691e-06, -1.6392057517801694e-05, 0.0038955242571716195, -2.5612589871564606e-05, -8.1960287589005827e-06, -1.6392057517801057e-05, -1.639205751780105e-05, -4.0980143794502549e-06, -8.196028758900564e-06, -1.0245035948625838e-05, -1.1269539543488217e-05, -4.0980143794502549e-06, -1.6392057517801179e-05, -8.1960287589005522e-06, -8.1960287589005437e-06, -8.1960287589005437e-06, -2.0490071897251431e-06, -8.1960287589005251e-06, -8.1960287589005827e-06, -1.0245035948625637e-06, -8.1960287589005861e-06, -2.0490071897251385e-06, -8.1960287589005217e-06, -8.1960287589005437e-06, -8.1960287589005488e-06, -1.0245035948625667e-06, -1.639205751780168e-05, -1.6392057517801687e-05, -1.0245035948625684e-06, -8.1960287589005505e-06, -8.1960287589005505e-06, -1.0245035948625675e-06, -8.1960287589005149e-06, -8.1960287589005115e-06, -8.1960287589005691e-06, -8.1960287589005115e-06, -2.4588086276702219e-05, -8.19602875890052e-06, -8.1960287589005793e-06, -8.1960287589005691e-06, -1.0245035948625703e-06, -8.1960287589005725e-06, -8.1960287589005657e-06, -1.6392057517801111e-05, -4.0980143794502922e-06, -1.8441064707526848e-05, -4.0980143794502905e-06, -1.0245035948625648e-06, -2.0490071897251389e-06, -1.3318546733213444e-05, -8.1960287589005488e-06, -1.639205751780124e-05, -8.6058301968455579e-05, -8.1960287589005573e-06, -9.0156316347907026e-05, -8.1960287589005657e-06, -8.1960287589005691e-06, -1.639205751780105e-05, -8.1960287589006775e-05, -1.6392057517801057e-05, -8.2984791183869427e-05, -1.0245035948625733e-06, -1.639205751780106e-05, -1.6392057517801047e-05, -4.09801437945026e-06, -8.6058301968455796e-05, -8.1960287589006599e-05, -8.1960287589006721e-05, -8.1960287589006721e-05, -1.0245035948625671e-06, -4.0980143794503244e-06, -1.0245035948625716e-06, -1.0245035948625656e-06, -1.0245035948626038e-06, -8.1960287589005454e-06, -8.1960287589005454e-06, -8.1960287589005454e-06, -8.1960287589005471e-06, -1.0245035948625711e-06, -1.0245035948625707e-06, -1.0245035948625714e-06, -8.1960287589005302e-06, -1.0245035948625838e-05, -2.0490071897251677e-05, -1.6392057517801192e-05, -1.6392057517801115e-05, -8.1960287589005285e-06, -2.4588086276702304e-05, -3.073510784587796e-06, -9.0156316347906633e-05, -1.6392057517801118e-05, -7.3764258830106538e-05, -1.0245035948625675e-06, -1.0245035948625694e-06, -2.5612589871564603e-05, -1.6392057517801111e-05, -8.1960287589005607e-06, -7.1715251640381318e-06, -4.0980143794502837e-06, -2.0490071897251342e-06, -7.3764258830106552e-05, -2.0490071897251338e-06, -4.0980143794502905e-06, -4.0980143794502913e-06, -7.3764258830106538e-05, -8.1960287589005759e-06, -1.0245035948625699e-06, -8.1960287589005624e-06, -1.0245035948625714e-06, -8.1960287589005674e-06, -1.0245035948625835e-05, -3.0735107845877164e-06, -8.196028758900564e-06, -1.5367553922938764e-05, -1.0245035948625737e-06, -8.1960287589005776e-06, -2.0490071897252075e-06, -2.0490071897252067e-06, -2.0490071897251296e-06, -1.0245035948625686e-06, -6.1470215691755717e-06, -3.0735107845877952e-06, -8.1960287589005285e-06, -8.1960287589005319e-06, -1.6392057517801111e-05, -2.6637093466426936e-05, -2.3563582681839249e-05, -1.0245035948625737e-06, -1.6392057517801186e-05, -8.1960287589005319e-06, -6.1470215691755751e-06, -2.0490071897251491e-06, -1.0245035948625707e-06, -1.0245035948625656e-06, -8.1960287589006721e-05, -8.1960287589006721e-05, -0.00016596958236773847, -8.1960287589006735e-05, -8.1960287589006775e-05, -4.0980143794502549e-06, -2.0490071897251499e-06, -8.1960287589005183e-06, -9.22053235376338e-06, -4.0980143794502549e-06, -1.1269539543488312e-05, -1.0245035948625669e-06, -1.0245035948625733e-06, -1.6392057517801213e-05, -8.1960287589005759e-06, -8.1960287589005691e-06, -1.0245035948625694e-06, -1.0245035948625671e-06, -4.098014379450271e-06, -4.0980143794502719e-06, -1.6392057517801196e-05, -8.1960287589005352e-06, -1.024503594862572e-06, -0.00016596958236773853, -8.1960287589005302e-06, -8.1960287589005302e-06, -1.0245035948625684e-06, -4.0980143794502719e-06, -4.0980143794502719e-06, -2.0490071897251465e-06, -2.0490071897251465e-06, -3.0735107845877803e-06, -1.0245035948625669e-06, -2.0490071897251465e-06, -2.0490071897251465e-06, -1.0245035948625707e-06, -1.0245035948625669e-06, 0.00024142125888350127, -1.2294043138351126e-05, -8.1960287589005793e-06, -1.0245035948625716e-06, -1.0245035948625733e-06, -1.8441064707526655e-05, -1.0245035948625686e-06, -4.0980143794503015e-06, -2.0490071897251495e-06, -1.6392057517801162e-05, -1.6392057517801155e-05, -5.1225179743129184e-06, -4.0980143794502778e-06, -2.0490071897251499e-06, -6.1470215691755573e-06, -8.7082805563320034e-05, -1.0245035948625699e-06, -4.0980143794502778e-06, -4.0980143794502761e-06, -1.6392057517801145e-05, -1.6392057517801172e-05, -4.0980143794502769e-06, -4.0980143794502846e-06, -4.0980143794502854e-06, -1.0245035948625716e-06, -4.7127165363679264e-05, -1.0245035948625837e-05, -1.0245035948625667e-06, -8.1960287589005302e-06, -8.1960287589005657e-06, -8.1960287589005302e-06, -1.6392057517801172e-05, -8.1960287589006149e-06, -1.6392057517801145e-05, -8.1960287589005624e-06, -8.196028758900564e-06, -0.00031452260362281175, -8.1960287589005319e-06, -0.00020490071897251688, -8.1960287589005725e-06, -2.0490071897251334e-06, -6.1470215691755044e-05, -1.2294043138351126e-05, -5.1225179743129192e-06, -6.1470215691755112e-05, -1.0245035948625728e-06, -8.1960287589005437e-06, -8.1960287589005437e-06, -0.00016596958236773853, -8.1960287589005776e-06, -8.1960287589005793e-06, -0.00023461132322353167, -3.0735107845877075e-06, -0.00020490071897251682, -8.1960287589005505e-06, -8.1960287589005505e-06, -1.0245035948625703e-06, -8.196028758900542e-06, -8.1960287589005454e-06, -1.024503594862572e-06, -1.6392057517801155e-05, -1.6392057517801162e-05, -2.0490071897251296e-06, -4.0980143794502719e-06, -4.0980143794502719e-06, -8.1960287589005319e-06, -8.1960287589005352e-06, -0.00016596958236773847, -8.1960287589005319e-06, -8.1960287589005285e-06, -2.7661597061289411e-05, -9.8352345106808768e-05, -8.1960287589005522e-06, -7.273975523524447e-05, -1.2294043138351184e-05, -1.2294043138351184e-05, -8.1960287589005268e-06, -8.1960287589005115e-06, -1.0245035948625835e-05, -8.1960287589005149e-06, -1.0245035948625837e-05, -2.1514575492113919e-05, -8.1960287589005759e-06, -5.1225179743129192e-06, -2.3563582681839716e-05, -8.1960287589005759e-06, -1.2294043138351133e-05, -3.0735107845877943e-06, -5.1225179743129192e-06, -2.0490071897252092e-06, -1.0245035948625671e-06, -1.0245035948625697e-06, -8.1960287589005132e-06, -1.2294043138351177e-05, -6.1470215691755751e-06, -4.098014379450288e-06, -8.1960287589005285e-06, -8.1960287589005183e-06, -8.196028758900564e-06, -1.6392057517801237e-05, -8.1960287589005895e-06, -4.0980143794502761e-06, -1.6392057517801189e-05, -8.1960287589005861e-06, -4.0980143794502778e-06, -8.1960287589005657e-06, -1.0245035948625728e-06, -8.1960287589005861e-06, -8.1960287589005878e-06, -1.6392057517801687e-05, -2.4588086276701674e-05, -8.1960287589005657e-06, -1.639205751780104e-05, -1.6392057517801023e-05, -8.1960287589005861e-06, -8.1960287589005827e-06, -8.1960287589005759e-06, -8.196028758900581e-06, -9.220532353763507e-06, -3.4833122225327661e-05, -2.0490071897251431e-06, -8.19602875890052e-06, -8.1960287589005895e-06, -9.2205323537634833e-06, -2.6637093466426814e-05, -8.1960287589005268e-06, -8.1960287589005624e-06, -8.1960287589005115e-06, -4.0980143794502778e-06, -4.0980143794502761e-06, -1.0245035948625675e-06, -1.0245035948626038e-06, -1.0245035948625667e-06, -2.0490071897251372e-06, 0.0041564110843575162, -3.0735107845877529e-05, -1.2294043138351123e-05, -6.1470215691755717e-06, -1.0245035948625701e-06, -4.0980143794502778e-06, -1.6392057517801118e-05, -2.4588086276702324e-05, -8.1960287589005183e-06, -4.0980143794502786e-06, -1.6392057517801111e-05, -1.6392057517801115e-05, -4.0980143794502786e-06, -1.2294043138351126e-05, -8.1960287589005776e-06, -1.0245035948625648e-06, -2.0490071897251457e-06, -4.0980143794502778e-06, -4.0980143794502769e-06, -9.220532353763463e-06, -5.1225179743129192e-06, -8.1960287589005369e-06, -1.6392057517801223e-05, -7.376425883010662e-05, -4.09801437945026e-06, -1.0245035948625711e-06, -6.1470215691755044e-05, -8.1960287589005691e-06, -4.9176172553404743e-05, -4.9176172553404736e-05, -5.1225179743129206e-05, -4.9176172553404743e-05, -4.09801437945026e-06, -4.0980143794502592e-06, -8.1960287589005624e-06, -8.1960287589005691e-06, -4.098014379450282e-06, -4.0980143794502829e-06, -8.1960287589005217e-06, -1.024503594862565e-06, -8.1960287589005251e-06, -1.0245035948625703e-06, -1.0245035948625675e-06, -7.1715251640382048e-05, -4.0980143794502829e-06, -4.098014379450282e-06, -6.2494719286617533e-05, -2.0490071897251308e-06, -7.3764258830106538e-05, -7.3764258830106552e-05, -8.1960287589005708e-06, -1.0245035948625709e-06, -8.196028758900564e-06, -7.3764258830106538e-05, -7.3764258830106593e-05, -8.1960287589005691e-06, -8.1960287589005742e-06, -2.049007189725144e-06, -2.0490071897251347e-06, -1.6392057517801172e-05, -8.1960287589005725e-06, -8.1960287589005708e-06, -3.0735107845877748e-06, -1.6392057517801172e-05, -1.4463580162765948e-05, -1.4463580162765911e-05, -1.4463580162765921e-05, -1.4463580162765945e-05, -7.231790081382913e-06, -7.2317900813829147e-06, -1.4463580162765819e-05, -1.4463580162765816e-05, -1.8079475203457384e-06, -1.8079475203457376e-06, -0.00036339745158949421, -0.00036158950406915019, -9.0397376017286588e-06, -1.8079475203457382e-06, -5.4238425610372044e-06, -1.8079475203457321e-05, -0.00014463580162765878, -3.6158950406914751e-06, -0.00016633117187180767, -1.807947520345727e-06, -2.8927160325531848e-05, -2.8927160325531835e-05, -1.4463580162765812e-05, -1.4463580162765826e-05, -0.00014463580162765987, -0.00014463580162765927, -1.4463580162765948e-05, -0.000410404087118481, -3.6158950406914954e-06, -0.0003615895040691472, -2.8927160325531869e-05, -1.4463580162765914e-05, -1.4463580162765951e-05, -1.8079475203457257e-06, -1.8079475203457393e-06, -1.4463580162765887e-05, -1.4463580162765897e-05, -3.6158950406914954e-06, -3.6158950406914954e-06, -1.807947520345727e-06, -1.8079475203457342e-06, -1.4463580162765799e-05, -9.039737601728652e-06, -5.4238425610371714e-06, -7.2317900813829147e-06, -7.2317900813829113e-06, -1.8079475203457382e-06, -2.7119212805186459e-05, -1.4463580162765861e-05, -1.4463580162765867e-05, -1.6271527683111545e-05, 0.0019496906059408446, -2.7119212805186042e-05, -3.6158950406914768e-06, -1.807947520345746e-06, -1.4463580162765823e-05, -1.4463580162765819e-05, -1.8079475203457384e-06, -1.8079475203457357e-06, -1.446358016276587e-05, -1.4463580162765856e-05, 0.00024190337822226006, -1.8079475203457325e-06, -1.4463580162765833e-05, -2.8927160325531543e-05, -1.8079475203457314e-05, -1.446358016276588e-05, -2.8927160325531679e-05, -1.8079475203457388e-06, -1.4463580162765843e-05, -3.0735107845877522e-05, -1.4463580162765877e-05, -1.4463580162765856e-05, 0.0038993812118816918, -5.7854320651063792e-05, -4.5198688008643739e-05, -1.4463580162765819e-05, -2.8927160325531828e-05, -2.8927160325531814e-05, -7.2317900813829739e-06, -1.4463580162765863e-05, -1.8079475203457372e-05, -1.9887422723803235e-05, -7.2317900813829756e-06, -2.892716032553155e-05, -1.4463580162765887e-05, -1.4463580162765882e-05, -1.4463580162765885e-05, -3.6158950406914548e-06, -1.4463580162765938e-05, -1.4463580162765819e-05, -1.8079475203457441e-06, -1.4463580162765812e-05, -3.6158950406914582e-06, -1.4463580162765934e-05, -1.446358016276587e-05, -1.4463580162765884e-05, -1.8079475203457397e-06, -2.892716032553195e-05, -2.8927160325531957e-05, -1.8079475203457367e-06, -1.4463580162765884e-05, -1.446358016276588e-05, -1.8079475203457367e-06, -1.4463580162765955e-05, -1.4463580162765941e-05, -1.4463580162765853e-05, -1.4463580162765945e-05, -4.3390740488297479e-05, -1.4463580162765934e-05, -1.4463580162765826e-05, -1.4463580162765846e-05, -1.8079475203457337e-06, -1.4463580162765839e-05, -1.4463580162765853e-05, -2.8927160325531753e-05, -7.2317900813829113e-06, -3.2543055366222996e-05, -7.2317900813829147e-06, -1.8079475203457435e-06, -3.61589504069147e-06, -2.3503317764494349e-05, -1.4463580162765884e-05, -2.8927160325531587e-05, -0.0001518675917090409, -1.446358016276587e-05, -0.00015909938179042529, -1.4463580162765867e-05, -1.4463580162765853e-05, -2.8927160325531814e-05, -0.00014463580162765859, -2.8927160325531828e-05, -0.00014644374914800378, -1.8079475203457259e-06, -2.8927160325531842e-05, -2.8927160325531787e-05, -7.2317900813829706e-06, -0.00015186759170904241, -0.00014463580162765878, -0.00014463580162765854, -0.00014463580162766046, -1.807947520345738e-06, -7.2317900813829435e-06, -1.8079475203457312e-06, -1.8079475203457418e-06, -1.8079475203457477e-06, -1.446358016276589e-05, -1.4463580162765894e-05, -1.4463580162765877e-05, -1.446358016276588e-05, -1.8079475203457316e-06, -1.8079475203457325e-06, -1.8079475203457316e-06, -1.4463580162765914e-05, -1.8079475203457351e-05, -3.6158950406915001e-05, -2.8927160325531679e-05, -2.8927160325531713e-05, -1.4463580162765911e-05, -4.3390740488297351e-05, -5.4238425610371595e-06, -0.00015909938179042545, -2.8927160325531692e-05, -0.00013017222146489307, -1.8079475203457376e-06, -1.807947520345735e-06, -4.5198688008643767e-05, -2.8927160325531753e-05, -1.4463580162765861e-05, -1.265563264242023e-05, -7.2317900813829833e-06, -3.6158950406914743e-06, -0.00013017222146489291, -3.6158950406914768e-06, -7.2317900813829147e-06, -7.231790081382913e-06, -0.00013017222146489269, -1.4463580162765839e-05, -1.8079475203457342e-06, -1.446358016276586e-05, -1.8079475203457316e-06, -1.4463580162765846e-05, -1.8079475203457375e-05, -5.4238425610371959e-06, -1.4463580162765856e-05, -2.7119212805185859e-05, -1.8079475203457265e-06, -1.4463580162765833e-05, -3.6158950406914954e-06, -3.6158950406914946e-06, -3.6158950406914853e-06, -1.8079475203457367e-06, -1.0847685122074377e-05, -5.4238425610371638e-06, -1.4463580162765897e-05, -1.4463580162765911e-05, -2.8927160325531686e-05, -4.700663552898882e-05, -4.1582792967951951e-05, -1.807947520345727e-06, -2.8927160325531523e-05, -1.4463580162765911e-05, -1.084768512207436e-05, -3.615895040691448e-06, -1.8079475203457325e-06, -1.8079475203457418e-06, -0.00014463580162766046, -0.00014463580162765854, -0.00029288749829600665, -0.00014463580162765854, -0.00014463580162765859, -7.2317900813829756e-06, -3.6158950406914582e-06, -1.4463580162766085e-05, -1.6271527683111545e-05, -7.2317900813829739e-06, -1.9887422723803157e-05, -1.8079475203457384e-06, -1.807947520345727e-06, -2.8927160325531584e-05, -1.4463580162765839e-05, -1.4463580162765853e-05, -1.8079475203457354e-06, -1.8079475203457382e-06, -7.2317900813829468e-06, -7.2317900813829502e-06, -2.892716032553153e-05, -1.4463580162765917e-05, -1.8079475203457295e-06, -0.00029288749829600816, -1.4463580162765907e-05, -1.44635801627659e-05, -1.8079475203457367e-06, -7.2317900813829485e-06, -7.2317900813829468e-06, -3.6158950406914531e-06, -3.6158950406914531e-06, -5.4238425610371934e-06, -1.8079475203457386e-06, -3.6158950406914531e-06, -3.6158950406914531e-06, -1.8079475203457329e-06, -1.8079475203457384e-06, -7.2317900813829435e-06, -2.169537024414876e-05, -1.4463580162765836e-05, -1.8079475203457312e-06, -1.807947520345727e-06, -3.2543055366222989e-05, -1.8079475203457357e-06, -7.2317900813830104e-06, -3.6158950406914802e-06, -2.8927160325531632e-05, -2.8927160325531652e-05, -9.0397376017286537e-06, -7.2317900813829367e-06, -3.6158950406914315e-06, -1.0847685122074383e-05, -0.00015367553922938931, -1.8079475203457342e-06, -7.2317900813829367e-06, -7.2317900813829401e-06, -2.8927160325531665e-05, -2.8927160325531611e-05, -7.2317900813829367e-06, -7.2317900813829265e-06, -7.2317900813829265e-06, -1.8079475203457312e-06, 0.00016235368732704758, -1.8079475203457318e-05, -1.8079475203457388e-06, -1.44635801627659e-05, -1.4463580162765745e-05, -1.4463580162765907e-05, -2.8927160325531611e-05, -1.446358016276585e-05, -2.8927160325531665e-05, -1.4463580162765745e-05, -1.4463580162765743e-05, -0.00055503988874614407, -1.4463580162765904e-05, -0.00036158950406914916, -1.4463580162765839e-05, -3.6158950406914777e-06, -0.00010847685122074497, -2.1695370244148777e-05, -9.0397376017286571e-06, -0.00010847685122074409, -1.8079475203457282e-06, -1.4463580162765885e-05, -1.4463580162765882e-05, -0.00029288749829600816, -1.4463580162765829e-05, -1.4463580162765826e-05, -0.00041401998215917312, -5.4238425610371883e-06, -0.00036158950406914883, -1.446358016276588e-05, -1.4463580162765884e-05, -1.8079475203457316e-06, -1.4463580162765877e-05, -1.446358016276589e-05, -1.8079475203457304e-06, -2.8927160325531652e-05, -2.8927160325531632e-05, -3.6158950406914853e-06, -7.2317900813829468e-06, -7.2317900813829485e-06, -1.4463580162765911e-05, -1.4463580162765914e-05, -0.00029288749829600665, -1.4463580162765911e-05, -1.4463580162765897e-05, -4.8814583049335202e-05, -0.00017356296195319008, -1.4463580162765887e-05, -0.0001283642739445465, -2.1695370244148618e-05, -2.1695370244148618e-05, -1.4463580162765904e-05, -1.4463580162765941e-05, -1.807947520345747e-05, -1.4463580162765955e-05, -1.8079475203457545e-05, -3.7966897927260034e-05, -1.4463580162765829e-05, -9.0397376017287841e-06, -4.1582792967951816e-05, -1.4463580162765833e-05, -2.169537024414877e-05, -5.4238425610371663e-06, -9.0397376017286571e-06, -3.6158950406914929e-06, -1.807947520345738e-06, -1.8079475203457342e-06, -1.4463580162765951e-05, -2.1695370244148611e-05, -1.0847685122074363e-05, 0.00097484530297042241, -1.4463580162765917e-05, -1.4463580162765948e-05, -1.4463580162765743e-05, -2.8927160325531686e-05, -1.4463580162765812e-05, -7.2317900813829401e-06, -2.8927160325531587e-05, -1.4463580162765823e-05, -7.2317900813829367e-06, -1.4463580162765745e-05, -1.8079475203457282e-06, -1.4463580162765819e-05, -1.4463580162765823e-05, -2.8927160325531957e-05, -4.3390740488297568e-05, -1.446358016276585e-05, -2.8927160325531869e-05, -2.8927160325531814e-05, -1.4463580162765816e-05, -1.4463580162765819e-05, -1.4463580162765833e-05, -1.4463580162765819e-05, -1.6271527683111437e-05, -6.1470215691755044e-05, -3.6158950406914277e-06, -1.4463580162765934e-05, -1.4463580162765826e-05, -1.6271527683111457e-05, -4.700663552898882e-05, -1.4463580162765911e-05, -1.446358016276586e-05, -1.4463580162765948e-05, -7.2317900813829367e-06, -7.2317900813829384e-06, -1.8079475203457384e-06, -1.8079475203457477e-06, -1.8079475203457388e-06, -3.6158950406914734e-06, -3.0735107845877529e-05, 0.0073113397722781902, -2.169537024414874e-05, -1.0847685122074377e-05, -1.8079475203457333e-06, -7.2317900813829367e-06, -2.8927160325531692e-05, -4.3390740488297378e-05, -1.4463580162765931e-05, -7.231790081382935e-06, -2.8927160325531726e-05, -2.8927160325531713e-05, -7.231790081382935e-06, -2.1695370244148736e-05, -1.4463580162765829e-05, -1.8079475203457431e-06, -3.6158950406914421e-06, -7.2317900813829367e-06, -7.2317900813829367e-06, -1.6271527683111471e-05, -9.0397376017287638e-06, -1.4463580162765904e-05, -2.8927160325531537e-05, -0.00013017222146489253, -7.2317900813829706e-06, -1.8079475203457316e-06, -0.00010847685122074497, -1.4463580162765846e-05, -8.6781480976594566e-05, -8.6781480976594607e-05, -9.0397376017287506e-05, -8.6781480976594566e-05, -7.2317900813829689e-06, -7.2317900813829672e-06, -1.4463580162765867e-05, -1.4463580162765853e-05, -7.2317900813829333e-06, -7.2317900813829299e-06, -1.4463580162765934e-05, -1.8079475203457426e-06, -1.4463580162765938e-05, -1.8079475203457333e-06, -1.8079475203457367e-06, -0.00012655632642420101, -7.2317900813829299e-06, -7.2317900813829333e-06, -0.00011028479874109, -3.615895040691481e-06, -0.00013017222146489269, -0.00013017222146489291, -1.4463580162765843e-05, -1.8079475203457308e-06, -1.4463580162765853e-05, -0.00013017222146489307, -0.0001301722214648928, -1.4463580162765853e-05, -1.4463580162765839e-05, -3.6158950406914573e-06, -3.6158950406914751e-06, -2.8927160325531638e-05, -1.4463580162765843e-05, -1.446358016276585e-05, -5.4238425610371959e-06, -2.8927160325531638e-05, -5.7854320651064495e-06, -5.7854320651064232e-06, -5.7854320651064283e-06, -5.7854320651064461e-06, -2.892716032553182e-06, -2.892716032553182e-06, -5.7854320651063622e-06, -5.7854320651063605e-06, -7.2317900813830227e-07, -7.2317900813830142e-07, -0.00014535898063579799, -0.00014463580162765811, -3.6158950406914666e-06, -7.2317900813830216e-07, -2.169537024414907e-06, -7.2317900813829655e-06, -5.7854320651063304e-05, -1.4463580162766028e-06, -6.6532468748723193e-05, -7.2317900813829316e-07, -1.1570864130212858e-05, -1.1570864130212851e-05, -5.7854320651063588e-06, -5.7854320651063639e-06, -5.7854320651063195e-05, -5.7854320651063182e-05, -5.785432065106347e-06, -0.00016416163484739226, -1.4463580162766132e-06, -0.00014463580162765824, -1.1570864130212865e-05, -5.7854320651064249e-06, -5.7854320651064495e-06, -7.231790081382939e-07, -7.2317900813830227e-07, -5.7854320651064046e-06, -5.7854320651064097e-06, -1.4463580162766132e-06, -1.4463580162766132e-06, -7.2317900813829422e-07, -7.2317900813829888e-07, -5.7854320651063537e-06, -3.6158950406914755e-06, -2.1695370244148918e-06, -2.892716032553182e-06, -2.8927160325531803e-06, -7.2317900813830216e-07, -1.084768512207438e-05, -5.785432065106391e-06, -5.7854320651063927e-06, 0.0019576455750303619, -5.785432065106347e-06, -1.0847685122074407e-05, -1.4463580162766045e-06, -7.2317900813830523e-07, -5.7854320651063436e-06, -5.7854320651063402e-06, -7.2317900813829909e-07, -7.2317900813830047e-07, -5.7854320651063961e-06, -5.7854320651063893e-06, -1.4463580162765867e-06, -7.2317900813829761e-07, -5.785432065106347e-06, -1.1570864130212699e-05, -7.2317900813829519e-06, -5.7854320651063775e-06, -1.1570864130212701e-05, -7.231790081382993e-07, -5.7854320651063809e-06, -1.229404313835115e-05, -5.7854320651064029e-06, -5.7854320651063842e-06, -1.157086413021285e-05, -2.3141728260425388e-05, -1.8079475203457324e-05, -5.7854320651063605e-06, -1.1570864130212836e-05, -1.1570864130212829e-05, -2.8927160325532108e-06, -5.7854320651063893e-06, -7.2317900813829485e-06, -7.9549690895211617e-06, -2.8927160325532116e-06, -1.1570864130212711e-05, -5.7854320651064046e-06, -5.7854320651064046e-06, -5.7854320651064063e-06, -1.4463580162765944e-06, -5.7854320651064384e-06, -5.7854320651063605e-06, -7.2317900813830629e-07, -5.7854320651063588e-06, -1.4463580162765884e-06, -5.7854320651064351e-06, -5.7854320651063741e-06, -5.7854320651063792e-06, -7.231790081383029e-07, -1.1570864130212836e-05, -1.1570864130212843e-05, -7.2317900813830099e-07, -5.7854320651064012e-06, -5.7854320651064012e-06, -7.2317900813830152e-07, -5.7854320651064495e-06, -5.7854320651064418e-06, -5.7854320651063809e-06, -5.7854320651064444e-06, -1.7356296195319161e-05, -5.785432065106413e-06, -5.7854320651063436e-06, -5.7854320651063825e-06, -7.2317900813829867e-07, -5.7854320651063487e-06, -5.7854320651063842e-06, -1.1570864130212789e-05, -2.8927160325531803e-06, -1.3017222146489256e-05, -2.892716032553182e-06, -7.2317900813830523e-07, -1.4463580162765986e-06, -9.4013271057977979e-06, -5.7854320651063792e-06, -1.1570864130212713e-05, -6.0747036683617115e-05, -5.7854320651063961e-06, -6.3639752716169293e-05, -5.7854320651063876e-06, -5.7854320651063809e-06, -1.1570864130212829e-05, -5.7854320651063487e-05, -1.1570864130212836e-05, -5.8577499659202107e-05, -7.2317900813829411e-07, -1.1570864130212843e-05, -1.1570864130212823e-05, -2.8927160325532192e-06, -6.0747036683617101e-05, -5.7854320651063304e-05, -5.7854320651063297e-05, -5.7854320651063656e-05, -7.2317900813829888e-07, -2.8927160325531718e-06, -7.2317900813829676e-07, -7.2317900813830396e-07, -7.2317900813830639e-07, -5.7854320651064063e-06, -5.785432065106408e-06, -5.7854320651063758e-06, -5.7854320651063775e-06, -7.2317900813829676e-07, -7.2317900813829761e-07, -7.2317900813829718e-07, -5.7854320651063995e-06, -7.2317900813829739e-06, -1.4463580162765914e-05, -1.1570864130212755e-05, -1.1570864130212775e-05, -5.7854320651063978e-06, -1.7356296195319093e-05, -2.1695370244148456e-06, -6.36397527161697e-05, -1.1570864130212768e-05, -5.2068888585956941e-05, -7.2317900813829845e-07, -7.231790081382993e-07, -1.8079475203457318e-05, -1.1570864130212789e-05, -5.785432065106391e-06, -5.0622530569680915e-06, -2.8927160325531743e-06, -1.4463580162766041e-06, -5.2068888585956941e-05, -1.4463580162766045e-06, -2.892716032553182e-06, -2.892716032553182e-06, -5.2068888585956941e-05, -5.7854320651063724e-06, -7.231790081382993e-07, -5.7854320651063622e-06, -7.2317900813829718e-07, -5.7854320651063571e-06, -7.2317900813829621e-06, -2.1695370244148909e-06, -5.7854320651063605e-06, -1.0847685122074483e-05, -7.2317900813829401e-07, -5.7854320651063707e-06, -1.4463580162766132e-06, -1.4463580162766128e-06, -1.4463580162766096e-06, -7.2317900813830057e-07, -4.3390740488297319e-06, -2.1695370244148507e-06, -5.7854320651064164e-06, -5.7854320651064232e-06, -1.1570864130212762e-05, -1.8802654211595582e-05, -1.6633117187180588e-05, -7.2317900813829401e-07, -1.1570864130212694e-05, -5.7854320651064198e-06, -4.3390740488297251e-06, -1.4463580162765876e-06, -7.2317900813829761e-07, -7.2317900813830396e-07, -5.7854320651063656e-05, -5.7854320651063297e-05, -0.0001171549993184035, -5.7854320651063304e-05, -5.7854320651063487e-05, -2.8927160325532116e-06, -1.4463580162765927e-06, -5.7854320651063521e-06, -6.508611073244649e-06, -2.8927160325532108e-06, -7.9549690895211989e-06, -7.2317900813830205e-07, -7.2317900813829316e-07, -1.1570864130212701e-05, -5.7854320651063707e-06, -5.7854320651063825e-06, -7.231790081382993e-07, -7.2317900813830216e-07, -2.892716032553204e-06, -2.8927160325532057e-06, -1.1570864130212694e-05, -5.7854320651064232e-06, -7.2317900813829612e-07, -0.00011715499931840472, -5.7854320651064198e-06, -5.7854320651064181e-06, -7.2317900813830099e-07, -2.8927160325532057e-06, -2.892716032553204e-06, -1.4463580162765884e-06, -1.4463580162765884e-06, -2.1695370244148884e-06, -7.2317900813830237e-07, -1.4463580162765884e-06, -1.4463580162765884e-06, -7.2317900813829803e-07, -7.2317900813829888e-07, -2.8927160325531684e-06, -8.678148097659523e-06, -5.7854320651063707e-06, -7.2317900813829676e-07, -7.2317900813829316e-07, -1.3017222146489244e-05, -7.2317900813830036e-07, -2.892716032553176e-06, -1.4463580162765872e-06, -1.1570864130212723e-05, -1.157086413021273e-05, -3.6158950406914819e-06, -2.8927160325531985e-06, -1.4463580162765867e-06, -4.3390740488297649e-06, -6.1470215691755085e-05, -7.2317900813829909e-07, -2.8927160325531976e-06, -2.8927160325531993e-06, -1.1570864130212736e-05, -1.1570864130212716e-05, -2.8927160325531853e-06, -2.8927160325531896e-06, -2.8927160325531887e-06, -7.2317900813829676e-07, -3.3266234374361576e-05, -7.2317900813829104e-06, -7.231790081382993e-07, -5.7854320651064181e-06, -5.785432065106347e-06, -5.7854320651064198e-06, -1.1570864130212716e-05, -5.785432065106347e-06, -1.1570864130212736e-05, -5.785432065106347e-06, -5.785432065106347e-06, -0.00022201595549845664, -5.7854320651064181e-06, -0.0001446358016276583, -5.7854320651063487e-06, -1.4463580162766052e-06, -4.3390740488297554e-05, -8.6781480976595162e-06, -3.6158950406914751e-06, -4.3390740488297554e-05, -7.2317900813829528e-07, -5.7854320651064063e-06, -5.7854320651064046e-06, -0.00011715499931840472, -5.785432065106369e-06, -5.7854320651063673e-06, -0.00016560799286366936, -2.1695370244148909e-06, -0.0001446358016276584, -5.7854320651064012e-06, -5.7854320651064012e-06, -7.2317900813829824e-07, -5.7854320651064029e-06, -5.785432065106408e-06, -7.2317900813829634e-07, -1.157086413021273e-05, -1.1570864130212723e-05, -1.4463580162766096e-06, -2.892716032553204e-06, -2.8927160325532057e-06, -5.7854320651064198e-06, -5.7854320651064215e-06, -0.0001171549993184035, -5.7854320651064232e-06, -5.7854320651064164e-06, -1.9525833219734003e-05, -6.9425184781276319e-05, -5.7854320651064046e-06, -5.1345709577818768e-05, -8.6781480976595941e-06, -8.6781480976595941e-06, -5.7854320651063944e-06, -5.7854320651064418e-06, -7.2317900813829706e-06, -5.7854320651064495e-06, -7.2317900813829638e-06, -1.5186759170904252e-05, -5.7854320651063453e-06, -3.6158950406914819e-06, -1.6633117187180791e-05, -5.7854320651063707e-06, -8.6781480976595128e-06, -2.1695370244148507e-06, -3.6158950406914734e-06, -1.4463580162766105e-06, -7.2317900813829888e-07, -7.231790081382993e-07, -5.7854320651064495e-06, 0.00097339894495414487, -4.3390740488297268e-06, -2.8927160325531853e-06, -5.7854320651064266e-06, -5.785432065106347e-06, -5.785432065106347e-06, -1.1570864130212694e-05, -5.7854320651063588e-06, -2.8927160325531993e-06, -1.1570864130212699e-05, -5.7854320651063605e-06, -2.8927160325531976e-06, -5.785432065106347e-06, -7.2317900813829507e-07, -5.7854320651063402e-06, -5.7854320651063436e-06, -1.1570864130212843e-05, -1.7356296195319093e-05, -5.7854320651063588e-06, -1.1570864130212865e-05, -1.1570864130212845e-05, -5.7854320651063605e-06, -5.7854320651063622e-06, -5.7854320651063707e-06, -5.7854320651063656e-06, -6.5086110732446211e-06, -2.4588086276702185e-05, -1.4463580162765863e-06, -5.785432065106413e-06, -5.7854320651063605e-06, -6.5086110732446414e-06, -1.8802654211595494e-05, -5.7854320651064232e-06, -5.7854320651063622e-06, -5.7854320651064495e-06, -2.8927160325531985e-06, -2.8927160325531993e-06, -7.2317900813830184e-07, -7.2317900813830639e-07, -7.231790081382993e-07, -1.4463580162766011e-06, -1.2294043138351123e-05, -2.169537024414874e-05, 0.002937553131057757, -4.3390740488297319e-06, -7.2317900813829888e-07, -2.8927160325531968e-06, -1.1570864130212768e-05, -1.7356296195319107e-05, -5.7854320651064113e-06, -2.8927160325531968e-06, -1.1570864130212782e-05, -1.1570864130212775e-05, -2.8927160325531968e-06, -8.6781480976595196e-06, -5.785432065106369e-06, -7.2317900813830523e-07, -1.4463580162765889e-06, -2.8927160325531968e-06, -2.8927160325531853e-06, -6.5086110732446236e-06, -3.6158950406914819e-06, -5.7854320651064164e-06, -1.1570864130212699e-05, -5.2068888585957009e-05, -2.8927160325532192e-06, -7.2317900813829718e-07, -4.3390740488297554e-05, -5.7854320651063825e-06, -3.4712592390637557e-05, -3.47125923906382e-05, -3.6158950406914635e-05, -3.4712592390637557e-05, -2.8927160325532192e-06, -2.8927160325532184e-06, -5.785432065106391e-06, -5.7854320651063859e-06, -2.8927160325531921e-06, -2.8927160325531921e-06, -5.7854320651064351e-06, -7.2317900813830481e-07, -5.7854320651064384e-06, -7.2317900813829845e-07, -7.2317900813830163e-07, -5.0622530569680602e-05, -2.8927160325531921e-06, -2.8927160325531921e-06, -4.4113919496436222e-05, -1.4463580162766075e-06, -5.2068888585956941e-05, -5.2068888585956941e-05, -5.7854320651063809e-06, -7.2317900813829739e-07, -5.7854320651063859e-06, -5.2068888585956941e-05, -5.2068888585956928e-05, -5.7854320651063825e-06, -5.7854320651063775e-06, -1.4463580162765855e-06, -1.4463580162765969e-06, -1.1570864130212707e-05, -5.7854320651063792e-06, -5.7854320651063809e-06, -2.1695370244148858e-06, -1.1570864130212707e-05, -2.8927160325532391e-06, -2.8927160325532264e-06, -2.8927160325532298e-06, -2.8927160325532383e-06, -1.4463580162765982e-06, -1.4463580162765982e-06, -2.8927160325531955e-06, -2.8927160325531955e-06, -3.6158950406915304e-07, -3.6158950406915261e-07, -7.2679490317899495e-05, -7.2317900813829541e-05, -1.8079475203457393e-06, -3.6158950406915299e-07, -1.0847685122074459e-06, -3.6158950406914937e-06, -2.8927160325531733e-05, -7.2317900813830523e-07, -3.3266234374361522e-05, -3.6158950406914901e-07, -5.7854320651064596e-06, -5.7854320651064562e-06, -2.8927160325531938e-06, -2.8927160325531972e-06, -2.8927160325531679e-05, -2.8927160325531672e-05, -2.8927160325531887e-06, -8.2080817423696101e-05, -7.2317900813831021e-07, -7.2317900813829595e-05, -5.785432065106463e-06, -2.8927160325532281e-06, -2.89271603255324e-06, -3.615895040691488e-07, -3.6158950406915309e-07, -2.8927160325532175e-06, -2.8927160325532192e-06, -7.2317900813831021e-07, -7.2317900813831021e-07, -3.6158950406914849e-07, -3.6158950406915134e-07, -2.892716032553187e-06, -1.8079475203457378e-06, -1.0847685122074383e-06, -1.4463580162765986e-06, -1.4463580162765978e-06, -3.6158950406915299e-07, -5.4238425610371815e-06, -2.8927160325532103e-06, -2.8927160325532112e-06, -3.2543055366223156e-06, -2.8927160325531938e-06, -5.4238425610371951e-06, -7.2317900813830608e-07, -3.6158950406915457e-07, -2.8927160325531938e-06, -2.8927160325531955e-06, -3.615895040691532e-07, -3.6158950406915209e-07, -2.8927160325532129e-06, -2.8927160325532095e-06, -7.2317900813829697e-07, -3.6158950406914499e-07, -2.8927160325532023e-06, -5.7854320651063792e-06, -3.6158950406914853e-06, -2.8927160325532175e-06, -5.785432065106408e-06, -3.615895040691533e-07, -2.8927160325532052e-06, -6.1470215691755065e-06, -2.8927160325532163e-06, -2.8927160325531616e-06, -5.7854320651064562e-06, -1.1570864130212755e-05, -9.0397376017287198e-06, -2.8927160325531951e-06, -5.7854320651064495e-06, -5.7854320651064461e-06, -1.44635801627662e-06, -2.8927160325532091e-06, -3.6158950406914836e-06, -3.9774845447605817e-06, -1.4463580162766204e-06, -5.7854320651063758e-06, -2.8927160325532167e-06, -2.8927160325532171e-06, -2.892716032553218e-06, -7.2317900813828956e-07, -2.892716032553234e-06, -2.8927160325531951e-06, -3.61589504069155e-07, -2.8927160325531942e-06, -7.2317900813830142e-07, -2.8927160325532324e-06, -2.8927160325532158e-06, -2.8927160325532192e-06, -3.615895040691533e-07, -5.7854320651064495e-06, -5.7854320651064528e-06, -3.615895040691523e-07, -2.8927160325532158e-06, -2.892716032553215e-06, -3.6158950406915261e-07, -2.89271603255324e-06, -2.8927160325532366e-06, -2.8927160325531608e-06, -2.8927160325532366e-06, -8.6781480976595433e-06, -2.8927160325532366e-06, -2.8927160325532006e-06, -2.8927160325532061e-06, -3.6158950406915113e-07, -2.892716032553204e-06, -2.8927160325532069e-06, -5.7854320651064232e-06, -1.4463580162765978e-06, -6.5086110732446278e-06, -1.4463580162765986e-06, -3.6158950406915457e-07, -7.2317900813829168e-07, -4.7006635528989193e-06, -2.8927160325532192e-06, -5.7854320651063775e-06, -3.0373518341808551e-05, -2.8927160325532129e-06, -3.181987635808466e-05, -2.8927160325531633e-06, -2.8927160325531608e-06, -5.7854320651064461e-06, -2.8927160325531821e-05, -5.7854320651064495e-06, -2.9288749829601142e-05, -3.6158950406914891e-07, -5.7854320651064528e-06, -5.7854320651064418e-06, -1.4463580162766174e-06, -3.0373518341808551e-05, -2.8927160325531733e-05, -2.892716032553173e-05, -2.8927160325531906e-05, -3.6158950406915309e-07, -1.4463580162765935e-06, -3.6158950406914542e-07, -3.6158950406915394e-07, -3.61589504069155e-07, -2.8927160325532175e-06, -2.8927160325532192e-06, -2.8927160325532175e-06, -2.8927160325532175e-06, -3.6158950406914531e-07, -3.6158950406914499e-07, -3.6158950406915039e-07, -2.8927160325532298e-06, -3.6158950406915026e-06, -7.2317900813829773e-06, -5.7854320651063165e-06, -5.7854320651064173e-06, -2.8927160325532281e-06, -8.6781480976594823e-06, -1.0847685122074152e-06, -3.1819876358084863e-05, -5.7854320651064139e-06, -2.6034444292978471e-05, -3.6158950406915288e-07, -3.6158950406914584e-07, -9.0397376017287198e-06, -5.7854320651064232e-06, -2.8927160325532103e-06, -2.5311265284840466e-06, -1.4463580162765948e-06, -7.2317900813830586e-07, -2.6034444292978478e-05, -7.2317900813830608e-07, -1.4463580162765982e-06, -1.4463580162765982e-06, -2.6034444292978471e-05, -2.8927160325532006e-06, -3.6158950406915145e-07, -2.8927160325532108e-06, -3.615895040691505e-07, -2.8927160325532074e-06, -3.6158950406914963e-06, -1.084768512207438e-06, -2.8927160325532091e-06, -5.4238425610372298e-06, -3.6158950406914859e-07, -2.8927160325532006e-06, -7.2317900813831021e-07, -7.2317900813830999e-07, -7.2317900813830872e-07, -3.6158950406915219e-07, 0.0014709461025532837, -1.0847685122074177e-06, -2.8927160325532235e-06, -2.8927160325532268e-06, -5.7854320651064113e-06, -9.4013271057978284e-06, -8.3165585935902839e-06, -3.6158950406914859e-07, -5.7854320651063775e-06, -2.8927160325532247e-06, -2.1695370244148473e-06, -7.2317900813829761e-07, -3.6158950406914499e-07, -3.6158950406915394e-07, -2.8927160325531906e-05, -2.892716032553173e-05, -5.8577499659201924e-05, -2.8927160325531726e-05, -2.8927160325531821e-05, -1.4463580162766204e-06, -7.2317900813829125e-07, -2.892716032553187e-06, -3.2543055366223254e-06, -1.44635801627662e-06, -3.9774845447606028e-06, -3.6158950406915293e-07, -3.6158950406914912e-07, -5.7854320651063809e-06, -2.8927160325532006e-06, -2.8927160325532057e-06, -3.6158950406914594e-07, -3.6158950406915299e-07, -1.4463580162766092e-06, -1.44635801627661e-06, -5.7854320651063775e-06, -2.8927160325532264e-06, -3.6158950406914986e-07, -5.8577499659202534e-05, -2.8927160325532252e-06, -2.8927160325532243e-06, -3.615895040691524e-07, -1.44635801627661e-06, -1.4463580162766096e-06, -7.2317900813829803e-07, -7.2317900813829803e-07, -1.0847685122074366e-06, -3.6158950406915309e-07, -7.2317900813829803e-07, -7.2317900813829803e-07, -3.6158950406915092e-07, -3.6158950406915309e-07, -1.4463580162765986e-06, -4.3390740488297319e-06, -2.8927160325531997e-06, -3.6158950406914563e-07, -3.6158950406914901e-07, -6.5086110732446236e-06, -3.6158950406915203e-07, -1.4463580162765931e-06, -7.2317900813829729e-07, -5.785432065106391e-06, -5.7854320651063944e-06, -1.8079475203457469e-06, -1.4463580162766066e-06, -7.2317900813829718e-07, -2.1695370244148668e-06, -3.0735107845877536e-05, -3.6158950406915134e-07, -1.4463580162766062e-06, -1.4463580162766071e-06, -5.7854320651063978e-06, -5.7854320651063876e-06, -1.4463580162766071e-06, -1.446358016276602e-06, -1.446358016276602e-06, -3.6158950406914552e-07, -1.6633117187180761e-05, -3.6158950406914637e-06, -3.615895040691533e-07, -2.8927160325532243e-06, -2.8927160325531887e-06, -2.8927160325532252e-06, -5.7854320651063876e-06, -2.8927160325531883e-06, -5.7854320651063978e-06, -2.8927160325531883e-06, -2.8927160325531883e-06, -0.00011100797774922802, -2.8927160325532247e-06, -7.2317900813829636e-05, -2.892716032553204e-06, -7.2317900813830639e-07, -2.1695370244148804e-05, -4.3390740488297429e-06, -1.8079475203457422e-06, -2.1695370244148797e-05, -3.6158950406914944e-07, -2.892716032553218e-06, -2.8927160325532171e-06, -5.8577499659202534e-05, -2.8927160325531993e-06, -2.8927160325531985e-06, -8.2803996431834653e-05, -1.0847685122074416e-06, -7.2317900813829663e-05, -2.892716032553215e-06, -2.8927160325532158e-06, -3.6158950406915097e-07, -2.8927160325532163e-06, -2.8927160325532188e-06, -3.6158950406914616e-07, -5.7854320651063944e-06, -5.785432065106391e-06, -7.2317900813830872e-07, -1.4463580162766096e-06, -1.44635801627661e-06, -2.8927160325532247e-06, -2.8927160325532264e-06, -5.8577499659201924e-05, -2.8927160325532268e-06, -2.8927160325532235e-06, -9.762916609867015e-06, -3.4712592390637916e-05, -2.8927160325532167e-06, -2.5672854788909635e-05, -4.3390740488297666e-06, -4.3390740488297666e-06, -2.8927160325532264e-06, -2.8927160325532366e-06, -3.6158950406915018e-06, -2.89271603255324e-06, -3.6158950406914921e-06, -7.5933795854521292e-06, -2.8927160325532023e-06, -1.8079475203457486e-06, -8.3165585935903787e-06, -2.8927160325532002e-06, -4.3390740488297412e-06, -1.0847685122074177e-06, -1.8079475203457418e-06, -7.2317900813830915e-07, -3.6158950406915309e-07, -3.6158950406915145e-07, -2.89271603255324e-06, -4.3390740488297496e-06, -2.1695370244148481e-06, -1.4463580162765829e-06, -2.8927160325532281e-06, -2.8927160325531887e-06, -2.8927160325531883e-06, -5.7854320651063766e-06, -2.8927160325531938e-06, -1.4463580162766071e-06, -5.7854320651063673e-06, -2.892716032553182e-06, -1.4463580162766062e-06, -2.8927160325531887e-06, -3.6158950406914944e-07, -2.8927160325531955e-06, -2.8927160325531938e-06, -5.7854320651064528e-06, -8.6781480976595162e-06, -2.8927160325532091e-06, -5.785432065106463e-06, -5.7854320651064528e-06, -2.8927160325531955e-06, -2.8927160325531955e-06, -2.8927160325532002e-06, -2.8927160325531976e-06, -3.2543055366223105e-06, -1.2294043138351113e-05, -7.2317900813829697e-07, -2.8927160325532366e-06, -2.8927160325531803e-06, -3.2543055366223088e-06, -9.4013271057977878e-06, -2.8927160325532264e-06, -2.8927160325532108e-06, -2.8927160325532391e-06, -1.4463580162766066e-06, -1.4463580162766071e-06, -3.6158950406915288e-07, -3.61589504069155e-07, -3.615895040691533e-07, -7.2317900813830438e-07, -6.1470215691755717e-06, -1.0847685122074377e-05, -4.3390740488297319e-06, 0.0014709461025532837, -3.6158950406915124e-07, -1.4463580162766058e-06, -5.7854320651064139e-06, -8.678148097659523e-06, -2.8927160325532349e-06, -1.4463580162766058e-06, -5.7854320651064207e-06, -5.7854320651064173e-06, -1.4463580162766058e-06, -4.3390740488297463e-06, -2.8927160325531993e-06, -3.6158950406915447e-07, -7.2317900813829718e-07, -1.4463580162766058e-06, -1.4463580162766071e-06, -3.2543055366223118e-06, -1.8079475203457465e-06, -2.892716032553223e-06, -5.7854320651063792e-06, -2.6034444292978745e-05, -1.4463580162766174e-06, -3.615895040691452e-07, -2.1695370244148797e-05, -2.8927160325532061e-06, -1.7356296195318663e-05, -1.7356296195318985e-05, -1.8079475203457436e-05, -1.7356296195318663e-05, -1.4463580162766174e-06, -1.4463580162766166e-06, -2.8927160325532108e-06, -2.8927160325532074e-06, -1.4463580162766037e-06, -1.4463580162766037e-06, -2.8927160325532324e-06, -3.6158950406915436e-07, -2.892716032553234e-06, -3.6158950406915113e-07, -3.6158950406915272e-07, -2.5311265284840145e-05, -1.4463580162766037e-06, -1.4463580162766037e-06, -2.205695974821807e-05, -7.2317900813830756e-07, -2.6034444292978471e-05, -2.6034444292978478e-05, -2.8927160325532052e-06, -3.6158950406915055e-07, -2.8927160325532078e-06, -2.6034444292978471e-05, -2.6034444292978471e-05, -2.8927160325532057e-06, -2.892716032553204e-06, -7.2317900813829994e-07, -7.2317900813830576e-07, -5.7854320651063842e-06, -2.892716032553204e-06, -2.8927160325532057e-06, -1.0847685122074391e-06, -5.7854320651063842e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -1.2113248386316487e-05, -1.2052983468971521e-05, -3.013245867242891e-07, -6.0264917344857666e-08, -1.8079475203457451e-07, -6.0264917344858201e-07, -4.8211933875886679e-06, -1.2052983468971536e-07, -5.5443723957269285e-06, -6.0264917344857679e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886679e-06, -4.8211933875886679e-06, -4.8211933875886122e-07, -1.3680136237282641e-05, -1.2052983468971531e-07, -1.2052983468971682e-05, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886101e-07, -3.013245867242891e-07, -1.8079475203457461e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857666e-08, -9.0397376017287778e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610371521e-07, -4.8211933875886144e-07, -9.0397376017287481e-07, -1.2052983468971533e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344858063e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344857666e-08, -4.8211933875886144e-07, -1.0245035948625762e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6423867751772266e-07, -1.9284773550354445e-06, -1.5066229336214439e-06, -4.8211933875886144e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -6.0264917344858084e-07, -6.6291409079343197e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -1.2052983468971533e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.4463580162765961e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.0847685122074501e-06, -2.4105966937943072e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -7.8344392548314556e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -5.0622530569680788e-06, -4.8211933875886144e-07, -5.3033127263474626e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -4.8211933875886383e-06, -9.6423867751772266e-07, -4.8814583049335126e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -5.0622530569680788e-06, -4.8211933875886679e-06, -4.8211933875886349e-06, -4.8211933875886468e-06, -6.0264917344857666e-08, -2.4105966937943061e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -6.0264917344858286e-07, -1.2052983468971627e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -4.8211933875886133e-07, -1.4463580162765973e-06, -1.8079475203457729e-07, -5.3033127263475049e-06, -9.6423867751772266e-07, -4.3390740488297463e-06, -6.0264917344857679e-08, -6.0264917344857679e-08, 0.00024401265032932988, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.218544214140047e-07, -2.4105966937943061e-07, -1.2052983468971533e-07, -4.3390740488297463e-06, -1.2052983468971533e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297446e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344858032e-07, -1.8079475203457461e-07, -4.8211933875886144e-07, -9.0397376017287196e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -3.6158950406915124e-07, -1.8079475203457689e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -1.5668878509662886e-06, -1.3860930989317323e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -3.6158950406915198e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886468e-06, -4.8211933875886349e-06, -9.7629166098670557e-06, -4.8211933875886349e-06, -4.8211933875886383e-06, -2.4105966937943061e-07, -1.2052983468971536e-07, -4.8211933875886112e-07, -5.4238425610371415e-07, -2.4105966937943061e-07, -6.6291409079343568e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.7629166098670337e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.8079475203457461e-07, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943061e-07, -7.2317900813829909e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.0847685122074349e-06, -6.0264917344857679e-08, -2.4105966937943051e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.0132458672429042e-07, -2.4105966937943072e-07, -1.2052983468971533e-07, -3.6158950406914923e-07, -5.1225179743129167e-06, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, -2.7721861978634537e-06, -6.026491734485782e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.8501329624871531e-05, -4.8211933875886133e-07, -1.20529834689716e-05, -4.8211933875886144e-07, -1.2052983468971533e-07, -3.615895040691465e-06, -7.2317900813829888e-07, -3.0132458672429005e-07, -3.615895040691506e-06, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670337e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.3800666071972413e-05, -1.8079475203457451e-07, -1.2052983468971607e-05, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670557e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.6271527683111532e-06, -5.7854320651063893e-06, -4.8211933875886144e-07, -4.2788091314848618e-06, -7.2317900813829824e-07, -7.2317900813829824e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344858328e-07, -4.8211933875886122e-07, -6.026491734485818e-07, -1.2655632642420189e-06, -4.8211933875886144e-07, -3.0132458672429122e-07, -1.386093098931726e-06, -4.8211933875886144e-07, -7.2317900813829888e-07, -1.8079475203457697e-07, -3.0132458672428995e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -7.231790081382885e-07, -3.6158950406914436e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.4463580162765969e-06, -4.8211933875886144e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610372654e-07, -2.0490071897251626e-06, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -5.4238425610371786e-07, -1.5668878509663106e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.0245035948625701e-06, -1.8079475203457333e-06, -7.2317900813829888e-07, -3.6158950406915124e-07, 0.00024545900834560644, -2.4105966937943072e-07, -9.6423867751772266e-07, -1.4463580162765967e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -7.2317900813829867e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -5.4238425610372569e-07, -3.0132458672429079e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.3390740488297395e-06, -2.4105966937943061e-07, -6.0264917344857679e-08, -3.615895040691465e-06, -4.8211933875886144e-07, -2.892716032553237e-06, -2.8927160325531938e-06, -3.0132458672428878e-06, -2.892716032553237e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.2185442141400459e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -3.6761599580363338e-06, -1.2052983468971533e-07, -4.3390740488297446e-06, -4.3390740488297463e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.3390740488297463e-06, -4.3390740488297369e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.8079475203457461e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8452993545265973e-05, -4.8211933875886103e-05, -1.205298346897156e-06, -2.4105966937943066e-07, -7.2317900813829856e-07, -2.4105966937943272e-06, -1.9284773550354672e-05, -4.8211933875886133e-07, -2.2177489582907697e-05, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354675e-05, -1.9284773550354672e-05, -1.9284773550354449e-06, -5.4720544949130585e-05, -4.8211933875886112e-07, -4.8211933875886747e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.928477355035444e-06, -1.205298346897156e-06, -7.2317900813829888e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -3.6158950406915111e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.1695370244148583e-06, -1.9284773550354453e-06, -3.6158950406915009e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886112e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -3.8569547100708906e-06, -2.4105966937943221e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -2.4105966937943061e-07, -1.9284773550354457e-06, -4.0980143794503015e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -6.0264917344857765e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -1.9284773550354453e-06, -2.410596693794323e-06, -2.6516563631737304e-06, -9.6423867751772224e-07, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -2.4105966937943056e-07, -1.9284773550354457e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -5.7854320651063868e-06, -1.9284773550354445e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -4.3390740488297251e-06, -9.6423867751772287e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -3.1337757019326275e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -2.0249012227872329e-05, -1.9284773550354453e-06, -2.121325090538986e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -1.9284773550354567e-05, -3.8569547100708898e-06, -1.9525833219734057e-05, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -2.0249012227872329e-05, -1.9284773550354672e-05, -1.928477355035455e-05, -1.9284773550354601e-05, -2.4105966937943061e-07, -9.6423867751772202e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -2.4105966937943056e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.9284773550354449e-06, -2.4105966937943306e-06, -4.8211933875886493e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -5.7854320651063927e-06, -7.2317900813830957e-07, -2.1213250905390003e-05, -3.8569547100708906e-06, -1.7356296195318927e-05, -2.4105966937943066e-07, -2.4105966937943072e-07, -6.0264917344857985e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -1.6874176856560175e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -1.7356296195318921e-05, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.7356296195318921e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -2.4105966937943213e-06, -7.2317900813829898e-07, -1.9284773550354453e-06, -3.615895040691487e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.4463580162766058e-06, -7.2317900813830798e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -6.2675514038652373e-06, -5.5443723957269268e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.446358016276609e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.9284773550354601e-05, -1.928477355035455e-05, -3.9051666439468236e-05, -1.928477355035455e-05, -1.9284773550354567e-05, -9.6423867751772224e-07, -4.8211933875886133e-07, -1.9284773550354445e-06, -2.1695370244148541e-06, -9.6423867751772224e-07, -2.6516563631737444e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.8569547100708898e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.9051666439468148e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -7.2317900813829528e-07, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -2.4105966937943061e-07, -9.6423867751772224e-07, -2.8927160325531976e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -4.3390740488297352e-06, -2.4105966937943066e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.2052983468971564e-06, -9.6423867751772287e-07, -4.8211933875886122e-07, -1.4463580162765978e-06, -2.0490071897251667e-05, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943072e-07, -1.1088744791453811e-05, -2.4105966937943119e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.4005318499486178e-05, -1.9284773550354453e-06, -4.8211933875886408e-05, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.4463580162765856e-05, -2.8927160325531968e-06, -1.2052983468971598e-06, -1.4463580162766017e-05, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.9051666439468148e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -5.5202664287889572e-05, -7.2317900813829856e-07, -4.8211933875886456e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.9051666439468236e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -6.5086110732446126e-06, -2.3141728260425574e-05, -1.9284773550354453e-06, -1.711523652593944e-05, -2.8927160325531942e-06, -2.8927160325531942e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943323e-06, -1.9284773550354449e-06, -2.410596693794328e-06, -5.0622530569680805e-06, -1.9284773550354453e-06, -1.2052983468971647e-06, -5.5443723957269039e-06, -1.9284773550354457e-06, -2.8927160325531968e-06, -7.2317900813830819e-07, -1.2052983468971596e-06, -4.8211933875886112e-07, -2.4105966937943061e-07, -2.4105966937943072e-07, -1.9284773550354449e-06, -2.8927160325531955e-06, -1.4463580162766083e-06, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -3.8569547100708889e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -1.9284773550354449e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -5.7854320651063902e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.1695370244148685e-06, -8.1960287589006538e-06, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354457e-06, -2.1695370244148685e-06, -6.2675514038652432e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -2.4105966937943056e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.0980143794502778e-06, -7.2317900813829367e-06, -2.8927160325531968e-06, -1.4463580162766058e-06, -2.4105966937943072e-07, 0.00098111285437428694, -3.8569547100708906e-06, -5.7854320651063893e-06, -1.9284773550354445e-06, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -2.8927160325531764e-06, -1.9284773550354457e-06, -2.4105966937943061e-07, -4.8211933875886122e-07, 0.00098111285437428694, -9.6423867751772266e-07, -2.1695370244148651e-06, -1.2052983468971627e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -1.7356296195318948e-05, -9.6423867751772245e-07, -2.4105966937943072e-07, -1.4463580162765853e-05, -1.9284773550354457e-06, -1.1570864130212955e-05, -1.1570864130212765e-05, -1.2052983468971541e-05, -1.1570864130212955e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.687417685656019e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4704639832145321e-05, -4.8211933875886122e-07, -1.7356296195318921e-05, -1.7356296195318921e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.7356296195318927e-05, -1.7356296195318907e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.2317900813829888e-07, -3.8569547100708915e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -0.00019381197418106341, -0.00019284773550354387, -4.821193387588629e-06, -9.6423867751772245e-07, -2.8927160325531887e-06, -9.6423867751773172e-06, -7.7139094201418768e-05, -1.9284773550354449e-06, -8.8709958331631018e-05, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283556e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201418768e-05, -7.7139094201418768e-05, -7.7139094201417779e-06, -0.00021888217979652269, -1.9284773550354445e-06, -0.00019284773550354645, -1.5427818840283559e-05, -7.7139094201417796e-06, -7.7139094201417779e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -7.7139094201417796e-06, -7.7139094201417813e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -7.7139094201417745e-06, -4.821193387588629e-06, -2.8927160325531913e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -1.4463580162766021e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -8.6781480976594569e-06, -7.7139094201417813e-06, -1.4463580162765934e-05, -1.9284773550354449e-06, -9.6423867751772224e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -1.5427818840283559e-05, -9.6423867751772986e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -9.6423867751772245e-07, -7.7139094201417813e-06, -1.6392057517801209e-05, -7.7139094201417796e-06, -7.7139094201417813e-06, -1.5427818840283559e-05, -3.0855637680567105e-05, -2.4105966937943045e-05, -7.7139094201417813e-06, -1.5427818840283559e-05, -1.5427818840283556e-05, -3.8569547100708889e-06, -7.7139094201417813e-06, -9.642386775177302e-06, -1.0606625452694915e-05, -3.8569547100708889e-06, -1.5427818840283552e-05, -7.7139094201417813e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -9.6423867751772224e-07, -7.7139094201417813e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -1.5427818840283556e-05, -1.5427818840283556e-05, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417796e-06, -9.6423867751772287e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -7.7139094201417813e-06, -7.7139094201417779e-06, -2.314172826042551e-05, -7.7139094201417779e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.5427818840283563e-05, -3.8569547100708906e-06, -1.7356296195318948e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.2535102807730509e-05, -7.7139094201417796e-06, -1.5427818840283559e-05, -8.0996048911489315e-05, -7.7139094201417813e-06, -8.4853003621559374e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.5427818840283556e-05, -7.7139094201418348e-05, -1.5427818840283559e-05, -7.8103332878936283e-05, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283556e-05, -3.8569547100708889e-06, -8.0996048911489288e-05, -7.7139094201418768e-05, -7.713909420141828e-05, -7.7139094201418484e-05, -9.6423867751772245e-07, -3.8569547100708881e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -7.7139094201417796e-06, -9.6423867751773325e-06, -1.9284773550354618e-05, -1.5427818840283559e-05, -1.5427818840283566e-05, -7.7139094201417796e-06, -2.3141728260425313e-05, -2.8927160325532336e-06, -8.4853003621560092e-05, 0.003912880553366937, -6.9425184781276076e-05, -9.6423867751772245e-07, -9.6423867751772266e-07, -2.4105966937943123e-05, -1.5427818840283563e-05, -7.7139094201417813e-06, -6.7496707426240836e-06, -3.8569547100708889e-06, -1.9284773550354449e-06, -6.9425184781276076e-05, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -6.9425184781276048e-05, -7.7139094201417813e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -9.6423867751772935e-06, -2.8927160325531913e-06, -7.7139094201417813e-06, -1.4463580162765928e-05, -9.6423867751772266e-07, -7.7139094201417813e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -9.6423867751772266e-07, -5.7854320651064139e-06, -2.8927160325532273e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -2.5070205615460949e-05, -2.2177489582907768e-05, -9.6423867751772266e-07, -1.5427818840283559e-05, -7.7139094201417796e-06, -5.7854320651064266e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.7139094201418484e-05, -7.713909420141828e-05, -0.00015620666575787305, -7.713909420141828e-05, -7.7139094201418348e-05, -3.8569547100708889e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -8.67814809765944e-06, -3.8569547100708889e-06, -1.0606625452694971e-05, -9.6423867751772245e-07, -9.6423867751772266e-07, -1.5427818840283563e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.5427818840283559e-05, -7.7139094201417796e-06, -9.6423867751772266e-07, -0.0001562066657578727, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.8927160325531913e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -3.8569547100708889e-06, -1.1570864130212772e-05, -7.7139094201417813e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.7356296195318985e-05, -9.6423867751772266e-07, -3.8569547100708873e-06, -1.9284773550354445e-06, -1.5427818840283566e-05, -1.5427818840283566e-05, -4.8211933875886527e-06, -3.8569547100708906e-06, -1.9284773550354445e-06, -5.7854320651063809e-06, -8.1960287589006667e-05, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.5427818840283566e-05, -1.5427818840283566e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -4.4354979165815353e-05, -9.6423867751772579e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -1.5427818840283566e-05, -7.7139094201417762e-06, -1.5427818840283566e-05, -7.7139094201417762e-06, -7.7139094201417762e-06, -0.00029602127399794422, -7.7139094201417796e-06, -0.00019284773550354506, -7.7139094201417813e-06, -1.9284773550354449e-06, -5.7854320651063331e-05, -1.1570864130212768e-05, -4.8211933875886442e-06, -5.7854320651063988e-05, -9.6423867751772266e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.0001562066657578727, -7.7139094201417813e-06, -7.7139094201417813e-06, -0.00022081065715155856, -2.8927160325531896e-06, -0.00019284773550354525, -7.7139094201417796e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -1.5427818840283566e-05, -1.5427818840283566e-05, -1.9284773550354445e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00015620666575787305, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.603444429297845e-05, -9.2566913041702148e-05, -7.7139094201417813e-06, -6.8460946103757965e-05, -1.1570864130212758e-05, -1.1570864130212758e-05, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751773393e-06, -7.7139094201417779e-06, -9.6423867751772579e-06, -2.0249012227872288e-05, -7.7139094201417813e-06, -4.8211933875886629e-06, -2.217748958290767e-05, -7.7139094201417813e-06, -1.1570864130212768e-05, -2.8927160325532281e-06, -4.8211933875886425e-06, -1.9284773550354445e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -7.7139094201417779e-06, -1.1570864130212763e-05, -5.785432065106424e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -1.5427818840283556e-05, -7.7139094201417813e-06, -3.8569547100708906e-06, -1.5427818840283556e-05, -7.7139094201417813e-06, -3.8569547100708906e-06, -7.7139094201417762e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.5427818840283556e-05, -2.3141728260425523e-05, -7.7139094201417813e-06, -1.5427818840283559e-05, -1.5427818840283556e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -8.6781480976594993e-06, -3.2784115035602629e-05, -1.928477355035444e-06, -7.7139094201417779e-06, -7.7139094201417813e-06, -8.6781480976594993e-06, -2.507020561546097e-05, -7.7139094201417779e-06, -7.7139094201417813e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.6392057517801118e-05, -2.8927160325531692e-05, -1.1570864130212768e-05, -5.7854320651064139e-06, -9.6423867751772266e-07, -3.8569547100708906e-06, 0.003912880553366937, -2.3141728260425286e-05, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.5427818840283566e-05, -1.5427818840283566e-05, -3.8569547100708906e-06, -1.1570864130212767e-05, -7.7139094201417813e-06, -9.6423867751772224e-07, -1.9284773550354445e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -8.6781480976594857e-06, -4.8211933875886561e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -6.9425184781275967e-05, -3.8569547100708889e-06, -9.6423867751772266e-07, -5.7854320651063331e-05, -7.7139094201417813e-06, -4.6283456520850518e-05, -4.6283456520850661e-05, -4.8211933875885873e-05, -4.6283456520850518e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772287e-07, -6.7496707426241005e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -5.8818559328581178e-05, -1.9284773550354449e-06, -6.9425184781276048e-05, -6.9425184781276076e-05, -7.7139094201417813e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -6.9425184781276076e-05, -6.942518478127594e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.5427818840283563e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.8927160325531908e-06, -1.5427818840283563e-05, -1.157086413021289e-05, -1.1570864130212838e-05, -1.1570864130212848e-05, -1.1570864130212887e-05, -5.7854320651063597e-06, -5.7854320651063597e-06, -1.1570864130212716e-05, -1.1570864130212713e-05, -1.4463580162766037e-06, -1.4463580162766018e-06, -0.00029071796127159532, -0.00028927160325531573, -7.2317900813829384e-06, -1.4463580162766033e-06, -4.339074048829836e-06, -1.4463580162765934e-05, -0.00011570864130212666, -2.8927160325532036e-06, -0.00013306493749744582, -1.446358016276588e-06, -2.31417282604257e-05, -2.3141728260425686e-05, -1.1570864130212709e-05, -1.1570864130212719e-05, -0.00011570864130212644, -0.00011570864130212642, -1.1570864130212685e-05, -0.00032832326969478462, -2.8927160325532243e-06, -0.00028927160325531605, -2.3141728260425713e-05, -1.1570864130212841e-05, -1.1570864130212894e-05, -1.446358016276587e-06, -1.4463580162766035e-06, -1.1570864130212801e-05, -1.1570864130212811e-05, -2.8927160325532243e-06, -2.8927160325532243e-06, -1.4463580162765874e-06, -1.4463580162765971e-06, -1.1570864130212684e-05, -7.2317900813829528e-06, -4.3390740488298072e-06, -5.7854320651063614e-06, -5.785432065106358e-06, -1.4463580162766033e-06, -2.1695370244148702e-05, -1.1570864130212775e-05, -1.1570864130212779e-05, -1.3017222146489225e-05, -1.157086413021273e-05, -2.1695370244148862e-05, -2.8927160325532074e-06, -1.4463580162766094e-06, -1.1570864130212726e-05, -1.1570864130212723e-05, -1.446358016276605e-06, -1.4463580162765999e-06, -1.1570864130212785e-05, -1.1570864130212772e-05, -2.8927160325531972e-06, -1.4463580162765946e-06, -1.1570864130212753e-05, -2.3141728260425381e-05, -1.4463580162765914e-05, -1.1570864130212818e-05, -2.3141728260425595e-05, -1.4463580162766054e-06, -1.1570864130212755e-05, -2.4588086276702341e-05, -1.1570864130212799e-05, -1.1570864130212763e-05, -2.3141728260425683e-05, -4.6283456520850742e-05, -3.6158950406914588e-05, -1.1570864130212714e-05, -2.3141728260425656e-05, -2.3141728260425642e-05, -5.7854320651064495e-06, -1.157086413021277e-05, -1.4463580162765907e-05, -1.5909938179042317e-05, -5.7854320651064512e-06, 0.0019410124578431874, -1.1570864130212801e-05, -1.1570864130212802e-05, -1.1570864130212806e-05, -2.8927160325532192e-06, -1.1570864130212868e-05, -1.1570864130212714e-05, -1.4463580162766115e-06, -1.1570864130212711e-05, -2.8927160325532086e-06, -1.1570864130212862e-05, -1.1570864130212824e-05, -1.1570864130212814e-05, -1.4463580162766047e-06, -2.3141728260425656e-05, -2.3141728260425669e-05, -1.4463580162766009e-06, -1.1570864130212797e-05, -1.1570864130212794e-05, -1.4463580162765791e-06, -1.157086413021289e-05, -1.1570864130212875e-05, -1.157086413021276e-05, -1.1570864130212879e-05, -3.4712592390638539e-05, -1.1570864130212882e-05, -1.157086413021276e-05, -1.1570864130212758e-05, -1.4463580162765963e-06, -1.157086413021275e-05, -1.1570864130212762e-05, -2.3141728260425561e-05, -5.785432065106358e-06, -2.6034444292978437e-05, -5.7854320651063614e-06, -1.4463580162766094e-06, -2.8927160325531968e-06, -1.8802654211595592e-05, -1.1570864130212814e-05, -2.3141728260425598e-05, -0.00012149407336723439, -1.1570864130212785e-05, -0.00012727950543233794, -1.157086413021277e-05, -1.157086413021276e-05, -2.3141728260425642e-05, -0.00011570864130212714, -2.3141728260425656e-05, -0.000117154999318404, -1.4463580162765874e-06, -2.3141728260425669e-05, -2.3141728260425628e-05, -5.7854320651064342e-06, -0.00012149407336723439, -0.00011570864130212666, -0.00011570864130212676, -0.00011570864130212747, -1.4463580162766045e-06, -5.7854320651063893e-06, -1.4463580162765933e-06, -1.4463580162766073e-06, -1.4463580162766117e-06, -1.1570864130212804e-05, -1.1570864130212807e-05, -1.1570864130212821e-05, -1.1570864130212818e-05, -1.4463580162765937e-06, -1.446358016276595e-06, -1.4463580162765933e-06, -1.1570864130212858e-05, -1.4463580162766048e-05, -2.8927160325531828e-05, -2.3141728260425696e-05, -2.3141728260425259e-05, -1.1570864130212862e-05, -3.4712592390637956e-05, -4.3390740488297166e-06, 0.0038010288667748898, -2.3141728260425286e-05, -0.00010413777717191356, -1.4463580162766035e-06, -1.4463580162765984e-06, -3.6158950406914581e-05, -2.3141728260425561e-05, -1.1570864130212775e-05, -1.0124506113936197e-05, -5.7854320651063453e-06, -2.8927160325531608e-06, -0.00010413777717191357, -2.8927160325532074e-06, -5.7854320651063597e-06, -5.7854320651063597e-06, -0.00010413777717191356, -1.1570864130212736e-05, -1.4463580162765975e-06, -1.1570864130212777e-05, -1.4463580162765933e-06, -1.1570864130212787e-05, -1.4463580162765989e-05, -4.3390740488298055e-06, -1.157086413021278e-05, -2.1695370244148896e-05, -1.446358016276587e-06, -1.1570864130212733e-05, -2.8927160325532243e-06, -2.8927160325532235e-06, -2.8927160325532171e-06, -1.4463580162766001e-06, -8.678148097659523e-06, -4.3390740488297251e-06, -1.1570864130212826e-05, -1.157086413021284e-05, -2.3141728260425506e-05, -3.7605308423191205e-05, -3.3266234374361054e-05, -1.446358016276587e-06, -2.3141728260425378e-05, -1.1570864130212831e-05, -8.6781480976595027e-06, -2.8927160325531731e-06, -1.446358016276595e-06, -1.4463580162766073e-06, -0.00011570864130212747, -0.00011570864130212676, -0.0002343099986368065, -0.00011570864130212677, -0.00011570864130212714, -5.7854320651064512e-06, -2.8927160325531731e-06, -1.1570864130212824e-05, -1.3017222146489225e-05, -5.7854320651064495e-06, -1.5909938179042306e-05, -1.4463580162766033e-06, -1.446358016276588e-06, -2.3141728260425384e-05, -1.1570864130212736e-05, -1.1570864130212757e-05, -1.4463580162765984e-06, -1.4463580162766033e-06, -5.7854320651064037e-06, -5.7854320651064071e-06, -2.3141728260425378e-05, -1.1570864130212838e-05, -1.4463580162765912e-06, -0.00023430999863680894, -1.1570864130212833e-05, -1.1570864130212829e-05, -1.4463580162766009e-06, -5.7854320651064071e-06, -5.7854320651064054e-06, -2.8927160325531756e-06, -2.8927160325531756e-06, -4.3390740488298005e-06, -1.4463580162766037e-06, -2.8927160325531756e-06, -2.8927160325531756e-06, -1.446358016276595e-06, -1.4463580162766045e-06, -5.7854320651063648e-06, -1.7356296195319148e-05, -1.1570864130212733e-05, -1.4463580162765929e-06, -1.446358016276588e-06, -2.603444429297841e-05, -1.4463580162765999e-06, -5.785432065106341e-06, -2.8927160325531726e-06, -2.3141728260425395e-05, -2.3141728260425354e-05, -7.2317900813829672e-06, -5.7854320651063927e-06, -2.8927160325531718e-06, -8.6781480976595772e-06, -0.0001229404313835102, -1.4463580162765971e-06, -5.785432065106391e-06, -5.7854320651063944e-06, -2.3141728260425313e-05, -2.3141728260425435e-05, -5.7854320651063969e-06, -5.7854320651063749e-06, -5.7854320651063732e-06, -1.4463580162765933e-06, -6.6532468748722285e-05, -1.4463580162765956e-05, -1.4463580162766054e-06, -1.1570864130212829e-05, -1.1570864130212702e-05, -1.1570864130212833e-05, -2.3141728260425435e-05, -1.1570864130212691e-05, -2.3141728260425313e-05, -1.1570864130212694e-05, -1.1570864130212697e-05, -0.0004440319109969123, -1.1570864130212828e-05, -0.00028927160325531616, -1.157086413021275e-05, -2.8927160325532082e-06, -8.678148097659485e-05, -1.7356296195319066e-05, -7.2317900813829519e-06, -8.678148097659485e-05, -1.4463580162765895e-06, -1.1570864130212806e-05, -1.1570864130212802e-05, -0.00023430999863680894, -1.1570864130212731e-05, -1.1570864130212728e-05, -0.00033121598572733823, -4.3390740488298038e-06, -0.00028927160325531638, -1.1570864130212794e-05, -1.1570864130212797e-05, -1.4463580162765778e-06, -1.1570864130212799e-05, -1.1570864130212809e-05, -1.446358016276592e-06, -2.3141728260425354e-05, -2.3141728260425395e-05, -2.8927160325532171e-06, -5.7854320651064054e-06, -5.7854320651064071e-06, -1.1570864130212831e-05, -1.1570864130212835e-05, -0.0002343099986368065, -1.157086413021284e-05, -1.1570864130212826e-05, -3.9051666439468433e-05, -0.00013885036956255356, -1.1570864130212801e-05, -0.00010269141915563746, -1.735629619531929e-05, -1.735629619531929e-05, -1.1570864130212868e-05, -1.1570864130212875e-05, -1.4463580162766017e-05, -1.157086413021289e-05, -1.4463580162765853e-05, -3.0373518341808537e-05, -1.1570864130212757e-05, -7.2317900813829943e-06, -3.326623437436144e-05, -1.1570864130212735e-05, -1.735629619531906e-05, -4.3390740488297081e-06, -7.2317900813829587e-06, -2.8927160325532196e-06, -1.4463580162766045e-06, -1.4463580162765975e-06, -1.1570864130212894e-05, -1.7356296195319236e-05, -8.6781480976595027e-06, -5.7854320651063698e-06, -1.1570864130212845e-05, -1.1570864130212685e-05, -1.1570864130212697e-05, -2.3141728260425381e-05, -1.1570864130212709e-05, -5.7854320651063944e-06, -2.3141728260425371e-05, -1.1570864130212713e-05, -5.785432065106391e-06, -1.1570864130212702e-05, -1.4463580162765895e-06, -1.1570864130212723e-05, -1.1570864130212726e-05, -2.3141728260425669e-05, -3.4712592390638404e-05, -1.1570864130212784e-05, -2.3141728260425713e-05, -2.3141728260425672e-05, -1.1570864130212713e-05, -1.1570864130212716e-05, -1.1570864130212735e-05, -1.1570864130212724e-05, -1.3017222146489193e-05, -4.9176172553404709e-05, -2.8927160325531709e-06, -1.1570864130212882e-05, -1.1570864130212709e-05, -1.3017222146489445e-05, -3.7605308423191056e-05, -1.1570864130212838e-05, -1.1570864130212777e-05, -1.157086413021289e-05, -5.7854320651063927e-06, -5.7854320651063944e-06, -1.446358016276603e-06, -1.4463580162766117e-06, -1.4463580162766054e-06, -2.8927160325532002e-06, -2.4588086276702324e-05, -4.3390740488297378e-05, -1.7356296195319107e-05, -8.678148097659523e-06, -1.4463580162765967e-06, -5.7854320651063893e-06, -2.3141728260425286e-05, 0.0058577499659201969, -1.1570864130212879e-05, -5.7854320651063893e-06, -2.3141728260425232e-05, -2.3141728260425259e-05, -5.7854320651063893e-06, -1.7356296195319148e-05, -1.1570864130212731e-05, -1.4463580162766094e-06, -2.8927160325531968e-06, -5.7854320651063893e-06, -5.7854320651063969e-06, -1.3017222146489207e-05, -7.2317900813829638e-06, -1.1570864130212824e-05, -2.3141728260425381e-05, -0.00010413777717191368, -5.7854320651064342e-06, -1.4463580162765937e-06, -8.678148097659485e-05, -1.1570864130212758e-05, -6.9425184781275384e-05, -6.9425184781275832e-05, -7.2317900813829894e-05, -6.9425184781275384e-05, -5.7854320651064342e-06, -5.7854320651064325e-06, -1.1570864130212774e-05, -1.1570864130212763e-05, -5.7854320651063817e-06, -5.7854320651063817e-06, -1.1570864130212862e-05, -1.4463580162766086e-06, -1.1570864130212868e-05, -1.4463580162765963e-06, -1.4463580162765795e-06, -0.00010124506113936147, -5.7854320651063817e-06, -5.7854320651063817e-06, -8.8227838992872837e-05, -2.8927160325532133e-06, -0.00010413777717191356, -0.00010413777717191357, -1.1570864130212755e-05, -1.4463580162765939e-06, -1.1570864130212765e-05, -0.00010413777717191356, -0.00010413777717191354, -1.1570864130212757e-05, -1.1570864130212746e-05, -2.8927160325531832e-06, -2.8927160325532065e-06, -2.3141728260425398e-05, -1.157086413021275e-05, -1.1570864130212753e-05, -4.3390740488297869e-06, -2.3141728260425398e-05, -3.8569547100708881e-06, -3.8569547100708881e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -9.6905987090532326e-05, -9.6423867751772627e-05, -2.4105966937943255e-06, -4.8211933875886112e-07, -1.4463580162766086e-06, -4.8211933875886815e-06, -3.856954710070956e-05, -9.6423867751772224e-07, -4.4354979165815143e-05, -4.8211933875886122e-07, -7.7139094201417762e-06, -7.7139094201417745e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.856954710070956e-05, -3.856954710070956e-05, -3.8569547100708881e-06, -0.00010944108989826064, -9.6423867751772202e-07, -9.6423867751773914e-05, -7.7139094201417762e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -4.8211933875886112e-07, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708881e-06, -2.4105966937943255e-06, -1.4463580162766096e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886112e-07, -7.2317900813830561e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.3390740488296997e-06, -3.8569547100708898e-06, -7.2317900813830324e-06, -9.6423867751772202e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772202e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886713e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -8.1960287589005674e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -1.5427818840283549e-05, -1.2052983468971611e-05, -3.8569547100708889e-06, -7.7139094201417762e-06, -7.7139094201417762e-06, -1.928477355035447e-06, -3.8569547100708898e-06, -4.821193387588673e-06, 0.0019588508733772627, -1.928477355035447e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -9.6423867751772245e-07, -3.8569547100708881e-06, -3.8569547100708889e-06, -4.8211933875886091e-07, -3.8569547100708889e-06, -9.6423867751772245e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -4.8211933875886112e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -4.8211933875886112e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -1.1570864130212874e-05, -3.856954710070894e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -8.678148097659379e-06, -1.9284773550354449e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -6.2675514038652644e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.0498024455744671e-05, -3.8569547100708889e-06, -4.2426501810779578e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -3.8569547100709323e-05, -7.7139094201417762e-06, -3.9051666439468277e-05, -4.8211933875886112e-07, -7.7139094201417762e-06, -7.7139094201417762e-06, -1.928477355035444e-06, -4.0498024455744657e-05, -3.856954710070956e-05, -3.8569547100709289e-05, -3.8569547100709391e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.821193387588651e-06, -9.6423867751773562e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708898e-06, -1.1570864130212879e-05, -1.446358016276631e-06, -4.2426501810779911e-05, -7.7139094201417779e-06, -3.4712592390637652e-05, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971651e-05, -7.7139094201417796e-06, -3.8569547100708889e-06, -3.374835371312093e-06, -1.928477355035444e-06, -9.6423867751772202e-07, -3.4712592390637638e-05, -9.6423867751772202e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.4712592390637638e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886493e-06, -1.4463580162766096e-06, -3.8569547100708898e-06, -7.2317900813830104e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.8927160325532349e-06, -1.4463580162766276e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -7.7139094201417779e-06, -1.2535102807730495e-05, -1.1088744791453791e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -3.8569547100708889e-06, -2.8927160325532417e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100709391e-05, -3.8569547100709289e-05, -7.8103332878936784e-05, -3.8569547100709289e-05, -3.8569547100709323e-05, -1.928477355035447e-06, -9.6423867751772224e-07, -3.8569547100708881e-06, -4.3390740488296726e-06, -1.928477355035447e-06, -5.3033127263474702e-06, -4.8211933875886112e-07, -4.8211933875886122e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -7.7139094201417762e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -7.8103332878936608e-05, -3.8569547100708881e-06, -3.8569547100708881e-06, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.4463580162766096e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651064384e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -8.6781480976593993e-06, -4.8211933875886112e-07, -1.9284773550354428e-06, -9.6423867751772224e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -2.4105966937943365e-06, -1.9284773550354445e-06, -9.6423867751772224e-07, -2.8927160325532184e-06, -4.0980143794503334e-05, -4.8211933875886122e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -2.217748958290748e-05, -4.8211933875886518e-06, -4.8211933875886122e-07, -3.8569547100708881e-06, -3.8569547100708873e-06, -3.8569547100708881e-06, -7.7139094201417779e-06, -3.8569547100708873e-06, -7.7139094201417779e-06, -3.8569547100708873e-06, -3.8569547100708873e-06, -0.00014801063699897355, -3.8569547100708889e-06, -9.6423867751773237e-05, -3.8569547100708898e-06, -9.6423867751772202e-07, -2.8927160325531855e-05, -5.785432065106391e-06, -2.4105966937943331e-06, -2.8927160325532184e-05, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.8103332878936608e-05, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00011040532857577858, -1.4463580162766092e-06, -9.6423867751773318e-05, -3.8569547100708889e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -9.6423867751772202e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -7.8103332878936784e-05, -3.8569547100708881e-06, -3.8569547100708881e-06, -1.3017222146489545e-05, -4.6283456520851494e-05, -3.8569547100708898e-06, -3.4230473051878616e-05, -5.7854320651064351e-06, -5.7854320651064351e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -4.821193387588651e-06, -3.8569547100708881e-06, -4.8211933875886798e-06, -1.0124506113936161e-05, -3.8569547100708898e-06, -2.4105966937943255e-06, -1.1088744791453733e-05, -3.8569547100708889e-06, -5.7854320651063842e-06, -1.4463580162765732e-06, -2.4105966937943323e-06, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708881e-06, -5.7854320651064384e-06, -2.89271603255324e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -3.8569547100708873e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354445e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354445e-06, -3.8569547100708873e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -1.1570864130212877e-05, -3.8569547100708898e-06, -7.7139094201417762e-06, -7.7139094201417745e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -4.3390740488297031e-06, -1.6392057517801233e-05, -9.6423867751772181e-07, -3.856954710070894e-06, -3.8569547100708898e-06, -4.3390740488298547e-06, -1.2535102807730505e-05, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886112e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -8.1960287589005183e-06, -1.4463580162765931e-05, -5.7854320651064113e-06, -2.8927160325532349e-06, -4.8211933875886122e-07, -1.9284773550354445e-06, -7.7139094201417779e-06, -1.1570864130212879e-05, 0.001960297231393539, -1.9284773550354445e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -1.9284773550354445e-06, -5.7854320651064368e-06, -3.8569547100708889e-06, -4.8211933875886101e-07, -9.6423867751772202e-07, -1.9284773550354445e-06, -1.9284773550354449e-06, -4.3390740488296946e-06, -2.410596693794339e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.4712592390637597e-05, -1.928477355035444e-06, -4.8211933875886122e-07, -2.8927160325531855e-05, -3.8569547100708889e-06, -2.3141728260426096e-05, -2.3141728260425747e-05, -2.4105966937943211e-05, -2.3141728260426096e-05, -1.928477355035444e-06, -1.928477355035444e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -4.8211933875886101e-07, -3.8569547100708881e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.3748353713120137e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.9409279664290765e-05, -9.6423867751772202e-07, -3.4712592390637638e-05, -3.4712592390637638e-05, -3.8569547100708889e-06, -4.8211933875886112e-07, -3.8569547100708889e-06, -3.4712592390637652e-05, -3.4712592390637584e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.4463580162766071e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.845299354526596e-05, -4.821193387588609e-05, -1.2052983468971564e-06, -2.4105966937943066e-07, -7.2317900813829856e-07, -2.4105966937943272e-06, -1.9284773550354679e-05, -4.8211933875886133e-07, -2.21774895829077e-05, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354679e-05, -1.9284773550354675e-05, -1.9284773550354449e-06, -5.4720544949130585e-05, -4.8211933875886112e-07, -4.8211933875886734e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.928477355035444e-06, -1.205298346897156e-06, -7.2317900813829888e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -3.6158950406915103e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.1695370244148591e-06, -1.9284773550354453e-06, -3.6158950406915001e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886112e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -3.8569547100708906e-06, -2.410596693794323e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -2.4105966937943061e-07, -1.9284773550354457e-06, -4.0980143794503024e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -6.0264917344857748e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -1.9284773550354453e-06, -2.4105966937943238e-06, -2.6516563631737304e-06, -9.6423867751772224e-07, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -2.4105966937943056e-07, -1.9284773550354457e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -5.7854320651063868e-06, -1.9284773550354445e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -4.3390740488297268e-06, -9.6423867751772287e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -3.1337757019326275e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -2.0249012227872329e-05, -1.9284773550354453e-06, -2.121325090538986e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -1.9284773550354567e-05, -3.8569547100708898e-06, -1.9525833219734057e-05, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -2.0249012227872329e-05, -1.9284773550354679e-05, -1.9284773550354553e-05, -1.9284773550354604e-05, -2.4105966937943061e-07, -9.6423867751772202e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -2.4105966937943056e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.9284773550354449e-06, -2.4105966937943314e-06, -4.821193387588651e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -5.7854320651063927e-06, -7.2317900813830957e-07, -2.1213250905390003e-05, -3.8569547100708906e-06, -1.7356296195318921e-05, -2.4105966937943066e-07, -2.4105966937943072e-07, -6.0264917344857968e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -1.6874176856560175e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -1.7356296195318921e-05, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.7356296195318921e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -2.4105966937943213e-06, -7.2317900813829898e-07, -1.9284773550354453e-06, -3.615895040691487e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.4463580162766058e-06, -7.2317900813830798e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -6.2675514038652373e-06, -5.5443723957269276e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.446358016276609e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.9284773550354604e-05, -1.9284773550354553e-05, -3.9051666439468236e-05, -1.9284773550354553e-05, -1.9284773550354567e-05, -9.6423867751772224e-07, -4.8211933875886133e-07, -1.9284773550354445e-06, -2.1695370244148549e-06, -9.6423867751772224e-07, -2.6516563631737444e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.8569547100708898e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.9051666439468148e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -7.2317900813829528e-07, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -2.4105966937943061e-07, -9.6423867751772224e-07, -2.8927160325531976e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -4.3390740488297352e-06, -2.4105966937943066e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.2052983468971564e-06, -9.6423867751772287e-07, -4.8211933875886122e-07, -1.4463580162765978e-06, -2.0490071897251667e-05, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943072e-07, -1.1088744791453811e-05, -2.4105966937943124e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.4005318499486164e-05, -1.9284773550354453e-06, -4.8211933875886395e-05, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.4463580162765853e-05, -2.8927160325531968e-06, -1.20529834689716e-06, -1.4463580162766017e-05, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.9051666439468148e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -5.5202664287889572e-05, -7.2317900813829856e-07, -4.8211933875886442e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.9051666439468236e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -6.5086110732446126e-06, -2.3141728260425574e-05, -1.9284773550354453e-06, -1.711523652593944e-05, -2.8927160325531942e-06, -2.8927160325531942e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943327e-06, -1.9284773550354449e-06, -2.4105966937943289e-06, -5.0622530569680805e-06, -1.9284773550354453e-06, -1.2052983468971649e-06, -5.5443723957269039e-06, -1.9284773550354457e-06, -2.8927160325531968e-06, -7.2317900813830819e-07, -1.2052983468971598e-06, -4.8211933875886112e-07, -2.4105966937943061e-07, -2.4105966937943072e-07, -1.9284773550354449e-06, -2.8927160325531955e-06, -1.4463580162766083e-06, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -3.8569547100708889e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -1.9284773550354449e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -5.7854320651063902e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.1695370244148697e-06, -8.1960287589006572e-06, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354457e-06, -2.1695370244148697e-06, -6.2675514038652432e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -2.4105966937943056e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.0980143794502786e-06, -7.231790081382935e-06, -2.8927160325531968e-06, -1.4463580162766058e-06, -2.4105966937943072e-07, -9.6423867751772287e-07, -3.8569547100708906e-06, -5.7854320651063893e-06, -1.9284773550354445e-06, 0.00098111285437428694, -3.8569547100708915e-06, -3.8569547100708915e-06, 0.00098111285437428694, -2.8927160325531764e-06, -1.9284773550354457e-06, -2.4105966937943061e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -2.1695370244148659e-06, -1.2052983468971632e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -1.7356296195318948e-05, -9.6423867751772245e-07, -2.4105966937943072e-07, -1.4463580162765853e-05, -1.9284773550354457e-06, -1.1570864130212955e-05, -1.1570864130212765e-05, -1.2052983468971538e-05, -1.1570864130212955e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.6874176856560197e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4704639832145321e-05, -4.8211933875886122e-07, -1.7356296195318921e-05, -1.7356296195318921e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.7356296195318921e-05, -1.7356296195318907e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.2317900813829888e-07, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -0.00019381197418106373, -0.0001928477355035442, -4.8211933875886256e-06, -9.6423867751772266e-07, -2.8927160325531921e-06, -9.6423867751773105e-06, -7.7139094201418714e-05, -1.9284773550354453e-06, -8.8709958331630869e-05, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201418714e-05, -7.7139094201418714e-05, -7.7139094201417796e-06, -0.00021888217979652242, -1.9284773550354445e-06, -0.00019284773550354677, -1.5427818840283559e-05, -7.7139094201417813e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -7.7139094201417762e-06, -4.8211933875886256e-06, -2.8927160325531947e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -1.4463580162766041e-05, -7.713909420141783e-06, -7.713909420141783e-06, -8.67814809765944e-06, -7.7139094201417813e-06, -1.4463580162765934e-05, -1.9284773550354449e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -1.5427818840283563e-05, -9.6423867751772918e-06, -7.7139094201417813e-06, -1.5427818840283563e-05, -9.6423867751772245e-07, -7.713909420141783e-06, -1.6392057517801203e-05, -7.7139094201417813e-06, -7.713909420141783e-06, -1.5427818840283559e-05, -3.0855637680567105e-05, -2.4105966937943086e-05, -7.713909420141783e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708889e-06, -7.7139094201417813e-06, -9.6423867751772952e-06, -1.0606625452694922e-05, -3.8569547100708889e-06, -1.5427818840283556e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -7.713909420141783e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -7.7139094201417796e-06, -2.3141728260425537e-05, -7.7139094201417779e-06, -7.7139094201417813e-06, -7.713909420141783e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.713909420141783e-06, -1.5427818840283566e-05, -3.8569547100708915e-06, -1.7356296195318907e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.2535102807730509e-05, -7.7139094201417813e-06, -1.5427818840283559e-05, -8.0996048911489288e-05, -7.713909420141783e-06, -8.4853003621559428e-05, -7.713909420141783e-06, -7.713909420141783e-06, -1.5427818840283559e-05, -7.7139094201418294e-05, -1.5427818840283559e-05, -7.8103332878936256e-05, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -8.0996048911489288e-05, -7.7139094201418714e-05, -7.7139094201418226e-05, -7.7139094201418429e-05, -9.6423867751772245e-07, -3.8569547100708881e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.7139094201417796e-06, -9.6423867751773257e-06, -1.9284773550354604e-05, -1.5427818840283559e-05, -1.5427818840283566e-05, -7.7139094201417796e-06, 0.003905166643946795, -2.892716032553237e-06, -8.4853003621560119e-05, -1.5427818840283566e-05, -6.942518478127594e-05, -9.6423867751772266e-07, -9.6423867751772287e-07, -2.4105966937943163e-05, -1.5427818840283566e-05, -7.713909420141783e-06, -6.7496707426240734e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -6.942518478127594e-05, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -6.9425184781275913e-05, -7.713909420141783e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -9.6423867751772867e-06, -2.8927160325531947e-06, -7.7139094201417813e-06, -1.4463580162765948e-05, -9.6423867751772287e-07, -7.713909420141783e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -5.7854320651064207e-06, -2.8927160325532307e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283563e-05, -2.5070205615460949e-05, -2.2177489582907727e-05, -9.6423867751772287e-07, -1.5427818840283563e-05, -7.7139094201417813e-06, -5.7854320651064334e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.7139094201418429e-05, -7.7139094201418226e-05, -0.00015620666575787295, -7.7139094201418226e-05, -7.7139094201418294e-05, -3.8569547100708889e-06, -1.9284773550354453e-06, -7.7139094201417779e-06, -8.678148097659423e-06, -3.8569547100708889e-06, -1.0606625452694978e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.5427818840283563e-05, -7.7139094201417813e-06, -7.713909420141783e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.5427818840283559e-05, -7.7139094201417813e-06, -9.6423867751772287e-07, -0.00015620666575787262, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.8927160325531947e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -3.8569547100708889e-06, -1.1570864130212785e-05, -7.7139094201417813e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -1.7356296195318948e-05, -9.6423867751772287e-07, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.5427818840283566e-05, -1.5427818840283566e-05, -4.8211933875886493e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -5.7854320651063876e-06, -8.1960287589006667e-05, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.5427818840283566e-05, -1.5427818840283566e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772287e-07, -4.4354979165815286e-05, -9.6423867751772512e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283566e-05, -7.7139094201417796e-06, -1.5427818840283566e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00029602127399794477, -7.7139094201417813e-06, -0.00019284773550354542, -7.7139094201417813e-06, -1.9284773550354449e-06, -5.7854320651063412e-05, -1.1570864130212782e-05, -4.8211933875886408e-06, -5.7854320651064069e-05, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -0.00015620666575787262, -7.713909420141783e-06, -7.713909420141783e-06, -0.00022081065715155829, -2.892716032553193e-06, -0.00019284773550354561, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -1.5427818840283566e-05, -1.5427818840283566e-05, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -0.00015620666575787295, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.603444429297845e-05, -9.2566913041702256e-05, -7.7139094201417813e-06, -6.8460946103757815e-05, -1.1570864130212772e-05, -1.1570864130212772e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751773325e-06, -7.7139094201417796e-06, -9.6423867751772579e-06, -2.0249012227872288e-05, -7.7139094201417813e-06, -4.8211933875886595e-06, -2.2177489582907633e-05, -7.713909420141783e-06, -1.1570864130212782e-05, -2.8927160325532315e-06, -4.8211933875886391e-06, -1.9284773550354445e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -7.7139094201417796e-06, -1.1570864130212777e-05, -5.7854320651064308e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -7.7139094201417813e-06, -3.8569547100708915e-06, -1.5427818840283556e-05, -7.713909420141783e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.5427818840283559e-05, -2.3141728260425551e-05, -7.7139094201417813e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.713909420141783e-06, -7.713909420141783e-06, -8.6781480976594823e-06, -3.2784115035602615e-05, -1.9284773550354445e-06, -7.7139094201417779e-06, -7.713909420141783e-06, -8.6781480976594823e-06, -2.507020561546097e-05, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.6392057517801111e-05, -2.8927160325531726e-05, -1.1570864130212782e-05, -5.7854320651064207e-06, -9.6423867751772287e-07, -3.8569547100708915e-06, -1.5427818840283566e-05, -2.3141728260425232e-05, -7.7139094201417779e-06, -3.8569547100708915e-06, 0.0039128805533669361, -1.5427818840283566e-05, -3.8569547100708915e-06, -1.157086413021278e-05, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -8.6781480976594637e-06, -4.8211933875886527e-06, -7.7139094201417813e-06, -1.5427818840283563e-05, -6.9425184781275832e-05, -3.8569547100708898e-06, -9.6423867751772287e-07, -5.7854320651063412e-05, -7.713909420141783e-06, -4.6283456520850627e-05, -4.6283456520850498e-05, -4.821193387588571e-05, -4.6283456520850627e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772287e-07, -6.7496707426240843e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -5.8818559328581259e-05, -1.9284773550354449e-06, -6.9425184781275913e-05, -6.942518478127594e-05, -7.713909420141783e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -6.942518478127594e-05, -6.9425184781275791e-05, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.5427818840283566e-05, -7.713909420141783e-06, -7.713909420141783e-06, -2.8927160325531942e-06, -1.5427818840283566e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -0.00019381197418106357, -0.00019284773550354403, -4.8211933875886273e-06, -9.6423867751772266e-07, -2.8927160325531904e-06, -9.6423867751773138e-06, -7.7139094201418741e-05, -1.9284773550354453e-06, -8.8709958331630951e-05, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201418741e-05, -7.7139094201418741e-05, -7.7139094201417796e-06, -0.00021888217979652256, -1.9284773550354445e-06, -0.00019284773550354661, -1.5427818840283559e-05, -7.7139094201417813e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -7.7139094201417762e-06, -4.8211933875886273e-06, -2.892716032553193e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -1.4463580162766031e-05, -7.713909420141783e-06, -7.713909420141783e-06, -8.6781480976594468e-06, -7.7139094201417813e-06, -1.4463580162765934e-05, -1.9284773550354449e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -1.5427818840283563e-05, -9.6423867751772952e-06, -7.7139094201417813e-06, -1.5427818840283563e-05, -9.6423867751772245e-07, -7.713909420141783e-06, -1.6392057517801206e-05, -7.7139094201417813e-06, -7.713909420141783e-06, -1.5427818840283559e-05, -3.0855637680567105e-05, -2.4105966937943065e-05, -7.713909420141783e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708889e-06, -7.7139094201417813e-06, -9.6423867751772986e-06, -1.0606625452694918e-05, -3.8569547100708889e-06, -1.5427818840283556e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -7.713909420141783e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -7.7139094201417796e-06, -2.3141728260425523e-05, -7.7139094201417779e-06, -7.7139094201417813e-06, -7.713909420141783e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.713909420141783e-06, -1.5427818840283566e-05, -3.8569547100708915e-06, -1.7356296195318927e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.2535102807730509e-05, -7.7139094201417813e-06, -1.5427818840283559e-05, -8.0996048911489315e-05, -7.713909420141783e-06, -8.4853003621559401e-05, -7.713909420141783e-06, -7.713909420141783e-06, -1.5427818840283559e-05, -7.7139094201418321e-05, -1.5427818840283559e-05, -7.8103332878936283e-05, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -8.0996048911489288e-05, -7.7139094201418741e-05, -7.7139094201418253e-05, -7.7139094201418457e-05, -9.6423867751772245e-07, -3.8569547100708881e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.7139094201417796e-06, -9.6423867751773291e-06, -1.9284773550354611e-05, -1.5427818840283559e-05, 0.0039128805533669361, -7.7139094201417796e-06, -2.3141728260425286e-05, -2.8927160325532353e-06, -8.4853003621560119e-05, -1.5427818840283566e-05, -6.9425184781275994e-05, -9.6423867751772266e-07, -9.6423867751772287e-07, -2.4105966937943143e-05, -1.5427818840283566e-05, -7.713909420141783e-06, -6.7496707426240785e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -6.9425184781275994e-05, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -6.9425184781275967e-05, -7.713909420141783e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -9.6423867751772901e-06, -2.892716032553193e-06, -7.7139094201417813e-06, -1.4463580162765934e-05, -9.6423867751772287e-07, -7.713909420141783e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -5.7854320651064173e-06, -2.892716032553229e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283563e-05, -2.5070205615460949e-05, -2.2177489582907748e-05, -9.6423867751772287e-07, -1.5427818840283563e-05, -7.7139094201417813e-06, -5.78543206510643e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.7139094201418457e-05, -7.7139094201418253e-05, -0.000156206665757873, -7.7139094201418253e-05, -7.7139094201418321e-05, -3.8569547100708889e-06, -1.9284773550354453e-06, -7.7139094201417779e-06, -8.6781480976594298e-06, -3.8569547100708889e-06, -1.0606625452694974e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.5427818840283563e-05, -7.7139094201417813e-06, -7.713909420141783e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.5427818840283559e-05, -7.7139094201417813e-06, -9.6423867751772287e-07, -0.00015620666575787267, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.892716032553193e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -3.8569547100708889e-06, -1.1570864130212779e-05, -7.7139094201417813e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -1.7356296195318965e-05, -9.6423867751772287e-07, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.5427818840283566e-05, -1.5427818840283566e-05, -4.821193387588651e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -5.7854320651063842e-06, -8.1960287589006667e-05, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.5427818840283566e-05, -1.5427818840283566e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772287e-07, -4.4354979165815319e-05, -9.6423867751772545e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283566e-05, -7.7139094201417796e-06, -1.5427818840283566e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00029602127399794449, -7.7139094201417813e-06, -0.00019284773550354523, -7.7139094201417813e-06, -1.9284773550354449e-06, -5.7854320651063371e-05, -1.1570864130212775e-05, -4.8211933875886425e-06, -5.7854320651064015e-05, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -0.00015620666575787267, -7.713909420141783e-06, -7.713909420141783e-06, -0.0002208106571515584, -2.8927160325531913e-06, -0.00019284773550354544, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -1.5427818840283566e-05, -1.5427818840283566e-05, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -0.000156206665757873, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.603444429297845e-05, -9.2566913041702202e-05, -7.7139094201417813e-06, -6.8460946103757897e-05, -1.1570864130212765e-05, -1.1570864130212765e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751773359e-06, -7.7139094201417796e-06, -9.6423867751772579e-06, -2.0249012227872288e-05, -7.7139094201417813e-06, -4.8211933875886612e-06, -2.2177489582907653e-05, -7.713909420141783e-06, -1.1570864130212775e-05, -2.8927160325532298e-06, -4.8211933875886408e-06, -1.9284773550354445e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -7.7139094201417796e-06, -1.157086413021277e-05, -5.7854320651064274e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -7.7139094201417813e-06, -3.8569547100708915e-06, -1.5427818840283556e-05, -7.713909420141783e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.5427818840283559e-05, -2.3141728260425537e-05, -7.7139094201417813e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.713909420141783e-06, -7.713909420141783e-06, -8.6781480976594891e-06, -3.2784115035602622e-05, -1.9284773550354445e-06, -7.7139094201417779e-06, -7.713909420141783e-06, -8.6781480976594891e-06, -2.507020561546097e-05, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.6392057517801115e-05, -2.8927160325531713e-05, -1.1570864130212775e-05, -5.7854320651064173e-06, -9.6423867751772287e-07, -3.8569547100708915e-06, -1.5427818840283566e-05, -2.3141728260425259e-05, -7.7139094201417779e-06, -3.8569547100708915e-06, -1.5427818840283566e-05, 0.0039128805533669361, -3.8569547100708915e-06, -1.1570864130212774e-05, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -8.6781480976594739e-06, -4.8211933875886544e-06, -7.7139094201417813e-06, -1.5427818840283563e-05, -6.9425184781275886e-05, -3.8569547100708898e-06, -9.6423867751772287e-07, -5.7854320651063358e-05, -7.713909420141783e-06, -4.6283456520850572e-05, -4.6283456520850579e-05, -4.8211933875885792e-05, -4.6283456520850572e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772287e-07, -6.7496707426240924e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -5.8818559328581218e-05, -1.9284773550354449e-06, -6.9425184781275967e-05, -6.9425184781275994e-05, -7.713909420141783e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -6.9425184781275994e-05, -6.9425184781275859e-05, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.5427818840283566e-05, -7.713909420141783e-06, -7.713909420141783e-06, -2.8927160325531925e-06, -1.5427818840283566e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.845299354526596e-05, -4.821193387588609e-05, -1.2052983468971564e-06, -2.4105966937943066e-07, -7.2317900813829856e-07, -2.4105966937943272e-06, -1.9284773550354679e-05, -4.8211933875886133e-07, -2.21774895829077e-05, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354679e-05, -1.9284773550354675e-05, -1.9284773550354449e-06, -5.4720544949130585e-05, -4.8211933875886112e-07, -4.8211933875886734e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.928477355035444e-06, -1.205298346897156e-06, -7.2317900813829888e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -3.6158950406915103e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.1695370244148591e-06, -1.9284773550354453e-06, -3.6158950406915001e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886112e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -3.8569547100708906e-06, -2.410596693794323e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -2.4105966937943061e-07, -1.9284773550354457e-06, -4.0980143794503024e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -6.0264917344857748e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -1.9284773550354453e-06, -2.4105966937943238e-06, -2.6516563631737304e-06, -9.6423867751772224e-07, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -2.4105966937943056e-07, -1.9284773550354457e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -5.7854320651063868e-06, -1.9284773550354445e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -4.3390740488297268e-06, -9.6423867751772287e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -3.1337757019326275e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -2.0249012227872329e-05, -1.9284773550354453e-06, -2.121325090538986e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -1.9284773550354567e-05, -3.8569547100708898e-06, -1.9525833219734057e-05, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -2.0249012227872329e-05, -1.9284773550354679e-05, -1.9284773550354553e-05, -1.9284773550354604e-05, -2.4105966937943061e-07, -9.6423867751772202e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -2.4105966937943056e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.9284773550354449e-06, -2.4105966937943314e-06, -4.821193387588651e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -5.7854320651063927e-06, -7.2317900813830957e-07, -2.1213250905390003e-05, -3.8569547100708906e-06, -1.7356296195318921e-05, -2.4105966937943066e-07, -2.4105966937943072e-07, -6.0264917344857968e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -1.6874176856560175e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -1.7356296195318921e-05, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.7356296195318921e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -2.4105966937943213e-06, -7.2317900813829898e-07, -1.9284773550354453e-06, -3.615895040691487e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.4463580162766058e-06, -7.2317900813830798e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -6.2675514038652373e-06, -5.5443723957269276e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.446358016276609e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.9284773550354604e-05, -1.9284773550354553e-05, -3.9051666439468236e-05, -1.9284773550354553e-05, -1.9284773550354567e-05, -9.6423867751772224e-07, -4.8211933875886133e-07, -1.9284773550354445e-06, -2.1695370244148549e-06, -9.6423867751772224e-07, -2.6516563631737444e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.8569547100708898e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.9051666439468148e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -7.2317900813829528e-07, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -2.4105966937943061e-07, -9.6423867751772224e-07, -2.8927160325531976e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -4.3390740488297352e-06, -2.4105966937943066e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.2052983468971564e-06, -9.6423867751772287e-07, -4.8211933875886122e-07, -1.4463580162765978e-06, -2.0490071897251667e-05, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943072e-07, -1.1088744791453811e-05, -2.4105966937943124e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.4005318499486164e-05, -1.9284773550354453e-06, -4.8211933875886395e-05, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.4463580162765853e-05, -2.8927160325531968e-06, -1.20529834689716e-06, -1.4463580162766017e-05, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.9051666439468148e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -5.5202664287889572e-05, -7.2317900813829856e-07, -4.8211933875886442e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.9051666439468236e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -6.5086110732446126e-06, -2.3141728260425574e-05, -1.9284773550354453e-06, -1.711523652593944e-05, -2.8927160325531942e-06, -2.8927160325531942e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943327e-06, -1.9284773550354449e-06, -2.4105966937943289e-06, -5.0622530569680805e-06, -1.9284773550354453e-06, -1.2052983468971649e-06, -5.5443723957269039e-06, -1.9284773550354457e-06, -2.8927160325531968e-06, -7.2317900813830819e-07, -1.2052983468971598e-06, -4.8211933875886112e-07, -2.4105966937943061e-07, -2.4105966937943072e-07, -1.9284773550354449e-06, -2.8927160325531955e-06, -1.4463580162766083e-06, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -3.8569547100708889e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -1.9284773550354449e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -5.7854320651063902e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.1695370244148697e-06, -8.1960287589006572e-06, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354457e-06, -2.1695370244148697e-06, -6.2675514038652432e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -2.4105966937943056e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.0980143794502786e-06, -7.231790081382935e-06, -2.8927160325531968e-06, -1.4463580162766058e-06, -2.4105966937943072e-07, -9.6423867751772287e-07, -3.8569547100708906e-06, -5.7854320651063893e-06, -1.9284773550354445e-06, 0.00098111285437428694, -3.8569547100708915e-06, -3.8569547100708915e-06, 0.00098111285437428694, -2.8927160325531764e-06, -1.9284773550354457e-06, -2.4105966937943061e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -2.1695370244148659e-06, -1.2052983468971632e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -1.7356296195318948e-05, -9.6423867751772245e-07, -2.4105966937943072e-07, -1.4463580162765853e-05, -1.9284773550354457e-06, -1.1570864130212955e-05, -1.1570864130212765e-05, -1.2052983468971538e-05, -1.1570864130212955e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.6874176856560197e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4704639832145321e-05, -4.8211933875886122e-07, -1.7356296195318921e-05, -1.7356296195318921e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.7356296195318921e-05, -1.7356296195318907e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.2317900813829888e-07, -3.8569547100708915e-06, -5.7854320651064478e-06, -5.7854320651064224e-06, -5.7854320651064274e-06, -5.7854320651064461e-06, -2.8927160325531811e-06, -2.8927160325531811e-06, -5.7854320651063614e-06, -5.7854320651063597e-06, -7.2317900813830216e-07, -7.2317900813830131e-07, -0.00014535898063579788, -0.000144635801627658, -3.6158950406914641e-06, -7.2317900813830205e-07, -2.1695370244148985e-06, -7.2317900813829536e-06, -5.7854320651063222e-05, -1.4463580162766026e-06, -6.6532468748723138e-05, -7.2317900813829443e-07, -1.1570864130212857e-05, -1.157086413021285e-05, -5.785432065106358e-06, -5.7854320651063631e-06, -5.7854320651063114e-05, -5.78543206510631e-05, -5.7854320651063461e-06, -0.00016416163484739228, -1.4463580162766128e-06, -0.00014463580162765816, -1.1570864130212863e-05, -5.785432065106424e-06, -5.7854320651064495e-06, -7.2317900813829379e-07, -7.2317900813830216e-07, -5.7854320651064037e-06, -5.7854320651064088e-06, -1.4463580162766128e-06, -1.4463580162766128e-06, -7.2317900813829401e-07, -7.2317900813829888e-07, -5.7854320651063436e-06, -3.6158950406914696e-06, -2.1695370244148841e-06, -2.892716032553182e-06, -2.8927160325531803e-06, -7.2317900813830205e-07, -1.0847685122074377e-05, -5.7854320651063902e-06, -5.7854320651063919e-06, -6.5086110732446262e-06, -5.7854320651063673e-06, -1.08476851220744e-05, -1.4463580162766043e-06, -7.2317900813830512e-07, -5.7854320651063656e-06, -5.7854320651063639e-06, -7.2317900813830227e-07, -7.2317900813830036e-07, -5.7854320651063953e-06, -5.7854320651063885e-06, -1.4463580162765863e-06, -7.2317900813829771e-07, -5.7854320651063792e-06, -1.1570864130212741e-05, -7.2317900813829418e-06, -5.7854320651064029e-06, -1.1570864130212792e-05, -7.2317900813830248e-07, -5.7854320651063393e-06, -1.2294043138351137e-05, -5.785432065106402e-06, -5.7854320651063851e-06, -1.1570864130212848e-05, -2.3141728260425384e-05, -1.8079475203457345e-05, -5.7854320651063427e-06, -1.1570864130212835e-05, -1.1570864130212828e-05, -2.8927160325532239e-06, -5.7854320651063885e-06, -7.2317900813829401e-06, -7.9549690895211633e-06, -2.8927160325532247e-06, -1.1570864130212792e-05, -5.7854320651064029e-06, -5.7854320651064037e-06, -5.7854320651064054e-06, -1.4463580162765994e-06, -5.7854320651064368e-06, -5.7854320651063427e-06, -7.2317900813830618e-07, -5.7854320651063478e-06, -1.4463580162765999e-06, -5.7854320651064334e-06, -5.7854320651063995e-06, -5.7854320651064046e-06, -7.2317900813830279e-07, -1.1570864130212835e-05, -1.1570864130212841e-05, -7.2317900813830078e-07, -5.7854320651064012e-06, -5.7854320651063995e-06, -7.2317900813830142e-07, -5.7854320651064486e-06, -5.785432065106441e-06, -5.7854320651063834e-06, -5.7854320651064435e-06, -1.7356296195319236e-05, -5.7854320651064384e-06, -5.7854320651063825e-06, -5.785432065106341e-06, -7.2317900813829856e-07, -5.7854320651063775e-06, -5.7854320651063427e-06, -1.1570864130212785e-05, -2.8927160325531803e-06, -1.3017222146489246e-05, -2.892716032553182e-06, -7.2317900813830512e-07, -1.446358016276599e-06, -9.4013271057978081e-06, -5.7854320651064046e-06, -1.1570864130212797e-05, -6.0747036683617156e-05, -5.7854320651063953e-06, -6.3639752716169158e-05, -5.7854320651063885e-06, -5.7854320651063834e-06, -1.1570864130212828e-05, -5.7854320651063453e-05, -1.1570864130212835e-05, -5.8577499659201985e-05, -7.2317900813829401e-07, -1.1570864130212841e-05, -1.1570864130212821e-05, -2.8927160325532188e-06, -6.0747036683617142e-05, -5.7854320651063222e-05, -5.785432065106327e-05, -5.7854320651063622e-05, -7.2317900813830205e-07, -2.8927160325531718e-06, -7.2317900813829708e-07, -7.2317900813830396e-07, -7.2317900813830629e-07, -5.7854320651064054e-06, -5.7854320651064071e-06, -5.7854320651064012e-06, -5.7854320651064029e-06, -7.2317900813829718e-07, -7.2317900813829782e-07, -7.2317900813829697e-07, -5.7854320651064249e-06, -7.2317900813829858e-06, -1.4463580162765887e-05, -1.1570864130212796e-05, -1.1570864130212774e-05, -5.7854320651064232e-06, -1.7356296195319148e-05, -2.1695370244148507e-06, -6.3639752716169564e-05, -1.1570864130212767e-05, -5.2068888585956901e-05, -7.2317900813830163e-07, -7.2317900813829951e-07, -1.8079475203457311e-05, -1.1570864130212785e-05, -5.7854320651063902e-06, -5.0622530569680915e-06, -2.8927160325531739e-06, -1.4463580162766039e-06, -5.2068888585956914e-05, -1.4463580162766043e-06, -2.8927160325531811e-06, -2.8927160325531811e-06, -5.2068888585956901e-05, -5.7854320651063715e-06, -7.2317900813829909e-07, -5.7854320651063927e-06, -7.2317900813829708e-07, -5.7854320651063978e-06, -7.2317900813829807e-06, -2.1695370244148956e-06, -5.7854320651063944e-06, -1.0847685122074473e-05, -7.231790081382939e-07, -5.7854320651063698e-06, -1.4463580162766128e-06, -1.4463580162766126e-06, -1.4463580162766094e-06, -7.2317900813830047e-07, -4.3390740488297463e-06, -2.1695370244148549e-06, -5.7854320651064156e-06, -5.7854320651064224e-06, -1.157086413021276e-05, -1.880265421159562e-05, -1.6633117187180588e-05, -7.231790081382939e-07, -1.1570864130212694e-05, -5.785432065106419e-06, -4.3390740488297352e-06, -1.4463580162765874e-06, -7.2317900813829782e-07, -7.2317900813830396e-07, -5.7854320651063622e-05, -5.785432065106327e-05, -0.00011715499931840323, -5.7854320651063263e-05, -5.7854320651063453e-05, -2.8927160325532247e-06, -1.4463580162765874e-06, -5.7854320651063961e-06, -6.5086110732446262e-06, -2.8927160325532239e-06, -7.9549690895211769e-06, -7.2317900813830195e-07, -7.2317900813829443e-07, -1.1570864130212699e-05, -5.7854320651063707e-06, -5.7854320651063817e-06, -7.2317900813829962e-07, -7.2317900813830205e-07, -2.8927160325532031e-06, -2.8927160325532048e-06, -1.1570864130212694e-05, -5.7854320651064224e-06, -7.2317900813829602e-07, -0.00011715499931840447, -5.785432065106419e-06, -5.7854320651064173e-06, -7.2317900813830089e-07, -2.8927160325532048e-06, -2.892716032553204e-06, -1.4463580162765884e-06, -1.4463580162765884e-06, -2.1695370244148841e-06, -7.2317900813830227e-07, -1.4463580162765884e-06, -1.4463580162765884e-06, -7.2317900813829792e-07, -7.2317900813830205e-07, -2.8927160325531828e-06, -8.6781480976595433e-06, -5.785432065106369e-06, -7.2317900813829687e-07, -7.2317900813829443e-07, -1.301722214648923e-05, -7.2317900813830025e-07, -2.8927160325531714e-06, -1.4463580162765925e-06, -1.1570864130212721e-05, -1.1570864130212728e-05, -3.6158950406914692e-06, -2.8927160325531781e-06, -1.4463580162765867e-06, -4.3390740488297734e-06, -6.1470215691755099e-05, -7.2317900813829898e-07, -2.8927160325531773e-06, -2.892716032553179e-06, -1.1570864130212735e-05, -1.1570864130212714e-05, -2.8927160325531989e-06, -2.8927160325531892e-06, -2.8927160325531883e-06, -7.2317900813829697e-07, -3.3266234374361346e-05, 0.00097484530297042252, -7.2317900813830248e-07, -5.7854320651064173e-06, -5.785432065106347e-06, -5.785432065106419e-06, -1.1570864130212714e-05, -5.7854320651063461e-06, -1.1570864130212735e-05, -5.7854320651063461e-06, -5.7854320651063461e-06, -0.00022201595549845674, -5.7854320651064173e-06, -0.00014463580162765822, -5.7854320651063775e-06, -1.446358016276605e-06, -4.339074048829754e-05, -8.6781480976595027e-06, -3.6158950406914692e-06, -4.339074048829754e-05, -7.2317900813829517e-07, -5.7854320651064054e-06, -5.7854320651064037e-06, -0.00011715499931840447, -5.785432065106336e-06, 0.0019583687540385029, -0.00016560799286366928, -2.1695370244148968e-06, -0.00014463580162765832, -5.7854320651063995e-06, -5.7854320651064012e-06, -7.2317900813829814e-07, -5.785432065106402e-06, -5.7854320651064071e-06, -7.2317900813829634e-07, -1.1570864130212728e-05, -1.1570864130212721e-05, -1.4463580162766094e-06, -2.892716032553204e-06, -2.8927160325532048e-06, -5.785432065106419e-06, -5.7854320651064207e-06, -0.00011715499931840323, -5.7854320651064224e-06, -5.7854320651064156e-06, -1.9525833219734111e-05, -6.9425184781276563e-05, -5.7854320651064029e-06, -5.1345709577818741e-05, -8.6781480976596145e-06, -8.6781480976596145e-06, -5.7854320651064198e-06, -5.785432065106441e-06, -7.2317900813829807e-06, -5.7854320651064486e-06, -7.2317900813829604e-06, -1.5186759170904272e-05, -5.7854320651063809e-06, -3.615895040691487e-06, -1.6633117187180781e-05, -5.7854320651063343e-06, -8.6781480976594959e-06, -2.1695370244148498e-06, -3.6158950406914717e-06, -1.4463580162766105e-06, -7.2317900813830205e-07, -7.2317900813829909e-07, -5.7854320651064495e-06, -8.6781480976595874e-06, -4.3390740488297352e-06, -2.8927160325531862e-06, -5.7854320651064257e-06, -5.7854320651063461e-06, -5.7854320651063461e-06, -1.1570864130212692e-05, -5.785432065106358e-06, -2.892716032553179e-06, -1.1570864130212692e-05, -5.7854320651063588e-06, -2.8927160325531773e-06, -5.785432065106347e-06, -7.2317900813829507e-07, -5.7854320651063639e-06, -5.7854320651063656e-06, -1.1570864130212841e-05, -1.7356296195319141e-05, -5.7854320651063961e-06, -1.1570864130212863e-05, -1.1570864130212843e-05, -5.7854320651063597e-06, -5.7854320651063614e-06, -5.7854320651063343e-06, -5.785432065106341e-06, -6.5086110732446143e-06, -2.458808627670228e-05, -1.4463580162765863e-06, -5.7854320651064384e-06, -5.7854320651063571e-06, -6.5086110732446524e-06, -1.8802654211595542e-05, -5.7854320651064224e-06, -5.7854320651063927e-06, -5.7854320651064478e-06, -2.8927160325531781e-06, -2.892716032553179e-06, -7.2317900813830184e-07, -7.2317900813830629e-07, -7.2317900813830248e-07, -1.4463580162766009e-06, -1.2294043138351126e-05, -2.1695370244148736e-05, -8.6781480976595196e-06, -4.3390740488297463e-06, -7.2317900813829867e-07, -2.8927160325531764e-06, -1.1570864130212767e-05, -1.7356296195319148e-05, -5.7854320651064368e-06, -2.8927160325531764e-06, -1.157086413021278e-05, -1.1570864130212774e-05, -2.8927160325531764e-06, 0.0029375531310577557, -5.785432065106336e-06, -7.2317900813830502e-07, -1.446358016276599e-06, -2.8927160325531764e-06, -2.8927160325531989e-06, -6.5086110732446168e-06, -3.6158950406914751e-06, -5.7854320651064156e-06, -1.1570864130212741e-05, -5.2068888585956941e-05, -2.8927160325532188e-06, -7.2317900813829729e-07, -4.339074048829754e-05, -5.785432065106341e-06, -3.4712592390637638e-05, -3.4712592390638295e-05, -3.6158950406914615e-05, -3.4712592390637638e-05, -2.8927160325532188e-06, -2.892716032553218e-06, -5.7854320651063902e-06, -5.7854320651063851e-06, -2.8927160325531921e-06, -2.8927160325531921e-06, -5.7854320651064334e-06, -7.231790081383047e-07, -5.7854320651064368e-06, -7.2317900813829845e-07, -7.2317900813830152e-07, -5.0622530569680676e-05, -2.8927160325531921e-06, -2.8927160325531921e-06, -4.4113919496436364e-05, -1.4463580162766073e-06, -5.2068888585956901e-05, -5.2068888585956914e-05, -5.7854320651063393e-06, -7.2317900813829221e-07, -5.7854320651063444e-06, -5.2068888585956901e-05, -5.2068888585956901e-05, -5.7854320651063817e-06, -5.7854320651063766e-06, -1.4463580162765922e-06, -1.4463580162766033e-06, -1.1570864130212706e-05, -5.7854320651063783e-06, -5.78543206510638e-06, -2.1695370244148892e-06, -1.1570864130212706e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6905987090531703e-05, -9.6423867751771936e-05, -2.410596693794306e-06, -4.8211933875886133e-07, -1.4463580162765918e-06, -4.8211933875886425e-06, -3.8569547100709249e-05, -9.6423867751772266e-07, -4.435497916581555e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100709255e-05, -3.8569547100709249e-05, -3.8569547100708898e-06, -0.00010944108989826144, -9.6423867751772224e-07, -9.6423867751773223e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.410596693794306e-06, -1.4463580162765931e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813830002e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297369e-06, -3.8569547100708906e-06, -7.231790081382979e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886324e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886122e-07, -3.8569547100708915e-06, -8.196028758900625e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971519e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -4.8211933875886341e-06, -5.3033127263474668e-06, -1.9284773550354445e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.8211933875886112e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212724e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594925e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652492e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -4.0498024455744644e-05, -3.8569547100708906e-06, -4.2426501810779768e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709039e-05, -7.7139094201417796e-06, -3.9051666439468047e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.0498024455744644e-05, -3.8569547100709249e-05, -3.8569547100709005e-05, -3.8569547100709106e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886493e-06, -9.6423867751772749e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -1.1570864130212736e-05, -1.446358016276613e-06, -4.2426501810780087e-05, -7.7139094201417813e-06, -3.4712592390638038e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971561e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120426e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390638038e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390638024e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886307e-06, -1.4463580162765918e-06, -3.8569547100708906e-06, -7.2317900813829536e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325531993e-06, -1.4463580162766096e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730463e-05, -1.1088744791453893e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532057e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709106e-05, -3.8569547100709005e-05, -7.8103332878936337e-05, -3.8569547100709005e-05, -3.8569547100709039e-05, -1.9284773550354445e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297285e-06, -1.9284773550354445e-06, -5.3033127263474947e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936161e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4463580162765842e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651063707e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -8.6781480976595094e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -7.713909420141783e-06, -7.713909420141783e-06, -2.4105966937943111e-06, -1.9284773550354457e-06, -9.6423867751772245e-07, -2.8927160325531828e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886144e-07, -2.217748958290769e-05, -4.821193387588612e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00014801063699897173, -3.8569547100708906e-06, -9.6423867751772532e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.8927160325531625e-05, -5.785432065106369e-06, -2.4105966937943136e-06, -2.892716032553195e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936161e-05, 0.0019602972313935386, -3.8569547100708915e-06, -0.00011040532857577944, -1.446358016276591e-06, -9.6423867751772627e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936337e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489232e-05, -4.6283456520850952e-05, -3.8569547100708906e-06, -3.423047305187903e-05, -5.7854320651063639e-06, -5.7854320651063639e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886527e-06, -3.8569547100708898e-06, -4.8211933875886442e-06, -1.0124506113936158e-05, -3.8569547100708906e-06, -2.4105966937943234e-06, -1.1088744791453842e-05, -3.8569547100708915e-06, -5.785432065106369e-06, -1.44635801627661e-06, -2.4105966937943132e-06, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063665e-06, -2.8927160325532044e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354457e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.1570864130212731e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.3390740488297581e-06, -1.6392057517801355e-05, -9.6423867751772224e-07, -3.8569547100708889e-06, -3.8569547100708915e-06, -4.3390740488297581e-06, -1.2535102807730475e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -8.1960287589005776e-06, -1.4463580162765829e-05, -5.785432065106369e-06, -2.8927160325531993e-06, -4.8211933875886144e-07, -1.9284773550354457e-06, -7.7139094201417813e-06, -1.1570864130212731e-05, -3.8569547100708889e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -5.785432065106336e-06, 0.0019602972313935386, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354453e-06, -4.3390740488297513e-06, -2.4105966937943196e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -3.4712592390638051e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531625e-05, -3.8569547100708915e-06, -2.3141728260425811e-05, -2.3141728260425435e-05, -2.4105966937943014e-05, -2.3141728260425811e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.3748353713120503e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.9409279664290589e-05, -9.6423867751772245e-07, -3.4712592390638024e-05, -3.4712592390638038e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.4712592390638038e-05, -3.4712592390638011e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765916e-06, -7.713909420141783e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.026491734485764e-08, -6.0264917344857653e-08, -1.2113248386316544e-05, -1.2052983468971582e-05, -3.0132458672429058e-07, -6.026491734485764e-08, 0.0002453384785109166, -6.0264917344858497e-07, -4.821193387588695e-06, -1.2052983468971531e-07, -5.5443723957268912e-06, -6.0264917344857653e-08, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.821193387588695e-06, -4.8211933875886942e-06, -4.8211933875886101e-07, -1.3680136237282624e-05, -1.2052983468971525e-07, -1.2052983468971739e-05, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971525e-07, -1.2052983468971525e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886091e-07, -3.0132458672429058e-07, -1.8079475203457234e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.026491734485764e-08, -9.0397376017288244e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -5.4238425610370992e-07, -4.8211933875886122e-07, -9.0397376017287947e-07, -1.2052983468971528e-07, -6.0264917344857627e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.026491734485764e-08, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971525e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -9.6423867751772245e-07, -6.0264917344858127e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -6.026491734485764e-08, -4.8211933875886122e-07, -1.0245035948625707e-06, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772224e-07, -1.9284773550354474e-06, -1.5066229336214223e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943051e-07, -4.8211933875886122e-07, -6.0264917344858127e-07, -6.6291409079343028e-07, -2.4105966937943051e-07, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.2052983468971525e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -6.0264917344857627e-08, -4.8211933875886122e-07, -1.2052983468971528e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -9.6423867751772202e-07, -9.6423867751772202e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.026491734485764e-08, -4.8211933875886101e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -1.4463580162766088e-06, -4.8211933875886101e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -1.084768512207422e-06, -2.4105966937943061e-07, -6.026491734485764e-08, -1.2052983468971531e-07, -7.8344392548315805e-07, -4.8211933875886122e-07, -9.6423867751772224e-07, -5.0622530569680839e-06, -4.8211933875886122e-07, -5.3033127263474473e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.8211933875886645e-06, -9.6423867751772245e-07, -4.8814583049335329e-06, -6.0264917344857653e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943051e-07, -5.0622530569680822e-06, -4.821193387588695e-06, -4.8211933875886603e-06, -4.821193387588673e-06, -6.026491734485764e-08, -2.4105966937943051e-07, -6.0264917344857653e-08, -6.026491734485764e-08, -6.0264917344857627e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886112e-07, -6.0264917344858603e-07, -1.2052983468971691e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -4.8211933875886112e-07, -1.44635801627661e-06, -1.8079475203457887e-07, -5.3033127263474888e-06, -9.6423867751772224e-07, -4.3390740488297047e-06, -6.0264917344857653e-08, -6.0264917344857653e-08, -1.5066229336214566e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.2185442141400284e-07, -2.4105966937943051e-07, -1.2052983468971528e-07, -4.3390740488297031e-06, -1.2052983468971528e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.3390740488297031e-06, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344858349e-07, -1.8079475203457623e-07, -4.8211933875886122e-07, -9.0397376017287651e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -1.2052983468971525e-07, -1.2052983468971525e-07, -1.2052983468971536e-07, -6.0264917344857653e-08, -3.6158950406915447e-07, -1.8079475203457848e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -1.5668878509663119e-06, -1.3860930989317234e-06, -6.0264917344857653e-08, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.6158950406915521e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.821193387588673e-06, -4.8211933875886603e-06, -9.7629166098670947e-06, -4.8211933875886603e-06, -4.8211933875886645e-06, -2.4105966937943051e-07, -1.2052983468971531e-07, -4.8211933875886101e-07, -5.4238425610370886e-07, -2.4105966937943051e-07, -6.6291409079343398e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.026491734485764e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -9.6423867751772224e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -9.7629166098670726e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.807947520345762e-07, -6.026491734485764e-08, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -6.026491734485764e-08, -2.4105966937943051e-07, -7.2317900813830523e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -1.0847685122074245e-06, -6.0264917344857653e-08, -2.4105966937943051e-07, -1.2052983468971528e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.0132458672429196e-07, -2.4105966937943061e-07, -1.2052983468971528e-07, -3.615895040691524e-07, -5.1225179743129167e-06, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.0264917344857653e-08, -2.7721861978634359e-06, -6.0264917344858127e-07, -6.026491734485764e-08, -4.8211933875886112e-07, -4.8211933875886101e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -4.8211933875886101e-07, -9.6423867751772245e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -1.8501329624871694e-05, -4.8211933875886122e-07, -1.2052983468971614e-05, -4.8211933875886122e-07, -1.2052983468971528e-07, -3.6158950406914819e-06, -7.2317900813830523e-07, -3.0132458672429159e-07, -3.615895040691523e-06, -6.0264917344857653e-08, -4.8211933875886112e-07, -4.8211933875886112e-07, -9.7629166098670726e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.3800666071972319e-05, -1.807947520345761e-07, -1.2052983468971668e-05, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886112e-07, -4.8211933875886112e-07, -6.0264917344857653e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971536e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.7629166098670947e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.627152768311151e-06, -5.7854320651064401e-06, -4.8211933875886122e-07, -4.2788091314848338e-06, -7.2317900813830438e-07, -7.2317900813830438e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -6.0264917344858635e-07, -4.8211933875886101e-07, -6.0264917344858497e-07, -1.2655632642420201e-06, -4.8211933875886122e-07, -3.013245867242928e-07, -1.3860930989317175e-06, -4.8211933875886122e-07, -7.2317900813830523e-07, -1.8079475203457856e-07, -3.0132458672429153e-07, -1.2052983468971525e-07, -6.026491734485764e-08, -6.0264917344857653e-08, -4.8211933875886101e-07, -7.2317900813830481e-07, -3.615895040691551e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -4.8211933875886101e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772202e-07, -1.4463580162766096e-06, -4.8211933875886122e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -5.4238425610371246e-07, -2.0490071897251541e-06, -1.2052983468971525e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -5.4238425610371246e-07, -1.5668878509663131e-06, -4.8211933875886101e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.0264917344857653e-08, -6.0264917344857627e-08, -6.026491734485764e-08, -1.2052983468971531e-07, -1.0245035948625648e-06, -1.8079475203457431e-06, -7.2317900813830523e-07, -3.6158950406915447e-07, -6.0264917344857653e-08, -2.4105966937943061e-07, -9.6423867751772224e-07, -1.4463580162766094e-06, -4.8211933875886101e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -7.2317900813830502e-07, -4.8211933875886122e-07, 0.00024545900834560639, -1.2052983468971525e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -5.4238425610371161e-07, -3.0132458672429238e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.3390740488297047e-06, -2.4105966937943051e-07, -6.0264917344857653e-08, -3.6158950406914819e-06, -4.8211933875886122e-07, -2.8927160325532624e-06, -2.8927160325532192e-06, -3.0132458672429026e-06, -2.8927160325532624e-06, -2.4105966937943051e-07, -2.4105966937943051e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886112e-07, -6.0264917344857653e-08, -4.8211933875886112e-07, -6.0264917344857653e-08, -6.026491734485764e-08, -4.2185442141400171e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -3.6761599580363456e-06, -1.2052983468971528e-07, -4.3390740488297031e-06, -4.3390740488297031e-06, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.3390740488297047e-06, -4.3390740488296963e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.807947520345762e-07, -9.6423867751772245e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971528e-07, -1.2052983468971531e-07, -2.4226496772632611e-05, -2.4105966937942709e-05, -6.0264917344858455e-07, -1.2052983468971528e-07, -3.6158950406915171e-07, -1.2052983468971691e-06, -9.6423867751774409e-06, -2.4105966937943061e-07, -1.1088744791454004e-05, -1.2052983468971531e-07, -1.928477355035444e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751774409e-06, -9.6423867751774375e-06, -9.6423867751772202e-07, -2.7360272474565604e-05, -2.4105966937943051e-07, -2.4105966937943028e-05, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772202e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943051e-07, -2.4105966937943051e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772224e-07, -6.0264917344858455e-07, -3.6158950406914658e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971528e-07, -1.8079475203457384e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.0847685122074425e-06, -9.6423867751772245e-07, -1.8079475203457321e-06, -2.4105966937943056e-07, -1.2052983468971525e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943051e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.205298346897174e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.2052983468971531e-07, -9.6423867751772245e-07, -2.049007189725158e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.9284773550354445e-06, -3.8569547100708873e-06, -3.0132458672428463e-06, -9.6423867751772245e-07, -1.9284773550354445e-06, -1.928477355035444e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -1.2052983468971744e-06, -1.3258281815868606e-06, -4.8211933875886101e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -2.4105966937943051e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971525e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.928477355035444e-06, -1.928477355035444e-06, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971528e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.8927160325532442e-06, -9.6423867751772202e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -4.8211933875886122e-07, -2.1695370244148977e-06, -4.8211933875886122e-07, -1.2052983468971533e-07, -2.4105966937943061e-07, -1.5668878509663157e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.0124506113936178e-05, -9.6423867751772245e-07, -1.0606625452694869e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.928477355035444e-06, -9.6423867751773782e-06, -1.9284773550354445e-06, -9.7629166098671048e-06, -1.2052983468971531e-07, -1.9284773550354445e-06, -1.928477355035444e-06, -4.8211933875886112e-07, -1.0124506113936178e-05, -9.6423867751774409e-06, -9.6423867751773714e-06, -9.6423867751773969e-06, -1.2052983468971531e-07, -4.8211933875886101e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971525e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.2052983468971721e-06, -2.410596693794339e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -2.8927160325531726e-06, -3.6158950406914134e-07, -1.0606625452694951e-05, -1.9284773550354445e-06, -8.6781480976596246e-06, -1.2052983468971531e-07, -1.2052983468971531e-07, -3.0132458672428565e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -8.4370884282800579e-07, -4.8211933875886101e-07, -2.4105966937943056e-07, -8.6781480976596213e-06, -2.4105966937943056e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -8.6781480976596213e-06, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.2052983468971687e-06, -3.6158950406914658e-07, -9.6423867751772245e-07, -1.8079475203457278e-06, -1.2052983468971531e-07, -9.6423867751772245e-07, -2.4105966937943051e-07, -2.4105966937943051e-07, -2.4105966937943051e-07, -1.2052983468971533e-07, -7.2317900813829718e-07, -3.6158950406915103e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -3.1337757019326297e-06, -2.7721861978635024e-06, -1.2052983468971531e-07, -1.9284773550354449e-06, -9.6423867751772266e-07, -7.2317900813828787e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -1.2052983468971533e-07, -9.6423867751773969e-06, -9.6423867751773714e-06, -1.9525833219734267e-05, -9.6423867751773714e-06, -9.6423867751773782e-06, -4.8211933875886101e-07, -2.4105966937943061e-07, -9.6423867751772202e-07, -1.0847685122074446e-06, -4.8211933875886101e-07, -1.3258281815868637e-06, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -9.6423867751772266e-07, -1.2052983468971531e-07, -1.9525833219734223e-05, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -3.6158950406914658e-07, -1.2052983468971528e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -4.8211933875886112e-07, -1.4463580162765867e-06, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -2.1695370244148642e-06, -1.2052983468971531e-07, -4.8211933875886069e-07, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, 0.00024491662408950254, -4.8211933875886122e-07, -2.4105966937943056e-07, -7.2317900813829295e-07, -1.0245035948625833e-05, -1.2052983468971533e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -5.5443723957269793e-06, -1.2052983468971691e-06, -1.2052983468971531e-07, -9.6423867751772224e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -9.6423867751772202e-07, -1.9284773550354449e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -3.7002659249742547e-05, -9.6423867751772266e-07, -2.4105966937942865e-05, -9.6423867751772245e-07, -2.4105966937943056e-07, -7.2317900813828994e-06, -1.4463580162765939e-06, -6.0264917344858646e-07, -7.2317900813829435e-06, -1.2052983468971531e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.9525833219734223e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.7601332143945064e-05, -3.6158950406914944e-07, -2.4105966937942886e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943051e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9525833219734267e-05, -9.6423867751772224e-07, -9.6423867751772224e-07, -3.2543055366223055e-06, -1.1570864130212718e-05, -9.6423867751772245e-07, -8.5576182629698455e-06, -1.4463580162766096e-06, -1.4463580162766096e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971729e-06, -9.6423867751772245e-07, -1.2052983468971763e-06, -2.5311265284840419e-06, -9.6423867751772245e-07, -6.0264917344858561e-07, -2.7721861978634897e-06, -9.6423867751772245e-07, -1.4463580162765931e-06, -3.6158950406914489e-07, -6.0264917344858624e-07, -2.4105966937943051e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772202e-07, -1.4463580162765859e-06, -7.2317900813829845e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -9.6423867751772202e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.928477355035444e-06, -2.8927160325531921e-06, -9.6423867751772245e-07, -1.928477355035444e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.0847685122074518e-06, -4.0980143794502863e-06, -2.4105966937943056e-07, -9.6423867751772202e-07, -9.6423867751772245e-07, -1.0847685122074366e-06, 0.00024238549756101885, -9.6423867751772224e-07, -9.6423867751772245e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -1.2052983468971525e-07, -1.2052983468971531e-07, -2.4105966937943061e-07, -2.0490071897251457e-06, -3.6158950406914421e-06, -1.4463580162765889e-06, -7.2317900813829718e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -2.8927160325531968e-06, -9.6423867751772202e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -1.446358016276599e-06, -9.6423867751772245e-07, -1.2052983468971525e-07, 0.00049079748685652272, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.0847685122074501e-06, -6.0264917344858476e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -8.6781480976595908e-06, -4.8211933875886112e-07, -1.2052983468971531e-07, -7.2317900813828655e-06, -9.6423867751772245e-07, -5.78543206510643e-06, -5.7854320651063436e-06, -6.0264917344856918e-06, -5.78543206510643e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.2052983468971525e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -8.4370884282801968e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.3523199160726201e-06, -2.4105966937943056e-07, -8.6781480976596213e-06, -8.6781480976596213e-06, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -8.6781480976596246e-06, -8.6781480976596077e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.6158950406914965e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8452993545265973e-05, -4.8211933875886103e-05, -1.205298346897156e-06, -2.4105966937943066e-07, -7.2317900813829856e-07, -2.4105966937943272e-06, -1.9284773550354672e-05, -4.8211933875886133e-07, -2.2177489582907697e-05, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354675e-05, -1.9284773550354672e-05, -1.9284773550354449e-06, -5.4720544949130585e-05, -4.8211933875886112e-07, -4.8211933875886747e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.928477355035444e-06, -1.205298346897156e-06, -7.2317900813829888e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -3.6158950406915111e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.1695370244148583e-06, -1.9284773550354453e-06, -3.6158950406915009e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886112e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -3.8569547100708906e-06, -2.4105966937943221e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -2.4105966937943061e-07, -1.9284773550354457e-06, -4.0980143794503015e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -7.7139094201417762e-06, -6.0264917344857765e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -1.9284773550354453e-06, -2.410596693794323e-06, -2.6516563631737304e-06, -9.6423867751772224e-07, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -2.4105966937943056e-07, -1.9284773550354457e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -5.7854320651063868e-06, -1.9284773550354445e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -4.3390740488297251e-06, -9.6423867751772287e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -3.1337757019326275e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -2.0249012227872329e-05, -1.9284773550354453e-06, -2.121325090538986e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -1.9284773550354567e-05, -3.8569547100708898e-06, -1.9525833219734057e-05, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -2.0249012227872329e-05, -1.9284773550354672e-05, -1.928477355035455e-05, -1.9284773550354601e-05, -2.4105966937943061e-07, -9.6423867751772202e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -2.4105966937943056e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.9284773550354449e-06, -2.4105966937943306e-06, -4.8211933875886493e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -5.7854320651063927e-06, -7.2317900813830957e-07, -2.1213250905390003e-05, -3.8569547100708906e-06, -1.7356296195318927e-05, -2.4105966937943066e-07, -2.4105966937943072e-07, -6.0264917344857985e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -1.6874176856560175e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -1.7356296195318921e-05, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.7356296195318921e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -2.4105966937943213e-06, -7.2317900813829898e-07, -1.9284773550354453e-06, -3.615895040691487e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.4463580162766058e-06, -7.2317900813830798e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -6.2675514038652373e-06, -5.5443723957269268e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.446358016276609e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.9284773550354601e-05, -1.928477355035455e-05, -3.9051666439468236e-05, -1.928477355035455e-05, -1.9284773550354567e-05, -9.6423867751772224e-07, -4.8211933875886133e-07, -1.9284773550354445e-06, -2.1695370244148541e-06, -9.6423867751772224e-07, -2.6516563631737444e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.8569547100708898e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.9051666439468148e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -7.2317900813829528e-07, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -2.4105966937943061e-07, -9.6423867751772224e-07, -2.8927160325531976e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -4.3390740488297352e-06, -2.4105966937943066e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.2052983468971564e-06, -9.6423867751772287e-07, -4.8211933875886122e-07, -1.4463580162765978e-06, -2.0490071897251667e-05, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943072e-07, -1.1088744791453811e-05, -2.4105966937943119e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.4005318499486178e-05, -1.9284773550354453e-06, -4.8211933875886408e-05, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.4463580162765856e-05, -2.8927160325531968e-06, -1.2052983468971598e-06, -1.4463580162766017e-05, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.9051666439468148e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -5.5202664287889572e-05, -7.2317900813829856e-07, -4.8211933875886456e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.9051666439468236e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -6.5086110732446126e-06, -2.3141728260425574e-05, -1.9284773550354453e-06, -1.711523652593944e-05, -2.8927160325531942e-06, -2.8927160325531942e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943323e-06, -1.9284773550354449e-06, -2.410596693794328e-06, -5.0622530569680805e-06, -1.9284773550354453e-06, -1.2052983468971647e-06, -5.5443723957269039e-06, -1.9284773550354457e-06, -2.8927160325531968e-06, -7.2317900813830819e-07, -1.2052983468971596e-06, -4.8211933875886112e-07, -2.4105966937943061e-07, -2.4105966937943072e-07, -1.9284773550354449e-06, -2.8927160325531955e-06, -1.4463580162766083e-06, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -3.8569547100708889e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -1.9284773550354449e-06, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -5.7854320651063902e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.1695370244148685e-06, -8.1960287589006538e-06, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354457e-06, -2.1695370244148685e-06, -6.2675514038652432e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -2.4105966937943056e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.0980143794502778e-06, -7.2317900813829367e-06, -2.8927160325531968e-06, -1.4463580162766058e-06, -2.4105966937943072e-07, 0.00098111285437428694, -3.8569547100708906e-06, -5.7854320651063893e-06, -1.9284773550354445e-06, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -2.8927160325531764e-06, -1.9284773550354457e-06, -2.4105966937943061e-07, -4.8211933875886122e-07, 0.00098111285437428694, -9.6423867751772266e-07, -2.1695370244148651e-06, -1.2052983468971627e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -1.7356296195318948e-05, -9.6423867751772245e-07, -2.4105966937943072e-07, -1.4463580162765853e-05, -1.9284773550354457e-06, -1.1570864130212955e-05, -1.1570864130212765e-05, -1.2052983468971541e-05, -1.1570864130212955e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.687417685656019e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4704639832145321e-05, -4.8211933875886122e-07, -1.7356296195318921e-05, -1.7356296195318921e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.7356296195318927e-05, -1.7356296195318907e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.2317900813829888e-07, -3.8569547100708915e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8452993545265987e-05, -4.8211933875886124e-05, -1.2052983468971577e-06, -2.4105966937943066e-07, -7.2317900813829919e-07, -2.4105966937943306e-06, -1.9284773550354699e-05, -4.8211933875886133e-07, -2.2177489582907687e-05, -2.4105966937943072e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354699e-05, -1.9284773550354699e-05, -1.9284773550354449e-06, -5.4720544949130537e-05, -4.8211933875886122e-07, -4.8211933875886767e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.9284773550354445e-06, -1.2052983468971577e-06, -7.2317900813829972e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -3.6158950406915145e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.1695370244148659e-06, -1.9284773550354457e-06, -3.6158950406915026e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.9284773550354457e-06, -3.8569547100708915e-06, -2.4105966937943255e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -4.0980143794503015e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -6.026491734485779e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -2.4105966937943263e-06, -2.6516563631737347e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354453e-06, -2.4105966937943056e-07, -1.9284773550354453e-06, -4.8211933875886133e-07, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -2.4105966937943066e-07, -1.9284773550354457e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -5.7854320651063944e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354453e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -4.3390740488297217e-06, -9.6423867751772287e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -3.1337757019326288e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -2.0249012227872322e-05, -1.9284773550354453e-06, -2.1213250905389837e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -1.928477355035458e-05, -3.8569547100708898e-06, -1.9525833219734071e-05, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -2.0249012227872315e-05, -1.9284773550354699e-05, -1.9284773550354563e-05, -1.9284773550354614e-05, -2.4105966937943066e-07, -9.6423867751772245e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -2.4105966937943213e-06, -4.8211933875886578e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -5.7854320651063986e-06, -7.2317900813831042e-07, -2.1213250905390006e-05, -3.8569547100708906e-06, -1.7356296195318958e-05, -2.4105966937943066e-07, -2.4105966937943072e-07, -6.0264917344858002e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -1.6874176856560427e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -1.7356296195318958e-05, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.7356296195318948e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -2.4105966937943145e-06, -7.2317900813829972e-07, -1.9284773550354457e-06, -3.6158950406914904e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.4463580162766071e-06, -7.2317900813830872e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -6.267551403865239e-06, -5.5443723957269226e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.4463580162766105e-06, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.9284773550354614e-05, -1.9284773550354563e-05, -3.905166643946825e-05, -1.9284773550354563e-05, -1.928477355035458e-05, -9.6423867751772245e-07, -4.8211933875886133e-07, -1.9284773550354445e-06, -2.1695370244148524e-06, -9.6423867751772245e-07, -2.651656363173741e-06, -2.4105966937943066e-07, -2.4105966937943072e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.8569547100708898e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.9051666439468169e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -7.2317900813829972e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -9.6423867751772245e-07, -2.8927160325531989e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297319e-06, -2.4105966937943066e-07, -9.6423867751772202e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.2052983468971632e-06, -9.6423867751772266e-07, -4.8211933875886133e-07, -1.446358016276599e-06, -2.0490071897251667e-05, -2.4105966937943072e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, 0.00098111285437428629, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.1088744791453794e-05, -2.4105966937943158e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -7.4005318499486219e-05, -1.9284773550354453e-06, -4.8211933875886429e-05, -1.9284773550354457e-06, -4.8211933875886122e-07, -1.4463580162765873e-05, -2.8927160325531752e-06, -1.2052983468971615e-06, -1.4463580162766038e-05, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.9051666439468169e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -5.5202664287889545e-05, -7.2317900813829951e-07, -4.8211933875886469e-05, -1.9284773550354453e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.905166643946825e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -6.5086110732447202e-06, -2.3141728260425584e-05, -1.9284773550354457e-06, -1.7115236525939423e-05, -2.8927160325531972e-06, -2.8927160325531972e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -2.4105966937943221e-06, -1.9284773550354449e-06, -2.4105966937943297e-06, -5.0622530569680771e-06, -1.9284773550354457e-06, -1.2052983468971594e-06, -5.5443723957268971e-06, -1.9284773550354453e-06, -2.8927160325531718e-06, -7.2317900813828935e-07, -1.2052983468971611e-06, -4.8211933875886122e-07, -2.4105966937943066e-07, -2.4105966937943072e-07, -1.9284773550354449e-06, -2.8927160325531989e-06, -1.4463580162766096e-06, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354445e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -1.9284773550354457e-06, -9.6423867751772266e-07, -1.9284773550354445e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -5.7854320651063978e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.1695370244148676e-06, -8.1960287589006504e-06, -4.8211933875886112e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -2.1695370244149095e-06, -6.2675514038652458e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -2.4105966937943061e-07, -2.4105966937943066e-07, -4.8211933875886144e-07, -4.0980143794502769e-06, -7.2317900813829367e-06, -2.8927160325531853e-06, -1.4463580162766071e-06, -2.4105966937943072e-07, -9.6423867751772266e-07, -3.8569547100708906e-06, -5.7854320651063969e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -2.8927160325531989e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, 0.00098111285437428629, -2.1695370244148634e-06, -1.2052983468971644e-06, -1.9284773550354453e-06, -3.8569547100708915e-06, -1.7356296195318934e-05, -9.6423867751772245e-07, -2.4105966937943072e-07, -1.4463580162765873e-05, -1.9284773550354453e-06, -1.1570864130212967e-05, -1.1570864130212792e-05, -1.2052983468971556e-05, -1.1570864130212967e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.687417685656017e-05, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4704639832145342e-05, -4.8211933875886122e-07, -1.7356296195318948e-05, -1.7356296195318958e-05, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.7356296195318958e-05, -1.7356296195318921e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.2317900813829845e-07, -3.8569547100708915e-06, -4.3390740488298123e-06, -4.339074048829831e-06, -4.3390740488298259e-06, -4.339074048829814e-06, -2.1695370244148875e-06, -2.1695370244148884e-06, -4.3390740488297564e-06, -4.3390740488297581e-06, -5.4238425610371394e-07, -5.4238425610371458e-07, -0.00010901923547684722, -0.00010847685122074466, -2.7119212805186056e-06, -5.4238425610371394e-07, -1.6271527683111479e-06, -5.4238425610371765e-06, -4.3390740488297303e-05, -1.0847685122074292e-06, -4.989935156154276e-05, -5.4238425610372019e-07, -8.6781480976594027e-06, -8.6781480976594129e-06, -4.3390740488297615e-06, -4.3390740488297547e-06, -4.3390740488297303e-05, -4.3390740488297303e-05, -4.339074048829698e-06, -0.00012312122613554431, -1.0847685122074211e-06, -0.00010847685122074319, -8.6781480976593959e-06, -4.3390740488298293e-06, -4.3390740488298089e-06, -5.423842561037204e-07, -5.4238425610371394e-07, -4.3390740488297234e-06, -4.3390740488297183e-06, -1.0847685122074211e-06, -1.0847685122074215e-06, -5.423842561037204e-07, -5.4238425610371669e-07, -4.3390740488296963e-06, -2.7119212805186009e-06, -1.6271527683111529e-06, -2.1695370244148892e-06, -2.1695370244148858e-06, -5.4238425610371394e-07, -8.1357638415557253e-06, -4.3390740488297335e-06, -4.3390740488297319e-06, -4.8814583049335211e-06, -4.3390740488297632e-06, -8.135763841555749e-06, -1.0847685122074279e-06, -5.4238425610371161e-07, -4.3390740488297615e-06, -4.3390740488297581e-06, -5.4238425610371373e-07, -5.4238425610371542e-07, -4.3390740488297302e-06, -4.3390740488297352e-06, -1.0847685122074275e-06, -5.4238425610371765e-07, -4.3390740488297479e-06, -8.6781480976595637e-06, -5.4238425610371892e-06, -4.3390740488297217e-06, -8.6781480976595094e-06, -5.4238425610371352e-07, -4.3390740488297446e-06, -9.2205323537633224e-06, -4.3390740488297251e-06, -4.3390740488297412e-06, -8.6781480976594095e-06, -1.7356296195319229e-05, -1.3559606402592879e-05, -4.3390740488297564e-06, -8.678148097659423e-06, -8.6781480976594332e-06, -2.1695370244148431e-06, -4.3390740488297369e-06, -5.4238425610371883e-06, -5.966226817141069e-06, -2.1695370244148431e-06, -8.6781480976596009e-06, -4.3390740488297234e-06, -4.3390740488297234e-06, -4.33907404882972e-06, -1.0847685122074493e-06, -4.3390740488296963e-06, -4.3390740488297564e-06, -5.4238425610371055e-07, -4.3390740488297598e-06, -1.084768512207437e-06, -4.339074048829698e-06, -4.3390740488297268e-06, -4.33907404882972e-06, -5.4238425610372866e-07, -8.6781480976594264e-06, -8.6781480976594197e-06, -5.4238425610372781e-07, -4.3390740488297251e-06, -4.3390740488297285e-06, -5.4238425610371458e-07, -4.3390740488296878e-06, -4.3390740488296946e-06, -4.3390740488297429e-06, -4.3390740488296912e-06, -1.3017222146489183e-05, -4.3390740488296929e-06, -4.3390740488297513e-06, -4.3390740488297429e-06, -5.423842561037169e-07, -4.3390740488297446e-06, -4.3390740488297395e-06, -8.6781480976595908e-06, -2.1695370244148858e-06, -9.7629166098670083e-06, -2.1695370244148892e-06, -5.4238425610371161e-07, -1.0847685122074325e-06, -7.0509953293484865e-06, -4.33907404882972e-06, -8.6781480976595806e-06, -4.5560277512712006e-05, -4.3390740488297302e-06, -4.7729814537127814e-05, -4.3390740488297352e-06, -4.3390740488297429e-06, -8.6781480976594332e-06, -4.3390740488297534e-05, -8.678148097659423e-06, -4.3933124744401238e-05, -5.4238425610372019e-07, -8.6781480976594163e-06, -8.67814809765944e-06, -2.1695370244149087e-06, -4.5560277512712006e-05, -4.3390740488297303e-05, -4.3390740488297547e-05, -4.33907404882975e-05, -5.4238425610371373e-07, -2.1695370244148583e-06, -5.4238425610371807e-07, -5.4238425610371246e-07, -5.4238425610371076e-07, -4.3390740488297217e-06, -4.33907404882972e-06, -4.3390740488297234e-06, -4.3390740488297217e-06, -5.4238425610371807e-07, -5.4238425610371743e-07, -5.4238425610371807e-07, -4.3390740488297031e-06, -5.4238425610371663e-06, -1.084768512207437e-05, -8.6781480976595874e-06, -8.6781480976594739e-06, -4.3390740488297047e-06, -1.3017222146489229e-05, -1.6271527683111534e-06, -4.772981453712824e-05, -8.6781480976594857e-06, -3.9051666439468446e-05, -5.4238425610371415e-07, -5.4238425610371606e-07, -1.3559606402593148e-05, -8.6781480976595908e-06, -4.3390740488297335e-06, -3.7966897927260646e-06, -2.1695370244148863e-06, -1.0847685122074283e-06, -3.9051666439468446e-05, -1.0847685122074279e-06, -2.1695370244148884e-06, -2.1695370244148875e-06, -3.9051666439468446e-05, -4.3390740488297869e-06, -5.423842561037259e-07, -4.3390740488297335e-06, -5.4238425610371807e-07, -4.3390740488297412e-06, -5.4238425610371866e-06, -1.6271527683111523e-06, -4.3390740488297352e-06, -8.1357638415557694e-06, -5.423842561037204e-07, -4.3390740488297818e-06, -1.0847685122074211e-06, -1.0847685122074215e-06, -1.0847685122074236e-06, -5.4238425610371542e-07, -3.2543055366223118e-06, -1.6271527683111536e-06, -4.3390740488297132e-06, -4.3390740488297064e-06, -8.6781480976595061e-06, 0.0019500521954449233, -1.2474837890385693e-05, -5.423842561037204e-07, -8.6781480976595162e-06, -4.3390740488297115e-06, -3.254305536622311e-06, -1.0847685122074366e-06, -5.4238425610371743e-07, -5.4238425610371246e-07, -4.33907404882975e-05, -4.3390740488297547e-05, -8.7866249488802896e-05, -4.3390740488297547e-05, -4.3390740488297534e-05, -2.1695370244148431e-06, -1.0847685122074383e-06, -4.3390740488297886e-06, -4.8814583049335194e-06, -2.1695370244148431e-06, -5.9662268171410123e-06, -5.4238425610371394e-07, -5.4238425610372019e-07, -8.6781480976594569e-06, -4.3390740488297496e-06, -4.3390740488297971e-06, -5.4238425610371606e-07, -5.4238425610371394e-07, -2.1695370244149095e-06, -2.1695370244149138e-06, -8.6781480976595196e-06, -4.3390740488297064e-06, -5.4238425610372294e-07, -8.7866249488802151e-05, -4.3390740488297098e-06, -4.3390740488297115e-06, -5.4238425610372781e-07, -2.1695370244149129e-06, -2.1695370244149112e-06, -1.0847685122074404e-06, -1.0847685122074404e-06, -1.6271527683111532e-06, -5.4238425610371373e-07, -1.0847685122074404e-06, -1.0847685122074404e-06, -5.4238425610371743e-07, -5.4238425610371373e-07, -2.1695370244148875e-06, -6.5086110732446304e-06, -4.3390740488297513e-06, -5.4238425610371828e-07, -5.4238425610372019e-07, -9.7629166098670659e-06, -5.4238425610371542e-07, -2.1695370244148985e-06, -1.0847685122074472e-06, -8.6781480976595162e-06, -8.6781480976595094e-06, -2.7119212805185912e-06, -2.1695370244148642e-06, -1.0847685122074308e-06, -3.2543055366223139e-06, -4.6102661768816876e-05, -5.4238425610371648e-07, -2.1695370244148651e-06, -2.1695370244148634e-06, -8.6781480976594993e-06, -8.6781480976595264e-06, -2.1695370244148634e-06, -2.1695370244148723e-06, -2.1695370244148723e-06, -5.4238425610371807e-07, 0.00022056959748217804, -5.4238425610372002e-06, -5.4238425610371331e-07, -4.3390740488297115e-06, -4.3390740488297886e-06, -4.3390740488297098e-06, -8.6781480976595264e-06, -4.3390740488297751e-06, -8.6781480976594993e-06, -4.3390740488297886e-06, -4.3390740488297886e-06, -0.00016651196662384229, -4.3390740488297132e-06, -0.00010847685122074395, -4.3390740488297446e-06, -1.084768512207427e-06, -3.2543055366223254e-05, -6.5086110732446202e-06, -2.711921280518598e-06, -3.2543055366222928e-05, -5.4238425610372188e-07, -4.33907404882972e-06, -4.3390740488297234e-06, -8.7866249488802151e-05, -4.3390740488297513e-06, -4.339074048829753e-06, -0.00012420599464775146, -1.6271527683111504e-06, -0.00010847685122074393, -4.3390740488297285e-06, -4.3390740488297251e-06, -5.4238425610371712e-07, -4.3390740488297251e-06, -4.3390740488297183e-06, -5.423842561037187e-07, -8.6781480976595094e-06, -8.6781480976595162e-06, -1.0847685122074236e-06, -2.1695370244149112e-06, -2.1695370244149129e-06, -4.3390740488297115e-06, -4.3390740488297081e-06, -8.7866249488802896e-05, -4.3390740488297064e-06, -4.3390740488297132e-06, -1.4644374914800674e-05, -5.2068888585956894e-05, -4.3390740488297234e-06, -3.8509282183364329e-05, -6.5086110732446685e-06, -6.5086110732446634e-06, -4.3390740488297081e-06, -4.3390740488296946e-06, -5.4238425610371705e-06, -4.3390740488296878e-06, -5.4238425610371765e-06, -1.1390069378178002e-05, -4.3390740488297496e-06, -2.7119212805185874e-06, -1.2474837890385639e-05, -4.3390740488297479e-06, -6.5086110732446185e-06, -1.6271527683111538e-06, -2.7119212805185971e-06, -1.0847685122074232e-06, -5.4238425610371373e-07, -5.4238425610372612e-07, -4.3390740488298089e-06, -6.5086110732447634e-06, -3.2543055366223554e-06, -2.1695370244148748e-06, -4.3390740488298276e-06, -4.339074048829698e-06, -4.3390740488297886e-06, -8.6781480976595569e-06, -4.3390740488297615e-06, -2.1695370244148634e-06, -8.6781480976595298e-06, -4.3390740488297581e-06, -2.1695370244148651e-06, -4.3390740488297886e-06, -5.4238425610372188e-07, -4.3390740488297581e-06, -4.3390740488297615e-06, -8.6781480976594197e-06, -1.3017222146489217e-05, -4.3390740488297369e-06, -8.6781480976593959e-06, -8.6781480976594197e-06, -4.3390740488297581e-06, -4.3390740488297564e-06, -4.3390740488297479e-06, -4.3390740488297547e-06, -4.8814583049335262e-06, -1.8441064707526689e-05, -1.0847685122074514e-06, -4.3390740488296929e-06, -4.3390740488297615e-06, -4.8814583049335541e-06, -1.4101990658697014e-05, -4.339074048829831e-06, -4.3390740488297335e-06, -4.3390740488298123e-06, -2.1695370244148642e-06, -2.1695370244148634e-06, -5.4238425610372908e-07, -5.4238425610371076e-07, -5.4238425610371352e-07, -1.0847685122074308e-06, -9.220532353763463e-06, -1.6271527683111471e-05, -6.5086110732446236e-06, -3.2543055366223118e-06, -5.4238425610372569e-07, -2.1695370244148651e-06, -8.6781480976594857e-06, -1.3017222146489207e-05, -4.3390740488296946e-06, -2.1695370244148659e-06, -8.6781480976594637e-06, -8.6781480976594739e-06, -2.1695370244148659e-06, -6.5086110732446168e-06, -4.3390740488297513e-06, -5.4238425610371161e-07, -1.0847685122074501e-06, -2.1695370244148651e-06, -2.1695370244148634e-06, 0.0022047920010616322, -2.7119212805185908e-06, -4.339074048829831e-06, -8.6781480976595637e-06, -3.9051666439468047e-05, -2.1695370244149087e-06, -5.4238425610371786e-07, -3.2543055366223199e-05, -4.3390740488297429e-06, -2.6034444292978461e-05, -2.6034444292978454e-05, -2.7119212805185768e-05, -2.6034444292978461e-05, -2.1695370244149095e-06, -2.1695370244149095e-06, -4.3390740488297335e-06, -4.3390740488297412e-06, -2.1695370244148697e-06, -2.1695370244148706e-06, -4.339074048829698e-06, -5.4238425610371182e-07, -4.3390740488296963e-06, -5.423842561037169e-07, -5.4238425610371458e-07, -3.7966897927260665e-05, -2.1695370244148706e-06, -2.1695370244148697e-06, -3.3085439622326714e-05, -1.0847685122074253e-06, -3.9051666439468446e-05, -3.9051666439468446e-05, -4.3390740488297446e-06, -5.4238425610371786e-07, -4.3390740488297369e-06, -3.9051666439468446e-05, -3.9051666439468019e-05, -4.3390740488297971e-06, -4.3390740488297818e-06, -1.0847685122074374e-06, -1.0847685122074283e-06, -8.678148097659523e-06, -4.3390740488297869e-06, -4.339074048829792e-06, -1.6271527683111589e-06, -8.678148097659523e-06, -2.4105966937943416e-06, -2.4105966937943365e-06, -2.4105966937943365e-06, -2.4105966937943416e-06, -1.2052983468971602e-06, -1.2052983468971602e-06, -2.4105966937943183e-06, -2.4105966937943187e-06, -3.0132458672429143e-07, -3.0132458672429143e-07, -6.0566241931582423e-05, -6.0264917344858053e-05, -1.5066229336214543e-06, -3.0132458672429143e-07, -9.039737601728637e-07, -3.0132458672428531e-06, -2.4105966937943096e-05, -6.0264917344858286e-07, -2.7721861978634603e-05, -3.0132458672428973e-07, -4.8211933875886713e-06, -4.821193387588673e-06, -2.4105966937943191e-06, -2.4105966937943179e-06, -2.4105966937943102e-05, -2.4105966937943102e-05, -2.4105966937943399e-06, -6.8400681186413194e-05, -6.026491734485854e-07, -6.026491734485789e-05, -4.8211933875886696e-06, -2.4105966937943365e-06, -2.4105966937943407e-06, -3.0132458672428931e-07, -3.0132458672429005e-07, -2.4105966937943196e-06, -2.4105966937943179e-06, -6.026491734485854e-07, -6.0264917344858561e-07, -3.0132458672428963e-07, -3.0132458672428952e-07, -2.410596693794317e-06, -1.5066229336214479e-06, -9.0397376017287386e-07, -1.2052983468971598e-06, -1.2052983468971606e-06, -3.0132458672429143e-07, -4.5198688008644776e-06, -2.4105966937943255e-06, -2.4105966937943255e-06, -2.7119212805186056e-06, -2.4105966937943204e-06, -4.5198688008644505e-06, -6.0264917344858286e-07, -3.0132458672429238e-07, -2.4105966937943196e-06, -2.4105966937943187e-06, -3.0132458672429175e-07, -3.01324586724291e-07, -2.4105966937943246e-06, -2.4105966937943263e-06, -6.0264917344858751e-07, -3.0132458672429058e-07, -2.410596693794323e-06, -4.8211933875886662e-06, -3.0132458672429192e-06, -2.4105966937943306e-06, -4.8211933875886578e-06, -3.0132458672429185e-07, -2.4105966937943238e-06, -5.1225179743129201e-06, -2.4105966937943297e-06, -2.4105966937943263e-06, -4.8211933875886696e-06, -9.6423867751773969e-06, -7.5331146681072515e-06, -2.4105966937943162e-06, -4.8211933875886696e-06, -4.8211933875886713e-06, -1.2052983468971712e-06, -2.4105966937943255e-06, -3.0132458672429145e-06, -3.3145704539671721e-06, -1.2052983468971712e-06, -4.821193387588701e-06, -2.4105966937943289e-06, -2.4105966937943297e-06, -2.4105966937943289e-06, -6.026491734485873e-07, -2.4105966937943246e-06, -2.4105966937943162e-06, -3.0132458672429238e-07, -2.410596693794317e-06, -6.0264917344858349e-07, -2.4105966937943246e-06, -2.4105966937943323e-06, -2.4105966937943306e-06, -3.0132458672429185e-07, -4.821193387588673e-06, -4.8211933875886713e-06, -3.0132458672429143e-07, -2.4105966937943289e-06, -2.4105966937943297e-06, -3.0132458672429127e-07, -2.4105966937943272e-06, -2.410596693794328e-06, -2.4105966937943272e-06, -2.410596693794328e-06, -7.231790081382918e-06, -2.410596693794339e-06, -2.4105966937943238e-06, -2.4105966937943238e-06, -3.0132458672429069e-07, -2.4105966937943221e-06, -2.410596693794323e-06, -4.8211933875886595e-06, -1.2052983468971606e-06, -5.4238425610371942e-06, -1.2052983468971598e-06, -3.0132458672429079e-07, -6.0264917344858222e-07, -3.9172196274157556e-06, -2.4105966937943306e-06, -4.8211933875886781e-06, -2.5311265284840314e-05, -2.4105966937943246e-06, -2.6516563631737377e-05, -2.4105966937943255e-06, -2.4105966937943272e-06, -4.8211933875886713e-06, -2.4105966937943346e-05, -4.8211933875886696e-06, -2.4407291524667455e-05, -3.0132458672428936e-07, -4.8211933875886679e-06, -4.821193387588673e-06, -1.2052983468971695e-06, -2.5311265284840314e-05, -2.4105966937943096e-05, -2.4105966937943211e-05, -2.4105966937943374e-05, -3.0132458672429175e-07, -1.2052983468971577e-06, -3.0132458672429048e-07, -3.0132458672429048e-07, -3.013245867242927e-07, -2.4105966937943187e-06, -2.4105966937943187e-06, -2.4105966937943314e-06, -2.4105966937943306e-06, -3.0132458672429048e-07, -3.0132458672429058e-07, -3.0132458672429026e-07, -2.4105966937943357e-06, -3.013245867242928e-06, -6.026491734485718e-06, -4.8211933875886883e-06, -4.8211933875886544e-06, -2.4105966937943365e-06, -7.2317900813829773e-06, -9.0397376017287301e-07, -2.6516563631737523e-05, -4.8211933875886561e-06, -2.1695370244148645e-05, -3.0132458672429164e-07, -3.01324586724291e-07, -7.5331146681072532e-06, -4.8211933875886595e-06, -2.4105966937943255e-06, -2.1092721070699984e-06, -1.2052983468971572e-06, -6.0264917344858286e-07, -2.1695370244148645e-05, -6.0264917344858286e-07, -1.2052983468971602e-06, -1.2052983468971602e-06, -2.1695370244148645e-05, -2.4105966937943213e-06, -3.013245867242909e-07, -2.4105966937943263e-06, -3.0132458672429026e-07, -2.4105966937943272e-06, -3.0132458672429204e-06, -9.0397376017287894e-07, -2.4105966937943272e-06, -4.5198688008643794e-06, -3.0132458672428963e-07, -2.4105966937943213e-06, -6.026491734485854e-07, -6.0264917344858561e-07, -6.0264917344858455e-07, -3.0132458672428963e-07, -1.8079475203457465e-06, -9.0397376017287598e-07, -2.410596693794334e-06, -2.4105966937943327e-06, -4.8211933875886645e-06, -7.8344392548315181e-06, -6.9304654946585643e-06, -3.0132458672428963e-07, -4.8211933875886527e-06, -2.4105966937943221e-06, -1.8079475203457397e-06, -6.0264917344858053e-07, -3.0132458672429058e-07, -3.0132458672429048e-07, -2.4105966937943374e-05, -2.4105966937943211e-05, -4.8814583049335419e-05, -2.4105966937943208e-05, -2.4105966937943346e-05, -1.2052983468971712e-06, -6.0264917344858201e-07, -2.4105966937943323e-06, -2.7119212805186056e-06, -1.2052983468971712e-06, -3.314570453967187e-06, -3.0132458672429148e-07, -3.0132458672428973e-07, -4.8211933875886544e-06, -2.4105966937943204e-06, -2.4105966937943238e-06, -3.0132458672429111e-07, -3.0132458672429143e-07, -1.2052983468971666e-06, -1.2052983468971661e-06, -4.821193387588651e-06, -2.4105966937943213e-06, -3.0132458672429016e-07, -4.8814583049334931e-05, -2.4105966937943331e-06, -2.4105966937943335e-06, -3.0132458672429143e-07, -1.2052983468971661e-06, -1.2052983468971666e-06, -6.0264917344857915e-07, -6.0264917344857904e-07, -9.0397376017286825e-07, -3.0132458672429143e-07, -6.0264917344857904e-07, -6.0264917344857915e-07, -3.0132458672429058e-07, -3.0132458672429175e-07, -1.2052983468971606e-06, -3.6158950406914878e-06, -2.4105966937943213e-06, -3.0132458672429037e-07, -3.0132458672428973e-07, 0.0012221725237537267, -3.013245867242909e-07, -1.2052983468971695e-06, -6.0264917344858497e-07, -4.8211933875886408e-06, -4.8211933875886391e-06, -1.5066229336214617e-06, -1.2052983468971636e-06, -6.0264917344858709e-07, -1.807947520345746e-06, -2.561258987156461e-05, -3.0132458672428952e-07, -1.205298346897164e-06, -1.2052983468971636e-06, -4.8211933875886374e-06, -4.8211933875886425e-06, -1.2052983468971644e-06, -1.2052983468971619e-06, -1.2052983468971619e-06, -3.0132458672429037e-07, -1.3860930989317272e-05, -3.0132458672428954e-06, -3.0132458672429196e-07, -2.4105966937943335e-06, -2.4105966937943407e-06, -2.4105966937943331e-06, -4.8211933875886425e-06, -2.4105966937943132e-06, -4.8211933875886374e-06, -2.4105966937943407e-06, -2.4105966937943407e-06, -9.2506648124357106e-05, -2.410596693794323e-06, -6.0264917344857863e-05, -2.4105966937943221e-06, -6.0264917344858307e-07, -1.8079475203457484e-05, -3.6158950406914836e-06, -1.5066229336214581e-06, -1.8079475203457551e-05, -3.0132458672428995e-07, -2.4105966937943289e-06, -2.4105966937943297e-06, -4.8814583049334931e-05, -2.4105966937943196e-06, -2.4105966937943204e-06, -6.9003330359861581e-05, -9.039737601728763e-07, -6.0264917344857863e-05, -2.4105966937943297e-06, -2.4105966937943289e-06, -3.0132458672429042e-07, -2.4105966937943297e-06, -2.4105966937943289e-06, -3.0132458672429026e-07, -4.8211933875886391e-06, -4.8211933875886408e-06, -6.0264917344858455e-07, -1.2052983468971666e-06, -1.2052983468971661e-06, -2.4105966937943221e-06, -2.4105966937943221e-06, -4.8814583049335419e-05, -2.4105966937943327e-06, -2.410596693794334e-06, -8.1357638415558269e-06, -2.892716032553176e-05, -2.4105966937943289e-06, -2.1394045657424424e-05, -3.6158950406914878e-06, -3.615895040691487e-06, -2.4105966937943374e-06, -2.410596693794328e-06, -3.0132458672429285e-06, -2.4105966937943272e-06, -3.0132458672429242e-06, -6.3278163212100837e-06, -2.4105966937943238e-06, -1.5066229336214632e-06, -6.9304654946586388e-06, -2.4105966937943196e-06, -3.6158950406914853e-06, -9.0397376017287693e-07, -1.5066229336214581e-06, -6.0264917344858497e-07, -3.0132458672429175e-07, -3.013245867242909e-07, -2.4105966937943407e-06, -3.615895040691506e-06, -1.8079475203457486e-06, -1.2052983468971611e-06, -2.4105966937943365e-06, -2.4105966937943399e-06, -2.4105966937943407e-06, -4.8211933875886332e-06, -2.4105966937943191e-06, -1.2052983468971636e-06, -4.8211933875886307e-06, -2.4105966937943179e-06, -1.205298346897164e-06, -2.4105966937943407e-06, -3.0132458672428995e-07, -2.4105966937943187e-06, -2.4105966937943196e-06, -4.8211933875886713e-06, -7.2317900813829985e-06, -2.4105966937943272e-06, -4.8211933875886696e-06, -4.8211933875886747e-06, -2.4105966937943187e-06, -2.4105966937943183e-06, -2.4105966937943196e-06, -2.4105966937943204e-06, -2.7119212805185823e-06, -1.0245035948625837e-05, -6.0264917344858561e-07, -2.410596693794339e-06, -2.4105966937943187e-06, -2.7119212805185831e-06, -7.8344392548315147e-06, -2.4105966937943365e-06, -2.4105966937943263e-06, -2.4105966937943416e-06, -1.2052983468971636e-06, -1.2052983468971636e-06, -3.0132458672429164e-07, -3.013245867242927e-07, -3.0132458672429185e-07, -6.0264917344857926e-07, -5.1225179743129192e-06, -9.0397376017287638e-06, -3.6158950406914819e-06, -1.8079475203457465e-06, -3.0132458672429079e-07, -1.2052983468971627e-06, -4.8211933875886561e-06, -7.2317900813829638e-06, -2.410596693794339e-06, -1.2052983468971632e-06, -4.8211933875886527e-06, -4.8211933875886544e-06, -1.2052983468971632e-06, -3.6158950406914751e-06, -2.4105966937943196e-06, -3.0132458672429238e-07, -6.0264917344858476e-07, -1.2052983468971627e-06, -1.2052983468971644e-06, -2.7119212805185908e-06, 0.0012260897433811384, -2.4105966937943331e-06, -4.8211933875886645e-06, -2.1695370244148797e-05, -1.2052983468971695e-06, -3.0132458672429048e-07, -1.8079475203457484e-05, -2.4105966937943238e-06, -1.4463580162766031e-05, -1.4463580162766024e-05, -1.5066229336214513e-05, -1.4463580162766031e-05, -1.2052983468971695e-06, -1.2052983468971699e-06, -2.4105966937943255e-06, -2.4105966937943263e-06, -1.2052983468971627e-06, -1.2052983468971627e-06, -2.4105966937943246e-06, -3.0132458672429228e-07, -2.4105966937943246e-06, -3.0132458672429069e-07, -3.0132458672429127e-07, -2.1092721070700213e-05, -1.2052983468971627e-06, -1.2052983468971627e-06, -1.8380799790181755e-05, -6.0264917344858381e-07, -2.1695370244148645e-05, -2.1695370244148645e-05, -2.4105966937943238e-06, -3.0132458672429026e-07, -2.410596693794323e-06, -2.1695370244148645e-05, -2.1695370244148865e-05, -2.4105966937943238e-06, -2.4105966937943246e-06, -6.0264917344858053e-07, -6.0264917344858349e-07, -4.8211933875886357e-06, -2.4105966937943246e-06, -2.4105966937943246e-06, -9.0397376017286687e-07, -4.8211933875886357e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6905987090532109e-05, -9.642386775177241e-05, -2.4105966937943196e-06, -4.8211933875886122e-07, -1.4463580162766026e-06, -4.8211933875886696e-06, -3.8569547100709465e-05, -9.6423867751772245e-07, -4.4354979165815265e-05, -4.8211933875886133e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100709465e-05, -3.8569547100709465e-05, -3.8569547100708898e-06, -0.00010944108989826086, -9.6423867751772224e-07, -9.6423867751773697e-05, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708881e-06, -2.4105966937943196e-06, -1.4463580162766037e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -7.2317900813830392e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297014e-06, -3.8569547100708906e-06, -7.2317900813830155e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886595e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -8.1960287589005861e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.2052983468971582e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -4.8211933875886612e-06, -5.303312726347449e-06, -1.9284773550354445e-06, -7.7139094201417762e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708889e-06, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708889e-06, -1.1570864130212819e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -8.6781480976595874e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -6.267551403865106e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.0498024455744657e-05, -3.8569547100708906e-06, -4.2426501810779633e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -3.8569547100709221e-05, -7.7139094201417796e-06, -3.9051666439468196e-05, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354453e-06, -4.0498024455744657e-05, -3.8569547100709465e-05, -3.8569547100709188e-05, -3.8569547100709289e-05, -4.8211933875886122e-07, -1.9284773550354449e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886781e-06, -9.6423867751773325e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -1.1570864130212831e-05, -1.4463580162766251e-06, -4.2426501810779965e-05, -7.7139094201417796e-06, -3.4712592390637801e-05, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.2052983468971456e-05, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.3748353713120316e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390637801e-05, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.4712592390637787e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886561e-06, -1.4463580162766037e-06, -3.8569547100708906e-06, -7.2317900813829926e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -2.892716032553223e-06, -1.4463580162766217e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, 0.0019564402766834685, -1.2535102807730195e-05, -1.1088744791453821e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -2.8927160325532298e-06, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.8569547100709289e-05, -3.8569547100709188e-05, -7.8103332878936649e-05, -3.8569547100709188e-05, -3.8569547100709221e-05, -1.9284773550354445e-06, -9.6423867751772245e-07, -3.8569547100708881e-06, -4.3390740488296929e-06, -1.9284773550354445e-06, -5.3033127263474787e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.8103332878936459e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4463580162766037e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651064181e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -8.6781480976594366e-06, -4.8211933875886133e-07, -1.9284773550354428e-06, -9.6423867751772245e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943302e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325532065e-06, -4.0980143794503334e-05, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -2.2177489582907568e-05, -4.8211933875886391e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.0001480106369989729, -3.8569547100708898e-06, -9.642386775177302e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.8927160325531794e-05, -5.7854320651064164e-06, -2.4105966937943272e-06, -2.8927160325532116e-05, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936459e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577906, -1.4463580162766028e-06, -9.6423867751773101e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936649e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489212e-05, -4.6283456520851331e-05, -3.8569547100708906e-06, -3.4230473051878752e-05, -5.7854320651064113e-06, -5.7854320651064113e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -4.8211933875886798e-06, -3.8569547100708889e-06, -4.8211933875886679e-06, -1.0124506113936154e-05, -3.8569547100708906e-06, -2.4105966937943374e-06, -1.1088744791453771e-05, -3.8569547100708906e-06, -5.7854320651064164e-06, -1.4463580162766221e-06, -2.4105966937943272e-06, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -5.7854320651062851e-06, -2.8927160325531659e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.1570864130212829e-05, -3.8569547100708906e-06, -7.7139094201417779e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488298377e-06, -1.639205751780124e-05, -9.6423867751772224e-07, -3.8569547100708889e-06, -3.8569547100708906e-06, -4.3390740488297217e-06, -1.2535102807730495e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -8.1960287589005369e-06, -1.4463580162765904e-05, -5.7854320651064164e-06, -2.892716032553223e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -7.7139094201417796e-06, -1.1570864130212824e-05, -3.8569547100708889e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651064156e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.339074048829831e-06, -2.4105966937943331e-06, 0.0019602972313935386, -7.7139094201417813e-06, -3.4712592390637746e-05, -1.9284773550354453e-06, -4.8211933875886133e-07, -2.8927160325531787e-05, -3.8569547100708906e-06, -2.3141728260426001e-05, -2.3141728260425652e-05, -2.410596693794316e-05, -2.3141728260426001e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -3.3748353713120259e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.9409279664290724e-05, -9.6423867751772245e-07, -3.4712592390637787e-05, -3.4712592390637801e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390637801e-05, -3.4712592390637733e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.4463580162766033e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -0.00019381197418106202, -0.00019284773550354268, -4.8211933875886391e-06, -9.6423867751772245e-07, -2.8927160325532069e-06, -9.6423867751773359e-06, -7.7139094201418904e-05, -1.9284773550354457e-06, -8.8709958331631628e-05, -9.6423867751772287e-07, -1.5427818840283556e-05, -1.5427818840283556e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201418931e-05, -7.7139094201418904e-05, -7.7139094201417796e-06, -0.00021888217979652283, -1.9284773550354449e-06, -0.00019284773550354523, -1.5427818840283556e-05, -7.7139094201417813e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.713909420141783e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -7.7139094201417762e-06, -4.8211933875886357e-06, -2.892716032553212e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -1.4463580162765941e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -8.6781480976595365e-06, -7.713909420141783e-06, -1.4463580162765904e-05, -1.9284773550354449e-06, -9.6423867751772245e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -1.5427818840283563e-05, -9.6423867751772783e-06, -7.7139094201417813e-06, -1.5427818840283563e-05, -9.6423867751772245e-07, -7.7139094201417813e-06, -1.6392057517801314e-05, -7.7139094201417796e-06, -7.713909420141783e-06, -1.5427818840283559e-05, -3.0855637680567112e-05, -2.4105966937943157e-05, -7.7139094201417813e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -7.713909420141783e-06, 0.0019545117993284319, -1.0606625452694908e-05, -3.8569547100708898e-06, -1.5427818840283556e-05, -7.713909420141783e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -9.6423867751772224e-07, -7.7139094201417813e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -9.6423867751772266e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -7.7139094201417796e-06, -2.3141728260425371e-05, -7.7139094201417796e-06, -7.713909420141783e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -7.713909420141783e-06, 0.0019564402766834681, -1.5427818840283566e-05, -3.8569547100708915e-06, -1.7356296195319107e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.2535102807730529e-05, -7.7139094201417813e-06, -1.5427818840283563e-05, -8.0996048911489342e-05, -7.7139094201417813e-06, -8.485300362155932e-05, -7.713909420141783e-06, -7.713909420141783e-06, -1.5427818840283559e-05, -7.7139094201418457e-05, -1.5427818840283559e-05, -7.8103332878936364e-05, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -8.0996048911489342e-05, -7.7139094201418904e-05, -7.7139094201418402e-05, -7.7139094201418592e-05, -9.6423867751772245e-07, -3.8569547100708881e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -7.713909420141783e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -7.7139094201417796e-06, -9.6423867751773494e-06, -1.9284773550354651e-05, -1.5427818840283559e-05, -1.5427818840283563e-05, -7.7139094201417796e-06, -2.3141728260425395e-05, -2.8927160325532158e-06, -8.4853003621559902e-05, -1.5427818840283559e-05, -6.9425184781276021e-05, -9.6423867751772266e-07, -9.6423867751772287e-07, -2.4105966937942977e-05, -1.5427818840283566e-05, -7.7139094201417813e-06, -6.7496707426241268e-06, -3.8569547100708889e-06, -1.9284773550354449e-06, -6.9425184781275994e-05, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -6.9425184781275994e-05, -7.713909420141783e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -9.6423867751773121e-06, -2.8927160325531739e-06, -7.713909420141783e-06, -1.4463580162765846e-05, -9.6423867751772287e-07, -7.713909420141783e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -5.7854320651063792e-06, -2.8927160325532095e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283563e-05, -2.5070205615460983e-05, -2.2177489582907924e-05, -9.6423867751772287e-07, -1.5427818840283563e-05, -7.7139094201417813e-06, -5.7854320651063919e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.7139094201418592e-05, -7.7139094201418402e-05, -0.00015620666575787316, -7.7139094201418402e-05, -7.7139094201418457e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -7.7139094201417779e-06, -8.6781480976595196e-06, -3.8569547100708898e-06, -1.0606625452694966e-05, -9.6423867751772245e-07, -9.6423867751772287e-07, -1.5427818840283566e-05, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.5427818840283559e-05, -7.7139094201417813e-06, -9.6423867751772287e-07, -0.00015620666575787284, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.8927160325531803e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -3.8569547100708898e-06, -1.1570864130212702e-05, -7.713909420141783e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.7356296195319148e-05, -9.6423867751772266e-07, -3.8569547100708881e-06, -1.9284773550354453e-06, -1.5427818840283563e-05, -1.5427818840283563e-05, -4.8211933875886425e-06, -3.8569547100708906e-06, -1.9284773550354449e-06, -5.785432065106347e-06, -8.1960287589006667e-05, -9.6423867751772287e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.5427818840283563e-05, -1.5427818840283563e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -4.4354979165815645e-05, -9.6423867751772732e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -7.7139094201417796e-06, -1.5427818840283563e-05, -7.7139094201417779e-06, -1.5427818840283563e-05, -7.7139094201417779e-06, -7.7139094201417779e-06, -0.0002960212739979414, -7.7139094201417813e-06, -0.00019284773550354471, -7.713909420141783e-06, -1.9284773550354449e-06, -5.7854320651063019e-05, -1.1570864130212699e-05, -4.8211933875886527e-06, -5.7854320651063656e-05, -9.6423867751772287e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00015620666575787284, -7.7139094201417813e-06, -7.7139094201417813e-06, -0.00022081065715155992, -2.8927160325531722e-06, -0.00019284773550354406, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772266e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772287e-07, -1.5427818840283563e-05, -1.5427818840283563e-05, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -0.00015620666575787316, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.603444429297843e-05, -9.2566913041701579e-05, -7.713909420141783e-06, -6.8460946103758466e-05, -1.1570864130212689e-05, -1.1570864130212689e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751773562e-06, -7.7139094201417796e-06, -9.6423867751773376e-06, -2.0249012227872329e-05, -7.713909420141783e-06, -4.821193387588673e-06, -2.2177489582907768e-05, -7.7139094201417813e-06, -1.1570864130212699e-05, -2.8927160325532103e-06, -4.8211933875886527e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -7.7139094201417796e-06, -1.1570864130212694e-05, -5.7854320651063893e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.5427818840283556e-05, -7.7139094201417813e-06, -3.8569547100708906e-06, -1.5427818840283559e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -7.7139094201417779e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -7.713909420141783e-06, -1.5427818840283559e-05, -2.3141728260425384e-05, -7.713909420141783e-06, -1.5427818840283556e-05, -1.5427818840283556e-05, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -8.6781480976595772e-06, -3.2784115035602832e-05, -1.9284773550354445e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -8.6781480976595772e-06, -2.507020561546101e-05, -7.7139094201417796e-06, -7.713909420141783e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.6392057517801223e-05, -2.8927160325531537e-05, -1.1570864130212699e-05, -5.7854320651063792e-06, -9.6423867751772287e-07, -3.8569547100708906e-06, -1.5427818840283559e-05, -2.3141728260425381e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -1.5427818840283563e-05, -1.5427818840283563e-05, -3.8569547100708906e-06, -1.1570864130212741e-05, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -8.6781480976595637e-06, -4.8211933875886645e-06, -7.7139094201417813e-06, 0.003912880553366937, -6.9425184781276645e-05, -3.8569547100708898e-06, -9.6423867751772287e-07, -5.7854320651063006e-05, -7.7139094201417813e-06, -4.628345652085146e-05, -4.6283456520850776e-05, -4.8211933875885778e-05, -4.628345652085146e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -6.7496707426241141e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -5.8818559328580825e-05, -1.9284773550354449e-06, -6.9425184781275994e-05, -6.9425184781275994e-05, -7.7139094201417813e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -6.9425184781276021e-05, -6.9425184781276455e-05, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -1.5427818840283566e-05, -7.713909420141783e-06, -7.713909420141783e-06, -2.8927160325531735e-06, -1.5427818840283566e-05, -3.471259239063757e-05, -3.4712592390637719e-05, -3.4712592390637665e-05, -3.4712592390637584e-05, -1.7356296195319053e-05, -1.7356296195319046e-05, -3.4712592390638106e-05, -3.4712592390638119e-05, -4.3390740488297166e-06, -4.3390740488297285e-06, -0.0008721538838147863, -0.0008678148097659668, -2.1695370244148811e-05, -4.3390740488297183e-06, -1.3017222146489188e-05, -4.3390740488297554e-05, -0.00034712592390637788, -8.6781480976594569e-06, -0.00039919481249234192, -4.3390740488297666e-06, -6.942518478127533e-05, -6.9425184781275411e-05, -3.4712592390638146e-05, -3.4712592390638092e-05, -0.00034712592390637788, -0.00034712592390637788, -3.4712592390638336e-05, -0.0009849698090843538, -8.678148097659379e-06, -0.00086781480976595498, -6.9425184781275276e-05, -3.4712592390637692e-05, -3.4712592390637557e-05, -4.3390740488297683e-06, -4.3390740488297319e-06, -3.4712592390637956e-05, -3.4712592390637916e-05, -8.6781480976593824e-06, -8.6781480976593824e-06, -4.3390740488297683e-06, -4.3390740488297547e-06, -3.471259239063816e-05, -2.1695370244148814e-05, -1.3017222146489218e-05, -1.7356296195319039e-05, -1.7356296195319053e-05, -4.3390740488297183e-06, -6.5086110732446345e-05, -3.4712592390637929e-05, -3.4712592390637895e-05, -3.9051666439467979e-05, -3.4712592390638146e-05, -6.5086110732446561e-05, -8.6781480976594332e-06, -4.339074048829698e-06, -3.4712592390638133e-05, -3.4712592390638119e-05, -4.3390740488297149e-06, -4.3390740488297285e-06, -3.4712592390637882e-05, -3.4712592390637943e-05, -8.6781480976596077e-06, -4.3390740488297369e-06, -3.4712592390638024e-05, -6.9425184781276645e-05, -4.3390740488297479e-05, -3.4712592390637828e-05, -6.9425184781276184e-05, -4.3390740488297132e-06, -3.4712592390637997e-05, -7.376425883010624e-05, -3.4712592390637841e-05, -3.4712592390637882e-05, -6.9425184781275384e-05, -0.00013885036956255394, -0.00010847685122074426, -3.4712592390638106e-05, -6.9425184781275574e-05, -6.9425184781275655e-05, -1.7356296195318772e-05, 0.0019294415937129734, -4.3390740488297452e-05, -4.7729814537127956e-05, -1.7356296195318765e-05, -6.9425184781276889e-05, -3.4712592390637882e-05, -3.4712592390637828e-05, -3.4712592390637814e-05, -8.6781480976595908e-06, -3.4712592390637733e-05, -3.4712592390638106e-05, -4.3390740488296912e-06, -3.4712592390638119e-05, -8.6781480976595094e-06, -3.4712592390637746e-05, -3.4712592390637855e-05, -3.4712592390637814e-05, -4.3390740488297115e-06, -6.942518478127552e-05, -6.9425184781275466e-05, -4.3390740488297251e-06, -3.4712592390637895e-05, -3.4712592390637916e-05, -4.3390740488297217e-06, -3.4712592390637665e-05, -3.4712592390637719e-05, -3.4712592390637895e-05, -3.4712592390637692e-05, -0.00010413777717191353, -3.4712592390637584e-05, -3.4712592390638065e-05, -3.4712592390637984e-05, -4.3390740488297412e-06, -3.4712592390638011e-05, -3.471259239063797e-05, -6.9425184781275764e-05, -1.7356296195319053e-05, -7.8103332878935958e-05, -1.7356296195319039e-05, -4.3390740488297132e-06, -8.6781480976594468e-06, -5.6407962634787248e-05, -3.4712592390637814e-05, -6.9425184781276726e-05, -0.00036448222010170077, -3.4712592390637882e-05, -0.00038183851629701795, -3.4712592390637855e-05, -3.4712592390637895e-05, -6.9425184781275655e-05, -0.00034712592390637967, -6.9425184781275574e-05, -0.00035146499795521419, -4.3390740488297674e-06, -6.942518478127552e-05, -6.942518478127571e-05, -1.7356296195318805e-05, 0.00061759487295010886, -0.00034712592390637788, -0.00034712592390637978, -0.00034712592390637946, -4.3390740488297166e-06, -1.7356296195319222e-05, -4.3390740488297446e-06, -4.33907404882972e-06, -4.3390740488296912e-06, -3.4712592390637943e-05, -3.4712592390637929e-05, -3.4712592390637841e-05, -3.4712592390637828e-05, -4.3390740488297429e-06, -4.3390740488297369e-06, -4.3390740488297513e-06, -3.4712592390637665e-05, -4.3390740488297263e-05, -8.6781480976595244e-05, -6.9425184781276645e-05, -6.9425184781275886e-05, -3.4712592390637692e-05, -0.00010413777717191391, -1.3017222146489298e-05, -0.00038183851629702039, -6.9425184781275967e-05, -0.00031241333151574513, -4.33907404882972e-06, -4.3390740488297234e-06, -0.00010847685122074439, -6.9425184781275764e-05, -3.4712592390637929e-05, -3.0373518341808551e-05, -1.7356296195319114e-05, -8.6781480976594366e-06, -0.00031241333151574513, -8.6781480976594332e-06, -1.7356296195319046e-05, -1.7356296195319053e-05, -0.00031241333151574513, -3.4712592390638038e-05, -4.3390740488297369e-06, -3.4712592390637916e-05, -4.3390740488297513e-06, -3.471259239063797e-05, -4.3390740488297412e-05, -1.301722214648922e-05, -3.4712592390637943e-05, -6.5086110732446697e-05, -4.33907404882977e-06, -3.4712592390638051e-05, -8.678148097659379e-06, -8.6781480976593858e-06, -8.6781480976594129e-06, -4.3390740488297446e-06, -2.6034444292978745e-05, -1.3017222146489232e-05, -3.471259239063776e-05, -3.4712592390637706e-05, -6.9425184781276103e-05, -0.00011281592526957425, -9.9798703123085534e-05, -4.3390740488297683e-06, -6.9425184781276536e-05, -3.4712592390637855e-05, -2.6034444292978623e-05, -8.6781480976595535e-06, -4.3390740488297369e-06, -4.33907404882972e-06, -0.00034712592390637946, -0.00034712592390637978, -0.00070292999591043163, -0.00034712592390637978, -0.00034712592390637967, -1.7356296195318765e-05, -8.6781480976595501e-06, -3.4712592390638363e-05, -3.9051666439467938e-05, -1.7356296195318772e-05, -4.7729814537127542e-05, -4.3390740488297183e-06, -4.3390740488297666e-06, -6.9425184781276536e-05, -3.4712592390638038e-05, -3.471259239063797e-05, -4.3390740488297217e-06, -4.3390740488297166e-06, -1.73562961953189e-05, -1.7356296195318887e-05, -6.9425184781276536e-05, -3.4712592390637814e-05, -4.3390740488297564e-06, -0.00070292999591042567, -3.4712592390637719e-05, -3.4712592390637733e-05, -4.3390740488297251e-06, -1.7356296195318894e-05, -1.7356296195318894e-05, -8.6781480976595365e-06, -8.6781480976595365e-06, -1.3017222146489232e-05, -4.3390740488297149e-06, -8.6781480976595365e-06, -8.6781480976595365e-06, -4.3390740488297446e-06, -4.3390740488297166e-06, -1.7356296195319121e-05, -5.2068888585957023e-05, -3.4712592390638065e-05, -4.3390740488297463e-06, -4.3390740488297666e-06, -7.8103332878936066e-05, -4.3390740488297285e-06, -1.7356296195319256e-05, -8.6781480976595908e-06, -6.9425184781276238e-05, -6.9425184781276184e-05, -2.1695370244148699e-05, -1.7356296195318941e-05, -8.6781480976596043e-06, -2.6034444292978474e-05, -0.00036882129415053051, -4.339074048829753e-06, -1.7356296195318941e-05, -1.7356296195318934e-05, -6.9425184781276103e-05, -6.9425184781276319e-05, -1.7356296195318934e-05, -1.7356296195318999e-05, -1.7356296195319005e-05, -4.3390740488297446e-06, -0.00019959740624616969, -4.3390740488297534e-05, -4.3390740488297132e-06, -3.4712592390637733e-05, -3.4712592390638363e-05, -3.4712592390637719e-05, -6.9425184781276319e-05, -3.4712592390638241e-05, -6.9425184781276103e-05, -3.4712592390638363e-05, -3.4712592390638363e-05, -0.001332095732990736, -3.4712592390637868e-05, -0.00086781480976596138, -3.4712592390638011e-05, -8.6781480976594298e-06, -0.0002603444429297856, -5.2068888585956969e-05, -2.169537024414874e-05, -0.00026034444292978484, -4.3390740488297615e-06, -3.4712592390637814e-05, -3.4712592390637828e-05, -0.00070292999591042567, -3.4712592390638051e-05, -3.4712592390638065e-05, -0.00099364795718201232, -1.3017222146489205e-05, -0.00086781480976596095, -3.4712592390637916e-05, -3.4712592390637895e-05, -4.3390740488297429e-06, -3.4712592390637841e-05, -3.4712592390637801e-05, -4.3390740488297496e-06, -6.9425184781276184e-05, -6.9425184781276238e-05, -8.6781480976594129e-06, -1.7356296195318894e-05, -1.7356296195318894e-05, -3.4712592390637855e-05, -3.4712592390637828e-05, -0.00070292999591043163, -3.4712592390637706e-05, -3.471259239063776e-05, -0.00011715499931840415, -0.00041655110868765607, -3.4712592390637882e-05, 0.014423082138310143, -5.2068888585956738e-05, -5.2068888585956738e-05, -3.4712592390637719e-05, -3.4712592390637719e-05, -4.339074048829729e-05, -3.4712592390637665e-05, -4.3390740488297344e-05, -9.1120555025424866e-05, -3.4712592390638038e-05, -2.1695370244148658e-05, -9.9798703123085073e-05, -3.4712592390638038e-05, -5.2068888585956955e-05, -1.3017222146489232e-05, -2.169537024414874e-05, -8.6781480976593959e-06, -4.3390740488297166e-06, -4.3390740488297369e-06, -3.4712592390637557e-05, -5.2068888585956901e-05, -2.6034444292978484e-05, -1.7356296195318992e-05, -3.4712592390637679e-05, -3.4712592390638336e-05, -3.4712592390638363e-05, -6.9425184781276536e-05, -3.4712592390638146e-05, -1.7356296195318934e-05, -6.9425184781276292e-05, -3.4712592390638106e-05, -1.7356296195318941e-05, -3.4712592390638363e-05, -4.3390740488297632e-06, -3.4712592390638119e-05, -3.4712592390638133e-05, -6.9425184781275466e-05, -0.00010413777717191375, -3.4712592390637956e-05, -6.9425184781275276e-05, -6.9425184781275466e-05, -3.4712592390638119e-05, -3.4712592390638106e-05, -3.4712592390638038e-05, -3.4712592390638092e-05, -3.9051666439468128e-05, -0.00014752851766021058, -8.6781480976595975e-06, -3.4712592390637584e-05, -3.4712592390638119e-05, -3.9051666439468114e-05, -0.00011281592526957507, -3.4712592390637719e-05, -3.4712592390637916e-05, -3.471259239063757e-05, -1.7356296195318941e-05, -1.7356296195318934e-05, -4.3390740488297183e-06, -4.3390740488296912e-06, -4.3390740488297132e-06, -8.6781480976594891e-06, -7.376425883010662e-05, -0.00013017222146489253, -5.2068888585957009e-05, -2.6034444292978745e-05, -4.3390740488297395e-06, -1.7356296195318948e-05, -6.9425184781275967e-05, -0.00010413777717191368, -3.4712592390637597e-05, -1.7356296195318948e-05, -6.9425184781275832e-05, -6.9425184781275886e-05, -1.7356296195318948e-05, -5.2068888585956941e-05, -3.4712592390638051e-05, -4.3390740488297047e-06, -8.6781480976595908e-06, -1.7356296195318948e-05, -1.7356296195318934e-05, -3.9051666439468047e-05, -2.1695370244148797e-05, -3.4712592390637746e-05, -6.9425184781276645e-05, 0.017364974343416786, -1.7356296195318805e-05, -4.3390740488297429e-06, -0.0002603444429297856, -3.4712592390637984e-05, -0.00020827555434382782, -0.00020827555434382777, -0.00021695370244149005, -0.00020827555434382782, -1.7356296195318812e-05, -1.7356296195318812e-05, -3.4712592390637956e-05, -3.471259239063797e-05, -1.7356296195318978e-05, -1.7356296195318985e-05, -3.4712592390637746e-05, -4.3390740488297064e-06, -3.4712592390637733e-05, -4.3390740488297429e-06, -4.3390740488297217e-06, -0.00030373518341808586, -1.7356296195318985e-05, -1.7356296195318978e-05, -0.00026468351697861344, -8.6781480976594129e-06, -0.00031241333151574513, -0.00031241333151574513, -3.4712592390637997e-05, -4.3390740488297479e-06, -3.4712592390637956e-05, -0.00031241333151574513, -0.00031241333151574177, -3.471259239063797e-05, -3.4712592390638024e-05, -8.6781480976595128e-06, -8.67814809765944e-06, -6.9425184781276292e-05, -3.4712592390638011e-05, -3.4712592390637984e-05, -1.3017222146489218e-05, -6.9425184781276292e-05, -1.9284773550354462e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354462e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943056e-07, -2.4105966937943061e-07, -4.8452993545266163e-05, -4.8211933875886313e-05, -1.2052983468971627e-06, -2.4105966937943056e-07, -7.2317900813830407e-07, -2.4105966937943407e-06, -1.9284773550354773e-05, -4.8211933875886122e-07, -2.2177489582907572e-05, -2.4105966937943061e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354773e-05, -1.9284773550354773e-05, -1.9284773550354449e-06, -5.472054494913028e-05, -4.8211933875886101e-07, -4.8211933875886957e-05, -3.8569547100708881e-06, -1.9284773550354453e-06, -1.9284773550354462e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354436e-06, -1.2052983468971627e-06, -7.2317900813830459e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943056e-07, -3.6158950406915297e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.1695370244148414e-06, -1.9284773550354449e-06, -3.615895040691517e-06, -4.8211933875886112e-07, -2.4105966937943051e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943056e-07, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -1.9284773550354449e-06, -3.8569547100708898e-06, -2.4105966937943352e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -2.4105966937943056e-07, -1.9284773550354449e-06, -4.0980143794502846e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -7.7139094201417745e-06, -6.0264917344858053e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -9.6423867751772202e-07, -1.9284773550354449e-06, -2.4105966937943361e-06, -2.6516563631737211e-06, -9.6423867751772202e-07, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886101e-07, -1.9284773550354445e-06, -1.9284773550354449e-06, -2.4105966937943051e-07, -1.9284773550354449e-06, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943056e-07, -1.928477355035444e-06, -1.928477355035444e-06, -1.9284773550354449e-06, -1.928477355035444e-06, -5.7854320651064317e-06, -1.928477355035444e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.3390740488297751e-06, -9.6423867751772245e-07, -2.4105966937943056e-07, -4.8211933875886122e-07, -3.1337757019325327e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -2.0249012227872329e-05, -1.9284773550354449e-06, -2.1213250905389789e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -1.9284773550354655e-05, -3.8569547100708889e-06, -1.9525833219734132e-05, -2.4105966937943061e-07, -3.8569547100708889e-06, -3.8569547100708881e-06, 0.00098111285437428651, -2.0249012227872329e-05, -1.9284773550354773e-05, -1.9284773550354641e-05, -1.9284773550354689e-05, -2.4105966937943056e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -2.4105966937943056e-07, -2.4105966937943051e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354445e-06, -2.4105966937943441e-06, -4.8211933875886764e-06, -3.8569547100708881e-06, -3.8569547100708898e-06, -1.9284773550354445e-06, -5.7854320651064376e-06, -7.2317900813831508e-07, -2.1213250905389959e-05, -3.8569547100708889e-06, -1.7356296195318826e-05, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.0264917344857434e-06, -3.8569547100708906e-06, -1.9284773550354449e-06, -1.6874176856560116e-06, -9.6423867751772202e-07, -4.8211933875886112e-07, -1.7356296195318826e-05, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.7356296195318819e-05, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.410596693794334e-06, -7.2317900813830459e-07, -1.9284773550354449e-06, -3.6158950406915069e-06, -2.4105966937943061e-07, -1.9284773550354453e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -1.4463580162766174e-06, -7.2317900813831359e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.8569547100708898e-06, -6.2675514038650992e-06, -5.5443723957268954e-06, -2.4105966937943061e-07, -3.8569547100708889e-06, -1.9284773550354449e-06, -1.4463580162766204e-06, -4.8211933875886133e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354689e-05, -1.9284773550354641e-05, -3.9051666439468379e-05, -1.9284773550354641e-05, -1.9284773550354655e-05, -9.6423867751772202e-07, -4.8211933875886122e-07, -1.9284773550354436e-06, -2.1695370244148363e-06, -9.6423867751772202e-07, -2.6516563631737359e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -2.4105966937943056e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.8569547100708881e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -3.9051666439468291e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.2317900813830459e-07, -2.4105966937943056e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943056e-07, -9.6423867751772202e-07, -2.8927160325532201e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.3390740488296997e-06, -2.4105966937943061e-07, -9.6423867751772139e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.205298346897168e-06, -9.6423867751772245e-07, -4.8211933875886112e-07, -1.4463580162766092e-06, -2.0490071897251667e-05, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -1.108874479145375e-05, -2.4105966937943255e-06, -2.4105966937943056e-07, -1.9284773550354445e-06, -1.928477355035444e-06, -1.9284773550354445e-06, -3.8569547100708898e-06, -1.928477355035444e-06, -3.8569547100708898e-06, -1.928477355035444e-06, -1.928477355035444e-06, -7.4005318499486761e-05, -1.9284773550354449e-06, -4.8211933875886632e-05, -1.9284773550354449e-06, -4.8211933875886112e-07, -1.4463580162765934e-05, -2.8927160325532192e-06, -1.2052983468971661e-06, -1.4463580162766099e-05, -2.4105966937943061e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.9051666439468291e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -5.5202664287889383e-05, -7.2317900813830417e-07, -4.8211933875886673e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.4105966937943061e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.9051666439468379e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -6.5086110732446024e-06, -2.3141728260425754e-05, -1.9284773550354449e-06, -1.7115236525939308e-05, -2.8927160325532158e-06, -2.8927160325532158e-06, -1.928477355035444e-06, -1.928477355035444e-06, -2.410596693794345e-06, -1.928477355035444e-06, -2.4105966937943399e-06, -5.0622530569680788e-06, -1.9284773550354449e-06, -1.2052983468971712e-06, -5.54437239572687e-06, -1.9284773550354449e-06, -2.8927160325532192e-06, -7.2317900813831381e-07, -1.2052983468971661e-06, -4.8211933875886101e-07, -2.4105966937943056e-07, -2.4105966937943061e-07, -1.9284773550354462e-06, -2.8927160325531383e-06, -1.4463580162765884e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.928477355035444e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.8569547100708881e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -1.928477355035444e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -5.7854320651064351e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.1695370244149324e-06, -8.1960287589006098e-06, -4.8211933875886101e-07, -1.928477355035444e-06, -1.9284773550354449e-06, -2.1695370244148515e-06, -6.2675514038652526e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354462e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -2.4105966937943051e-07, -2.4105966937943056e-07, -4.8211933875886122e-07, -4.09801437945026e-06, -7.2317900813829706e-06, -2.8927160325532192e-06, -1.4463580162766174e-06, -2.4105966937943061e-07, -9.6423867751772245e-07, -3.8569547100708889e-06, -5.7854320651064342e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -2.8927160325532188e-06, -1.9284773550354449e-06, -2.4105966937943051e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.1695370244149087e-06, -1.2052983468971695e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -1.7356296195318805e-05, 0.00098111285437428651, -2.4105966937943061e-07, -1.4463580162765934e-05, -1.9284773550354449e-06, -1.1570864130213045e-05, -1.157086413021287e-05, -1.2052983468971611e-05, -1.1570864130213045e-05, -9.6423867751772308e-07, -9.6423867751772266e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354445e-06, -2.4105966937943051e-07, -1.9284773550354445e-06, -2.4105966937943061e-07, -2.4105966937943056e-07, -1.6874176856560068e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.4704639832145389e-05, -4.8211933875886112e-07, -1.7356296195318819e-05, -1.7356296195318826e-05, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.7356296195318826e-05, -1.7356296195318792e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.2317900813830438e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -1.2113248386316473e-05, -1.2052983468971507e-05, -3.0132458672428878e-07, -6.0264917344857666e-08, -1.8079475203457416e-07, -6.0264917344858137e-07, -4.8211933875886645e-06, -1.2052983468971536e-07, -5.5443723957269336e-06, -6.0264917344857679e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886645e-06, -4.8211933875886645e-06, -4.8211933875886122e-07, -1.3680136237282661e-05, -1.2052983468971531e-07, -1.2052983468971665e-05, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886101e-07, -3.0132458672428878e-07, -1.807947520345743e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857666e-08, -9.0397376017287651e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610371627e-07, -4.8211933875886144e-07, -9.0397376017287344e-07, -1.2052983468971533e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.026491734485801e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344857666e-08, -4.8211933875886144e-07, -1.0245035948625796e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6423867751772266e-07, -1.9284773550354445e-06, -1.5066229336214422e-06, -4.8211933875886144e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -6.0264917344858032e-07, -6.6291409079343261e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -1.2052983468971533e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.4463580162765931e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.0847685122074349e-06, -2.4105966937943072e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -7.8344392548315657e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -5.0622530569680788e-06, -4.8211933875886144e-07, -5.3033127263474659e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -4.8211933875886341e-06, -9.6423867751772266e-07, -4.8814583049335092e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -5.0622530569680788e-06, -4.8211933875886645e-06, -4.8211933875886298e-06, -4.8211933875886425e-06, -6.0264917344857666e-08, -2.4105966937943061e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -6.0264917344858222e-07, -1.2052983468971615e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -4.8211933875886133e-07, -1.4463580162765946e-06, -1.8079475203457697e-07, -5.3033127263475075e-06, -9.6423867751772266e-07, -4.3390740488297564e-06, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.5066229336214473e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.2185442141400512e-07, -2.4105966937943061e-07, -1.2052983468971533e-07, -4.3390740488297547e-06, -1.2052983468971533e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297547e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857989e-07, -1.807947520345743e-07, -4.8211933875886144e-07, -9.0397376017287068e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -3.615895040691452e-07, -1.8079475203457655e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -1.5668878509663055e-06, -1.386093098931734e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -3.6158950406915134e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886425e-06, -4.8211933875886298e-06, -9.7629166098670455e-06, -4.8211933875886298e-06, -4.8211933875886341e-06, -2.4105966937943061e-07, -1.2052983468971536e-07, -4.8211933875886112e-07, -5.4238425610371807e-07, -2.4105966937943061e-07, -6.629140907934361e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.7629166098670252e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.807947520345743e-07, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943061e-07, -7.2317900813829761e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.084768512207437e-06, -6.0264917344857679e-08, -2.4105966937943051e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.013245867242901e-07, -2.4105966937943072e-07, -1.2052983468971533e-07, -3.6158950406914849e-07, -5.1225179743129167e-06, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, 0.00024274708706508794, -6.0264917344857756e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.8501329624871494e-05, -4.8211933875886133e-07, -1.2052983468971582e-05, -4.8211933875886144e-07, -1.2052983468971533e-07, -3.615895040691465e-06, -7.2317900813829739e-07, -3.0132458672428963e-07, -3.6158950406914912e-06, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670252e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.380066607197242e-05, -1.8079475203457419e-07, -1.2052983468971594e-05, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670455e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.6271527683111536e-06, -5.7854320651063809e-06, -4.8211933875886144e-07, -4.2788091314848753e-06, -7.2317900813829676e-07, -7.2317900813829676e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344858264e-07, -4.8211933875886122e-07, -6.0264917344858116e-07, -1.265563264242018e-06, -4.8211933875886144e-07, -3.013245867242909e-07, -1.3860930989317281e-06, -4.8211933875886144e-07, -7.2317900813829739e-07, -1.807947520345766e-07, -3.0132458672428963e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -7.2317900813829676e-07, -3.6158950406915113e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.4463580162765944e-06, -4.8211933875886144e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.4238425610371892e-07, -2.0490071897251677e-06, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -5.4238425610371892e-07, -1.566887850966307e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857666e-08, -1.2052983468971536e-07, -1.0245035948625711e-06, -1.8079475203457316e-06, -7.2317900813829718e-07, -3.615895040691452e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -9.6423867751772266e-07, -1.4463580162765937e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -7.2317900813829729e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -5.4238425610371786e-07, -3.0132458672429048e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.3390740488297429e-06, -2.4105966937943061e-07, 0.00024545900834560644, -3.615895040691465e-06, -4.8211933875886144e-07, -2.8927160325532315e-06, -2.8927160325531879e-06, -3.013245867242884e-06, -2.8927160325532315e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.2185442141400815e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -3.6761599580363388e-06, -1.2052983468971533e-07, -4.3390740488297547e-06, -4.3390740488297547e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.3390740488297564e-06, -4.3390740488297479e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.807947520345743e-07, -9.6423867751772287e-07, -2.8927160325531882e-05, -2.8927160325531801e-05, -2.8927160325531828e-05, -2.8927160325531869e-05, -1.4463580162765816e-05, -1.4463580162765819e-05, -2.8927160325531604e-05, -2.8927160325531598e-05, -3.6158950406914722e-06, -3.6158950406914717e-06, -0.00072679490317898842, -0.0007231790081383007, -1.8079475203457304e-05, -3.6158950406914722e-06, -1.0847685122074409e-05, -3.6158950406914696e-05, -0.00028927160325531703, -7.2317900813829435e-06, -0.00033266234374361512, -3.6158950406914514e-06, -5.7854320651063622e-05, -5.7854320651063595e-05, -2.8927160325531584e-05, -2.8927160325531611e-05, -0.00028927160325531692, -0.00028927160325531692, -2.8927160325531875e-05, -0.00082080817423696179, -7.2317900813829739e-06, -0.00072317900813829484, -5.7854320651063663e-05, -2.8927160325531814e-05, -2.8927160325531889e-05, -3.6158950406914472e-06, -3.61589504069147e-06, -2.8927160325531706e-05, -2.8927160325531733e-05, -7.2317900813829739e-06, -7.2317900813829723e-06, -3.6158950406914514e-06, -3.6158950406914607e-06, -2.8927160325531584e-05, -1.8079475203457412e-05, -1.0847685122074341e-05, -1.4463580162765819e-05, -1.4463580162765812e-05, -3.6158950406914722e-06, -5.4238425610372024e-05, -2.8927160325531689e-05, -2.8927160325531696e-05, -3.2543055366223254e-05, -2.8927160325531598e-05, -5.423842561037218e-05, -7.2317900813829443e-06, -3.6158950406914836e-06, -2.8927160325531611e-05, -2.8927160325531618e-05, -3.615895040691476e-06, -3.6158950406914671e-06, -2.8927160325531703e-05, -2.8927160325531676e-05, -7.2317900813828571e-06, -3.6158950406914666e-06, -2.8927160325531665e-05, -5.7854320651063019e-05, -3.6158950406914635e-05, -2.892716032553176e-05, -5.7854320651063344e-05, -3.6158950406914768e-06, -2.8927160325531652e-05, -6.1470215691755044e-05, -2.8927160325531716e-05, -2.8927160325531774e-05, -5.7854320651063656e-05, -0.0001157086413021259, -9.0397376017287547e-05, -2.8927160325531598e-05, -5.7854320651063575e-05, -5.7854320651063548e-05, -1.4463580162765948e-05, -2.8927160325531692e-05, -3.6158950406914757e-05, -3.9774845447606464e-05, -1.4463580162765948e-05, -5.7854320651062911e-05, -2.8927160325531747e-05, -2.892716032553173e-05, -2.8927160325531737e-05, -7.2317900813829028e-06, -2.8927160325531808e-05, -2.8927160325531598e-05, -3.615895040691484e-06, -2.8927160325531591e-05, -7.2317900813829147e-06, -2.8927160325531801e-05, -2.8927160325531733e-05, -2.892716032553176e-05, -3.6158950406914768e-06, -5.7854320651063575e-05, -5.7854320651063629e-05, -3.6158950406914717e-06, -2.8927160325531733e-05, -2.892716032553172e-05, -3.61589504069147e-06, -2.8927160325531842e-05, -2.8927160325531814e-05, -2.8927160325531781e-05, -2.8927160325531828e-05, -8.6781480976595244e-05, -2.8927160325531869e-05, -2.8927160325531645e-05, -2.8927160325531659e-05, -3.6158950406914633e-06, -2.8927160325531672e-05, -2.8927160325531665e-05, -5.7854320651063466e-05, -1.4463580162765812e-05, -6.5086110732446507e-05, -1.4463580162765819e-05, -3.6158950406914785e-06, -7.2317900813829468e-06, -4.7006635528988712e-05, -2.892716032553176e-05, -5.7854320651062985e-05, -0.00030373518341807979, -2.8927160325531703e-05, -0.00031819876358085139, -2.892716032553176e-05, -2.8927160325531781e-05, -5.7854320651063548e-05, -0.00028927160325531719, -5.7854320651063575e-05, -0.00029288749829600746, -3.6158950406914476e-06, -5.7854320651063629e-05, -5.7854320651063521e-05, -1.4463580162765934e-05, -0.00030373518341807968, -0.00028927160325531703, -0.00028927160325531708, -0.00028927160325532088, -3.6158950406914751e-06, -1.4463580162765948e-05, -3.6158950406914641e-06, -3.6158950406914751e-06, -3.615895040691487e-06, -2.8927160325531713e-05, -2.8927160325531726e-05, -2.8927160325531747e-05, -2.892716032553176e-05, -3.6158950406914641e-06, -3.6158950406914666e-06, -3.6158950406914582e-06, -2.8927160325531828e-05, -3.6158950406914588e-05, -7.2317900813829799e-05, -5.7854320651063412e-05, -5.7854320651063358e-05, -2.8927160325531814e-05, -8.6781480976594891e-05, -1.0847685122074346e-05, -0.00031819876358085074, -5.7854320651063331e-05, -0.00026034444292978841, -3.6158950406914743e-06, -3.6158950406914743e-06, -9.0397376017287547e-05, -5.7854320651063466e-05, -2.8927160325531689e-05, -2.5311265284840457e-05, -1.4463580162765829e-05, -7.2317900813829435e-06, -0.00026034444292978809, -7.2317900813829443e-06, -1.4463580162765819e-05, -1.4463580162765816e-05, -0.00026034444292978765, -2.8927160325531659e-05, -3.6158950406914666e-06, -2.8927160325531713e-05, -3.6158950406914582e-06, -2.8927160325531692e-05, -3.6158950406914588e-05, -1.0847685122074305e-05, -2.8927160325531706e-05, -5.4238425610372396e-05, -3.6158950406914514e-06, -2.8927160325531652e-05, -7.2317900813829739e-06, -7.2317900813829706e-06, -7.2317900813829638e-06, -3.615895040691465e-06, -2.1695370244148797e-05, -1.0847685122074326e-05, -2.892716032553176e-05, -2.8927160325531787e-05, -5.7854320651063358e-05, -9.4013271057977695e-05, -8.3165585935903767e-05, -3.6158950406914514e-06, -5.7854320651063046e-05, -2.8927160325531753e-05, -2.1695370244148777e-05, -7.2317900813828909e-06, -3.6158950406914666e-06, -3.6158950406914751e-06, -0.00028927160325532088, -0.00028927160325531708, -0.00058577499659201329, -0.00028927160325531708, -0.00028927160325531719, -1.4463580162765948e-05, -7.2317900813829197e-06, -2.8927160325531964e-05, -3.2543055366223294e-05, -1.4463580162765948e-05, -3.9774845447606288e-05, -3.6158950406914717e-06, -3.6158950406914514e-06, -5.7854320651063127e-05, -2.8927160325531652e-05, -2.8927160325531692e-05, -3.6158950406914743e-06, -3.6158950406914722e-06, -1.4463580162765887e-05, -1.4463580162765894e-05, -5.785432065106306e-05, -2.8927160325531774e-05, -3.6158950406914565e-06, -0.00058577499659201622, -2.8927160325531774e-05, -2.8927160325531767e-05, -3.6158950406914717e-06, -1.4463580162765887e-05, -1.4463580162765887e-05, -7.231790081382896e-06, -7.2317900813828977e-06, -1.0847685122074385e-05, -3.615895040691473e-06, -7.2317900813828977e-06, -7.231790081382896e-06, -3.6158950406914616e-06, -3.615895040691476e-06, -1.446358016276588e-05, -4.339074048829752e-05, -2.8927160325531638e-05, -3.6158950406914633e-06, -3.6158950406914514e-06, -6.5086110732446372e-05, -3.6158950406914671e-06, -1.4463580162765819e-05, -7.2317900813828672e-06, -5.7854320651063195e-05, -5.7854320651063222e-05, -1.8079475203457304e-05, -1.4463580162765856e-05, -7.2317900813828596e-06, -2.1695370244148753e-05, -0.00030735107845877851, -3.6158950406914607e-06, -1.4463580162765853e-05, -1.446358016276586e-05, -5.7854320651063277e-05, -5.7854320651063168e-05, -1.4463580162765873e-05, -1.4463580162765839e-05, -1.4463580162765833e-05, -3.6158950406914633e-06, -0.00016633117187180753, -3.6158950406914635e-05, -3.6158950406914768e-06, -2.8927160325531767e-05, -2.8927160325531455e-05, -2.8927160325531774e-05, -5.7854320651063168e-05, -2.8927160325531669e-05, -5.7854320651063277e-05, -2.8927160325531455e-05, -2.8927160325531452e-05, -0.0011100797774922886, -2.8927160325531747e-05, -0.00072317900813829875, -2.8927160325531672e-05, -7.231790081382946e-06, -0.00021695370244148858, -4.339074048829752e-05, -1.8079475203457314e-05, -0.00021695370244149262, -3.6158950406914548e-06, -2.8927160325531737e-05, -2.892716032553173e-05, -0.00058577499659201622, -2.8927160325531625e-05, -2.8927160325531611e-05, -0.00082803996431834689, -1.0847685122074305e-05, -0.00072317900813829831, -2.892716032553172e-05, -2.8927160325531733e-05, -3.6158950406914599e-06, -2.8927160325531716e-05, -2.8927160325531743e-05, -3.6158950406914607e-06, -5.7854320651063222e-05, -5.7854320651063195e-05, -7.2317900813829638e-06, -1.4463580162765887e-05, -1.4463580162765887e-05, -2.8927160325531753e-05, -2.892716032553176e-05, -0.00058577499659201329, -2.8927160325531787e-05, -2.892716032553176e-05, -9.7629166098670066e-05, 0.014384030471870732, -2.8927160325531747e-05, -0.00025672854788909267, -4.339074048829733e-05, -4.3390740488297344e-05, -2.8927160325531801e-05, -2.8927160325531814e-05, -3.6158950406914832e-05, -2.8927160325531842e-05, -3.6158950406914954e-05, -7.5933795854520841e-05, -2.8927160325531652e-05, -1.8079475203457578e-05, -8.3165585935903686e-05, -2.8927160325531632e-05, -4.3390740488297493e-05, -1.0847685122074326e-05, -1.8079475203457318e-05, -7.2317900813829672e-06, -3.6158950406914751e-06, -3.6158950406914666e-06, -2.8927160325531889e-05, -4.339074048829729e-05, -2.1695370244148713e-05, -1.446358016276585e-05, -2.8927160325531821e-05, -2.8927160325531875e-05, -2.8927160325531452e-05, -5.785432065106331e-05, -2.8927160325531584e-05, -1.446358016276586e-05, -5.785432065106327e-05, -2.8927160325531638e-05, -1.4463580162765853e-05, -2.8927160325531455e-05, -3.6158950406914539e-06, -2.8927160325531618e-05, -2.8927160325531611e-05, -5.7854320651063629e-05, -8.6781480976594634e-05, -2.8927160325531692e-05, -5.7854320651063663e-05, -5.7854320651063554e-05, -2.8927160325531598e-05, -2.8927160325531604e-05, -2.8927160325531632e-05, -2.8927160325531604e-05, -3.2543055366223132e-05, -0.00012294043138351009, -7.2317900813828537e-06, -2.8927160325531869e-05, -2.8927160325531645e-05, -3.2543055366223145e-05, -9.4013271057977695e-05, -2.8927160325531801e-05, -2.8927160325531713e-05, -2.8927160325531882e-05, -1.4463580162765856e-05, -1.446358016276586e-05, -3.6158950406914751e-06, -3.6158950406914861e-06, -3.6158950406914768e-06, -7.2317900813829299e-06, -6.1470215691755044e-05, -0.00010847685122074497, -4.3390740488297554e-05, -2.1695370244148797e-05, -3.615895040691465e-06, -1.4463580162765853e-05, -5.7854320651063331e-05, -8.678148097659485e-05, -2.8927160325531855e-05, -1.4463580162765853e-05, -5.7854320651063412e-05, -5.7854320651063358e-05, -1.4463580162765853e-05, -4.339074048829754e-05, -2.8927160325531625e-05, -3.6158950406914819e-06, -7.2317900813828655e-06, -1.4463580162765853e-05, -1.4463580162765873e-05, -3.2543055366223199e-05, -1.8079475203457484e-05, -2.8927160325531787e-05, -5.7854320651063006e-05, -0.0002603444429297856, -1.4463580162765934e-05, -3.615895040691465e-06, 0.014514202693335526, -2.8927160325531659e-05, -0.00017356296195318902, -0.00017356296195318913, -0.00018079475203457509, -0.00017356296195318902, -1.4463580162765931e-05, -1.4463580162765928e-05, -2.8927160325531706e-05, -2.8927160325531679e-05, -1.4463580162765846e-05, -1.4463580162765846e-05, -2.8927160325531801e-05, -3.6158950406914819e-06, -2.8927160325531808e-05, -3.6158950406914633e-06, -3.61589504069147e-06, -0.00025311265284840262, -1.4463580162765846e-05, -1.4463580162765846e-05, -0.00022056959748217847, -7.2317900813829536e-06, -0.00026034444292978765, -0.00026034444292978809, -2.8927160325531652e-05, -3.6158950406914573e-06, -2.8927160325531672e-05, -0.00026034444292978841, -0.00026034444292978776, -2.8927160325531692e-05, -2.8927160325531665e-05, -7.231790081382913e-06, -7.2317900813829485e-06, -5.7854320651063249e-05, -2.8927160325531672e-05, -2.8927160325531679e-05, -1.0847685122074392e-05, -5.7854320651063249e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6905987090531784e-05, -9.6423867751772044e-05, -2.4105966937943102e-06, -4.8211933875886133e-07, -1.4463580162765961e-06, -4.8211933875886493e-06, -3.8569547100709316e-05, -9.6423867751772266e-07, -4.4354979165815482e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100709316e-05, -3.856954710070931e-05, -3.8569547100708898e-06, -0.00010944108989826133, -9.6423867751772224e-07, -9.6423867751773332e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.4105966937943094e-06, -1.4463580162765969e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813830087e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297285e-06, -3.8569547100708906e-06, -7.2317900813829875e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886408e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886122e-07, -3.8569547100708915e-06, -8.1960287589006166e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971533e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -4.8211933875886425e-06, -5.3033127263474626e-06, -1.9284773550354445e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.8211933875886112e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212752e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, 0.0019602972313935386, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594739e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652534e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -4.0498024455744657e-05, -3.8569547100708906e-06, -4.2426501810779734e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709093e-05, -7.7139094201417796e-06, -3.9051666439468101e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.0498024455744657e-05, -3.8569547100709316e-05, -3.8569547100709066e-05, -3.8569547100709167e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886578e-06, -9.6423867751772918e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -1.1570864130212763e-05, -1.4463580162766164e-06, -4.2426501810780019e-05, -7.7139094201417813e-06, -3.4712592390637916e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971575e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120401e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390637895e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390637895e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886374e-06, -1.4463580162765952e-06, -3.8569547100708906e-06, -7.2317900813829621e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325532061e-06, -1.4463580162766132e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730471e-05, -1.1088744791453876e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532124e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709167e-05, -3.8569547100709066e-05, -7.8103332878936418e-05, -3.8569547100709066e-05, -3.8569547100709093e-05, -1.9284773550354445e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.33907404882972e-06, -1.9284773550354445e-06, -5.3033127263474905e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936256e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4463580162765876e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651063842e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -8.6781480976594925e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -7.713909420141783e-06, -7.713909420141783e-06, -2.4105966937943111e-06, -1.9284773550354457e-06, -9.6423867751772245e-07, -2.8927160325531896e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886144e-07, -2.2177489582907663e-05, -4.8211933875886197e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.000148010636998972, -3.8569547100708906e-06, -9.642386775177264e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.8927160325531659e-05, -5.7854320651063825e-06, -2.4105966937943174e-06, -2.8927160325531987e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936256e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -0.00011040532857577931, -1.4463580162765944e-06, -9.6423867751772749e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936418e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489225e-05, -4.628345652085106e-05, -3.8569547100708906e-06, -3.4230473051878962e-05, -5.7854320651063775e-06, -5.7854320651063775e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886603e-06, -3.8569547100708898e-06, -4.8211933875886527e-06, -1.0124506113936161e-05, -3.8569547100708906e-06, -2.4105966937943272e-06, -1.1088744791453828e-05, -3.8569547100708915e-06, -5.7854320651063825e-06, -1.4463580162766136e-06, -2.410596693794317e-06, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.78543206510638e-06, -2.8927160325532112e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354457e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.1570864130212758e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.3390740488297496e-06, -1.6392057517801335e-05, -9.6423867751772224e-07, -3.8569547100708889e-06, -3.8569547100708915e-06, -4.3390740488297496e-06, -1.2535102807730483e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -8.1960287589005691e-06, -1.4463580162765846e-05, -5.7854320651063825e-06, -2.8927160325532061e-06, -4.8211933875886144e-07, -1.9284773550354457e-06, -7.7139094201417813e-06, -1.1570864130212758e-05, -3.8569547100708889e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -5.785432065106341e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354453e-06, -4.3390740488297429e-06, -2.4105966937943238e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -3.4712592390637984e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531659e-05, 0.0019602972313935386, -2.3141728260425866e-05, -2.314172826042549e-05, -2.4105966937943042e-05, -2.3141728260425866e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.3748353713120462e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.9409279664290609e-05, -9.6423867751772245e-07, -3.4712592390637895e-05, -3.4712592390637895e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.4712592390637916e-05, -3.4712592390637916e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.446358016276595e-06, -7.713909420141783e-06, -2.3141728260426126e-05, -2.3141728260426028e-05, -2.3141728260426049e-05, -2.314172826042612e-05, -1.1570864130212894e-05, -1.1570864130212894e-05, -2.3141728260425784e-05, -2.3141728260425778e-05, -2.892716032553251e-06, -2.8927160325532476e-06, -0.00058143592254320279, -0.00057854320651064294, -1.4463580162765989e-05, -2.8927160325532506e-06, -8.6781480976594857e-06, -2.8927160325532075e-05, -0.00023141728260425495, -5.7854320651064952e-06, -0.00026612987499489022, -2.8927160325532192e-06, -4.6283456520852104e-05, -4.6283456520852077e-05, -2.3141728260425767e-05, -2.3141728260425791e-05, -0.00023141728260425452, -0.00023141728260425446, -2.314172826042572e-05, -0.0006566465393895687, -5.785432065106535e-06, -0.00057854320651064349, -4.6283456520852131e-05, -2.3141728260426035e-05, -2.3141728260426133e-05, -2.8927160325532171e-06, -2.892716032553251e-06, -2.3141728260425954e-05, -2.3141728260425974e-05, -5.785432065106535e-06, -5.785432065106535e-06, -2.892716032553218e-06, -2.8927160325532379e-06, -2.3141728260425706e-05, -1.4463580162765953e-05, -8.678148097659423e-06, -1.1570864130212897e-05, -1.157086413021289e-05, -2.8927160325532506e-06, -4.3390740488297229e-05, -2.3141728260425899e-05, -2.3141728260425906e-05, -2.6034444292978498e-05, -2.3141728260425761e-05, -4.3390740488297656e-05, -5.785432065106502e-06, -2.8927160325532628e-06, -2.3141728260425767e-05, -2.3141728260425778e-05, -2.8927160325532523e-06, -2.8927160325532438e-06, -2.314172826042592e-05, -2.3141728260425893e-05, -5.7854320651063063e-06, -2.8927160325532332e-06, -2.3141728260425839e-05, -4.628345652085146e-05, -2.8927160325532028e-05, -2.314172826042596e-05, -4.6283456520851697e-05, -2.8927160325532531e-06, -2.3141728260425859e-05, -4.9176172553404777e-05, -2.3141728260425947e-05, -2.3141728260425879e-05, -4.628345652085207e-05, -9.256691304170288e-05, -7.2317900813830612e-05, -2.3141728260425778e-05, -4.6283456520852016e-05, -4.6283456520851989e-05, -1.1570864130213067e-05, -2.3141728260425893e-05, -2.8927160325532014e-05, -3.1819876358084565e-05, -1.157086413021307e-05, -4.6283456520851426e-05, -2.314172826042595e-05, -2.3141728260425954e-05, -2.314172826042596e-05, -5.78543206510643e-06, -2.3141728260426086e-05, -2.3141728260425778e-05, -2.8927160325532667e-06, -2.3141728260425767e-05, -5.7854320651064664e-06, -2.3141728260426072e-05, -2.3141728260425947e-05, -2.3141728260425967e-05, -2.8927160325532535e-06, -4.6283456520852016e-05, -4.6283456520852043e-05, -2.8927160325532455e-06, -2.3141728260425944e-05, -2.3141728260425937e-05, -2.8927160325531532e-06, -2.314172826042613e-05, -2.3141728260426103e-05, -2.3141728260425872e-05, -2.314172826042611e-05, -6.9425184781275886e-05, -2.3141728260426103e-05, -2.3141728260425825e-05, -2.3141728260425866e-05, -2.8927160325532366e-06, -2.3141728260425845e-05, -2.3141728260425872e-05, -4.6283456520851819e-05, -1.157086413021289e-05, -5.2068888585956982e-05, -1.1570864130212897e-05, -2.8927160325532628e-06, -5.7854320651064808e-06, -3.7605308423191632e-05, -2.3141728260425967e-05, -4.6283456520851447e-05, -0.00024298814673446884, -2.314172826042592e-05, -0.00025455901086467652, -2.3141728260425893e-05, -2.3141728260425872e-05, -4.6283456520851989e-05, -0.00023141728260425576, -4.6283456520852016e-05, -0.00023430999863680992, -2.892716032553218e-06, -4.6283456520852043e-05, -4.6283456520851962e-05, -1.1570864130213045e-05, -0.00024298814673446884, -0.00023141728260425495, -0.000231417282604255, -0.00023141728260425644, -2.8927160325532514e-06, -1.1570864130212857e-05, -2.8927160325532307e-06, -2.8927160325532582e-06, -2.8927160325532671e-06, -2.314172826042596e-05, -2.3141728260425967e-05, -2.3141728260425954e-05, -2.314172826042596e-05, -2.8927160325532311e-06, -2.8927160325532336e-06, -2.8927160325532302e-06, -2.3141728260426049e-05, -2.892716032553215e-05, -5.7854320651064056e-05, -4.628345652085144e-05, -4.6283456520850572e-05, -2.3141728260426042e-05, -6.9425184781275168e-05, -8.6781480976592435e-06, -0.00025455901086467782, -4.6283456520850518e-05, -0.0002082755543438276, -2.8927160325532497e-06, -2.8927160325532404e-06, -7.2317900813830598e-05, -4.6283456520851819e-05, -2.3141728260425899e-05, -2.0249012227872386e-05, -1.1570864130212865e-05, -5.7854320651062961e-06, -0.00020827555434382763, -5.785432065106502e-06, -1.1570864130212894e-05, -1.1570864130212894e-05, -0.0002082755543438276, -2.3141728260425825e-05, -2.8927160325532387e-06, -2.3141728260425899e-05, -2.8927160325532307e-06, -2.3141728260425879e-05, -2.8927160325532102e-05, -8.6781480976594214e-06, -2.3141728260425893e-05, -4.3390740488297615e-05, -2.8927160325532175e-06, -2.3141728260425818e-05, -5.785432065106535e-06, -5.7854320651065342e-06, -5.7854320651065223e-06, -2.8927160325532442e-06, -1.7356296195318663e-05, -8.6781480976592638e-06, -2.3141728260426001e-05, -2.3141728260426028e-05, -4.6283456520851718e-05, -7.5210616846383292e-05, -6.653246874872177e-05, -2.8927160325532175e-06, -4.6283456520851447e-05, -2.3141728260426015e-05, -1.7356296195318622e-05, -5.7854320651064334e-06, -2.8927160325532336e-06, -2.8927160325532582e-06, -0.00023141728260425644, -0.000231417282604255, -0.0004686199972736168, -0.000231417282604255, -0.00023141728260425576, -1.157086413021307e-05, -5.7854320651064334e-06, -2.3141728260425713e-05, -2.6034444292978505e-05, -1.1570864130213067e-05, -3.1819876358084687e-05, -2.8927160325532501e-06, -2.8927160325532196e-06, -4.6283456520851467e-05, -2.3141728260425822e-05, -2.3141728260425866e-05, -2.8927160325532408e-06, -2.8927160325532506e-06, -1.1570864130212982e-05, -1.1570864130212989e-05, -4.6283456520851447e-05, -2.3141728260426028e-05, -2.8927160325532264e-06, -0.00046861999727362179, -2.3141728260426015e-05, -2.3141728260426008e-05, -2.8927160325532459e-06, -1.1570864130212989e-05, -1.1570864130212985e-05, -5.7854320651064376e-06, -5.7854320651064376e-06, -8.6781480976594129e-06, -2.8927160325532514e-06, -5.7854320651064376e-06, -5.7854320651064376e-06, -2.892716032553234e-06, -2.8927160325532518e-06, -1.1570864130212899e-05, -3.471259239063753e-05, -2.3141728260425815e-05, -2.8927160325532298e-06, -2.8927160325532192e-06, -5.2068888585956935e-05, -2.8927160325532434e-06, -1.1570864130212851e-05, -5.7854320651064317e-06, -4.628345652085102e-05, -4.6283456520851074e-05, -1.4463580162766051e-05, -1.1570864130212962e-05, -5.78543206510643e-06, -1.7356296195318772e-05, -0.0002458808627670205, -2.8927160325532383e-06, -1.1570864130212958e-05, -1.1570864130212965e-05, -4.6283456520851128e-05, -4.6283456520850965e-05, -1.1570864130212967e-05, -1.1570864130212926e-05, -1.1570864130212923e-05, -2.8927160325532302e-06, -0.00013306493749744508, -2.8927160325531852e-05, -2.8927160325532535e-06, -2.3141728260426008e-05, -2.3141728260425672e-05, -2.3141728260426015e-05, -4.6283456520850965e-05, -2.314172826042572e-05, -4.6283456520851128e-05, -2.31417282604257e-05, -2.3141728260425686e-05, -0.00088806382199382004, -2.3141728260426008e-05, -0.00057854320651064381, -2.3141728260425845e-05, -5.7854320651065045e-06, -0.00017356296195318902, -3.4712592390637611e-05, -1.4463580162766007e-05, -0.00017356296195318902, -2.892716032553223e-06, -2.314172826042596e-05, -2.3141728260425954e-05, -0.00046861999727362179, -2.3141728260425811e-05, -2.3141728260425805e-05, -0.00066243197145467647, -8.6781480976594535e-06, -0.00057854320651064414, -2.3141728260425937e-05, -2.3141728260425944e-05, -2.892716032553182e-06, -2.3141728260425947e-05, -2.3141728260425967e-05, -2.8927160325532277e-06, -4.6283456520851074e-05, -4.628345652085102e-05, -5.7854320651065223e-06, -1.1570864130212985e-05, -1.1570864130212989e-05, -2.3141728260426015e-05, -2.3141728260426021e-05, -0.0004686199972736168, -2.3141728260426028e-05, -2.3141728260426001e-05, -7.8103332878936378e-05, -0.00027770073912510121, -2.314172826042595e-05, -0.00020538283831127513, -3.4712592390637814e-05, -3.4712592390637814e-05, -2.3141728260426028e-05, -2.3141728260426103e-05, -2.8927160325532143e-05, -2.314172826042613e-05, -2.8927160325531869e-05, -6.0747036683617088e-05, -2.3141728260425832e-05, -1.4463580162766055e-05, -6.6532468748722529e-05, -2.3141728260425818e-05, -3.4712592390637611e-05, -8.6781480976592638e-06, -1.4463580162766017e-05, -5.7854320651065265e-06, -2.8927160325532514e-06, -2.8927160325532387e-06, -2.3141728260426133e-05, -3.4712592390637706e-05, -1.7356296195318622e-05, -1.1570864130212914e-05, -2.3141728260426042e-05, -2.314172826042572e-05, -2.3141728260425686e-05, -4.6283456520851426e-05, -2.3141728260425767e-05, -1.1570864130212965e-05, -4.628345652085142e-05, -2.3141728260425774e-05, -1.1570864130212958e-05, -2.3141728260425672e-05, -2.8927160325532226e-06, -2.3141728260425778e-05, -2.3141728260425767e-05, -4.6283456520852043e-05, -6.9425184781275466e-05, -2.3141728260425886e-05, -4.6283456520852131e-05, -4.628345652085205e-05, -2.3141728260425778e-05, -2.3141728260425784e-05, -2.3141728260425818e-05, -2.3141728260425798e-05, -2.6034444292978457e-05, -9.8352345106809147e-05, -5.7854320651064283e-06, -2.3141728260426103e-05, -2.3141728260425764e-05, -2.6034444292978444e-05, -7.5210616846382993e-05, -2.3141728260426028e-05, -2.3141728260425899e-05, -2.3141728260426126e-05, -1.1570864130212962e-05, -1.1570864130212965e-05, -2.8927160325532497e-06, -2.8927160325532671e-06, -2.8927160325532535e-06, -5.7854320651064884e-06, -4.9176172553404743e-05, -8.6781480976594566e-05, -3.4712592390637557e-05, -1.7356296195318663e-05, -2.892716032553237e-06, -1.1570864130212955e-05, -4.6283456520850518e-05, -6.9425184781275384e-05, -2.3141728260426096e-05, -1.1570864130212955e-05, -4.6283456520850627e-05, -4.6283456520850572e-05, -1.1570864130212955e-05, -3.4712592390637638e-05, -2.3141728260425811e-05, -2.8927160325532624e-06, -5.78543206510643e-06, -1.1570864130212955e-05, -1.1570864130212967e-05, -2.6034444292978461e-05, -1.4463580162766031e-05, -2.3141728260426001e-05, -4.628345652085146e-05, -0.00020827555434382782, -1.1570864130213045e-05, -2.8927160325532315e-06, -0.00017356296195318902, -2.3141728260425866e-05, 0.011646074747059126, -0.00013885036956255044, -0.00014463580162766112, 0.011646074747059126, -1.1570864130213045e-05, -1.1570864130213041e-05, -2.3141728260425899e-05, -2.3141728260425879e-05, -1.1570864130212938e-05, -1.1570864130212938e-05, -2.3141728260426072e-05, -2.8927160325532612e-06, -2.3141728260426086e-05, -2.8927160325532362e-06, -2.8927160325531532e-06, -0.00020249012227872295, -1.1570864130212938e-05, -1.1570864130212938e-05, -0.00017645567798574388, -5.7854320651065138e-06, -0.0002082755543438276, -0.00020827555434382763, -2.3141728260425859e-05, -2.8927160325532315e-06, -2.3141728260425879e-05, -0.0002082755543438276, -0.00020827555434382758, -2.3141728260425866e-05, -2.3141728260425845e-05, -5.7854320651064537e-06, -5.7854320651064994e-06, -4.6283456520851494e-05, -2.3141728260425852e-05, -2.3141728260425859e-05, -8.6781480976594298e-06, -4.6283456520851494e-05, -2.3141728260425784e-05, -2.3141728260425679e-05, -2.31417282604257e-05, -2.3141728260425778e-05, -1.1570864130212721e-05, -1.1570864130212721e-05, -2.3141728260425435e-05, -2.3141728260425429e-05, -2.8927160325532074e-06, -2.892716032553204e-06, -0.00058143592254319141, -0.00057854320651063188, -1.4463580162765985e-05, -2.8927160325532074e-06, -8.678148097659645e-06, -2.8927160325532062e-05, -0.00023141728260425484, -5.785432065106408e-06, -0.00026612987499489055, -2.892716032553176e-06, -4.6283456520851413e-05, -4.6283456520851386e-05, -2.3141728260425422e-05, -2.3141728260425442e-05, -0.00023141728260425441, -0.00023141728260425435, -2.3141728260425374e-05, -0.00065664653938956924, -5.7854320651064495e-06, -0.00057854320651063243, -4.628345652085144e-05, -2.3141728260425686e-05, -2.3141728260425791e-05, -2.8927160325531739e-06, -2.8927160325532074e-06, -2.3141728260425605e-05, -2.3141728260425625e-05, -5.7854320651064495e-06, -5.7854320651064495e-06, -2.8927160325531752e-06, -2.8927160325531947e-06, -2.3141728260425361e-05, -1.4463580162765946e-05, -8.678148097659584e-06, -1.1570864130212724e-05, -1.1570864130212718e-05, -2.8927160325532074e-06, -4.3390740488297256e-05, -2.3141728260425551e-05, -2.3141728260425557e-05, -2.6034444292978494e-05, -2.3141728260425415e-05, -4.3390740488297669e-05, -5.7854320651064147e-06, -2.8927160325532192e-06, -2.3141728260425422e-05, -2.3141728260425429e-05, -2.8927160325532091e-06, -2.8927160325532006e-06, -2.3141728260425571e-05, -2.3141728260425544e-05, -5.7854320651064088e-06, -2.8927160325531896e-06, -2.314172826042549e-05, -4.6283456520850776e-05, -2.8927160325532014e-05, -2.3141728260425611e-05, -4.6283456520851006e-05, -2.8927160325532099e-06, -2.3141728260425483e-05, -4.9176172553404763e-05, -2.3141728260425598e-05, -2.314172826042553e-05, -4.6283456520851372e-05, -9.2566913041701497e-05, -7.2317900813829257e-05, -2.3141728260425401e-05, -4.6283456520851318e-05, -4.6283456520851291e-05, -1.1570864130212896e-05, -2.3141728260425544e-05, -2.8927160325532001e-05, -3.1819876358084592e-05, -1.1570864130212899e-05, -4.6283456520850749e-05, -2.3141728260425605e-05, -2.3141728260425605e-05, -2.3141728260425611e-05, -5.7854320651063436e-06, -2.314172826042574e-05, -2.3141728260425401e-05, -2.8927160325532239e-06, -2.3141728260425395e-05, -5.7854320651063792e-06, -2.3141728260425727e-05, -2.3141728260425598e-05, -2.3141728260425618e-05, -2.8927160325532099e-06, -4.6283456520851318e-05, -4.6283456520851345e-05, -2.8927160325532023e-06, -2.3141728260425598e-05, -2.3141728260425591e-05, -2.8927160325531421e-06, -2.3141728260425784e-05, -2.3141728260425754e-05, -2.3141728260425523e-05, -2.3141728260425761e-05, -6.942518478127716e-05, -2.3141728260425754e-05, -2.3141728260425476e-05, -2.314172826042549e-05, -2.892716032553193e-06, -2.3141728260425496e-05, -2.3141728260425496e-05, -4.6283456520851128e-05, -1.1570864130212718e-05, -5.2068888585956969e-05, -1.1570864130212724e-05, -2.8927160325532192e-06, -5.7854320651063944e-06, -3.7605308423190968e-05, -2.3141728260425618e-05, -4.6283456520850762e-05, -0.00024298814673446846, -2.3141728260425571e-05, -0.00025455901086467674, -2.3141728260425544e-05, -2.3141728260425523e-05, -4.6283456520851291e-05, -0.00023141728260425565, -4.6283456520851318e-05, -0.00023430999863680992, -2.8927160325531748e-06, -4.6283456520851345e-05, -4.6283456520851264e-05, -1.157086413021287e-05, -0.00024298814673446846, -0.00023141728260425484, -0.00023141728260425492, -0.00023141728260425636, -2.8927160325532082e-06, -1.1570864130212813e-05, -2.892716032553187e-06, -2.892716032553215e-06, -2.8927160325532239e-06, -2.3141728260425611e-05, -2.3141728260425618e-05, -2.3141728260425605e-05, -2.3141728260425611e-05, -2.8927160325531879e-06, -2.8927160325531904e-06, -2.892716032553187e-06, -2.31417282604257e-05, -2.8927160325532136e-05, -5.7854320651064029e-05, -4.6283456520850749e-05, -4.6283456520850579e-05, -2.3141728260425693e-05, -6.9425184781275547e-05, -8.6781480976594027e-06, -0.00025455901086467847, -4.6283456520850661e-05, -0.00020827555434382766, -2.8927160325532065e-06, -2.8927160325531972e-06, -7.2317900813829202e-05, -4.6283456520851128e-05, -2.3141728260425551e-05, -2.0249012227872407e-05, -1.1570864130212692e-05, -5.7854320651062792e-06, -0.00020827555434382766, -5.7854320651064147e-06, -1.1570864130212721e-05, -1.1570864130212721e-05, -0.00020827555434382766, -2.3141728260425476e-05, -2.8927160325531955e-06, -2.3141728260425551e-05, -2.892716032553187e-06, -2.314172826042553e-05, -2.8927160325532089e-05, -8.6781480976595806e-06, -2.3141728260425544e-05, -4.3390740488297642e-05, -2.8927160325531743e-06, -2.3141728260425469e-05, -5.7854320651064495e-06, -5.7854320651064478e-06, -5.7854320651064351e-06, -2.8927160325532006e-06, -1.7356296195318985e-05, -8.678148097659423e-06, -2.3141728260425652e-05, -2.3141728260425679e-05, -4.628345652085102e-05, -7.5210616846381963e-05, -6.6532468748721837e-05, -2.8927160325531743e-06, -4.6283456520850762e-05, -2.3141728260425666e-05, -1.7356296195318941e-05, -5.785432065106347e-06, -2.8927160325531904e-06, -2.892716032553215e-06, -0.00023141728260425636, -0.00023141728260425492, -0.0004686199972736168, -0.0002314172826042549, -0.00023141728260425565, -1.1570864130212899e-05, -5.785432065106347e-06, -2.3141728260425368e-05, -2.6034444292978501e-05, -1.1570864130212896e-05, -3.1819876358084714e-05, -2.8927160325532065e-06, -2.8927160325531769e-06, -4.6283456520850776e-05, -2.3141728260425476e-05, -2.3141728260425517e-05, -2.8927160325531972e-06, -2.8927160325532074e-06, -1.1570864130212809e-05, -1.1570864130212816e-05, -4.6283456520850762e-05, -2.3141728260425679e-05, -2.8927160325531828e-06, -0.00046861999727362179, -2.3141728260425666e-05, -2.3141728260425659e-05, -2.8927160325532023e-06, -1.1570864130212816e-05, -1.1570864130212813e-05, -5.7854320651063521e-06, -5.7854320651063521e-06, -8.6781480976595772e-06, -2.8927160325532082e-06, -5.7854320651063521e-06, -5.7854320651063521e-06, -2.8927160325531904e-06, -2.8927160325532082e-06, -1.1570864130212724e-05, -3.4712592390638173e-05, -2.3141728260425469e-05, -2.8927160325531862e-06, -2.892716032553176e-06, -5.2068888585956921e-05, -2.8927160325531997e-06, -1.157086413021268e-05, -5.7854320651063453e-06, -4.6283456520850796e-05, -4.6283456520850715e-05, -1.4463580162766028e-05, -1.1570864130212772e-05, -5.7854320651063436e-06, -1.7356296195319093e-05, -0.00024588086276702039, -2.8927160325531947e-06, -1.1570864130212768e-05, -1.1570864130212775e-05, -4.6283456520850633e-05, -4.6283456520850877e-05, -1.1570864130212792e-05, -1.1570864130212752e-05, -1.1570864130212748e-05, -2.892716032553187e-06, -0.00013306493749744522, -2.8927160325531842e-05, -2.8927160325532099e-06, -2.3141728260425659e-05, -2.3141728260425408e-05, -2.3141728260425666e-05, -4.6283456520850877e-05, -2.3141728260425384e-05, -4.6283456520850633e-05, -2.3141728260425391e-05, -2.3141728260425398e-05, -0.00088806382199382091, -2.3141728260425659e-05, -0.00057854320651063275, -2.3141728260425496e-05, -5.7854320651064181e-06, -0.00017356296195318913, -3.4712592390638255e-05, -1.4463580162766e-05, -0.00017356296195318913, -2.8927160325531794e-06, -2.3141728260425611e-05, -2.3141728260425605e-05, -0.00046861999727362179, -2.3141728260425435e-05, -2.3141728260425429e-05, -0.00066243197145467679, -8.6781480976596145e-06, -0.00057854320651063308, -2.3141728260425591e-05, -2.3141728260425598e-05, -2.8927160325531561e-06, -2.3141728260425598e-05, -2.3141728260425618e-05, -2.8927160325531845e-06, -4.6283456520850715e-05, -4.6283456520850796e-05, -5.7854320651064351e-06, -1.1570864130212813e-05, -1.1570864130212816e-05, -2.3141728260425666e-05, -2.3141728260425672e-05, -0.0004686199972736168, -2.3141728260425679e-05, -2.3141728260425652e-05, -7.8103332878936337e-05, -0.00027770073912510636, -2.3141728260425605e-05, -0.00020538283831127491, -3.4712592390638458e-05, -3.4712592390638458e-05, -2.3141728260425679e-05, -2.3141728260425754e-05, -2.892716032553213e-05, -2.3141728260425784e-05, -2.8927160325531869e-05, -6.0747036683616952e-05, -2.3141728260425483e-05, -1.4463580162766048e-05, -6.6532468748722583e-05, -2.3141728260425442e-05, -3.4712592390638255e-05, -8.678148097659423e-06, -1.4463580162766011e-05, -5.7854320651064401e-06, -2.8927160325532082e-06, -2.8927160325531955e-06, -2.3141728260425791e-05, -3.4712592390638349e-05, -1.7356296195318941e-05, -1.1570864130212741e-05, -2.3141728260425693e-05, -2.3141728260425374e-05, -2.3141728260425398e-05, -4.6283456520850769e-05, -2.3141728260425422e-05, -1.1570864130212775e-05, -4.6283456520850749e-05, -2.3141728260425429e-05, -1.1570864130212768e-05, -2.3141728260425408e-05, -2.8927160325531794e-06, -2.3141728260425429e-05, -2.3141728260425422e-05, -4.6283456520851345e-05, -6.9425184781276753e-05, -2.3141728260425537e-05, -4.628345652085144e-05, -4.6283456520851359e-05, -2.3141728260425429e-05, -2.3141728260425435e-05, -2.3141728260425442e-05, -2.3141728260425422e-05, -2.6034444292978454e-05, -9.835234510680912e-05, -5.7854320651063419e-06, -2.3141728260425754e-05, -2.3141728260425422e-05, -2.603444429297844e-05, -7.5210616846381665e-05, -2.3141728260425679e-05, -2.3141728260425551e-05, -2.3141728260425784e-05, -1.1570864130212772e-05, -1.1570864130212775e-05, -2.8927160325532065e-06, -2.8927160325532239e-06, -2.8927160325532099e-06, -5.7854320651064012e-06, -4.9176172553404736e-05, -8.6781480976594607e-05, -3.47125923906382e-05, -1.7356296195318985e-05, -2.8927160325531938e-06, -1.1570864130212765e-05, -4.6283456520850661e-05, -6.9425184781275832e-05, -2.3141728260425747e-05, -1.1570864130212765e-05, -4.6283456520850498e-05, -4.6283456520850579e-05, -1.1570864130212765e-05, -3.4712592390638295e-05, -2.3141728260425435e-05, -2.8927160325532192e-06, -5.7854320651063436e-06, -1.1570864130212765e-05, -1.1570864130212792e-05, -2.6034444292978454e-05, -1.4463580162766024e-05, -2.3141728260425652e-05, -4.6283456520850776e-05, -0.00020827555434382777, -1.157086413021287e-05, -2.8927160325531879e-06, -0.00017356296195318913, -2.314172826042549e-05, -0.00013885036956255044, 0.011646074747059127, 0.01164028931499402, -0.00013885036956255044, -1.157086413021287e-05, -1.1570864130212867e-05, -2.3141728260425551e-05, -2.314172826042553e-05, -1.1570864130212765e-05, -1.1570864130212765e-05, -2.3141728260425727e-05, -2.8927160325532175e-06, -2.314172826042574e-05, -2.892716032553193e-06, -2.8927160325531413e-06, -0.00020249012227872279, -1.1570864130212765e-05, -1.1570864130212765e-05, -0.0001764556779857463, -5.7854320651064266e-06, -0.00020827555434382766, -0.00020827555434382766, -2.3141728260425483e-05, -2.8927160325531845e-06, -2.3141728260425503e-05, -0.00020827555434382766, -0.00020827555434382749, -2.3141728260425517e-05, -2.3141728260425496e-05, -5.7854320651063673e-06, -5.785432065106413e-06, -4.6283456520850803e-05, -2.3141728260425503e-05, -2.314172826042551e-05, -8.6781480976595908e-06, -4.6283456520850803e-05, -2.4105966937943238e-05, -2.4105966937943167e-05, -2.4105966937943197e-05, -2.4105966937943228e-05, -1.2052983468971514e-05, -1.2052983468971516e-05, -2.4105966937943021e-05, -2.4105966937943014e-05, -3.0132458672428954e-06, -3.0132458672428933e-06, -0.00060566241931581642, -0.00060264917344857183, -1.5066229336214537e-05, -3.013245867242895e-06, -9.0397376017286401e-06, -3.0132458672429026e-05, -0.00024105966937943264, -6.0264917344857866e-06, -0.00027721861978634847, -3.0132458672428764e-06, -4.8211933875886347e-05, -4.8211933875886307e-05, -2.4105966937943004e-05, -2.4105966937943031e-05, -0.00024105966937943264, -0.00024105966937943264, -2.4105966937942848e-05, -0.00068400681186413508, -6.0264917344858129e-06, -0.00060264917344857714, -4.8211933875886388e-05, -2.410596693794318e-05, -2.4105966937943248e-05, -3.0132458672428751e-06, -3.0132458672428959e-06, -2.4105966937943119e-05, -2.410596693794315e-05, -6.0264917344858112e-06, -6.0264917344858112e-06, -3.013245867242876e-06, -3.0132458672428882e-06, -2.4105966937943042e-05, 0.00047597231718968827, -9.0397376017286537e-06, -1.2052983468971519e-05, -1.2052983468971511e-05, -3.013245867242895e-06, -4.5198688008643028e-05, -2.4105966937943092e-05, -2.4105966937943099e-05, -2.711921280518611e-05, -2.4105966937942997e-05, -4.5198688008643116e-05, -6.0264917344857909e-06, -3.0132458672429031e-06, -2.4105966937943011e-05, -2.4105966937943018e-05, -3.0132458672428959e-06, -3.0132458672428912e-06, -2.4105966937943109e-05, -2.4105966937943082e-05, -6.0264917344857816e-06, -3.0132458672428853e-06, -2.4105966937943052e-05, -4.8211933875885785e-05, -3.0132458672429006e-05, -2.4105966937943126e-05, -4.8211933875886049e-05, -3.0132458672428959e-06, -2.4105966937943028e-05, -5.1225179743129192e-05, -2.4105966937943113e-05, -2.4105966937943079e-05, -4.8211933875886354e-05, -9.6423867751771217e-05, -7.5331146681071736e-05, -2.4105966937942994e-05, -4.8211933875886286e-05, -4.8211933875886252e-05, -1.2052983468971619e-05, -2.4105966937943089e-05, -3.0132458672429013e-05, -3.314570453967139e-05, -1.2052983468971622e-05, -4.8211933875885548e-05, -2.410596693794313e-05, -2.4105966937943123e-05, -2.4105966937943133e-05, -6.0264917344856952e-06, -2.4105966937943218e-05, -2.4105966937942994e-05, -3.0132458672429056e-06, -2.4105966937942987e-05, -6.0264917344857544e-06, -2.4105966937943208e-05, -2.4105966937943106e-05, -2.4105966937943133e-05, -3.013245867242898e-06, -4.8211933875886266e-05, -4.8211933875886307e-05, -3.0132458672428929e-06, -2.4105966937943119e-05, -2.4105966937943109e-05, -3.0132458672428433e-06, -2.4105966937943245e-05, -2.4105966937943214e-05, -2.4105966937943069e-05, -2.4105966937943224e-05, -7.231790081382908e-05, -2.4105966937943224e-05, -2.4105966937943031e-05, -2.4105966937943042e-05, -3.0132458672428874e-06, -2.4105966937943058e-05, -2.4105966937943048e-05, -4.8211933875886178e-05, -1.2052983468971511e-05, -5.4238425610371658e-05, -1.2052983468971519e-05, -3.0132458672429035e-06, -6.026491734485779e-06, -3.9172196274157819e-05, -2.4105966937943133e-05, -4.8211933875885704e-05, -0.00025311265284840175, -2.4105966937943109e-05, -0.00026516563631737394, -2.4105966937943099e-05, -2.4105966937943069e-05, -4.8211933875886252e-05, -0.00024105966937943226, -4.8211933875886286e-05, -0.00024407291524667434, -3.0132458672428755e-06, -4.8211933875886327e-05, -4.8211933875886212e-05, -1.2052983468971611e-05, -0.00025311265284840175, -0.00024105966937943264, -0.00024105966937943216, -0.00024105966937943202, -3.013245867242895e-06, -1.2052983468971665e-05, -3.0132458672428836e-06, -3.0132458672429009e-06, -3.0132458672429056e-06, -2.410596693794313e-05, -2.410596693794314e-05, -2.4105966937943119e-05, -2.4105966937943126e-05, -3.0132458672428836e-06, -3.0132458672428853e-06, -3.0132458672428832e-06, -2.4105966937943191e-05, -3.0132458672429094e-05, -6.0264917344857998e-05, -4.8211933875885643e-05, -4.8211933875885792e-05, -2.4105966937943177e-05, -7.2317900813830016e-05, -9.0397376017288231e-06, -0.00026516563631737416, -4.8211933875885873e-05, -0.00021695370244149037, -3.0132458672428942e-06, -3.0132458672428895e-06, -7.5331146681071993e-05, -4.8211933875886178e-05, -2.4105966937943092e-05, -2.1092721070700122e-05, -1.2052983468971519e-05, -6.0264917344856816e-06, -0.00021695370244149032, -6.0264917344857909e-06, -1.2052983468971516e-05, -1.2052983468971514e-05, -0.00021695370244149037, -2.4105966937943055e-05, -3.0132458672428887e-06, -2.4105966937943099e-05, -3.0132458672428832e-06, -2.4105966937943065e-05, -3.0132458672429121e-05, -9.0397376017286486e-06, -2.4105966937943086e-05, -4.5198688008643712e-05, -3.0132458672428755e-06, -2.4105966937943048e-05, -6.0264917344858129e-06, -6.0264917344858112e-06, -6.0264917344858044e-06, -3.0132458672428916e-06, -1.8079475203457436e-05, -9.0397376017287977e-06, -2.4105966937943147e-05, -2.410596693794318e-05, -4.8211933875886042e-05, -7.8344392548315611e-05, -6.9304654946587171e-05, -3.0132458672428755e-06, -4.8211933875885704e-05, -2.4105966937943163e-05, -1.8079475203457484e-05, -6.02649173448574e-06, -3.0132458672428853e-06, -3.0132458672429005e-06, -0.00024105966937943202, -0.00024105966937943216, -0.00048814583049334889, -0.00024105966937943216, -0.00024105966937943226, -1.2052983468971622e-05, -6.0264917344857333e-06, -2.4105966937942923e-05, -2.7119212805186117e-05, -1.2052983468971619e-05, -3.3145704539671743e-05, -3.013245867242895e-06, -3.0132458672428764e-06, -4.8211933875885873e-05, -2.4105966937943052e-05, -2.4105966937943082e-05, -3.0132458672428899e-06, -3.0132458672428954e-06, -1.2052983468971568e-05, -1.2052983468971575e-05, -4.821193387588571e-05, -2.4105966937943187e-05, -3.013245867242881e-06, -0.00048814583049334748, -2.4105966937943167e-05, -2.4105966937943157e-05, -3.0132458672428929e-06, -1.2052983468971573e-05, -1.205298346897157e-05, -6.0264917344857511e-06, -6.0264917344857519e-06, -9.0397376017286554e-06, -3.0132458672428959e-06, -6.0264917344857519e-06, -6.0264917344857511e-06, -3.0132458672428857e-06, -3.0132458672428959e-06, -1.2052983468971543e-05, -3.6158950406914608e-05, -2.4105966937943045e-05, -3.0132458672428832e-06, -3.0132458672428764e-06, -5.4238425610372051e-05, -3.0132458672428912e-06, -1.2052983468971451e-05, -6.0264917344857104e-06, -4.8211933875886008e-05, -4.8211933875885927e-05, -1.506622933621454e-05, -1.2052983468971541e-05, -6.026491734485696e-06, -1.807947520345729e-05, -0.00025612589871564629, -3.0132458672428882e-06, -1.2052983468971538e-05, -1.2052983468971544e-05, -4.8211933875885846e-05, -4.821193387588609e-05, -1.2052983468971556e-05, -1.2052983468971533e-05, -1.2052983468971533e-05, -3.0132458672428832e-06, -0.00013860930989317361, -3.0132458672429016e-05, -3.0132458672428971e-06, -2.4105966937943157e-05, -2.4105966937942862e-05, -2.4105966937943167e-05, -4.821193387588609e-05, -2.4105966937943045e-05, -4.8211933875885846e-05, -2.4105966937942842e-05, -2.4105966937942852e-05, -0.00092506648124356073, -2.4105966937943153e-05, -0.00060264917344857627, -2.4105966937943058e-05, -6.0264917344857917e-06, -0.00018079475203457504, -3.6158950406914622e-05, -1.5066229336214506e-05, -0.00018079475203457249, -3.0132458672428785e-06, -2.4105966937943133e-05, -2.4105966937943123e-05, -0.00048814583049334748, -2.4105966937943014e-05, -2.4105966937943001e-05, -0.00069003330359861126, -9.0397376017286435e-06, -0.00060264917344857627, -2.4105966937943109e-05, -2.4105966937943119e-05, -3.0132458672428577e-06, -2.4105966937943113e-05, -2.4105966937943143e-05, -3.0132458672428819e-06, -4.8211933875885927e-05, -4.8211933875886008e-05, -6.0264917344858044e-06, -1.205298346897157e-05, -1.2052983468971573e-05, -2.4105966937943163e-05, -2.4105966937943177e-05, -0.00048814583049334889, -2.410596693794318e-05, -2.4105966937943147e-05, -8.1357638415558646e-05, -0.00028927160325531692, -2.410596693794313e-05, -0.00021394045657424434, -3.6158950406914574e-05, -3.6158950406914574e-05, -2.410596693794316e-05, -2.4105966937943214e-05, -3.0132458672429053e-05, -2.4105966937943245e-05, -3.0132458672428952e-05, -6.3278163212100654e-05, -2.4105966937943045e-05, -1.506622933621452e-05, -6.9304654946586791e-05, -2.4105966937943021e-05, -3.6158950406914622e-05, -9.039737601728796e-06, -1.5066229336214527e-05, -6.0264917344858061e-06, -3.013245867242895e-06, -3.0132458672428887e-06, -2.4105966937943248e-05, -3.6158950406914601e-05, -1.8079475203457477e-05, -1.2052983468971529e-05, -2.4105966937943187e-05, -2.4105966937942848e-05, -2.4105966937942852e-05, -4.8211933875886049e-05, -2.4105966937943004e-05, -1.2052983468971544e-05, -4.8211933875886049e-05, -2.4105966937943025e-05, -1.2052983468971538e-05, -2.4105966937942862e-05, -3.0132458672428785e-06, -2.4105966937943018e-05, -2.4105966937943011e-05, -4.8211933875886307e-05, -7.2317900813829189e-05, -2.4105966937943079e-05, -4.8211933875886388e-05, -4.8211933875886266e-05, -2.4105966937943014e-05, -2.4105966937943021e-05, -2.4105966937943021e-05, -2.4105966937942994e-05, -2.7119212805185887e-05, -0.00010245035948625841, -6.0264917344856833e-06, -2.4105966937943224e-05, -2.4105966937943014e-05, -2.7119212805185948e-05, -7.8344392548315936e-05, -2.4105966937943167e-05, -2.4105966937943099e-05, -2.4105966937943238e-05, -1.2052983468971541e-05, -1.2052983468971544e-05, -3.0132458672428954e-06, -3.0132458672429056e-06, -3.0132458672428971e-06, -6.0264917344857832e-06, -5.1225179743129206e-05, -9.0397376017287506e-05, -3.6158950406914635e-05, -1.8079475203457436e-05, -3.0132458672428878e-06, -1.2052983468971541e-05, -4.8211933875885873e-05, -7.2317900813829894e-05, -2.4105966937943211e-05, -1.2052983468971538e-05, -4.821193387588571e-05, -4.8211933875885792e-05, -1.2052983468971538e-05, -3.6158950406914615e-05, -2.4105966937943014e-05, -3.0132458672429026e-06, -6.0264917344856918e-06, -1.2052983468971541e-05, -1.2052983468971556e-05, -2.7119212805185768e-05, -1.5066229336214513e-05, -2.410596693794316e-05, -4.8211933875885778e-05, -0.00021695370244149005, -1.2052983468971611e-05, -3.013245867242884e-06, -0.00018079475203457509, -2.4105966937943042e-05, -0.00014463580162766112, 0.01164028931499402, 0.012125301369785456, -0.00014463580162766112, -1.2052983468971609e-05, -1.2052983468971607e-05, -2.4105966937943099e-05, -2.4105966937943069e-05, -1.2052983468971543e-05, -1.2052983468971543e-05, -2.4105966937943208e-05, -3.0132458672429022e-06, -2.4105966937943218e-05, -3.0132458672428865e-06, -3.0132458672428433e-06, -0.00021092721070700067, -1.2052983468971543e-05, -1.2052983468971543e-05, -0.00018380799790181776, -6.0264917344857985e-06, -0.00021695370244149037, -0.00021695370244149032, -2.4105966937943028e-05, -3.0132458672428802e-06, -2.4105966937943055e-05, -0.00021695370244149037, -0.00021695370244148883, -2.4105966937943082e-05, -2.4105966937943055e-05, -6.0264917344857612e-06, -6.0264917344857883e-06, -4.8211933875886002e-05, -2.4105966937943062e-05, -2.4105966937943072e-05, -9.0397376017286486e-06, -4.8211933875886002e-05, -2.3141728260426126e-05, -2.3141728260426028e-05, -2.3141728260426049e-05, -2.314172826042612e-05, -1.1570864130212894e-05, -1.1570864130212894e-05, -2.3141728260425784e-05, -2.3141728260425778e-05, -2.892716032553251e-06, -2.8927160325532476e-06, -0.00058143592254320279, -0.00057854320651064294, -1.4463580162765989e-05, -2.8927160325532506e-06, -8.6781480976594857e-06, -2.8927160325532075e-05, -0.00023141728260425495, -5.7854320651064952e-06, -0.00026612987499489022, -2.8927160325532192e-06, -4.6283456520852104e-05, -4.6283456520852077e-05, -2.3141728260425767e-05, -2.3141728260425791e-05, -0.00023141728260425452, -0.00023141728260425446, -2.314172826042572e-05, -0.0006566465393895687, -5.785432065106535e-06, -0.00057854320651064349, -4.6283456520852131e-05, -2.3141728260426035e-05, -2.3141728260426133e-05, -2.8927160325532171e-06, -2.892716032553251e-06, -2.3141728260425954e-05, -2.3141728260425974e-05, -5.785432065106535e-06, -5.785432065106535e-06, -2.892716032553218e-06, -2.8927160325532379e-06, -2.3141728260425706e-05, -1.4463580162765953e-05, -8.678148097659423e-06, -1.1570864130212897e-05, -1.157086413021289e-05, -2.8927160325532506e-06, -4.3390740488297229e-05, -2.3141728260425899e-05, -2.3141728260425906e-05, -2.6034444292978498e-05, -2.3141728260425761e-05, -4.3390740488297656e-05, -5.785432065106502e-06, -2.8927160325532628e-06, -2.3141728260425767e-05, -2.3141728260425778e-05, -2.8927160325532523e-06, -2.8927160325532438e-06, -2.314172826042592e-05, -2.3141728260425893e-05, -5.7854320651063063e-06, -2.8927160325532332e-06, -2.3141728260425839e-05, -4.628345652085146e-05, -2.8927160325532028e-05, -2.314172826042596e-05, -4.6283456520851697e-05, -2.8927160325532531e-06, -2.3141728260425859e-05, -4.9176172553404777e-05, -2.3141728260425947e-05, -2.3141728260425879e-05, -4.628345652085207e-05, -9.256691304170288e-05, -7.2317900813830612e-05, -2.3141728260425778e-05, -4.6283456520852016e-05, -4.6283456520851989e-05, -1.1570864130213067e-05, -2.3141728260425893e-05, -2.8927160325532014e-05, -3.1819876358084565e-05, -1.157086413021307e-05, -4.6283456520851426e-05, -2.314172826042595e-05, -2.3141728260425954e-05, -2.314172826042596e-05, -5.78543206510643e-06, -2.3141728260426086e-05, -2.3141728260425778e-05, -2.8927160325532667e-06, -2.3141728260425767e-05, -5.7854320651064664e-06, -2.3141728260426072e-05, -2.3141728260425947e-05, -2.3141728260425967e-05, -2.8927160325532535e-06, -4.6283456520852016e-05, -4.6283456520852043e-05, -2.8927160325532455e-06, -2.3141728260425944e-05, -2.3141728260425937e-05, -2.8927160325531532e-06, -2.314172826042613e-05, -2.3141728260426103e-05, -2.3141728260425872e-05, -2.314172826042611e-05, -6.9425184781275886e-05, -2.3141728260426103e-05, -2.3141728260425825e-05, -2.3141728260425866e-05, -2.8927160325532366e-06, -2.3141728260425845e-05, -2.3141728260425872e-05, -4.6283456520851819e-05, -1.157086413021289e-05, -5.2068888585956982e-05, -1.1570864130212897e-05, -2.8927160325532628e-06, -5.7854320651064808e-06, -3.7605308423191632e-05, -2.3141728260425967e-05, -4.6283456520851447e-05, -0.00024298814673446884, -2.314172826042592e-05, -0.00025455901086467652, -2.3141728260425893e-05, -2.3141728260425872e-05, -4.6283456520851989e-05, -0.00023141728260425576, -4.6283456520852016e-05, -0.00023430999863680992, -2.892716032553218e-06, -4.6283456520852043e-05, -4.6283456520851962e-05, -1.1570864130213045e-05, -0.00024298814673446884, -0.00023141728260425495, -0.000231417282604255, -0.00023141728260425644, -2.8927160325532514e-06, -1.1570864130212857e-05, -2.8927160325532307e-06, -2.8927160325532582e-06, -2.8927160325532671e-06, -2.314172826042596e-05, -2.3141728260425967e-05, -2.3141728260425954e-05, -2.314172826042596e-05, -2.8927160325532311e-06, -2.8927160325532336e-06, -2.8927160325532302e-06, -2.3141728260426049e-05, -2.892716032553215e-05, -5.7854320651064056e-05, -4.628345652085144e-05, -4.6283456520850572e-05, -2.3141728260426042e-05, -6.9425184781275168e-05, -8.6781480976592435e-06, -0.00025455901086467782, -4.6283456520850518e-05, -0.0002082755543438276, -2.8927160325532497e-06, -2.8927160325532404e-06, -7.2317900813830598e-05, -4.6283456520851819e-05, -2.3141728260425899e-05, -2.0249012227872386e-05, -1.1570864130212865e-05, -5.7854320651062961e-06, -0.00020827555434382763, -5.785432065106502e-06, -1.1570864130212894e-05, -1.1570864130212894e-05, -0.0002082755543438276, -2.3141728260425825e-05, -2.8927160325532387e-06, -2.3141728260425899e-05, -2.8927160325532307e-06, -2.3141728260425879e-05, -2.8927160325532102e-05, -8.6781480976594214e-06, -2.3141728260425893e-05, -4.3390740488297615e-05, -2.8927160325532175e-06, -2.3141728260425818e-05, -5.785432065106535e-06, -5.7854320651065342e-06, -5.7854320651065223e-06, -2.8927160325532442e-06, -1.7356296195318663e-05, -8.6781480976592638e-06, -2.3141728260426001e-05, -2.3141728260426028e-05, -4.6283456520851718e-05, -7.5210616846383292e-05, -6.653246874872177e-05, -2.8927160325532175e-06, -4.6283456520851447e-05, -2.3141728260426015e-05, -1.7356296195318622e-05, -5.7854320651064334e-06, -2.8927160325532336e-06, -2.8927160325532582e-06, -0.00023141728260425644, -0.000231417282604255, -0.0004686199972736168, -0.000231417282604255, -0.00023141728260425576, -1.157086413021307e-05, -5.7854320651064334e-06, -2.3141728260425713e-05, -2.6034444292978505e-05, -1.1570864130213067e-05, -3.1819876358084687e-05, -2.8927160325532501e-06, -2.8927160325532196e-06, -4.6283456520851467e-05, -2.3141728260425822e-05, -2.3141728260425866e-05, -2.8927160325532408e-06, -2.8927160325532506e-06, -1.1570864130212982e-05, -1.1570864130212989e-05, -4.6283456520851447e-05, -2.3141728260426028e-05, -2.8927160325532264e-06, -0.00046861999727362179, -2.3141728260426015e-05, -2.3141728260426008e-05, -2.8927160325532459e-06, -1.1570864130212989e-05, -1.1570864130212985e-05, -5.7854320651064376e-06, -5.7854320651064376e-06, -8.6781480976594129e-06, -2.8927160325532514e-06, -5.7854320651064376e-06, -5.7854320651064376e-06, -2.892716032553234e-06, -2.8927160325532518e-06, -1.1570864130212899e-05, -3.471259239063753e-05, -2.3141728260425815e-05, -2.8927160325532298e-06, -2.8927160325532192e-06, -5.2068888585956935e-05, -2.8927160325532434e-06, -1.1570864130212851e-05, -5.7854320651064317e-06, -4.628345652085102e-05, -4.6283456520851074e-05, -1.4463580162766051e-05, -1.1570864130212962e-05, -5.78543206510643e-06, -1.7356296195318772e-05, -0.0002458808627670205, -2.8927160325532383e-06, -1.1570864130212958e-05, -1.1570864130212965e-05, -4.6283456520851128e-05, -4.6283456520850965e-05, -1.1570864130212967e-05, -1.1570864130212926e-05, -1.1570864130212923e-05, -2.8927160325532302e-06, -0.00013306493749744508, -2.8927160325531852e-05, -2.8927160325532535e-06, -2.3141728260426008e-05, -2.3141728260425672e-05, -2.3141728260426015e-05, -4.6283456520850965e-05, -2.314172826042572e-05, -4.6283456520851128e-05, -2.31417282604257e-05, -2.3141728260425686e-05, -0.00088806382199382004, -2.3141728260426008e-05, -0.00057854320651064381, -2.3141728260425845e-05, -5.7854320651065045e-06, -0.00017356296195318902, -3.4712592390637611e-05, -1.4463580162766007e-05, -0.00017356296195318902, -2.892716032553223e-06, -2.314172826042596e-05, -2.3141728260425954e-05, -0.00046861999727362179, -2.3141728260425811e-05, -2.3141728260425805e-05, -0.00066243197145467647, -8.6781480976594535e-06, -0.00057854320651064414, -2.3141728260425937e-05, -2.3141728260425944e-05, -2.892716032553182e-06, -2.3141728260425947e-05, -2.3141728260425967e-05, -2.8927160325532277e-06, -4.6283456520851074e-05, -4.628345652085102e-05, -5.7854320651065223e-06, -1.1570864130212985e-05, -1.1570864130212989e-05, -2.3141728260426015e-05, -2.3141728260426021e-05, -0.0004686199972736168, -2.3141728260426028e-05, -2.3141728260426001e-05, -7.8103332878936378e-05, -0.00027770073912510121, -2.314172826042595e-05, -0.00020538283831127513, -3.4712592390637814e-05, -3.4712592390637814e-05, -2.3141728260426028e-05, -2.3141728260426103e-05, -2.8927160325532143e-05, -2.314172826042613e-05, -2.8927160325531869e-05, -6.0747036683617088e-05, -2.3141728260425832e-05, -1.4463580162766055e-05, -6.6532468748722529e-05, -2.3141728260425818e-05, -3.4712592390637611e-05, -8.6781480976592638e-06, -1.4463580162766017e-05, -5.7854320651065265e-06, -2.8927160325532514e-06, -2.8927160325532387e-06, -2.3141728260426133e-05, -3.4712592390637706e-05, -1.7356296195318622e-05, -1.1570864130212914e-05, -2.3141728260426042e-05, -2.314172826042572e-05, -2.3141728260425686e-05, -4.6283456520851426e-05, -2.3141728260425767e-05, -1.1570864130212965e-05, -4.628345652085142e-05, -2.3141728260425774e-05, -1.1570864130212958e-05, -2.3141728260425672e-05, -2.8927160325532226e-06, -2.3141728260425778e-05, -2.3141728260425767e-05, -4.6283456520852043e-05, -6.9425184781275466e-05, -2.3141728260425886e-05, -4.6283456520852131e-05, -4.628345652085205e-05, -2.3141728260425778e-05, -2.3141728260425784e-05, -2.3141728260425818e-05, -2.3141728260425798e-05, -2.6034444292978457e-05, -9.8352345106809147e-05, -5.7854320651064283e-06, -2.3141728260426103e-05, -2.3141728260425764e-05, -2.6034444292978444e-05, -7.5210616846382993e-05, -2.3141728260426028e-05, -2.3141728260425899e-05, -2.3141728260426126e-05, -1.1570864130212962e-05, -1.1570864130212965e-05, -2.8927160325532497e-06, -2.8927160325532671e-06, -2.8927160325532535e-06, -5.7854320651064884e-06, -4.9176172553404743e-05, -8.6781480976594566e-05, -3.4712592390637557e-05, -1.7356296195318663e-05, -2.892716032553237e-06, -1.1570864130212955e-05, -4.6283456520850518e-05, -6.9425184781275384e-05, -2.3141728260426096e-05, -1.1570864130212955e-05, -4.6283456520850627e-05, -4.6283456520850572e-05, -1.1570864130212955e-05, -3.4712592390637638e-05, -2.3141728260425811e-05, -2.8927160325532624e-06, -5.78543206510643e-06, -1.1570864130212955e-05, -1.1570864130212967e-05, -2.6034444292978461e-05, -1.4463580162766031e-05, -2.3141728260426001e-05, -4.628345652085146e-05, -0.00020827555434382782, -1.1570864130213045e-05, -2.8927160325532315e-06, -0.00017356296195318902, -2.3141728260425866e-05, 0.011646074747059126, -0.00013885036956255044, -0.00014463580162766112, 0.011646074747059126, -1.1570864130213045e-05, -1.1570864130213041e-05, -2.3141728260425899e-05, -2.3141728260425879e-05, -1.1570864130212938e-05, -1.1570864130212938e-05, -2.3141728260426072e-05, -2.8927160325532612e-06, -2.3141728260426086e-05, -2.8927160325532362e-06, -2.8927160325531532e-06, -0.00020249012227872295, -1.1570864130212938e-05, -1.1570864130212938e-05, -0.00017645567798574388, -5.7854320651065138e-06, -0.0002082755543438276, -0.00020827555434382763, -2.3141728260425859e-05, -2.8927160325532315e-06, -2.3141728260425879e-05, -0.0002082755543438276, -0.00020827555434382758, -2.3141728260425866e-05, -2.3141728260425845e-05, -5.7854320651064537e-06, -5.7854320651064994e-06, -4.6283456520851494e-05, -2.3141728260425852e-05, -2.3141728260425859e-05, -8.6781480976594298e-06, -4.6283456520851494e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943056e-07, -2.4105966937943061e-07, -4.8452993545266163e-05, -4.8211933875886313e-05, -1.2052983468971627e-06, -2.4105966937943056e-07, -7.2317900813830407e-07, -2.4105966937943407e-06, -1.9284773550354773e-05, -4.8211933875886122e-07, -2.2177489582907578e-05, -2.4105966937943061e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354773e-05, -1.9284773550354773e-05, -1.9284773550354449e-06, -5.4720544949130293e-05, -4.8211933875886101e-07, -4.8211933875886957e-05, -3.8569547100708881e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354436e-06, -1.2052983468971627e-06, -7.2317900813830459e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943056e-07, -3.6158950406915289e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.1695370244148414e-06, -1.9284773550354449e-06, -3.6158950406915162e-06, -4.8211933875886112e-07, -2.4105966937943051e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943056e-07, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -1.9284773550354449e-06, -3.8569547100708898e-06, -2.4105966937943352e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -2.4105966937943056e-07, -1.9284773550354449e-06, -4.0980143794502846e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -7.7139094201417745e-06, -6.0264917344858053e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -9.6423867751772202e-07, -1.9284773550354449e-06, -2.4105966937943361e-06, -2.6516563631737211e-06, -9.6423867751772202e-07, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886101e-07, -1.9284773550354445e-06, -1.9284773550354449e-06, -2.4105966937943051e-07, -1.9284773550354449e-06, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943056e-07, -1.928477355035444e-06, -1.928477355035444e-06, -1.9284773550354449e-06, -1.928477355035444e-06, -5.7854320651064317e-06, -1.928477355035444e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.3390740488297751e-06, -9.6423867751772245e-07, -2.4105966937943056e-07, -4.8211933875886122e-07, -3.1337757019325327e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, 0.00096182808082393486, -1.9284773550354449e-06, -2.1213250905389789e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -1.9284773550354655e-05, -3.8569547100708889e-06, -1.9525833219734132e-05, -2.4105966937943061e-07, -3.8569547100708889e-06, -3.8569547100708881e-06, -9.6423867751772308e-07, -2.0249012227872329e-05, -1.9284773550354773e-05, -1.9284773550354641e-05, -1.9284773550354689e-05, -2.4105966937943056e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -2.4105966937943056e-07, -2.4105966937943051e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354445e-06, -2.4105966937943441e-06, -4.8211933875886764e-06, -3.8569547100708881e-06, -3.8569547100708898e-06, -1.9284773550354445e-06, -5.7854320651064376e-06, -7.2317900813831508e-07, -2.1213250905389959e-05, -3.8569547100708889e-06, -1.7356296195318833e-05, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.0264917344857417e-06, -3.8569547100708906e-06, -1.9284773550354449e-06, -1.687417685656012e-06, -9.6423867751772202e-07, -4.8211933875886112e-07, -1.7356296195318826e-05, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.7356296195318826e-05, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.410596693794334e-06, -7.2317900813830459e-07, -1.9284773550354449e-06, -3.615895040691506e-06, -2.4105966937943061e-07, -1.9284773550354453e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -1.4463580162766174e-06, -7.2317900813831359e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.8569547100708898e-06, -6.2675514038650992e-06, -5.5443723957268954e-06, -2.4105966937943061e-07, -3.8569547100708889e-06, -1.9284773550354449e-06, -1.4463580162766204e-06, -4.8211933875886133e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354689e-05, -1.9284773550354641e-05, -3.9051666439468379e-05, -1.9284773550354641e-05, -1.9284773550354655e-05, -9.6423867751772202e-07, -4.8211933875886122e-07, -1.9284773550354436e-06, -2.1695370244148371e-06, -9.6423867751772202e-07, -2.6516563631737359e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -2.4105966937943056e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.8569547100708881e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -3.9051666439468291e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.2317900813830459e-07, -2.4105966937943056e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943056e-07, -9.6423867751772202e-07, -2.8927160325532201e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.3390740488297014e-06, -2.4105966937943061e-07, -9.6423867751772139e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.205298346897168e-06, -9.6423867751772245e-07, -4.8211933875886112e-07, -1.4463580162766092e-06, -2.0490071897251667e-05, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -1.1088744791453754e-05, -2.4105966937943255e-06, -2.4105966937943056e-07, -1.9284773550354445e-06, -1.928477355035444e-06, -1.9284773550354445e-06, -3.8569547100708898e-06, -1.928477355035444e-06, -3.8569547100708898e-06, -1.928477355035444e-06, -1.928477355035444e-06, -7.4005318499486734e-05, -1.9284773550354449e-06, -4.8211933875886618e-05, -1.9284773550354449e-06, -4.8211933875886112e-07, -1.4463580162765934e-05, -2.8927160325532192e-06, -1.2052983468971661e-06, -1.4463580162766095e-05, -2.4105966937943061e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.9051666439468291e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -5.5202664287889396e-05, -7.2317900813830417e-07, -4.8211933875886659e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.4105966937943061e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.9051666439468379e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -6.5086110732446024e-06, -2.3141728260425754e-05, -1.9284773550354449e-06, -1.7115236525939312e-05, -2.8927160325532158e-06, -2.8927160325532158e-06, -1.928477355035444e-06, -1.928477355035444e-06, -2.410596693794345e-06, -1.928477355035444e-06, -2.4105966937943399e-06, -5.0622530569680788e-06, -1.9284773550354449e-06, -1.2052983468971712e-06, -5.54437239572687e-06, -1.9284773550354449e-06, -2.8927160325532192e-06, -7.2317900813831381e-07, -1.2052983468971661e-06, -4.8211933875886101e-07, -2.4105966937943056e-07, -2.4105966937943061e-07, -1.9284773550354453e-06, -2.8927160325531383e-06, -1.4463580162765884e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.928477355035444e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.8569547100708881e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -1.928477355035444e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -5.7854320651064351e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.1695370244149307e-06, -8.1960287589006098e-06, -4.8211933875886101e-07, -1.928477355035444e-06, -1.9284773550354449e-06, -2.1695370244148515e-06, -6.2675514038652526e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -2.4105966937943051e-07, -2.4105966937943056e-07, -4.8211933875886122e-07, -4.09801437945026e-06, -7.2317900813829689e-06, -2.8927160325532192e-06, -1.4463580162766174e-06, -2.4105966937943061e-07, -9.6423867751772245e-07, -3.8569547100708889e-06, -5.7854320651064342e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -2.8927160325532188e-06, -1.9284773550354449e-06, -2.4105966937943051e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.1695370244149095e-06, -1.2052983468971695e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -1.7356296195318812e-05, -9.6423867751772308e-07, -2.4105966937943061e-07, -1.4463580162765931e-05, -1.9284773550354449e-06, -1.1570864130213045e-05, -1.157086413021287e-05, -1.2052983468971609e-05, -1.1570864130213045e-05, 0.00098111285437428651, -9.6423867751772266e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354445e-06, -2.4105966937943051e-07, -1.9284773550354445e-06, -2.4105966937943061e-07, -2.4105966937943056e-07, -1.6874176856560068e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.4704639832145386e-05, -4.8211933875886112e-07, -1.7356296195318826e-05, -1.7356296195318826e-05, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.7356296195318833e-05, -1.7356296195318799e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.2317900813830438e-07, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943056e-07, -2.4105966937943061e-07, -4.8452993545266149e-05, -4.82119338758863e-05, -1.2052983468971627e-06, -2.4105966937943056e-07, -7.2317900813830385e-07, -2.4105966937943407e-06, -1.928477355035478e-05, -4.8211933875886122e-07, -2.2177489582907578e-05, -2.4105966937943061e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.928477355035478e-05, -1.928477355035478e-05, -1.9284773550354449e-06, -5.4720544949130293e-05, -4.8211933875886101e-07, -4.8211933875886944e-05, -3.8569547100708881e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354436e-06, -1.2052983468971627e-06, -7.2317900813830438e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943056e-07, -3.6158950406915281e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.1695370244148422e-06, -1.9284773550354449e-06, -3.6158950406915162e-06, -4.8211933875886112e-07, -2.4105966937943051e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943056e-07, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -1.9284773550354449e-06, -3.8569547100708898e-06, -2.4105966937943357e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -2.4105966937943056e-07, -1.9284773550354449e-06, -4.0980143794502837e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -7.7139094201417745e-06, -6.0264917344858036e-06, -1.9284773550354449e-06, -3.8569547100708889e-06, -3.8569547100708881e-06, -9.6423867751772202e-07, -1.9284773550354449e-06, -2.4105966937943365e-06, -2.6516563631737211e-06, -9.6423867751772202e-07, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -4.8211933875886101e-07, -1.9284773550354445e-06, -1.9284773550354449e-06, -2.4105966937943051e-07, -1.9284773550354449e-06, -4.8211933875886112e-07, -1.9284773550354445e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -3.8569547100708881e-06, -3.8569547100708881e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943056e-07, -1.928477355035444e-06, -1.928477355035444e-06, -1.9284773550354449e-06, -1.928477355035444e-06, -5.78543206510643e-06, -1.928477355035444e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.3390740488297767e-06, -9.6423867751772245e-07, -2.4105966937943056e-07, -4.8211933875886122e-07, 0.00097894331734987221, -1.9284773550354449e-06, -3.8569547100708898e-06, -2.0249012227872329e-05, -1.9284773550354449e-06, -2.1213250905389789e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -1.9284773550354658e-05, -3.8569547100708889e-06, -1.9525833219734132e-05, -2.4105966937943061e-07, -3.8569547100708889e-06, -3.8569547100708881e-06, -9.6423867751772266e-07, -2.0249012227872329e-05, -1.928477355035478e-05, -1.9284773550354641e-05, -1.9284773550354692e-05, -2.4105966937943056e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -2.4105966937943056e-07, -2.4105966937943051e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354445e-06, -2.4105966937943441e-06, -4.8211933875886764e-06, -3.8569547100708881e-06, -3.8569547100708898e-06, -1.9284773550354445e-06, -5.7854320651064359e-06, -7.2317900813831508e-07, -2.1213250905389959e-05, -3.8569547100708889e-06, -1.7356296195318833e-05, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.0264917344857417e-06, -3.8569547100708906e-06, -1.9284773550354449e-06, -1.6874176856560124e-06, -9.6423867751772202e-07, -4.8211933875886112e-07, -1.7356296195318833e-05, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.7356296195318826e-05, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.4105966937943348e-06, -7.2317900813830438e-07, -1.9284773550354449e-06, -3.6158950406915052e-06, -2.4105966937943061e-07, -1.9284773550354453e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -1.4463580162766166e-06, -7.2317900813831338e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.8569547100708898e-06, -6.2675514038651009e-06, -5.5443723957268954e-06, -2.4105966937943061e-07, -3.8569547100708889e-06, -1.9284773550354449e-06, -1.44635801627662e-06, -4.8211933875886133e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354692e-05, -1.9284773550354641e-05, -3.9051666439468379e-05, -1.9284773550354641e-05, -1.9284773550354658e-05, -9.6423867751772202e-07, -4.8211933875886122e-07, -1.9284773550354436e-06, -2.169537024414838e-06, -9.6423867751772202e-07, -2.6516563631737359e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -2.4105966937943056e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.8569547100708881e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -3.9051666439468291e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.2317900813830438e-07, -2.4105966937943056e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943056e-07, -9.6423867751772202e-07, -2.8927160325532192e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.3390740488297014e-06, -2.4105966937943061e-07, -9.6423867751772139e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.205298346897168e-06, -9.6423867751772245e-07, -4.8211933875886112e-07, -1.4463580162766083e-06, -2.0490071897251667e-05, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -1.1088744791453757e-05, -2.4105966937943255e-06, -2.4105966937943056e-07, -1.9284773550354445e-06, -1.928477355035444e-06, -1.9284773550354445e-06, -3.8569547100708898e-06, -1.928477355035444e-06, -3.8569547100708898e-06, -1.928477355035444e-06, -1.928477355035444e-06, -7.400531849948672e-05, -1.9284773550354449e-06, -4.8211933875886618e-05, -1.9284773550354449e-06, -4.8211933875886112e-07, -1.4463580162765928e-05, -2.8927160325532184e-06, -1.2052983468971666e-06, -1.4463580162766092e-05, -2.4105966937943061e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.9051666439468291e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -5.5202664287889396e-05, -7.2317900813830396e-07, -4.8211933875886645e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -2.4105966937943061e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.9051666439468379e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -6.5086110732446024e-06, -2.3141728260425747e-05, -1.9284773550354449e-06, -1.7115236525939315e-05, -2.8927160325532158e-06, -2.8927160325532158e-06, -1.928477355035444e-06, -1.928477355035444e-06, -2.4105966937943458e-06, -1.928477355035444e-06, -2.4105966937943399e-06, -5.0622530569680788e-06, -1.9284773550354449e-06, -1.2052983468971712e-06, -5.5443723957268717e-06, -1.9284773550354449e-06, -2.8927160325532184e-06, -7.2317900813831359e-07, -1.2052983468971661e-06, -4.8211933875886101e-07, -2.4105966937943056e-07, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.8927160325531375e-06, -1.446358016276588e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.928477355035444e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.8569547100708881e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -1.928477355035444e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -5.7854320651064351e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.1695370244149299e-06, -8.1960287589006064e-06, -4.8211933875886101e-07, -1.928477355035444e-06, -1.9284773550354449e-06, -2.1695370244148524e-06, -6.2675514038652543e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -2.4105966937943051e-07, -2.4105966937943056e-07, -4.8211933875886122e-07, -4.0980143794502592e-06, -7.2317900813829672e-06, -2.8927160325532184e-06, -1.4463580162766166e-06, -2.4105966937943061e-07, -9.6423867751772245e-07, -3.8569547100708889e-06, -5.7854320651064325e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -2.892716032553218e-06, -1.9284773550354449e-06, -2.4105966937943051e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.1695370244149095e-06, -1.2052983468971699e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -1.7356296195318812e-05, -9.6423867751772266e-07, -2.4105966937943061e-07, -1.4463580162765928e-05, -1.9284773550354449e-06, -1.1570864130213041e-05, -1.1570864130212867e-05, -1.2052983468971607e-05, -1.1570864130213041e-05, -9.6423867751772266e-07, 0.00098111285437428651, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354445e-06, -2.4105966937943051e-07, -1.9284773550354445e-06, -2.4105966937943061e-07, -2.4105966937943056e-07, -1.6874176856560075e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.4704639832145382e-05, -4.8211933875886112e-07, -1.7356296195318826e-05, -1.7356296195318833e-05, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.7356296195318833e-05, -1.7356296195318799e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.2317900813830417e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -9.6905987090531892e-05, -9.6423867751772166e-05, -2.4105966937943111e-06, -4.8211933875886133e-07, -1.4463580162765965e-06, -4.8211933875886527e-06, -3.8569547100709343e-05, -9.6423867751772245e-07, -4.4354979165815401e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100709343e-05, -3.8569547100709337e-05, -3.8569547100708898e-06, -0.0001094410898982616, -9.6423867751772245e-07, -9.6423867751773454e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.4105966937943111e-06, -1.4463580162765778e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813830205e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.33907404882972e-06, -3.8569547100708915e-06, -7.2317900813829985e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.713909420141783e-06, 0.0019593329927160203, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -8.1960287589006098e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.2052983468971426e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.821193387588623e-06, -5.3033127263474592e-06, -1.9284773550354449e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212768e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594569e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652526e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.0498024455744644e-05, -3.8569547100708906e-06, -4.24265018107797e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.85695471007091e-05, -7.7139094201417796e-06, -3.9051666439468101e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.049802445574463e-05, -3.8569547100709343e-05, -3.8569547100709066e-05, -3.8569547100709167e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -4.8211933875886612e-06, -9.6423867751772986e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -1.157086413021278e-05, -1.4463580162766183e-06, -4.2426501810780039e-05, -7.7139094201417813e-06, -3.471259239063797e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971594e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120376e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390637956e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390637956e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886408e-06, -1.4463580162765973e-06, -3.8569547100708915e-06, -7.2317900813829739e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325532108e-06, -1.4463580162766153e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730475e-05, -1.1088744791453859e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532167e-06, -9.6423867751772266e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709167e-05, -3.8569547100709066e-05, -7.8103332878936446e-05, -3.8569547100709066e-05, -3.85695471007091e-05, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297115e-06, -1.9284773550354449e-06, -5.3033127263474871e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936269e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162765973e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651063927e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.678148097659479e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943221e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325531938e-06, -4.0980143794503347e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.2177489582907622e-05, -4.821193387588623e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897222, -3.8569547100708906e-06, -9.6423867751772437e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -2.8927160325531706e-05, -5.785432065106391e-06, -2.4105966937943191e-06, -2.8927160325532035e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936269e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.0001104053285757792, -1.4463580162765965e-06, -9.6423867751772857e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936446e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489225e-05, -4.6283456520851115e-05, -3.8569547100708915e-06, -3.4230473051878921e-05, -5.7854320651063859e-06, -5.7854320651063859e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886637e-06, -3.8569547100708898e-06, -4.8211933875886527e-06, -1.0124506113936154e-05, -3.8569547100708915e-06, -2.4105966937943289e-06, -1.1088744791453811e-05, -3.8569547100708906e-06, -5.785432065106391e-06, -1.4463580162766158e-06, -2.4105966937943187e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063876e-06, -2.8927160325532158e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.1570864130212775e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297412e-06, -1.6392057517801321e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488297412e-06, -1.2535102807730485e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -8.1960287589005624e-06, -1.4463580162765867e-05, -5.785432065106391e-06, -2.8927160325532108e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417813e-06, -1.1570864130212774e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651063902e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.3390740488297335e-06, -2.4105966937943255e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.4712592390637956e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531706e-05, -3.8569547100708906e-06, -2.3141728260425899e-05, -2.3141728260425551e-05, -2.4105966937943099e-05, -2.3141728260425899e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, 0.0019602972313935386, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.3748353713120381e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.9409279664290657e-05, -9.6423867751772245e-07, -3.4712592390637956e-05, -3.4712592390637956e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.471259239063797e-05, -3.4712592390637895e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765969e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -9.6905987090531784e-05, -9.6423867751772058e-05, -2.4105966937943128e-06, -4.8211933875886133e-07, -1.4463580162765978e-06, -4.8211933875886561e-06, -3.8569547100709357e-05, -9.6423867751772245e-07, -4.4354979165815455e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100709364e-05, -3.8569547100709357e-05, -3.8569547100708898e-06, -0.00010944108989826171, -9.6423867751772245e-07, -9.6423867751773318e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.4105966937943128e-06, -1.4463580162765817e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813830138e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297268e-06, -3.8569547100708915e-06, -7.2317900813829909e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, 0.0019564402766834681, -4.8211933875886264e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886122e-07, -3.8569547100708906e-06, -8.1960287589006166e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283556e-05, -1.2052983468971456e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.8211933875886264e-06, -5.3033127263474575e-06, -1.9284773550354449e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -4.8211933875886112e-07, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212758e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594705e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652543e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.0498024455744644e-05, -3.8569547100708906e-06, -4.24265018107797e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.856954710070912e-05, -7.7139094201417796e-06, -3.9051666439468114e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.049802445574463e-05, -3.8569547100709357e-05, -3.8569547100709093e-05, -3.8569547100709188e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -4.8211933875886629e-06, -9.642386775177302e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -3.8569547100708898e-06, -1.157086413021277e-05, -1.4463580162766174e-06, -4.2426501810780026e-05, -7.7139094201417813e-06, -3.4712592390638024e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971577e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120414e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390638011e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390638011e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886442e-06, -1.4463580162765961e-06, -3.8569547100708915e-06, -7.2317900813829672e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325532074e-06, -1.4463580162766141e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730475e-05, -1.1088744791453872e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532141e-06, -9.6423867751772266e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709188e-05, -3.8569547100709093e-05, -7.8103332878936473e-05, -3.8569547100709093e-05, -3.856954710070912e-05, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297183e-06, -1.9284773550354449e-06, -5.3033127263474854e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936296e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162765961e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651063876e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976594925e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.4105966937943238e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -2.8927160325531913e-06, -4.0980143794503347e-05, -4.8211933875886144e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.217748958290765e-05, -4.8211933875886256e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -7.7139094201417813e-06, -3.8569547100708889e-06, -3.8569547100708889e-06, -0.00014801063699897203, -3.8569547100708906e-06, -9.6423867751772302e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -2.8927160325531679e-05, -5.7854320651063859e-06, -2.4105966937943204e-06, -2.8927160325532008e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936296e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -0.00011040532857577931, -1.4463580162765952e-06, -9.6423867751772749e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936473e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489225e-05, -4.628345652085106e-05, -3.8569547100708915e-06, -3.4230473051878975e-05, -5.7854320651063809e-06, -5.7854320651063809e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886662e-06, -3.8569547100708898e-06, -4.8211933875886552e-06, -1.0124506113936154e-05, -3.8569547100708915e-06, -2.4105966937943302e-06, -1.1088744791453825e-05, -3.8569547100708906e-06, -5.7854320651063859e-06, -1.4463580162766145e-06, -2.41059669379432e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063842e-06, -2.8927160325532124e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -3.8569547100708889e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.1570864130212765e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297479e-06, -1.6392057517801335e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488297479e-06, -1.2535102807730485e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -8.1960287589005691e-06, -1.4463580162765853e-05, -5.7854320651063859e-06, -2.8927160325532074e-06, -4.8211933875886144e-07, -1.9284773550354453e-06, -7.7139094201417813e-06, -1.1570864130212763e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354453e-06, -5.7854320651063851e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.3390740488297412e-06, -2.4105966937943263e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.471259239063797e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531679e-05, -3.8569547100708906e-06, -2.3141728260425879e-05, -2.314172826042553e-05, -2.4105966937943069e-05, -2.3141728260425879e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, 0.0019602972313935386, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.3748353713120449e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.9409279664290629e-05, -9.6423867751772245e-07, -3.4712592390638011e-05, -3.4712592390638011e-05, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.4712592390638024e-05, -3.4712592390637956e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765961e-06, -7.713909420141783e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8452993545265919e-05, -4.8211933875886056e-05, -1.2052983468971555e-06, -2.4105966937943066e-07, -7.2317900813829739e-07, -2.4105966937943263e-06, -1.928477355035459e-05, -4.8211933875886133e-07, -2.2177489582907673e-05, -2.4105966937943072e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354597e-05, -1.9284773550354597e-05, -1.9284773550354449e-06, -5.4720544949130619e-05, -4.8211933875886122e-07, -4.82119338758867e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.9284773550354445e-06, -1.2052983468971555e-06, -7.2317900813829782e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -3.6158950406915094e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.1695370244148625e-06, -1.9284773550354457e-06, -3.6158950406914971e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943061e-07, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.9284773550354457e-06, -3.8569547100708915e-06, -2.4105966937943217e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -2.4105966937943061e-07, -1.9284773550354453e-06, -4.0980143794503057e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -6.0264917344857722e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -2.4105966937943225e-06, -2.6516563631737296e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354453e-06, -2.4105966937943056e-07, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -2.4105966937943066e-07, -1.9284773550354457e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -5.7854320651063775e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354453e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -4.3390740488297335e-06, -9.6423867751772287e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -3.1337757019326263e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -2.0249012227872302e-05, -1.9284773550354453e-06, -2.1213250905389898e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -1.9284773550354546e-05, -3.8569547100708898e-06, -1.9525833219734044e-05, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -2.0249012227872295e-05, -1.928477355035459e-05, -1.9284773550354533e-05, -1.9284773550354584e-05, -2.4105966937943061e-07, -9.6423867751772245e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.9284773550354449e-06, -2.4105966937943306e-06, -4.8211933875886476e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -1.9284773550354449e-06, -5.7854320651063842e-06, -7.2317900813830851e-07, -2.1213250905390026e-05, -3.8569547100708906e-06, -1.7356296195319005e-05, -2.4105966937943066e-07, -2.4105966937943072e-07, -6.0264917344857934e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -1.6874176856560192e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -1.7356296195318999e-05, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.7356296195318999e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -2.4105966937943204e-06, -7.2317900813829792e-07, -1.9284773550354457e-06, -3.6158950406914853e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.4463580162766037e-06, -7.2317900813830692e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -6.2675514038652373e-06, -5.5443723957269327e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.4463580162766071e-06, -4.8211933875886133e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.9284773550354584e-05, -1.9284773550354533e-05, -3.9051666439468209e-05, -1.9284773550354533e-05, -1.9284773550354546e-05, -9.6423867751772245e-07, -4.8211933875886133e-07, -1.9284773550354445e-06, -2.1695370244148583e-06, -9.6423867751772245e-07, -2.6516563631737444e-06, -2.4105966937943066e-07, -2.4105966937943072e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.8569547100708898e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.9051666439468121e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -7.2317900813829782e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -9.6423867751772224e-07, -2.8927160325531692e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297429e-06, -2.4105966937943066e-07, -9.6423867751772202e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.2052983468971611e-06, -9.6423867751772266e-07, -4.8211933875886122e-07, -1.4463580162765812e-06, -2.049007189725164e-05, -2.4105966937943072e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.1088744791453821e-05, -2.4105966937943111e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -7.4005318499486015e-05, -1.9284773550354453e-06, -4.8211933875886361e-05, -1.9284773550354457e-06, -4.8211933875886122e-07, -1.446358016276585e-05, -2.8927160325531913e-06, -1.2052983468971555e-06, -1.4463580162766011e-05, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.9051666439468121e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -5.520266428788964e-05, -7.2317900813829761e-07, -4.8211933875886401e-05, -1.9284773550354453e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.9051666439468209e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -6.5086110732446143e-06, -2.3141728260425544e-05, -1.9284773550354457e-06, -1.7115236525939461e-05, -2.8927160325531904e-06, -2.8927160325531904e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943314e-06, -1.9284773550354449e-06, -2.4105966937943263e-06, -5.0622530569680771e-06, -1.9284773550354457e-06, -1.2052983468971644e-06, -5.544372395726909e-06, -1.9284773550354453e-06, -2.8927160325531913e-06, -7.2317900813830703e-07, -1.2052983468971555e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943072e-07, -1.9284773550354449e-06, -2.8927160325531913e-06, -1.4463580162766062e-06, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354445e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -1.9284773550354457e-06, -9.6423867751772266e-07, -1.9284773550354445e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -5.7854320651063809e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.1695370244148731e-06, -8.196028758900664e-06, -4.8211933875886112e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -2.1695370244148731e-06, -6.2675514038652407e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.098014379450282e-06, -7.2317900813829333e-06, -2.8927160325531921e-06, -1.4463580162766037e-06, -2.4105966937943072e-07, -9.6423867751772266e-07, -3.8569547100708906e-06, -5.7854320651063817e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -2.8927160325531921e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772287e-07, -2.1695370244148697e-06, -1.2052983468971627e-06, -1.9284773550354453e-06, -3.8569547100708915e-06, -1.7356296195318978e-05, -9.6423867751772245e-07, -2.4105966937943072e-07, -1.4463580162765846e-05, -1.9284773550354453e-06, -1.1570864130212938e-05, -1.1570864130212765e-05, -1.2052983468971543e-05, -1.1570864130212938e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, 0.00098111285437428651, -9.6423867751772287e-07, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.6874176856560204e-05, -9.6423867751772287e-07, 0.00098111285437428651, -1.4704639832145328e-05, -4.8211933875886122e-07, -1.7356296195318999e-05, -1.7356296195318999e-05, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.7356296195319005e-05, -1.7356296195318971e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.2317900813829782e-07, -3.8569547100708915e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8452993545265906e-05, -4.8211933875886056e-05, -1.2052983468971555e-06, -2.4105966937943066e-07, -7.2317900813829739e-07, -2.4105966937943263e-06, -1.928477355035459e-05, -4.8211933875886133e-07, -2.2177489582907666e-05, -2.4105966937943072e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354597e-05, -1.9284773550354597e-05, -1.9284773550354449e-06, -5.4720544949130632e-05, -4.8211933875886122e-07, -4.8211933875886686e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.9284773550354445e-06, -1.2052983468971555e-06, -7.2317900813829782e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -3.6158950406915086e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.1695370244148634e-06, -1.9284773550354457e-06, -3.6158950406914963e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943061e-07, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.9284773550354457e-06, -3.8569547100708915e-06, -2.4105966937943217e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -2.4105966937943061e-07, -1.9284773550354453e-06, -4.0980143794503066e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -6.0264917344857722e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -2.4105966937943225e-06, -2.6516563631737296e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354453e-06, -2.4105966937943056e-07, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -2.4105966937943066e-07, -1.9284773550354457e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -5.7854320651063775e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354453e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -4.3390740488297352e-06, -9.6423867751772287e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -3.1337757019326263e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -2.0249012227872302e-05, -1.9284773550354453e-06, -2.1213250905389898e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -1.9284773550354546e-05, -3.8569547100708898e-06, -1.9525833219734044e-05, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -2.0249012227872295e-05, -1.928477355035459e-05, -1.9284773550354533e-05, -1.9284773550354584e-05, -2.4105966937943061e-07, -9.6423867751772245e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.9284773550354449e-06, -2.4105966937943306e-06, -4.8211933875886476e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -1.9284773550354449e-06, -5.7854320651063842e-06, -7.2317900813830851e-07, -2.1213250905390026e-05, -3.8569547100708906e-06, -1.7356296195319012e-05, -2.4105966937943066e-07, -2.4105966937943072e-07, -6.0264917344857934e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -1.6874176856560192e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -1.7356296195319005e-05, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.7356296195319005e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -2.4105966937943204e-06, -7.2317900813829792e-07, -1.9284773550354457e-06, -3.6158950406914853e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.4463580162766037e-06, -7.2317900813830692e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -6.2675514038652373e-06, -5.5443723957269344e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.4463580162766071e-06, -4.8211933875886133e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.9284773550354584e-05, -1.9284773550354533e-05, -3.9051666439468209e-05, -1.9284773550354533e-05, -1.9284773550354546e-05, -9.6423867751772245e-07, -4.8211933875886133e-07, -1.9284773550354445e-06, -2.1695370244148591e-06, -9.6423867751772245e-07, -2.6516563631737444e-06, -2.4105966937943066e-07, -2.4105966937943072e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.8569547100708898e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.9051666439468121e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -7.2317900813829782e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -9.6423867751772224e-07, -2.8927160325531692e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297446e-06, -2.4105966937943066e-07, -9.6423867751772202e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.2052983468971611e-06, -9.6423867751772266e-07, -4.8211933875886122e-07, -1.4463580162765812e-06, -2.049007189725164e-05, -2.4105966937943072e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.1088744791453821e-05, -2.4105966937943111e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -7.4005318499485988e-05, -1.9284773550354453e-06, -4.8211933875886361e-05, -1.9284773550354457e-06, -4.8211933875886122e-07, -1.4463580162765846e-05, -2.8927160325531913e-06, -1.2052983468971555e-06, -1.4463580162766011e-05, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.9051666439468121e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -5.5202664287889654e-05, -7.2317900813829761e-07, -4.8211933875886401e-05, -1.9284773550354453e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.9051666439468209e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -6.5086110732446143e-06, -2.3141728260425544e-05, -1.9284773550354457e-06, -1.7115236525939467e-05, -2.8927160325531904e-06, -2.8927160325531904e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943314e-06, -1.9284773550354449e-06, -2.4105966937943263e-06, -5.0622530569680771e-06, -1.9284773550354457e-06, -1.2052983468971644e-06, -5.544372395726909e-06, -1.9284773550354453e-06, -2.8927160325531913e-06, -7.2317900813830703e-07, -1.2052983468971555e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943072e-07, -1.9284773550354449e-06, -2.8927160325531913e-06, -1.4463580162766062e-06, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354445e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -1.9284773550354457e-06, -9.6423867751772266e-07, -1.9284773550354445e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -5.7854320651063809e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.169537024414874e-06, -8.196028758900664e-06, -4.8211933875886112e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -2.169537024414874e-06, -6.2675514038652407e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.0980143794502829e-06, -7.2317900813829299e-06, -2.8927160325531921e-06, -1.4463580162766037e-06, -2.4105966937943072e-07, -9.6423867751772266e-07, -3.8569547100708906e-06, -5.7854320651063817e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -2.8927160325531921e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772287e-07, -2.1695370244148706e-06, -1.2052983468971627e-06, -1.9284773550354453e-06, -3.8569547100708915e-06, -1.7356296195318985e-05, -9.6423867751772245e-07, -2.4105966937943072e-07, -1.4463580162765846e-05, -1.9284773550354453e-06, -1.1570864130212938e-05, -1.1570864130212765e-05, -1.2052983468971543e-05, -1.1570864130212938e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, 0.00098111285437428651, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.6874176856560204e-05, 0.00098111285437428651, -9.6423867751772287e-07, -1.4704639832145321e-05, -4.8211933875886122e-07, -1.7356296195319005e-05, -1.7356296195319005e-05, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.7356296195319012e-05, -1.7356296195318978e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.2317900813829782e-07, -3.8569547100708915e-06, -3.8569547100708881e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6905987090532272e-05, -9.6423867751772573e-05, -2.4105966937943246e-06, -4.8211933875886122e-07, -1.4463580162766075e-06, -4.8211933875886493e-06, -3.8569547100709547e-05, -9.6423867751772245e-07, -4.4354979165815211e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100709547e-05, -3.8569547100709547e-05, -3.8569547100708881e-06, -0.00010944108989826069, -9.6423867751772202e-07, -9.642386775177386e-05, -7.7139094201417779e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708889e-06, -2.4105966937943246e-06, -1.4463580162766079e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -7.2317900813830527e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488296861e-06, -3.8569547100708898e-06, -7.231790081383029e-06, -9.6423867751772224e-07, -4.8211933875886112e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886696e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -8.1960287589005708e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971604e-05, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.928477355035444e-06, -3.8569547100708898e-06, -4.8211933875886713e-06, -5.3033127263474439e-06, -1.928477355035444e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886101e-07, -3.8569547100708898e-06, -9.6423867751772245e-07, 0.001960297231393539, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.157086413021287e-05, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -8.6781480976593892e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -6.267551403865123e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.0498024455744671e-05, -3.8569547100708898e-06, -4.2426501810779565e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -3.8569547100709303e-05, -7.7139094201417796e-06, -3.905166643946825e-05, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.9284773550354445e-06, -4.0498024455744657e-05, -3.8569547100709547e-05, -3.8569547100709269e-05, -3.8569547100709371e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886866e-06, -9.6423867751772884e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -1.1570864130212867e-05, -1.4463580162765654e-06, -4.2426501810779911e-05, -7.7139094201417796e-06, -3.4712592390637692e-05, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971644e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.3748353713120274e-06, -1.9284773550354445e-06, -9.6423867751772224e-07, -3.4712592390637679e-05, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.4712592390637679e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886662e-06, -1.4463580162766079e-06, -3.8569547100708898e-06, -7.231790081383007e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.8927160325532324e-06, -1.4463580162766261e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.2535102807730495e-05, -1.1088744791453798e-05, -4.8211933875886122e-07, -7.7139094201417796e-06, -3.8569547100708906e-06, -2.8927160325531726e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100709371e-05, -3.8569547100709269e-05, -7.8103332878936757e-05, -3.8569547100709269e-05, -3.8569547100709303e-05, -1.928477355035444e-06, -9.6423867751772245e-07, -3.8569547100708873e-06, -4.3390740488296776e-06, -1.928477355035444e-06, -5.3033127263474719e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -7.8103332878936568e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.4463580162766079e-06, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651064368e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -8.6781480976593688e-06, -4.8211933875886122e-07, -1.9284773550354428e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.4105966937943352e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -2.892716032553215e-06, -4.0980143794503334e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -2.21774895829075e-05, -4.8211933875886493e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708881e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -0.00014801063699897339, -3.8569547100708906e-06, -9.642386775177321e-05, -3.8569547100708898e-06, -9.6423867751772224e-07, -2.8927160325531828e-05, -5.7854320651064351e-06, -2.4105966937943323e-06, -2.8927160325532157e-05, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936568e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00011040532857577871, -1.4463580162766071e-06, -9.6423867751773291e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936757e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489403e-05, -4.6283456520851426e-05, -3.8569547100708898e-06, -3.4230473051878826e-05, -5.7854320651062631e-06, -5.7854320651062631e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -4.82119338758869e-06, -3.8569547100708898e-06, -4.8211933875886781e-06, -1.0124506113936158e-05, -3.8569547100708898e-06, -2.4105966937943424e-06, -1.1088744791453747e-05, -3.8569547100708898e-06, -5.7854320651064351e-06, -1.4463580162766268e-06, -2.4105966937943314e-06, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708881e-06, -5.7854320651064317e-06, -2.8927160325532374e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -1.1570864130212863e-05, -3.8569547100708898e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488297064e-06, -1.639205751780124e-05, -9.6423867751772224e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -4.3390740488297064e-06, -1.2535102807730502e-05, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -8.1960287589005217e-06, -1.4463580162765934e-05, -5.7854320651064351e-06, -2.8927160325532324e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -7.7139094201417796e-06, -1.1570864130212862e-05, -3.8569547100708881e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -5.7854320651064334e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.339074048829698e-06, -2.4105966937943246e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.4712592390637746e-05, -1.9284773550354445e-06, -4.8211933875886122e-07, -2.8927160325531801e-05, -3.8569547100708898e-06, -2.3141728260426072e-05, -2.3141728260425727e-05, -2.4105966937943208e-05, -2.3141728260426072e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, 0.001960297231393539, -4.8211933875886112e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.3748353713120191e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.9409279664290779e-05, -9.6423867751772245e-07, -3.4712592390637679e-05, -3.4712592390637679e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.4712592390637692e-05, -3.4712592390637624e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.4463580162766079e-06, -7.7139094201417796e-06, -4.8211933875886101e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.026491734485764e-08, -6.0264917344857653e-08, -1.2113248386316541e-05, -1.2052983468971578e-05, -3.0132458672429048e-07, -6.026491734485764e-08, -1.807947520345761e-07, -6.0264917344858476e-07, -4.8211933875886933e-06, -1.2052983468971531e-07, -5.5443723957268929e-06, -6.0264917344857653e-08, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886933e-06, -4.8211933875886925e-06, -4.8211933875886101e-07, -1.3680136237282628e-05, -1.2052983468971525e-07, -1.2052983468971739e-05, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971525e-07, -1.2052983468971525e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886091e-07, -3.0132458672429048e-07, -1.8079475203457223e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.026491734485764e-08, -9.0397376017288223e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -5.4238425610371013e-07, -4.8211933875886122e-07, -9.0397376017287947e-07, -1.2052983468971528e-07, -6.0264917344857627e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.026491734485764e-08, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971525e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -9.6423867751772245e-07, -6.0264917344858106e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -6.026491734485764e-08, -4.8211933875886122e-07, -1.0245035948625709e-06, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772224e-07, -1.9284773550354474e-06, -1.5066229336214219e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943051e-07, -4.8211933875886122e-07, -6.0264917344858106e-07, -6.6291409079343049e-07, -2.4105966937943051e-07, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.2052983468971525e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -6.0264917344857627e-08, -4.8211933875886122e-07, -1.2052983468971528e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -9.6423867751772202e-07, -9.6423867751772202e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.026491734485764e-08, -4.8211933875886101e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -1.4463580162766079e-06, -4.8211933875886101e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -1.0847685122074224e-06, -2.4105966937943061e-07, -6.026491734485764e-08, -1.2052983468971531e-07, -7.8344392548315805e-07, -4.8211933875886122e-07, -9.6423867751772224e-07, -5.0622530569680839e-06, -4.8211933875886122e-07, -5.303312726347449e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.8211933875886629e-06, -9.6423867751772245e-07, -4.8814583049335312e-06, -6.0264917344857653e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943051e-07, -5.0622530569680822e-06, -4.8211933875886933e-06, -4.8211933875886586e-06, -4.8211933875886713e-06, -6.026491734485764e-08, -2.4105966937943051e-07, -6.0264917344857653e-08, -6.026491734485764e-08, -6.0264917344857627e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886112e-07, -6.0264917344858582e-07, -1.2052983468971687e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -4.8211933875886112e-07, -1.4463580162766094e-06, -1.8079475203457877e-07, -5.3033127263474897e-06, -9.6423867751772224e-07, -4.3390740488297064e-06, -6.0264917344857653e-08, -6.0264917344857653e-08, -1.5066229336214564e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.218544214140029e-07, -2.4105966937943051e-07, -1.2052983468971528e-07, -4.3390740488297047e-06, -1.2052983468971528e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.3390740488297047e-06, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344858328e-07, -1.8079475203457615e-07, -4.8211933875886122e-07, -9.0397376017287651e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -1.2052983468971525e-07, -1.2052983468971525e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -3.6158950406915436e-07, -1.807947520345784e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -1.5668878509663119e-06, -1.3860930989317239e-06, -6.0264917344857653e-08, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.615895040691551e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886713e-06, -4.8211933875886586e-06, -9.7629166098670947e-06, -4.8211933875886586e-06, -4.8211933875886629e-06, -2.4105966937943051e-07, -1.2052983468971531e-07, -4.8211933875886101e-07, -5.4238425610370907e-07, -2.4105966937943051e-07, -6.6291409079343398e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.026491734485764e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -9.6423867751772224e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -9.7629166098670709e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.8079475203457615e-07, -6.026491734485764e-08, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -6.026491734485764e-08, -2.4105966937943051e-07, -7.2317900813830502e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -1.0847685122074249e-06, -6.0264917344857653e-08, -2.4105966937943051e-07, -1.2052983468971528e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.0132458672429185e-07, -2.4105966937943061e-07, -1.2052983468971528e-07, -3.6158950406915219e-07, -5.1225179743129167e-06, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.0264917344857653e-08, -2.7721861978634359e-06, -6.0264917344858106e-07, -6.026491734485764e-08, -4.8211933875886112e-07, -4.8211933875886101e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -4.8211933875886101e-07, -9.6423867751772245e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -1.8501329624871687e-05, -4.8211933875886122e-07, -1.2052983468971614e-05, -4.8211933875886122e-07, -1.2052983468971528e-07, -3.6158950406914819e-06, -7.2317900813830481e-07, -3.0132458672429148e-07, -3.615895040691523e-06, -6.0264917344857653e-08, -4.8211933875886112e-07, -4.8211933875886112e-07, -9.7629166098670709e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.3800666071972322e-05, -1.8079475203457604e-07, -1.2052983468971665e-05, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886112e-07, -4.8211933875886112e-07, -6.0264917344857653e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.7629166098670947e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.627152768311151e-06, 0.00023973384119784565, -4.8211933875886122e-07, -4.2788091314848347e-06, -7.2317900813830417e-07, -7.2317900813830417e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -6.0264917344858614e-07, -4.8211933875886101e-07, -6.0264917344858476e-07, -1.2655632642420201e-06, -4.8211933875886122e-07, -3.013245867242927e-07, -1.3860930989317175e-06, -4.8211933875886122e-07, -7.2317900813830481e-07, -1.8079475203457845e-07, -3.0132458672429143e-07, -1.2052983468971525e-07, -6.026491734485764e-08, -6.0264917344857653e-08, -4.8211933875886101e-07, -7.2317900813830438e-07, -3.61589504069155e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -4.8211933875886101e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772202e-07, -1.4463580162766088e-06, -4.8211933875886122e-07, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -5.4238425610371267e-07, -2.049007189725155e-06, -1.2052983468971525e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -5.4238425610371267e-07, -1.5668878509663131e-06, -4.8211933875886101e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -6.0264917344857653e-08, -6.0264917344857627e-08, -6.026491734485764e-08, -1.2052983468971531e-07, -1.024503594862565e-06, -1.8079475203457426e-06, -7.2317900813830481e-07, -3.6158950406915436e-07, -6.0264917344857653e-08, -2.4105966937943061e-07, -9.6423867751772224e-07, -1.4463580162766086e-06, -4.8211933875886101e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -7.231790081383047e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -1.2052983468971525e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -5.4238425610371182e-07, -3.0132458672429228e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.3390740488297064e-06, -2.4105966937943051e-07, -6.0264917344857653e-08, -3.6158950406914819e-06, -4.8211933875886122e-07, -2.8927160325532612e-06, -2.8927160325532175e-06, -3.0132458672429022e-06, -2.8927160325532612e-06, -2.4105966937943051e-07, -2.4105966937943051e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886112e-07, 0.00024545900834560639, -4.8211933875886112e-07, -6.0264917344857653e-08, -6.026491734485764e-08, -4.2185442141400188e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -3.6761599580363448e-06, -1.2052983468971528e-07, -4.3390740488297047e-06, -4.3390740488297047e-06, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.3390740488297064e-06, -4.339074048829698e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -1.2052983468971528e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.807947520345761e-07, -9.6423867751772245e-07, -3.8569547100708881e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6905987090532326e-05, -9.6423867751772627e-05, -2.4105966937943246e-06, -4.8211933875886122e-07, -1.4463580162766083e-06, -4.8211933875886493e-06, -3.8569547100709533e-05, -9.6423867751772245e-07, -4.4354979165815197e-05, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100709533e-05, -3.8569547100709533e-05, -3.8569547100708881e-06, -0.00010944108989826067, -9.6423867751772202e-07, -9.6423867751773914e-05, -7.7139094201417779e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708889e-06, -2.4105966937943246e-06, -1.4463580162766088e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -7.2317900813830544e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488296844e-06, -3.8569547100708898e-06, -7.231790081383029e-06, -9.6423867751772224e-07, -4.8211933875886112e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886688e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -8.1960287589005725e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971611e-05, -3.8569547100708898e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.928477355035444e-06, -3.8569547100708898e-06, -4.8211933875886705e-06, -5.3033127263474439e-06, -1.928477355035444e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772202e-07, 0.001960297231393539, -3.8569547100708898e-06, -4.8211933875886101e-07, -3.8569547100708898e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.7139094201417779e-06, -7.7139094201417779e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.1570864130212867e-05, -3.8569547100708881e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -8.6781480976593858e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -6.267551403865123e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -4.0498024455744671e-05, -3.8569547100708898e-06, -4.2426501810779565e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -3.8569547100709296e-05, -7.7139094201417796e-06, -3.905166643946825e-05, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -1.9284773550354445e-06, -4.0498024455744657e-05, -3.8569547100709533e-05, -3.8569547100709269e-05, -3.8569547100709364e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886101e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886849e-06, -9.642386775177285e-06, -7.7139094201417762e-06, -7.7139094201417796e-06, -3.8569547100708898e-06, -1.1570864130212874e-05, -1.4463580162765662e-06, -4.2426501810779917e-05, -7.7139094201417796e-06, -3.4712592390637679e-05, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971648e-05, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.3748353713120257e-06, -1.9284773550354445e-06, -9.6423867751772224e-07, -3.4712592390637665e-05, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.4712592390637665e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886662e-06, -1.4463580162766088e-06, -3.8569547100708898e-06, -7.2317900813830087e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.892716032553234e-06, -1.446358016276627e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -1.2535102807730495e-05, -1.1088744791453791e-05, -4.8211933875886122e-07, -7.7139094201417796e-06, -3.8569547100708906e-06, -2.8927160325531743e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100709364e-05, -3.8569547100709269e-05, -7.8103332878936757e-05, -3.8569547100709269e-05, -3.8569547100709296e-05, -1.928477355035444e-06, -9.6423867751772245e-07, -3.8569547100708873e-06, -4.3390740488296743e-06, -1.928477355035444e-06, -5.3033127263474736e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -7.8103332878936568e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.4463580162766088e-06, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651064401e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -8.6781480976593654e-06, -4.8211933875886122e-07, -1.9284773550354428e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -2.4105966937943352e-06, -1.9284773550354449e-06, -9.6423867751772224e-07, -2.8927160325532167e-06, -4.0980143794503334e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -2.2177489582907494e-05, -4.8211933875886493e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708881e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -7.7139094201417796e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -0.00014801063699897347, -3.8569547100708906e-06, -9.6423867751773237e-05, -3.8569547100708898e-06, -9.6423867751772224e-07, -2.8927160325531842e-05, -5.7854320651064384e-06, -2.4105966937943323e-06, -2.892716032553217e-05, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.8103332878936568e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00011040532857577868, -1.4463580162766079e-06, -9.6423867751773318e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772224e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936757e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489406e-05, -4.6283456520851453e-05, -3.8569547100708898e-06, -3.4230473051878806e-05, -5.785432065106258e-06, -5.785432065106258e-06, -3.8569547100708889e-06, -3.8569547100708898e-06, -4.82119338758869e-06, -3.8569547100708898e-06, -4.8211933875886781e-06, -1.0124506113936158e-05, -3.8569547100708898e-06, -2.4105966937943416e-06, -1.1088744791453743e-05, -3.8569547100708898e-06, -5.7854320651064384e-06, -1.4463580162766276e-06, -2.4105966937943314e-06, -9.6423867751772202e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708881e-06, -5.7854320651064351e-06, -2.8927160325532391e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -3.8569547100708881e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -3.8569547100708881e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -1.157086413021287e-05, -3.8569547100708898e-06, -7.7139094201417779e-06, -7.7139094201417762e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.3390740488297047e-06, -1.6392057517801247e-05, -9.6423867751772224e-07, -3.8569547100708881e-06, -3.8569547100708898e-06, -4.3390740488297047e-06, -1.25351028077305e-05, -3.8569547100708889e-06, -3.8569547100708898e-06, -3.8569547100708881e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -8.1960287589005251e-06, -1.4463580162765938e-05, -5.7854320651064384e-06, -2.892716032553234e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -7.7139094201417796e-06, -1.1570864130212868e-05, -3.8569547100708881e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -5.7854320651064368e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.3390740488296963e-06, -2.4105966937943246e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.4712592390637733e-05, -1.9284773550354445e-06, -4.8211933875886122e-07, -2.8927160325531808e-05, -3.8569547100708898e-06, -2.3141728260426086e-05, -2.314172826042574e-05, -2.4105966937943218e-05, -2.3141728260426086e-05, -1.9284773550354445e-06, -1.9284773550354445e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708898e-06, -4.8211933875886112e-07, 0.001960297231393539, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.3748353713120177e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.9409279664290792e-05, -9.6423867751772245e-07, -3.4712592390637665e-05, -3.4712592390637665e-05, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.4712592390637679e-05, -3.4712592390637611e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.7139094201417796e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.4463580162766088e-06, -7.7139094201417796e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -1.2113248386316483e-05, -1.2052983468971517e-05, -3.0132458672428899e-07, -6.0264917344857666e-08, -1.8079475203457445e-07, -6.026491734485818e-07, -4.8211933875886476e-06, -1.2052983468971533e-07, -5.5443723957269166e-06, -6.0264917344857679e-08, -9.6423867751772245e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886493e-06, -4.8211933875886493e-06, -4.8211933875886122e-07, -1.3680136237282651e-05, -1.2052983468971531e-07, -1.2052983468971678e-05, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886112e-07, -3.0132458672428899e-07, -1.8079475203457456e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857666e-08, -9.0397376017287757e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610371521e-07, -4.8211933875886144e-07, -9.039737601728746e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -9.6423867751772287e-07, -6.0264917344858053e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -1.0245035948625762e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.9284773550354445e-06, -1.5066229336214435e-06, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -6.0264917344858074e-07, -6.629140907934324e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.026491734485764e-08, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857666e-08, -4.8211933875886144e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.4463580162765952e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.0847685122074325e-06, -2.4105966937943072e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -7.8344392548315657e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -5.0622530569680754e-06, -4.8211933875886133e-07, -5.3033127263474744e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -4.8211933875886383e-06, -9.6423867751772245e-07, -4.8814583049335126e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -5.0622530569680737e-06, -4.8211933875886476e-06, -4.8211933875886341e-06, -4.8211933875886468e-06, -6.0264917344857653e-08, -2.4105966937943061e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.0264917344857653e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -6.0264917344858264e-07, -1.2052983468971623e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -4.8211933875886122e-07, -1.4463580162765969e-06, -1.8079475203457723e-07, -5.3033127263475058e-06, -9.6423867751772266e-07, -4.3390740488297479e-06, -6.0264917344857666e-08, -6.0264917344857679e-08, -1.5066229336214488e-06, -9.6423867751772287e-07, -4.8211933875886133e-07, -4.218544214140047e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -4.3390740488297479e-06, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297463e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -6.026491734485801e-07, -1.8079475203457459e-07, -4.8211933875886144e-07, -9.0397376017287174e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -3.6158950406915113e-07, -1.8079475203457684e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -1.5668878509663093e-06, -1.3860930989317328e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -3.6158950406915198e-07, -1.2052983468971533e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886468e-06, -4.8211933875886341e-06, -9.7629166098670523e-06, -4.8211933875886341e-06, -4.8211933875886383e-06, -2.4105966937943061e-07, -1.2052983468971533e-07, -4.8211933875886112e-07, -5.4238425610371415e-07, -2.4105966937943061e-07, -6.629140907934361e-07, -6.0264917344857666e-08, -6.0264917344857679e-08, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.762916609867032e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.8079475203457456e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -1.2052983468971536e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -2.4105966937943056e-07, -7.2317900813829274e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -1.0847685122074353e-06, -6.0264917344857666e-08, -2.4105966937943051e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.0132458672429032e-07, -2.4105966937943066e-07, -1.2052983468971531e-07, -3.6158950406914552e-07, -5.1225179743129099e-06, -6.0264917344857679e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857679e-08, 0.00024274708706508794, -6.0264917344857799e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -4.8211933875886112e-07, -9.6423867751772266e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -1.8501329624871514e-05, -4.8211933875886133e-07, -1.2052983468971594e-05, -4.8211933875886144e-07, -1.2052983468971531e-07, -3.6158950406914633e-06, -7.2317900813829824e-07, -3.0132458672428899e-07, -3.6158950406915043e-06, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.762916609867032e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.3800666071972403e-05, -1.8079475203457451e-07, -1.2052983468971604e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670523e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.6271527683111536e-06, -5.7854320651063893e-06, -4.8211933875886144e-07, -4.2788091314848635e-06, -7.2317900813829803e-07, -7.2317900813829803e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344858307e-07, -4.8211933875886122e-07, -6.0264917344858159e-07, -1.2655632642420193e-06, -4.8211933875886144e-07, -3.0132458672429111e-07, -1.3860930989317268e-06, -4.8211933875886133e-07, -7.2317900813829824e-07, -1.8079475203457686e-07, -3.0132458672428899e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -7.2317900813829824e-07, -3.6158950406915177e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943066e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.4105966937943066e-07, -4.8211933875886112e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.4463580162765961e-06, -4.8211933875886144e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610371786e-07, -2.0490071897251652e-06, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -5.4238425610371786e-07, -1.5668878509663102e-06, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -6.0264917344857653e-08, -1.2052983468971536e-07, -1.0245035948625703e-06, -1.8079475203457333e-06, -7.2317900813829845e-07, -3.6158950406915113e-07, -6.0264917344857679e-08, -2.4105966937943066e-07, -9.6423867751772266e-07, -1.4463580162765963e-06, -4.8211933875886122e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -7.2317900813829845e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943072e-07, -5.423842561037169e-07, -3.0132458672429069e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -4.3390740488297429e-06, -2.4105966937943061e-07, -6.0264917344857679e-08, -3.6158950406914633e-06, -4.8211933875886133e-07, -2.8927160325532362e-06, -2.892716032553193e-06, -3.0132458672428865e-06, -2.8927160325532362e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, 0.00024545900834560639, -6.0264917344857666e-08, -4.2185442141400476e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -3.6761599580363321e-06, -1.2052983468971531e-07, -4.3390740488297463e-06, -4.3390740488297479e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.3390740488297479e-06, -4.3390740488297395e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971536e-07, -1.2052983468971531e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.8079475203457456e-07, -9.6423867751772287e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -6.0264917344857653e-08, -1.2113248386316514e-05, -1.2052983468971546e-05, -3.0132458672428958e-07, -6.0264917344857653e-08, -1.807947520345752e-07, -6.0264917344858286e-07, -4.8211933875886772e-06, -1.2052983468971531e-07, -5.5443723957269115e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886781e-06, -4.8211933875886764e-06, -4.8211933875886112e-07, -1.3680136237282619e-05, -1.2052983468971528e-07, -1.2052983468971707e-05, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.8211933875886091e-07, -3.0132458672428952e-07, -1.8079475203457535e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857653e-08, -9.0397376017287947e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610371267e-07, -4.8211933875886133e-07, -9.039737601728709e-07, -1.2052983468971531e-07, -6.026491734485764e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -9.6423867751772245e-07, -6.0264917344858169e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -1.0245035948625733e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -1.928477355035444e-06, -1.5066229336214471e-06, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -2.4105966937943056e-07, -4.8211933875886133e-07, -6.026491734485819e-07, -6.6291409079343176e-07, -2.4105966937943056e-07, -9.6423867751772202e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971528e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.026491734485764e-08, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -9.6423867751772224e-07, -9.6423867751772224e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886112e-07, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886112e-07, -1.4463580162766016e-06, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -1.0847685122074279e-06, -2.4105966937943066e-07, -6.0264917344857653e-08, -1.2052983468971533e-07, -7.8344392548315731e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -5.0622530569680839e-06, -4.8211933875886133e-07, -5.3033127263474592e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772224e-07, -4.8211933875886501e-06, -9.6423867751772245e-07, -4.8814583049335211e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772224e-07, -2.4105966937943056e-07, -5.0622530569680839e-06, -4.8211933875886772e-06, -4.8211933875886468e-06, -4.8211933875886595e-06, -6.0264917344857653e-08, 0.00024527821359357174, -6.0264917344857666e-08, -6.0264917344857653e-08, -6.026491734485764e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.8211933875886122e-07, -6.0264917344858381e-07, -1.2052983468971647e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -1.4463580162765821e-06, -1.80794752034578e-07, -5.3033127263474947e-06, -9.6423867751772287e-07, -4.3390740488297285e-06, -6.0264917344857653e-08, -6.0264917344857666e-08, -1.5066229336214522e-06, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.2185442141400369e-07, -2.4105966937943056e-07, -1.2052983468971531e-07, -4.3390740488297268e-06, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.3390740488297268e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -6.0264917344858137e-07, -1.8079475203457535e-07, -4.8211933875886133e-07, -9.0397376017287344e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -6.0264917344857666e-08, -3.6158950406915272e-07, -1.807947520345776e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.5668878509663106e-06, -1.3860930989317285e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.6158950406915351e-07, -1.2052983468971531e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -4.8211933875886595e-06, -4.8211933875886468e-06, -9.7629166098670726e-06, -4.8211933875886468e-06, -4.8211933875886501e-06, -2.4105966937943056e-07, -1.2052983468971531e-07, -4.8211933875886101e-07, -5.4238425610371161e-07, -2.4105966937943056e-07, -6.6291409079343536e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -9.7629166098670506e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -1.8079475203457535e-07, -6.0264917344857653e-08, -1.2052983468971533e-07, -1.2052983468971533e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -2.4105966937943056e-07, -7.2317900813830184e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -1.08476851220743e-06, -6.0264917344857666e-08, -2.4105966937943045e-07, -1.2052983468971528e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.0132458672429111e-07, -2.4105966937943066e-07, -1.2052983468971528e-07, -3.615895040691506e-07, -5.1225179743129167e-06, -6.0264917344857666e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857666e-08, -2.772186197863446e-06, -6.0264917344857915e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886101e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -4.8211933875886101e-07, -9.6423867751772287e-07, -4.8211933875886101e-07, -4.8211933875886101e-07, -1.8501329624871616e-05, -4.8211933875886122e-07, -1.2052983468971622e-05, -4.8211933875886133e-07, -1.2052983468971531e-07, -3.61589504069147e-06, -7.2317900813830163e-07, -3.0132458672429048e-07, -3.6158950406915111e-06, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.7629166098670506e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.3800666071972359e-05, -1.8079475203457525e-07, -1.2052983468971634e-05, -4.8211933875886122e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971528e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.7629166098670726e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.6271527683111523e-06, -5.785432065106413e-06, -4.8211933875886133e-07, -4.2788091314848465e-06, -7.2317900813830099e-07, -7.2317900813830099e-07, -4.8211933875886112e-07, -4.8211933875886112e-07, -6.0264917344858423e-07, -4.8211933875886112e-07, -6.0264917344857926e-07, -1.2655632642420189e-06, -4.8211933875886133e-07, -3.0132458672429175e-07, -1.3860930989317226e-06, -4.8211933875886133e-07, -7.2317900813830163e-07, -1.8079475203457766e-07, -3.0132458672429048e-07, -1.2052983468971528e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -4.8211933875886112e-07, -7.2317900813830131e-07, -3.6158950406915336e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -4.8211933875886101e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -4.8211933875886101e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772224e-07, -1.4463580162766024e-06, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610371521e-07, -2.0490071897251596e-06, -1.2052983468971525e-07, -4.8211933875886112e-07, -4.8211933875886133e-07, -5.4238425610371521e-07, -1.5668878509663117e-06, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886112e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857653e-08, -6.026491734485764e-08, -6.0264917344857653e-08, -1.2052983468971533e-07, -1.0245035948625675e-06, -1.8079475203457367e-06, -7.2317900813830163e-07, -3.6158950406915272e-07, -6.0264917344857666e-08, -2.4105966937943066e-07, -9.6423867751772287e-07, -1.4463580162765795e-06, -4.8211933875886112e-07, -2.4105966937943066e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -7.2317900813830152e-07, -4.8211933875886133e-07, -6.026491734485764e-08, -1.2052983468971528e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -5.4238425610371458e-07, -3.0132458672429127e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -4.3390740488297217e-06, -2.4105966937943056e-07, -6.0264917344857666e-08, -3.61589504069147e-06, -4.8211933875886133e-07, -2.8927160325531532e-06, -2.8927160325531413e-06, -3.0132458672428433e-06, -2.8927160325531532e-06, -2.4105966937943056e-07, -2.4105966937943056e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -6.026491734485764e-08, -4.8211933875886122e-07, -6.0264917344857666e-08, 0.00024545900834560633, -4.2185442141400374e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -3.6761599580363355e-06, -1.2052983468971531e-07, -4.3390740488297268e-06, -4.3390740488297268e-06, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.3390740488297285e-06, -4.33907404882972e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.8079475203457533e-07, -9.6423867751772266e-07, -3.3748353713120096e-05, -3.3748353713120245e-05, -3.3748353713120177e-05, -3.3748353713120123e-05, -1.6874176856560245e-05, -1.6874176856560245e-05, -3.3748353713120516e-05, -3.3748353713120516e-05, -4.218544214140034e-06, -4.2185442141400357e-06, -0.00084792738704216053, -0.0008437088428280029, -2.1092721070700251e-05, -4.2185442141400349e-06, -1.2655632642420208e-05, -4.21854421414004e-05, -0.00033748353713120309, -8.4370884282800715e-06, -0.00038810606770088633, -4.2185442141400662e-06, -6.7496707426240477e-05, -6.7496707426240558e-05, -3.374835371312053e-05, -3.3748353713120516e-05, -0.00033748353713120309, -0.00033748353713120309, -3.3748353713120869e-05, -0.00095760953660978243, -8.4370884282800207e-06, -0.00084370884282800442, -6.7496707426240396e-05, -3.3748353713120218e-05, -3.3748353713120083e-05, -4.218544214140073e-06, -4.218544214140034e-06, -3.3748353713120367e-05, -3.3748353713120313e-05, -8.4370884282800207e-06, -8.437088428280024e-06, -4.2185442141400696e-06, -4.2185442141400493e-06, -3.3748353713120679e-05, -2.1092721070700241e-05, -1.2655632642420178e-05, -1.6874176856560245e-05, -1.6874176856560251e-05, -4.2185442141400349e-06, -6.3278163212100423e-05, -3.3748353713120428e-05, -3.3748353713120401e-05, -3.7966897927260414e-05, -3.3748353713120516e-05, -6.3278163212100559e-05, -8.4370884282800698e-06, -4.2185442141400154e-06, -3.3748353713120516e-05, -3.3748353713120503e-05, -4.2185442141400273e-06, -4.2185442141400434e-06, -3.3748353713120388e-05, -3.3748353713120442e-05, -8.4370884282802002e-06, -4.2185442141400764e-06, -3.3748353713120435e-05, -6.7496707426241141e-05, -4.2185442141400454e-05, -3.3748353713120313e-05, -6.7496707426241114e-05, -4.2185442141400273e-06, -3.3748353713120489e-05, -7.1715251640381574e-05, -3.3748353713120374e-05, -3.3748353713120543e-05, -6.7496707426240409e-05, -0.00013499341485248299, -0.00010546360535350042, -3.3748353713120543e-05, -6.7496707426240545e-05, -6.7496707426240626e-05, -1.6874176856560041e-05, -3.3748353713120408e-05, -4.2185442141400454e-05, -4.6403986355541748e-05, -1.6874176856560035e-05, -6.7496707426241575e-05, -3.3748353713120327e-05, -3.374835371312036e-05, -3.374835371312034e-05, -8.437088428280146e-06, -3.3748353713120177e-05, -3.3748353713120543e-05, -4.2185442141400146e-06, -3.3748353713120543e-05, -8.4370884282801291e-06, -3.3748353713120191e-05, -3.374835371312034e-05, -3.3748353713120286e-05, -4.2185442141400256e-06, -6.7496707426240572e-05, -6.749670742624049e-05, -4.2185442141400357e-06, -3.374835371312034e-05, -3.3748353713120354e-05, -4.2185442141400374e-06, -3.3748353713120123e-05, -3.3748353713120177e-05, -3.374835371312053e-05, -3.3748353713120164e-05, -0.0001012450611393616, -3.3748353713120123e-05, -3.3748353713120462e-05, -3.3748353713120462e-05, -4.2185442141400476e-06, -3.3748353713120435e-05, -3.3748353713120449e-05, -6.7496707426240762e-05, -1.6874176856560251e-05, -7.593379585452114e-05, -1.6874176856560245e-05, -4.2185442141400188e-06, -8.4370884282801257e-06, -5.4841074783820127e-05, -3.3748353713120286e-05, -6.7496707426241304e-05, -0.00035435771398776195, -3.3748353713120388e-05, -0.00037123189084432807, -3.374835371312057e-05, -3.374835371312053e-05, -6.7496707426240626e-05, -0.00033748353713120304, -6.7496707426240545e-05, -0.00034170208134534191, -4.218544214140073e-06, -6.7496707426240463e-05, -6.749670742624068e-05, -1.6874176856560068e-05, -0.00035435771398776195, -0.00033748353713120309, -0.00033748353713120379, -0.00033748353713120298, -4.218544214140029e-06, -1.6874176856560143e-05, -4.2185442141400832e-06, -4.2185442141400239e-06, -4.2185442141400103e-06, -3.374835371312034e-05, -3.3748353713120327e-05, -3.3748353713120327e-05, -3.3748353713120313e-05, -4.2185442141400815e-06, -4.2185442141400764e-06, -4.2185442141400544e-06, -3.3748353713120177e-05, -4.2185442141400373e-05, -8.4370884282800854e-05, -6.7496707426240816e-05, -6.7496707426240924e-05, -3.3748353713120205e-05, -0.00010124506113936127, -1.2655632642420164e-05, -0.0003712318908443278, -6.7496707426241005e-05, -0.00030373518341808006, -4.2185442141400307e-06, -4.2185442141400628e-06, -0.00010546360535350065, -6.7496707426240762e-05, -3.3748353713120428e-05, -2.952980949898052e-05, -1.6874176856560265e-05, -8.4370884282800715e-06, -0.00030373518341808006, -8.4370884282800698e-06, -1.6874176856560245e-05, -1.6874176856560245e-05, -0.00030373518341808011, -3.3748353713120462e-05, -4.2185442141400442e-06, -3.3748353713120367e-05, -4.2185442141400544e-06, -3.3748353713120421e-05, -4.21854421414004e-05, -1.2655632642420176e-05, -3.3748353713120394e-05, -6.3278163212100844e-05, -4.2185442141400696e-06, -3.3748353713120462e-05, -8.4370884282800207e-06, -8.437088428280024e-06, -8.4370884282800376e-06, -4.2185442141400425e-06, -2.5311265284840145e-05, -1.2655632642420169e-05, -3.3748353713120299e-05, -3.3748353713120245e-05, -6.7496707426241087e-05, -0.00010968214956764088, -9.7026516925221909e-05, -4.2185442141400696e-06, -6.7496707426241331e-05, -3.3748353713120272e-05, -2.5311265284840314e-05, -8.4370884282801358e-06, -4.2185442141400764e-06, -4.2185442141400256e-06, -0.00033748353713120298, -0.00033748353713120379, -0.00068340416269068393, -0.00033748353713120379, -0.00033748353713120304, -1.6874176856560035e-05, -8.437088428280102e-06, -3.3748353713120611e-05, -3.7966897927260333e-05, -1.6874176856560041e-05, -4.6403986355540941e-05, -4.218544214140034e-06, -4.2185442141400662e-06, -6.749670742624106e-05, -3.3748353713120462e-05, -3.3748353713120408e-05, -4.2185442141400611e-06, -4.2185442141400349e-06, -1.687417685656015e-05, -1.6874176856560136e-05, -6.7496707426241304e-05, -3.3748353713120245e-05, -4.2185442141400578e-06, -0.00068340416269068436, -3.3748353713120259e-05, -3.3748353713120286e-05, -4.2185442141400357e-06, -1.6874176856560143e-05, -1.6874176856560143e-05, -8.4370884282801392e-06, -8.4370884282801392e-06, -1.2655632642420171e-05, -4.2185442141400332e-06, -8.4370884282801392e-06, -8.4370884282801392e-06, -4.218544214140051e-06, -4.2185442141400273e-06, -1.6874176856560278e-05, -5.0622530569680629e-05, -3.3748353713120476e-05, -4.2185442141400849e-06, -4.2185442141400662e-06, -7.5933795854520476e-05, -4.2185442141400434e-06, -1.6874176856560326e-05, -8.4370884282801663e-06, -6.749670742624106e-05, -6.749670742624106e-05, -2.1092721070700207e-05, -1.687417685656019e-05, -8.4370884282801934e-06, -2.5311265284840389e-05, -0.00035857625820190191, -4.2185442141400493e-06, -1.6874176856560197e-05, -1.6874176856560184e-05, -6.7496707426241033e-05, -6.7496707426241114e-05, -1.687417685656017e-05, -1.6874176856560217e-05, -1.6874176856560217e-05, -4.2185442141400832e-06, -0.00019405303385044436, -4.2185442141400427e-05, -4.2185442141400256e-06, -3.3748353713120286e-05, -3.3748353713120808e-05, -3.3748353713120259e-05, -6.7496707426241114e-05, -3.3748353713120516e-05, -6.7496707426241033e-05, -3.3748353713120821e-05, -3.3748353713120814e-05, -0.0012950930737409797, -3.3748353713120299e-05, -0.0008437088428280055, -3.3748353713120435e-05, -8.4370884282800647e-06, -0.00025311265284840234, -5.0622530569680669e-05, -2.1092721070700241e-05, 0.014478043742928574, -4.2185442141400628e-06, -3.374835371312034e-05, -3.374835371312036e-05, -0.00068340416269068436, -3.3748353713120503e-05, -3.3748353713120503e-05, -0.00096604662503806604, -1.2655632642420193e-05, -0.00084370884282800658, -3.3748353713120354e-05, -3.374835371312034e-05, -4.2185442141400527e-06, -3.3748353713120374e-05, -3.374835371312032e-05, -4.2185442141400883e-06, -6.749670742624106e-05, -6.749670742624106e-05, -8.4370884282800376e-06, -1.6874176856560143e-05, -1.6874176856560143e-05, -3.3748353713120272e-05, -3.3748353713120259e-05, -0.00068340416269068393, -3.3748353713120245e-05, -3.3748353713120299e-05, -0.00011390069378178315, -0.00040498024455744443, -3.3748353713120327e-05, -0.00029951663920394558, -5.0622530569680737e-05, -5.0622530569680737e-05, -3.3748353713120245e-05, -3.3748353713120177e-05, -4.2185442141400386e-05, -3.3748353713120123e-05, -4.2185442141400386e-05, 0.0023666033041325686, -3.3748353713120449e-05, -2.10927210707002e-05, -9.7026516925222397e-05, -3.3748353713120489e-05, -5.0622530569680656e-05, -1.2655632642420167e-05, -2.1092721070700234e-05, -8.4370884282800308e-06, -4.218544214140029e-06, -4.2185442141400442e-06, -3.3748353713120083e-05, -5.0622530569680669e-05, -2.5311265284840328e-05, -1.6874176856560346e-05, -3.3748353713120205e-05, -3.3748353713120869e-05, -3.3748353713120814e-05, -6.7496707426241033e-05, -3.374835371312053e-05, -1.6874176856560184e-05, -6.7496707426240924e-05, -3.3748353713120625e-05, -1.6874176856560197e-05, -3.3748353713120808e-05, -4.2185442141400628e-06, -3.3748353713120503e-05, -3.3748353713120516e-05, -6.749670742624049e-05, -0.00010124506113936142, -3.3748353713120408e-05, -6.7496707426240396e-05, -6.7496707426240626e-05, -3.3748353713120516e-05, -3.3748353713120516e-05, -3.3748353713120489e-05, -3.3748353713120503e-05, -3.7966897927260766e-05, -0.00014343050328076196, -8.4370884282802206e-06, -3.3748353713120123e-05, -3.3748353713120584e-05, -3.7966897927260739e-05, -0.00010968214956764028, -3.3748353713120245e-05, -3.3748353713120367e-05, -3.3748353713120096e-05, -1.687417685656019e-05, -1.6874176856560184e-05, -4.2185442141400307e-06, -4.2185442141400103e-06, -4.2185442141400256e-06, -8.437088428280085e-06, -7.1715251640382048e-05, -0.00012655632642420101, -5.0622530569680602e-05, -2.5311265284840145e-05, -4.2185442141400459e-06, -1.687417685656019e-05, -6.7496707426241005e-05, -0.00010124506113936147, -3.3748353713120137e-05, -1.6874176856560197e-05, -6.7496707426240843e-05, -6.7496707426240924e-05, -1.6874176856560197e-05, -5.0622530569680676e-05, -3.3748353713120503e-05, -4.2185442141400171e-06, -8.4370884282801968e-06, -1.687417685656019e-05, -1.687417685656017e-05, -3.7966897927260665e-05, -2.1092721070700213e-05, -3.3748353713120259e-05, -6.7496707426241141e-05, -0.00030373518341808586, -1.6874176856560068e-05, -4.2185442141400815e-06, -0.00025311265284840262, -3.3748353713120462e-05, -0.00020249012227872295, -0.00020249012227872279, -0.00021092721070700067, -0.00020249012227872295, -1.6874176856560068e-05, -1.6874176856560075e-05, -3.3748353713120381e-05, -3.3748353713120449e-05, -1.6874176856560204e-05, -1.6874176856560204e-05, -3.3748353713120191e-05, -4.2185442141400188e-06, -3.3748353713120177e-05, -4.2185442141400476e-06, -4.2185442141400374e-06, 0.016891051033416673, -1.6874176856560204e-05, -1.6874176856560204e-05, -0.00025733119706254073, -8.4370884282800511e-06, -0.00030373518341808011, -0.00030373518341808006, -3.3748353713120489e-05, -4.2185442141400561e-06, -3.3748353713120421e-05, -0.00030373518341808006, -0.00030373518341808358, -3.3748353713120408e-05, -3.3748353713120462e-05, -8.4370884282801155e-06, -8.4370884282800613e-06, -6.7496707426241087e-05, -3.3748353713120449e-05, -3.3748353713120435e-05, -1.2655632642420178e-05, -6.7496707426241087e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8452993545265906e-05, -4.8211933875886056e-05, -1.2052983468971555e-06, -2.4105966937943066e-07, -7.2317900813829739e-07, -2.4105966937943263e-06, -1.928477355035459e-05, -4.8211933875886133e-07, -2.2177489582907666e-05, -2.4105966937943072e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354597e-05, -1.9284773550354597e-05, -1.9284773550354449e-06, -5.4720544949130632e-05, -4.8211933875886122e-07, -4.8211933875886686e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.9284773550354445e-06, -1.2052983468971555e-06, -7.2317900813829782e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -3.6158950406915086e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.1695370244148634e-06, -1.9284773550354457e-06, -3.6158950406914963e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943061e-07, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.9284773550354457e-06, -3.8569547100708915e-06, -2.4105966937943217e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -2.4105966937943061e-07, -1.9284773550354453e-06, -4.0980143794503066e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -6.0264917344857722e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -2.4105966937943225e-06, -2.6516563631737296e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354453e-06, -2.4105966937943056e-07, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -2.4105966937943066e-07, -1.9284773550354457e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -5.7854320651063775e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354453e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -4.3390740488297352e-06, -9.6423867751772287e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -3.1337757019326263e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -2.0249012227872302e-05, -1.9284773550354453e-06, -2.1213250905389898e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -1.9284773550354546e-05, -3.8569547100708898e-06, -1.9525833219734044e-05, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -2.0249012227872295e-05, -1.928477355035459e-05, -1.9284773550354533e-05, -1.9284773550354584e-05, -2.4105966937943061e-07, -9.6423867751772245e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.9284773550354449e-06, -2.4105966937943306e-06, -4.8211933875886476e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -1.9284773550354449e-06, -5.7854320651063842e-06, -7.2317900813830851e-07, -2.1213250905390026e-05, -3.8569547100708906e-06, -1.7356296195319012e-05, -2.4105966937943066e-07, -2.4105966937943072e-07, -6.0264917344857934e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -1.6874176856560192e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -1.7356296195319005e-05, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.7356296195319005e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -2.4105966937943204e-06, -7.2317900813829792e-07, -1.9284773550354457e-06, -3.6158950406914853e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.4463580162766037e-06, -7.2317900813830692e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -6.2675514038652373e-06, -5.5443723957269344e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.4463580162766071e-06, -4.8211933875886133e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.9284773550354584e-05, -1.9284773550354533e-05, -3.9051666439468209e-05, -1.9284773550354533e-05, -1.9284773550354546e-05, -9.6423867751772245e-07, -4.8211933875886133e-07, -1.9284773550354445e-06, -2.1695370244148591e-06, -9.6423867751772245e-07, -2.6516563631737444e-06, -2.4105966937943066e-07, -2.4105966937943072e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.8569547100708898e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.9051666439468121e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -7.2317900813829782e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -9.6423867751772224e-07, -2.8927160325531692e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297446e-06, -2.4105966937943066e-07, -9.6423867751772202e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.2052983468971611e-06, -9.6423867751772266e-07, -4.8211933875886122e-07, -1.4463580162765812e-06, -2.049007189725164e-05, -2.4105966937943072e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.1088744791453821e-05, -2.4105966937943111e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -7.4005318499485988e-05, -1.9284773550354453e-06, -4.8211933875886361e-05, -1.9284773550354457e-06, -4.8211933875886122e-07, -1.4463580162765846e-05, -2.8927160325531913e-06, -1.2052983468971555e-06, -1.4463580162766011e-05, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.9051666439468121e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -5.5202664287889654e-05, -7.2317900813829761e-07, -4.8211933875886401e-05, -1.9284773550354453e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.9051666439468209e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -6.5086110732446143e-06, -2.3141728260425544e-05, -1.9284773550354457e-06, -1.7115236525939467e-05, -2.8927160325531904e-06, -2.8927160325531904e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943314e-06, -1.9284773550354449e-06, -2.4105966937943263e-06, -5.0622530569680771e-06, -1.9284773550354457e-06, -1.2052983468971644e-06, -5.544372395726909e-06, -1.9284773550354453e-06, -2.8927160325531913e-06, -7.2317900813830703e-07, -1.2052983468971555e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943072e-07, -1.9284773550354449e-06, -2.8927160325531913e-06, -1.4463580162766062e-06, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354445e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -1.9284773550354457e-06, -9.6423867751772266e-07, -1.9284773550354445e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -5.7854320651063809e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.169537024414874e-06, -8.196028758900664e-06, -4.8211933875886112e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -2.169537024414874e-06, -6.2675514038652407e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.0980143794502829e-06, -7.2317900813829299e-06, -2.8927160325531921e-06, -1.4463580162766037e-06, -2.4105966937943072e-07, -9.6423867751772266e-07, -3.8569547100708906e-06, -5.7854320651063817e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -2.8927160325531921e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772287e-07, -2.1695370244148706e-06, -1.2052983468971627e-06, -1.9284773550354453e-06, -3.8569547100708915e-06, -1.7356296195318985e-05, -9.6423867751772245e-07, -2.4105966937943072e-07, -1.4463580162765846e-05, -1.9284773550354453e-06, -1.1570864130212938e-05, -1.1570864130212765e-05, -1.2052983468971543e-05, -1.1570864130212938e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, 0.00098111285437428651, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.6874176856560204e-05, 0.00098111285437428651, -9.6423867751772287e-07, -1.4704639832145321e-05, -4.8211933875886122e-07, -1.7356296195319005e-05, -1.7356296195319005e-05, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.7356296195319012e-05, -1.7356296195318978e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.2317900813829782e-07, -3.8569547100708915e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8452993545265919e-05, -4.8211933875886056e-05, -1.2052983468971555e-06, -2.4105966937943066e-07, -7.2317900813829739e-07, -2.4105966937943263e-06, -1.928477355035459e-05, -4.8211933875886133e-07, -2.2177489582907673e-05, -2.4105966937943072e-07, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354597e-05, -1.9284773550354597e-05, -1.9284773550354449e-06, -5.4720544949130619e-05, -4.8211933875886122e-07, -4.82119338758867e-05, -3.8569547100708898e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.9284773550354445e-06, -1.2052983468971555e-06, -7.2317900813829782e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -3.6158950406915094e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.1695370244148625e-06, -1.9284773550354457e-06, -3.6158950406914971e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943061e-07, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.9284773550354457e-06, -3.8569547100708915e-06, -2.4105966937943217e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -2.4105966937943061e-07, -1.9284773550354453e-06, -4.0980143794503057e-06, -1.9284773550354453e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -6.0264917344857722e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -2.4105966937943225e-06, -2.6516563631737296e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354453e-06, -2.4105966937943056e-07, -1.9284773550354453e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -2.4105966937943066e-07, -1.9284773550354457e-06, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -5.7854320651063775e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354453e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -4.3390740488297335e-06, -9.6423867751772287e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -3.1337757019326263e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -2.0249012227872302e-05, -1.9284773550354453e-06, -2.1213250905389898e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -1.9284773550354546e-05, -3.8569547100708898e-06, -1.9525833219734044e-05, -2.4105966937943066e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -9.6423867751772245e-07, -2.0249012227872295e-05, -1.928477355035459e-05, -1.9284773550354533e-05, -1.9284773550354584e-05, -2.4105966937943061e-07, -9.6423867751772245e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.9284773550354449e-06, -2.4105966937943306e-06, -4.8211933875886476e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -1.9284773550354449e-06, -5.7854320651063842e-06, -7.2317900813830851e-07, -2.1213250905390026e-05, -3.8569547100708906e-06, -1.7356296195319005e-05, -2.4105966937943066e-07, -2.4105966937943072e-07, -6.0264917344857934e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -1.6874176856560192e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -1.7356296195318999e-05, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.7356296195318999e-05, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -2.4105966937943204e-06, -7.2317900813829792e-07, -1.9284773550354457e-06, -3.6158950406914853e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -1.4463580162766037e-06, -7.2317900813830692e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -6.2675514038652373e-06, -5.5443723957269327e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.4463580162766071e-06, -4.8211933875886133e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.9284773550354584e-05, -1.9284773550354533e-05, -3.9051666439468209e-05, -1.9284773550354533e-05, -1.9284773550354546e-05, -9.6423867751772245e-07, -4.8211933875886133e-07, -1.9284773550354445e-06, -2.1695370244148583e-06, -9.6423867751772245e-07, -2.6516563631737444e-06, -2.4105966937943066e-07, -2.4105966937943072e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.8569547100708898e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.9051666439468121e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943066e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -7.2317900813829782e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -2.4105966937943061e-07, -9.6423867751772224e-07, -2.8927160325531692e-06, -1.9284773550354457e-06, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297429e-06, -2.4105966937943066e-07, -9.6423867751772202e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.2052983468971611e-06, -9.6423867751772266e-07, -4.8211933875886122e-07, -1.4463580162765812e-06, -2.049007189725164e-05, -2.4105966937943072e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.1088744791453821e-05, -2.4105966937943111e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -1.9284773550354445e-06, -1.9284773550354445e-06, -7.4005318499486015e-05, -1.9284773550354453e-06, -4.8211933875886361e-05, -1.9284773550354457e-06, -4.8211933875886122e-07, -1.446358016276585e-05, -2.8927160325531913e-06, -1.2052983468971555e-06, -1.4463580162766011e-05, -2.4105966937943072e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.9051666439468121e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -5.520266428788964e-05, -7.2317900813829761e-07, -4.8211933875886401e-05, -1.9284773550354453e-06, -1.9284773550354457e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943072e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.9051666439468209e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -6.5086110732446143e-06, -2.3141728260425544e-05, -1.9284773550354457e-06, -1.7115236525939461e-05, -2.8927160325531904e-06, -2.8927160325531904e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943314e-06, -1.9284773550354449e-06, -2.4105966937943263e-06, -5.0622530569680771e-06, -1.9284773550354457e-06, -1.2052983468971644e-06, -5.544372395726909e-06, -1.9284773550354453e-06, -2.8927160325531913e-06, -7.2317900813830703e-07, -1.2052983468971555e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943072e-07, -1.9284773550354449e-06, -2.8927160325531913e-06, -1.4463580162766062e-06, -9.6423867751772287e-07, -1.9284773550354453e-06, -1.9284773550354449e-06, -1.9284773550354445e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -1.9284773550354457e-06, -9.6423867751772266e-07, -1.9284773550354445e-06, -2.4105966937943072e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -5.7854320651063809e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -3.8569547100708889e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.1695370244148731e-06, -8.196028758900664e-06, -4.8211933875886112e-07, -1.9284773550354449e-06, -1.9284773550354457e-06, -2.1695370244148731e-06, -6.2675514038652407e-06, -1.9284773550354449e-06, -1.9284773550354457e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.098014379450282e-06, -7.2317900813829333e-06, -2.8927160325531921e-06, -1.4463580162766037e-06, -2.4105966937943072e-07, -9.6423867751772266e-07, -3.8569547100708906e-06, -5.7854320651063817e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772266e-07, -2.8927160325531921e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772287e-07, -2.1695370244148697e-06, -1.2052983468971627e-06, -1.9284773550354453e-06, -3.8569547100708915e-06, -1.7356296195318978e-05, -9.6423867751772245e-07, -2.4105966937943072e-07, -1.4463580162765846e-05, -1.9284773550354453e-06, -1.1570864130212938e-05, -1.1570864130212765e-05, -1.2052983468971543e-05, -1.1570864130212938e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, 0.00098111285437428651, -9.6423867751772287e-07, -1.9284773550354449e-06, -2.4105966937943061e-07, -1.9284773550354449e-06, -2.4105966937943072e-07, -2.4105966937943066e-07, -1.6874176856560204e-05, -9.6423867751772287e-07, 0.00098111285437428651, -1.4704639832145328e-05, -4.8211933875886122e-07, -1.7356296195318999e-05, -1.7356296195318999e-05, -1.9284773550354453e-06, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.7356296195319005e-05, -1.7356296195318971e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.2317900813829782e-07, -3.8569547100708915e-06, -2.9409279664290792e-05, -2.9409279664290724e-05, -2.9409279664290751e-05, -2.9409279664290779e-05, -1.4704639832145305e-05, -1.4704639832145308e-05, -2.9409279664290589e-05, -2.9409279664290575e-05, -3.6761599580363363e-06, -3.6761599580363371e-06, -0.00073890815156530873, -0.00073523199160726953, -1.8380799790181626e-05, -3.6761599580363363e-06, -1.1028479874108984e-05, -3.6761599580363416e-05, -0.00029409279664290461, -7.3523199160726743e-06, -0.00033820671613933937, -3.6761599580363244e-06, -5.8818559328581421e-05, -5.8818559328581381e-05, -2.9409279664290562e-05, -2.9409279664290596e-05, -0.00029409279664290461, -0.00029409279664290461, -2.9409279664290792e-05, -0.00083448831047424948, -7.352319916072698e-06, -0.00073523199160726541, -5.8818559328581462e-05, -2.9409279664290738e-05, -2.9409279664290799e-05, -3.6761599580363189e-06, -3.6761599580363439e-06, -2.9409279664290697e-05, -2.9409279664290738e-05, -7.352319916072698e-06, -7.3523199160726963e-06, -3.6761599580363253e-06, -3.6761599580363371e-06, -2.9409279664290697e-05, -1.8380799790181755e-05, -1.102847987410913e-05, -1.4704639832145308e-05, -1.4704639832145301e-05, -3.6761599580363363e-06, -5.5142399370544402e-05, -2.9409279664290629e-05, -2.9409279664290636e-05, -3.3085439622326782e-05, -2.9409279664290582e-05, -5.5142399370544632e-05, -7.3523199160726726e-06, -3.6761599580363465e-06, -2.9409279664290589e-05, -2.9409279664290602e-05, -3.6761599580363414e-06, -3.6761599580363329e-06, -2.940927966429065e-05, -2.9409279664290616e-05, -7.3523199160725718e-06, -3.6761599580363405e-06, -2.9409279664290629e-05, -5.8818559328580825e-05, 0.00020875767368258778, -2.9409279664290697e-05, -5.8818559328581205e-05, -3.6761599580363422e-06, -2.9409279664290602e-05, -6.2494719286617588e-05, -2.9409279664290643e-05, -2.9409279664290779e-05, -5.8818559328581489e-05, -0.00011763711865716123, -9.1903998950908867e-05, -2.9409279664290582e-05, -5.8818559328581421e-05, -5.8818559328581381e-05, -1.4704639832145396e-05, -2.940927966429065e-05, -3.6761599580363429e-05, -4.043775953839971e-05, -1.4704639832145396e-05, -5.8818559328580602e-05, -2.9409279664290684e-05, -2.9409279664290657e-05, -2.9409279664290663e-05, -7.3523199160726286e-06, -2.9409279664290792e-05, -2.9409279664290582e-05, -3.6761599580363448e-06, -2.9409279664290568e-05, -7.3523199160726455e-06, -2.9409279664290779e-05, -2.9409279664290677e-05, -2.9409279664290711e-05, -3.6761599580363422e-06, -5.8818559328581408e-05, -5.8818559328581449e-05, -3.6761599580363388e-06, -2.9409279664290677e-05, -2.940927966429067e-05, -3.6761599580363355e-06, -2.9409279664290819e-05, -2.9409279664290779e-05, -2.9409279664290779e-05, -2.9409279664290792e-05, -8.8227838992871306e-05, -2.9409279664290779e-05, -2.9409279664290616e-05, -2.9409279664290609e-05, -3.6761599580363321e-06, -2.9409279664290643e-05, -2.9409279664290623e-05, -5.881855932858134e-05, -1.4704639832145301e-05, -6.6170879244653564e-05, -1.4704639832145308e-05, -3.676159958036349e-06, -7.3523199160726946e-06, -4.7790079454472517e-05, -2.9409279664290711e-05, -5.8818559328580737e-05, -0.00030879743647505714, -2.940927966429065e-05, -0.00032350207630719768, -2.9409279664290765e-05, -2.9409279664290779e-05, -5.8818559328581381e-05, -0.00029409279664290516, -5.8818559328581421e-05, -0.00029776895660094078, -3.6761599580363194e-06, -5.8818559328581449e-05, -5.881855932858134e-05, -1.4704639832145389e-05, -0.00030879743647505714, -0.00029409279664290461, -0.00029409279664290548, -0.00029409279664290895, -3.6761599580363405e-06, -1.4704639832145342e-05, -3.6761599580363371e-06, -3.6761599580363473e-06, -3.676159958036349e-06, -2.9409279664290711e-05, -2.9409279664290724e-05, -2.9409279664290684e-05, -2.9409279664290697e-05, -3.6761599580363371e-06, -3.6761599580363405e-06, -3.6761599580363287e-06, -2.9409279664290751e-05, -3.676159958036309e-05, -7.3523199160726912e-05, -5.8818559328581232e-05, -5.8818559328581218e-05, -2.9409279664290738e-05, -8.822783899287239e-05, -1.1028479874108991e-05, -0.00032350207630719779, -5.8818559328581178e-05, -0.00026468351697861545, -3.6761599580363405e-06, -3.6761599580363473e-06, -9.1903998950908895e-05, -5.881855932858134e-05, -2.9409279664290629e-05, -2.5733119706254202e-05, -1.4704639832145276e-05, -7.3523199160726726e-06, -0.00026468351697861518, -7.3523199160726726e-06, -1.4704639832145308e-05, -1.4704639832145305e-05, -0.00026468351697861463, -2.9409279664290636e-05, -3.6761599580363346e-06, -2.940927966429067e-05, -3.6761599580363287e-06, -2.9409279664290643e-05, -3.6761599580363192e-05, -1.1028479874109172e-05, -2.9409279664290657e-05, -5.5142399370545188e-05, -3.6761599580363253e-06, -2.9409279664290629e-05, -7.352319916072698e-06, -7.3523199160726963e-06, -7.3523199160726895e-06, -3.6761599580363405e-06, -2.205695974821807e-05, -1.1028479874108998e-05, -2.9409279664290684e-05, -2.9409279664290711e-05, -5.8818559328581191e-05, -9.558015890894441e-05, -8.4551679034834855e-05, -3.6761599580363253e-06, -5.8818559328581164e-05, -2.9409279664290738e-05, -2.2056959748218091e-05, -7.3523199160726319e-06, -3.6761599580363405e-06, -3.6761599580363473e-06, -0.00029409279664290895, -0.00029409279664290548, -0.00059553791320188492, -0.00029409279664290548, -0.00029409279664290516, -1.4704639832145396e-05, -7.3523199160726641e-06, -2.9409279664290806e-05, -3.3085439622326843e-05, -1.4704639832145396e-05, -4.0437759538399609e-05, -3.6761599580363371e-06, -3.6761599580363253e-06, -5.8818559328580988e-05, -2.9409279664290623e-05, -2.9409279664290657e-05, -3.6761599580363473e-06, -3.6761599580363363e-06, -1.4704639832145349e-05, -1.4704639832145359e-05, -5.8818559328581164e-05, -2.9409279664290765e-05, -3.6761599580363287e-06, -0.00059553791320188297, -2.9409279664290697e-05, -2.940927966429069e-05, -3.6761599580363388e-06, -1.4704639832145355e-05, -1.4704639832145352e-05, -7.3523199160726438e-06, -7.3523199160726438e-06, -1.1028479874109081e-05, -3.6761599580363371e-06, -7.3523199160726438e-06, -7.3523199160726438e-06, -3.6761599580363304e-06, -3.6761599580363414e-06, -1.4704639832145311e-05, -4.4113919496436432e-05, -2.9409279664290616e-05, -3.6761599580363371e-06, -3.6761599580363244e-06, -6.6170879244653428e-05, -3.6761599580363329e-06, -1.47046398321452e-05, -7.3523199160725921e-06, -5.881855932858111e-05, -5.881855932858115e-05, -1.8380799790181593e-05, -1.4704639832145321e-05, -7.3523199160725752e-06, -2.2056959748218155e-05, -0.00031247359643309038, -3.6761599580363371e-06, -1.4704639832145321e-05, -1.4704639832145328e-05, -5.8818559328581191e-05, -5.8818559328581069e-05, -1.4704639832145342e-05, -1.4704639832145315e-05, -1.4704639832145315e-05, -3.6761599580363371e-06, -0.00016910335806967055, -3.6761599580363151e-05, -3.6761599580363422e-06, -2.940927966429069e-05, -2.9409279664290335e-05, -2.9409279664290697e-05, -5.8818559328581069e-05, -2.9409279664290555e-05, -5.8818559328581191e-05, -2.9409279664290335e-05, -2.9409279664290335e-05, -0.0011285811071171624, -2.9409279664290738e-05, -0.00073523199160726996, -2.9409279664290643e-05, -7.3523199160726743e-06, 0.014510586798294809, -4.4113919496436391e-05, -1.8380799790181586e-05, -0.00022056959748218102, -3.676159958036327e-06, -2.9409279664290663e-05, -2.9409279664290657e-05, -0.00059553791320188297, -2.9409279664290589e-05, -2.9409279664290582e-05, -0.00084184063039032344, -1.1028479874109149e-05, -0.00073523199160726953, -2.940927966429067e-05, -2.9409279664290677e-05, -3.6761599580363278e-06, -2.9409279664290643e-05, -2.9409279664290677e-05, -3.6761599580363338e-06, -5.881855932858115e-05, -5.881855932858111e-05, -7.3523199160726895e-06, -1.4704639832145352e-05, -1.4704639832145355e-05, -2.9409279664290738e-05, -2.9409279664290751e-05, -0.00059553791320188492, -2.9409279664290711e-05, -2.9409279664290684e-05, -9.9256318866981606e-05, -0.00035291135597148707, -2.9409279664290684e-05, -0.00026100735702057879, -4.411391949643629e-05, -4.411391949643629e-05, -2.9409279664290724e-05, -2.9409279664290779e-05, -3.6761599580363436e-05, -2.9409279664290819e-05, -3.6761599580363619e-05, -7.7199359118763675e-05, -2.9409279664290623e-05, -1.8380799790181823e-05, -8.4551679034835316e-05, -2.9409279664290602e-05, -4.4113919496436418e-05, -1.1028479874109001e-05, -1.8380799790181576e-05, -7.3523199160726929e-06, -3.6761599580363405e-06, -3.6761599580363346e-06, -2.9409279664290799e-05, -4.4113919496436418e-05, -2.2056959748218084e-05, -1.4704639832145342e-05, -2.9409279664290745e-05, -2.9409279664290792e-05, -2.9409279664290335e-05, -5.8818559328581056e-05, -2.9409279664290562e-05, -1.4704639832145328e-05, -5.8818559328581259e-05, -2.9409279664290643e-05, -1.4704639832145321e-05, -2.9409279664290335e-05, -3.676159958036327e-06, -2.9409279664290602e-05, -2.9409279664290589e-05, -5.8818559328581449e-05, -8.8227838992873108e-05, -2.940927966429065e-05, -5.8818559328581462e-05, -5.881855932858134e-05, -2.9409279664290575e-05, -2.9409279664290589e-05, -2.9409279664290602e-05, -2.9409279664290568e-05, -3.3085439622326613e-05, -0.00012498943857323461, -7.3523199160726065e-06, -2.9409279664290779e-05, -2.9409279664290643e-05, -3.3085439622326613e-05, -9.5580158908944112e-05, -2.9409279664290724e-05, -2.940927966429067e-05, -2.9409279664290792e-05, -1.4704639832145321e-05, -1.4704639832145325e-05, -3.6761599580363405e-06, -3.676159958036349e-06, -3.6761599580363422e-06, -7.3523199160726777e-06, -6.2494719286617533e-05, -0.00011028479874109, -4.4113919496436222e-05, -2.205695974821807e-05, -3.6761599580363338e-06, -1.4704639832145321e-05, -5.8818559328581178e-05, -8.8227838992872837e-05, -2.9409279664290765e-05, -1.4704639832145321e-05, -5.8818559328581259e-05, -5.8818559328581218e-05, -1.4704639832145321e-05, -4.4113919496436364e-05, -2.9409279664290589e-05, -3.6761599580363456e-06, -7.3523199160726201e-06, -1.4704639832145321e-05, -1.4704639832145342e-05, -3.3085439622326714e-05, -1.8380799790181755e-05, -2.9409279664290724e-05, -5.8818559328580825e-05, -0.00026468351697861344, -1.4704639832145389e-05, -3.6761599580363388e-06, -0.00022056959748217847, -2.9409279664290609e-05, -0.00017645567798574388, -0.0001764556779857463, -0.00018380799790181776, -0.00017645567798574388, -1.4704639832145386e-05, -1.4704639832145382e-05, -2.9409279664290657e-05, -2.9409279664290629e-05, -1.4704639832145328e-05, -1.4704639832145321e-05, -2.9409279664290779e-05, -3.6761599580363448e-06, -2.9409279664290792e-05, -3.6761599580363321e-06, -3.6761599580363355e-06, -0.00025733119706254073, -1.4704639832145321e-05, -1.4704639832145328e-05, 0.014752429911599795, -7.3523199160726811e-06, -0.00026468351697861463, -0.00026468351697861518, -2.9409279664290602e-05, -3.676159958036327e-06, -2.9409279664290629e-05, -0.00026468351697861545, -0.00026468351697861588, -2.9409279664290657e-05, -2.9409279664290629e-05, -7.3523199160726557e-06, -7.3523199160726811e-06, -5.8818559328581205e-05, -2.9409279664290636e-05, -2.9409279664290643e-05, -1.1028479874109069e-05, -5.8818559328581205e-05, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -2.4226496772633068e-05, -2.4105966937943133e-05, -6.0264917344858032e-07, -1.2052983468971531e-07, -3.615895040691515e-07, -1.2052983468971683e-06, -9.6423867751773748e-06, -2.4105966937943061e-07, -1.1088744791453799e-05, -1.2052983468971531e-07, -1.9284773550354445e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751773765e-06, -9.6423867751773731e-06, -9.6423867751772224e-07, -2.7360272474565187e-05, -2.4105966937943051e-07, -2.4105966937943455e-05, -1.9284773550354445e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943051e-07, -2.4105966937943051e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -9.6423867751772181e-07, -6.0264917344858032e-07, -3.6158950406915177e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -1.8079475203457623e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.084768512207422e-06, -9.6423867751772245e-07, -1.8079475203457568e-06, -2.4105966937943056e-07, -1.2052983468971528e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943051e-07, -1.2052983468971533e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.2052983468971659e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.2052983468971531e-07, -9.6423867751772245e-07, -2.0490071897251431e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -1.9284773550354449e-06, -3.8569547100708881e-06, -3.0132458672428997e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -4.8211933875886101e-07, -9.6423867751772245e-07, -1.2052983468971663e-06, -1.3258281815868618e-06, -4.8211933875886101e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943056e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971525e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772266e-07, -9.6423867751772224e-07, -2.8927160325532116e-06, -9.6423867751772202e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -4.8211933875886133e-07, -2.1695370244148481e-06, -4.8211933875886133e-07, -1.2052983468971531e-07, -2.4105966937943066e-07, -1.5668878509663157e-06, -9.6423867751772245e-07, -1.9284773550354445e-06, -1.0124506113936171e-05, -9.6423867751772245e-07, -1.0606625452694905e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354445e-06, -9.6423867751773206e-06, -1.9284773550354449e-06, -9.7629166098670591e-06, -1.2052983468971531e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -4.8211933875886112e-07, -1.0124506113936168e-05, -9.6423867751773748e-06, -9.6423867751773121e-06, -9.6423867751773376e-06, -1.2052983468971531e-07, -4.8211933875886101e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -1.2052983468971525e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.2052983468971702e-06, -2.4105966937943344e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -2.8927160325532146e-06, -3.6158950406915706e-07, -1.0606625452694954e-05, -1.9284773550354449e-06, -8.6781480976594434e-06, -1.2052983468971531e-07, -1.2052983468971533e-07, -3.0132458672429098e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, -8.4370884282800622e-07, -4.8211933875886101e-07, -2.4105966937943056e-07, -8.6781480976594502e-06, -2.4105966937943056e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -8.6781480976594569e-06, -9.6423867751772266e-07, -1.2052983468971533e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.2052983468971653e-06, -3.6158950406915177e-07, -9.6423867751772245e-07, -1.8079475203457505e-06, -1.2052983468971533e-07, -9.6423867751772266e-07, -2.4105966937943051e-07, -2.4105966937943051e-07, -2.4105966937943056e-07, -1.2052983468971533e-07, -7.2317900813830756e-07, -3.6158950406915627e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -3.1337757019326229e-06, -2.7721861978634511e-06, -1.2052983468971533e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -7.2317900813830915e-07, -2.4105966937943061e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -9.6423867751773376e-06, -9.6423867751773121e-06, -1.9525833219734216e-05, -9.6423867751773121e-06, -9.6423867751773206e-06, -4.8211933875886101e-07, -2.4105966937943061e-07, -9.6423867751772202e-07, -1.0847685122074198e-06, -4.8211933875886101e-07, -1.325828181586869e-06, -1.2052983468971531e-07, -1.2052983468971531e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -1.2052983468971533e-07, -1.9525833219734132e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -3.6158950406915177e-07, -1.2052983468971528e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -4.8211933875886112e-07, -1.4463580162766079e-06, -9.6423867751772245e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -2.1695370244148532e-06, -1.2052983468971531e-07, -4.8211933875886091e-07, -2.4105966937943056e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -6.0264917344858339e-07, -4.8211933875886122e-07, -2.4105966937943056e-07, -7.2317900813830332e-07, -1.0245035948625833e-05, -1.2052983468971533e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971533e-07, -5.5443723957268802e-06, -1.2052983468971606e-06, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772202e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -9.6423867751772202e-07, -1.9284773550354449e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -3.7002659249743326e-05, -9.6423867751772245e-07, -2.4105966937943285e-05, -9.6423867751772245e-07, -2.4105966937943056e-07, -7.2317900813829536e-06, -1.4463580162766075e-06, -6.0264917344858222e-07, -7.2317900813830358e-06, -1.2052983468971533e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9525833219734132e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.7601332143944678e-05, -3.6158950406915156e-07, -2.4105966937943309e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971533e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943056e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9525833219734216e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.2543055366223029e-06, -1.157086413021286e-05, -9.6423867751772245e-07, -8.5576182629696676e-06, -1.4463580162766062e-06, -1.4463580162766062e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -1.2052983468971708e-06, -9.6423867751772224e-07, -1.2052983468971687e-06, -2.5311265284840411e-06, -9.6423867751772245e-07, -6.0264917344858476e-07, 0.00048826636032803917, -9.6423867751772245e-07, -1.4463580162766075e-06, -3.6158950406915637e-07, -6.0264917344858222e-07, -2.4105966937943051e-07, -1.2052983468971531e-07, -1.2052983468971533e-07, -9.6423867751772224e-07, -1.4463580162766069e-06, -7.2317900813830883e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772202e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -1.928477355035444e-06, -9.6423867751772266e-07, -4.8211933875886122e-07, -9.6423867751772202e-07, -1.2052983468971533e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354445e-06, -2.8927160325532133e-06, -9.6423867751772245e-07, -1.9284773550354445e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.084768512207427e-06, -4.0980143794503117e-06, -2.4105966937943051e-07, -9.6423867751772202e-07, -9.6423867751772266e-07, -1.084768512207427e-06, -3.1337757019326254e-06, -9.6423867751772224e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -1.2052983468971525e-07, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.0490071897251308e-06, -3.615895040691481e-06, -1.4463580162766075e-06, -7.2317900813830756e-07, -1.2052983468971533e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -2.8927160325532133e-06, -9.6423867751772202e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -1.4463580162766073e-06, -9.6423867751772245e-07, -1.2052983468971528e-07, -2.4105966937943056e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.0847685122074253e-06, -6.0264917344858381e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -8.6781480976594129e-06, -4.8211933875886112e-07, -1.2052983468971533e-07, -7.2317900813829536e-06, -9.6423867751772245e-07, -5.7854320651065138e-06, -5.7854320651064266e-06, -6.0264917344857985e-06, -5.7854320651065138e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.2052983468971528e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -8.4370884282800511e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.3523199160726811e-06, 0.00049079748685652283, -8.6781480976594569e-06, -8.6781480976594502e-06, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -8.6781480976594434e-06, -8.678148097659479e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.6158950406915171e-07, -1.9284773550354453e-06, -3.4712592390637597e-05, -3.4712592390637746e-05, -3.4712592390637706e-05, -3.4712592390637611e-05, -1.7356296195319073e-05, -1.7356296195319066e-05, -3.4712592390638146e-05, -3.471259239063816e-05, -4.3390740488297217e-06, -4.3390740488297268e-06, -0.00087215388381478738, -0.0008678148097659681, -2.169537024414875e-05, -4.3390740488297234e-06, -1.3017222146489188e-05, -4.3390740488297236e-05, -0.00034712592390637702, -8.6781480976594535e-06, -0.00039919481249234235, -4.3390740488297717e-06, -6.9425184781275411e-05, -6.9425184781275493e-05, -3.4712592390638173e-05, -3.4712592390638119e-05, -0.00034712592390637702, -0.00034712592390637702, -3.471259239063839e-05, -0.00098496980908435467, -8.6781480976593892e-06, -0.00086781480976595628, -6.9425184781275357e-05, -3.4712592390637733e-05, -3.471259239063757e-05, -4.3390740488297734e-06, -4.3390740488297234e-06, -3.4712592390637882e-05, -3.4712592390637828e-05, -8.6781480976593892e-06, -8.6781480976593926e-06, -4.3390740488297734e-06, -4.3390740488297446e-06, -3.47125923906382e-05, -2.1695370244148706e-05, -1.3017222146489222e-05, -1.735629619531906e-05, -1.7356296195319073e-05, -4.3390740488297234e-06, -6.508611073244629e-05, -3.471259239063797e-05, -3.4712592390637943e-05, -3.9051666439468263e-05, -3.4712592390638187e-05, -6.5086110732446453e-05, -8.6781480976594434e-06, -4.3390740488297031e-06, -3.4712592390638173e-05, -3.4712592390638146e-05, -4.33907404882972e-06, -4.3390740488297335e-06, -3.4712592390637929e-05, -3.4712592390637984e-05, -8.6781480976596179e-06, -4.3390740488297513e-06, -3.4712592390638065e-05, -6.9425184781275967e-05, -4.339074048829733e-05, -3.4712592390637855e-05, -6.9425184781276238e-05, -4.3390740488297183e-06, -3.4712592390637882e-05, -7.3764258830105386e-05, -3.4712592390637882e-05, -3.4712592390638011e-05, -6.9425184781275439e-05, -0.00013885036956255416, -0.00010847685122074416, -3.4712592390638133e-05, -6.9425184781275547e-05, -6.9425184781275628e-05, -1.7356296195318785e-05, -3.471259239063797e-05, -4.339074048829733e-05, -4.7729814537127868e-05, -1.7356296195318785e-05, -6.942518478127697e-05, -3.4712592390637868e-05, -3.4712592390637868e-05, -3.4712592390637855e-05, -8.6781480976596145e-06, -3.4712592390637665e-05, -3.4712592390638133e-05, -4.3390740488296963e-06, -3.4712592390638119e-05, -8.6781480976595162e-06, -3.4712592390637679e-05, -3.4712592390637895e-05, -3.4712592390637841e-05, -4.3390740488297166e-06, -6.9425184781275574e-05, -6.942518478127552e-05, -4.3390740488297302e-06, -3.4712592390637882e-05, -3.4712592390637895e-05, -4.3390740488297268e-06, -3.4712592390637584e-05, -3.4712592390637638e-05, -3.4712592390638024e-05, -3.4712592390637624e-05, -0.0001041377771719134, -3.4712592390637624e-05, -3.4712592390638092e-05, -3.4712592390637895e-05, -4.3390740488297463e-06, -3.4712592390638038e-05, -3.4712592390637916e-05, -6.9425184781275913e-05, -1.7356296195319073e-05, -7.8103332878936757e-05, -1.735629619531906e-05, -4.3390740488297031e-06, -8.6781480976594823e-06, -5.640796263478737e-05, -3.4712592390637841e-05, -6.942518478127678e-05, -0.00036448222010170082, -3.4712592390637929e-05, -0.0003818385162970172, -3.4712592390637984e-05, -3.4712592390638024e-05, -6.9425184781275628e-05, -0.00034712592390637886, -6.9425184781275547e-05, -0.000351464997955215, -4.3390740488297734e-06, -6.9425184781275493e-05, -6.9425184781275683e-05, -1.7356296195318819e-05, -0.00036448222010170082, -0.00034712592390637702, -0.00034712592390637891, -0.00034712592390637864, -4.33907404882972e-06, -1.7356296195319141e-05, -4.3390740488297564e-06, -4.3390740488297098e-06, -4.3390740488296963e-06, -3.4712592390637868e-05, -3.4712592390637855e-05, -3.4712592390637868e-05, -3.4712592390637855e-05, -4.3390740488297547e-06, -4.3390740488297513e-06, -4.3390740488297547e-06, -3.4712592390637706e-05, -4.3390740488297154e-05, -8.6781480976594634e-05, -6.9425184781276862e-05, -6.9425184781275967e-05, -3.4712592390637719e-05, -0.00010413777717191375, -1.3017222146489215e-05, -0.00038183851629702489, -6.9425184781276048e-05, -0.00031241333151574546, -4.3390740488297234e-06, -4.3390740488297412e-06, -0.00010847685122074454, -6.9425184781275913e-05, -3.471259239063797e-05, -3.0373518341808557e-05, -1.7356296195319131e-05, -8.6781480976594468e-06, -0.00031241333151574508, -8.6781480976594434e-06, -1.7356296195319066e-05, -1.7356296195319073e-05, 0.0173649743434168, -3.4712592390638078e-05, -4.3390740488297429e-06, -3.4712592390637956e-05, -4.3390740488297547e-06, -3.4712592390638011e-05, -4.3390740488297317e-05, -1.3017222146489207e-05, -3.471259239063797e-05, -6.5086110732446643e-05, -4.3390740488297751e-06, -3.4712592390638092e-05, -8.6781480976593892e-06, -8.6781480976593926e-06, -8.6781480976594095e-06, -4.3390740488297335e-06, -2.6034444292978471e-05, -1.301722214648922e-05, -3.4712592390637929e-05, -3.4712592390637868e-05, -6.9425184781276184e-05, -0.00011281592526957417, -9.9798703123085616e-05, -4.3390740488297751e-06, -6.942518478127678e-05, -3.4712592390637773e-05, -2.6034444292978471e-05, -8.6781480976595603e-06, -4.3390740488297513e-06, -4.3390740488297115e-06, -0.00034712592390637864, -0.00034712592390637891, -0.0007029299959104313, -0.00034712592390637891, -0.00034712592390637886, -1.7356296195318785e-05, -8.6781480976595738e-06, -3.4712592390638404e-05, -3.905166643946825e-05, -1.7356296195318785e-05, -4.7729814537127414e-05, -4.3390740488297395e-06, -4.3390740488297717e-06, -6.9425184781276591e-05, -3.4712592390638078e-05, -3.4712592390638011e-05, -4.3390740488297395e-06, -4.3390740488297217e-06, -1.7356296195318927e-05, -1.7356296195318914e-05, -6.9425184781276807e-05, -3.4712592390637746e-05, -4.3390740488297615e-06, -0.00070292999591042718, -3.4712592390637895e-05, -3.4712592390637916e-05, -4.3390740488297302e-06, -1.7356296195318914e-05, -1.7356296195318921e-05, -8.6781480976595467e-06, -8.6781480976595433e-06, -1.3017222146489222e-05, -4.33907404882972e-06, -8.6781480976595433e-06, -8.6781480976595467e-06, -4.3390740488297496e-06, -4.33907404882972e-06, -1.7356296195319134e-05, -5.2068888585956996e-05, -3.4712592390638092e-05, -4.3390740488297564e-06, -4.3390740488297717e-06, -7.810333287893673e-05, -4.3390740488297335e-06, -1.7356296195319229e-05, -8.6781480976595264e-06, -6.9425184781276319e-05, -6.9425184781276265e-05, -2.1695370244148753e-05, -1.7356296195318894e-05, -8.6781480976596145e-06, -2.6034444292978518e-05, -0.00036882129415053056, -4.3390740488297446e-06, -1.7356296195318894e-05, -1.73562961953189e-05, -6.9425184781276184e-05, -6.9425184781276401e-05, -1.7356296195318948e-05, -1.7356296195319019e-05, -1.7356296195319019e-05, -4.3390740488297564e-06, -0.00019959740624616993, -4.3390740488297398e-05, -4.3390740488297166e-06, -3.4712592390637916e-05, -3.4712592390638404e-05, -3.4712592390637895e-05, -6.9425184781276401e-05, -3.4712592390638282e-05, -6.9425184781276184e-05, -3.4712592390638404e-05, -3.4712592390638404e-05, -0.0013320957329907345, -3.4712592390637787e-05, -0.00086781480976596246, -3.4712592390638038e-05, -8.67814809765944e-06, -0.00026034444292978809, -5.2068888585956914e-05, -2.1695370244148686e-05, -0.00026034444292978538, -4.3390740488297666e-06, -3.4712592390637855e-05, -3.4712592390637868e-05, -0.00070292999591042718, -3.4712592390638024e-05, -3.4712592390638011e-05, -0.0009936479571820121, -1.3017222146489195e-05, -0.00086781480976596203, -3.4712592390637895e-05, -3.4712592390637882e-05, -4.3390740488297479e-06, -3.4712592390637882e-05, -3.4712592390637841e-05, -4.3390740488297598e-06, -6.9425184781276265e-05, -6.9425184781276319e-05, -8.6781480976594095e-06, -1.7356296195318921e-05, -1.7356296195318914e-05, -3.4712592390637773e-05, -3.471259239063776e-05, -0.0007029299959104313, -3.4712592390637868e-05, -3.4712592390637929e-05, -0.0001171549993184039, -0.0004165511086876551, -3.4712592390637868e-05, -0.00030807425746691582, -5.2068888585956779e-05, -5.2068888585956806e-05, -3.4712592390637746e-05, -3.4712592390637638e-05, -4.3390740488297168e-05, -3.4712592390637584e-05, -4.3390740488297229e-05, -9.1120555025425218e-05, -3.4712592390638078e-05, -2.1695370244148611e-05, -9.9798703123085182e-05, -3.4712592390638038e-05, -5.2068888585956914e-05, -1.3017222146489222e-05, -2.1695370244148686e-05, -8.6781480976594061e-06, -4.33907404882972e-06, -4.3390740488297429e-06, -3.471259239063757e-05, -5.206888858595686e-05, -2.6034444292978471e-05, -1.7356296195319039e-05, -3.4712592390637719e-05, -3.471259239063839e-05, -3.4712592390638404e-05, -6.9425184781276618e-05, -3.4712592390638173e-05, -1.73562961953189e-05, -6.9425184781276374e-05, -3.471259239063816e-05, -1.7356296195318894e-05, -3.4712592390638404e-05, -4.3390740488297666e-06, -3.4712592390638146e-05, -3.4712592390638173e-05, -6.942518478127552e-05, -0.00010413777717191367, -3.4712592390637984e-05, -6.9425184781275357e-05, -6.9425184781275547e-05, -3.471259239063816e-05, -3.4712592390638146e-05, -3.4712592390638038e-05, -3.4712592390637997e-05, -3.9051666439468528e-05, -0.00014752851766021056, -8.678148097659628e-06, -3.4712592390637624e-05, -3.4712592390638173e-05, -3.9051666439468534e-05, -0.00011281592526957507, -3.4712592390637746e-05, -3.4712592390637956e-05, -3.4712592390637597e-05, -1.7356296195318894e-05, -1.73562961953189e-05, -4.3390740488297234e-06, -4.3390740488296963e-06, -4.3390740488297183e-06, -8.6781480976594671e-06, -7.3764258830106538e-05, -0.00013017222146489269, -5.2068888585956941e-05, -2.6034444292978471e-05, -4.3390740488297446e-06, -1.7356296195318921e-05, -6.9425184781276048e-05, -0.00010413777717191356, -3.4712592390637638e-05, -1.7356296195318921e-05, -6.9425184781275913e-05, -6.9425184781275967e-05, -1.7356296195318921e-05, -5.2068888585956901e-05, -3.4712592390638024e-05, -4.3390740488297031e-06, -8.6781480976596213e-06, -1.7356296195318921e-05, -1.7356296195318948e-05, -3.9051666439468446e-05, -2.1695370244148645e-05, -3.4712592390637787e-05, -6.9425184781275994e-05, -0.00031241333151574513, -1.7356296195318819e-05, -4.3390740488297547e-06, -0.00026034444292978765, -3.4712592390637895e-05, -0.0002082755543438276, -0.00020827555434382766, -0.00021695370244149037, -0.0002082755543438276, -1.7356296195318826e-05, -1.7356296195318826e-05, -3.4712592390637956e-05, -3.4712592390638011e-05, -1.7356296195318999e-05, -1.7356296195319005e-05, -3.4712592390637679e-05, -4.3390740488297047e-06, -3.4712592390637665e-05, -4.3390740488297463e-06, -4.3390740488297268e-06, -0.00030373518341808011, -1.7356296195319005e-05, -1.7356296195318999e-05, -0.00026468351697861463, -8.6781480976594569e-06, 0.0173649743434168, -0.00031241333151574508, -3.4712592390637882e-05, -4.3390740488297463e-06, -3.4712592390637929e-05, -0.00031241333151574546, -0.00031241333151574497, -3.4712592390638011e-05, -3.4712592390638065e-05, -8.6781480976595196e-06, -8.6781480976594468e-06, -6.9425184781276347e-05, -3.4712592390638051e-05, -3.4712592390638024e-05, -1.3017222146489208e-05, -6.9425184781276347e-05, -3.4712592390637597e-05, -3.471259239063776e-05, -3.4712592390637706e-05, -3.4712592390637611e-05, -1.7356296195319073e-05, -1.7356296195319066e-05, -3.4712592390638146e-05, -3.471259239063816e-05, -4.3390740488297217e-06, -4.3390740488297268e-06, -0.0008721538838147876, -0.0008678148097659681, -2.169537024414875e-05, -4.3390740488297234e-06, -1.3017222146489188e-05, -4.3390740488297236e-05, -0.00034712592390637702, -8.6781480976594535e-06, -0.00039919481249234235, -4.3390740488297717e-06, -6.9425184781275411e-05, -6.9425184781275493e-05, -3.4712592390638173e-05, -3.4712592390638119e-05, -0.00034712592390637702, -0.00034712592390637702, -3.471259239063839e-05, -0.00098496980908435489, -8.6781480976593892e-06, -0.0008678148097659565, -6.9425184781275357e-05, -3.4712592390637746e-05, -3.4712592390637584e-05, -4.3390740488297742e-06, -4.3390740488297234e-06, -3.4712592390637882e-05, -3.4712592390637841e-05, -8.6781480976593926e-06, -8.6781480976593926e-06, -4.3390740488297751e-06, -4.3390740488297463e-06, -3.47125923906382e-05, -2.1695370244148706e-05, -1.3017222146489222e-05, -1.7356296195319066e-05, -1.7356296195319073e-05, -4.3390740488297234e-06, -6.5086110732446399e-05, -3.471259239063797e-05, -3.4712592390637943e-05, -3.9051666439468263e-05, -3.4712592390638187e-05, -6.5086110732446561e-05, -8.6781480976594434e-06, -4.3390740488297031e-06, -3.4712592390638173e-05, -3.471259239063816e-05, -4.33907404882972e-06, -4.3390740488297335e-06, -3.4712592390637929e-05, -3.4712592390637984e-05, -8.6781480976596179e-06, -4.339074048829753e-06, -3.4712592390638065e-05, -6.9425184781275967e-05, -4.339074048829733e-05, -3.4712592390637868e-05, -6.9425184781276265e-05, -4.3390740488297183e-06, -3.4712592390637882e-05, -7.3764258830105386e-05, -3.4712592390637882e-05, -3.4712592390638024e-05, -6.9425184781275466e-05, -0.00013885036956255416, -0.00010847685122074416, -3.4712592390638133e-05, -6.9425184781275547e-05, -6.9425184781275628e-05, -1.7356296195318792e-05, -3.4712592390637984e-05, -4.3390740488297317e-05, -4.7729814537127875e-05, -1.7356296195318785e-05, -6.942518478127697e-05, -3.4712592390637868e-05, -3.4712592390637868e-05, -3.4712592390637855e-05, -8.6781480976596179e-06, -3.4712592390637665e-05, -3.4712592390638133e-05, -4.3390740488296963e-06, -3.4712592390638119e-05, -8.6781480976595196e-06, -3.4712592390637679e-05, -3.4712592390637895e-05, -3.4712592390637855e-05, -4.3390740488297183e-06, -6.9425184781275601e-05, -6.9425184781275547e-05, -4.3390740488297319e-06, -3.4712592390637882e-05, -3.4712592390637916e-05, -4.3390740488297268e-06, -3.4712592390637597e-05, -3.4712592390637652e-05, -3.4712592390638038e-05, -3.4712592390637624e-05, -0.0001041377771719134, -3.4712592390637624e-05, -3.4712592390638106e-05, -3.4712592390637895e-05, -4.3390740488297463e-06, -3.4712592390638051e-05, -3.4712592390637916e-05, -6.9425184781275913e-05, -1.7356296195319073e-05, -7.8103332878936757e-05, -1.7356296195319066e-05, -4.3390740488297047e-06, -8.6781480976594857e-06, -5.640796263478737e-05, -3.4712592390637855e-05, -6.9425184781276807e-05, -0.00036448222010170087, -3.4712592390637929e-05, -0.00038183851629701725, -3.4712592390637984e-05, -3.4712592390638038e-05, -6.9425184781275628e-05, -0.00034712592390637881, -6.9425184781275547e-05, -0.000351464997955215, -4.3390740488297734e-06, -6.9425184781275493e-05, -6.9425184781275683e-05, -1.7356296195318826e-05, -0.00036448222010170087, -0.00034712592390637702, -0.00034712592390637891, -0.00034712592390637864, -4.3390740488297217e-06, -1.7356296195319141e-05, -4.3390740488297564e-06, -4.3390740488297115e-06, -4.3390740488296963e-06, -3.4712592390637868e-05, -3.4712592390637855e-05, -3.4712592390637882e-05, -3.4712592390637868e-05, -4.3390740488297564e-06, -4.3390740488297513e-06, -4.3390740488297564e-06, -3.4712592390637706e-05, -4.3390740488297154e-05, -8.678148097659462e-05, -6.9425184781276889e-05, -6.9425184781275994e-05, -3.4712592390637733e-05, -0.00010413777717191375, -1.3017222146489218e-05, -0.00038183851629702413, -6.9425184781276076e-05, -0.00031241333151574513, -4.3390740488297251e-06, -4.3390740488297412e-06, -0.00010847685122074454, -6.9425184781275913e-05, -3.471259239063797e-05, -3.0373518341808557e-05, -1.7356296195319134e-05, -8.6781480976594502e-06, 0.0173649743434168, -8.6781480976594434e-06, -1.7356296195319066e-05, -1.7356296195319073e-05, -0.00031241333151574508, -3.4712592390638078e-05, -4.3390740488297429e-06, -3.4712592390637956e-05, -4.3390740488297564e-06, -3.4712592390638011e-05, -4.3390740488297317e-05, -1.3017222146489207e-05, -3.4712592390637984e-05, -6.5086110732446751e-05, -4.3390740488297751e-06, -3.4712592390638092e-05, -8.6781480976593892e-06, -8.6781480976593959e-06, -8.6781480976594095e-06, -4.3390740488297352e-06, -2.6034444292978478e-05, -1.3017222146489222e-05, -3.4712592390637895e-05, -3.4712592390637841e-05, -6.9425184781276211e-05, -0.00011281592526957417, -9.9798703123085616e-05, -4.3390740488297751e-06, -6.9425184781276807e-05, -3.4712592390637787e-05, -2.6034444292978471e-05, -8.6781480976595637e-06, -4.3390740488297513e-06, -4.3390740488297115e-06, -0.00034712592390637864, -0.00034712592390637891, -0.00070292999591042935, -0.00034712592390637891, -0.00034712592390637881, -1.7356296195318785e-05, -8.6781480976595738e-06, -3.4712592390638404e-05, -3.905166643946825e-05, -1.7356296195318792e-05, -4.7729814537127414e-05, -4.3390740488297352e-06, -4.3390740488297717e-06, -6.9425184781276591e-05, -3.4712592390638078e-05, -3.4712592390638024e-05, -4.3390740488297412e-06, -4.3390740488297217e-06, -1.7356296195318927e-05, -1.7356296195318914e-05, -6.9425184781276807e-05, -3.4712592390637746e-05, -4.3390740488297615e-06, -0.00070292999591042718, -3.4712592390637868e-05, -3.4712592390637882e-05, -4.3390740488297319e-06, -1.7356296195318921e-05, -1.7356296195318921e-05, -8.6781480976595467e-06, -8.6781480976595433e-06, -1.3017222146489222e-05, -4.33907404882972e-06, -8.6781480976595433e-06, -8.6781480976595467e-06, -4.3390740488297496e-06, -4.3390740488297217e-06, -1.7356296195319134e-05, -5.2068888585957009e-05, -3.4712592390638106e-05, -4.3390740488297581e-06, -4.3390740488297717e-06, -7.810333287893673e-05, -4.3390740488297335e-06, -1.7356296195319229e-05, -8.6781480976595264e-06, -6.9425184781276347e-05, -6.9425184781276265e-05, -2.1695370244148753e-05, -1.7356296195318894e-05, -8.6781480976596145e-06, -2.6034444292978518e-05, -0.00036882129415053062, -4.3390740488297446e-06, -1.7356296195318894e-05, -1.73562961953189e-05, -6.9425184781276211e-05, -6.9425184781276401e-05, -1.7356296195318958e-05, -1.7356296195319019e-05, -1.7356296195319026e-05, -4.3390740488297564e-06, -0.00019959740624616993, -4.3390740488297398e-05, -4.3390740488297183e-06, -3.4712592390637882e-05, -3.4712592390638404e-05, -3.4712592390637868e-05, -6.9425184781276401e-05, -3.4712592390638295e-05, -6.9425184781276211e-05, -3.4712592390638404e-05, -3.4712592390638404e-05, -0.0013320957329907342, -3.4712592390637801e-05, -0.00086781480976596246, -3.4712592390638051e-05, -8.67814809765944e-06, -0.00026034444292978852, -5.2068888585956914e-05, -2.1695370244148686e-05, -0.00026034444292978581, -4.3390740488297683e-06, -3.4712592390637855e-05, -3.4712592390637868e-05, -0.00070292999591042718, -3.4712592390638038e-05, -3.4712592390638024e-05, -0.0009936479571820121, -1.3017222146489195e-05, -0.00086781480976596225, -3.4712592390637916e-05, -3.4712592390637882e-05, -4.3390740488297496e-06, -3.4712592390637882e-05, -3.4712592390637841e-05, -4.3390740488297615e-06, -6.9425184781276265e-05, -6.9425184781276347e-05, -8.6781480976594095e-06, -1.7356296195318921e-05, -1.7356296195318921e-05, -3.4712592390637787e-05, -3.471259239063776e-05, -0.00070292999591042935, -3.4712592390637841e-05, -3.4712592390637895e-05, -0.00011715499931840388, -0.0004165511086876551, -3.4712592390637868e-05, -0.00030807425746691582, -5.2068888585956779e-05, -5.2068888585956806e-05, -3.471259239063776e-05, -3.4712592390637652e-05, -4.3390740488297168e-05, -3.4712592390637597e-05, -4.3390740488297222e-05, -9.1120555025425246e-05, -3.4712592390638078e-05, -2.1695370244148611e-05, -9.9798703123085182e-05, -3.4712592390638051e-05, -5.2068888585956914e-05, -1.3017222146489222e-05, -2.1695370244148679e-05, -8.6781480976594061e-06, -4.3390740488297217e-06, -4.3390740488297429e-06, -3.4712592390637584e-05, -5.206888858595686e-05, -2.6034444292978471e-05, -1.7356296195319046e-05, -3.4712592390637733e-05, -3.471259239063839e-05, -3.4712592390638404e-05, -6.9425184781276618e-05, -3.4712592390638173e-05, -1.73562961953189e-05, -6.9425184781276374e-05, -3.471259239063816e-05, -1.7356296195318894e-05, -3.4712592390638404e-05, -4.3390740488297683e-06, -3.471259239063816e-05, -3.4712592390638173e-05, -6.9425184781275547e-05, -0.00010413777717191367, -3.4712592390637997e-05, -6.9425184781275357e-05, -6.9425184781275547e-05, -3.471259239063816e-05, -3.4712592390638146e-05, -3.4712592390638051e-05, -3.4712592390638011e-05, -3.9051666439468528e-05, -0.00014752851766021056, -8.678148097659628e-06, -3.4712592390637624e-05, -3.4712592390638187e-05, -3.9051666439468534e-05, -0.00011281592526957507, -3.471259239063776e-05, -3.4712592390637956e-05, -3.4712592390637597e-05, -1.7356296195318894e-05, -1.73562961953189e-05, -4.3390740488297251e-06, -4.3390740488296963e-06, -4.3390740488297183e-06, -8.6781480976594705e-06, -7.3764258830106552e-05, -0.00013017222146489291, -5.2068888585956941e-05, -2.6034444292978478e-05, -4.3390740488297463e-06, -1.7356296195318921e-05, -6.9425184781276076e-05, -0.00010413777717191357, -3.4712592390637638e-05, -1.7356296195318921e-05, -6.942518478127594e-05, -6.9425184781275994e-05, -1.7356296195318921e-05, -5.2068888585956914e-05, -3.4712592390638038e-05, -4.3390740488297031e-06, -8.6781480976596213e-06, -1.7356296195318921e-05, -1.7356296195318958e-05, -3.9051666439468446e-05, -2.1695370244148645e-05, -3.4712592390637801e-05, -6.9425184781275994e-05, -0.00031241333151574513, -1.7356296195318826e-05, -4.3390740488297547e-06, -0.00026034444292978809, -3.4712592390637895e-05, -0.00020827555434382763, -0.00020827555434382766, -0.00021695370244149032, -0.00020827555434382763, -1.7356296195318826e-05, -1.7356296195318833e-05, -3.4712592390637956e-05, -3.4712592390638011e-05, -1.7356296195318999e-05, -1.7356296195319005e-05, -3.4712592390637679e-05, -4.3390740488297047e-06, -3.4712592390637665e-05, -4.3390740488297479e-06, -4.3390740488297268e-06, -0.00030373518341808006, -1.7356296195319005e-05, -1.7356296195318999e-05, -0.00026468351697861518, -8.6781480976594502e-06, -0.00031241333151574508, 0.0173649743434168, -3.4712592390637882e-05, -4.3390740488297479e-06, -3.4712592390637929e-05, -0.00031241333151574513, -0.00031241333151574481, -3.4712592390638024e-05, -3.4712592390638065e-05, -8.678148097659523e-06, -8.6781480976594502e-06, -6.9425184781276374e-05, -3.4712592390638051e-05, -3.4712592390638038e-05, -1.3017222146489212e-05, -6.9425184781276374e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.690598709053173e-05, -9.6423867751772003e-05, -2.4105966937943102e-06, -4.8211933875886133e-07, -1.4463580162765965e-06, -4.821193387588651e-06, -3.8569547100709316e-05, -9.6423867751772266e-07, -4.4354979165815502e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100709323e-05, -3.8569547100709316e-05, -3.8569547100708898e-06, -0.00010944108989826139, -9.6423867751772224e-07, -9.6423867751773291e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.4105966937943102e-06, -1.4463580162765973e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.231790081383007e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297302e-06, -3.8569547100708906e-06, -7.2317900813829858e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886408e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886122e-07, 0.0019602972313935386, -8.1960287589006183e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971528e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -4.8211933875886425e-06, -5.3033127263474617e-06, -1.9284773550354445e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.8211933875886112e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212748e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.678148097659479e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652534e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -4.0498024455744657e-05, -3.8569547100708906e-06, -4.2426501810779728e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709106e-05, -7.7139094201417796e-06, -3.9051666439468101e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.0498024455744657e-05, -3.8569547100709316e-05, -3.8569547100709072e-05, -3.8569547100709174e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886578e-06, -9.6423867751772918e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -1.157086413021276e-05, -1.446358016276616e-06, -4.2426501810780019e-05, -7.7139094201417813e-06, -3.4712592390637895e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971572e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120418e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390637882e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390637882e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886391e-06, -1.4463580162765948e-06, -3.8569547100708906e-06, -7.2317900813829604e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325532052e-06, -1.4463580162766128e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.2535102807730471e-05, -1.1088744791453881e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532116e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709174e-05, -3.8569547100709072e-05, -7.8103332878936446e-05, -3.8569547100709072e-05, -3.8569547100709106e-05, -1.9284773550354445e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297217e-06, -1.9284773550354445e-06, -5.3033127263474897e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936269e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4463580162765872e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651063825e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -8.6781480976594959e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -7.713909420141783e-06, -7.713909420141783e-06, -2.4105966937943111e-06, -1.9284773550354457e-06, -9.6423867751772245e-07, -2.8927160325531887e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886144e-07, -2.217748958290767e-05, -4.8211933875886205e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00014801063699897195, -3.8569547100708906e-06, -9.64238677517726e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.8927160325531652e-05, -5.7854320651063809e-06, -2.4105966937943179e-06, -2.8927160325531977e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936269e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -0.00011040532857577933, -1.4463580162765939e-06, -9.6423867751772708e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936446e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489225e-05, -4.6283456520851047e-05, -3.8569547100708906e-06, -3.4230473051878989e-05, -5.7854320651063758e-06, -5.7854320651063758e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886612e-06, -3.8569547100708898e-06, -4.8211933875886527e-06, -1.0124506113936161e-05, -3.8569547100708906e-06, -2.4105966937943276e-06, -1.1088744791453835e-05, -3.8569547100708915e-06, -5.7854320651063809e-06, -1.4463580162766132e-06, -2.4105966937943174e-06, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063783e-06, -2.8927160325532103e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354457e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.1570864130212755e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.3390740488297513e-06, -1.6392057517801342e-05, -9.6423867751772224e-07, -3.8569547100708889e-06, -3.8569547100708915e-06, -4.3390740488297513e-06, -1.2535102807730483e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -8.1960287589005708e-06, -1.4463580162765843e-05, -5.7854320651063809e-06, -2.8927160325532052e-06, -4.8211933875886144e-07, -1.9284773550354457e-06, -7.7139094201417813e-06, -1.1570864130212755e-05, -3.8569547100708889e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -5.7854320651063393e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354453e-06, -4.3390740488297446e-06, -2.4105966937943238e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -3.4712592390637997e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531652e-05, -3.8569547100708915e-06, -2.3141728260425859e-05, -2.3141728260425483e-05, -2.4105966937943028e-05, -2.3141728260425859e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.3748353713120489e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.9409279664290602e-05, -9.6423867751772245e-07, -3.4712592390637882e-05, -3.4712592390637882e-05, 0.0019602972313935386, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.4712592390637895e-05, -3.4712592390637929e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765946e-06, -7.713909420141783e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -1.2113248386316476e-05, -1.2052983468971506e-05, -3.0132458672428857e-07, -6.0264917344857666e-08, -1.8079475203457416e-07, -6.0264917344858074e-07, -4.8211933875886612e-06, -1.2052983468971533e-07, -5.5443723957269353e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886612e-06, -4.8211933875886603e-06, -4.8211933875886122e-07, -1.3680136237282663e-05, -1.2052983468971528e-07, -1.2052983468971666e-05, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -4.8211933875886101e-07, -3.0132458672428846e-07, -1.807947520345743e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857666e-08, -9.039737601728763e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -5.4238425610371606e-07, -4.8211933875886133e-07, -9.0397376017287344e-07, -1.2052983468971531e-07, -6.0264917344857653e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857653e-08, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971528e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -9.6423867751772266e-07, -6.0264917344857968e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -6.0264917344857653e-08, -4.8211933875886144e-07, -1.0245035948625769e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.928477355035444e-06, -1.5066229336214416e-06, -4.8211933875886144e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943056e-07, -4.8211933875886133e-07, -6.0264917344857989e-07, -6.6291409079343314e-07, -2.4105966937943056e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -6.026491734485764e-08, -4.8211933875886144e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -4.8211933875886122e-07, -1.4463580162765931e-06, -4.8211933875886112e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -1.0847685122074342e-06, -2.4105966937943072e-07, -6.0264917344857653e-08, -1.2052983468971536e-07, -7.8344392548315636e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -5.0622530569680822e-06, -4.8211933875886133e-07, -5.3033127263474693e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -4.8211933875886332e-06, -9.6423867751772245e-07, -4.8814583049335092e-06, -6.0264917344857666e-08, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -5.0622530569680822e-06, -4.8211933875886612e-06, -4.8211933875886298e-06, -4.8211933875886425e-06, -6.0264917344857653e-08, -2.4105966937943051e-07, -6.0264917344857679e-08, -6.0264917344857653e-08, -6.026491734485764e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886122e-07, -6.026491734485818e-07, -1.2052983468971606e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -1.4463580162765946e-06, -1.8079475203457694e-07, -5.3033127263475075e-06, -9.6423867751772266e-07, -4.3390740488297479e-06, -6.0264917344857666e-08, -6.0264917344857679e-08, -1.5066229336214469e-06, -9.6423867751772287e-07, -4.8211933875886133e-07, -4.218544214140048e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -4.3390740488297479e-06, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -4.3390740488297463e-06, -4.8211933875886144e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -6.0264917344857666e-08, -4.8211933875886133e-07, -6.0264917344857926e-07, -1.807947520345743e-07, -4.8211933875886133e-07, -9.0397376017287026e-07, -6.0264917344857679e-08, -4.8211933875886144e-07, -1.2052983468971528e-07, -1.2052983468971528e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -3.6158950406915055e-07, -1.8079475203457655e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772266e-07, -1.5668878509663085e-06, -1.3860930989317344e-06, -6.0264917344857679e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -3.6158950406915134e-07, -1.2052983468971531e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -4.8211933875886425e-06, -4.8211933875886298e-06, -9.7629166098670455e-06, -4.8211933875886298e-06, -4.8211933875886332e-06, -2.4105966937943056e-07, -1.2052983468971533e-07, -4.8211933875886112e-07, -5.42384256103715e-07, -2.4105966937943056e-07, -6.6291409079343663e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.7629166098670252e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344857666e-08, -2.4105966937943066e-07, -2.4105966937943066e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -1.8079475203457334e-07, -6.0264917344857653e-08, -1.2052983468971533e-07, -1.2052983468971533e-07, -6.0264917344857666e-08, -6.0264917344857653e-08, -2.4105966937943056e-07, -7.2317900813829761e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -6.0264917344857666e-08, -1.0847685122074366e-06, -6.0264917344857666e-08, -2.4105966937943051e-07, -1.2052983468971531e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.013245867242891e-07, -2.4105966937943072e-07, -1.2052983468971531e-07, -3.6158950406914849e-07, -5.1225179743129167e-06, -6.0264917344857679e-08, -2.4105966937943072e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -6.0264917344857679e-08, 0.00024274708706508783, -6.0264917344857703e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.85013296248715e-05, -4.8211933875886133e-07, -1.205298346897158e-05, -4.8211933875886133e-07, -1.2052983468971531e-07, -3.6158950406914582e-06, -7.2317900813829739e-07, -3.0132458672428947e-07, -3.6158950406914984e-06, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670252e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.3800666071972413e-05, -1.8079475203457419e-07, -1.2052983468971594e-05, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -6.0264917344857679e-08, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971531e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.7629166098670455e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.6271527683111536e-06, -5.7854320651063792e-06, -4.8211933875886133e-07, -4.2788091314848702e-06, -7.2317900813829676e-07, -7.2317900813829676e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -6.0264917344858212e-07, -4.8211933875886122e-07, -6.0264917344858116e-07, -1.2655632642420197e-06, -4.8211933875886133e-07, -3.0132458672429069e-07, -1.3860930989317285e-06, -4.8211933875886144e-07, -7.2317900813829739e-07, -1.807947520345766e-07, -3.0132458672428942e-07, -1.2052983468971528e-07, -6.0264917344857653e-08, -6.0264917344857679e-08, -4.8211933875886122e-07, -7.2317900813829708e-07, -3.6158950406915119e-07, -2.4105966937943072e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -2.4105966937943072e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -2.4105966937943072e-07, -4.8211933875886122e-07, -6.0264917344857679e-08, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -1.4463580162765939e-06, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -5.423842561037187e-07, -2.0490071897251668e-06, -1.2052983468971528e-07, -4.8211933875886112e-07, -4.8211933875886144e-07, -5.423842561037187e-07, -1.5668878509663098e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -6.0264917344857666e-08, -6.026491734485764e-08, -6.0264917344857653e-08, -1.2052983468971536e-07, -1.0245035948625709e-06, -1.8079475203457308e-06, -7.2317900813829739e-07, -3.6158950406915055e-07, -6.0264917344857679e-08, -2.4105966937943072e-07, -9.6423867751772266e-07, -1.4463580162765939e-06, -4.8211933875886112e-07, -2.4105966937943072e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943072e-07, -7.2317900813829221e-07, -4.8211933875886144e-07, -6.0264917344857653e-08, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943066e-07, -5.4238425610371786e-07, -3.0132458672429026e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -4.3390740488297479e-06, -2.4105966937943061e-07, -6.0264917344857679e-08, -3.6158950406914573e-06, -4.8211933875886144e-07, -2.8927160325532315e-06, -2.8927160325531845e-06, -3.0132458672428802e-06, -2.8927160325532315e-06, -2.4105966937943061e-07, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -2.4105966937943066e-07, -4.8211933875886122e-07, -6.0264917344857653e-08, -4.8211933875886122e-07, -6.0264917344857666e-08, -6.0264917344857666e-08, -4.2185442141400561e-06, -2.4105966937943066e-07, -2.4105966937943066e-07, -3.676159958036327e-06, -1.2052983468971531e-07, -4.3390740488297463e-06, -4.3390740488297479e-06, -4.8211933875886144e-07, 0.00024545900834560633, -4.8211933875886144e-07, -4.3390740488297479e-06, -4.3390740488297412e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.8079475203457427e-07, -9.6423867751772287e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6905987090531865e-05, -9.6423867751772112e-05, -2.4105966937943094e-06, -4.8211933875886133e-07, -1.4463580162765952e-06, -4.8211933875886476e-06, -3.8569547100709303e-05, -9.6423867751772266e-07, -4.4354979165815448e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100709303e-05, -3.8569547100709296e-05, -3.8569547100708898e-06, -0.00010944108989826128, -9.6423867751772224e-07, -9.6423867751773399e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708881e-06, -2.4105966937943086e-06, -1.4463580162765961e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813830138e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.3390740488297234e-06, -3.8569547100708906e-06, -7.2317900813829909e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886122e-07, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772224e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, 0.0019564402766834681, -4.8211933875886391e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -4.8211933875886122e-07, -3.8569547100708915e-06, -8.1960287589006115e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.5427818840283552e-05, -1.2052983468971541e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354445e-06, -3.8569547100708906e-06, -4.8211933875886408e-06, -5.3033127263474634e-06, -1.9284773550354445e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.8211933875886112e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212758e-05, -3.8569547100708889e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976594637e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038652526e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -4.0498024455744657e-05, -3.8569547100708906e-06, -4.2426501810779741e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709079e-05, -7.7139094201417796e-06, -3.9051666439468087e-05, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -4.0498024455744657e-05, -3.8569547100709303e-05, -3.8569547100709052e-05, -3.8569547100709154e-05, -4.8211933875886122e-07, -1.928477355035444e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886112e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100708898e-06, -4.8211933875886561e-06, -9.6423867751772884e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -1.157086413021277e-05, -1.4463580162766172e-06, -4.2426501810780033e-05, -7.7139094201417813e-06, -3.4712592390637943e-05, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.2052983468971587e-05, -7.713909420141783e-06, -3.8569547100708906e-06, -3.3748353713120376e-06, -1.9284773550354449e-06, -9.6423867751772245e-07, -3.4712592390637929e-05, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390637929e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -4.8211933875886357e-06, -1.4463580162765961e-06, -3.8569547100708906e-06, -7.2317900813829655e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325532078e-06, -1.4463580162766141e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417813e-06, -1.253510280773047e-05, -1.1088744791453867e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532141e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709154e-05, -3.8569547100709052e-05, -7.8103332878936418e-05, -3.8569547100709052e-05, -3.8569547100709079e-05, -1.9284773550354445e-06, -9.6423867751772266e-07, -3.8569547100708889e-06, -4.3390740488297149e-06, -1.9284773550354445e-06, -5.3033127263474914e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936242e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.4463580162765884e-06, -4.8211933875886122e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -4.8211933875886133e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -5.7854320651063876e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -8.6781480976594857e-06, -4.8211933875886133e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -7.713909420141783e-06, -7.713909420141783e-06, -2.4105966937943111e-06, -1.9284773550354457e-06, -9.6423867751772245e-07, -2.8927160325531913e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886144e-07, -2.2177489582907643e-05, -4.821193387588618e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00014801063699897214, -3.8569547100708906e-06, -9.6423867751772722e-05, -3.8569547100708906e-06, -9.6423867751772245e-07, -2.8927160325531679e-05, -5.7854320651063859e-06, -2.4105966937943166e-06, -2.8927160325532001e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936242e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -0.00011040532857577923, -1.4463580162765952e-06, -9.6423867751772817e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936418e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -1.3017222146489229e-05, -4.6283456520851087e-05, -3.8569547100708906e-06, -3.4230473051878935e-05, -5.7854320651063809e-06, -5.7854320651063809e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886586e-06, -3.8569547100708898e-06, -4.821193387588651e-06, -1.0124506113936158e-05, -3.8569547100708906e-06, -2.4105966937943263e-06, -1.1088744791453821e-05, -3.8569547100708915e-06, -5.7854320651063859e-06, -1.4463580162766145e-06, -2.4105966937943162e-06, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063834e-06, -2.8927160325532129e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -1.9284773550354457e-06, -7.7139094201417779e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417796e-06, -1.1570864130212765e-05, -3.8569547100708906e-06, -7.7139094201417796e-06, -7.7139094201417779e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.3390740488297446e-06, -1.6392057517801328e-05, -9.6423867751772224e-07, -3.8569547100708889e-06, -3.8569547100708915e-06, -4.3390740488297446e-06, -1.2535102807730481e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -4.8211933875886112e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -8.196028758900564e-06, -1.4463580162765853e-05, -5.7854320651063859e-06, -2.8927160325532078e-06, -4.8211933875886144e-07, -1.9284773550354457e-06, -7.7139094201417813e-06, -1.1570864130212765e-05, -3.8569547100708889e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -5.7854320651063444e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354453e-06, -4.3390740488297369e-06, -2.410596693794323e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -3.4712592390637956e-05, -1.9284773550354449e-06, -4.8211933875886144e-07, -2.8927160325531672e-05, -3.8569547100708915e-06, -2.3141728260425879e-05, -2.3141728260425503e-05, -2.4105966937943055e-05, -2.3141728260425879e-05, -1.9284773550354449e-06, -1.9284773550354449e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886133e-07, -4.8211933875886133e-07, -3.3748353713120421e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.9409279664290629e-05, -9.6423867751772245e-07, -3.4712592390637929e-05, -3.4712592390637929e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, 0.0019602972313935386, -3.4712592390637943e-05, -3.4712592390637882e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765958e-06, -7.713909420141783e-06, -3.4712592390637611e-05, -3.471259239063776e-05, -3.4712592390637719e-05, -3.4712592390637624e-05, -1.735629619531908e-05, -1.7356296195319073e-05, -3.471259239063816e-05, -3.4712592390638173e-05, -4.3390740488297234e-06, -4.3390740488297285e-06, -0.00087215388381478782, -0.0008678148097659681, -2.1695370244148747e-05, -4.3390740488297234e-06, -1.3017222146489188e-05, -4.3390740488297236e-05, -0.00034712592390637702, -8.6781480976594569e-06, -0.00039919481249234235, -4.3390740488297734e-06, -6.9425184781275411e-05, -6.9425184781275493e-05, -3.4712592390638187e-05, -3.4712592390638133e-05, -0.00034712592390637691, -0.00034712592390637702, -3.4712592390638404e-05, -0.00098496980908435489, -8.6781480976593926e-06, -0.0008678148097659565, -6.9425184781275357e-05, -3.4712592390637746e-05, -3.4712592390637584e-05, -4.3390740488297751e-06, -4.3390740488297251e-06, -3.4712592390637895e-05, -3.4712592390637841e-05, -8.6781480976593926e-06, -8.6781480976593959e-06, -4.3390740488297751e-06, -4.3390740488297463e-06, -3.4712592390638214e-05, -2.1695370244148706e-05, -1.3017222146489222e-05, -1.7356296195319066e-05, -1.735629619531908e-05, -4.3390740488297234e-06, -6.508611073244648e-05, -3.471259239063797e-05, -3.4712592390637956e-05, -3.9051666439468263e-05, -3.47125923906382e-05, -6.5086110732446643e-05, -8.6781480976594468e-06, -4.3390740488297047e-06, -3.4712592390638187e-05, -3.471259239063816e-05, -4.3390740488297217e-06, -4.3390740488297352e-06, -3.4712592390637943e-05, -3.4712592390637984e-05, -8.6781480976596213e-06, -4.339074048829753e-06, -3.4712592390638078e-05, -6.9425184781275994e-05, -4.3390740488297324e-05, -3.4712592390637868e-05, -6.9425184781276265e-05, -4.33907404882972e-06, -3.4712592390637895e-05, -7.3764258830105386e-05, -3.4712592390637895e-05, -3.4712592390638024e-05, -6.9425184781275466e-05, -0.00013885036956255421, -0.00010847685122074416, -3.4712592390638146e-05, -6.9425184781275574e-05, -6.9425184781275655e-05, -1.7356296195318792e-05, -3.4712592390637984e-05, -4.3390740488297317e-05, -4.7729814537127868e-05, -1.7356296195318792e-05, -6.9425184781276997e-05, -3.4712592390637882e-05, -3.4712592390637882e-05, -3.4712592390637855e-05, -8.6781480976596179e-06, -3.4712592390637679e-05, -3.4712592390638146e-05, -4.3390740488296963e-06, -3.4712592390638133e-05, -8.6781480976595196e-06, -3.4712592390637692e-05, -3.4712592390637916e-05, -3.4712592390637855e-05, -4.3390740488297183e-06, -6.9425184781275601e-05, -6.9425184781275547e-05, -4.3390740488297319e-06, -3.4712592390637895e-05, -3.4712592390637916e-05, -4.3390740488297285e-06, -3.4712592390637597e-05, -3.4712592390637652e-05, -3.4712592390638038e-05, -3.4712592390637638e-05, -0.0001041377771719134, -3.4712592390637638e-05, -3.4712592390638106e-05, -3.4712592390637916e-05, -4.3390740488297479e-06, -3.4712592390638051e-05, -3.4712592390637929e-05, -6.942518478127594e-05, -1.735629619531908e-05, -7.8103332878936757e-05, -1.7356296195319066e-05, -4.3390740488297047e-06, -8.6781480976594857e-06, -5.640796263478737e-05, -3.4712592390637855e-05, -6.9425184781276807e-05, -0.00036448222010170087, -3.4712592390637943e-05, -0.0003818385162970172, -3.4712592390637997e-05, -3.4712592390638038e-05, -6.9425184781275655e-05, -0.00034712592390637881, -6.9425184781275574e-05, -0.000351464997955215, -4.3390740488297742e-06, -6.942518478127552e-05, -6.942518478127571e-05, -1.7356296195318826e-05, -0.00036448222010170093, -0.00034712592390637702, -0.00034712592390637891, -0.00034712592390637859, -4.3390740488297217e-06, -1.7356296195319148e-05, -4.3390740488297581e-06, -4.3390740488297115e-06, -4.339074048829698e-06, -3.4712592390637882e-05, -3.4712592390637868e-05, -3.4712592390637882e-05, -3.4712592390637868e-05, -4.3390740488297564e-06, -4.339074048829753e-06, -4.3390740488297564e-06, -3.4712592390637719e-05, -4.3390740488297154e-05, -8.6781480976594607e-05, -6.9425184781276889e-05, -6.9425184781275994e-05, -3.4712592390637733e-05, -0.00010413777717191375, -1.3017222146489215e-05, -0.00038183851629702321, -6.9425184781276076e-05, 0.0173649743434168, -4.3390740488297251e-06, -4.3390740488297429e-06, -0.00010847685122074454, -6.942518478127594e-05, -3.471259239063797e-05, -3.0373518341808557e-05, -1.7356296195319134e-05, -8.6781480976594502e-06, -0.00031241333151574513, -8.6781480976594468e-06, -1.7356296195319073e-05, -1.735629619531908e-05, -0.00031241333151574546, -3.4712592390638092e-05, -4.3390740488297446e-06, -3.471259239063797e-05, -4.3390740488297564e-06, -3.4712592390638024e-05, -4.3390740488297303e-05, -1.3017222146489207e-05, -3.4712592390637984e-05, -6.5086110732446832e-05, -4.3390740488297767e-06, -3.4712592390638106e-05, -8.6781480976593926e-06, -8.6781480976593959e-06, -8.6781480976594129e-06, -4.3390740488297352e-06, -2.6034444292978471e-05, -1.301722214648922e-05, -3.4712592390637882e-05, -3.4712592390637828e-05, -6.9425184781276211e-05, -0.00011281592526957417, -9.9798703123085616e-05, -4.3390740488297767e-06, -6.9425184781276807e-05, -3.4712592390637787e-05, -2.6034444292978471e-05, -8.6781480976595637e-06, -4.339074048829753e-06, -4.3390740488297132e-06, -0.00034712592390637859, -0.00034712592390637891, -0.00070292999591042773, -0.00034712592390637891, -0.00034712592390637881, -1.7356296195318792e-05, -8.6781480976595772e-06, -3.4712592390638417e-05, -3.905166643946825e-05, -1.7356296195318792e-05, -4.7729814537127407e-05, -4.3390740488297335e-06, -4.3390740488297734e-06, -6.9425184781276618e-05, -3.4712592390638092e-05, -3.4712592390638024e-05, -4.3390740488297412e-06, -4.3390740488297234e-06, -1.7356296195318934e-05, -1.7356296195318921e-05, -6.9425184781276834e-05, -3.471259239063776e-05, -4.3390740488297632e-06, -0.00070292999591042718, -3.4712592390637841e-05, -3.4712592390637855e-05, -4.3390740488297319e-06, -1.7356296195318921e-05, -1.7356296195318927e-05, -8.6781480976595501e-06, -8.6781480976595467e-06, -1.3017222146489222e-05, -4.3390740488297217e-06, -8.6781480976595467e-06, -8.6781480976595501e-06, -4.3390740488297513e-06, -4.3390740488297217e-06, -1.7356296195319127e-05, -5.2068888585956996e-05, -3.4712592390638106e-05, -4.3390740488297581e-06, -4.3390740488297734e-06, -7.810333287893673e-05, -4.3390740488297352e-06, -1.7356296195319236e-05, -8.6781480976595264e-06, -6.9425184781276347e-05, -6.9425184781276292e-05, -2.1695370244148747e-05, -1.73562961953189e-05, -8.6781480976596179e-06, -2.6034444292978518e-05, -0.00036882129415053051, -4.3390740488297463e-06, -1.7356296195318894e-05, -1.7356296195318907e-05, -6.9425184781276211e-05, -6.9425184781276428e-05, -1.7356296195318958e-05, -1.7356296195319026e-05, -1.7356296195319026e-05, -4.3390740488297581e-06, -0.00019959740624616993, -4.3390740488297398e-05, -4.3390740488297183e-06, -3.4712592390637855e-05, -3.4712592390638417e-05, -3.4712592390637841e-05, -6.9425184781276428e-05, -3.4712592390638295e-05, -6.9425184781276211e-05, -3.4712592390638417e-05, -3.4712592390638417e-05, -0.0013320957329907345, -3.4712592390637801e-05, -0.00086781480976596246, -3.4712592390638051e-05, -8.67814809765944e-06, -0.00026034444292978885, -5.2068888585956914e-05, -2.1695370244148679e-05, -0.00026034444292978614, -4.3390740488297683e-06, -3.4712592390637855e-05, -3.4712592390637882e-05, -0.00070292999591042718, -3.4712592390638038e-05, -3.4712592390638024e-05, -0.0009936479571820121, -1.3017222146489195e-05, -0.00086781480976596225, -3.4712592390637916e-05, -3.4712592390637895e-05, -4.3390740488297496e-06, -3.4712592390637895e-05, -3.4712592390637841e-05, -4.3390740488297615e-06, -6.9425184781276292e-05, -6.9425184781276347e-05, -8.6781480976594129e-06, -1.7356296195318927e-05, -1.7356296195318921e-05, -3.4712592390637787e-05, -3.4712592390637773e-05, -0.00070292999591042773, -3.4712592390637828e-05, -3.4712592390637882e-05, -0.00011715499931840388, -0.0004165511086876551, -3.4712592390637882e-05, -0.00030807425746691582, -5.2068888585956779e-05, -5.2068888585956806e-05, -3.471259239063776e-05, -3.4712592390637652e-05, -4.3390740488297168e-05, -3.4712592390637597e-05, -4.3390740488297215e-05, -9.1120555025425246e-05, -3.4712592390638092e-05, -2.1695370244148611e-05, -9.9798703123085182e-05, -3.4712592390638051e-05, -5.2068888585956914e-05, -1.3017222146489222e-05, -2.1695370244148679e-05, -8.6781480976594095e-06, -4.3390740488297217e-06, -4.3390740488297446e-06, -3.4712592390637584e-05, -5.206888858595686e-05, -2.6034444292978471e-05, -1.7356296195319046e-05, -3.4712592390637733e-05, -3.4712592390638404e-05, -3.4712592390638417e-05, -6.9425184781276645e-05, -3.4712592390638187e-05, -1.7356296195318907e-05, -6.9425184781276401e-05, -3.4712592390638173e-05, -1.7356296195318894e-05, -3.4712592390638417e-05, -4.3390740488297683e-06, -3.471259239063816e-05, -3.4712592390638187e-05, -6.9425184781275547e-05, -0.00010413777717191367, -3.4712592390637997e-05, -6.9425184781275357e-05, -6.9425184781275547e-05, -3.4712592390638173e-05, -3.471259239063816e-05, -3.4712592390638051e-05, -3.4712592390638011e-05, -3.9051666439468528e-05, -0.00014752851766021053, -8.6781480976596314e-06, -3.4712592390637638e-05, -3.4712592390638187e-05, -3.9051666439468534e-05, -0.00011281592526957507, -3.471259239063776e-05, -3.471259239063797e-05, -3.4712592390637611e-05, -1.73562961953189e-05, -1.73562961953189e-05, -4.3390740488297251e-06, -4.339074048829698e-06, -4.33907404882972e-06, -8.6781480976594705e-06, -7.3764258830106538e-05, -0.00013017222146489307, -5.2068888585956941e-05, -2.6034444292978471e-05, -4.3390740488297463e-06, -1.7356296195318927e-05, -6.9425184781276076e-05, -0.00010413777717191356, -3.4712592390637652e-05, -1.7356296195318921e-05, -6.942518478127594e-05, -6.9425184781275994e-05, -1.7356296195318921e-05, -5.2068888585956901e-05, -3.4712592390638038e-05, -4.3390740488297047e-06, -8.6781480976596246e-06, -1.7356296195318927e-05, -1.7356296195318958e-05, -3.9051666439468446e-05, -2.1695370244148645e-05, -3.4712592390637801e-05, -6.9425184781276021e-05, -0.00031241333151574513, -1.7356296195318826e-05, -4.3390740488297564e-06, -0.00026034444292978841, -3.4712592390637916e-05, -0.0002082755543438276, -0.00020827555434382766, -0.00021695370244149037, -0.0002082755543438276, -1.7356296195318833e-05, -1.7356296195318833e-05, -3.471259239063797e-05, -3.4712592390638024e-05, -1.7356296195319005e-05, -1.7356296195319012e-05, -3.4712592390637692e-05, -4.3390740488297064e-06, -3.4712592390637679e-05, -4.3390740488297479e-06, -4.3390740488297285e-06, -0.00030373518341808006, -1.7356296195319012e-05, -1.7356296195319005e-05, -0.00026468351697861545, -8.6781480976594434e-06, -0.00031241333151574546, -0.00031241333151574513, -3.4712592390637895e-05, -4.3390740488297479e-06, -3.4712592390637943e-05, 0.0173649743434168, -0.0003124133315157447, -3.4712592390638024e-05, -3.4712592390638078e-05, -8.678148097659523e-06, -8.6781480976594502e-06, -6.9425184781276374e-05, -3.4712592390638065e-05, -3.4712592390638038e-05, -1.3017222146489208e-05, -6.9425184781276374e-05, -3.4712592390637543e-05, -3.4712592390637692e-05, -3.4712592390637652e-05, -3.4712592390637557e-05, -1.7356296195319046e-05, -1.7356296195319039e-05, -3.4712592390638092e-05, -3.4712592390638106e-05, -4.3390740488297149e-06, -4.33907404882972e-06, -0.00087215388381478131, -0.00086781480976596181, -2.1695370244148936e-05, -4.3390740488297166e-06, -1.3017222146489181e-05, -4.3390740488297676e-05, -0.00034712592390638054, -8.67814809765944e-06, -0.00039919481249233905, -4.3390740488297649e-06, -6.9425184781275303e-05, -6.9425184781275384e-05, -3.4712592390638119e-05, -3.4712592390638065e-05, -0.00034712592390638054, -0.00034712592390638054, -3.4712592390638336e-05, -0.00098496980908435402, -8.6781480976593756e-06, -0.00086781480976595, -6.9425184781275249e-05, -3.4712592390637679e-05, -3.4712592390637516e-05, -4.3390740488297666e-06, -4.3390740488297166e-06, -3.4712592390637828e-05, -3.4712592390637773e-05, -8.6781480976593756e-06, -8.678148097659379e-06, -4.3390740488297666e-06, -4.3390740488297369e-06, -3.4712592390638146e-05, -2.1695370244148926e-05, -1.3017222146489222e-05, -1.7356296195319032e-05, -1.7356296195319046e-05, -4.3390740488297166e-06, -6.5086110732446317e-05, -3.4712592390637916e-05, -3.4712592390637882e-05, -3.905166643946785e-05, -3.4712592390638133e-05, -6.5086110732446507e-05, -8.6781480976594298e-06, -4.3390740488296963e-06, -3.4712592390638119e-05, -3.4712592390638092e-05, -4.3390740488297132e-06, -4.3390740488297268e-06, -3.4712592390637868e-05, -3.4712592390637929e-05, -8.6781480976596043e-06, -4.3390740488297446e-06, -3.4712592390638011e-05, -6.9425184781276455e-05, -4.3390740488297771e-05, -3.4712592390637801e-05, -6.942518478127613e-05, -4.3390740488297115e-06, -3.4712592390637929e-05, -7.3764258830105441e-05, -3.4712592390637828e-05, -3.4712592390637956e-05, -6.942518478127533e-05, -0.00013885036956255394, -0.00010847685122074367, -3.4712592390638092e-05, -6.9425184781275439e-05, -6.942518478127552e-05, -1.7356296195318758e-05, -3.4712592390637916e-05, -4.3390740488297757e-05, -4.7729814537128301e-05, -1.7356296195318758e-05, -6.9425184781276862e-05, -3.4712592390637814e-05, -3.4712592390637814e-05, -3.4712592390637801e-05, -8.6781480976596009e-06, -3.4712592390637611e-05, -3.4712592390638092e-05, -4.3390740488296895e-06, -3.4712592390638106e-05, -8.6781480976595027e-06, -3.4712592390637624e-05, -3.4712592390637841e-05, -3.4712592390637787e-05, -4.3390740488297098e-06, -6.9425184781275466e-05, -6.9425184781275411e-05, -4.3390740488297234e-06, -3.4712592390637828e-05, -3.4712592390637841e-05, -4.33907404882972e-06, -3.471259239063753e-05, -3.4712592390637584e-05, -3.471259239063797e-05, -3.471259239063757e-05, -0.00010413777717191337, -3.471259239063757e-05, -3.4712592390638038e-05, -3.4712592390637916e-05, -4.3390740488297395e-06, -3.4712592390637984e-05, -3.4712592390637895e-05, -6.9425184781275791e-05, -1.7356296195319046e-05, -7.8103332878935917e-05, -1.7356296195319032e-05, -4.3390740488296963e-06, -8.6781480976594671e-06, -5.640796263478737e-05, -3.4712592390637787e-05, -6.9425184781276672e-05, -0.00036448222010170087, -3.4712592390637868e-05, -0.00038183851629702061, -3.4712592390637929e-05, -3.471259239063797e-05, -6.942518478127552e-05, -0.00034712592390638233, -6.9425184781275439e-05, -0.00035146499795521164, -4.3390740488297657e-06, -6.9425184781275384e-05, -6.9425184781275574e-05, -1.7356296195318792e-05, -0.00036448222010170087, -0.00034712592390638054, -0.00034712592390638244, -0.00034712592390638211, -4.3390740488297132e-06, -1.7356296195319114e-05, -4.3390740488297496e-06, -4.3390740488297031e-06, -4.3390740488296895e-06, -3.4712592390637814e-05, -3.4712592390637801e-05, -3.4712592390637814e-05, -3.4712592390637801e-05, -4.3390740488297479e-06, -4.3390740488297446e-06, -4.3390740488297479e-06, -3.4712592390637652e-05, -4.3390740488297595e-05, -8.6781480976595487e-05, -6.9425184781276753e-05, -6.9425184781275859e-05, -3.4712592390637665e-05, -0.00010413777717191372, -1.3017222146489215e-05, 0.017295549158635525, -6.942518478127594e-05, -0.0003124133315157447, -4.3390740488297166e-06, -4.3390740488297335e-06, -0.00010847685122074372, -6.9425184781275791e-05, -3.4712592390637916e-05, -3.0373518341808537e-05, -1.7356296195319104e-05, -8.6781480976594332e-06, -0.00031241333151574481, -8.6781480976594298e-06, -1.7356296195319039e-05, -1.7356296195319046e-05, -0.00031241333151574497, -3.4712592390638024e-05, -4.3390740488297352e-06, -3.4712592390637895e-05, -4.3390740488297479e-06, -3.4712592390637956e-05, -4.3390740488297757e-05, -1.3017222146489203e-05, -3.4712592390637916e-05, -6.5086110732446697e-05, -4.3390740488297683e-06, -3.4712592390638038e-05, -8.6781480976593756e-06, -8.678148097659379e-06, -8.6781480976593959e-06, -4.3390740488297268e-06, -2.6034444292978471e-05, -1.3017222146489218e-05, -3.4712592390638011e-05, -3.4712592390637956e-05, -6.9425184781276076e-05, -0.00011281592526957417, -9.9798703123084789e-05, -4.3390740488297683e-06, -6.9425184781276672e-05, -3.4712592390637719e-05, -2.6034444292978457e-05, -8.6781480976595467e-06, -4.3390740488297446e-06, -4.3390740488297047e-06, -0.00034712592390638211, -0.00034712592390638244, -0.00070292999591042805, -0.00034712592390638244, -0.00034712592390638233, -1.7356296195318758e-05, -8.6781480976595603e-06, -3.4712592390638349e-05, -3.9051666439467837e-05, -1.7356296195318758e-05, -4.7729814537127834e-05, -4.3390740488297496e-06, -4.3390740488297649e-06, -6.9425184781276482e-05, -3.4712592390638024e-05, -3.4712592390637956e-05, -4.3390740488297319e-06, -4.3390740488297149e-06, -1.73562961953189e-05, -1.7356296195318887e-05, -6.9425184781276699e-05, -3.4712592390637692e-05, -4.3390740488297547e-06, -0.00070292999591042046, -3.4712592390637984e-05, -3.4712592390637997e-05, -4.3390740488297234e-06, -1.7356296195318887e-05, -1.7356296195318894e-05, -8.6781480976595332e-06, -8.6781480976595298e-06, -1.3017222146489218e-05, -4.3390740488297132e-06, -8.6781480976595298e-06, -8.6781480976595332e-06, -4.3390740488297429e-06, -4.3390740488297132e-06, -1.7356296195319107e-05, -5.2068888585956996e-05, -3.4712592390638038e-05, -4.3390740488297496e-06, -4.3390740488297649e-06, -7.8103332878935876e-05, -4.3390740488297268e-06, -1.7356296195319202e-05, -8.6781480976595738e-06, -6.9425184781276211e-05, -6.9425184781276157e-05, -2.1695370244148865e-05, -1.7356296195318894e-05, -8.6781480976596009e-06, -2.6034444292978511e-05, -0.00036882129415053062, -4.3390740488297369e-06, -1.7356296195318894e-05, -1.7356296195318887e-05, -6.9425184781276076e-05, -6.9425184781276292e-05, -1.7356296195318921e-05, -1.7356296195318992e-05, -1.7356296195318992e-05, -4.3390740488297496e-06, -0.00019959740624616828, -4.3390740488297839e-05, -4.3390740488297098e-06, -3.4712592390637997e-05, -3.4712592390638349e-05, -3.4712592390637984e-05, -6.9425184781276292e-05, -3.4712592390638228e-05, -6.9425184781276076e-05, -3.4712592390638349e-05, -3.4712592390638349e-05, -0.0013320957329907351, -3.4712592390637733e-05, -0.00086781480976595607, -3.4712592390637984e-05, -8.6781480976594264e-06, -0.0002603444429297882, -5.2068888585956901e-05, -2.1695370244148906e-05, -0.0002603444429297856, -4.3390740488297598e-06, -3.4712592390637801e-05, -3.4712592390637814e-05, -0.00070292999591042046, -3.4712592390638011e-05, -3.4712592390638024e-05, -0.00099364795718201275, -1.3017222146489191e-05, -0.00086781480976595563, -3.4712592390637841e-05, -3.4712592390637828e-05, -4.3390740488297412e-06, -3.4712592390637828e-05, -3.4712592390637787e-05, -4.339074048829753e-06, -6.9425184781276157e-05, -6.9425184781276211e-05, -8.6781480976593959e-06, -1.7356296195318894e-05, -1.7356296195318887e-05, -3.4712592390637719e-05, -3.4712592390637706e-05, -0.00070292999591042805, -3.4712592390637956e-05, -3.4712592390638011e-05, -0.00011715499931840463, -0.00041655110868765499, -3.4712592390637814e-05, -0.00030807425746691235, -5.2068888585956765e-05, -5.2068888585956779e-05, -3.4712592390637692e-05, -3.4712592390637584e-05, -4.3390740488297608e-05, -3.471259239063753e-05, -4.3390740488297656e-05, -9.1120555025425218e-05, -3.4712592390638024e-05, -2.1695370244148831e-05, -9.9798703123084586e-05, -3.4712592390637997e-05, -5.2068888585956901e-05, -1.3017222146489218e-05, -2.1695370244148899e-05, -8.6781480976593926e-06, -4.3390740488297132e-06, -4.3390740488297352e-06, -3.4712592390637516e-05, -5.2068888585956847e-05, -2.6034444292978457e-05, -1.7356296195319012e-05, -3.4712592390637665e-05, -3.4712592390638336e-05, -3.4712592390638349e-05, -6.9425184781276509e-05, -3.4712592390638119e-05, -1.7356296195318887e-05, -6.9425184781276265e-05, -3.4712592390638106e-05, -1.7356296195318894e-05, -3.4712592390638349e-05, -4.3390740488297598e-06, -3.4712592390638092e-05, -3.4712592390638119e-05, -6.9425184781275411e-05, -0.00010413777717191361, -3.4712592390637929e-05, -6.9425184781275249e-05, -6.9425184781275439e-05, -3.4712592390638106e-05, -3.4712592390638092e-05, -3.4712592390637997e-05, -3.4712592390638038e-05, -3.9051666439468108e-05, -0.00014752851766021064, -8.6781480976596145e-06, -3.471259239063757e-05, -3.4712592390638119e-05, -3.9051666439468108e-05, -0.00011281592526957507, -3.4712592390637692e-05, -3.4712592390637895e-05, -3.4712592390637543e-05, -1.7356296195318894e-05, -1.7356296195318887e-05, -4.3390740488297166e-06, -4.3390740488296895e-06, -4.3390740488297115e-06, -8.6781480976594535e-06, -7.3764258830106593e-05, -0.0001301722214648928, -5.2068888585956928e-05, -2.6034444292978471e-05, -4.3390740488297369e-06, -1.7356296195318907e-05, -6.942518478127594e-05, -0.00010413777717191354, -3.4712592390637584e-05, -1.7356296195318907e-05, -6.9425184781275791e-05, -6.9425184781275859e-05, -1.7356296195318907e-05, -5.2068888585956901e-05, -3.4712592390638011e-05, -4.3390740488296963e-06, -8.6781480976596077e-06, -1.7356296195318907e-05, -1.7356296195318921e-05, -3.9051666439468019e-05, -2.1695370244148865e-05, -3.4712592390637733e-05, -6.9425184781276455e-05, -0.00031241333151574177, -1.7356296195318792e-05, -4.3390740488297479e-06, -0.00026034444292978776, -3.4712592390637916e-05, -0.00020827555434382758, -0.00020827555434382749, -0.00021695370244148883, -0.00020827555434382758, -1.7356296195318799e-05, -1.7356296195318799e-05, -3.4712592390637895e-05, -3.4712592390637956e-05, -1.7356296195318971e-05, -1.7356296195318978e-05, -3.4712592390637624e-05, -4.339074048829698e-06, -3.4712592390637611e-05, -4.3390740488297395e-06, -4.33907404882972e-06, -0.00030373518341808358, -1.7356296195318978e-05, -1.7356296195318971e-05, -0.00026468351697861588, -8.678148097659479e-06, -0.00031241333151574497, -0.00031241333151574481, -3.4712592390637929e-05, -4.3390740488297412e-06, -3.4712592390637882e-05, -0.0003124133315157447, 0.017364974343416793, -3.4712592390637956e-05, -3.4712592390638011e-05, -8.6781480976595061e-06, -8.6781480976594332e-06, -6.9425184781276238e-05, -3.4712592390637997e-05, -3.471259239063797e-05, -1.3017222146489208e-05, -6.9425184781276238e-05, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6905987090531811e-05, -9.6423867751772085e-05, -2.4105966937943102e-06, -4.8211933875886133e-07, -1.4463580162765942e-06, -4.821193387588651e-06, -3.8569547100709303e-05, -9.6423867751772287e-07, -4.4354979165815469e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100709303e-05, -3.8569547100709303e-05, -3.8569547100708898e-06, -0.00010944108989826124, -9.6423867751772245e-07, -9.6423867751773372e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708889e-06, -2.4105966937943102e-06, -1.4463580162765952e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813830155e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.3390740488297285e-06, -3.8569547100708915e-06, -7.2317900813829892e-06, -9.6423867751772266e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.713909420141783e-06, -4.82119338758864e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -8.1960287589006183e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -1.5427818840283556e-05, -1.2052983468971541e-05, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.8211933875886417e-06, -5.3033127263474592e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -3.8569547100708915e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212752e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976595874e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038651814e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -4.049802445574463e-05, -3.8569547100708915e-06, -4.2426501810779728e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709066e-05, -7.7139094201417813e-06, -3.9051666439468074e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417796e-06, -1.9284773550354453e-06, -4.049802445574463e-05, -3.8569547100709303e-05, -3.8569547100709039e-05, -3.8569547100709133e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886578e-06, -9.6423867751772918e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -3.8569547100708906e-06, -1.1570864130212763e-05, -1.4463580162766166e-06, -4.242650181078006e-05, -7.7139094201417813e-06, -3.4712592390638024e-05, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.205298346897148e-05, -7.713909420141783e-06, -3.8569547100708915e-06, -3.3748353713120401e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.4712592390638024e-05, -9.6423867751772266e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390638011e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886374e-06, -1.4463580162765952e-06, -3.8569547100708915e-06, -7.2317900813829689e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325532057e-06, -1.4463580162766132e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -1.2535102807730336e-05, -1.1088744791453872e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532124e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709133e-05, -3.8569547100709039e-05, -7.8103332878936391e-05, -3.8569547100709039e-05, -3.8569547100709066e-05, -1.9284773550354449e-06, -9.6423867751772287e-07, -3.8569547100708889e-06, -4.33907404882972e-06, -1.9284773550354449e-06, -5.3033127263474888e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -7.713909420141783e-06, -3.8569547100708915e-06, 0.0019602972313935386, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936215e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162765952e-06, -4.8211933875886133e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -5.7854320651063842e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976594925e-06, -4.8211933875886144e-07, -1.928477355035444e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -7.713909420141783e-06, -2.4105966937943208e-06, -1.9284773550354457e-06, -9.6423867751772266e-07, -2.8927160325531896e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.2177489582907656e-05, -4.8211933875886205e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00014801063699897203, -3.8569547100708906e-06, -9.6423867751772722e-05, -3.8569547100708915e-06, -9.6423867751772266e-07, -2.8927160325531692e-05, -5.7854320651063825e-06, -2.410596693794317e-06, -2.8927160325532021e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936215e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -0.00011040532857577942, -1.4463580162765944e-06, -9.6423867751772803e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936391e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.3017222146489225e-05, -4.628345652085106e-05, -3.8569547100708915e-06, -3.4230473051878942e-05, -5.7854320651063792e-06, -5.7854320651063792e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886595e-06, -3.8569547100708898e-06, -4.8211933875886493e-06, -1.0124506113936151e-05, -3.8569547100708915e-06, -2.4105966937943272e-06, -1.1088744791453821e-05, -3.8569547100708915e-06, -5.7854320651063825e-06, -1.4463580162766136e-06, -2.410596693794317e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063199e-06, -2.8927160325531633e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.1570864130212762e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.3390740488298055e-06, -1.6392057517801321e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488297496e-06, -1.2535102807730481e-05, -3.8569547100708906e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -8.1960287589005691e-06, -1.4463580162765853e-05, -5.7854320651063825e-06, -2.8927160325532057e-06, -4.8211933875886144e-07, -1.9284773550354457e-06, -7.7139094201417813e-06, -1.1570864130212757e-05, -3.8569547100708898e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -5.7854320651063817e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.3390740488297971e-06, -2.4105966937943238e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.471259239063797e-05, -1.9284773550354453e-06, -4.8211933875886144e-07, -2.8927160325531692e-05, -3.8569547100708915e-06, -2.3141728260425866e-05, -2.3141728260425517e-05, -2.4105966937943082e-05, -2.3141728260425866e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.3748353713120408e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.9409279664290657e-05, -9.6423867751772266e-07, -3.4712592390638011e-05, -3.4712592390638024e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.4712592390638024e-05, -3.4712592390637956e-05, 0.0019602972313935386, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765952e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6905987090531703e-05, -9.6423867751771976e-05, -2.4105966937943111e-06, -4.8211933875886133e-07, -1.4463580162765929e-06, -4.8211933875886527e-06, -3.856954710070933e-05, -9.6423867751772287e-07, -4.4354979165815523e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.856954710070933e-05, -3.856954710070933e-05, -3.8569547100708898e-06, -0.00010944108989826135, -9.6423867751772245e-07, -9.6423867751773264e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708889e-06, -2.4105966937943111e-06, -1.4463580162765939e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813830087e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.3390740488297335e-06, -3.8569547100708915e-06, -7.2317900813829841e-06, -9.6423867751772266e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886425e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -8.1960287589006233e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -1.5427818840283556e-05, -1.2052983468971528e-05, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.8211933875886442e-06, -5.3033127263474575e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -3.8569547100708915e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212741e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976595569e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038651916e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -4.049802445574463e-05, -3.8569547100708915e-06, -4.2426501810779714e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709086e-05, -7.7139094201417813e-06, -3.9051666439468101e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417796e-06, -1.9284773550354453e-06, -4.049802445574463e-05, -3.856954710070933e-05, -3.8569547100709052e-05, -3.8569547100709154e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886595e-06, -9.6423867751772986e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -3.8569547100708906e-06, -1.1570864130212753e-05, -1.4463580162766149e-06, -4.2426501810780046e-05, -7.7139094201417813e-06, -3.4712592390638078e-05, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.20529834689715e-05, -7.713909420141783e-06, -3.8569547100708915e-06, -3.3748353713120443e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.4712592390638065e-05, -9.6423867751772266e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390638065e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886391e-06, -1.4463580162765939e-06, -3.8569547100708915e-06, -7.2317900813829621e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.892716032553204e-06, -1.4463580162766119e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, -1.2535102807730349e-05, -1.1088744791453887e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532099e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709154e-05, -3.8569547100709052e-05, -7.8103332878936418e-05, -3.8569547100709052e-05, -3.8569547100709086e-05, -1.9284773550354449e-06, -9.6423867751772287e-07, -3.8569547100708889e-06, -4.3390740488297251e-06, -1.9284773550354449e-06, -5.3033127263474871e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, 0.0019564402766834681, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936256e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162765939e-06, -4.8211933875886133e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -5.7854320651063792e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976595061e-06, -4.8211933875886144e-07, -1.928477355035444e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -7.713909420141783e-06, -2.4105966937943217e-06, -1.9284773550354457e-06, -9.6423867751772266e-07, -2.892716032553187e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.2177489582907677e-05, -4.8211933875886222e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00014801063699897184, -3.8569547100708906e-06, -9.64238677517726e-05, -3.8569547100708915e-06, -9.6423867751772266e-07, -2.8927160325531665e-05, -5.7854320651063775e-06, -2.4105966937943187e-06, -2.8927160325531994e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936256e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -0.00011040532857577952, -1.4463580162765931e-06, -9.6423867751772695e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936418e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.3017222146489225e-05, -4.628345652085102e-05, -3.8569547100708915e-06, -3.4230473051878996e-05, -5.7854320651063842e-06, -5.7854320651063842e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886629e-06, -3.8569547100708898e-06, -4.821193387588651e-06, -1.0124506113936151e-05, -3.8569547100708915e-06, -2.4105966937943289e-06, -1.1088744791453835e-05, -3.8569547100708915e-06, -5.7854320651063775e-06, -1.4463580162766124e-06, -2.4105966937943187e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063351e-06, -2.8927160325531582e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.1570864130212748e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.3390740488297903e-06, -1.6392057517801308e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488297547e-06, -1.2535102807730481e-05, -3.8569547100708906e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -8.1960287589005742e-06, -1.4463580162765839e-05, -5.7854320651063775e-06, -2.892716032553204e-06, -4.8211933875886144e-07, -1.9284773550354457e-06, -7.7139094201417813e-06, -1.1570864130212746e-05, -3.8569547100708898e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -5.7854320651063766e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.3390740488297818e-06, -2.4105966937943246e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.4712592390638024e-05, -1.9284773550354453e-06, -4.8211933875886144e-07, -2.8927160325531665e-05, -3.8569547100708915e-06, -2.3141728260425845e-05, -2.3141728260425496e-05, -2.4105966937943055e-05, -2.3141728260425845e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.3748353713120462e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.9409279664290629e-05, -9.6423867751772266e-07, -3.4712592390638065e-05, -3.4712592390638065e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.4712592390638078e-05, -3.4712592390638011e-05, -3.8569547100708915e-06, 0.0019602972313935386, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.4463580162765965e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -2.4226496772632926e-05, -2.4105966937942987e-05, -6.0264917344857693e-07, -1.2052983468971533e-07, -3.6158950406914774e-07, -1.2052983468971615e-06, -9.6423867751773189e-06, -2.4105966937943066e-07, -1.1088744791453886e-05, -1.2052983468971536e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751773189e-06, -9.6423867751773189e-06, -9.6423867751772245e-07, -2.736027247456535e-05, -2.4105966937943061e-07, -2.4105966937943302e-05, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -1.2052983468971533e-07, -1.2052983468971536e-07, -9.6423867751772266e-07, -9.6423867751772287e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -9.6423867751772224e-07, -6.0264917344857693e-07, -3.6158950406914796e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971533e-07, -1.8079475203457513e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.0847685122074387e-06, -9.6423867751772287e-07, -1.8079475203457452e-06, -2.4105966937943061e-07, -1.2052983468971531e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943061e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -1.9284773550354457e-06, -1.2052983468971589e-06, -9.6423867751772266e-07, -1.9284773550354453e-06, -1.2052983468971533e-07, -9.6423867751772266e-07, -2.0490071897251563e-06, -9.6423867751772266e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -3.8569547100708889e-06, -3.013245867242881e-06, -9.6423867751772266e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -1.2052983468971594e-06, -1.3258281815868673e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772266e-07, -1.2052983468971528e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, -9.6423867751772245e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971533e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.2052983468971533e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -1.2052983468971533e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772287e-07, -9.6423867751772245e-07, -2.892716032553182e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.1695370244148723e-06, -4.8211933875886144e-07, -1.2052983468971531e-07, -2.4105966937943072e-07, -1.5668878509663123e-06, -9.6423867751772266e-07, -1.9284773550354457e-06, -1.0124506113936154e-05, -9.6423867751772266e-07, -1.0606625452694935e-05, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -9.6423867751772596e-06, -1.9284773550354449e-06, -9.7629166098670117e-06, -1.2052983468971533e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -1.0124506113936151e-05, -9.6423867751773189e-06, -9.6423867751772512e-06, -9.6423867751772766e-06, -1.2052983468971533e-07, -4.8211933875886122e-07, -1.2052983468971536e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -9.6423867751772266e-07, -1.2052983468971606e-06, -2.4105966937943204e-06, -1.9284773550354449e-06, -1.9284773550354453e-06, -9.6423867751772266e-07, -2.8927160325531845e-06, -3.615895040691533e-07, -1.060662545269502e-05, -1.9284773550354453e-06, -8.678148097659523e-06, -1.2052983468971533e-07, -1.2052983468971536e-07, -3.0132458672428912e-06, -1.9284773550354457e-06, -9.6423867751772266e-07, -8.4370884282801574e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -8.678148097659523e-06, -2.4105966937943061e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976595196e-06, -9.6423867751772287e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -1.2052983468971555e-06, -3.6158950406914796e-07, -9.6423867751772287e-07, -1.8079475203457397e-06, -1.2052983468971536e-07, -9.6423867751772287e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971536e-07, -7.2317900813829994e-07, -3.6158950406915246e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -3.1337757019326153e-06, -2.7721861978634719e-06, -1.2052983468971536e-07, -1.9284773550354453e-06, -9.6423867751772266e-07, -7.2317900813830142e-07, -2.4105966937943072e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -9.6423867751772766e-06, -9.6423867751772512e-06, -1.9525833219734078e-05, -9.6423867751772512e-06, -9.6423867751772596e-06, -4.8211933875886122e-07, -2.4105966937943066e-07, -9.6423867751772224e-07, -1.0847685122074317e-06, -4.8211933875886122e-07, -1.3258281815868726e-06, -1.2052983468971533e-07, -1.2052983468971536e-07, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -9.6423867751772266e-07, -1.2052983468971536e-07, -1.9525833219734037e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971533e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -3.6158950406914796e-07, -1.2052983468971531e-07, -2.4105966937943072e-07, -2.4105966937943072e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, 0.00049055642718714315, -1.4463580162765927e-06, -9.6423867751772287e-07, -1.2052983468971536e-07, -1.2052983468971536e-07, -2.1695370244148782e-06, -1.2052983468971533e-07, -4.8211933875886101e-07, -2.4105966937943066e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -6.0264917344857968e-07, -4.8211933875886133e-07, -2.4105966937943066e-07, -7.231790081382957e-07, -1.0245035948625833e-05, -1.2052983468971536e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971536e-07, -5.5443723957269175e-06, -1.2052983468971541e-06, -1.2052983468971533e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -9.6423867751772224e-07, -1.9284773550354453e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -3.7002659249742933e-05, -9.6423867751772266e-07, -2.4105966937943136e-05, -9.6423867751772287e-07, -2.4105966937943061e-07, -7.231790081382913e-06, -1.4463580162765825e-06, -6.0264917344857883e-07, -7.2317900813829943e-06, -1.2052983468971536e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9525833219734037e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.7601332143944861e-05, -3.6158950406914774e-07, -2.4105966937943157e-05, -9.6423867751772266e-07, -9.6423867751772287e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971536e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9525833219734078e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.2543055366223287e-06, -1.1570864130212731e-05, -9.6423867751772287e-07, -8.5576182629697523e-06, -1.446358016276591e-06, -1.446358016276591e-06, -9.6423867751772266e-07, -9.6423867751772245e-07, -1.2052983468971615e-06, -9.6423867751772245e-07, -1.2052983468971611e-06, -2.5311265284840369e-06, -9.6423867751772287e-07, -6.0264917344857989e-07, -2.7721861978634587e-06, -9.6423867751772266e-07, -1.4463580162765825e-06, -3.615895040691488e-07, -6.0264917344857883e-07, -2.4105966937943061e-07, -1.2052983468971533e-07, -1.2052983468971536e-07, -9.6423867751772245e-07, -1.4463580162765918e-06, -7.2317900813830121e-07, -4.8211933875886144e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.9284773550354449e-06, -9.6423867751772287e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -9.6423867751772287e-07, -4.8211933875886133e-07, -9.6423867751772224e-07, -1.2052983468971536e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.9284773550354449e-06, -2.8927160325531836e-06, -9.6423867751772287e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.0847685122074395e-06, -4.0980143794503354e-06, -2.4105966937943056e-07, -9.6423867751772245e-07, -9.6423867751772287e-07, -1.0847685122074476e-06, -3.1337757019326187e-06, -9.6423867751772245e-07, -9.6423867751772287e-07, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -1.2052983468971533e-07, -2.4105966937943072e-07, -2.049007189725144e-06, -3.6158950406914573e-06, -1.4463580162765855e-06, -7.2317900813829994e-07, -1.2052983468971536e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -2.8927160325531832e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -4.8211933875886133e-07, -1.4463580162765922e-06, -9.6423867751772266e-07, -1.2052983468971531e-07, -2.4105966937943061e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -1.0847685122074374e-06, -6.0264917344858053e-07, -9.6423867751772266e-07, -1.9284773550354457e-06, -8.6781480976595128e-06, -4.8211933875886122e-07, -1.2052983468971536e-07, -7.231790081382913e-06, -9.6423867751772266e-07, -5.7854320651064537e-06, -5.7854320651063673e-06, -6.0264917344857612e-06, -5.7854320651064537e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -1.2052983468971536e-07, -1.2052983468971533e-07, -8.4370884282801155e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -7.3523199160726557e-06, -2.4105966937943061e-07, -8.6781480976595196e-06, -8.678148097659523e-06, -9.6423867751772266e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -8.678148097659523e-06, -8.6781480976595061e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, 0.00049079748685652272, -2.4105966937943066e-07, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -3.6158950406914722e-07, -1.9284773550354457e-06, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -2.4226496772633034e-05, -2.4105966937943102e-05, -6.0264917344857989e-07, -1.2052983468971531e-07, -3.615895040691506e-07, -1.2052983468971674e-06, -9.6423867751773664e-06, -2.4105966937943061e-07, -1.108874479145382e-05, -1.2052983468971533e-07, -1.9284773550354445e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751773664e-06, -9.6423867751773664e-06, -9.6423867751772224e-07, -2.7360272474565228e-05, -2.4105966937943051e-07, -2.4105966937943424e-05, -1.9284773550354445e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943051e-07, -2.4105966937943051e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -9.6423867751772224e-07, -6.0264917344857989e-07, -3.6158950406915081e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -1.2052983468971531e-07, -1.8079475203457606e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.0847685122074296e-06, -9.6423867751772266e-07, -1.8079475203457543e-06, -2.4105966937943056e-07, -1.2052983468971528e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -1.9284773550354449e-06, -1.2052983468971649e-06, -9.6423867751772266e-07, -1.9284773550354453e-06, -1.2052983468971533e-07, -9.6423867751772245e-07, -2.0490071897251469e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -1.9284773550354449e-06, -3.8569547100708881e-06, -3.0132458672428954e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.2052983468971653e-06, -1.3258281815868673e-06, -4.8211933875886122e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.4105966937943061e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971525e-07, -9.6423867751772245e-07, -2.4105966937943066e-07, -9.6423867751772245e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971531e-07, -1.9284773550354445e-06, -1.9284773550354445e-06, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772224e-07, -9.6423867751772224e-07, -9.6423867751772266e-07, -9.6423867751772224e-07, -2.8927160325532057e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772266e-07, -9.6423867751772245e-07, -1.9284773550354453e-06, -4.8211933875886133e-07, -2.1695370244148541e-06, -4.8211933875886133e-07, -1.2052983468971531e-07, -2.4105966937943066e-07, -1.5668878509663148e-06, -9.6423867751772266e-07, -1.9284773550354453e-06, -1.0124506113936161e-05, -9.6423867751772245e-07, -1.0606625452694908e-05, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354445e-06, -9.6423867751773071e-06, -1.9284773550354449e-06, -9.7629166098670455e-06, -1.2052983468971531e-07, -1.9284773550354449e-06, -1.9284773550354445e-06, -4.8211933875886112e-07, -1.0124506113936158e-05, -9.6423867751773664e-06, -9.6423867751772986e-06, -9.642386775177324e-06, -1.2052983468971533e-07, -4.8211933875886101e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -1.2052983468971525e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -9.6423867751772266e-07, -1.2052983468971606e-06, -2.4105966937943323e-06, -1.9284773550354453e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -2.8927160325532074e-06, -3.6158950406915616e-07, -1.0606625452694993e-05, -1.9284773550354449e-06, -8.6781480976594502e-06, -1.2052983468971533e-07, -1.2052983468971533e-07, -3.0132458672429052e-06, -1.9284773550354453e-06, -9.6423867751772245e-07, 0.00049019483768307417, -4.8211933875886112e-07, -2.4105966937943056e-07, -8.6781480976594502e-06, -2.4105966937943056e-07, -4.8211933875886133e-07, -4.8211933875886133e-07, -8.6781480976594468e-06, -9.6423867751772266e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -1.2052983468971531e-07, -9.6423867751772266e-07, -1.2052983468971598e-06, -3.6158950406915092e-07, -9.6423867751772266e-07, -1.8079475203457486e-06, -1.2052983468971533e-07, -9.6423867751772266e-07, -2.4105966937943051e-07, -2.4105966937943051e-07, -2.4105966937943056e-07, -1.2052983468971533e-07, -7.2317900813830576e-07, -3.6158950406915537e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -3.1337757019326203e-06, -2.7721861978634562e-06, -1.2052983468971533e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -7.2317900813830745e-07, -2.4105966937943061e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -9.642386775177324e-06, -9.6423867751772986e-06, -1.9525833219734152e-05, -9.6423867751772986e-06, -9.6423867751773071e-06, -4.8211933875886122e-07, -2.4105966937943061e-07, -9.6423867751772224e-07, -1.0847685122074228e-06, -4.8211933875886122e-07, -1.3258281815868692e-06, -1.2052983468971531e-07, -1.2052983468971533e-07, -1.9284773550354453e-06, -9.6423867751772245e-07, -9.6423867751772266e-07, -1.2052983468971533e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -9.6423867751772245e-07, -1.2052983468971533e-07, -1.9525833219734108e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -3.6158950406915081e-07, -1.2052983468971528e-07, -2.4105966937943061e-07, -2.4105966937943061e-07, -1.2052983468971531e-07, -1.2052983468971533e-07, -4.8211933875886122e-07, -1.4463580162766037e-06, -9.6423867751772245e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -2.1695370244148583e-06, -1.2052983468971531e-07, -4.8211933875886101e-07, -2.4105966937943061e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -6.0264917344858264e-07, -4.8211933875886122e-07, -2.4105966937943056e-07, -7.2317900813830163e-07, -1.0245035948625833e-05, -1.2052983468971533e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971533e-07, -5.5443723957268836e-06, -1.20529834689716e-06, -1.2052983468971533e-07, -9.6423867751772245e-07, -9.6423867751772202e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -9.6423867751772202e-07, -1.9284773550354449e-06, -9.6423867751772202e-07, -9.6423867751772202e-07, -3.7002659249743225e-05, -9.6423867751772245e-07, -2.4105966937943255e-05, -9.6423867751772266e-07, -2.4105966937943056e-07, -7.2317900813829502e-06, -1.4463580162765918e-06, -6.026491734485818e-07, -7.2317900813830307e-06, -1.2052983468971533e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9525833219734108e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -2.7601332143944718e-05, -3.6158950406915081e-07, -2.4105966937943275e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.2052983468971533e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -2.4105966937943056e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.9525833219734152e-05, -9.6423867751772245e-07, -9.6423867751772245e-07, -3.254305536622377e-06, -1.1570864130212829e-05, -9.6423867751772245e-07, -8.5576182629696863e-06, -1.4463580162766028e-06, -1.4463580162766028e-06, -9.6423867751772245e-07, -9.6423867751772224e-07, -1.2052983468971611e-06, -9.6423867751772224e-07, -1.205298346897167e-06, -2.5311265284840386e-06, -9.6423867751772266e-07, -6.0264917344857989e-07, -2.7721861978634418e-06, -9.6423867751772245e-07, -1.4463580162765901e-06, -3.6158950406914282e-07, -6.026491734485818e-07, -2.4105966937943051e-07, -1.2052983468971533e-07, -1.2052983468971533e-07, -9.6423867751772224e-07, -1.4463580162766033e-06, -7.2317900813830703e-07, -4.8211933875886133e-07, -9.6423867751772245e-07, -9.6423867751772224e-07, -9.6423867751772202e-07, -1.928477355035444e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -1.9284773550354445e-06, -9.6423867751772266e-07, -4.8211933875886122e-07, -9.6423867751772202e-07, -1.2052983468971533e-07, -9.6423867751772266e-07, -9.6423867751772266e-07, -1.9284773550354445e-06, -2.8927160325532065e-06, -9.6423867751772266e-07, -1.9284773550354445e-06, -1.928477355035444e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -1.0847685122074304e-06, -4.0980143794503184e-06, -2.4105966937943056e-07, -9.6423867751772245e-07, -9.6423867751772266e-07, -1.0847685122074599e-06, -3.1337757019326237e-06, -9.6423867751772224e-07, -9.6423867751772266e-07, -9.6423867751772224e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -1.2052983468971531e-07, -1.2052983468971525e-07, -1.2052983468971533e-07, -2.4105966937943066e-07, -2.0490071897251347e-06, -3.6158950406914751e-06, -1.4463580162765969e-06, -7.2317900813830576e-07, -1.2052983468971533e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -2.8927160325532065e-06, -9.6423867751772245e-07, -4.8211933875886122e-07, -1.9284773550354449e-06, -1.9284773550354449e-06, -4.8211933875886122e-07, -1.4463580162766033e-06, -9.6423867751772245e-07, -1.2052983468971528e-07, -2.4105966937943061e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -1.0847685122074283e-06, -6.0264917344858349e-07, -9.6423867751772245e-07, -1.9284773550354449e-06, -8.67814809765944e-06, -4.8211933875886112e-07, -1.2052983468971533e-07, -7.2317900813829485e-06, -9.6423867751772245e-07, -5.7854320651064994e-06, -5.785432065106413e-06, -6.0264917344857883e-06, -5.7854320651064994e-06, -4.8211933875886112e-07, -4.8211933875886112e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.2052983468971528e-07, -9.6423867751772245e-07, -1.2052983468971531e-07, -1.2052983468971531e-07, -8.4370884282800613e-06, -4.8211933875886122e-07, -4.8211933875886122e-07, -7.3523199160726811e-06, -2.4105966937943061e-07, -8.6781480976594468e-06, -8.6781480976594502e-06, -9.6423867751772245e-07, -1.2052983468971531e-07, -9.6423867751772245e-07, -8.6781480976594502e-06, -8.6781480976594332e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -2.4105966937943066e-07, 0.00049079748685652272, -1.9284773550354453e-06, -9.6423867751772266e-07, -9.6423867751772266e-07, -3.6158950406915029e-07, -1.9284773550354453e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772266e-07, -9.6423867751772287e-07, -0.00019381197418106313, -0.00019284773550354352, -4.8211933875886069e-06, -9.6423867751772266e-07, -2.8927160325531739e-06, -9.6423867751772749e-06, -7.7139094201418416e-05, -1.9284773550354457e-06, -8.8709958331631249e-05, -9.6423867751772287e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -7.713909420141783e-06, -7.713909420141783e-06, -7.7139094201418416e-05, -7.7139094201418416e-05, -7.7139094201417796e-06, -0.0002188821797965231, -1.9284773550354449e-06, -0.00019284773550354609, -1.5427818840283559e-05, -7.7139094201417813e-06, -7.7139094201417796e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.713909420141783e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -7.7139094201417779e-06, -4.8211933875886069e-06, -2.892716032553176e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -1.4463580162765997e-05, -7.713909420141783e-06, -7.713909420141783e-06, -8.6781480976594993e-06, -7.713909420141783e-06, -1.4463580162765945e-05, -1.9284773550354453e-06, -9.6423867751772245e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772266e-07, -9.6423867751772287e-07, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -1.5427818840283566e-05, -9.6423867751772545e-06, -7.713909420141783e-06, -1.5427818840283566e-05, -9.6423867751772266e-07, -7.713909420141783e-06, -1.639205751780127e-05, -7.7139094201417813e-06, -7.713909420141783e-06, -1.5427818840283563e-05, -3.0855637680567112e-05, -2.4105966937943001e-05, -7.713909420141783e-06, -1.5427818840283563e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -7.713909420141783e-06, -9.6423867751772562e-06, -1.0606625452694935e-05, -3.8569547100708898e-06, -1.5427818840283559e-05, -7.713909420141783e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -7.713909420141783e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -9.6423867751772287e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772266e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -7.7139094201417796e-06, -2.3141728260425388e-05, -7.7139094201417796e-06, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -7.713909420141783e-06, -1.5427818840283566e-05, -3.8569547100708915e-06, -1.7356296195319026e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.2535102807730464e-05, -7.713909420141783e-06, -1.5427818840283566e-05, -8.0996048911489179e-05, -7.713909420141783e-06, -8.4853003621559564e-05, -7.713909420141783e-06, -7.713909420141783e-06, -1.5427818840283559e-05, -7.7139094201417928e-05, -1.5427818840283563e-05, -7.8103332878935985e-05, -9.6423867751772287e-07, -1.5427818840283563e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -8.0996048911489152e-05, -7.7139094201418416e-05, -7.713909420141786e-05, -7.7139094201418063e-05, -9.6423867751772266e-07, -3.8569547100708898e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -7.713909420141783e-06, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -7.7139094201417813e-06, -9.6423867751772884e-06, -1.9284773550354529e-05, -1.5427818840283559e-05, -1.5427818840283566e-05, -7.7139094201417813e-06, -2.3141728260425412e-05, -2.8927160325532175e-06, -8.4853003621560241e-05, -1.5427818840283563e-05, -6.9425184781276374e-05, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943069e-05, -1.5427818840283566e-05, -7.713909420141783e-06, -6.7496707426240938e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -6.9425184781276374e-05, -1.9284773550354453e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -6.9425184781276347e-05, -7.713909420141783e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -9.6423867751772512e-06, -2.892716032553176e-06, -7.713909420141783e-06, -1.4463580162765904e-05, -9.6423867751772287e-07, -7.713909420141783e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -5.7854320651063842e-06, -2.8927160325532116e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.5427818840283563e-05, -2.5070205615460854e-05, -2.2177489582907822e-05, -9.6423867751772287e-07, -1.5427818840283563e-05, -7.7139094201417813e-06, -5.7854320651063961e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.7139094201418063e-05, -7.713909420141786e-05, -0.0001562066657578724, -7.713909420141786e-05, -7.7139094201417928e-05, -3.8569547100708898e-06, -1.9284773550354457e-06, -7.7139094201417779e-06, -8.6781480976594823e-06, -3.8569547100708898e-06, -1.0606625452694995e-05, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.5427818840283566e-05, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.5427818840283559e-05, -7.7139094201417813e-06, -9.6423867751772287e-07, -0.00015620666575787208, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.892716032553176e-06, -9.6423867751772266e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -3.8569547100708898e-06, -1.1570864130212711e-05, -7.713909420141783e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.7356296195319066e-05, -9.6423867751772287e-07, -3.8569547100708881e-06, -1.9284773550354457e-06, -1.5427818840283566e-05, -1.5427818840283566e-05, -4.8211933875886281e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -5.7854320651063504e-06, -8.1960287589006667e-05, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.5427818840283566e-05, -1.5427818840283566e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -4.4354979165815475e-05, -9.6423867751772139e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -1.5427818840283566e-05, -7.7139094201417796e-06, -1.5427818840283566e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00029602127399794281, -7.7139094201417813e-06, -0.00019284773550354477, -7.713909420141783e-06, -1.9284773550354453e-06, -5.7854320651063249e-05, -1.1570864130212707e-05, -4.8211933875886205e-06, -5.78543206510639e-05, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -0.00015620666575787208, -7.713909420141783e-06, -7.713909420141783e-06, -0.00022081065715155943, -2.8927160325531743e-06, -0.00019284773550354493, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -1.5427818840283566e-05, -1.5427818840283566e-05, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -0.0001562066657578724, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.6034444292978478e-05, -9.2566913041701687e-05, -7.713909420141783e-06, -6.8460946103758208e-05, -1.1570864130212697e-05, -1.1570864130212697e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772952e-06, -7.7139094201417796e-06, -9.6423867751772715e-06, -2.0249012227872281e-05, -7.713909420141783e-06, -4.8211933875886408e-06, -2.2177489582907717e-05, -7.713909420141783e-06, -1.1570864130212707e-05, -2.8927160325532124e-06, -4.8211933875886205e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772287e-07, -7.7139094201417796e-06, -1.1570864130212687e-05, -5.7854320651063758e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -7.713909420141783e-06, -3.8569547100708915e-06, -1.5427818840283559e-05, -7.713909420141783e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -7.713909420141783e-06, -1.5427818840283559e-05, -2.3141728260425401e-05, -7.713909420141783e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -7.713909420141783e-06, -7.713909420141783e-06, -7.713909420141783e-06, -7.713909420141783e-06, -8.6781480976595365e-06, -3.2784115035602724e-05, -1.9284773550354445e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -8.6781480976595399e-06, -2.5070205615460922e-05, -7.7139094201417796e-06, -7.713909420141783e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -9.6423867751772266e-07, -1.9284773550354457e-06, -1.6392057517801172e-05, -2.8927160325531638e-05, -1.1570864130212707e-05, -5.7854320651063842e-06, -9.6423867751772287e-07, -3.8569547100708915e-06, -1.5427818840283563e-05, -2.3141728260425398e-05, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.5427818840283566e-05, -1.5427818840283566e-05, -3.8569547100708915e-06, -1.1570864130212706e-05, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -8.678148097659523e-06, -4.8211933875886357e-06, -7.7139094201417813e-06, -1.5427818840283566e-05, -6.9425184781276292e-05, -3.8569547100708898e-06, -9.6423867751772287e-07, -5.7854320651063249e-05, -7.713909420141783e-06, -4.6283456520851494e-05, -4.6283456520850803e-05, -4.8211933875886002e-05, -4.6283456520851494e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -6.7496707426241087e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -5.8818559328581205e-05, -1.9284773550354453e-06, -6.9425184781276347e-05, -6.9425184781276374e-05, -7.713909420141783e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -6.9425184781276374e-05, -6.9425184781276238e-05, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, 0.0039128805533669353, -7.713909420141783e-06, -7.713909420141783e-06, -2.892716032553176e-06, 0.0039128805533669353, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.690598709053173e-05, -9.6423867751772003e-05, -2.4105966937943111e-06, -4.8211933875886133e-07, -1.4463580162765933e-06, -4.8211933875886527e-06, -3.8569547100709316e-05, -9.6423867751772287e-07, -4.4354979165815509e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100709316e-05, -3.8569547100709316e-05, -3.8569547100708898e-06, -0.00010944108989826132, -9.6423867751772245e-07, -9.6423867751773291e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708889e-06, -2.4105966937943111e-06, -1.4463580162765944e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813830104e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.3390740488297319e-06, -3.8569547100708915e-06, -7.2317900813829841e-06, -9.6423867751772266e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886417e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -8.1960287589006216e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -1.5427818840283556e-05, -1.2052983468971531e-05, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.8211933875886434e-06, -5.3033127263474575e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -3.8569547100708915e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212745e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.678148097659567e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038651882e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -4.049802445574463e-05, -3.8569547100708915e-06, -4.2426501810779714e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709079e-05, -7.7139094201417813e-06, -3.9051666439468087e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417796e-06, -1.9284773550354453e-06, -4.049802445574463e-05, -3.8569547100709316e-05, -3.8569547100709052e-05, -3.8569547100709147e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886578e-06, -9.6423867751772952e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -3.8569547100708906e-06, -1.1570864130212757e-05, -1.4463580162766158e-06, -4.2426501810780053e-05, -7.7139094201417813e-06, -3.4712592390638065e-05, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971494e-05, -7.713909420141783e-06, -3.8569547100708915e-06, -3.3748353713120426e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.4712592390638051e-05, -9.6423867751772266e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390638051e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886391e-06, -1.4463580162765944e-06, -3.8569547100708915e-06, -7.2317900813829638e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.892716032553204e-06, -1.4463580162766124e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.7139094201417813e-06, 0.001951619083295879, -1.1088744791453879e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532108e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.8569547100709147e-05, -3.8569547100709052e-05, -7.8103332878936418e-05, -3.8569547100709052e-05, -3.8569547100709079e-05, -1.9284773550354449e-06, -9.6423867751772287e-07, -3.8569547100708889e-06, -4.3390740488297234e-06, -1.9284773550354449e-06, -5.3033127263474871e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936242e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162765944e-06, -4.8211933875886133e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -5.7854320651063809e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976595027e-06, -4.8211933875886144e-07, -1.928477355035444e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -7.713909420141783e-06, -2.4105966937943217e-06, -1.9284773550354457e-06, -9.6423867751772266e-07, -2.8927160325531879e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.217748958290767e-05, -4.8211933875886222e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.0001480106369989719, -3.8569547100708906e-06, -9.6423867751772627e-05, -3.8569547100708915e-06, -9.6423867751772266e-07, -2.8927160325531679e-05, -5.7854320651063792e-06, -2.4105966937943187e-06, -2.8927160325532001e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936242e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -0.00011040532857577947, -1.4463580162765935e-06, -9.6423867751772695e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936418e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.3017222146489225e-05, -4.6283456520851033e-05, -3.8569547100708915e-06, -3.4230473051878982e-05, -5.7854320651063825e-06, -5.7854320651063825e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886629e-06, -3.8569547100708898e-06, -4.821193387588651e-06, -1.0124506113936151e-05, -3.8569547100708915e-06, -2.410596693794328e-06, -1.1088744791453828e-05, -3.8569547100708915e-06, -5.7854320651063792e-06, -1.4463580162766128e-06, -2.4105966937943179e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.78543206510633e-06, -2.8927160325531599e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.1570864130212755e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.3390740488297954e-06, -1.6392057517801314e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.339074048829753e-06, -1.2535102807730481e-05, -3.8569547100708906e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -8.1960287589005725e-06, -1.4463580162765843e-05, -5.7854320651063792e-06, -2.892716032553204e-06, -4.8211933875886144e-07, -1.9284773550354457e-06, -7.7139094201417813e-06, -1.157086413021275e-05, -3.8569547100708898e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -5.7854320651063783e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.3390740488297869e-06, -2.4105966937943246e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.4712592390638011e-05, -1.9284773550354453e-06, -4.8211933875886144e-07, -2.8927160325531672e-05, -3.8569547100708915e-06, -2.3141728260425852e-05, -2.3141728260425503e-05, -2.4105966937943062e-05, -2.3141728260425852e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.3748353713120449e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.9409279664290636e-05, -9.6423867751772266e-07, -3.4712592390638051e-05, -3.4712592390638051e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.4712592390638065e-05, -3.4712592390637997e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.713909420141783e-06, 0.0019602972313935386, -3.8569547100708915e-06, -1.4463580162765961e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -9.6905987090531784e-05, -9.6423867751772058e-05, -2.4105966937943102e-06, -4.8211933875886133e-07, -1.4463580162765937e-06, -4.821193387588651e-06, -3.8569547100709316e-05, -9.6423867751772287e-07, -4.4354979165815482e-05, -4.8211933875886144e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100709316e-05, -3.8569547100709316e-05, -3.8569547100708898e-06, -0.00010944108989826126, -9.6423867751772245e-07, -9.6423867751773318e-05, -7.7139094201417796e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708889e-06, -2.4105966937943102e-06, -1.4463580162765948e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -7.2317900813830121e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.3390740488297302e-06, -3.8569547100708915e-06, -7.2317900813829875e-06, -9.6423867751772266e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772245e-07, -4.8211933875886144e-07, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886408e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -8.1960287589006199e-06, -3.8569547100708906e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -1.5427818840283556e-05, -1.2052983468971538e-05, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -1.9284773550354449e-06, -3.8569547100708915e-06, -4.8211933875886425e-06, -5.3033127263474592e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -9.6423867751772245e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -3.8569547100708915e-06, -9.6423867751772266e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -4.8211933875886133e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886133e-07, -3.8569547100708898e-06, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.1570864130212748e-05, -3.8569547100708898e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -8.6781480976595772e-06, -1.9284773550354457e-06, -4.8211933875886122e-07, -9.6423867751772287e-07, -6.2675514038651848e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -4.049802445574463e-05, -3.8569547100708915e-06, -4.2426501810779728e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -3.8569547100709072e-05, -7.7139094201417813e-06, -3.9051666439468087e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -7.7139094201417796e-06, -1.9284773550354453e-06, -4.049802445574463e-05, -3.8569547100709316e-05, -3.8569547100709039e-05, -3.856954710070914e-05, -4.8211933875886133e-07, -1.9284773550354449e-06, -4.8211933875886144e-07, -4.8211933875886122e-07, -4.8211933875886122e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -4.8211933875886144e-07, -3.8569547100708906e-06, -4.8211933875886578e-06, -9.6423867751772918e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -3.8569547100708906e-06, -1.157086413021276e-05, -1.4463580162766158e-06, -4.242650181078006e-05, -7.7139094201417813e-06, -3.4712592390638038e-05, -4.8211933875886144e-07, -4.8211933875886144e-07, -1.2052983468971487e-05, -7.713909420141783e-06, -3.8569547100708915e-06, -3.3748353713120418e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -3.4712592390638038e-05, -9.6423867751772266e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.4712592390638024e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -4.8211933875886391e-06, -1.4463580162765948e-06, -3.8569547100708915e-06, -7.2317900813829655e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -9.6423867751772245e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -4.8211933875886144e-07, -2.8927160325532057e-06, -1.4463580162766128e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, 0.0019564402766834681, -1.2535102807730342e-05, -1.1088744791453872e-05, -4.8211933875886144e-07, -7.7139094201417813e-06, -3.8569547100708906e-06, -2.8927160325532116e-06, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.856954710070914e-05, -3.8569547100709039e-05, -7.8103332878936391e-05, -3.8569547100709039e-05, -3.8569547100709072e-05, -1.9284773550354449e-06, -9.6423867751772287e-07, -3.8569547100708889e-06, -4.33907404882972e-06, -1.9284773550354449e-06, -5.3033127263474871e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.8103332878936229e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886133e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.4463580162765948e-06, -4.8211933875886133e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -4.8211933875886144e-07, -4.8211933875886133e-07, -1.9284773550354449e-06, -5.7854320651063825e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -4.8211933875886144e-07, -8.6781480976594959e-06, -4.8211933875886144e-07, -1.928477355035444e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -7.713909420141783e-06, -2.4105966937943208e-06, -1.9284773550354457e-06, -9.6423867751772266e-07, -2.8927160325531887e-06, -4.0980143794503334e-05, -4.8211933875886144e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886144e-07, -2.2177489582907663e-05, -4.8211933875886205e-06, -4.8211933875886133e-07, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -0.00014801063699897198, -3.8569547100708906e-06, -9.6423867751772654e-05, -3.8569547100708915e-06, -9.6423867751772266e-07, -2.8927160325531686e-05, -5.7854320651063809e-06, -2.4105966937943179e-06, -2.8927160325532008e-05, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936229e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -0.00011040532857577944, -1.4463580162765939e-06, -9.6423867751772749e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708906e-06, -3.8569547100708906e-06, -4.8211933875886144e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708906e-06, -3.8569547100708906e-06, -7.8103332878936391e-05, -3.8569547100708906e-06, -3.8569547100708906e-06, -1.3017222146489225e-05, -4.6283456520851047e-05, -3.8569547100708915e-06, -3.4230473051878962e-05, -5.7854320651063809e-06, -5.7854320651063809e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -4.8211933875886612e-06, -3.8569547100708898e-06, -4.8211933875886493e-06, -1.0124506113936151e-05, -3.8569547100708915e-06, -2.4105966937943272e-06, -1.1088744791453825e-05, -3.8569547100708915e-06, -5.7854320651063809e-06, -1.4463580162766132e-06, -2.410596693794317e-06, -9.6423867751772245e-07, -4.8211933875886133e-07, -4.8211933875886144e-07, -3.8569547100708898e-06, -5.7854320651063249e-06, -2.8927160325531616e-06, -1.9284773550354457e-06, -3.8569547100708906e-06, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -1.1570864130212755e-05, -3.8569547100708915e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -4.3390740488298005e-06, -1.6392057517801314e-05, -9.6423867751772224e-07, -3.8569547100708898e-06, -3.8569547100708915e-06, -4.3390740488297513e-06, -1.2535102807730481e-05, -3.8569547100708906e-06, -3.8569547100708915e-06, -3.8569547100708898e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.8211933875886133e-07, -4.8211933875886122e-07, -4.8211933875886133e-07, -9.6423867751772287e-07, -8.1960287589005708e-06, -1.446358016276585e-05, -5.7854320651063809e-06, -2.8927160325532057e-06, -4.8211933875886144e-07, -1.9284773550354457e-06, -7.7139094201417813e-06, -1.1570864130212753e-05, -3.8569547100708898e-06, -1.9284773550354457e-06, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -5.78543206510638e-06, -3.8569547100708915e-06, -4.8211933875886122e-07, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -4.339074048829792e-06, -2.4105966937943246e-06, -3.8569547100708906e-06, -7.713909420141783e-06, -3.4712592390637984e-05, -1.9284773550354453e-06, -4.8211933875886144e-07, -2.8927160325531679e-05, -3.8569547100708915e-06, -2.3141728260425859e-05, -2.314172826042551e-05, -2.4105966937943072e-05, -2.3141728260425859e-05, -1.9284773550354453e-06, -1.9284773550354453e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -3.8569547100708898e-06, -4.8211933875886122e-07, -3.8569547100708898e-06, -4.8211933875886144e-07, -4.8211933875886133e-07, -3.3748353713120435e-05, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.9409279664290643e-05, -9.6423867751772266e-07, -3.4712592390638024e-05, -3.4712592390638038e-05, -3.8569547100708915e-06, -4.8211933875886144e-07, -3.8569547100708915e-06, -3.4712592390638038e-05, -3.471259239063797e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.713909420141783e-06, -3.8569547100708915e-06, 0.0019602972313935386, -1.4463580162765956e-06, -7.713909420141783e-06, -1.4463580162766115e-06, -1.446358016276605e-06, -1.4463580162766062e-06, -1.4463580162766111e-06, -7.2317900813829528e-07, -7.2317900813829528e-07, -1.4463580162765901e-06, -1.4463580162765893e-06, -1.8079475203457549e-07, -1.8079475203457525e-07, -3.6339745158949429e-05, -3.6158950406914486e-05, -9.0397376017286243e-07, -1.8079475203457546e-07, -5.4238425610372929e-07, -1.8079475203457342e-06, -1.4463580162765772e-05, -3.615895040691505e-07, -1.6633117187180808e-05, -1.8079475203457324e-07, -2.8927160325532133e-06, -2.8927160325532116e-06, -1.4463580162765893e-06, -1.4463580162765901e-06, -1.4463580162765745e-05, -1.4463580162765741e-05, -1.4463580162765969e-06, -4.104040871184805e-05, -3.6158950406915309e-07, -3.615895040691452e-05, -2.892716032553215e-06, -1.4463580162766054e-06, -1.4463580162766119e-06, -1.807947520345734e-07, -1.8079475203457551e-07, -1.4463580162766007e-06, -1.446358016276602e-06, -3.6158950406915309e-07, -3.6158950406915309e-07, -1.8079475203457345e-07, -1.8079475203457467e-07, -1.4463580162765872e-06, -9.0397376017286423e-07, -5.4238425610372548e-07, -7.2317900813829507e-07, -7.2317900813829549e-07, -1.8079475203457546e-07, -2.7119212805185971e-06, -1.4463580162765971e-06, -1.4463580162765975e-06, -1.6271527683111578e-06, -1.4463580162765884e-06, -2.7119212805186035e-06, -3.6158950406915097e-07, -1.807947520345762e-07, -1.446358016276588e-06, -1.4463580162765876e-06, -1.807947520345753e-07, -1.8079475203457504e-07, -1.4463580162765984e-06, -1.4463580162765967e-06, -3.6158950406914923e-07, -1.807947520345744e-07, -1.4463580162765914e-06, -2.8927160325531735e-06, -1.8079475203457304e-06, -1.4463580162765994e-06, -2.8927160325531938e-06, -1.8079475203457535e-07, -1.4463580162765946e-06, -3.0735107845877799e-06, -1.4463580162766001e-06, -1.4463580162765961e-06, -2.8927160325532108e-06, -5.7854320651063436e-06, -4.519868800864326e-06, -1.4463580162765895e-06, -2.8927160325532074e-06, -2.8927160325532057e-06, -7.2317900813830459e-07, -1.4463580162765969e-06, -1.8079475203457299e-06, -1.9887422723802887e-06, -7.2317900813830481e-07, -2.8927160325532091e-06, -1.4463580162766003e-06, -1.4463580162766005e-06, -1.4463580162766009e-06, -3.6158950406915124e-07, -1.4463580162766088e-06, -1.4463580162765895e-06, -1.8079475203457649e-07, -1.4463580162765891e-06, -3.6158950406915039e-07, -1.4463580162766079e-06, -1.4463580162766003e-06, -1.446358016276599e-06, -1.8079475203457562e-07, -2.8927160325532074e-06, -2.8927160325532091e-06, -1.8079475203457514e-07, -1.4463580162765999e-06, -1.4463580162765994e-06, -1.807947520345753e-07, -1.4463580162766119e-06, -1.44635801627661e-06, -1.4463580162765956e-06, -1.4463580162766105e-06, -4.3390740488298089e-06, -1.4463580162766075e-06, -1.4463580162765922e-06, -1.446358016276595e-06, -1.8079475203457461e-07, -1.446358016276591e-06, -1.4463580162765954e-06, -2.8927160325531955e-06, -7.2317900813829549e-07, -3.254305536622319e-06, -7.2317900813829507e-07, -1.8079475203457625e-07, -3.6158950406914965e-07, -2.3503317764494444e-06, -1.446358016276599e-06, -2.8927160325531993e-06, -1.5186759170904299e-05, -1.4463580162765984e-06, -1.5909938179042256e-05, -1.4463580162765969e-06, -1.4463580162765956e-06, -2.8927160325532057e-06, -1.4463580162765816e-05, -2.8927160325532074e-06, -1.4644374914800435e-05, -1.8079475203457345e-07, -2.8927160325532091e-06, -2.892716032553204e-06, -7.2317900813830438e-07, -1.5186759170904299e-05, -1.4463580162765772e-05, -1.446358016276577e-05, -1.4463580162765858e-05, -1.8079475203457525e-07, -7.2317900813829274e-07, -1.8079475203457424e-07, -1.8079475203457594e-07, -1.8079475203457655e-07, -1.4463580162766011e-06, -1.4463580162766016e-06, -1.4463580162765999e-06, -1.4463580162765994e-06, -1.8079475203457424e-07, -1.807947520345744e-07, -1.8079475203457419e-07, -1.4463580162766041e-06, -1.8079475203457401e-06, -3.6158950406914633e-06, -2.8927160325532108e-06, -2.8927160325531925e-06, -1.4463580162766037e-06, -4.3390740488297988e-06, -5.4238425610371415e-07, -1.5909938179042357e-05, -2.8927160325531908e-06, -1.3017222146489208e-05, -1.8079475203457514e-07, -1.8079475203457483e-07, -4.5198688008643684e-06, -2.8927160325531955e-06, -1.4463580162765971e-06, -1.2655632642420233e-06, -7.2317900813829337e-07, -3.6158950406915087e-07, -1.3017222146489212e-05, -3.6158950406915097e-07, -7.2317900813829528e-07, -7.2317900813829528e-07, -1.3017222146489208e-05, -1.4463580162765927e-06, 0.0002453384785109166, -1.4463580162765948e-06, -1.8079475203457419e-07, -1.4463580162765961e-06, -1.8079475203457397e-06, -5.4238425610372527e-07, -1.4463580162765952e-06, -2.7119212805186225e-06, -1.8079475203457345e-07, -1.4463580162765931e-06, -3.6158950406915309e-07, -3.6158950406915309e-07, -3.6158950406915219e-07, -1.8079475203457509e-07, -1.0847685122074391e-06, -5.4238425610371521e-07, -1.4463580162766035e-06, -1.4463580162766052e-06, -2.8927160325531921e-06, -4.7006635528989362e-06, -4.1582792967951521e-06, -1.8079475203457345e-07, -2.892716032553182e-06, -1.4463580162766045e-06, -1.0847685122074366e-06, -3.6158950406914796e-07, -1.807947520345744e-07, -1.8079475203457594e-07, -1.4463580162765858e-05, -1.446358016276577e-05, -2.9288749829600688e-05, -1.4463580162765768e-05, -1.4463580162765816e-05, -7.2317900813830481e-07, -3.6158950406914796e-07, -1.4463580162766033e-06, -1.6271527683111544e-06, -7.2317900813830459e-07, -1.9887422723802896e-06, -1.8079475203457543e-07, 0.0002453384785109166, -2.892716032553187e-06, -1.4463580162765922e-06, -1.4463580162765952e-06, -1.8079475203457488e-07, -1.8079475203457546e-07, -7.2317900813830057e-07, -7.2317900813830099e-07, -2.8927160325531828e-06, -1.4463580162766054e-06, -1.8079475203457398e-07, -2.9288749829600996e-05, -1.4463580162766043e-06, -1.4463580162766039e-06, -1.8079475203457514e-07, -7.2317900813830099e-07, -7.2317900813830078e-07, -3.61589504069147e-07, -3.61589504069147e-07, -5.4238425610372463e-07, -1.8079475203457551e-07, -3.61589504069147e-07, -3.61589504069147e-07, -1.807947520345744e-07, -1.8079475203457525e-07, -7.2317900813829422e-07, -2.1695370244148909e-06, -1.4463580162765918e-06, -1.8079475203457419e-07, -1.8079475203457324e-07, -3.2543055366223042e-06, -1.8079475203457501e-07, -7.2317900813829316e-07, -3.6158950406914663e-07, -2.8927160325531794e-06, -2.8927160325531811e-06, -9.0397376017286581e-07, -7.231790081382993e-07, -3.6158950406914923e-07, -1.0847685122074463e-06, -1.5367553922938771e-05, -1.8079475203457472e-07, -7.2317900813829909e-07, -7.2317900813829951e-07, -2.8927160325531828e-06, -2.8927160325531777e-06, -7.2317900813829845e-07, -7.2317900813829718e-07, -7.2317900813829676e-07, -1.8079475203457419e-07, -8.3165585935903313e-06, -1.8079475203457344e-06, -1.8079475203457535e-07, -1.4463580162766039e-06, -1.4463580162765863e-06, -1.4463580162766043e-06, -2.8927160325531777e-06, -1.4463580162765861e-06, -2.8927160325531828e-06, -1.4463580162765861e-06, -1.4463580162765861e-06, -5.5503988874614308e-05, -1.4463580162766041e-06, -3.6158950406914533e-05, -1.446358016276591e-06, -3.6158950406915113e-07, -1.0847685122074392e-05, -2.1695370244148816e-06, -9.0397376017286454e-07, -1.0847685122074392e-05, -1.8079475203457371e-07, -1.4463580162766009e-06, -1.4463580162766005e-06, -2.9288749829600996e-05, -1.4463580162765916e-06, -1.4463580162765912e-06, -4.14019982159173e-05, -5.4238425610372442e-07, -3.6158950406914561e-05, -1.4463580162765994e-06, -1.4463580162765999e-06, -1.8079475203457448e-07, -1.4463580162766001e-06, -1.4463580162766014e-06, -1.8079475203457403e-07, -2.8927160325531811e-06, -2.8927160325531794e-06, -3.6158950406915219e-07, -7.2317900813830078e-07, -7.2317900813830099e-07, -1.4463580162766045e-06, -1.446358016276605e-06, -2.9288749829600688e-05, -1.4463580162766052e-06, -1.4463580162766035e-06, -4.8814583049335278e-06, -1.7356296195319188e-05, -1.4463580162766003e-06, -1.2836427394454695e-05, -2.1695370244149036e-06, -2.1695370244149036e-06, -1.4463580162766028e-06, -1.44635801627661e-06, -1.8079475203457418e-06, -1.4463580162766119e-06, -1.8079475203457342e-06, -3.7966897927260697e-06, -1.4463580162765918e-06, -9.0397376017287005e-07, -4.1582792967952012e-06, -1.446358016276592e-06, -2.1695370244148807e-06, -5.4238425610371309e-07, -9.0397376017286581e-07, -3.6158950406915251e-07, -1.8079475203457525e-07, -1.8079475203457472e-07, -1.4463580162766119e-06, -2.1695370244148748e-06, -1.0847685122074342e-06, -7.2317900813829634e-07, -1.4463580162766058e-06, -1.4463580162765969e-06, -1.4463580162765861e-06, -2.8927160325531722e-06, -1.4463580162765893e-06, -7.2317900813829951e-07, -2.8927160325531722e-06, -1.4463580162765893e-06, -7.2317900813829909e-07, -1.4463580162765863e-06, -1.8079475203457371e-07, -1.4463580162765876e-06, -1.446358016276588e-06, -2.8927160325532091e-06, -4.3390740488297903e-06, -1.4463580162765956e-06, -2.892716032553215e-06, -2.8927160325532099e-06, -1.4463580162765893e-06, -1.4463580162765901e-06, -1.446358016276592e-06, -1.4463580162765908e-06, -1.627152768311157e-06, -6.1470215691755869e-06, -3.6158950406914647e-07, -1.4463580162766075e-06, -1.4463580162765889e-06, -1.6271527683111775e-06, -4.7006635528988981e-06, -1.446358016276605e-06, -1.4463580162765948e-06, -1.4463580162766115e-06, -7.231790081382993e-07, -7.2317900813829951e-07, -1.8079475203457541e-07, -1.8079475203457655e-07, 0.00024533847851091666, -3.6158950406915018e-07, -3.0735107845877748e-06, -5.4238425610371959e-06, -2.1695370244148858e-06, -1.0847685122074391e-06, -1.8079475203457461e-07, -7.2317900813829888e-07, -2.8927160325531908e-06, -4.3390740488297869e-06, -1.4463580162766071e-06, -7.2317900813829888e-07, -2.8927160325531942e-06, -2.8927160325531925e-06, -7.2317900813829888e-07, -2.1695370244148892e-06, -1.4463580162765916e-06, -1.807947520345762e-07, -3.6158950406914965e-07, -7.2317900813829888e-07, -7.2317900813829845e-07, -1.6271527683111589e-06, -9.0397376017286687e-07, -1.4463580162766033e-06, -2.8927160325531735e-06, -1.3017222146489218e-05, -7.2317900813830438e-07, -1.807947520345743e-07, -1.0847685122074392e-05, -1.446358016276595e-06, -8.6781480976594298e-06, -8.6781480976595908e-06, -9.0397376017286486e-06, -8.6781480976594298e-06, -7.2317900813830438e-07, -7.2317900813830417e-07, -1.4463580162765969e-06, -1.4463580162765961e-06, -7.2317900813829782e-07, -7.2317900813829782e-07, -1.4463580162766079e-06, -1.807947520345761e-07, -1.4463580162766088e-06, -1.8079475203457456e-07, -1.8079475203457533e-07, -1.2655632642420178e-05, -7.2317900813829782e-07, -7.2317900813829782e-07, -1.1028479874109069e-05, -3.6158950406915171e-07, -1.3017222146489208e-05, -1.3017222146489212e-05, -1.4463580162765946e-06, -1.8079475203457427e-07, -1.4463580162765958e-06, -1.3017222146489208e-05, -1.3017222146489208e-05, -1.4463580162765952e-06, -1.4463580162765965e-06, -3.6158950406914722e-07, -3.6158950406915029e-07, -2.892716032553176e-06, -1.4463580162765961e-06, -1.4463580162765956e-06, 0.00073601543553274932, -2.892716032553176e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772266e-07, -9.6423867751772287e-07, -0.00019381197418106313, -0.00019284773550354352, -4.8211933875886069e-06, -9.6423867751772266e-07, -2.8927160325531739e-06, -9.6423867751772749e-06, -7.7139094201418416e-05, -1.9284773550354457e-06, -8.8709958331631249e-05, -9.6423867751772287e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -7.713909420141783e-06, -7.713909420141783e-06, -7.7139094201418416e-05, -7.7139094201418416e-05, -7.7139094201417796e-06, -0.0002188821797965231, -1.9284773550354449e-06, -0.00019284773550354609, -1.5427818840283559e-05, -7.7139094201417813e-06, -7.7139094201417796e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.713909420141783e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -7.7139094201417779e-06, -4.8211933875886069e-06, -2.892716032553176e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772266e-07, -1.4463580162765997e-05, -7.713909420141783e-06, -7.713909420141783e-06, -8.6781480976594993e-06, -7.713909420141783e-06, -1.4463580162765945e-05, -1.9284773550354453e-06, -9.6423867751772245e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772266e-07, -9.6423867751772287e-07, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -1.5427818840283566e-05, -9.6423867751772545e-06, -7.713909420141783e-06, -1.5427818840283566e-05, -9.6423867751772266e-07, -7.713909420141783e-06, -1.639205751780127e-05, -7.7139094201417813e-06, -7.713909420141783e-06, -1.5427818840283563e-05, -3.0855637680567112e-05, -2.4105966937943001e-05, -7.713909420141783e-06, -1.5427818840283563e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -7.713909420141783e-06, -9.6423867751772562e-06, -1.0606625452694935e-05, -3.8569547100708898e-06, -1.5427818840283559e-05, -7.713909420141783e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.9284773550354449e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -9.6423867751772245e-07, -7.713909420141783e-06, -1.9284773550354453e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772266e-07, -1.5427818840283559e-05, -1.5427818840283559e-05, -9.6423867751772287e-07, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772266e-07, -7.7139094201417796e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -7.7139094201417796e-06, -2.3141728260425388e-05, -7.7139094201417796e-06, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -7.713909420141783e-06, -1.5427818840283566e-05, -3.8569547100708915e-06, -1.7356296195319026e-05, -3.8569547100708915e-06, -9.6423867751772245e-07, -1.9284773550354457e-06, -1.2535102807730464e-05, -7.713909420141783e-06, -1.5427818840283566e-05, -8.0996048911489179e-05, -7.713909420141783e-06, -8.4853003621559564e-05, -7.713909420141783e-06, -7.713909420141783e-06, -1.5427818840283559e-05, -7.7139094201417928e-05, -1.5427818840283563e-05, -7.8103332878935985e-05, -9.6423867751772287e-07, -1.5427818840283563e-05, -1.5427818840283559e-05, -3.8569547100708898e-06, -8.0996048911489152e-05, -7.7139094201418416e-05, -7.713909420141786e-05, -7.7139094201418063e-05, -9.6423867751772266e-07, -3.8569547100708898e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -9.6423867751772245e-07, -7.713909420141783e-06, -7.713909420141783e-06, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -9.6423867751772287e-07, -7.7139094201417813e-06, -9.6423867751772884e-06, -1.9284773550354529e-05, -1.5427818840283559e-05, -1.5427818840283566e-05, -7.7139094201417813e-06, -2.3141728260425412e-05, -2.8927160325532175e-06, -8.4853003621560241e-05, -1.5427818840283563e-05, -6.9425184781276374e-05, -9.6423867751772287e-07, -9.6423867751772287e-07, -2.4105966937943069e-05, -1.5427818840283566e-05, -7.713909420141783e-06, -6.7496707426240938e-06, -3.8569547100708898e-06, -1.9284773550354453e-06, -6.9425184781276374e-05, -1.9284773550354453e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -6.9425184781276347e-05, -7.713909420141783e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -9.6423867751772512e-06, -2.892716032553176e-06, -7.713909420141783e-06, -1.4463580162765904e-05, -9.6423867751772287e-07, -7.713909420141783e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -1.9284773550354449e-06, -9.6423867751772287e-07, -5.7854320651063842e-06, -2.8927160325532116e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -1.5427818840283563e-05, -2.5070205615460854e-05, -2.2177489582907822e-05, -9.6423867751772287e-07, -1.5427818840283563e-05, -7.7139094201417813e-06, -5.7854320651063961e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -7.7139094201418063e-05, -7.713909420141786e-05, -0.0001562066657578724, -7.713909420141786e-05, -7.7139094201417928e-05, -3.8569547100708898e-06, -1.9284773550354457e-06, -7.7139094201417779e-06, -8.6781480976594823e-06, -3.8569547100708898e-06, -1.0606625452694995e-05, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.5427818840283566e-05, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.5427818840283559e-05, -7.7139094201417813e-06, -9.6423867751772287e-07, -0.00015620666575787208, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.9284773550354457e-06, -1.9284773550354457e-06, -2.892716032553176e-06, -9.6423867751772266e-07, -1.9284773550354457e-06, -1.9284773550354457e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -3.8569547100708898e-06, -1.1570864130212711e-05, -7.713909420141783e-06, -9.6423867751772287e-07, -9.6423867751772287e-07, -1.7356296195319066e-05, -9.6423867751772287e-07, -3.8569547100708881e-06, -1.9284773550354457e-06, -1.5427818840283566e-05, -1.5427818840283566e-05, -4.8211933875886281e-06, -3.8569547100708915e-06, -1.9284773550354453e-06, -5.7854320651063504e-06, -8.1960287589006667e-05, -9.6423867751772287e-07, -3.8569547100708915e-06, -3.8569547100708915e-06, -1.5427818840283566e-05, -1.5427818840283566e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -4.4354979165815475e-05, -9.6423867751772139e-06, -9.6423867751772266e-07, -7.7139094201417813e-06, -7.7139094201417796e-06, -7.7139094201417813e-06, -1.5427818840283566e-05, -7.7139094201417796e-06, -1.5427818840283566e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -0.00029602127399794281, -7.7139094201417813e-06, -0.00019284773550354477, -7.713909420141783e-06, -1.9284773550354453e-06, -5.7854320651063249e-05, -1.1570864130212707e-05, -4.8211933875886205e-06, -5.78543206510639e-05, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -0.00015620666575787208, -7.713909420141783e-06, -7.713909420141783e-06, -0.00022081065715155943, -2.8927160325531743e-06, -0.00019284773550354493, -7.713909420141783e-06, -7.713909420141783e-06, -9.6423867751772287e-07, -7.7139094201417813e-06, -7.7139094201417813e-06, -9.6423867751772287e-07, -1.5427818840283566e-05, -1.5427818840283566e-05, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417813e-06, -0.0001562066657578724, -7.7139094201417813e-06, -7.7139094201417813e-06, -2.6034444292978478e-05, -9.2566913041701687e-05, -7.713909420141783e-06, -6.8460946103758208e-05, -1.1570864130212697e-05, -1.1570864130212697e-05, -7.7139094201417796e-06, -7.7139094201417796e-06, -9.6423867751772952e-06, -7.7139094201417796e-06, -9.6423867751772715e-06, -2.0249012227872281e-05, -7.713909420141783e-06, -4.8211933875886408e-06, -2.2177489582907717e-05, -7.713909420141783e-06, -1.1570864130212707e-05, -2.8927160325532124e-06, -4.8211933875886205e-06, -1.9284773550354449e-06, -9.6423867751772266e-07, -9.6423867751772287e-07, -7.7139094201417796e-06, -1.1570864130212687e-05, -5.7854320651063758e-06, -3.8569547100708915e-06, -7.7139094201417813e-06, -7.7139094201417796e-06, -7.7139094201417796e-06, -1.5427818840283559e-05, -7.713909420141783e-06, -3.8569547100708915e-06, -1.5427818840283559e-05, -7.713909420141783e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -7.713909420141783e-06, -1.5427818840283559e-05, -2.3141728260425401e-05, -7.713909420141783e-06, -1.5427818840283559e-05, -1.5427818840283559e-05, -7.713909420141783e-06, -7.713909420141783e-06, -7.713909420141783e-06, -7.713909420141783e-06, -8.6781480976595365e-06, -3.2784115035602724e-05, -1.9284773550354445e-06, -7.7139094201417796e-06, -7.713909420141783e-06, -8.6781480976595399e-06, -2.5070205615460922e-05, -7.7139094201417796e-06, -7.713909420141783e-06, -7.7139094201417796e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -9.6423867751772287e-07, -9.6423867751772245e-07, -9.6423867751772266e-07, -1.9284773550354457e-06, -1.6392057517801172e-05, -2.8927160325531638e-05, -1.1570864130212707e-05, -5.7854320651063842e-06, -9.6423867751772287e-07, -3.8569547100708915e-06, -1.5427818840283563e-05, -2.3141728260425398e-05, -7.7139094201417796e-06, -3.8569547100708915e-06, -1.5427818840283566e-05, -1.5427818840283566e-05, -3.8569547100708915e-06, -1.1570864130212706e-05, -7.713909420141783e-06, -9.6423867751772245e-07, -1.9284773550354449e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -8.678148097659523e-06, -4.8211933875886357e-06, -7.7139094201417813e-06, -1.5427818840283566e-05, -6.9425184781276292e-05, -3.8569547100708898e-06, -9.6423867751772287e-07, -5.7854320651063249e-05, -7.713909420141783e-06, -4.6283456520851494e-05, -4.6283456520850803e-05, -4.8211933875886002e-05, -4.6283456520851494e-05, -3.8569547100708898e-06, -3.8569547100708898e-06, -7.713909420141783e-06, -7.713909420141783e-06, -3.8569547100708915e-06, -3.8569547100708915e-06, -7.7139094201417796e-06, -9.6423867751772245e-07, -7.7139094201417796e-06, -9.6423867751772287e-07, -9.6423867751772266e-07, -6.7496707426241087e-05, -3.8569547100708915e-06, -3.8569547100708915e-06, -5.8818559328581205e-05, -1.9284773550354453e-06, -6.9425184781276347e-05, -6.9425184781276374e-05, -7.713909420141783e-06, -9.6423867751772287e-07, -7.713909420141783e-06, -6.9425184781276374e-05, -6.9425184781276238e-05, -7.713909420141783e-06, -7.713909420141783e-06, -1.9284773550354457e-06, -1.9284773550354453e-06, 0.0039128805533669353, -7.713909420141783e-06, -7.713909420141783e-06, -2.892716032553176e-06, 0.0039128805533669353) , nrow = 441, ncol = 441) haplo.stats/tests/expanded/test.haplo.em.R0000644000176200001440000000501714672566550020273 0ustar liggesusers ## package: haplo.stats ## test script: haplo.em ## settings verbose=TRUE require(haplo.stats) packageVersion("haplo.stats") options(stringsAsFactors=FALSE) tmp <- Sys.setlocale("LC_COLLATE", "C") tmp <- Sys.getlocale("LC_COLLATE") if(verbose) cat("prepare two datasets, one with char alleles, the other 3 loci from hla data\n") # make ficticious data set with an intention of some trend in # haplotypes having H-allele at locus-H with F-allele at locus-F geno.char <- matrix(c('F','f','g','G','h1','h1', 'F','F','g','G','H','h1', 'F','f','g','G','h2','h2', 'f','f','g','G','h2','h1', 'F','F','g','G','H','h2', 'f','f','G','G','h1','h2', 'F','f','G','g','h2','h2', 'F','F','g','G','h1','z', 'F','f','z','z','h1','h1', 'F','f','G','g','h1','h2', 'F','f','G','G','h1','h2', 'F','F','g','G','h1','z', 'F','f','z','z','h1','h1', 'f','f','G','g','h1','h2'), nrow=14,byrow=T) char.label <- c("F","G","H") data(hla.demo) hla.sub <- hla.demo[,c(1,2,3,4,17,18,21:24)] geno.hla <- hla.sub[,-c(1:4)] hla.label=c("DQB","DRB","HLA.B") seed <- c(33, 10, 39, 6, 16, 0, 40, 24, 12, 60, 7, 1) if(verbose) cat("character alleles\n") geno.char.recode <- setupGeno(geno.char, miss.val="z") geno.char.recode set.seed(seed) em.char <- haplo.em(geno.char, miss.val='z',locus.label=char.label, control = haplo.em.control()) print.haplo.em(em.char, digits=3) summary(em.char, digits=2, show.haplo=TRUE) summary.haplo.em(em.char, digits=2) if(verbose) cat("hla data, 3 loci\n") set.seed(seed) em.hla3 <- haplo.em(geno.hla, locus.label=hla.label, miss.val=0, control = haplo.em.control()) print.haplo.em(em.hla3, digits=3) if(verbose) cat("snap SNP data, unphased\n") snapDF <- read.table("snapData.csv",header=TRUE, sep=",", stringsAsFactors=FALSE) geno.snap <- setupGeno(geno=snapDF[,-1]) set.seed(seed) em.snap <- haplo.em(geno=geno.snap) print(em.snap, digits=3) if(verbose) cat("Check Phase against SNaP data, phased\n") snapfile <- "snap.sim.phased.dat" source("snapFUN.s") set.seed(seed) block1.phase <- checkPhase(snapfile, blocknum=1) set.seed(seed) block2.phase <- checkPhase(snapfile, blocknum=2) print(block1.phase[[2]], digits=4) print(block1.phase[[1]][1:50,],digits=4) # long output 1120 lines print(block2.phase[[2]],digits=4) haplo.stats/tests/expanded/test.anova.haplo.glm.R0000644000176200001440000005002114672315243021536 0ustar liggesusers ## package: haplo.stats ## test script: haplo.glm ## settings verbose=TRUE Sys.setlocale("LC_ALL", "C") Sys.getlocale() require(haplo.stats) ## this is a dataset borrowed from a haplo.stats user # it has problems with recessive trait, but runs fast on all examples "data.test.glm" <- structure(.Data = list(c(1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.) , c(1., 2., 1., 2., 1., 1., 2., 1., 1., 2., 1., 2., 1., 1., 1., 1., 1., 2., 2., 1., 1., 1., 2., 2., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 2., 2.,2., 2., 2., 1., 1., 1., 1., 1., 2., 2., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 2., 2., 1., 1., 1., 1., 1., 1., 2., 2., 1., 1., 1., 1., 2., 1., 2., 2., 1., 2., 1., 2., 1., 2., 2., 1., 2., 2., 2.,1., 1., 1., 1., 1., 2., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 2., 1., 1., 2., 2., 1., 2., 1., 1., 1., 2., 1., 2., 1., 2., 2., 1., 1.,1., 1., 2., 1., 2., 1., 2., 2., 1., 2., 1., 1., 2., 2., 1., 2., 2., 2., 1., 2., 2., 1., 2., 2., 1., 2., 1., 1., 2., 1., 1., 1., 1., 2.,2., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 2., 1., 2., 1., 1., 1., 1., 2., 2.,1., 2., 1., 2., 2., 1., 2., 1., 1., 1., 2., 2., 1., 1., 1., 1., 2., 1., 1., 1., 1., 2., 2., 1., 2., 2., 2., 1., 1., 1., 2., 1., 1., 2.,1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 2., 2., 2., 1., 1., 1., 2., 1., 2., 1., 2., 1., 2., 1., 2., 1., 1., 1., 1., 1., 1., 2., 2., 1.,2., 2., 2., 1., 1., 2., 1., 1., 1., 1., 1., 2., 2., 1., 1., 1., 2., 1., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 2., 2., 1., 2., 1., 2.,1., 1., 1., 2., 1., 1., 1., 1., 2., 2., 1., 1., 2., 1., 2., 2., 1., 1., 2., 1., 1., 1., 1., 1., 2., 1., 2., 1., 1., 2., 1., 2., 2., 2.,1., 1., 2., 1., 2., 1., 1., 1., 1., 1., 1., 2., 2., 1., 1., 2., 1., 1., 1., 1., 2., 2., 2., 1., 1., 1., 1., 2., 1., 2., 2., 2., 2., 2.,1., 1., 2., 1., 2., 1., 2., 1., 2., 1., 1., 1., 1., 1., 1., 2., 2., 1., 2., 2., 1., 2., 2., 2., 1., 2., 1., 2., 2., 2., 1., 1., 1., 2.,1., 1., 2., 2., 2., 2., 1., 2., 2., 1., 2., 2., 1., 2., 1., 1., 1., 2., 1., 2., 2., 1., 2., 1., 1., 1., 1., 1., 1., 1.), c(1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 0., 1., 0.,0., 1., 1., 1., 1., 1., 1., 0., 1., 1., 1., 1., 0., 1., 1., 1., 0., 1., 1., 0., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 0.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 2., 1., 1., 1., 1., 0., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,0., 1., 1., 1., 1., 1., 0., 1., 1., 1., 1., 1., 1.) , c(1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 2., 1., 2., 1., 2., 1., 1., 1., 1., 1., 2., 1., 2., 1., 2., 2., 1., 1., 1., 1., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 2., 1., 1., 2., 1., 1.,2., 2., 1., 1., 1., 1., 1., 1., 1., 1., 2., 2., 1., 2., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 2.,1., 2., 2., 1., 1., 1., 2., 2., 1., 1., 2., 1., 2., 2., 1., 1., 1., 1., 1., 1., 2., 1., 1., 2., 1., 2., 1., 2., 1., 1., 1., 1., 2., 1.,2., 1., 1., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 0., 1., 0., 0., 1., 1., 1., 1., 2., 1., 0., 1., 2., 1., 1., 0., 1., 1., 1., 0.,1., 2., 0., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 2., 1., 0., 1., 1., 1., 1., 1., 2., 1., 2., 1., 2., 1., 1., 1., 1., 1., 2., 1.,1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 2., 2., 1., 1., 2., 0., 2., 2., 1., 1., 2., 1., 1.,1., 1., 2., 1., 1., 1., 1., 2., 1., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1.,1., 1., 1., 1., 2., 2., 1., 1., 2., 1., 1., 2., 1., 1., 2., 2., 2., 1., 2., 1., 1., 1., 2., 2., 1., 1., 1., 2., 1., 1., 1., 1., 2., 1.,1., 1., 1., 1., 1., 2., 2., 2., 2., 1., 1., 1., 1., 1., 2., 1., 1., 1., 2., 2., 1., 1., 1., 1., 1., 1., 2., 2., 2., 1., 1., 1., 1., 2.,1., 2., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 2., 2., 2., 2., 2., 2., 1., 1., 2., 1., 1., 1., 2., 2., 1., 1., 1., 2., 1.,1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 2., 1., 1., 1., 1., 1., 2., 1., 1., 2., 1., 2., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 1.,1., 1., 2., 1., 2., 2., 2., 2., 1., 1., 1., 1., 1., 2., 1., 1., 1., 0., 2., 1., 1., 1., 1., 0., 1., 1., 1., 2., 2., 2.) , c(1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 2., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 2.,1., 1., 1., 1., 1., 1., 1., 0., 1., 1., 1., 1., 2., 1., 1., 1., 2., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,0., 1., 1., 1., 1., 1., 1., 0., 1., 1., 1., 2., 0., 0., 1., 1., 0., 2., 1., 0., 1., 1., 1., 1., 1., 0., 1., 1., 2., 1., 1., 1., 2., 1.,2., 1., 2., 1., 0., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 2., 2., 1., 1., 2., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 0., 1., 1., 2., 2., 1., 1., 1., 1., 1., 1., 1., 0., 1., 2., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1.,1., 2., 1., 1., 1., 2., 1., 2., 1., 1., 1., 2., 1., 1., 1., 0., 1., 2., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 2., 1., 1., 1., 2., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2.,1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 2., 1., 1.,1., 1., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 2., 1., 2., 1., 1., 1., 1., 1.,2., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 2., 1., 2., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1.,0., 1., 1., 2., 1., 1., 0., 2., 1., 1., 1., 1., 1.) , c(1., 2., 2., 2., 1., 1., 2., 2., 1., 2., 1., 1., 1., 1., 1., 2., 1., 2., 1., 2., 1., 1., 1., 2., 1., 1., 1., 1., 1., 2., 2., 2., 1., 2., 2., 1.,2., 1., 1., 1., 1., 1., 2., 2., 2., 2., 2., 1., 1., 2., 2., 1., 1., 2., 1., 1., 1., 2., 2., 1., 2., 1., 1., 2., 1., 2., 1., 2., 1., 1.,2., 2., 1., 1., 2., 2., 1., 2., 2., 2., 2., 1., 2., 2., 1., 1., 1., 1., 1., 1., 2., 1., 1., 2., 1., 1., 2., 1., 2., 1., 1., 1., 1., 2.,2., 1., 2., 2., 1., 1., 2., 0., 2., 2., 2., 2., 2., 1., 2., 1., 2., 1., 2., 1., 2., 2., 2., 1., 2., 1., 2., 1., 2., 1., 1., 1., 1., 2.,0., 1., 1., 2., 2., 2., 2., 0., 2., 2., 1., 2., 0., 0., 1., 2., 0., 2., 1., 0., 1., 2., 1., 1., 1., 0., 2., 2., 2., 1., 1., 2., 2., 1.,2., 2., 2., 1., 0., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 2., 2., 1., 1., 2., 2., 2., 1., 1., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2.,1., 2., 2., 1., 1., 1., 1., 1., 2., 0., 2., 2., 2., 2., 2., 1., 2., 1., 2., 2., 1., 0., 1., 2., 2., 2., 2., 1., 1., 2., 2., 1., 2., 2.,2., 2., 1., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 1., 1., 0., 2., 2., 2., 2., 2., 1., 1., 2., 1., 1., 2., 2., 1., 2., 2., 1., 1., 2.,1., 1., 1., 2., 2., 2., 1., 1., 1., 2., 2., 2., 2., 2., 2., 1., 1., 2., 2., 1., 2., 1., 1., 2., 1., 2., 1., 2., 1., 1., 1., 1., 2., 2.,2., 2., 2., 2., 2., 2., 1., 1., 1., 1., 1., 1., 2., 1., 1., 2., 1., 2., 1., 1., 1., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 1.,1., 1., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 2., 1., 2., 2., 1., 1., 2., 2., 2., 2., 2., 1., 1., 2., 2., 2., 2., 2., 1., 2., 2., 1.,2., 2., 1., 2., 2., 2., 2., 2., 2., 1., 1., 1., 2., 1., 1., 2., 1., 2., 2., 2., 2., 1., 1., 2., 1., 2., 2., 1., 2., 2., 2., 1., 2., 1.,0., 2., 2., 2., 2., 2., 0., 2., 1., 2., 1., 1., 2.) , c(2., 2., 1., 1., 2., 2., 1., 1., 2., 1., 1., 2., 2., 2., 1., 1., 2., 1., 2., 1., 1., 2., 2., 1., 2., 2., 2., 2., 2., 2., 1., 1., 2., 1., 1., 2., 1., 2., 2., 2., 2., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 2., 2.,2., 2., 2., 2., 1., 1., 2., 1., 2., 2., 1., 2., 1., 2., 1., 1., 2., 1., 1., 1., 2., 1., 1., 2., 2., 1., 1., 1., 2., 1., 1., 1., 2., 1.,2., 1., 1., 1., 2., 2., 1., 1., 2., 1., 2., 1., 2., 2., 2., 2., 1., 1., 2., 1., 1., 2., 2., 2., 2., 1., 1., 1., 1., 1., 2., 1., 2., 1.,2., 1., 2., 1., 1., 1., 2., 1., 2., 1., 2., 1., 2., 2., 1., 2., 1., 2., 2., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 2., 1., 1.,2., 1., 2., 2., 1., 2., 2., 1., 2., 1., 1., 1., 2., 2., 1., 1., 2., 1., 2., 1., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 1., 1.,2., 2., 1., 1., 1., 2., 2., 1., 1., 2., 2., 1., 2., 1., 1., 2., 1., 2., 1., 1., 2., 1., 1., 2., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1.,2., 1., 1., 2., 1., 2., 1., 1., 1., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 2., 1., 1., 2., 2., 2., 1., 2.,1., 1., 1., 1., 1., 2., 1., 2., 2., 1., 1., 2., 1., 1., 2., 2., 1., 2., 2., 2., 1., 1., 1., 2., 2., 1., 1., 1., 1., 1., 1., 1., 2., 2.,1., 1., 2., 1., 2., 2., 1., 2., 1., 2., 2., 2., 2., 2., 2., 1., 1., 1., 1., 1., 2., 1., 1., 2., 2., 2., 2., 1., 1., 2., 2., 2., 2., 1.,1., 2., 2., 1., 2., 1., 1., 1., 1., 2., 1., 1., 1., 2., 1., 1., 1., 1., 2., 2., 1., 1., 2., 2., 1., 2., 2., 1., 1., 1., 2., 1., 1., 2.,2., 1., 1., 1., 1., 1., 2., 2., 1., 1., 1., 1., 1., 2., 1., 1., 1., 2., 1., 2., 1., 1., 1., 1., 1., 1., 2., 1., 2., 1., 1., 2., 1., 2.,1., 1., 1., 1., 1., 2., 1., 1., 1., 2., 2., 1., 1., 1., 2., 1., 2., 1., 1., 1., 1., 1., 1., 2., 1., 2., 1., 1., 2., 1.) , c(2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2.,2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2.,2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2.,2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 1., 2., 1., 2., 2., 2., 1.,2., 1., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 1., 2., 1., 2., 2., 2.,2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 1., 2., 2., 2., 2., 1., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 1.,2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 1., 2., 2., 2.,2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 1., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,1., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2.,2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,1., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 1., 2., 2., 1., 2., 2., 2., 1., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 1., 2.,2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2.,2., 1., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 1., 2., 2., 1., 2., 2., 2., 1., 2., 2., 1., 2., 2.)) , names = c("y3", "sex3", "V19", "V20", "V29", "V30", "V35", "V36") , row.names = c("1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14","15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26","27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "55", "56", "57", "58", "59", "60", "61", "62", "63", "64", "65", "66", "67", "68", "69", "70", "71", "72", "73", "74", "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90", "91", "92", "93", "94", "95", "96", "97", "98", "99", "100", "101", "102", "103", "104", "105", "106", "107", "108", "109", "110", "111", "112", "113", "114", "115", "116", "117", "118","119", "120", "121", "122", "123", "124", "125", "126", "127", "128", "129", "130", "131", "132", "133", "134", "135", "136", "137", "138", "139", "140", "141", "142", "143", "144", "145", "146", "147", "148","149", "150", "151", "152", "153", "154", "155", "156", "157", "158","159", "160", "161", "162", "163", "164", "165", "166", "167", "168", "169", "170", "171", "172", "173", "174", "175", "176", "177", "178","179", "180", "181", "182", "183", "184", "185", "186", "187", "188","189", "190", "191", "192", "193", "194", "195", "196", "197", "198", "199", "200", "201", "202", "203", "204", "205", "206", "207", "208","209", "210", "211", "212", "213", "214", "215", "216", "217", "218","219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237", "238","239", "240", "241", "242", "243", "244", "245", "246", "247", "248","249", "250", "251", "252", "253", "254", "255", "256", "257", "258", "259", "260", "261", "262", "263", "264", "265", "266", "267", "268","269", "270", "271", "272", "273", "274", "275", "276", "277", "278","279", "280", "281", "282", "283", "284", "285", "286", "287", "288", "289", "290", "291", "292", "293", "294", "295", "296", "297", "298","299", "300", "301", "302", "303", "304", "305", "306", "307", "308","309", "310", "311", "312", "313", "314", "315", "316", "317", "318", "319", "320", "321", "322", "323", "324", "325", "326", "327", "328","329", "330", "331", "332", "333", "334", "335", "336", "337", "338","339", "340", "341", "342", "343", "344", "345", "346", "347", "348", "349", "350", "351", "352", "353", "354", "355", "356", "357", "358","359", "360", "361", "362", "363", "364", "365", "366", "367", "368","369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385", "386", "387", "388","389", "390", "391", "392", "393", "394", "395", "396", "397", "398","399", "400", "401", "402", "403", "404", "405", "406", "407", "408", "409", "410", "411", "412", "413", "414", "415", "416", "417", "418","419", "420", "421", "422", "423"), class = "data.frame") # Jason Sinnwell 3/2004 # Mayo Clinic, Biostatistics if(verbose) cat("setting up data...\n") # prepare a short example dataset, labaled as '3' # ht3 <- source("dump.ht3.s"), this is now at top of file geno3 <- data.test.glm[,-(1:2)] sex3 <- data.test.glm$sex y3 <- data.test.glm$y3 set.seed(10) rgaus3 <- ifelse(y3==1, rnorm(423, .5, 1), rnorm(423)) label3<-c("M1","M2","M3") geno3<-setupGeno(geno3, miss.val=c(0,NA)) my.data3<-data.frame(geno3=geno3, sex3=sex3, y3=y3, gaus3=rgaus3, gaus3.100=rgaus3*100) # use freq.min as a guide for choosing minimum hap frequency freq.min3 <- 5/(2*nrow(geno3)) # prepare the hla dataset, # runs a lot longer, and MS alleles don't all start w/ 1, 2... label <-c("DQB","DRB","B") data(hla.demo) y <- hla.demo$resp y.bin <- 1*(hla.demo$resp.cat=="low") geno <- as.matrix(hla.demo[,c(17,18,21:24)]) geno <- setupGeno(geno, miss.val=c(0,NA)) # geno now has an attribute 'unique.alleles' which must be passed to # haplo.glm as allele.lev=attributes(geno)$unique.alleles, see below my.data <- data.frame(geno=geno, age=hla.demo$age, male=hla.demo$male, y=y, y.bin=y.bin) seed <- c(17, 53, 1, 40, 37, 0, 62, 56, 5, 52, 12, 1) if(verbose) cat("regular haplo.glm, additive genetic trait, and \n") set.seed(seed) fit3.add <- haplo.glm(y3~geno3, family=binomial,na.action="na.geno.keep", data=my.data3, locus.label=label3, miss.val = c(0, NA), method = "glm.fit", model = FALSE, x = FALSE, y = TRUE, contrasts = NULL, control = haplo.glm.control(haplo.freq.min=freq.min3, haplo.effect="add", haplo.base = NULL, sum.rare.min = 0.001, haplo.min.info = 0.001,keep.rare.haplo = TRUE, glm.c = glm.control(maxit = 500), em.c = haplo.em.control())) set.seed(seed) fit3.add.sex <- haplo.glm(y3~geno3+sex3, family=binomial,na.action="na.geno.keep", data=my.data3, locus.label=label3, miss.val = c(0, NA), method = "glm.fit", model = FALSE, x = FALSE, y = TRUE, contrasts = NULL, control = haplo.glm.control(haplo.freq.min=freq.min3, haplo.effect="add", haplo.base = NULL, sum.rare.min = 0.001, haplo.min.info = 0.001,keep.rare.haplo = TRUE, glm.c = glm.control(maxit = 500), em.c = haplo.em.control())) anova3 <- anova(fit3.add, fit3.add.sex) if(verbose) cat("fit a binary trait\n") set.seed(seed) fit.hla.bin <- haplo.glm(y.bin ~ male + geno, family = binomial, na.action="na.geno.keep", data=my.data, locus.label=label, control = haplo.glm.control(haplo.min.count=8)) if(verbose) cat(" gaussian with covariates, additive\n") set.seed(seed) fit.hla.gaus.gender <- haplo.glm(y ~ male + geno, family = gaussian, na.action="na.geno.keep", data=my.data, locus.label=label, control = haplo.glm.control(haplo.min.count=5)) if(verbose) cat("gaussian with covariate, multiplicative\n") set.seed(seed) fit.hla.gaus.inter <- haplo.glm(y ~ male * geno, family = gaussian, na.action="na.geno.keep", data=my.data, locus.label=label, control = haplo.glm.control(haplo.min.count = 5)) anova.hlagaus <- anova(fit.hla.gaus.gender, fit.hla.gaus.inter) if(verbose) cat("print anova results\n") cat("3-locus haplotype from a user\n") print(anova3) cat("hla haplotype additive and interactions\n") print(anova.hlagaus) cat("try to run anova one fit, this returns nothing\n") anova(fit.hla.gaus.inter) print(warnings()) haplo.stats/tests/expanded/test.haplo.scan.R0000644000176200001440000001072114672315243020603 0ustar liggesusers ######## test.haplo.scan.q: test the haplo.scan function ########## # Jason Sinnwell 3/2005 # # test haplo.scan under various settings # sink all of the results into a file # check them against known checked results by a diff command (unix) # ##################################################################### ## package: haplo.stats ## test script: haplo.scan verbose=TRUE Sys.setlocale("LC_ALL", "C") Sys.getlocale() require(haplo.stats) # test different options for haplo.scan, # sink all of the results into a file # check them against known checked results by a diff command (unix) # use check.haplo.scan.s for splus and check.haplo.scan.r for r versions #if(update) sink(goldfile) else sink("sink.haplo.scan.out") seed <- c(45, 16, 22, 24, 15, 3, 11, 47, 24, 40, 18, 0) set.seed(seed) runif(10) cat("\n Using a random numeric dataset, 10 loci, width=4 sim=100 \n\n") ## regular case, default parameters for 10-locus dataset set.seed(seed) tmp <- ifelse(runif(2000)>.3, 1, 2) geno <- matrix(tmp, ncol=20) y <- rep(c(0,1),c(50,50)) ## show verbose on simulations. set.seed(seed) scan1 <- haplo.scan(y = y, geno = geno, miss.val=c(0,NA), width=4, em.control=haplo.em.control(loci.insert.order = NULL, insert.batch.size = 6, min.posterior = 1e-07, tol = 1e-05, max.iter = 5000, random.start = 0, n.try = 10, iseed = NULL, max.haps.limit = 2000000, verbose=0), sim.control=score.sim.control(p.threshold = 0.25, min.sim = 50, max.sim = 1000, verbose = FALSE)) print.haplo.scan(scan1,digits=5) cat("\n Using an all character dataset, 7 loci, width=3 \n\n") ## a character allele dataset geno.char <- matrix(c('a','a','b','b','c','C','d','d','F','f','g','G','h1','h1', 'a','A','B','B','c','c','d','d','F','F','g','G','H','h1', 'a','a','b','b','c','c','d','d','F','f','g','G','h2','h2', 'a','a','B','B','C','c','d','d','f','f','g','G','h2','h1', 'a','A','B','B','c','c','d','d','F','F','g','G','H','h2', 'a','a','b','B','C','C','D','d','f','f','G','G','h1','h2', 'a','a','B','B','c','c','d','d','F','f','G','g','h2','h2', 'a','a','z','z','c','c','d','d','F','F','g','G','h1','z', 'a','A','B','B','c','z','z','z','F','f','z','z','h1','h1', 'a','a','B','B','c','c','d','d','F','f','G','g','h1','h2'), nrow=10,byrow=T) y.char<- c(0,1,0,0,1,0,0,1,0,0) set.seed(seed) ## use all default parameters except for miss.val scan.char <- haplo.scan(y=y.char, geno=geno.char, miss.val="z", width=3, em.control=haplo.em.control(loci.insert.order = NULL, insert.batch.size = 6, min.posterior = 1e-07, tol = 1e-05, max.iter = 5000, random.start = 0, n.try = 10, max.haps.limit = 2000000., verbose = 0), sim.control=score.sim.control(p.threshold = 0.25, min.sim = 200, max.sim = 1000., verbose = FALSE)) print.haplo.scan(scan.char, digits=5) cat("\n Using hla dataset, 8 loci, sim=10, width=3 \n\n") ## use the hla dataset, just the first 8 markers. slide=3, sim=10 data(hla.demo) geno.11 <- hla.demo[,-c(1:4)] y.bin <- 1*(hla.demo$resp.cat=="low") hla.summary <- summaryGeno(geno.11[,1:16], miss.val=c(0,NA)) ## track those subjects with too many possible haplotype pairs ( > 10,000) many.haps <- (1:length(y.bin))[hla.summary[,4]>10000] length(many.haps) many.haps ## For speed, or even just so it will finish, make y.bin and geno.scan ## for genotypes that don't have too many ambigous haplotypes geno.scan <- geno.11[-many.haps,] y.scan <- y.bin[-many.haps] set.seed(seed) runif(10) set.seed(seed) scan.hla <- haplo.scan(y.scan, geno.scan, width=3, em.control=haplo.em.control(loci.insert.order = NULL, insert.batch.size = 3, min.posterior = 1e-07, tol = 1e-05, max.iter = 5000, random.start = 0, n.try = 10, max.haps.limit = 2000000, verbose = 0), sim.control=score.sim.control(p.threshold = 0.25, min.sim = 10, max.sim = 10, verbose = TRUE)) print.haplo.scan(scan.hla, digits=5) haplo.stats/tests/expanded/test.anova.haplo.glm.Rout.save0000644000176200001440000005501714672315243023235 0ustar liggesusers R version 4.0.2 (2020-06-22) -- "Taking Off Again" Copyright (C) 2020 The R Foundation for Statistical Computing Platform: x86_64-pc-linux-gnu (64-bit) R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > > ## package: haplo.stats > ## test script: haplo.glm > > ## settings > verbose=TRUE > Sys.setlocale("LC_ALL", "C") [1] "LC_CTYPE=C;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=en_US.UTF-8;LC_PAPER=en_US.UTF-8;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=en_US.UTF-8;LC_IDENTIFICATION=C" > Sys.getlocale() [1] "LC_CTYPE=C;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=en_US.UTF-8;LC_PAPER=en_US.UTF-8;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=en_US.UTF-8;LC_IDENTIFICATION=C" > > require(haplo.stats) Loading required package: haplo.stats Loading required package: arsenal > > > ## this is a dataset borrowed from a haplo.stats user > # it has problems with recessive trait, but runs fast on all examples > > "data.test.glm" <- + structure(.Data = list(c(1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., + 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., + 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., + 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., + 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., + 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., + 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.) + , c(1., 2., 1., 2., 1., 1., 2., 1., 1., 2., 1., 2., 1., 1., 1., 1., 1., 2., 2., 1., 1., 1., 2., 2., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 2., 2.,2., 2., 2., 1., 1., 1., 1., 1., 2., 2., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 2., 2., 1., 1., 1., 1., 1., 1., 2., 2., 1., 1., + 1., 1., 2., 1., 2., 2., 1., 2., 1., 2., 1., 2., 2., 1., 2., 2., 2.,1., 1., 1., 1., 1., 2., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 2., 1., 1., 2., 2., 1., 2., 1., 1., 1., 2., 1., 2., 1., 2., 2., 1., 1.,1., 1., 2., 1., 2., 1., 2., 2., 1., 2., 1., 1., 2., 2., 1., 2., 2., + 2., 1., 2., 2., 1., 2., 2., 1., 2., 1., 1., 2., 1., 1., 1., 1., 2.,2., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 2., 1., 2., 1., 1., 1., 1., 2., 2.,1., 2., 1., 2., 2., 1., 2., 1., 1., 1., 2., 2., 1., 1., 1., 1., 2., + 1., 1., 1., 1., 2., 2., 1., 2., 2., 2., 1., 1., 1., 2., 1., 1., 2.,1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 2., 2., 2., 1., 1., 1., 2., 1., 2., 1., 2., 1., 2., 1., 2., 1., 1., 1., 1., 1., 1., 2., 2., 1.,2., 2., 2., 1., 1., 2., 1., 1., 1., 1., 1., 2., 2., 1., 1., 1., 2., + 1., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 2., 2., 1., 2., 1., 2.,1., 1., 1., 2., 1., 1., 1., 1., 2., 2., 1., 1., 2., 1., 2., 2., 1., 1., 2., 1., 1., 1., 1., 1., 2., 1., 2., 1., 1., 2., 1., 2., 2., 2.,1., 1., 2., 1., 2., 1., 1., 1., 1., 1., 1., 2., 2., 1., 1., 2., 1., + 1., 1., 1., 2., 2., 2., 1., 1., 1., 1., 2., 1., 2., 2., 2., 2., 2.,1., 1., 2., 1., 2., 1., 2., 1., 2., 1., 1., 1., 1., 1., 1., 2., 2., 1., 2., 2., 1., 2., 2., 2., 1., 2., 1., 2., 2., 2., 1., 1., 1., 2.,1., 1., 2., 2., 2., 2., 1., 2., 2., 1., 2., 2., 1., 2., 1., 1., 1., + 2., 1., 2., 2., 1., 2., 1., 1., 1., 1., 1., 1., 1.), + c(1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., + 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., + 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 0., 1., 0.,0., 1., 1., 1., 1., 1., 1., 0., 1., 1., 1., 1., 0., 1., 1., 1., 0., 1., 1., 0., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 0.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., + 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 2., 1., 1., 1., 1., 0., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., + 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., + 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., + 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,0., 1., 1., 1., 1., 1., 0., 1., 1., 1., 1., 1., 1.) + , c(1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 2., 1., 2., 1., 2., 1., 1., 1., 1., 1., 2., 1., 2., 1., 2., 2., 1., 1., 1., 1., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 2., 1., 1., 2., 1., 1.,2., 2., 1., 1., 1., 1., 1., 1., 1., 1., 2., 2., 1., 2., 1., 1., 1., + 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 2.,1., 2., 2., 1., 1., 1., 2., 2., 1., 1., 2., 1., 2., 2., 1., 1., 1., 1., 1., 1., 2., 1., 1., 2., 1., 2., 1., 2., 1., 1., 1., 1., 2., 1.,2., 1., 1., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 0., 1., 0., + 0., 1., 1., 1., 1., 2., 1., 0., 1., 2., 1., 1., 0., 1., 1., 1., 0.,1., 2., 0., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 2., 1., 0., 1., 1., 1., 1., 1., 2., 1., 2., 1., 2., 1., 1., 1., 1., 1., 2., 1.,1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 2., + 1., 1., 1., 1., 2., 2., 1., 1., 2., 0., 2., 2., 1., 1., 2., 1., 1.,1., 1., 2., 1., 1., 1., 1., 2., 1., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1.,1., 1., 1., 1., 2., 2., 1., 1., 2., 1., 1., 2., 1., 1., 2., 2., 2., + 1., 2., 1., 1., 1., 2., 2., 1., 1., 1., 2., 1., 1., 1., 1., 2., 1.,1., 1., 1., 1., 1., 2., 2., 2., 2., 1., 1., 1., 1., 1., 2., 1., 1., 1., 2., 2., 1., 1., 1., 1., 1., 1., 2., 2., 2., 1., 1., 1., 1., 2.,1., 2., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 2., 2., + 2., 2., 2., 2., 1., 1., 2., 1., 1., 1., 2., 2., 1., 1., 1., 2., 1.,1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 2., 1., 1., 1., 1., 1., 2., 1., 1., 2., 1., 2., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 1.,1., 1., 2., 1., 2., 2., 2., 2., 1., 1., 1., 1., 1., 2., 1., 1., 1., + 0., 2., 1., 1., 1., 1., 0., 1., 1., 1., 2., 2., 2.) + , c(1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., + 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 2., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 2.,1., 1., 1., 1., 1., 1., 1., 0., 1., 1., 1., 1., 2., 1., 1., 1., 2., + 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,0., 1., 1., 1., 1., 1., 1., 0., 1., 1., 1., 2., 0., 0., 1., 1., 0., 2., 1., 0., 1., 1., 1., 1., 1., 0., 1., 1., 2., 1., 1., 1., 2., 1.,2., 1., 2., 1., 0., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 2., 2., + 1., 1., 2., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 0., 1., 1., 2., 2., 1., 1., 1., 1., 1., 1., 1., 0., 1., 2., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1.,1., 2., 1., 1., 1., 2., 1., 2., 1., 1., 1., 2., 1., 1., 1., 0., 1., + 2., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 2., 1., 1., 1., 2., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2.,1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., + 2., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 2., 1., 1.,1., 1., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 2., 1., 2., 1., 1., 1., 1., 1.,2., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., + 1., 2., 1., 2., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1.,0., 1., 1., 2., 1., 1., 0., 2., 1., 1., 1., 1., 1.) + , c(1., 2., 2., 2., 1., 1., 2., 2., 1., 2., 1., 1., 1., 1., 1., 2., 1., 2., 1., 2., 1., 1., 1., 2., 1., 1., 1., 1., 1., 2., 2., 2., 1., 2., 2., 1.,2., 1., 1., 1., 1., 1., 2., 2., 2., 2., 2., 1., 1., 2., 2., 1., 1., + 2., 1., 1., 1., 2., 2., 1., 2., 1., 1., 2., 1., 2., 1., 2., 1., 1.,2., 2., 1., 1., 2., 2., 1., 2., 2., 2., 2., 1., 2., 2., 1., 1., 1., 1., 1., 1., 2., 1., 1., 2., 1., 1., 2., 1., 2., 1., 1., 1., 1., 2.,2., 1., 2., 2., 1., 1., 2., 0., 2., 2., 2., 2., 2., 1., 2., 1., 2., + 1., 2., 1., 2., 2., 2., 1., 2., 1., 2., 1., 2., 1., 1., 1., 1., 2.,0., 1., 1., 2., 2., 2., 2., 0., 2., 2., 1., 2., 0., 0., 1., 2., 0., 2., 1., 0., 1., 2., 1., 1., 1., 0., 2., 2., 2., 1., 1., 2., 2., 1.,2., 2., 2., 1., 0., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 2., 2., + 1., 1., 2., 2., 2., 1., 1., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2.,1., 2., 2., 1., 1., 1., 1., 1., 2., 0., 2., 2., 2., 2., 2., 1., 2., 1., 2., 2., 1., 0., 1., 2., 2., 2., 2., 1., 1., 2., 2., 1., 2., 2.,2., 2., 1., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 1., 1., 0., 2., + 2., 2., 2., 2., 1., 1., 2., 1., 1., 2., 2., 1., 2., 2., 1., 1., 2.,1., 1., 1., 2., 2., 2., 1., 1., 1., 2., 2., 2., 2., 2., 2., 1., 1., 2., 2., 1., 2., 1., 1., 2., 1., 2., 1., 2., 1., 1., 1., 1., 2., 2.,2., 2., 2., 2., 2., 2., 1., 1., 1., 1., 1., 1., 2., 1., 1., 2., 1., + 2., 1., 1., 1., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 1.,1., 1., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 2., 1., 2., 2., 1., 1., 2., 2., 2., 2., 2., 1., 1., 2., 2., 2., 2., 2., 1., 2., 2., 1.,2., 2., 1., 2., 2., 2., 2., 2., 2., 1., 1., 1., 2., 1., 1., 2., 1., + 2., 2., 2., 2., 1., 1., 2., 1., 2., 2., 1., 2., 2., 2., 1., 2., 1.,0., 2., 2., 2., 2., 2., 0., 2., 1., 2., 1., 1., 2.) + , c(2., 2., 1., 1., 2., 2., 1., 1., 2., 1., 1., 2., 2., 2., 1., 1., 2., 1., 2., 1., 1., 2., 2., 1., 2., 2., 2., 2., 2., 2., 1., 1., 2., 1., 1., 2., 1., 2., 2., 2., 2., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 2., 2.,2., 2., 2., 2., 1., 1., 2., 1., 2., 2., 1., 2., 1., 2., 1., 1., 2., + 1., 1., 1., 2., 1., 1., 2., 2., 1., 1., 1., 2., 1., 1., 1., 2., 1.,2., 1., 1., 1., 2., 2., 1., 1., 2., 1., 2., 1., 2., 2., 2., 2., 1., 1., 2., 1., 1., 2., 2., 2., 2., 1., 1., 1., 1., 1., 2., 1., 2., 1.,2., 1., 2., 1., 1., 1., 2., 1., 2., 1., 2., 1., 2., 2., 1., 2., 1., + 2., 2., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 2., 1., 1.,2., 1., 2., 2., 1., 2., 2., 1., 2., 1., 1., 1., 2., 2., 1., 1., 2., 1., 2., 1., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 1., 1.,2., 2., 1., 1., 1., 2., 2., 1., 1., 2., 2., 1., 2., 1., 1., 2., 1., + 2., 1., 1., 2., 1., 1., 2., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1.,2., 1., 1., 2., 1., 2., 1., 1., 1., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 2., 1., 1., 2., 2., 2., 1., 2.,1., 1., 1., 1., 1., 2., 1., 2., 2., 1., 1., 2., 1., 1., 2., 2., 1., + 2., 2., 2., 1., 1., 1., 2., 2., 1., 1., 1., 1., 1., 1., 1., 2., 2.,1., 1., 2., 1., 2., 2., 1., 2., 1., 2., 2., 2., 2., 2., 2., 1., 1., 1., 1., 1., 2., 1., 1., 2., 2., 2., 2., 1., 1., 2., 2., 2., 2., 1.,1., 2., 2., 1., 2., 1., 1., 1., 1., 2., 1., 1., 1., 2., 1., 1., 1., + 1., 2., 2., 1., 1., 2., 2., 1., 2., 2., 1., 1., 1., 2., 1., 1., 2.,2., 1., 1., 1., 1., 1., 2., 2., 1., 1., 1., 1., 1., 2., 1., 1., 1., 2., 1., 2., 1., 1., 1., 1., 1., 1., 2., 1., 2., 1., 1., 2., 1., 2.,1., 1., 1., 1., 1., 2., 1., 1., 1., 2., 2., 1., 1., 1., 2., 1., 2., + 1., 1., 1., 1., 1., 1., 2., 1., 2., 1., 1., 2., 1.) + , c(2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2.,2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2.,2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., + 2., 2., 2., 2., 1., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2.,2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 1., 2., 1., 2., 2., 2., 1.,2., 1., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., + 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 1., 2., 1., 2., 2., 2.,2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 1., 2., 2., 2., 2., 1., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 1.,2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., + 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 1., 2., 2., 2.,2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 1., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,1., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 1., + 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2.,2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,1., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 1., 2., 2., + 1., 2., 2., 2., 1., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 1., 2.,2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2.,2., 1., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., + 1., 2., 2., 1., 2., 2., 2., 1., 2., 2., 1., 2., 2.)) + , names = c("y3", "sex3", "V19", "V20", "V29", "V30", "V35", "V36") + , row.names = c("1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14","15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26","27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", + "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "55", "56", "57", "58", "59", "60", "61", "62", "63", "64", "65", "66", "67", "68", "69", "70", "71", "72", "73", "74", + "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90", "91", "92", "93", "94", "95", "96", "97", "98", "99", "100", "101", "102", "103", "104", "105", "106", "107", "108", + "109", "110", "111", "112", "113", "114", "115", "116", "117", "118","119", "120", "121", "122", "123", "124", "125", "126", "127", "128", "129", "130", "131", "132", "133", "134", "135", "136", "137", "138", + "139", "140", "141", "142", "143", "144", "145", "146", "147", "148","149", "150", "151", "152", "153", "154", "155", "156", "157", "158","159", "160", "161", "162", "163", "164", "165", "166", "167", "168", + "169", "170", "171", "172", "173", "174", "175", "176", "177", "178","179", "180", "181", "182", "183", "184", "185", "186", "187", "188","189", "190", "191", "192", "193", "194", "195", "196", "197", "198", + "199", "200", "201", "202", "203", "204", "205", "206", "207", "208","209", "210", "211", "212", "213", "214", "215", "216", "217", "218","219", "220", "221", "222", "223", "224", "225", "226", "227", "228", + "229", "230", "231", "232", "233", "234", "235", "236", "237", "238","239", "240", "241", "242", "243", "244", "245", "246", "247", "248","249", "250", "251", "252", "253", "254", "255", "256", "257", "258", + "259", "260", "261", "262", "263", "264", "265", "266", "267", "268","269", "270", "271", "272", "273", "274", "275", "276", "277", "278","279", "280", "281", "282", "283", "284", "285", "286", "287", "288", + "289", "290", "291", "292", "293", "294", "295", "296", "297", "298","299", "300", "301", "302", "303", "304", "305", "306", "307", "308","309", "310", "311", "312", "313", "314", "315", "316", "317", "318", + "319", "320", "321", "322", "323", "324", "325", "326", "327", "328","329", "330", "331", "332", "333", "334", "335", "336", "337", "338","339", "340", "341", "342", "343", "344", "345", "346", "347", "348", + "349", "350", "351", "352", "353", "354", "355", "356", "357", "358","359", "360", "361", "362", "363", "364", "365", "366", "367", "368","369", "370", "371", "372", "373", "374", "375", "376", "377", "378", + "379", "380", "381", "382", "383", "384", "385", "386", "387", "388","389", "390", "391", "392", "393", "394", "395", "396", "397", "398","399", "400", "401", "402", "403", "404", "405", "406", "407", "408", + "409", "410", "411", "412", "413", "414", "415", "416", "417", "418","419", "420", "421", "422", "423"), class = "data.frame") > > > # Jason Sinnwell 3/2004 > # Mayo Clinic, Biostatistics > > > if(verbose) cat("setting up data...\n") setting up data... > > # prepare a short example dataset, labaled as '3' > # ht3 <- source("dump.ht3.s"), this is now at top of file > geno3 <- data.test.glm[,-(1:2)] > sex3 <- data.test.glm$sex > y3 <- data.test.glm$y3 > set.seed(10) > rgaus3 <- ifelse(y3==1, rnorm(423, .5, 1), rnorm(423)) > > label3<-c("M1","M2","M3") > geno3<-setupGeno(geno3, miss.val=c(0,NA)) > my.data3<-data.frame(geno3=geno3, sex3=sex3, y3=y3, + gaus3=rgaus3, gaus3.100=rgaus3*100) > > > # use freq.min as a guide for choosing minimum hap frequency > freq.min3 <- 5/(2*nrow(geno3)) > > > # prepare the hla dataset, > # runs a lot longer, and MS alleles don't all start w/ 1, 2... > label <-c("DQB","DRB","B") > > data(hla.demo) > > y <- hla.demo$resp > y.bin <- 1*(hla.demo$resp.cat=="low") > > geno <- as.matrix(hla.demo[,c(17,18,21:24)]) > > geno <- setupGeno(geno, miss.val=c(0,NA)) > > # geno now has an attribute 'unique.alleles' which must be passed to > # haplo.glm as allele.lev=attributes(geno)$unique.alleles, see below > > my.data <- data.frame(geno=geno, age=hla.demo$age, male=hla.demo$male, + y=y, y.bin=y.bin) > > seed <- c(17, 53, 1, 40, 37, 0, 62, 56, 5, 52, 12, 1) > > if(verbose) cat("regular haplo.glm, additive genetic trait, and \n") regular haplo.glm, additive genetic trait, and > set.seed(seed) > fit3.add <- haplo.glm(y3~geno3, family=binomial,na.action="na.geno.keep", + data=my.data3, locus.label=label3, miss.val = c(0, NA), + method = "glm.fit", model = FALSE, x = FALSE, y = TRUE, contrasts = NULL, + control = haplo.glm.control(haplo.freq.min=freq.min3, haplo.effect="add", + haplo.base = NULL, sum.rare.min = 0.001, + haplo.min.info = 0.001,keep.rare.haplo = TRUE, + glm.c = glm.control(maxit = 500), em.c = haplo.em.control())) > > set.seed(seed) > fit3.add.sex <- haplo.glm(y3~geno3+sex3, family=binomial,na.action="na.geno.keep", + data=my.data3, locus.label=label3, miss.val = c(0, NA), + method = "glm.fit", model = FALSE, x = FALSE, y = TRUE, contrasts = NULL, + control = haplo.glm.control(haplo.freq.min=freq.min3, haplo.effect="add", + haplo.base = NULL, sum.rare.min = 0.001, + haplo.min.info = 0.001,keep.rare.haplo = TRUE, + glm.c = glm.control(maxit = 500), em.c = haplo.em.control())) > > anova3 <- anova(fit3.add, fit3.add.sex) > > > if(verbose) cat("fit a binary trait\n") fit a binary trait > set.seed(seed) > fit.hla.bin <- haplo.glm(y.bin ~ male + geno, family = binomial, + na.action="na.geno.keep", data=my.data, locus.label=label, + control = haplo.glm.control(haplo.min.count=8)) > > if(verbose) cat(" gaussian with covariates, additive\n") gaussian with covariates, additive > > set.seed(seed) > fit.hla.gaus.gender <- haplo.glm(y ~ male + geno, family = gaussian, + na.action="na.geno.keep", + data=my.data, locus.label=label, + control = haplo.glm.control(haplo.min.count=5)) > > if(verbose) cat("gaussian with covariate, multiplicative\n") gaussian with covariate, multiplicative > set.seed(seed) > fit.hla.gaus.inter <- haplo.glm(y ~ male * geno, family = gaussian, + na.action="na.geno.keep", data=my.data, locus.label=label, + control = haplo.glm.control(haplo.min.count = 5)) > > anova.hlagaus <- anova(fit.hla.gaus.gender, fit.hla.gaus.inter) > > > if(verbose) cat("print anova results\n") print anova results > > > cat("3-locus haplotype from a user\n") 3-locus haplotype from a user > print(anova3) Analysis of Deviance Table Model 1: y3 ~ geno3 Model 2: y3 ~ geno3 + sex3 Resid. Df Resid. Dev Df Deviance Pr(>Chi) 1 416 508.44 2 415 507.97 1 0.47331 0.4915 > > cat("hla haplotype additive and interactions\n") hla haplotype additive and interactions > print(anova.hlagaus) Analysis of Deviance Table Model 1: y ~ male + geno Model 2: y ~ male * geno Resid. Df Resid. Dev Df Deviance Pr(>Chi) 1 200 252.33 2 182 225.33 18 27.007 0.2404 > > cat("try to run anova one fit, this returns nothing\n") try to run anova one fit, this returns nothing > anova(fit.hla.gaus.inter) Warning message: In anova.haplo.glm(fit.hla.gaus.inter) : This method only allows comparison between two or more glm/haplo.glm model fits. > print(warnings()) Warning message: In anova.haplo.glm(fit.hla.gaus.inter) : This method only allows comparison between two or more glm/haplo.glm model fits. > > > proc.time() user system elapsed 18.511 0.481 19.495 haplo.stats/tests/expanded/test.summaryGeno.R0000644000176200001440000000266514672315243021073 0ustar liggesusers## package: haplo.stats ## test script: summaryGeno ## settings #update=FALSE #goldfile="gold.summaryGeno.out" verbose=TRUE require(haplo.stats) if(verbose) cat("test two genotype matrices, one with char alleles, the other with 3 loci from hla data\n") ## make ficticious data set with an intention of some trend in ## haplotypes having H-allele at locus-H with F-allele at locus-F geno.char <- matrix(c('F','f','g','G','h1','h1', 'F','F','g','G','H','h1', 'F','f','g','G','h2','h2', 'f','f','g','G','h2','h1', 'F','F','g','G','H','h2', 'f','f','G','G','h1','h2', 'F','f','G','g','h2','h2', 'F','F','g','G','h1','z', 'F','f','z','z','h1','h1', 'F','f','G','g','h1','h2', 'F','f','G','G','h1','h2', 'F','F','g','G','h1','z', 'F','f','z','z','h1','h1', 'f','f','G','g','h1','h2'), nrow=14,byrow=T) chartbl <- summaryGeno(geno.char, miss.val="z") char.label <- c("F","G","H") data(hla.demo) hla.sub <- hla.demo[,c(1,2,3,4,17,18,21:24)] geno.hla <- hla.sub[,-c(1:4)] hla.label=c("DQB","DRB","HLA.B") hlatbl <- summaryGeno(geno.hla) #if(update) { # sink(file=goldfile) #} else { # sink("sink.summaryGeno.out") #} print(chartbl) print(hlatbl) #sink() haplo.stats/tests/expanded/test.summaryGeno.Rout.save0000644000176200001440000003027514672315243022556 0ustar liggesusers R version 2.14.0 (2011-10-31) Copyright (C) 2011 The R Foundation for Statistical Computing ISBN 3-900051-07-0 Platform: x86_64-unknown-linux-gnu (64-bit) R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > ## package: haplo.stats > ## test script: summaryGeno > > ## settings > #update=FALSE > #goldfile="gold.summaryGeno.out" > > verbose=TRUE > > require(haplo.stats) Loading required package: haplo.stats > > if(verbose) + cat("test two genotype matrices, one with char alleles, + the other with 3 loci from hla data\n") test two genotype matrices, one with char alleles, the other with 3 loci from hla data > > ## make ficticious data set with an intention of some trend in > ## haplotypes having H-allele at locus-H with F-allele at locus-F > geno.char <- matrix(c('F','f','g','G','h1','h1', + 'F','F','g','G','H','h1', + 'F','f','g','G','h2','h2', + 'f','f','g','G','h2','h1', + 'F','F','g','G','H','h2', + 'f','f','G','G','h1','h2', + 'F','f','G','g','h2','h2', + 'F','F','g','G','h1','z', + 'F','f','z','z','h1','h1', + 'F','f','G','g','h1','h2', + 'F','f','G','G','h1','h2', + 'F','F','g','G','h1','z', + 'F','f','z','z','h1','h1', + 'f','f','G','g','h1','h2'), nrow=14,byrow=T) > > chartbl <- summaryGeno(geno.char, miss.val="z") > > char.label <- c("F","G","H") > > data(hla.demo) > > hla.sub <- hla.demo[,c(1,2,3,4,17,18,21:24)] > geno.hla <- hla.sub[,-c(1:4)] > hla.label=c("DQB","DRB","HLA.B") > > > hlatbl <- summaryGeno(geno.hla) > > > #if(update) { > # sink(file=goldfile) > #} else { > # sink("sink.summaryGeno.out") > #} > > print(chartbl) missing0 missing1 missing2 N.enum.rows 1 3 0 0 2 2 3 0 0 2 3 3 0 0 2 4 3 0 0 2 5 3 0 0 2 6 3 0 0 1 7 3 0 0 2 8 2 1 0 5 9 2 0 1 4 10 3 0 0 4 11 3 0 0 2 12 2 1 0 5 13 2 0 1 4 14 3 0 0 2 > print(hlatbl) missing0 missing1 missing2 N.enum.rows 1 3 0 0 4 2 3 0 0 4 3 3 0 0 4 4 3 0 0 2 5 3 0 0 4 6 3 0 0 2 7 3 0 0 4 8 3 0 0 2 9 3 0 0 2 10 3 0 0 1 11 3 0 0 2 12 3 0 0 4 13 3 0 0 1 14 3 0 0 4 15 3 0 0 4 16 3 0 0 4 17 3 0 0 4 18 3 0 0 4 19 3 0 0 4 20 3 0 0 4 21 3 0 0 4 22 3 0 0 1 23 3 0 0 4 24 3 0 0 2 25 3 0 0 4 26 3 0 0 4 27 3 0 0 4 28 3 0 0 4 29 3 0 0 4 30 3 0 0 4 31 3 0 0 4 32 3 0 0 4 33 3 0 0 4 34 3 0 0 4 35 3 0 0 1 36 3 0 0 4 37 3 0 0 4 38 3 0 0 2 39 3 0 0 1 40 3 0 0 4 41 3 0 0 1 42 3 0 0 2 43 3 0 0 1 44 3 0 0 4 45 3 0 0 4 46 3 0 0 4 47 3 0 0 1 48 3 0 0 4 49 3 0 0 4 50 3 0 0 4 51 3 0 0 4 52 3 0 0 4 53 3 0 0 2 54 3 0 0 4 55 3 0 0 1 56 3 0 0 4 57 3 0 0 2 58 3 0 0 4 59 3 0 0 4 60 3 0 0 4 61 3 0 0 2 62 3 0 0 4 63 3 0 0 2 64 3 0 0 4 65 3 0 0 2 66 3 0 0 4 67 3 0 0 4 68 3 0 0 2 69 3 0 0 4 70 3 0 0 4 71 3 0 0 4 72 3 0 0 4 73 3 0 0 4 74 3 0 0 2 75 3 0 0 2 76 3 0 0 2 77 3 0 0 4 78 3 0 0 1 79 3 0 0 2 80 3 0 0 4 81 2 0 1 1800 82 3 0 0 2 83 3 0 0 1 84 3 0 0 2 85 3 0 0 4 86 3 0 0 4 87 3 0 0 2 88 3 0 0 1 89 3 0 0 4 90 3 0 0 4 91 3 0 0 4 92 3 0 0 2 93 3 0 0 4 94 3 0 0 4 95 3 0 0 4 96 3 0 0 4 97 3 0 0 4 98 3 0 0 4 99 3 0 0 4 100 3 0 0 4 101 3 0 0 4 102 3 0 0 4 103 3 0 0 4 104 3 0 0 4 105 3 0 0 4 106 3 0 0 2 107 3 0 0 2 108 3 0 0 4 109 3 0 0 4 110 3 0 0 4 111 3 0 0 4 112 3 0 0 4 113 3 0 0 2 114 3 0 0 4 115 3 0 0 4 116 3 0 0 4 117 3 0 0 4 118 3 0 0 4 119 3 0 0 4 120 3 0 0 2 121 3 0 0 4 122 3 0 0 4 123 3 0 0 2 124 3 0 0 2 125 3 0 0 2 126 3 0 0 4 127 3 0 0 4 128 3 0 0 2 129 3 0 0 4 130 3 0 0 4 131 3 0 0 4 132 3 0 0 2 133 3 0 0 4 134 3 0 0 1 135 3 0 0 4 136 3 0 0 2 137 1 0 2 129600 138 3 0 0 4 139 3 0 0 4 140 3 0 0 4 141 3 0 0 4 142 3 0 0 2 143 3 0 0 4 144 3 0 0 4 145 3 0 0 4 146 3 0 0 4 147 3 0 0 4 148 3 0 0 4 149 3 0 0 4 150 3 0 0 4 151 3 0 0 4 152 3 0 0 2 153 3 0 0 4 154 3 0 0 4 155 3 0 0 4 156 3 0 0 4 157 3 0 0 4 158 3 0 0 4 159 3 0 0 2 160 3 0 0 1 161 3 0 0 4 162 3 0 0 2 163 3 0 0 2 164 3 0 0 2 165 3 0 0 2 166 3 0 0 2 167 3 0 0 2 168 3 0 0 4 169 3 0 0 4 170 3 0 0 4 171 3 0 0 2 172 3 0 0 1 173 3 0 0 1 174 3 0 0 4 175 3 0 0 1 176 3 0 0 4 177 3 0 0 4 178 3 0 0 4 179 3 0 0 4 180 3 0 0 4 181 3 0 0 2 182 3 0 0 2 183 3 0 0 2 184 3 0 0 2 185 3 0 0 4 186 3 0 0 2 187 3 0 0 1 188 3 0 0 2 189 3 0 0 4 190 3 0 0 4 191 3 0 0 4 192 3 0 0 4 193 3 0 0 2 194 3 0 0 2 195 3 0 0 4 196 3 0 0 4 197 3 0 0 4 198 3 0 0 4 199 3 0 0 4 200 3 0 0 2 201 3 0 0 4 202 3 0 0 4 203 3 0 0 4 204 3 0 0 4 205 3 0 0 4 206 3 0 0 4 207 3 0 0 2 208 3 0 0 4 209 3 0 0 4 210 3 0 0 2 211 3 0 0 2 212 3 0 0 4 213 3 0 0 4 214 3 0 0 4 215 3 0 0 4 216 3 0 0 4 217 3 0 0 4 218 3 0 0 4 219 3 0 0 4 220 3 0 0 4 > > #sink() > > haplo.stats/tests/expanded/test.haplo.score.Rout.save0000644000176200001440000005620114672315243022462 0ustar liggesusers R version 4.0.2 (2020-06-22) -- "Taking Off Again" Copyright (C) 2020 The R Foundation for Statistical Computing Platform: x86_64-pc-linux-gnu (64-bit) R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > ## package: haplo.stats > ## test script: haplo.score > > ## settings > > verbose=TRUE > Sys.setlocale("LC_ALL", "C") [1] "LC_CTYPE=C;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=en_US.UTF-8;LC_PAPER=en_US.UTF-8;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=en_US.UTF-8;LC_IDENTIFICATION=C" > Sys.getlocale() [1] "LC_CTYPE=C;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=en_US.UTF-8;LC_PAPER=en_US.UTF-8;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=en_US.UTF-8;LC_IDENTIFICATION=C" > > require(haplo.stats) Loading required package: haplo.stats Loading required package: arsenal > > #library(haplo.stats, lib="/projects/bsi/gentools/R/lib214") > > > if(verbose) + cat("prepare two datasets, one with char alleles, the other 3 loci from hla data\n") prepare two datasets, one with char alleles, the other 3 loci from hla data > > ## make ficticious data set with an intention of some trend in > ## haplotypes having H-allele at locus-H with F-allele at locus-F > geno.char <- matrix(c('F','f','g','G','h1','h1', + 'F','F','g','G','H','h1', + 'F','f','g','G','h2','h2', + 'f','f','g','G','h2','h1', + 'F','F','g','G','H','h2', + 'f','f','G','G','h1','h2', + 'F','f','G','g','h2','h2', + 'F','F','g','G','h1','z', + 'F','f','z','z','h1','h1', + 'F','f','G','g','h1','h2', + 'F','f','G','G','h1','h2', + 'F','F','g','G','h1','z', + 'F','f','z','z','h1','h1', + 'f','f','G','g','h1','h2'), nrow=14,byrow=T) > > y.response <- c(2.0,4.5,1.8,2.1,5.2,1.3,3.4,2.5,2.2,1.9,2.1,1.2,3.0,1.9) > y.pheno <- c(0,1,0,0,1,0,0,1,0,0,0,1,1,0) > char.label <- c("F","G","H") > > data(hla.demo) > > hla.sub <- hla.demo[,c(1,2,3,4,17,18,21:24)] > geno.hla <- hla.sub[,-c(1:4)] > hla.resp <- hla.sub[,1] > hla.respcat <- hla.sub[,2] > hla.sex <- hla.sub[,3] > hla.label=c("DQB","DRB","HLA.B") > > seed <- c(33, 10, 39, 6, 16, 0, 40, 24, 12, 60, 7, 1) > set.seed(seed) > runif(10) [1] 0.44594048 0.39465031 0.48372887 0.91887596 0.84388144 0.51734962 [7] 0.43712500 0.34319822 0.01551696 0.11799116 > > if(verbose) cat("character alleles, binary trait, additive and dominant\n") character alleles, binary trait, additive and dominant > > set.seed(seed) > score.char.pheno.add <- haplo.score(y.pheno, geno.char, trait.type="binomial", + locus.label=char.label, miss.val='z', + offset = NA, x.adj = NA, min.count=4, simulate=FALSE, + haplo.effect="additive", + sim.control = score.sim.control(), + em.control = haplo.em.control()) > > print(score.char.pheno.add) -------------------------------------------------------------------------------- Haplotype Effect Model: additive -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- Global Score Statistics -------------------------------------------------------------------------------- global-stat = 7.64565, df = 3, p-val = 0.05393 -------------------------------------------------------------------------------- Haplotype-specific Scores -------------------------------------------------------------------------------- F G H Hap-Freq Hap-Score p-val [1,] f G h2 0.2415 -2.73534 0.00623 [2,] F G h1 0.14326 0.92066 0.35723 [3,] F g h1 0.16268 2.11048 0.03482 > > > set.seed(seed) > runif(10) [1] 0.44594048 0.39465031 0.48372887 0.91887596 0.84388144 0.51734962 [7] 0.43712500 0.34319822 0.01551696 0.11799116 > set.seed(seed) > score.char.pheno.dom <- haplo.score(y.pheno, geno.char, trait.type="binomial", + locus.label=char.label, miss.val='z', + offset = NA, x.adj=NA, min.count=4, simulate=FALSE, + haplo.effect="dom", + sim.control = score.sim.control(), + em.control = haplo.em.control()) > > print(score.char.pheno.dom) -------------------------------------------------------------------------------- Haplotype Effect Model: dom -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- Global Score Statistics -------------------------------------------------------------------------------- global-stat = 7.64565, df = 3, p-val = 0.05393 -------------------------------------------------------------------------------- Haplotype-specific Scores -------------------------------------------------------------------------------- F G H Hap-Freq Hap-Score p-val [1,] f G h2 0.2415 -2.73534 0.00623 [2,] F G h1 0.14326 0.92066 0.35723 [3,] F g h1 0.16268 2.11048 0.03482 > > if(verbose) cat("character alleles, gaussian trait\n") character alleles, gaussian trait > set.seed(seed) > score.char.gaus <- haplo.score(y.response, geno.char, trait.type="gaussian", + skip.haplo=.1, + locus.label=char.label, miss.val="z",simulate=TRUE, + sim.control=score.sim.control(min.sim=50, p.threshold=.25, + max.sim=1000,verbose=FALSE), + em.control = haplo.em.control()) > > print(score.char.gaus) -------------------------------------------------------------------------------- Haplotype Effect Model: additive -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- Global Score Statistics -------------------------------------------------------------------------------- global-stat = 5.20759, df = 5, p-val = 0.39107 -------------------------------------------------------------------------------- Global Simulation p-value Results -------------------------------------------------------------------------------- Global sim. p-val = 0.44 Max-Stat sim. p-val = 0.66 Number of Simulations, Global: 50 , Max-Stat: 50 -------------------------------------------------------------------------------- Haplotype-specific Scores -------------------------------------------------------------------------------- F G H Hap-Freq Hap-Score p-val sim p-val [1,] f G h2 0.2415 -1.35492 0.17544 0.18 [2,] F G h1 0.14326 -0.87249 0.38294 0.42 [3,] f g h1 0.13545 -0.63397 0.5261 0.58 [4,] F g h1 0.16268 0.29721 0.7663 0.8 [5,] F g h2 0.14042 1.25039 0.21116 0.26 > > if(verbose) cat("hla data, gaussian trait and x.adj\n") hla data, gaussian trait and x.adj > set.seed(seed) > score.hla.resp.adj <- haplo.score(hla.resp,geno.hla,trait.type="gaussian", + locus.label=hla.label, miss.val=0, x.adj=hla.sex, + simulate=FALSE, min.count=5) > > > print(score.hla.resp.adj) -------------------------------------------------------------------------------- Haplotype Effect Model: additive -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- Global Score Statistics -------------------------------------------------------------------------------- global-stat = 32.91534, df = 18, p-val = 0.01709 -------------------------------------------------------------------------------- Haplotype-specific Scores -------------------------------------------------------------------------------- DQB DRB HLA.B Hap-Freq Hap-Score p-val [1,] 21 3 8 0.10421 -2.39918 0.01643 [2,] 31 4 44 0.02849 -2.25911 0.02388 [3,] 62 2 35 0.01149 -1.0621 0.28819 [4,] 51 1 44 0.01772 -1.0064 0.31422 [5,] 63 13 44 0.01655 -0.88319 0.37713 [6,] 63 2 7 0.01364 -0.53278 0.59418 [7,] 32 4 60 0.03061 -0.47835 0.6324 [8,] 21 7 44 0.02149 -0.44724 0.6547 [9,] 62 2 44 0.01378 -0.27576 0.78273 [10,] 62 2 18 0.01538 -0.19859 0.84258 [11,] 51 1 27 0.01439 -0.00401 0.9968 [12,] 31 11 35 0.01753 0.51508 0.6065 [13,] 51 1 35 0.03015 0.70983 0.47781 [14,] 32 4 7 0.02044 0.9406 0.34691 [15,] 21 7 7 0.01415 1.21797 0.22324 [16,] 63 13 7 0.01349 2.07975 0.03755 [17,] 32 4 62 0.02349 2.37016 0.01778 [18,] 62 2 7 0.04904 2.53596 0.01121 > > if(verbose) cat("hla data ordinal trait\n") hla data ordinal trait > set.seed(seed) > score.hla.respcat <- haplo.score(hla.respcat, geno.hla, trait.type="ordinal", + locus.label=hla.label, miss.val=0, + simulate=FALSE, min.count=5, + offset=NA, x.adj=NA) > > print(score.hla.respcat) -------------------------------------------------------------------------------- Haplotype Effect Model: additive -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- Global Score Statistics -------------------------------------------------------------------------------- global-stat = 19.00536, df = 18, p-val = 0.39149 -------------------------------------------------------------------------------- Haplotype-specific Scores -------------------------------------------------------------------------------- DQB DRB HLA.B Hap-Freq Hap-Score p-val [1,] 32 4 62 0.02349 -2.17153 0.02989 [2,] 21 3 8 0.10421 -1.34215 0.17955 [3,] 63 13 7 0.01349 -1.27538 0.20218 [4,] 62 2 7 0.04904 -1.1646 0.24418 [5,] 21 7 44 0.02149 -1.11045 0.2668 [6,] 62 2 18 0.01538 -0.37326 0.70896 [7,] 32 4 7 0.02044 -0.32526 0.74498 [8,] 63 2 7 0.01364 -0.31495 0.7528 [9,] 31 11 35 0.01753 -0.25543 0.79839 [10,] 62 2 44 0.01378 -0.24187 0.80888 [11,] 21 7 7 0.01415 -0.19675 0.84402 [12,] 32 4 60 0.03061 0.28 0.77948 [13,] 31 4 44 0.02849 0.32924 0.74197 [14,] 51 1 27 0.01439 0.54107 0.58846 [15,] 63 13 44 0.01655 0.97888 0.32764 [16,] 51 1 35 0.03015 0.99304 0.32069 [17,] 51 1 44 0.01772 1.23893 0.21537 [18,] 62 2 35 0.01149 1.95154 0.05099 > > set.seed(seed) > score.hla.respcat.adj <- haplo.score(hla.respcat, geno.hla, trait.type="ordinal", + locus.label=hla.label, miss.val=0, + simulate=FALSE, min.count=5, + offset=NA, x.adj=hla.sex) > > print(score.hla.respcat) -------------------------------------------------------------------------------- Haplotype Effect Model: additive -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- Global Score Statistics -------------------------------------------------------------------------------- global-stat = 19.00536, df = 18, p-val = 0.39149 -------------------------------------------------------------------------------- Haplotype-specific Scores -------------------------------------------------------------------------------- DQB DRB HLA.B Hap-Freq Hap-Score p-val [1,] 32 4 62 0.02349 -2.17153 0.02989 [2,] 21 3 8 0.10421 -1.34215 0.17955 [3,] 63 13 7 0.01349 -1.27538 0.20218 [4,] 62 2 7 0.04904 -1.1646 0.24418 [5,] 21 7 44 0.02149 -1.11045 0.2668 [6,] 62 2 18 0.01538 -0.37326 0.70896 [7,] 32 4 7 0.02044 -0.32526 0.74498 [8,] 63 2 7 0.01364 -0.31495 0.7528 [9,] 31 11 35 0.01753 -0.25543 0.79839 [10,] 62 2 44 0.01378 -0.24187 0.80888 [11,] 21 7 7 0.01415 -0.19675 0.84402 [12,] 32 4 60 0.03061 0.28 0.77948 [13,] 31 4 44 0.02849 0.32924 0.74197 [14,] 51 1 27 0.01439 0.54107 0.58846 [15,] 63 13 44 0.01655 0.97888 0.32764 [16,] 51 1 35 0.03015 0.99304 0.32069 [17,] 51 1 44 0.01772 1.23893 0.21537 [18,] 62 2 35 0.01149 1.95154 0.05099 > > if(verbose) cat("snap SNP data with binary trait to test dominance,recessive\n") snap SNP data with binary trait to test dominance,recessive > snapDF <- read.table("snapData.csv",header=TRUE, sep=",") > y.bin <- snapDF[,1]-1 > geno <- setupGeno(geno=snapDF[,-1]) > > set.seed(seed) > y.ord <- sample(c("low", "med", "hi"), size=nrow(snapDF), prob=c(.3,.4,.3), replace=TRUE) > #table(y.ord) > geno.rec <- setupGeno(snapDF[,-c(1:9)]) > set.seed(seed) > hcount=5 > ##additive, min.count set to hcount > bin.snap.add <- haplo.score(y=y.bin, geno=geno.rec, trait.type="binomial", + min.count=hcount, + simulate=TRUE, haplo.effect="add", + sim.control=score.sim.control(min.sim=200,max.sim=500)) > > print(bin.snap.add) -------------------------------------------------------------------------------- Haplotype Effect Model: add -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- Global Score Statistics -------------------------------------------------------------------------------- global-stat = 14.64014, df = 4, p-val = 0.00551 -------------------------------------------------------------------------------- Global Simulation p-value Results -------------------------------------------------------------------------------- Global sim. p-val = 0.002 Max-Stat sim. p-val = 0.04 Number of Simulations, Global: 500 , Max-Stat: 500 -------------------------------------------------------------------------------- Haplotype-specific Scores -------------------------------------------------------------------------------- loc-1 loc-2 loc-3 Hap-Freq Hap-Score p-val sim p-val [1,] 1 1 2 0.37639 -1.97705 0.04804 0.038 [2,] 2 1 1 0.17814 -1.64787 0.09938 0.096 [3,] 1 1 1 0.12274 0.166 0.86816 0.882 [4,] 2 2 1 0.10452 2.14605 0.03187 0.024 [5,] 2 2 2 0.21821 2.78766 0.00531 0.014 > > ## additive > set.seed(seed) > bin.snap.dom <- haplo.score(y=y.bin, geno=geno.rec, trait.type="binomial", + min.count=hcount, simulate=TRUE, haplo.effect="dom", + sim.control=score.sim.control(min.sim=200,max.sim=500)) > > print(bin.snap.dom) -------------------------------------------------------------------------------- Haplotype Effect Model: dom -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- Global Score Statistics -------------------------------------------------------------------------------- global-stat = 15.94484, df = 5, p-val = 0.007 -------------------------------------------------------------------------------- Global Simulation p-value Results -------------------------------------------------------------------------------- Global sim. p-val = 0.008 Max-Stat sim. p-val = 0.054 Number of Simulations, Global: 500 , Max-Stat: 500 -------------------------------------------------------------------------------- Haplotype-specific Scores -------------------------------------------------------------------------------- loc-1 loc-2 loc-3 Hap-Freq Hap-Score p-val sim p-val [1,] 2 1 1 0.17814 -1.50448 0.13246 0.132 [2,] 1 1 2 0.37639 -1.15854 0.24665 0.246 [3,] 1 1 1 0.12274 0.67606 0.499 0.52 [4,] 2 2 1 0.10452 2.38633 0.01702 0.016 [5,] 2 2 2 0.21821 2.55803 0.01053 0.024 > > ## recessive > set.seed(seed) > bin.snap.rec <- haplo.score(y=y.bin, geno=geno.rec, trait.type="binomial", + min.count=hcount, simulate=TRUE, + haplo.effect="rec", + sim.control=score.sim.control(min.sim=200,max.sim=500)) > > print(bin.snap.rec) -------------------------------------------------------------------------------- Haplotype Effect Model: rec -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- Global Score Statistics -------------------------------------------------------------------------------- global-stat = 9.04791, df = 3, p-val = 0.02866 -------------------------------------------------------------------------------- Global Simulation p-value Results -------------------------------------------------------------------------------- Global sim. p-val = 0.03493 Max-Stat sim. p-val = 0.0655 Number of Simulations, Global: 458 , Max-Stat: 458 -------------------------------------------------------------------------------- Haplotype-specific Scores -------------------------------------------------------------------------------- loc-1 loc-2 loc-3 Hap-Freq Hap-Score p-val sim p-val [1,] 1 1 2 0.37639 -2.24407 0.02483 0.01528 [2,] 2 1 1 0.17814 -1.10376 0.2697 0.28821 [3,] 2 2 2 0.21821 1.74409 0.08114 0.05895 > > ## ordinal, additive > > set.seed(seed) > ord.snap.add <- haplo.score(y=y.ord, geno=geno.rec, trait.type="ordinal", + min.count=hcount, simulate=TRUE, haplo.effect="add", + sim.control=score.sim.control(min.sim=200,max.sim=500)) > > print(ord.snap.add) -------------------------------------------------------------------------------- Haplotype Effect Model: add -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- Global Score Statistics -------------------------------------------------------------------------------- global-stat = 6.46263, df = 4, p-val = 0.16716 -------------------------------------------------------------------------------- Global Simulation p-value Results -------------------------------------------------------------------------------- Global sim. p-val = 0.185 Max-Stat sim. p-val = 0.275 Number of Simulations, Global: 200 , Max-Stat: 200 -------------------------------------------------------------------------------- Haplotype-specific Scores -------------------------------------------------------------------------------- loc-1 loc-2 loc-3 Hap-Freq Hap-Score p-val sim p-val [1,] 1 1 1 0.12274 -1.81525 0.06948 0.09 [2,] 2 1 1 0.17814 -1.20029 0.23003 0.235 [3,] 1 1 2 0.37639 0.42687 0.66947 0.64 [4,] 2 2 1 0.10452 0.94294 0.34571 0.345 [5,] 2 2 2 0.21821 1.60922 0.10757 0.105 > > set.seed(seed) > ord.snap.add.adj <- haplo.score(y=y.ord, geno=geno.rec, trait.type="ordinal", + min.count=hcount, simulate=TRUE, haplo.effect="add", x.adj=hla.sex, + sim.control=score.sim.control(min.sim=200,max.sim=500)) > > print(ord.snap.add.adj) -------------------------------------------------------------------------------- Haplotype Effect Model: add -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- Global Score Statistics -------------------------------------------------------------------------------- global-stat = 6.48952, df = 4, p-val = 0.16545 -------------------------------------------------------------------------------- Global Simulation p-value Results -------------------------------------------------------------------------------- Global sim. p-val = 0.185 Max-Stat sim. p-val = 0.275 Number of Simulations, Global: 200 , Max-Stat: 200 -------------------------------------------------------------------------------- Haplotype-specific Scores -------------------------------------------------------------------------------- loc-1 loc-2 loc-3 Hap-Freq Hap-Score p-val sim p-val [1,] 1 1 1 0.12274 -1.80461 0.07114 0.085 [2,] 2 1 1 0.17814 -1.20986 0.22633 0.23 [3,] 1 1 2 0.37639 0.41315 0.6795 0.645 [4,] 2 2 1 0.10452 0.97633 0.3289 0.325 [5,] 2 2 2 0.21821 1.60727 0.108 0.105 > > > > > > proc.time() user system elapsed 21.487 0.498 23.003 haplo.stats/tests/expanded/test.haplo.glm.Rout.save0000644000176200001440000010532114672315243022124 0ustar liggesusers R version 4.0.2 (2020-06-22) -- "Taking Off Again" Copyright (C) 2020 The R Foundation for Statistical Computing Platform: x86_64-pc-linux-gnu (64-bit) R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > > ## package: haplo.stats > ## test script: haplo.glm > > ## settings > verbose=TRUE > > require(haplo.stats) Loading required package: haplo.stats Loading required package: arsenal > > Sys.setlocale("LC_ALL", "C") [1] "LC_CTYPE=C;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=en_US.UTF-8;LC_PAPER=en_US.UTF-8;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=en_US.UTF-8;LC_IDENTIFICATION=C" > Sys.getlocale() [1] "LC_CTYPE=C;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=en_US.UTF-8;LC_PAPER=en_US.UTF-8;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=en_US.UTF-8;LC_IDENTIFICATION=C" > > ## this is a dataset borrowed from a haplo.stats user > # it has problems with recessive trait, but runs fast on all examples > > "data.test.glm" <- + structure(.Data = list(c(1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., + 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., + 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., + 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., + 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., + 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., + 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.) + , c(1., 2., 1., 2., 1., 1., 2., 1., 1., 2., 1., 2., 1., 1., 1., 1., 1., 2., 2., 1., 1., 1., 2., 2., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 2., 2.,2., 2., 2., 1., 1., 1., 1., 1., 2., 2., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 2., 2., 1., 1., 1., 1., 1., 1., 2., 2., 1., 1., + 1., 1., 2., 1., 2., 2., 1., 2., 1., 2., 1., 2., 2., 1., 2., 2., 2.,1., 1., 1., 1., 1., 2., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 2., 1., 1., 2., 2., 1., 2., 1., 1., 1., 2., 1., 2., 1., 2., 2., 1., 1.,1., 1., 2., 1., 2., 1., 2., 2., 1., 2., 1., 1., 2., 2., 1., 2., 2., + 2., 1., 2., 2., 1., 2., 2., 1., 2., 1., 1., 2., 1., 1., 1., 1., 2.,2., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 2., 1., 2., 1., 1., 1., 1., 2., 2.,1., 2., 1., 2., 2., 1., 2., 1., 1., 1., 2., 2., 1., 1., 1., 1., 2., + 1., 1., 1., 1., 2., 2., 1., 2., 2., 2., 1., 1., 1., 2., 1., 1., 2.,1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 2., 2., 2., 1., 1., 1., 2., 1., 2., 1., 2., 1., 2., 1., 2., 1., 1., 1., 1., 1., 1., 2., 2., 1.,2., 2., 2., 1., 1., 2., 1., 1., 1., 1., 1., 2., 2., 1., 1., 1., 2., + 1., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 2., 2., 1., 2., 1., 2.,1., 1., 1., 2., 1., 1., 1., 1., 2., 2., 1., 1., 2., 1., 2., 2., 1., 1., 2., 1., 1., 1., 1., 1., 2., 1., 2., 1., 1., 2., 1., 2., 2., 2.,1., 1., 2., 1., 2., 1., 1., 1., 1., 1., 1., 2., 2., 1., 1., 2., 1., + 1., 1., 1., 2., 2., 2., 1., 1., 1., 1., 2., 1., 2., 2., 2., 2., 2.,1., 1., 2., 1., 2., 1., 2., 1., 2., 1., 1., 1., 1., 1., 1., 2., 2., 1., 2., 2., 1., 2., 2., 2., 1., 2., 1., 2., 2., 2., 1., 1., 1., 2.,1., 1., 2., 2., 2., 2., 1., 2., 2., 1., 2., 2., 1., 2., 1., 1., 1., + 2., 1., 2., 2., 1., 2., 1., 1., 1., 1., 1., 1., 1.), + c(1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., + 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., + 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 0., 1., 0.,0., 1., 1., 1., 1., 1., 1., 0., 1., 1., 1., 1., 0., 1., 1., 1., 0., 1., 1., 0., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 0.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., + 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 2., 1., 1., 1., 1., 0., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., + 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., + 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., + 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,0., 1., 1., 1., 1., 1., 0., 1., 1., 1., 1., 1., 1.) + , c(1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 2., 1., 2., 1., 2., 1., 1., 1., 1., 1., 2., 1., 2., 1., 2., 2., 1., 1., 1., 1., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 2., 1., 1., 2., 1., 1.,2., 2., 1., 1., 1., 1., 1., 1., 1., 1., 2., 2., 1., 2., 1., 1., 1., + 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 2.,1., 2., 2., 1., 1., 1., 2., 2., 1., 1., 2., 1., 2., 2., 1., 1., 1., 1., 1., 1., 2., 1., 1., 2., 1., 2., 1., 2., 1., 1., 1., 1., 2., 1.,2., 1., 1., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 0., 1., 0., + 0., 1., 1., 1., 1., 2., 1., 0., 1., 2., 1., 1., 0., 1., 1., 1., 0.,1., 2., 0., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 2., 1., 0., 1., 1., 1., 1., 1., 2., 1., 2., 1., 2., 1., 1., 1., 1., 1., 2., 1.,1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 2., + 1., 1., 1., 1., 2., 2., 1., 1., 2., 0., 2., 2., 1., 1., 2., 1., 1.,1., 1., 2., 1., 1., 1., 1., 2., 1., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1.,1., 1., 1., 1., 2., 2., 1., 1., 2., 1., 1., 2., 1., 1., 2., 2., 2., + 1., 2., 1., 1., 1., 2., 2., 1., 1., 1., 2., 1., 1., 1., 1., 2., 1.,1., 1., 1., 1., 1., 2., 2., 2., 2., 1., 1., 1., 1., 1., 2., 1., 1., 1., 2., 2., 1., 1., 1., 1., 1., 1., 2., 2., 2., 1., 1., 1., 1., 2.,1., 2., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 2., 2., + 2., 2., 2., 2., 1., 1., 2., 1., 1., 1., 2., 2., 1., 1., 1., 2., 1.,1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 2., 1., 1., 1., 1., 1., 2., 1., 1., 2., 1., 2., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 1.,1., 1., 2., 1., 2., 2., 2., 2., 1., 1., 1., 1., 1., 2., 1., 1., 1., + 0., 2., 1., 1., 1., 1., 0., 1., 1., 1., 2., 2., 2.) + , c(1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., + 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 2., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 2.,1., 1., 1., 1., 1., 1., 1., 0., 1., 1., 1., 1., 2., 1., 1., 1., 2., + 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,0., 1., 1., 1., 1., 1., 1., 0., 1., 1., 1., 2., 0., 0., 1., 1., 0., 2., 1., 0., 1., 1., 1., 1., 1., 0., 1., 1., 2., 1., 1., 1., 2., 1.,2., 1., 2., 1., 0., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 2., 2., + 1., 1., 2., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 0., 1., 1., 2., 2., 1., 1., 1., 1., 1., 1., 1., 0., 1., 2., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1.,1., 2., 1., 1., 1., 2., 1., 2., 1., 1., 1., 2., 1., 1., 1., 0., 1., + 2., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 2., 1., 1., 1., 2., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2.,1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., + 2., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 2., 1., 1.,1., 1., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 2., 1., 2., 1., 1., 1., 1., 1.,2., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., + 1., 2., 1., 2., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1.,0., 1., 1., 2., 1., 1., 0., 2., 1., 1., 1., 1., 1.) + , c(1., 2., 2., 2., 1., 1., 2., 2., 1., 2., 1., 1., 1., 1., 1., 2., 1., 2., 1., 2., 1., 1., 1., 2., 1., 1., 1., 1., 1., 2., 2., 2., 1., 2., 2., 1.,2., 1., 1., 1., 1., 1., 2., 2., 2., 2., 2., 1., 1., 2., 2., 1., 1., + 2., 1., 1., 1., 2., 2., 1., 2., 1., 1., 2., 1., 2., 1., 2., 1., 1.,2., 2., 1., 1., 2., 2., 1., 2., 2., 2., 2., 1., 2., 2., 1., 1., 1., 1., 1., 1., 2., 1., 1., 2., 1., 1., 2., 1., 2., 1., 1., 1., 1., 2.,2., 1., 2., 2., 1., 1., 2., 0., 2., 2., 2., 2., 2., 1., 2., 1., 2., + 1., 2., 1., 2., 2., 2., 1., 2., 1., 2., 1., 2., 1., 1., 1., 1., 2.,0., 1., 1., 2., 2., 2., 2., 0., 2., 2., 1., 2., 0., 0., 1., 2., 0., 2., 1., 0., 1., 2., 1., 1., 1., 0., 2., 2., 2., 1., 1., 2., 2., 1.,2., 2., 2., 1., 0., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 2., 2., + 1., 1., 2., 2., 2., 1., 1., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2.,1., 2., 2., 1., 1., 1., 1., 1., 2., 0., 2., 2., 2., 2., 2., 1., 2., 1., 2., 2., 1., 0., 1., 2., 2., 2., 2., 1., 1., 2., 2., 1., 2., 2.,2., 2., 1., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 1., 1., 0., 2., + 2., 2., 2., 2., 1., 1., 2., 1., 1., 2., 2., 1., 2., 2., 1., 1., 2.,1., 1., 1., 2., 2., 2., 1., 1., 1., 2., 2., 2., 2., 2., 2., 1., 1., 2., 2., 1., 2., 1., 1., 2., 1., 2., 1., 2., 1., 1., 1., 1., 2., 2.,2., 2., 2., 2., 2., 2., 1., 1., 1., 1., 1., 1., 2., 1., 1., 2., 1., + 2., 1., 1., 1., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 1.,1., 1., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 2., 1., 2., 2., 1., 1., 2., 2., 2., 2., 2., 1., 1., 2., 2., 2., 2., 2., 1., 2., 2., 1.,2., 2., 1., 2., 2., 2., 2., 2., 2., 1., 1., 1., 2., 1., 1., 2., 1., + 2., 2., 2., 2., 1., 1., 2., 1., 2., 2., 1., 2., 2., 2., 1., 2., 1.,0., 2., 2., 2., 2., 2., 0., 2., 1., 2., 1., 1., 2.) + , c(2., 2., 1., 1., 2., 2., 1., 1., 2., 1., 1., 2., 2., 2., 1., 1., 2., 1., 2., 1., 1., 2., 2., 1., 2., 2., 2., 2., 2., 2., 1., 1., 2., 1., 1., 2., 1., 2., 2., 2., 2., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 2., 2.,2., 2., 2., 2., 1., 1., 2., 1., 2., 2., 1., 2., 1., 2., 1., 1., 2., + 1., 1., 1., 2., 1., 1., 2., 2., 1., 1., 1., 2., 1., 1., 1., 2., 1.,2., 1., 1., 1., 2., 2., 1., 1., 2., 1., 2., 1., 2., 2., 2., 2., 1., 1., 2., 1., 1., 2., 2., 2., 2., 1., 1., 1., 1., 1., 2., 1., 2., 1.,2., 1., 2., 1., 1., 1., 2., 1., 2., 1., 2., 1., 2., 2., 1., 2., 1., + 2., 2., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 2., 1., 1.,2., 1., 2., 2., 1., 2., 2., 1., 2., 1., 1., 1., 2., 2., 1., 1., 2., 1., 2., 1., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 1., 1.,2., 2., 1., 1., 1., 2., 2., 1., 1., 2., 2., 1., 2., 1., 1., 2., 1., + 2., 1., 1., 2., 1., 1., 2., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1.,2., 1., 1., 2., 1., 2., 1., 1., 1., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 2., 1., 1., 2., 2., 2., 1., 2.,1., 1., 1., 1., 1., 2., 1., 2., 2., 1., 1., 2., 1., 1., 2., 2., 1., + 2., 2., 2., 1., 1., 1., 2., 2., 1., 1., 1., 1., 1., 1., 1., 2., 2.,1., 1., 2., 1., 2., 2., 1., 2., 1., 2., 2., 2., 2., 2., 2., 1., 1., 1., 1., 1., 2., 1., 1., 2., 2., 2., 2., 1., 1., 2., 2., 2., 2., 1.,1., 2., 2., 1., 2., 1., 1., 1., 1., 2., 1., 1., 1., 2., 1., 1., 1., + 1., 2., 2., 1., 1., 2., 2., 1., 2., 2., 1., 1., 1., 2., 1., 1., 2.,2., 1., 1., 1., 1., 1., 2., 2., 1., 1., 1., 1., 1., 2., 1., 1., 1., 2., 1., 2., 1., 1., 1., 1., 1., 1., 2., 1., 2., 1., 1., 2., 1., 2.,1., 1., 1., 1., 1., 2., 1., 1., 1., 2., 2., 1., 1., 1., 2., 1., 2., + 1., 1., 1., 1., 1., 1., 2., 1., 2., 1., 1., 2., 1.) + , c(2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2.,2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2.,2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., + 2., 2., 2., 2., 1., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2.,2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 1., 2., 1., 2., 2., 2., 1.,2., 1., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., + 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 1., 2., 1., 2., 2., 2.,2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 1., 2., 2., 2., 2., 1., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 1.,2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., + 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 1., 2., 2., 2.,2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 1., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,1., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 1., + 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2.,2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,1., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 1., 2., 2., + 1., 2., 2., 2., 1., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 1., 2.,2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2.,2., 1., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., + 1., 2., 2., 1., 2., 2., 2., 1., 2., 2., 1., 2., 2.)) + , names = c("y3", "sex3", "V19", "V20", "V29", "V30", "V35", "V36") + , row.names = c("1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14","15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26","27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", + "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "55", "56", "57", "58", "59", "60", "61", "62", "63", "64", "65", "66", "67", "68", "69", "70", "71", "72", "73", "74", + "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90", "91", "92", "93", "94", "95", "96", "97", "98", "99", "100", "101", "102", "103", "104", "105", "106", "107", "108", + "109", "110", "111", "112", "113", "114", "115", "116", "117", "118","119", "120", "121", "122", "123", "124", "125", "126", "127", "128", "129", "130", "131", "132", "133", "134", "135", "136", "137", "138", + "139", "140", "141", "142", "143", "144", "145", "146", "147", "148","149", "150", "151", "152", "153", "154", "155", "156", "157", "158","159", "160", "161", "162", "163", "164", "165", "166", "167", "168", + "169", "170", "171", "172", "173", "174", "175", "176", "177", "178","179", "180", "181", "182", "183", "184", "185", "186", "187", "188","189", "190", "191", "192", "193", "194", "195", "196", "197", "198", + "199", "200", "201", "202", "203", "204", "205", "206", "207", "208","209", "210", "211", "212", "213", "214", "215", "216", "217", "218","219", "220", "221", "222", "223", "224", "225", "226", "227", "228", + "229", "230", "231", "232", "233", "234", "235", "236", "237", "238","239", "240", "241", "242", "243", "244", "245", "246", "247", "248","249", "250", "251", "252", "253", "254", "255", "256", "257", "258", + "259", "260", "261", "262", "263", "264", "265", "266", "267", "268","269", "270", "271", "272", "273", "274", "275", "276", "277", "278","279", "280", "281", "282", "283", "284", "285", "286", "287", "288", + "289", "290", "291", "292", "293", "294", "295", "296", "297", "298","299", "300", "301", "302", "303", "304", "305", "306", "307", "308","309", "310", "311", "312", "313", "314", "315", "316", "317", "318", + "319", "320", "321", "322", "323", "324", "325", "326", "327", "328","329", "330", "331", "332", "333", "334", "335", "336", "337", "338","339", "340", "341", "342", "343", "344", "345", "346", "347", "348", + "349", "350", "351", "352", "353", "354", "355", "356", "357", "358","359", "360", "361", "362", "363", "364", "365", "366", "367", "368","369", "370", "371", "372", "373", "374", "375", "376", "377", "378", + "379", "380", "381", "382", "383", "384", "385", "386", "387", "388","389", "390", "391", "392", "393", "394", "395", "396", "397", "398","399", "400", "401", "402", "403", "404", "405", "406", "407", "408", + "409", "410", "411", "412", "413", "414", "415", "416", "417", "418","419", "420", "421", "422", "423"), class = "data.frame") > > > if(verbose) cat("setting up data...\n") setting up data... > > # prepare a short example dataset, labaled as '3' > # ht3 <- source("dump.ht3.s"), this is now at top of file > geno3 <- data.test.glm[,-(1:2)] > sex3 <- data.test.glm$sex > y3 <- data.test.glm$y3 > set.seed(10) > rgaus3 <- ifelse(y3==1, rnorm(423, .5, 1), rnorm(423)) > > label3<-c("M1","M2","M3") > geno3<-setupGeno(geno3, miss.val=c(0,NA)) > my.data3<-data.frame(geno3=geno3, sex3=sex3, y3=y3, + gaus3=rgaus3, gaus3.100=rgaus3*100) > > > # use freq.min as a guide for choosing minimum hap frequency > freq.min3 <- 5/(2*nrow(geno3)) > > > # prepare the hla dataset, > # runs a lot longer, and MS alleles don't all start w/ 1, 2... > label <-c("DQB","DRB","B") > > data(hla.demo) > > y <- hla.demo$resp > y.bin <- 1*(hla.demo$resp.cat=="low") > # y.bin[2] <- NA > geno <- as.matrix(hla.demo[,c(17,18,21:24)]) > # geno[1,] <- rep(NA, 6) > geno <- setupGeno(geno, miss.val=c(0,NA)) > > # geno now has an attribute 'unique.alleles' which must be passed to > # haplo.glm as allele.lev=attributes(geno)$unique.alleles, see below > > my.data <- data.frame(geno=geno, age=hla.demo$age, male=hla.demo$male, + y=y, y.bin=y.bin) > > seed <- c(17, 53, 1, 40, 37, 0, 62, 56, 5, 52, 12, 1) > > if(verbose) cat("regular haplo.glm, additive genetic trait, and \n") regular haplo.glm, additive genetic trait, and > set.seed(seed) > fit3.add <- haplo.glm(y3~geno3, family=binomial,na.action="na.geno.keep", + data=my.data3, locus.label=label3, miss.val = c(0, NA), + method = "glm.fit", model = FALSE, x = FALSE, y = TRUE, contrasts = NULL, + control = haplo.glm.control(haplo.freq.min=freq.min3, haplo.effect="add", + haplo.base = NULL, sum.rare.min = 0.001, + haplo.min.info = 0.001,keep.rare.haplo = TRUE, + glm.c = glm.control(maxit = 500), em.c = haplo.em.control())) > > > if(verbose) cat("binomial w/ dominant trait with gender\n") binomial w/ dominant trait with gender > set.seed(seed) > fit3.dom<-haplo.glm(y3~geno3, family=binomial, na.action="na.geno.keep", + data=my.data3, locus.label=label3, control = + haplo.glm.control(haplo.effect="dominant", haplo.min.count=8)) > set.seed(seed) > fit3.dom.rare<-haplo.glm(y3~geno3, family=binomial, na.action="na.geno.keep", + data=my.data3, locus.label=label3, control = + haplo.glm.control(haplo.base=2,haplo.effect="dominant", haplo.freq.min=.32)) > > if(verbose) cat("binomial with recessive trait\n") binomial with recessive trait > set.seed(seed) > fit3.rec<-haplo.glm(y3~geno3, family=binomial, na.action="na.geno.keep", + data=my.data3, locus.label=label3, + control = haplo.glm.control(haplo.min.count=8, + haplo.effect="recessive")) There were 14 warnings (use warnings() to see them) > > > if(verbose) cat("random gaussian, variance 1 and 100^2 \n") random gaussian, variance 1 and 100^2 > set.seed(seed) > fit3.gaus <- haplo.glm(gaus3 ~ geno3, family=gaussian, na.action="na.geno.keep", + data=my.data3, locus.label=label3, + control = haplo.glm.control(haplo.min.count=8)) > > set.seed(seed) > # for version 1.3.9 and later, use the haplo.glm.q in /Haplo/Test/GlmSE/ > fit3.gaus100 <- haplo.glm(gaus3.100 ~ geno3, family=gaussian, na.action="na.geno.keep", + data=my.data3, locus.label=label3, + control = haplo.glm.control(haplo.min.count=8)) > > > if(verbose) cat("fit a binary trait\n") fit a binary trait > set.seed(seed) > fit.hla.bin <- haplo.glm(y.bin ~ male + geno, family = binomial, + na.action="na.geno.keep", data=my.data, locus.label=label, + control = haplo.glm.control(haplo.min.count=8)) > > y.bin <- 1*(hla.demo$resp.cat=="low") > y.bin[2] <- NA > geno.hla <- as.matrix(hla.demo[,c(17,18,21:24)]) > geno.hla[2,5] <- 2 > geno.hla[3,] <- rep(NA, 6) > geno.hla <- setupGeno(geno.hla, miss.val=c(0,NA)) > > my.hla <- data.frame(geno.hla=geno.hla, age=hla.demo$age, male=hla.demo$male, + y=y, y.bin=y.bin) > > set.seed(seed) > fit.hla.miss <- haplo.glm(y.bin ~ male + geno.hla, family = binomial, + na.action="na.geno.keep", + data=my.hla, locus.label=label, + control = haplo.glm.control(haplo.min.count=8)) > > if(verbose) cat(" gaussian with covariates, additive\n") gaussian with covariates, additive > > set.seed(seed) > fit.hla.gaus.gender <- haplo.glm(y ~ male + geno, family = gaussian, + na.action="na.geno.keep", + data=my.data, locus.label=label, + control = haplo.glm.control(haplo.min.count=5)) > > if(verbose) cat("gaussian with covariate, multiplicative\n") gaussian with covariate, multiplicative > set.seed(seed) > fit.hla.gaus.inter <- haplo.glm(y ~ male * geno, family = gaussian, + na.action="na.geno.keep", data=my.data, locus.label=label, + control = haplo.glm.control(haplo.freq.min = 0.02)) > > if(verbose) cat("SNAP data with resp and resp with added variance\n") SNAP data with resp and resp with added variance > snapDF <- read.table("snapData.csv",header=TRUE, sep=",", stringsAsFactors=FALSE) > > geno.rec <- setupGeno(snapDF[,-c(1:9)]) > snap.data <- data.frame(resp=hla.demo$resp, respvar=hla.demo$resp*100, geno=geno.rec) > > set.seed(seed) > fit.resp.hla <- haplo.glm(resp~geno, trait.type="gaussian",data=snap.data) > > set.seed(seed) > fit.respvar.hla <- haplo.glm(respvar~geno, trait.type="gaussian",data=snap.data) > > > > print.haplo.glm(fit3.add,print.all.haplo=TRUE, digits=4) Call: haplo.glm(formula = y3 ~ geno3, family = binomial, data = my.data3, na.action = "na.geno.keep", locus.label = label3, control = haplo.glm.control(haplo.freq.min = freq.min3, haplo.effect = "add", haplo.base = NULL, sum.rare.min = 0.001, haplo.min.info = 0.001, keep.rare.haplo = TRUE, glm.c = glm.control(maxit = 500), em.c = haplo.em.control()), method = "glm.fit", model = FALSE, x = FALSE, y = TRUE, contrasts = NULL, miss.val = c(0, NA)) Coefficients: (Intercept) geno3.1 geno3.3 geno3.4 geno3.5 geno3.6 -0.33411 -1.97279 -0.39084 -1.40631 -0.06855 -0.29182 geno3.rare 0.65031 Haplotypes: M1 M2 M3 hap.freq geno3.1 1 1 1 0.016314 geno3.3 1 2 1 0.284807 geno3.4 1 2 2 0.053316 geno3.5 2 1 1 0.053489 geno3.6 2 1 2 0.086402 geno3.rare * * * 0.002671 haplo.base 1 1 2 0.503002 Degrees of Freedom: 422 Total (i.e. Null); 416 Residual Null Deviance: 529.8 Residual Deviance: 508.4 AIC: 520.4 > print.haplo.glm(fit3.dom, print.all.haplo=FALSE, digits=5) Call: haplo.glm(formula = y3 ~ geno3, family = binomial, data = my.data3, na.action = "na.geno.keep", locus.label = label3, control = haplo.glm.control(haplo.effect = "dominant", haplo.min.count = 8)) Coefficients: (Intercept) geno3.1 geno3.3 geno3.4 geno3.5 geno3.6 -0.351472 -1.973446 -0.449952 -1.417060 0.010317 -0.300943 geno3.rare 0.722029 Haplotypes: M1 M2 M3 hap.freq geno3.1 1 1 1 0.0163612 geno3.3 1 2 1 0.2848460 geno3.4 1 2 2 0.0531700 geno3.5 2 1 1 0.0534028 geno3.6 2 1 2 0.0864446 geno3.rare * * * 0.0027118 haplo.base 1 1 2 0.5030637 Degrees of Freedom: 422 Total (i.e. Null); 416 Residual Null Deviance: 529.79 Residual Deviance: 509.69 AIC: 521.66 > print.haplo.glm(fit3.dom.rare, print.all.haplo=FALSE, digits=5) Call: haplo.glm(formula = y3 ~ geno3, family = binomial, data = my.data3, na.action = "na.geno.keep", locus.label = label3, control = haplo.glm.control(haplo.base = 2, haplo.effect = "dominant", haplo.freq.min = 0.32)) Coefficients: (Intercept) geno3 -0.42701 -0.46180 Haplotypes: M1 M2 M3 hap.freq geno3.rare * * * 0.49789 haplo.base 1 1 2 0.50211 Degrees of Freedom: 422 Total (i.e. Null); 421 Residual Null Deviance: 529.79 Residual Deviance: 525.78 AIC: 529.74 > print.haplo.glm(fit3.rec, print.all.haplo=FALSE, digits=5) Call: haplo.glm(formula = y3 ~ geno3, family = binomial, data = my.data3, na.action = "na.geno.keep", locus.label = label3, control = haplo.glm.control(haplo.min.count = 8, haplo.effect = "recessive")) Coefficients: (Intercept) geno3.1 geno3.3 geno3.4 geno3.5 geno3.6 -0.71516 -42.48770 -0.39207 -32.27643 -42.82951 0.64393 geno3.rare -42.48537 Haplotypes: M1 M2 M3 hap.freq geno3.1 1 1 1 0.0160385 geno3.3 1 2 1 0.2851087 geno3.4 1 2 2 0.0539050 geno3.5 2 1 1 0.0534628 geno3.6 2 1 2 0.0875250 geno3.rare * * * 0.0015802 haplo.base 1 1 2 0.5023799 Degrees of Freedom: 422 Total (i.e. Null); 416 Residual Null Deviance: 529.79 Residual Deviance: 525.35 AIC: 539.32 > print.haplo.glm(fit3.gaus, print.all.haplo=FALSE, digits=5) Call: haplo.glm(formula = gaus3 ~ geno3, family = gaussian, data = my.data3, na.action = "na.geno.keep", locus.label = label3, control = haplo.glm.control(haplo.min.count = 8)) Coefficients: (Intercept) geno3.1 geno3.3 geno3.4 geno3.5 geno3.6 0.151476 0.335020 -0.111313 -0.173451 0.096508 0.122371 geno3.rare -1.629050 Haplotypes: M1 M2 M3 hap.freq geno3.1 1 1 1 0.0160833 geno3.3 1 2 1 0.2853409 geno3.4 1 2 2 0.0540209 geno3.5 2 1 1 0.0531857 geno3.6 2 1 2 0.0879545 geno3.rare * * * 0.0013971 haplo.base 1 1 2 0.5020176 Degrees of Freedom: 422 Total (i.e. Null); 416 Residual Null Deviance: 408.13 Residual Deviance: 397.1 AIC: 1189.7 > print.haplo.glm(fit3.gaus100, print.all.haplo=FALSE, digits=5) Call: haplo.glm(formula = gaus3.100 ~ geno3, family = gaussian, data = my.data3, na.action = "na.geno.keep", locus.label = label3, control = haplo.glm.control(haplo.min.count = 8)) Coefficients: (Intercept) geno3.1 geno3.3 geno3.4 geno3.5 geno3.6 15.1476 33.5020 -11.1313 -17.3451 9.6508 12.2371 geno3.rare -162.9050 Haplotypes: M1 M2 M3 hap.freq geno3.1 1 1 1 0.0160833 geno3.3 1 2 1 0.2853409 geno3.4 1 2 2 0.0540209 geno3.5 2 1 1 0.0531857 geno3.6 2 1 2 0.0879545 geno3.rare * * * 0.0013971 haplo.base 1 1 2 0.5020176 Degrees of Freedom: 422 Total (i.e. Null); 416 Residual Null Deviance: 4081300 Residual Deviance: 3971000 AIC: 5085.7 > print.haplo.glm(fit.hla.bin, digits=5, print.all.haplo=FALSE) Call: haplo.glm(formula = y.bin ~ male + geno, family = binomial, data = my.data, na.action = "na.geno.keep", locus.label = label, control = haplo.glm.control(haplo.min.count = 8)) Coefficients: (Intercept) male geno.17 geno.34 geno.77 geno.78 1.54569 -0.48022 -0.72271 0.36414 -0.98838 -1.40925 geno.100 geno.138 geno.rare -2.59073 -2.71564 -1.26098 Haplotypes: DQB DRB B hap.freq geno.17 21 7 44 0.023033 geno.34 31 4 44 0.028430 geno.77 32 4 60 0.030567 geno.78 32 4 62 0.023543 geno.100 51 1 35 0.029771 geno.138 62 2 7 0.051806 geno.rare * * * 0.708798 haplo.base 21 3 8 0.104052 Degrees of Freedom: 219 Total (i.e. Null); 211 Residual Null Deviance: 263.5 Residual Deviance: 233.46 AIC: 251.11 > print.haplo.glm(fit.hla.miss, digits=5, print.all.haplo=FALSE) Call: haplo.glm(formula = y.bin ~ male + geno.hla, family = binomial, data = my.hla, na.action = "na.geno.keep", locus.label = label, control = haplo.glm.control(haplo.min.count = 8)) Coefficients: (Intercept) male geno.hla.17 geno.hla.35 geno.hla.78 1.52097 -0.47405 -0.51326 0.37671 -0.98905 geno.hla.79 geno.hla.100 geno.hla.139 geno.hla.rare -1.41182 -2.57827 -2.62599 -1.24913 Haplotypes: DQB DRB B hap.freq geno.hla.17 21 7 44 0.019472 geno.hla.35 31 4 44 0.028640 geno.hla.78 32 4 60 0.030600 geno.hla.79 32 4 62 0.023991 geno.hla.100 51 1 35 0.030042 geno.hla.139 62 2 7 0.049912 geno.hla.rare * * * 0.712334 haplo.base 21 3 8 0.105009 Degrees of Freedom: 217 Total (i.e. Null); 209 Residual Subjects removed by NAs in y or x, or all NA in geno yxmiss genomiss 1 1 Null Deviance: 262.14 Residual Deviance: 232.38 AIC: 250.01 > print.haplo.glm(fit.hla.gaus.gender, print.all.haplo=FALSE, digits=5) Call: haplo.glm(formula = y ~ male + geno, family = gaussian, data = my.data, na.action = "na.geno.keep", locus.label = label, control = haplo.glm.control(haplo.min.count = 5)) Coefficients: (Intercept) male geno.13 geno.17 geno.34 geno.50 0.991752 0.128077 1.120830 0.271329 -0.257275 0.768684 geno.55 geno.69 geno.77 geno.78 geno.99 geno.100 0.453816 1.107967 0.233618 1.237015 0.479963 0.612457 geno.102 geno.138 geno.140 geno.143 geno.155 geno.162 -0.109670 0.984930 0.422381 0.021509 0.370595 1.367872 geno.165 geno.rare 0.117204 0.393562 Haplotypes: DQB DRB B hap.freq geno.13 21 7 7 0.012435 geno.17 21 7 44 0.022917 geno.34 31 4 44 0.028612 geno.50 31 11 35 0.017023 geno.55 31 11 51 0.011431 geno.69 32 4 7 0.014962 geno.77 32 4 60 0.031899 geno.78 32 4 62 0.023926 geno.99 51 1 27 0.015002 geno.100 51 1 35 0.029977 geno.102 51 1 44 0.017632 geno.138 62 2 7 0.050956 geno.140 62 2 18 0.015374 geno.143 62 2 44 0.014135 geno.155 63 2 7 0.013636 geno.162 63 13 7 0.016062 geno.165 63 13 44 0.016510 geno.rare * * * 0.543401 haplo.base 21 3 8 0.104110 Degrees of Freedom: 219 Total (i.e. Null); 200 Residual Null Deviance: 297.01 Residual Deviance: 252.33 AIC: 696.5 > print.haplo.glm(fit.hla.gaus.inter, digits=5, print.all.haplo=FALSE) Call: haplo.glm(formula = y ~ male * geno, family = gaussian, data = my.data, na.action = "na.geno.keep", locus.label = label, control = haplo.glm.control(haplo.freq.min = 0.02)) Coefficients: (Intercept) male geno.17 geno.34 geno.77 0.975361 0.258057 0.144427 -0.171606 0.805227 geno.78 geno.100 geno.138 geno.rare male:geno.17 0.495568 0.523104 1.157038 0.455471 0.508719 male:geno.34 male:geno.77 male:geno.78 male:geno.100 male:geno.138 -0.281374 -0.900835 1.263762 0.050737 -0.445869 male:geno.rare -0.097873 Haplotypes: DQB DRB B hap.freq geno.17 21 7 44 0.023460 geno.34 31 4 44 0.028454 geno.77 32 4 60 0.030604 geno.78 32 4 62 0.024134 geno.100 51 1 35 0.030128 geno.138 62 2 7 0.050488 geno.rare * * * 0.708632 haplo.base 21 3 8 0.104099 Degrees of Freedom: 219 Total (i.e. Null); 204 Residual Null Deviance: 297.01 Residual Deviance: 259.82 AIC: 694.93 > print.haplo.glm(fit.resp.hla, digits=5) Call: haplo.glm(formula = resp ~ geno, data = snap.data, trait.type = "gaussian") Coefficients: (Intercept) geno.1 geno.4 geno.6 geno.7 2.0850405 -0.4357322 0.0187664 0.0027088 -0.2514169 Haplotypes: loc.1 loc.2 loc.3 hap.freq geno.1 1 1 1 0.12420 geno.4 2 1 1 0.17767 geno.6 2 2 1 0.10349 geno.7 2 2 2 0.21924 haplo.base 1 1 2 0.37540 Degrees of Freedom: 219 Total (i.e. Null); 215 Residual Null Deviance: 297.01 Residual Deviance: 285.33 AIC: 693.53 > print.haplo.glm(fit.respvar.hla, digits=5) Call: haplo.glm(formula = respvar ~ geno, data = snap.data, trait.type = "gaussian") Coefficients: (Intercept) geno.1 geno.4 geno.6 geno.7 208.50405 -43.57322 1.87664 0.27088 -25.14169 Haplotypes: loc.1 loc.2 loc.3 hap.freq geno.1 1 1 1 0.12420 geno.4 2 1 1 0.17767 geno.6 2 2 1 0.10349 geno.7 2 2 2 0.21924 haplo.base 1 1 2 0.37540 Degrees of Freedom: 219 Total (i.e. Null); 215 Residual Null Deviance: 2970100 Residual Deviance: 2853300 AIC: 2719.8 > > > proc.time() user system elapsed 26.441 0.389 28.043 haplo.stats/tests/expanded/test.Ginv.Rout.save0000644000176200001440000000620014672315243021142 0ustar liggesusers R version 2.14.0 (2011-10-31) Copyright (C) 2011 The R Foundation for Statistical Computing ISBN 3-900051-07-0 Platform: x86_64-unknown-linux-gnu (64-bit) R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > > > ## package: haplo.stats > ## test script: Ginv > > ## settings > > verbose=TRUE > > require(haplo.stats) Loading required package: haplo.stats > > # test Ginv on a matrix that is knowns to cause problems for LINPACK > # implementation of svd used in Ginv. > > # this varx matrix comes from running haplo.scan (within haplo.stats) > # on the 11-loci hla.demo dataset. > source("dump.varx.s") > > # Jason Sinnwell 3/2004 > > if(verbose) cat("setting up data...\n") setting up data... > > if(verbose) cat("test matrix (441x441) that causes error in LINPACK, but not LAPACK svd\n") test matrix (441x441) that causes error in LINPACK, but not LAPACK svd > > ginv.varx <- Ginv(varx) > > # Ginv.q version 1.4 is known to fail and get a numerical error > > # ginv.varx$Ginv[1:5,1:5] > > ginv.varx.eps <- Ginv(varx, eps=1e-4) > > # ginv.varx.eps$Ginv[1:5,1:5] > > if(verbose) cat("the zero matrix should give ginv=0, rank=0\n") the zero matrix should give ginv=0, rank=0 > zeroMat <- matrix(0) > epsMat <- matrix(1e-7) > zeroGinv <- Ginv(zeroMat) > epsGinv <- Ginv(epsMat) > > # a matrix with an NA should give a warning > # naMat <- matrix(c(1,0,NA,0,2,1,1,1,3),ncol=3) > # na.ginv <- Ginv(naMat) > > > # if(verbose) cat("sinking print results to a file\n") > > #if(update) { > # sink(file=goldfile) > #} else { > # sink("sink.Ginv.out") > #} > > ## print all testable results (via a diff command) to a file > print(ginv.varx$Ginv[1:5,1:5]) [,1] [,2] [,3] [,4] [,5] [1,] 129.30181529 2.020565287 -10.048992 -4.276933e-03 1.4289919 [2,] 2.02056529 129.301815287 -10.048992 -4.276852e-03 1.4289919 [3,] -10.04899156 -10.048991553 3239.425101 4.098196e+00 -10.6405650 [4,] -0.00427691 -0.004276945 4.098196 8.731269e+03 -0.5958503 [5,] 1.42899185 1.428991852 -10.640565 -5.958504e-01 255.3999184 > > ginv.varx$rank [1] 327 > > print(ginv.varx.eps$Ginv[1:5,1:5]) [,1] [,2] [,3] [,4] [,5] [1,] 129.216281 1.935031 -9.689699 -1.161165 1.343310 [2,] 1.935031 129.216281 -9.689699 -1.161165 1.343310 [3,] -9.689699 -9.689699 3237.757722 -11.376206 -10.280652 [4,] -1.161165 -1.161165 -11.376206 6101.228011 -1.754314 [5,] 1.343310 1.343310 -10.280652 -1.754314 255.314089 > > ginv.varx.eps$rank [1] 325 > > print(zeroGinv) $Ginv [,1] [1,] 0 $rank [,1] [1,] 0 > > print(epsGinv) $Ginv [,1] [1,] 0 $rank [,1] [1,] 0 > > #sink() > > > > > haplo.stats/tests/expanded/test.haplo.score.R0000644000176200001440000001334614672315243021000 0ustar liggesusers## package: haplo.stats ## test script: haplo.score ## settings verbose=TRUE Sys.setlocale("LC_ALL", "C") Sys.getlocale() require(haplo.stats) #library(haplo.stats, lib="/projects/bsi/gentools/R/lib214") if(verbose) cat("prepare two datasets, one with char alleles, the other 3 loci from hla data\n") ## make ficticious data set with an intention of some trend in ## haplotypes having H-allele at locus-H with F-allele at locus-F geno.char <- matrix(c('F','f','g','G','h1','h1', 'F','F','g','G','H','h1', 'F','f','g','G','h2','h2', 'f','f','g','G','h2','h1', 'F','F','g','G','H','h2', 'f','f','G','G','h1','h2', 'F','f','G','g','h2','h2', 'F','F','g','G','h1','z', 'F','f','z','z','h1','h1', 'F','f','G','g','h1','h2', 'F','f','G','G','h1','h2', 'F','F','g','G','h1','z', 'F','f','z','z','h1','h1', 'f','f','G','g','h1','h2'), nrow=14,byrow=T) y.response <- c(2.0,4.5,1.8,2.1,5.2,1.3,3.4,2.5,2.2,1.9,2.1,1.2,3.0,1.9) y.pheno <- c(0,1,0,0,1,0,0,1,0,0,0,1,1,0) char.label <- c("F","G","H") data(hla.demo) hla.sub <- hla.demo[,c(1,2,3,4,17,18,21:24)] geno.hla <- hla.sub[,-c(1:4)] hla.resp <- hla.sub[,1] hla.respcat <- hla.sub[,2] hla.sex <- hla.sub[,3] hla.label=c("DQB","DRB","HLA.B") seed <- c(33, 10, 39, 6, 16, 0, 40, 24, 12, 60, 7, 1) set.seed(seed) runif(10) if(verbose) cat("character alleles, binary trait, additive and dominant\n") set.seed(seed) score.char.pheno.add <- haplo.score(y.pheno, geno.char, trait.type="binomial", locus.label=char.label, miss.val='z', offset = NA, x.adj = NA, min.count=4, simulate=FALSE, haplo.effect="additive", sim.control = score.sim.control(), em.control = haplo.em.control()) print(score.char.pheno.add) set.seed(seed) runif(10) set.seed(seed) score.char.pheno.dom <- haplo.score(y.pheno, geno.char, trait.type="binomial", locus.label=char.label, miss.val='z', offset = NA, x.adj=NA, min.count=4, simulate=FALSE, haplo.effect="dom", sim.control = score.sim.control(), em.control = haplo.em.control()) print(score.char.pheno.dom) if(verbose) cat("character alleles, gaussian trait\n") set.seed(seed) score.char.gaus <- haplo.score(y.response, geno.char, trait.type="gaussian", skip.haplo=.1, locus.label=char.label, miss.val="z",simulate=TRUE, sim.control=score.sim.control(min.sim=50, p.threshold=.25, max.sim=1000,verbose=FALSE), em.control = haplo.em.control()) print(score.char.gaus) if(verbose) cat("hla data, gaussian trait and x.adj\n") set.seed(seed) score.hla.resp.adj <- haplo.score(hla.resp,geno.hla,trait.type="gaussian", locus.label=hla.label, miss.val=0, x.adj=hla.sex, simulate=FALSE, min.count=5) print(score.hla.resp.adj) if(verbose) cat("hla data ordinal trait\n") set.seed(seed) score.hla.respcat <- haplo.score(hla.respcat, geno.hla, trait.type="ordinal", locus.label=hla.label, miss.val=0, simulate=FALSE, min.count=5, offset=NA, x.adj=NA) print(score.hla.respcat) set.seed(seed) score.hla.respcat.adj <- haplo.score(hla.respcat, geno.hla, trait.type="ordinal", locus.label=hla.label, miss.val=0, simulate=FALSE, min.count=5, offset=NA, x.adj=hla.sex) print(score.hla.respcat) if(verbose) cat("snap SNP data with binary trait to test dominance,recessive\n") snapDF <- read.table("snapData.csv",header=TRUE, sep=",") y.bin <- snapDF[,1]-1 geno <- setupGeno(geno=snapDF[,-1]) set.seed(seed) y.ord <- sample(c("low", "med", "hi"), size=nrow(snapDF), prob=c(.3,.4,.3), replace=TRUE) #table(y.ord) geno.rec <- setupGeno(snapDF[,-c(1:9)]) set.seed(seed) hcount=5 ##additive, min.count set to hcount bin.snap.add <- haplo.score(y=y.bin, geno=geno.rec, trait.type="binomial", min.count=hcount, simulate=TRUE, haplo.effect="add", sim.control=score.sim.control(min.sim=200,max.sim=500)) print(bin.snap.add) ## additive set.seed(seed) bin.snap.dom <- haplo.score(y=y.bin, geno=geno.rec, trait.type="binomial", min.count=hcount, simulate=TRUE, haplo.effect="dom", sim.control=score.sim.control(min.sim=200,max.sim=500)) print(bin.snap.dom) ## recessive set.seed(seed) bin.snap.rec <- haplo.score(y=y.bin, geno=geno.rec, trait.type="binomial", min.count=hcount, simulate=TRUE, haplo.effect="rec", sim.control=score.sim.control(min.sim=200,max.sim=500)) print(bin.snap.rec) ## ordinal, additive set.seed(seed) ord.snap.add <- haplo.score(y=y.ord, geno=geno.rec, trait.type="ordinal", min.count=hcount, simulate=TRUE, haplo.effect="add", sim.control=score.sim.control(min.sim=200,max.sim=500)) print(ord.snap.add) set.seed(seed) ord.snap.add.adj <- haplo.score(y=y.ord, geno=geno.rec, trait.type="ordinal", min.count=hcount, simulate=TRUE, haplo.effect="add", x.adj=hla.sex, sim.control=score.sim.control(min.sim=200,max.sim=500)) print(ord.snap.add.adj) haplo.stats/tests/expanded/test.methods.haplo.glm.R0000644000176200001440000000641414672315243022104 0ustar liggesusers ## package: haplo.stats ## test script: haplo.glm ## created: 11/23/2011 ## settings verbose=TRUE require(haplo.stats) Sys.setlocale("LC_COLLATE", "C") Sys.getlocale('LC_COLLATE') if(verbose) cat("setting up data...\n") # prepare the hla dataset, # runs a lot longer, and MS alleles don't all start w/ 1, 2... label <-c("DQB","DRB","B") data(hla.demo) y <- hla.demo$resp y.bin <- 1*(hla.demo$resp.cat=="low") geno <- as.matrix(hla.demo[,c(17,18,21:24)]) geno <- setupGeno(geno, miss.val=c(0,NA)) # geno now has an attribute 'unique.alleles' which must be passed to # haplo.glm as allele.lev=attributes(geno)$unique.alleles, see below hla.data <- data.frame(geno=geno, age=hla.demo$age, male=hla.demo$male, y=y, y.bin=y.bin) seed <- c(17, 53, 1, 40, 37, 0, 62, 56, 5, 52, 12, 1) if(verbose) cat("fit a binary trait\n") set.seed(seed) fit.hla.bin <- haplo.glm(y.bin ~ male + geno, family = binomial, na.action="na.geno.keep", data=hla.data, locus.label=label, control = haplo.glm.control(haplo.min.count=8)) y.bin <- 1*(hla.demo$resp.cat=="low") y.bin[2] <- NA geno.hla <- as.matrix(hla.demo[,c(17,18,21:24)]) geno.hla[2,5] <- 2 geno.hla[3,] <- rep(NA, 6) geno.hla <- setupGeno(geno.hla, miss.val=c(0,NA)) my.hla <- data.frame(geno.hla=geno.hla, age=hla.demo$age, male=hla.demo$male, y=y, y.bin=y.bin) if(verbose) cat(" hla binary trait with subject that are removed\n") set.seed(seed) fit.hla.miss <- haplo.glm(y.bin ~ male + geno.hla, family = binomial, na.action="na.geno.keep", data=my.hla, locus.label=label, control = haplo.glm.control(haplo.min.count=8)) if(verbose) cat(" gaussian with covariates, additive\n") set.seed(seed) fit.hla.gaus.gender <- haplo.glm(y ~ male + geno, family = gaussian, na.action="na.geno.keep", data=hla.data, locus.label=label, control = haplo.glm.control(haplo.min.count=5)) if(verbose) cat("SNAP data with resp and resp with added variance\n") snapDF <- read.table("snapData.csv",header=TRUE, sep=",", stringsAsFactors=FALSE) geno.rec <- setupGeno(snapDF[,-c(1:9)]) snap.data <- data.frame(resp=hla.demo$resp, respvar=hla.demo$resp*100, geno=geno.rec) set.seed(seed) fit.resp.hla <- haplo.glm(resp~geno, trait.type="gaussian",data=snap.data) set.seed(seed) fit.respvar.hla <- haplo.glm(respvar~geno, trait.type="gaussian",data=snap.data) cat("summary function\n") print(summary(fit.hla.bin),digits=3) cat("fitted values for hlabin, hla-gaussian, hla-gaussian-hi-variance\n") print(fitted(fit.hla.bin)[1:20],digits=3) print(fitted(fit.resp.hla)[1:20],digits=3) print(fitted(fit.respvar.hla)[1:20],digits=3) cat("vcov for hlabin, hla-gaussian, hla-gaussian-hi-variance\n") print(vcov(fit.hla.bin)[1:20,1:20],digits=3) print(vcov(fit.resp.hla),digits=3) print(vcov(fit.respvar.hla),digits=3) cat("residuals for hlabin, hla-gaussian, hla-gaussian-hi-variance\n") print(residuals(fit.hla.bin, type="deviance")[1:20],digits=3) print(residuals(fit.hla.bin, type="pearson")[1:20],digits=3) print(residuals(fit.hla.bin, type="response")[1:20],digits=3) print(residuals(fit.resp.hla)[1:20],digits=3) print(residuals(fit.respvar.hla)[1:20],digits=3) haplo.stats/tests/expanded/snapData.csv0000644000176200001440000001744014672315243017731 0ustar liggesusers"y.bin","loc1.1","loc1.2","loc2.1","loc2.2","loc3.1","loc3.2","loc4.1","loc4.2","loc5.1","loc5.2","loc6.1","loc6.2","loc7.1","loc7.2" "1",1,1,2,1,1,1,1,1,1,1,2,1,1,1,2 "2",1,1,2,1,1,1,2,1,1,1,2,1,1,1,2 "3",1,1,1,1,1,1,2,1,1,2,2,2,2,2,2 "4",1,1,1,1,1,1,1,1,1,2,2,2,2,1,2 "5",2,1,1,1,2,NA,1,1,1,1,2,1,2,1,2 "6",1,1,1,1,2,1,1,1,1,2,2,1,2,1,2 "7",1,1,1,1,1,1,1,1,2,1,2,1,2,2,2 "8",1,1,2,1,2,1,1,1,1,1,2,1,2,2,2 "9",1,1,2,1,1,1,2,1,2,1,1,1,1,2,2 "10",1,1,1,1,1,1,2,1,2,1,1,1,1,2,2 "11",1,1,2,1,1,1,1,1,2,NA,1,1,2,2,2 "12",1,1,1,1,1,1,1,2,2,1,1,1,1,2,2 "13",2,1,2,1,2,1,1,1,2,1,2,1,2,2,2 "14",1,1,1,NA,1,1,1,1,2,1,2,1,2,2,2 "15",1,1,2,1,1,1,1,1,1,2,2,2,2,1,2 "16",1,1,1,1,1,1,2,1,2,1,1,1,1,2,2 "17",1,1,1,1,1,1,1,1,2,1,2,1,2,1,2 "18",1,2,2,1,1,1,1,2,2,1,2,1,2,2,2 "19",2,1,1,1,2,1,2,1,2,1,2,1,2,1,2 "20",1,1,1,1,1,1,1,1,1,2,2,1,2,1,2 "21",2,1,2,1,2,1,1,2,2,1,2,1,2,2,2 "22",1,1,1,1,1,1,2,1,1,2,2,1,2,1,1 "23",2,1,1,1,2,2,2,2,2,2,2,2,2,2,2 "24",1,1,2,1,1,1,2,1,1,2,2,1,2,1,1 "25",2,1,1,2,2,1,2,1,1,1,2,1,1,1,1 "26",2,1,1,1,2,1,1,1,1,2,2,1,2,1,2 "27",1,2,2,1,1,1,1,1,2,1,1,1,1,2,2 "28",2,1,2,2,2,1,2,1,1,2,2,1,1,1,1 "29",1,1,1,1,1,1,2,1,1,1,2,1,2,1,2 "30",2,1,2,1,2,1,1,1,1,1,2,1,2,1,1 "31",1,1,2,1,2,1,1,1,2,1,2,1,2,1,2 "32",2,1,1,1,2,1,2,1,1,1,2,1,2,1,2 "33",2,1,2,2,2,1,2,1,1,1,1,1,1,1,2 "34",1,1,1,1,1,1,1,1,1,1,2,1,2,1,2 "35",2,1,1,1,2,2,2,1,1,1,2,1,2,1,2 "36",1,1,1,1,1,1,1,1,2,1,1,1,1,1,2 "37",1,1,1,1,2,1,2,1,1,1,2,1,1,1,2 "38",2,1,2,1,2,1,2,1,1,1,2,1,2,1,2 "39",1,1,1,1,1,2,2,2,2,1,2,1,2,2,2 "40",1,1,2,1,1,1,1,1,1,1,2,1,1,1,1 "41",1,1,1,1,2,1,2,1,1,1,1,1,1,2,2 "42",1,1,2,1,1,1,1,1,1,1,2,1,2,2,2 "43",2,1,1,1,2,2,2,1,1,1,2,1,2,1,2 "44",2,1,2,1,2,1,1,1,2,2,2,2,2,2,2 "45",1,1,2,1,1,1,1,1,2,1,2,1,2,2,2 "46",1,1,2,1,1,1,1,1,1,2,2,1,1,1,1 "47",1,1,1,1,2,1,1,1,1,1,2,1,2,2,2 "48",1,1,2,1,1,1,1,1,2,1,2,1,1,1,2 "49",1,1,1,1,1,1,1,1,1,1,2,1,2,1,2 "50",2,1,1,1,2,2,2,1,2,1,2,1,2,2,2 "51",2,1,1,1,2,1,2,1,1,1,2,1,2,1,1 "52",1,1,1,1,2,1,2,1,2,1,1,1,1,2,2 "53",1,1,1,1,1,1,1,1,1,2,2,1,2,1,1 "54",1,1,1,1,1,2,2,1,1,2,2,1,2,1,2 "55",1,1,1,1,2,2,2,1,1,1,1,1,1,1,2 "56",1,1,1,1,1,1,1,1,1,2,2,2,2,1,2 "57",2,1,1,1,2,1,2,1,1,NA,1,1,2,2,2 "58",1,1,2,1,1,1,2,1,1,1,1,1,1,1,1 "59",2,1,1,1,2,1,2,1,2,1,2,1,2,2,2 "60",1,1,1,1,2,1,2,1,2,1,2,1,2,2,2 "61",1,1,1,1,1,1,2,1,1,1,2,1,2,2,2 "62",1,1,2,1,2,1,1,1,2,1,2,1,1,1,2 "63",1,1,1,1,1,1,2,1,1,1,1,1,1,1,2 "64",1,1,1,1,2,1,1,1,1,1,1,1,1,1,1 "65",2,2,2,2,2,1,1,1,1,1,1,1,1,1,2 "66",1,1,1,1,1,1,1,1,2,2,2,2,2,NA,2 "67",1,1,2,1,1,1,1,1,2,1,1,1,1,2,2 "68",1,1,1,1,1,1,1,1,2,1,2,1,1,1,2 "69",1,1,2,1,1,1,1,1,1,NA,2,1,1,1,1 "70",2,1,2,2,2,1,2,1,2,1,1,1,1,1,2 "71",1,1,1,1,1,1,1,1,1,1,2,1,1,1,2 "72",1,1,1,1,1,1,1,1,1,1,1,1,1,2,2 "73",1,1,1,1,1,1,2,1,1,1,1,1,1,1,2 "74",2,1,1,1,2,1,2,1,1,1,2,1,2,2,2 "75",1,1,1,1,2,1,2,1,2,2,2,1,2,1,2 "76",2,1,2,1,2,1,2,1,2,1,2,1,2,2,2 "77",1,1,1,1,2,2,2,1,1,1,2,1,1,1,1 "78",2,1,2,2,2,1,2,1,1,2,2,1,2,1,1 "79",2,1,2,1,2,1,2,2,2,1,2,1,2,2,2 "80",2,1,2,1,2,1,1,1,1,2,2,1,2,1,1 "81",1,1,1,NA,1,1,1,1,1,2,2,2,2,2,2 "82",2,1,1,1,2,1,2,1,2,NA,2,1,2,1,2 "83",2,1,2,2,2,1,2,1,2,1,1,1,1,2,2 "84",1,1,1,1,1,1,1,1,1,1,1,1,1,2,2 "85",1,1,1,1,1,1,2,1,2,1,1,1,1,2,2 "86",1,1,1,1,1,1,1,1,2,1,1,1,1,2,2 "87",1,1,1,1,1,1,2,1,1,1,1,1,1,2,2 "88",2,1,2,1,2,1,1,1,1,1,2,1,2,2,2 "89",1,1,1,1,1,1,1,1,2,1,1,1,1,2,2 "90",1,1,2,1,2,1,2,1,2,1,2,1,1,NA,2 "91",1,1,2,1,1,1,2,1,1,1,2,1,1,1,2 "92",1,1,1,1,1,1,1,1,2,1,1,1,1,NA,2 "93",1,1,2,1,1,1,1,1,1,2,2,1,2,1,1 "94",2,1,1,1,2,1,2,1,2,1,2,1,2,2,2 "95",1,1,2,1,2,1,2,1,1,2,2,1,1,1,1 "96",1,1,1,1,2,1,1,1,1,1,1,1,1,2,2 "97",1,1,1,1,1,1,1,1,2,1,1,1,1,1,2 "98",1,1,1,1,2,1,2,1,1,1,1,1,1,2,2 "99",2,2,2,2,2,1,1,1,1,1,2,1,2,2,2 "100",1,1,1,1,1,1,1,1,1,2,2,2,2,1,1 "101",1,1,2,1,2,1,1,1,1,2,2,1,1,1,1 "102",2,1,2,1,2,1,1,1,1,1,2,1,2,2,2 "103",1,1,2,1,1,1,2,1,1,2,2,1,2,1,2 "104",1,1,1,1,1,1,1,1,1,1,2,1,1,1,2 "105",1,1,1,1,1,1,1,1,1,1,1,1,1,1,2 "106",1,1,2,1,2,1,1,1,1,1,2,1,1,1,2 "107",1,1,1,1,1,1,2,1,2,1,2,1,2,1,2 "108",1,1,1,1,2,2,2,1,2,2,2,1,2,1,2 "109",1,1,1,1,1,1,1,1,2,1,2,1,1,1,2 "110",1,1,1,1,1,1,2,1,1,1,2,1,1,1,1 "111",1,1,2,1,1,1,1,1,2,1,2,1,2,2,2 "112",1,1,2,1,2,1,2,1,2,1,1,1,1,1,2 "113",1,1,1,1,2,2,2,1,1,2,2,1,2,1,1 "114",1,1,1,1,2,1,2,1,1,2,2,1,2,1,2 "115",1,1,2,1,2,1,1,1,1,1,1,1,1,2,2 "116",1,1,2,1,2,1,1,1,1,1,2,1,1,1,2 "117",1,1,1,1,1,1,1,1,1,1,1,1,1,2,2 "118",1,1,2,1,1,1,1,1,2,1,1,1,1,2,2 "119",1,1,1,1,1,NA,2,2,2,1,2,NA,1,2,2 "120",1,1,1,1,1,1,2,1,2,1,2,1,2,1,2 "121",1,1,1,1,1,2,2,1,1,2,2,1,2,1,2 "122",1,1,2,1,2,1,1,1,2,1,2,1,2,2,2 "123",1,1,1,1,1,1,2,1,2,1,2,1,2,1,2 "124",1,1,2,1,1,1,1,1,1,1,1,1,1,2,2 "125",1,1,1,1,1,1,2,1,2,1,2,1,2,1,2 "126",1,1,1,1,2,1,2,1,1,1,2,1,2,1,2 "127",1,1,1,1,2,1,2,1,1,2,2,2,2,1,2 "128",1,1,1,1,2,1,1,1,1,1,1,1,1,1,2 "129",1,1,2,1,2,1,2,1,2,1,2,1,2,2,2 "130",1,1,2,1,2,1,1,1,1,1,1,1,1,1,2 "131",1,1,1,1,2,2,2,2,2,1,1,1,1,2,2 "132",1,1,1,1,2,1,1,1,2,1,2,1,1,1,2 "133",1,1,1,1,1,1,1,2,2,1,1,1,1,2,2 "134",1,1,1,1,2,1,2,1,2,2,2,1,2,1,2 "135",2,2,2,2,2,1,1,1,1,1,2,1,2,1,2 "136",1,1,2,1,1,1,1,1,2,1,2,1,2,2,2 "137",1,1,1,1,1,1,2,1,1,1,1,1,1,1,1 "138",1,1,2,1,1,1,2,1,1,1,2,1,2,2,2 "139",1,1,1,1,1,1,1,1,1,1,2,1,2,2,2 "140",1,1,1,1,1,2,2,1,2,1,1,1,1,2,2 "141",1,2,2,1,1,1,1,1,2,1,1,1,1,2,2 "142",1,1,1,1,1,1,2,1,1,1,2,1,2,2,2 "143",1,1,2,1,2,1,1,1,1,1,2,1,1,1,1 "144",1,1,1,1,1,2,2,1,1,2,2,1,2,1,1 "145",1,1,1,1,1,2,2,1,1,2,2,1,1,1,1 "146",1,1,2,1,1,1,1,1,2,1,2,1,2,2,2 "147",1,1,1,1,1,1,2,1,2,1,2,1,2,1,2 "148",2,1,2,2,2,1,2,1,2,1,1,1,1,2,2 "149",1,1,2,1,1,1,1,1,1,1,1,1,1,1,2 "150",2,1,1,1,2,1,2,1,1,1,2,1,2,1,2 "151",1,1,1,1,2,1,1,1,1,1,2,1,1,1,1 "152",1,1,1,1,2,1,2,2,2,NA,2,1,2,2,2 "153",1,1,2,1,1,1,2,1,1,2,2,2,2,1,2 "154",1,1,1,1,2,2,2,1,1,2,2,1,2,1,1 "155",2,2,2,1,2,1,1,1,1,1,2,1,2,1,2 "156",1,1,2,1,2,1,1,1,1,1,1,1,1,2,2 "157",1,1,1,1,1,1,1,1,1,2,2,1,2,1,2 "158",1,1,1,1,1,1,1,1,1,NA,1,1,1,1,2 "159",1,1,1,1,2,1,2,1,1,2,2,1,1,1,1 "160",1,1,1,1,2,1,2,1,1,1,2,1,2,1,2 "161",1,1,2,1,1,1,2,1,2,1,2,1,2,1,2 "162",2,1,1,2,2,2,2,1,2,1,1,1,1,1,2 "163",1,1,2,1,2,1,2,1,1,1,2,1,2,1,2 "164",1,1,1,1,1,1,2,1,1,1,2,1,2,1,2 "165",1,1,2,1,2,1,1,1,2,2,2,1,2,1,2 "166",1,1,1,1,1,1,2,1,1,1,1,1,1,1,1 "167",1,1,2,1,1,1,1,1,1,2,2,1,1,1,1 "168",1,1,1,1,2,1,2,1,1,2,2,1,2,1,1 "169",2,1,2,1,2,1,1,1,2,2,2,2,2,1,2 "170",1,1,1,1,1,1,1,1,2,1,2,1,2,1,2 "171",2,1,2,2,2,1,1,1,2,1,1,1,1,1,2 "172",1,1,2,1,1,1,1,1,2,1,1,1,1,2,2 "173",1,1,1,1,1,1,1,1,1,1,2,1,2,2,2 "174",2,1,2,1,2,1,2,1,2,2,2,1,2,1,2 "175",1,1,1,1,1,1,2,1,1,1,2,1,2,1,2 "176",1,1,2,1,1,1,1,1,1,1,2,1,1,1,1 "177",1,1,2,1,1,1,1,1,1,2,2,1,2,1,2 "178",1,1,1,1,2,1,2,1,1,1,1,1,1,1,2 "179",1,1,1,1,1,1,1,1,2,2,2,1,2,1,2 "180",1,1,2,1,1,1,1,1,2,1,1,1,1,1,2 "181",1,1,1,1,2,1,1,1,2,1,1,1,1,2,2 "182",1,1,1,1,1,1,1,1,2,1,2,1,2,2,2 "183",1,1,1,1,1,1,1,NA,1,1,1,1,1,1,2 "184",1,1,1,1,1,1,1,1,1,1,1,1,1,1,2 "185",1,1,2,1,1,1,1,2,2,1,2,NA,1,2,2 "186",2,1,1,1,2,1,2,1,1,1,2,1,2,1,2 "187",2,1,2,2,2,1,1,1,1,1,2,1,2,1,2 "188",1,1,1,1,2,1,1,NA,1,2,2,1,1,1,1 "189",1,NA,2,1,1,1,2,2,2,1,2,1,2,2,2 "190",1,1,1,1,1,1,1,1,1,2,2,1,2,1,1 "191",1,1,1,1,1,2,2,1,2,1,1,1,1,2,2 "192",1,1,2,1,1,1,1,1,2,1,1,1,1,1,2 "193",1,1,1,1,2,1,2,1,1,2,2,1,2,1,2 "194",1,1,1,1,2,1,2,1,2,1,2,1,2,2,2 "195",2,1,2,1,2,1,1,NA,2,1,2,1,2,2,2 "196",1,1,2,1,2,1,2,1,1,1,2,1,1,1,2 "197",1,1,1,1,2,1,2,1,1,1,2,1,2,1,2 "198",2,1,1,2,2,2,2,1,2,1,1,1,1,1,2 "199",1,1,1,1,1,1,1,1,1,1,2,1,2,1,2 "200",2,2,2,2,2,1,1,1,1,2,2,1,2,1,1 "201",1,1,1,1,2,1,2,1,1,1,2,1,1,NA,2 "202",1,1,2,1,1,1,1,1,1,2,2,1,2,1,2 "203",2,NA,2,1,2,1,1,1,2,2,2,1,2,1,2 "204",2,1,1,2,2,2,2,1,1,1,2,1,1,1,2 "205",2,1,2,2,2,1,1,1,2,1,1,1,1,2,2 "206",2,2,2,2,2,1,1,1,1,2,2,1,2,1,2 "207",2,2,2,2,2,1,1,1,2,2,2,1,2,1,2 "208",2,1,2,1,2,1,1,1,2,1,2,1,2,1,2 "209",2,1,2,1,2,1,1,1,1,2,2,1,2,1,1 "210",2,1,2,2,2,1,1,2,2,2,2,2,2,2,2 "211",2,1,2,1,2,1,1,1,2,2,2,2,2,1,2 "212",2,1,2,1,2,1,1,1,1,2,2,2,2,1,2 "213",2,1,1,2,2,2,2,1,1,1,2,1,1,1,2 "214",2,1,1,2,2,1,1,2,2,1,1,1,1,2,2 "215",2,1,2,2,2,1,2,1,2,2,2,2,2,NA,2 "216",2,1,1,1,2,1,2,1,1,2,2,1,2,1,2 "217",2,1,1,1,2,1,1,1,1,1,2,1,2,1,2 "218",2,1,1,1,2,1,2,1,1,1,2,1,2,1,2 "219",2,1,2,1,2,1,2,1,2,1,2,1,2,2,2 "220",2,2,2,2,2,1,1,1,1,1,2,1,1,1,1 haplo.stats/tests/expanded/snap.sim.phased.dat0000644000176200001440000021450014672315243021142 0ustar liggesusers2,1,2,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.2,2,1,1,1,2,2,2,1,1 1,2,2,1,2,2,1,1.1,1,1,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 2,1,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 2,1,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,2,2,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,2,2,1,2,2,1,1.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,1,2,2,1,1.2,2,2,1,1,1,1,2,2,2 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.1,1,1,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,2,1,2,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,2,1,2,2.2,2,1,1,1,2,2,2,1,1 1,2,2,1,2,2,1,1.1,2,2,1,1,1,2,2,1,1 1,2,2,1,2,2,1,1.2,2,2,1,1,1,1,2,2,2 2,1,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.1,2,2,1,1,1,2,2,1,1 1,2,2,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,1,1,2,2,2,1,1,2,2 1,2,2,1,2,2,1,1.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,1,1,2,2,2,1,1,2,2 2,1,1,1,2,2,1,2.1,2,2,1,1,1,2,2,1,1 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.1,1,1,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,1,1,2,2,2,1,1,2,2 1,1,1,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,2,2,1,1,1,1,2,2,2 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.2,1,1,2,2,2,1,1,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.1,1,1,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,2,1,2,2.2,1,1,2,2,2,1,1,2,2 1,1,1,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 2,1,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.2,1,1,2,2,2,1,1,2,2 1,1,1,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,2,1,2,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,2,1,2,2.1,1,1,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,1,2,2,1,1.2,2,1,1,1,2,2,2,1,1 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,2,2,1,2,2,1,1.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.1,2,2,1,1,1,2,2,1,1 2,1,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,1,2,2,1,1.2,1,1,2,2,2,1,1,2,2 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,1,1,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,1,2,2,1,1.2,2,1,1,1,2,2,2,1,1 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,1,1,2,2,2,1,1,2,2 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.1,1,1,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,1,1,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,2,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,2,1,2,2.2,2,2,1,1,1,1,2,2,2 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,2,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.1,1,1,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,1,1,1,2,2,1,1.2,1,1,2,2,2,1,1,2,2 1,1,1,1,2,2,1,1.1,2,2,1,1,1,2,2,1,1 1,1,1,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.1,1,1,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,2,1,2,2.1,1,1,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.2,2,1,1,1,2,2,2,1,1 2,1,1,1,2,2,1,2.2,1,1,2,2,2,1,1,2,2 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 2,1,2,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 2,1,2,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.2,1,1,2,2,2,1,1,2,2 2,1,1,1,2,2,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.2,1,1,2,2,2,1,1,2,2 1,2,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,2,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,1,2,2,1,1.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,1,1,2,2,2,1,1,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.1,1,1,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,2,2,1,1,1,1,2,2,2 1,1,1,1,2,2,1,1.2,1,1,2,2,2,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.2,1,1,2,2,2,1,1,2,2 2,1,1,1,2,2,1,2.2,2,1,1,1,2,2,2,1,1 1,2,2,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,2,1,1,1,2,2,2,1,1 1,1,1,2,2,1,2,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,1,1,2,2,1,2,2.2,2,2,1,1,1,1,2,2,2 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,2,1,1,1,2,2,2,1,1 2,1,2,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.2,1,1,2,2,2,1,1,2,2 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,1,1,2,2,2,1,1,2,2 2,1,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.2,1,1,2,2,2,1,1,2,2 1,1,1,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,1,1,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.1,1,1,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,2,1,2,2.1,1,1,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,1,1,2,2,2,1,1,2,2 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,1,1,1,2,2,1,1.2,2,1,1,1,2,2,2,1,1 1,1,1,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.2,2,2,1,1,1,1,2,2,2 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,2,1,1,1,2,2,2,1,1 1,2,2,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 2,1,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,2,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.1,2,2,1,1,1,2,2,1,1 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,2,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,2,2,1,2,2,1,1.2,2,2,1,1,1,1,2,2,2 1,1,1,2,2,1,2,2.2,2,1,1,1,2,2,2,1,1 2,1,1,1,2,2,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 2,1,2,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,2,2,1,2,2,1,1.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,2,2,1,2,2,1,1.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,2,2,1,2,2,1,1.2,2,2,1,1,1,1,2,2,2 1,1,1,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.1,1,1,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,1,1,2,2,2,1,1,2,2 2,1,1,1,2,2,1,2.2,2,2,1,1,1,1,2,2,2 2,1,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 2,1,2,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 2,1,2,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 2,1,2,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 2,1,1,1,2,2,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.2,1,1,2,2,2,1,1,2,2 1,2,2,1,2,2,1,1.2,2,1,1,1,2,2,2,1,1 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.2,2,2,1,1,1,1,2,2,2 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.1,2,2,1,1,1,2,2,1,1 2,1,1,1,2,2,1,2.2,2,1,1,1,2,2,2,1,1 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,2,1,1,1,2,2,2,1,1 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 2,1,2,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,2,1,2,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 2,1,1,1,2,2,1,2.2,2,1,1,1,2,2,2,1,1 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,1,1,2,2,2,1,1,2,2 1,2,2,1,2,2,1,1.2,2,2,1,1,1,1,2,2,2 1,1,1,2,2,1,2,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,2,1,2,2.2,2,2,1,1,1,1,2,2,2 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 2,1,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 2,1,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.2,2,2,1,1,1,1,2,2,2 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,2,2,1,1,1,1,2,2,2 1,2,2,1,2,2,1,1.2,1,1,2,2,2,1,1,2,2 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.1,2,2,1,1,1,2,2,1,1 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.2,1,1,2,2,2,1,1,2,2 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,2,2,1,2,2,1,1.1,2,2,1,1,1,2,2,1,1 1,2,2,1,2,2,1,1.1,1,1,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,2,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 2,1,1,1,2,2,1,2.2,2,2,1,2,2,2,2,2,1 2,1,2,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,1,1,1,2,2,1,1.1,2,2,1,1,1,2,2,1,1 1,2,2,1,2,2,1,1.2,1,1,2,2,2,1,1,2,2 1,2,2,1,2,2,1,1.1,2,2,1,1,1,2,2,1,1 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,2,2,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,2,2,1,2,2,1,1.2,1,1,2,2,2,1,1,2,2 1,1,1,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 2,1,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.2,2,2,1,1,1,1,2,2,2 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,2,1,1,1,2,2,2,1,1 2,1,1,1,2,2,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,2,1,2,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 2,1,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.1,1,1,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.1,1,1,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,2,2,1,2,2,1,1.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.2,1,1,2,2,2,1,1,2,2 1,2,2,1,2,2,1,1.2,2,1,1,1,2,2,2,1,1 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,1,2,2,1,1.2,2,1,1,1,2,2,2,1,1 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 2,1,2,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 1,1,1,1,2,2,1,1.1,2,2,1,1,1,2,2,1,1 1,1,1,2,2,1,2,2.1,1,1,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,2,1,2,2.2,2,2,1,1,1,1,2,2,2 1,1,1,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 2,1,1,1,2,2,1,2.1,2,2,1,1,1,2,2,1,1 2,1,1,1,2,2,1,2.2,2,2,1,1,1,1,2,2,2 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.1,1,1,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 2,1,1,1,2,2,1,2.1,1,1,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.1,1,1,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 1,1,1,1,2,2,1,1.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 2,1,2,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.2,2,2,1,2,2,2,2,2,1 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,2,2,1,2,2,1,1.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.1,1,1,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.2,2,2,1,1,1,1,2,2,2 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.1,2,2,1,1,1,2,2,1,1 2,1,2,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,2,2,1,2,2,1,1.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,2,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,1,2,2,1,1.2,2,1,1,1,2,2,2,1,1 1,2,2,1,2,2,1,1.2,1,1,2,2,2,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.1,1,1,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,2,1,2,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 2,1,2,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,2,1,2,2.1,1,1,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,1,1,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,2,1,2,2.2,2,1,1,1,2,2,2,1,1 1,2,2,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.1,1,1,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,2,2,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,2,2,1,2,2,1,1.2,2,2,1,1,1,1,2,2,2 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 2,1,1,1,2,2,1,2.2,2,2,1,1,1,1,2,2,2 1,2,2,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,2,2,1,2,2,1,1.1,1,1,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 2,1,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,2,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,2,2,1,1,1,1,2,2,2 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,1,2,2,1,1.1,2,2,1,1,1,2,2,1,1 2,1,2,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 2,1,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 2,1,1,1,2,2,1,2.2,2,1,1,1,2,2,2,1,1 2,1,1,1,2,2,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,1,2,2,1,1.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,1,1,2,2,1,2,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,2,1,1,1,2,2,2,1,1 1,2,2,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,2,2,1,1,1,1,2,2,2 1,1,1,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,2,1,1,1,2,2,2,1,1 1,1,1,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,2,1,2,2.2,1,1,2,2,2,1,1,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,2,1,1,1,2,2,2,1,1 2,1,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,2,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,2,1,2,2.2,1,1,2,2,2,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,2,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,2,1,2,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,2,2,1,2,2,1,1.2,2,1,1,1,2,2,2,1,1 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 2,1,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,1,2,2,1,1.1,1,1,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.1,2,2,1,1,1,2,2,1,1 1,1,1,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,2,1,2,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,1,2,2,1,1.2,1,1,2,2,2,1,1,2,2 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,1,2,2,1,1.2,1,1,2,2,2,1,1,2,2 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,2,2,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,2,2,1,2,2,1,1.2,2,2,1,1,1,1,2,2,2 1,2,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.1,2,2,1,1,1,2,2,1,1 2,1,1,1,2,2,1,2.2,2,1,1,1,2,2,2,1,1 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,1,1,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 2,1,1,1,2,2,1,2.2,1,1,2,2,2,1,1,2,2 1,2,2,1,2,2,1,1.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,2,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.2,2,1,1,1,2,2,2,1,1 2,1,2,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.2,2,1,1,1,2,2,2,1,1 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,1,2,2,1,1.2,2,2,1,1,1,1,2,2,2 2,1,2,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,1,2,2,1,1.2,1,1,2,2,2,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 2,1,2,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,2,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,2,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 2,1,1,1,2,2,1,2.1,2,2,1,1,1,2,2,1,1 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,2,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.2,2,2,1,1,1,1,2,2,2 1,2,2,1,2,2,1,1.1,2,2,1,1,1,2,2,1,1 2,1,1,1,2,2,1,2.2,1,1,2,2,2,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,1,2,2,1,1.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,2,2,1,1,1,1,2,2,2 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 2,1,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.1,2,2,1,1,1,2,2,1,1 1,2,2,1,2,2,1,1.2,2,2,1,1,1,1,2,2,2 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 2,1,1,1,2,2,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.2,2,2,1,1,1,1,2,2,2 2,1,2,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.1,1,1,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 2,1,2,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,2,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 2,1,2,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 2,1,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.1,1,1,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,2,2,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.1,1,1,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.2,2,2,1,1,1,1,2,2,2 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 2,1,2,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.2,2,2,1,1,1,1,2,2,2 1,2,2,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 2,1,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,2,1,2,2.1,1,1,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 2,1,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,2,2,1,1,1,1,2,2,2 1,1,1,1,2,2,1,1.1,2,2,1,1,1,2,2,1,1 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 2,1,2,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.2,2,2,1,2,2,2,2,2,1 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 2,1,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.2,2,1,1,1,2,2,2,1,1 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,2,1,2,2.2,2,2,1,1,1,1,2,2,2 2,1,2,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 2,1,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.2,2,1,1,1,2,2,2,1,1 1,1,1,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,1,1,1,2,2,1,1.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,2,2,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 2,1,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,1,2,2,1,1.2,2,2,1,1,1,1,2,2,2 1,2,2,1,2,2,1,1.1,2,2,1,1,1,2,2,1,1 2,1,2,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.1,2,2,1,1,1,2,2,1,1 2,1,1,1,2,2,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.2,2,1,1,1,2,2,2,1,1 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,2,1,2,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,1,2,2,1,1.2,2,2,1,1,1,1,2,2,2 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,1,2,2,1,1.2,2,1,1,1,2,2,2,1,1 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 2,1,1,1,2,2,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.1,2,2,1,1,1,2,2,1,1 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.1,1,1,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 2,1,2,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.1,2,2,1,1,1,2,2,1,1 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 2,1,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 2,1,2,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 2,1,2,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.1,2,2,1,1,1,2,2,1,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,1,2,2,1,1.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 2,1,2,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,2,2,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,2,2,1,2,2,1,1.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,1,1,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.2,2,1,1,1,2,2,2,1,1 2,1,2,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,2,2,1,2,2,1,1.2,2,1,1,1,2,2,2,1,1 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,2,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.1,1,1,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.1,2,2,1,1,1,2,2,1,1 2,1,1,1,2,2,1,2.2,1,1,2,2,2,1,1,2,2 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,1,1,2,2,2,1,1,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,2,1,1,1,2,2,2,1,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,2,2,1,2,2,1,1.2,2,2,1,1,1,1,2,2,2 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.2,2,1,1,1,2,2,2,1,1 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,1,2,2,1,1.1,1,1,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,2,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 2,1,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,2,1,2,2.1,1,1,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 2,1,1,1,2,2,1,2.1,1,1,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,2,2,1,2,2,1,1.2,2,1,1,1,2,2,2,1,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.1,1,1,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.1,2,2,1,1,1,2,2,1,1 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 2,1,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.2,2,1,1,1,2,2,2,1,1 1,2,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.1,1,1,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,2,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,2,1,1,1,2,2,2,1,1 1,2,2,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,2,2,1,2,2,1,1.2,1,1,2,2,2,1,1,2,2 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,1,2,2,1,1.1,1,1,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 2,1,1,1,2,2,1,2.2,2,2,1,2,2,2,2,2,1 2,1,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,1,1,1,2,2,1,1.2,2,2,1,1,1,1,2,2,2 1,2,2,1,2,2,1,1.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,2,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.1,2,2,1,1,1,2,2,1,1 1,1,1,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,2,2,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 2,1,1,1,2,2,1,2.2,2,2,1,1,1,1,2,2,2 2,1,1,1,2,2,1,2.2,2,1,1,1,2,2,2,1,1 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 2,1,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.1,1,1,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,2,2,1,2,2,1,1.1,1,1,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,2,1,2,2.1,2,2,1,1,1,2,2,1,1 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,2,2,1,2,2,1,1.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 2,1,2,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 2,1,2,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,1,1,2,2,2,1,1,2,2 1,2,2,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,2,1,2,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.2,1,1,2,2,2,1,1,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.1,2,2,1,1,1,2,2,1,1 2,1,2,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,2,2,1,2,2,1,1.2,2,1,1,1,2,2,2,1,1 1,2,2,1,2,2,1,1.1,1,1,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 2,1,2,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.1,1,1,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 2,1,2,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,2,2,1,2,2,1,1.2,2,1,1,1,2,2,2,1,1 2,1,1,1,2,2,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.2,2,2,1,1,1,1,2,2,2 2,1,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.1,1,1,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 2,1,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 2,1,2,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,1,2,2,1,1.1,1,1,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,2,2,1,2,2,1,1.1,1,1,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,1,1,1,2,2,1,1.2,2,1,1,1,2,2,2,1,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,2,1,1,1,2,2,2,1,1 1,2,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 1,1,1,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,2,1,2,2.2,2,1,1,1,2,2,2,1,1 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,1,1,1,2,2,1,1.1,1,1,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,2,2,1,2,2,1,1.2,2,2,1,1,1,1,2,2,2 1,1,1,2,2,1,2,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,2,1,2,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,2,1,2,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.2,2,1,1,1,2,2,2,1,1 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.2,1,1,2,2,2,1,1,2,2 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,2,2,1,2,2,1,1.1,2,2,1,1,1,2,2,1,1 1,2,2,1,2,2,1,1.2,2,2,1,1,1,1,2,2,2 1,1,1,2,2,1,2,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,2,1,2,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.2,1,1,2,2,2,1,1,2,2 1,2,2,1,2,2,1,1.2,2,1,1,1,2,2,2,1,1 2,1,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.1,2,2,1,1,1,2,2,1,1 2,1,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.2,1,1,2,2,2,1,1,2,2 1,2,2,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,2,2,1,2,2,1,1.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.1,1,1,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,2,2,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.2,2,1,1,1,2,2,2,1,1 1,2,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.1,2,2,1,1,1,2,2,1,1 2,1,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 2,1,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.1,2,2,1,1,1,2,2,1,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,2,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,1,1,2,2,2,1,1,2,2 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.1,1,1,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 2,1,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.2,2,2,1,1,1,1,2,2,2 1,2,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,2,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,2,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,1,1,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,1,1,2,2,2,1,1,2,2 2,1,1,1,2,2,1,2.1,1,1,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,2,2,1,2,2,1,1.1,2,2,1,1,1,2,2,1,1 1,1,1,1,2,2,1,1.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.2,1,1,2,2,2,1,1,2,2 2,1,1,1,2,2,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,2,1,2,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.2,1,1,2,2,2,1,1,2,2 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,2,2,1,2,2,1,1.2,2,1,1,1,2,2,2,1,1 1,1,1,2,2,1,2,2.1,1,1,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,1,1,2,2,2,1,1,2,2 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.2,1,1,2,2,2,1,1,2,2 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.2,2,1,1,1,2,2,2,1,1 1,2,2,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.2,1,1,2,2,2,1,1,2,2 1,2,2,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.2,2,2,1,1,1,1,2,2,2 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,2,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 2,1,2,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,1,2,2,1,1.1,1,1,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.1,1,1,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 2,1,2,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,1,1,2,2,1,2,2.2,2,2,1,1,1,1,2,2,2 2,1,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,2,1,1,1,2,2,2,1,1 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.2,2,2,1,1,1,1,2,2,2 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.1,2,2,1,1,1,2,2,1,1 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.1,2,2,1,1,1,2,2,1,1 1,1,1,2,2,1,2,2.2,2,1,1,1,2,2,2,1,1 1,2,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.1,1,1,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 2,1,1,1,2,2,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.2,2,2,1,1,1,1,2,2,2 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 2,1,2,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 2,1,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.2,2,1,1,1,2,2,2,1,1 2,1,2,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 2,1,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 2,1,2,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.2,2,2,1,1,1,1,2,2,2 1,2,2,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 2,1,2,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,2,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,2,2,1,2,2,1,1.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,2,1,1,1,2,2,2,1,1 1,1,1,2,2,1,2,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,1,1,2,2,2,1,1,2,2 1,1,1,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.2,1,1,2,2,2,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 2,1,2,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 2,1,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.1,2,2,1,1,1,2,2,1,1 2,1,2,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.1,1,1,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,2,2,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 2,1,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,1,2,2,1,1.1,2,2,1,1,1,2,2,1,1 2,1,1,1,2,2,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.1,2,2,1,1,1,2,2,1,1 1,2,2,1,2,2,1,1.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,2,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 2,1,2,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,2,2,1,2,2,1,1.2,2,1,1,1,2,2,2,1,1 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,2,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,1,2,2,1,1.1,1,1,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,1,2,2,1,1.1,1,1,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.1,1,1,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,1,1,2,2,1,2,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.2,1,1,2,2,2,1,1,2,2 1,1,1,2,2,1,2,2.2,1,1,2,2,2,1,1,2,2 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,2,2,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,2,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,1,1,2,2,1,2,2.2,2,2,1,1,1,1,2,2,2 2,1,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.2,2,2,1,1,1,1,2,2,2 1,2,2,1,2,2,1,1.2,2,1,1,1,2,2,2,1,1 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,2,1,2,2.1,1,2,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 2,1,1,1,2,2,1,2.1,1,2,1,2,2,1,2,2,1 2,1,2,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 2,1,1,1,2,2,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 2,1,2,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 1,1,1,2,2,1,2,2.1,1,1,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 2,1,2,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,2,2,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 2,1,1,1,2,2,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,2,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,2,2,1,2,2,1,1.2,2,1,1,1,2,2,2,1,1 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,1,1,1,2,2,1,2,2,1 1,2,2,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,2,2,2,1,1,1,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,1,1,1,2.2,2,2,1,1,1,1,2,2,2 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,1,1,1,2.2,2,1,1,1,2,2,2,1,1 2,1,2,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 1,1,1,2,2,1,2,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,2,1,2,2.1,2,2,1,1,1,2,2,1,1 1,1,1,2,2,1,2,2.2,2,2,1,2,2,2,2,2,1 1,2,2,1,2,2,1,1.2,1,1,2,2,1,1,1,2,2 2,1,1,1,2,2,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,2,2,1,2,2,1,1.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,2,1,1,2,2 2,1,2,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.2,1,1,2,2,1,1,1,2,2 1,1,1,2,1,1,1,2.2,2,2,1,2,2,2,2,2,1 1,1,1,2,1,1,1,2.1,1,2,1,2,2,1,2,2,1 haplo.stats/tests/expanded/test.haplo.glm.R0000644000176200001440000005450114672315243020442 0ustar liggesusers ## package: haplo.stats ## test script: haplo.glm ## settings verbose=TRUE require(haplo.stats) Sys.setlocale("LC_ALL", "C") Sys.getlocale() ## this is a dataset borrowed from a haplo.stats user # it has problems with recessive trait, but runs fast on all examples "data.test.glm" <- structure(.Data = list(c(1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.) , c(1., 2., 1., 2., 1., 1., 2., 1., 1., 2., 1., 2., 1., 1., 1., 1., 1., 2., 2., 1., 1., 1., 2., 2., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 2., 2.,2., 2., 2., 1., 1., 1., 1., 1., 2., 2., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 2., 2., 1., 1., 1., 1., 1., 1., 2., 2., 1., 1., 1., 1., 2., 1., 2., 2., 1., 2., 1., 2., 1., 2., 2., 1., 2., 2., 2.,1., 1., 1., 1., 1., 2., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 2., 1., 1., 2., 2., 1., 2., 1., 1., 1., 2., 1., 2., 1., 2., 2., 1., 1.,1., 1., 2., 1., 2., 1., 2., 2., 1., 2., 1., 1., 2., 2., 1., 2., 2., 2., 1., 2., 2., 1., 2., 2., 1., 2., 1., 1., 2., 1., 1., 1., 1., 2.,2., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 2., 1., 2., 1., 1., 1., 1., 2., 2.,1., 2., 1., 2., 2., 1., 2., 1., 1., 1., 2., 2., 1., 1., 1., 1., 2., 1., 1., 1., 1., 2., 2., 1., 2., 2., 2., 1., 1., 1., 2., 1., 1., 2.,1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 2., 2., 2., 1., 1., 1., 2., 1., 2., 1., 2., 1., 2., 1., 2., 1., 1., 1., 1., 1., 1., 2., 2., 1.,2., 2., 2., 1., 1., 2., 1., 1., 1., 1., 1., 2., 2., 1., 1., 1., 2., 1., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 2., 2., 1., 2., 1., 2.,1., 1., 1., 2., 1., 1., 1., 1., 2., 2., 1., 1., 2., 1., 2., 2., 1., 1., 2., 1., 1., 1., 1., 1., 2., 1., 2., 1., 1., 2., 1., 2., 2., 2.,1., 1., 2., 1., 2., 1., 1., 1., 1., 1., 1., 2., 2., 1., 1., 2., 1., 1., 1., 1., 2., 2., 2., 1., 1., 1., 1., 2., 1., 2., 2., 2., 2., 2.,1., 1., 2., 1., 2., 1., 2., 1., 2., 1., 1., 1., 1., 1., 1., 2., 2., 1., 2., 2., 1., 2., 2., 2., 1., 2., 1., 2., 2., 2., 1., 1., 1., 2.,1., 1., 2., 2., 2., 2., 1., 2., 2., 1., 2., 2., 1., 2., 1., 1., 1., 2., 1., 2., 2., 1., 2., 1., 1., 1., 1., 1., 1., 1.), c(1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 0., 1., 0.,0., 1., 1., 1., 1., 1., 1., 0., 1., 1., 1., 1., 0., 1., 1., 1., 0., 1., 1., 0., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 0.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 2., 1., 1., 1., 1., 0., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,0., 1., 1., 1., 1., 1., 0., 1., 1., 1., 1., 1., 1.) , c(1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 2., 1., 2., 1., 2., 1., 1., 1., 1., 1., 2., 1., 2., 1., 2., 2., 1., 1., 1., 1., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 2., 1., 1., 2., 1., 1.,2., 2., 1., 1., 1., 1., 1., 1., 1., 1., 2., 2., 1., 2., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 2.,1., 2., 2., 1., 1., 1., 2., 2., 1., 1., 2., 1., 2., 2., 1., 1., 1., 1., 1., 1., 2., 1., 1., 2., 1., 2., 1., 2., 1., 1., 1., 1., 2., 1.,2., 1., 1., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 0., 1., 0., 0., 1., 1., 1., 1., 2., 1., 0., 1., 2., 1., 1., 0., 1., 1., 1., 0.,1., 2., 0., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 2., 1., 0., 1., 1., 1., 1., 1., 2., 1., 2., 1., 2., 1., 1., 1., 1., 1., 2., 1.,1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 2., 2., 1., 1., 2., 0., 2., 2., 1., 1., 2., 1., 1.,1., 1., 2., 1., 1., 1., 1., 2., 1., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1.,1., 1., 1., 1., 2., 2., 1., 1., 2., 1., 1., 2., 1., 1., 2., 2., 2., 1., 2., 1., 1., 1., 2., 2., 1., 1., 1., 2., 1., 1., 1., 1., 2., 1.,1., 1., 1., 1., 1., 2., 2., 2., 2., 1., 1., 1., 1., 1., 2., 1., 1., 1., 2., 2., 1., 1., 1., 1., 1., 1., 2., 2., 2., 1., 1., 1., 1., 2.,1., 2., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 2., 2., 2., 2., 2., 2., 1., 1., 2., 1., 1., 1., 2., 2., 1., 1., 1., 2., 1.,1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 2., 1., 1., 1., 1., 1., 2., 1., 1., 2., 1., 2., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 1.,1., 1., 2., 1., 2., 2., 2., 2., 1., 1., 1., 1., 1., 2., 1., 1., 1., 0., 2., 1., 1., 1., 1., 0., 1., 1., 1., 2., 2., 2.) , c(1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,1., 1., 1., 1., 2., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 2.,1., 1., 1., 1., 1., 1., 1., 0., 1., 1., 1., 1., 2., 1., 1., 1., 2., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,0., 1., 1., 1., 1., 1., 1., 0., 1., 1., 1., 2., 0., 0., 1., 1., 0., 2., 1., 0., 1., 1., 1., 1., 1., 0., 1., 1., 2., 1., 1., 1., 2., 1.,2., 1., 2., 1., 0., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 2., 2., 1., 1., 2., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 0., 1., 1., 2., 2., 1., 1., 1., 1., 1., 1., 1., 0., 1., 2., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1.,1., 2., 1., 1., 1., 2., 1., 2., 1., 1., 1., 2., 1., 1., 1., 0., 1., 2., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1.,1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 2., 1., 1., 1., 2., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2.,1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 2., 1., 1.,1., 1., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 2., 1., 2., 1., 1., 1., 1., 1.,2., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 2., 1., 2., 1., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 1.,0., 1., 1., 2., 1., 1., 0., 2., 1., 1., 1., 1., 1.) , c(1., 2., 2., 2., 1., 1., 2., 2., 1., 2., 1., 1., 1., 1., 1., 2., 1., 2., 1., 2., 1., 1., 1., 2., 1., 1., 1., 1., 1., 2., 2., 2., 1., 2., 2., 1.,2., 1., 1., 1., 1., 1., 2., 2., 2., 2., 2., 1., 1., 2., 2., 1., 1., 2., 1., 1., 1., 2., 2., 1., 2., 1., 1., 2., 1., 2., 1., 2., 1., 1.,2., 2., 1., 1., 2., 2., 1., 2., 2., 2., 2., 1., 2., 2., 1., 1., 1., 1., 1., 1., 2., 1., 1., 2., 1., 1., 2., 1., 2., 1., 1., 1., 1., 2.,2., 1., 2., 2., 1., 1., 2., 0., 2., 2., 2., 2., 2., 1., 2., 1., 2., 1., 2., 1., 2., 2., 2., 1., 2., 1., 2., 1., 2., 1., 1., 1., 1., 2.,0., 1., 1., 2., 2., 2., 2., 0., 2., 2., 1., 2., 0., 0., 1., 2., 0., 2., 1., 0., 1., 2., 1., 1., 1., 0., 2., 2., 2., 1., 1., 2., 2., 1.,2., 2., 2., 1., 0., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 2., 2., 1., 1., 2., 2., 2., 1., 1., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2.,1., 2., 2., 1., 1., 1., 1., 1., 2., 0., 2., 2., 2., 2., 2., 1., 2., 1., 2., 2., 1., 0., 1., 2., 2., 2., 2., 1., 1., 2., 2., 1., 2., 2.,2., 2., 1., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 1., 1., 0., 2., 2., 2., 2., 2., 1., 1., 2., 1., 1., 2., 2., 1., 2., 2., 1., 1., 2.,1., 1., 1., 2., 2., 2., 1., 1., 1., 2., 2., 2., 2., 2., 2., 1., 1., 2., 2., 1., 2., 1., 1., 2., 1., 2., 1., 2., 1., 1., 1., 1., 2., 2.,2., 2., 2., 2., 2., 2., 1., 1., 1., 1., 1., 1., 2., 1., 1., 2., 1., 2., 1., 1., 1., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 1.,1., 1., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 2., 1., 2., 2., 1., 1., 2., 2., 2., 2., 2., 1., 1., 2., 2., 2., 2., 2., 1., 2., 2., 1.,2., 2., 1., 2., 2., 2., 2., 2., 2., 1., 1., 1., 2., 1., 1., 2., 1., 2., 2., 2., 2., 1., 1., 2., 1., 2., 2., 1., 2., 2., 2., 1., 2., 1.,0., 2., 2., 2., 2., 2., 0., 2., 1., 2., 1., 1., 2.) , c(2., 2., 1., 1., 2., 2., 1., 1., 2., 1., 1., 2., 2., 2., 1., 1., 2., 1., 2., 1., 1., 2., 2., 1., 2., 2., 2., 2., 2., 2., 1., 1., 2., 1., 1., 2., 1., 2., 2., 2., 2., 1., 1., 1., 1., 1., 1., 1., 2., 1., 1., 2., 2.,2., 2., 2., 2., 1., 1., 2., 1., 2., 2., 1., 2., 1., 2., 1., 1., 2., 1., 1., 1., 2., 1., 1., 2., 2., 1., 1., 1., 2., 1., 1., 1., 2., 1.,2., 1., 1., 1., 2., 2., 1., 1., 2., 1., 2., 1., 2., 2., 2., 2., 1., 1., 2., 1., 1., 2., 2., 2., 2., 1., 1., 1., 1., 1., 2., 1., 2., 1.,2., 1., 2., 1., 1., 1., 2., 1., 2., 1., 2., 1., 2., 2., 1., 2., 1., 2., 2., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1., 2., 1., 2., 1., 1.,2., 1., 2., 2., 1., 2., 2., 1., 2., 1., 1., 1., 2., 2., 1., 1., 2., 1., 2., 1., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 1., 1.,2., 2., 1., 1., 1., 2., 2., 1., 1., 2., 2., 1., 2., 1., 1., 2., 1., 2., 1., 1., 2., 1., 1., 2., 2., 1., 1., 1., 1., 1., 1., 1., 1., 1.,2., 1., 1., 2., 1., 2., 1., 1., 1., 1., 1., 2., 1., 1., 2., 1., 1., 1., 1., 2., 1., 1., 1., 1., 1., 1., 2., 1., 1., 2., 2., 2., 1., 2.,1., 1., 1., 1., 1., 2., 1., 2., 2., 1., 1., 2., 1., 1., 2., 2., 1., 2., 2., 2., 1., 1., 1., 2., 2., 1., 1., 1., 1., 1., 1., 1., 2., 2.,1., 1., 2., 1., 2., 2., 1., 2., 1., 2., 2., 2., 2., 2., 2., 1., 1., 1., 1., 1., 2., 1., 1., 2., 2., 2., 2., 1., 1., 2., 2., 2., 2., 1.,1., 2., 2., 1., 2., 1., 1., 1., 1., 2., 1., 1., 1., 2., 1., 1., 1., 1., 2., 2., 1., 1., 2., 2., 1., 2., 2., 1., 1., 1., 2., 1., 1., 2.,2., 1., 1., 1., 1., 1., 2., 2., 1., 1., 1., 1., 1., 2., 1., 1., 1., 2., 1., 2., 1., 1., 1., 1., 1., 1., 2., 1., 2., 1., 1., 2., 1., 2.,1., 1., 1., 1., 1., 2., 1., 1., 1., 2., 2., 1., 1., 1., 2., 1., 2., 1., 1., 1., 1., 1., 1., 2., 1., 2., 1., 1., 2., 1.) , c(2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2.,2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2.,2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2.,2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 1., 2., 1., 2., 2., 2., 1.,2., 1., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 1., 2., 1., 2., 2., 2.,2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 1., 2., 2., 2., 2., 1., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 1.,2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 1., 2., 2., 2.,2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 1., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,1., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2.,2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,1., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 1., 2., 2., 1., 2., 2., 2., 1., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 1., 2.,2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 2.,2., 1., 2., 2., 1., 2., 2., 2., 2., 2., 2., 2., 2., 1., 2., 2., 2., 1., 2., 2., 1., 2., 2., 2., 1., 2., 2., 1., 2., 2.)) , names = c("y3", "sex3", "V19", "V20", "V29", "V30", "V35", "V36") , row.names = c("1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14","15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26","27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "55", "56", "57", "58", "59", "60", "61", "62", "63", "64", "65", "66", "67", "68", "69", "70", "71", "72", "73", "74", "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90", "91", "92", "93", "94", "95", "96", "97", "98", "99", "100", "101", "102", "103", "104", "105", "106", "107", "108", "109", "110", "111", "112", "113", "114", "115", "116", "117", "118","119", "120", "121", "122", "123", "124", "125", "126", "127", "128", "129", "130", "131", "132", "133", "134", "135", "136", "137", "138", "139", "140", "141", "142", "143", "144", "145", "146", "147", "148","149", "150", "151", "152", "153", "154", "155", "156", "157", "158","159", "160", "161", "162", "163", "164", "165", "166", "167", "168", "169", "170", "171", "172", "173", "174", "175", "176", "177", "178","179", "180", "181", "182", "183", "184", "185", "186", "187", "188","189", "190", "191", "192", "193", "194", "195", "196", "197", "198", "199", "200", "201", "202", "203", "204", "205", "206", "207", "208","209", "210", "211", "212", "213", "214", "215", "216", "217", "218","219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237", "238","239", "240", "241", "242", "243", "244", "245", "246", "247", "248","249", "250", "251", "252", "253", "254", "255", "256", "257", "258", "259", "260", "261", "262", "263", "264", "265", "266", "267", "268","269", "270", "271", "272", "273", "274", "275", "276", "277", "278","279", "280", "281", "282", "283", "284", "285", "286", "287", "288", "289", "290", "291", "292", "293", "294", "295", "296", "297", "298","299", "300", "301", "302", "303", "304", "305", "306", "307", "308","309", "310", "311", "312", "313", "314", "315", "316", "317", "318", "319", "320", "321", "322", "323", "324", "325", "326", "327", "328","329", "330", "331", "332", "333", "334", "335", "336", "337", "338","339", "340", "341", "342", "343", "344", "345", "346", "347", "348", "349", "350", "351", "352", "353", "354", "355", "356", "357", "358","359", "360", "361", "362", "363", "364", "365", "366", "367", "368","369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385", "386", "387", "388","389", "390", "391", "392", "393", "394", "395", "396", "397", "398","399", "400", "401", "402", "403", "404", "405", "406", "407", "408", "409", "410", "411", "412", "413", "414", "415", "416", "417", "418","419", "420", "421", "422", "423"), class = "data.frame") if(verbose) cat("setting up data...\n") # prepare a short example dataset, labaled as '3' # ht3 <- source("dump.ht3.s"), this is now at top of file geno3 <- data.test.glm[,-(1:2)] sex3 <- data.test.glm$sex y3 <- data.test.glm$y3 set.seed(10) rgaus3 <- ifelse(y3==1, rnorm(423, .5, 1), rnorm(423)) label3<-c("M1","M2","M3") geno3<-setupGeno(geno3, miss.val=c(0,NA)) my.data3<-data.frame(geno3=geno3, sex3=sex3, y3=y3, gaus3=rgaus3, gaus3.100=rgaus3*100) # use freq.min as a guide for choosing minimum hap frequency freq.min3 <- 5/(2*nrow(geno3)) # prepare the hla dataset, # runs a lot longer, and MS alleles don't all start w/ 1, 2... label <-c("DQB","DRB","B") data(hla.demo) y <- hla.demo$resp y.bin <- 1*(hla.demo$resp.cat=="low") # y.bin[2] <- NA geno <- as.matrix(hla.demo[,c(17,18,21:24)]) # geno[1,] <- rep(NA, 6) geno <- setupGeno(geno, miss.val=c(0,NA)) # geno now has an attribute 'unique.alleles' which must be passed to # haplo.glm as allele.lev=attributes(geno)$unique.alleles, see below my.data <- data.frame(geno=geno, age=hla.demo$age, male=hla.demo$male, y=y, y.bin=y.bin) seed <- c(17, 53, 1, 40, 37, 0, 62, 56, 5, 52, 12, 1) if(verbose) cat("regular haplo.glm, additive genetic trait, and \n") set.seed(seed) fit3.add <- haplo.glm(y3~geno3, family=binomial,na.action="na.geno.keep", data=my.data3, locus.label=label3, miss.val = c(0, NA), method = "glm.fit", model = FALSE, x = FALSE, y = TRUE, contrasts = NULL, control = haplo.glm.control(haplo.freq.min=freq.min3, haplo.effect="add", haplo.base = NULL, sum.rare.min = 0.001, haplo.min.info = 0.001,keep.rare.haplo = TRUE, glm.c = glm.control(maxit = 500), em.c = haplo.em.control())) if(verbose) cat("binomial w/ dominant trait with gender\n") set.seed(seed) fit3.dom<-haplo.glm(y3~geno3, family=binomial, na.action="na.geno.keep", data=my.data3, locus.label=label3, control = haplo.glm.control(haplo.effect="dominant", haplo.min.count=8)) set.seed(seed) fit3.dom.rare<-haplo.glm(y3~geno3, family=binomial, na.action="na.geno.keep", data=my.data3, locus.label=label3, control = haplo.glm.control(haplo.base=2,haplo.effect="dominant", haplo.freq.min=.32)) if(verbose) cat("binomial with recessive trait\n") set.seed(seed) fit3.rec<-haplo.glm(y3~geno3, family=binomial, na.action="na.geno.keep", data=my.data3, locus.label=label3, control = haplo.glm.control(haplo.min.count=8, haplo.effect="recessive")) if(verbose) cat("random gaussian, variance 1 and 100^2 \n") set.seed(seed) fit3.gaus <- haplo.glm(gaus3 ~ geno3, family=gaussian, na.action="na.geno.keep", data=my.data3, locus.label=label3, control = haplo.glm.control(haplo.min.count=8)) set.seed(seed) # for version 1.3.9 and later, use the haplo.glm.q in /Haplo/Test/GlmSE/ fit3.gaus100 <- haplo.glm(gaus3.100 ~ geno3, family=gaussian, na.action="na.geno.keep", data=my.data3, locus.label=label3, control = haplo.glm.control(haplo.min.count=8)) if(verbose) cat("fit a binary trait\n") set.seed(seed) fit.hla.bin <- haplo.glm(y.bin ~ male + geno, family = binomial, na.action="na.geno.keep", data=my.data, locus.label=label, control = haplo.glm.control(haplo.min.count=8)) y.bin <- 1*(hla.demo$resp.cat=="low") y.bin[2] <- NA geno.hla <- as.matrix(hla.demo[,c(17,18,21:24)]) geno.hla[2,5] <- 2 geno.hla[3,] <- rep(NA, 6) geno.hla <- setupGeno(geno.hla, miss.val=c(0,NA)) my.hla <- data.frame(geno.hla=geno.hla, age=hla.demo$age, male=hla.demo$male, y=y, y.bin=y.bin) set.seed(seed) fit.hla.miss <- haplo.glm(y.bin ~ male + geno.hla, family = binomial, na.action="na.geno.keep", data=my.hla, locus.label=label, control = haplo.glm.control(haplo.min.count=8)) if(verbose) cat(" gaussian with covariates, additive\n") set.seed(seed) fit.hla.gaus.gender <- haplo.glm(y ~ male + geno, family = gaussian, na.action="na.geno.keep", data=my.data, locus.label=label, control = haplo.glm.control(haplo.min.count=5)) if(verbose) cat("gaussian with covariate, multiplicative\n") set.seed(seed) fit.hla.gaus.inter <- haplo.glm(y ~ male * geno, family = gaussian, na.action="na.geno.keep", data=my.data, locus.label=label, control = haplo.glm.control(haplo.freq.min = 0.02)) if(verbose) cat("SNAP data with resp and resp with added variance\n") snapDF <- read.table("snapData.csv",header=TRUE, sep=",", stringsAsFactors=FALSE) geno.rec <- setupGeno(snapDF[,-c(1:9)]) snap.data <- data.frame(resp=hla.demo$resp, respvar=hla.demo$resp*100, geno=geno.rec) set.seed(seed) fit.resp.hla <- haplo.glm(resp~geno, trait.type="gaussian",data=snap.data) set.seed(seed) fit.respvar.hla <- haplo.glm(respvar~geno, trait.type="gaussian",data=snap.data) print.haplo.glm(fit3.add,print.all.haplo=TRUE, digits=4) print.haplo.glm(fit3.dom, print.all.haplo=FALSE, digits=5) print.haplo.glm(fit3.dom.rare, print.all.haplo=FALSE, digits=5) print.haplo.glm(fit3.rec, print.all.haplo=FALSE, digits=5) print.haplo.glm(fit3.gaus, print.all.haplo=FALSE, digits=5) print.haplo.glm(fit3.gaus100, print.all.haplo=FALSE, digits=5) print.haplo.glm(fit.hla.bin, digits=5, print.all.haplo=FALSE) print.haplo.glm(fit.hla.miss, digits=5, print.all.haplo=FALSE) print.haplo.glm(fit.hla.gaus.gender, print.all.haplo=FALSE, digits=5) print.haplo.glm(fit.hla.gaus.inter, digits=5, print.all.haplo=FALSE) print.haplo.glm(fit.resp.hla, digits=5) print.haplo.glm(fit.respvar.hla, digits=5) haplo.stats/tests/expanded/test.haplo.score.slide.Rout.save0000644000176200001440000001455314672315243023565 0ustar liggesusers R version 4.0.2 (2020-06-22) -- "Taking Off Again" Copyright (C) 2020 The R Foundation for Statistical Computing Platform: x86_64-pc-linux-gnu (64-bit) R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > #$Author: sinnwell $ > #$Date: 2011/12/05 20:53:27 $ > #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/test/test.haplo.score.slide.R,v 1.1 2011/12/05 20:53:27 sinnwell Exp $ > #$Locker: $ > #$Log: test.haplo.score.slide.R,v $ > #Revision 1.1 2011/12/05 20:53:27 sinnwell > #changed from .q to .R, to work with R check > # > #Revision 1.1 2011/04/28 20:08:12 sinnwell > #new makefile, pulls R/man files from mgenet, rlocal > # > #Revision 1.6 2004/05/17 16:45:53 sinnwell > #add if() for dump() > # > #Revision 1.5 2004/04/29 21:30:10 sinnwell > #enable updating > # > > ## package: haplo.stats > ## test script: haplo.score.slide > > ## settings > > verbose=TRUE > require(haplo.stats) Loading required package: haplo.stats Loading required package: arsenal > Sys.setlocale("LC_ALL", "C") [1] "LC_CTYPE=C;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=en_US.UTF-8;LC_PAPER=en_US.UTF-8;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=en_US.UTF-8;LC_IDENTIFICATION=C" > Sys.getlocale() [1] "LC_CTYPE=C;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=en_US.UTF-8;LC_PAPER=en_US.UTF-8;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=en_US.UTF-8;LC_IDENTIFICATION=C" > > ## Jason Sinnwell 4/2005, updated 1/2007 > ## Mayo Clinic Div. of Biostatistics > > > if(verbose) cat("prepare two datasets, one with char alleles, the other 3 loci from hla data\n") prepare two datasets, one with char alleles, the other 3 loci from hla data > > > data(hla.demo) > > hla.sub <- hla.demo[,c(1,2,3,4,17:24)] > geno.hla <- hla.sub[,-c(1:4)] > hla.resp <- hla.sub[,1] > hla.respcat <- hla.sub[,2] > hla.sex <- hla.sub[,3] > hla.label=c("DQB","DRB","HLA.B") > > seed <- c(33, 10, 39, 6, 16, 0, 40, 24, 12, 60, 7, 1) > > if(verbose) cat("hla data, gaussian trait and x.adj\n") hla data, gaussian trait and x.adj > set.seed(seed) > hla.slide.resp.adj.add <- haplo.score.slide(hla.resp,geno.hla, n.slide=2, + trait.type="gaussian", haplo.effect="additive", + locus.label=hla.label, miss.val=0, x.adj=hla.sex, + simulate=FALSE, skip.haplo= 5/(2 * nrow(geno.hla)), + offset=NA, sim.control=score.sim.control(), + em.control = haplo.em.control(insert.batch.size=3, + min.posterior=1e-6)) > > if(verbose) cat("hla data ordinal trait\n") hla data ordinal trait > set.seed(seed) > hla.slide.respcat.dom <- haplo.score.slide(hla.respcat, geno.hla, n.slide=2, + trait.type="ordinal", haplo.effect="dominant", + locus.label=hla.label, miss.val=0, + simulate=FALSE, min.count=5, + offset=NA, x.adj=NA, + sim.control=score.sim.control(), + em.control = haplo.em.control(insert.batch.size = 3, + min.posterior = 1e-06)) > > > if(verbose) cat("snap SNP data with binary trait to test dominance,recessive\n") snap SNP data with binary trait to test dominance,recessive > > snapDF <- read.table("snapData.csv",header=TRUE, sep=",",stringsAsFactors=FALSE) > y.bin <- snapDF[,1]-1 > geno <- setupGeno(geno=snapDF[,-1]) > > set.seed(seed) > hcount=3 > ##additive, min.count set to hcount > slide.bin.hla.add3 <- haplo.score.slide(y=y.bin, geno=geno, n.slide=3, + trait.type="binomial", min.count=hcount, haplo.effect="add", + simulate=TRUE, sim.control=score.sim.control(min.sim=200, + max.sim=500)) > > ## dominant > set.seed(seed) > slide.bin.hla.dom3 <- haplo.score.slide(y=y.bin, geno=geno, + trait.type="binomial", n.slide=3, min.count=hcount, + haplo.effect="dom", simulate=TRUE, + sim.control=score.sim.control(min.sim=200,max.sim=500)) > > > ## recessive > set.seed(seed) > slide.bin.hla.rec3 <- haplo.score.slide(y=y.bin, geno=geno, n.slide=3, + trait.type="binomial", min.count=hcount, + haplo.effect="rec", simulate=TRUE, + sim.control=score.sim.control(max.sim=1000)) > > > print.haplo.score.slide(hla.slide.resp.adj.add, digits=5) start.loc score.global.p global.p.sim max.p.sim 1 1 0.07482 NA NA 2 2 0.40514 NA NA 3 3 0.04514 NA NA > print.haplo.score.slide(hla.slide.respcat.dom, digits=5) start.loc score.global.p global.p.sim max.p.sim 1 1 0.05279 NA NA 2 2 0.00084 NA NA 3 3 0.44725 NA NA > > print(slide.bin.hla.add3) start.loc score.global.p global.p.sim max.p.sim 1 1 0.00000 0.00000 0.00000 2 2 0.00000 0.00000 0.00000 3 3 0.05260 0.04507 0.18028 4 4 0.00511 0.00000 0.03000 5 5 0.00551 0.01000 0.03200 > print(slide.bin.hla.dom3) start.loc score.global.p global.p.sim max.p.sim 1 1 0.00000 0.000 0.000 2 2 0.00000 0.002 0.000 3 3 0.03835 0.115 0.240 4 4 0.00057 0.000 0.004 5 5 0.00700 0.012 0.054 > print(slide.bin.hla.rec3) start.loc score.global.p global.p.sim max.p.sim 1 1 0.00000 0.000 0.000 2 2 0.00000 0.000 0.000 3 3 0.14190 0.133 0.171 4 4 0.03726 0.039 0.057 5 5 0.02630 0.021 0.055 > > > proc.time() user system elapsed 7.150 0.261 7.763 haplo.stats/tests/expanded/test.haplo.cc.Rout.save0000644000176200001440000006550514672315243021743 0ustar liggesusers R version 4.0.2 (2020-06-22) -- "Taking Off Again" Copyright (C) 2020 The R Foundation for Statistical Computing Platform: x86_64-pc-linux-gnu (64-bit) R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > #$Author: sinnwell $ > > ## package: haplo.stats > ## test script: haplo.cc > > ## settings > verbose=TRUE > options(width=140) > require(haplo.stats) Loading required package: haplo.stats Loading required package: arsenal > tmp <- Sys.setlocale("LC_ALL", "C") > tmp <- Sys.getlocale() > > data(hla.demo) > > # Jason Sinnwell, created 3/2004, updated 9/2014 > # Mayo Clinic, Biostatistics > > if(verbose) cat("setting up data...\n") setting up data... > > label <- c("DQB","DRB","B") > > y.bin <- 1*(hla.demo$resp.cat=="low") > > geno <- as.matrix(hla.demo[,c(17,18,21:24)]) > > # commented code was to check data that goes into haplo.cc > # and gets pasted together in the huge data.frame. > > # sink(file="results.haplo.cc.txt") > > seed <- c(17, 53, 1, 40, 37, 0, 62, 56, 5, 52, 12, 1) > > if(verbose) cat("hla data \n") hla data > set.seed(seed) > cc.hla <- haplo.cc(y.bin, geno, miss.val=0,locus.label=label, + control=haplo.glm.control(haplo.min.count=8, em.c=haplo.em.control())) > set.seed(seed) > cc.hla.adj <- haplo.cc(y.bin, geno, x.adj=hla.demo[,c("male","age")], miss.val=0,locus.label=label, + control=haplo.glm.control(haplo.min.count=8, em.c=haplo.em.control())) > > set.seed(seed) > ntest <- 200 > geno.test <- cbind(sample(1:2, size=ntest, replace=TRUE), sample(1:2, size=100, replace=TRUE), + sample(2:3,size=ntest, replace=TRUE), sample(2:3, size=100, replace=TRUE), + sample(2:4,size=ntest, replace=TRUE, prob=c(.5,.35,.15)), sample(2:4, size=100, + replace=TRUE, prob=c(.5,.35,.15))) > y.test <- sample(1:2,size=ntest, replace=TRUE,prob=c(.6, .4)) - 1 > x.test <- cbind(rbinom(nrow(geno.test), 1, prob=.3), round(rnorm(nrow(geno.test), mean=50, sd=4))) > locus.label <- c("A", "B", "C") > > > if(verbose) cat("small numeric data... \n") small numeric data... > set.seed(seed) > cc.test <- haplo.cc(y.test, geno.test, locus.label=locus.label, + ci.prob=.95, control=haplo.glm.control(haplo.min.count=4)) > set.seed(seed) > cc.adj <- haplo.cc(y.test, geno.test, x.adj=x.test,locus.label=locus.label, + ci.prob=.95, control=haplo.glm.control(haplo.min.count=4)) There were 50 or more warnings (use warnings() to see the first 50) > > > locus.label <- c("A", "B", "C") > > geno.char <- ifelse(geno.test==1, 'A',ifelse(geno.test==2, 'T', + ifelse(geno.test==3, 'G', 'C'))) > > set.seed(seed) > if(verbose) cat("small char data with simulations... \n") small char data with simulations... > cc.char.sim <- haplo.cc(y.test, geno.char, locus.label=locus.label, + ci.prob=.90, simulate=FALSE, + control = haplo.glm.control(haplo.min.count=4)) > > print.haplo.cc(cc.hla, digits=3, order.by="score", nlines=12) -------------------------------------------------------------------------------------------------------------------------------------------- Global Score Statistics -------------------------------------------------------------------------------------------------------------------------------------------- global-stat = 27.3, df = 7, p-val = 0.000296 -------------------------------------------------------------------------------------------------------------------------------------------- Counts for Cases and Controls -------------------------------------------------------------------------------------------------------------------------------------------- control case 157 63 DQB DRB B Hap-Score p-val pool.hf control.hf case.hf glm.eff OR.lower OR OR.upper 188 62 2 7 -2.1846 0.028917 0.05074 0.06815 0.01587 Eff 0.0141 0.0736 0.385 126 51 1 35 -1.5842 0.113142 0.03018 0.03755 0.00893 Eff 0.0104 0.0915 0.805 98 32 4 62 -0.6799 0.496581 0.02349 0.02548 NA Eff 0.0489 0.2584 1.367 97 32 4 60 0.0306 0.975590 0.03062 0.03159 0.03968 Eff 0.0821 0.3397 1.406 18 21 7 44 1.0559 0.291023 0.02170 0.01741 0.04762 Eff 0.1290 0.6270 3.047 62 31 4 44 2.5165 0.011854 0.02849 0.01473 0.06349 Eff 0.3629 1.3921 5.340 12 21 3 8 3.7769 0.000159 0.10407 0.06973 0.19048 Base NA 1.0000 NA 1 21 1 8 NA NA 0.00232 0.00335 NA R 0.1473 0.2942 0.587 2 21 10 8 NA NA 0.00181 0.00318 NA R 0.1473 0.2942 0.587 3 21 13 8 NA NA 0.00274 NA NA R 0.1473 0.2942 0.587 4 21 2 18 NA NA 0.00227 0.00318 NA R 0.1473 0.2942 0.587 5 21 2 7 NA NA 0.00227 0.00318 NA R 0.1473 0.2942 0.587 > print(cc.hla.adj, order.by="score",digits=3, nlines=12) -------------------------------------------------------------------------------------------------------------------------------------------- Global Score Statistics -------------------------------------------------------------------------------------------------------------------------------------------- global-stat = 28.5, df = 7, p-val = 0.00018 -------------------------------------------------------------------------------------------------------------------------------------------- Counts for Cases and Controls -------------------------------------------------------------------------------------------------------------------------------------------- control case 157 63 DQB DRB B Hap-Score p-val pool.hf control.hf case.hf glm.eff OR.lower OR OR.upper 188 62 2 7 -2.258 0.02396 0.05074 0.06815 0.01587 Eff 0.01268 0.0671 0.355 126 51 1 35 -1.648 0.09940 0.03018 0.03755 0.00893 Eff 0.00841 0.0769 0.702 98 32 4 62 -0.731 0.46465 0.02349 0.02548 NA Eff 0.04535 0.2419 1.290 97 32 4 60 0.205 0.83786 0.03062 0.03159 0.03968 Eff 0.09479 0.4087 1.762 18 21 7 44 0.980 0.32723 0.02170 0.01741 0.04762 Eff 0.11474 0.5579 2.713 62 31 4 44 2.616 0.00890 0.02849 0.01473 0.06349 Eff 0.38914 1.4962 5.753 12 21 3 8 3.774 0.00016 0.10407 0.06973 0.19048 Base NA 1.0000 NA 1 21 1 8 NA NA 0.00232 0.00335 NA R 0.14466 0.2895 0.579 2 21 10 8 NA NA 0.00181 0.00318 NA R 0.14466 0.2895 0.579 3 21 13 8 NA NA 0.00274 NA NA R 0.14466 0.2895 0.579 4 21 2 18 NA NA 0.00227 0.00318 NA R 0.14466 0.2895 0.579 5 21 2 7 NA NA 0.00227 0.00318 NA R 0.14466 0.2895 0.579 > # print(cc.hla$fit.lst, digits=3) > # print(cc.hla$score.lst, digits=3) > print.haplo.cc(cc.test, order.by='score', digits=3) -------------------------------------------------------------------------------------------------------------------------------------------- Global Score Statistics -------------------------------------------------------------------------------------------------------------------------------------------- global-stat = 7.6, df = 11, p-val = 0.749 -------------------------------------------------------------------------------------------------------------------------------------------- Counts for Cases and Controls -------------------------------------------------------------------------------------------------------------------------------------------- control case 124 76 A B C Hap-Score p-val pool.hf control.hf case.hf glm.eff OR.lower OR OR.upper 11 2 3 3 -1.29121 0.197 0.08726 1.06e-01 0.0523 Eff 6.12e-02 2.84e-01 1.32e+00 9 2 2 4 -0.95385 0.340 0.02686 3.36e-02 0.0061 Eff 9.18e-04 1.96e-01 4.17e+01 3 1 2 4 -0.68767 0.492 0.04029 4.72e-02 0.0318 Eff 3.66e-02 4.75e-01 6.18e+00 2 1 2 3 -0.66560 0.506 0.05785 6.68e-02 0.0455 Eff 7.93e-02 3.53e-01 1.57e+00 5 1 3 3 -0.47955 0.632 0.08029 8.11e-02 0.0763 Eff 2.76e-01 7.88e-01 2.25e+00 8 2 2 3 -0.12759 0.898 0.09459 8.92e-02 0.1088 Eff 3.34e-01 9.07e-01 2.46e+00 7 2 2 2 0.00552 0.996 0.13883 1.46e-01 0.1379 Eff 1.67e-01 5.76e-01 1.99e+00 4 1 3 2 0.39998 0.689 0.12842 1.31e-01 0.1286 Eff 1.98e-01 6.12e-01 1.89e+00 6 1 3 4 0.63249 0.527 0.05407 4.82e-02 0.0676 Eff 2.69e-01 1.07e+00 4.29e+00 10 2 3 2 0.87404 0.382 0.16117 1.46e-01 0.1819 Base NA 1.00e+00 NA 1 1 2 2 0.88736 0.375 0.12408 1.05e-01 0.1437 Eff 4.16e-01 1.14e+00 3.15e+00 12 2 3 4 NA NA 0.00628 7.31e-08 0.0195 R 1.50e+11 1.50e+11 1.50e+11 > print.haplo.cc(cc.test, order.by='haplotype', digits=3) -------------------------------------------------------------------------------------------------------------------------------------------- Global Score Statistics -------------------------------------------------------------------------------------------------------------------------------------------- global-stat = 7.6, df = 11, p-val = 0.749 -------------------------------------------------------------------------------------------------------------------------------------------- Counts for Cases and Controls -------------------------------------------------------------------------------------------------------------------------------------------- control case 124 76 A B C Hap-Score p-val pool.hf control.hf case.hf glm.eff OR.lower OR OR.upper 1 1 2 2 0.88736 0.375 0.12408 1.05e-01 0.1437 Eff 4.16e-01 1.14e+00 3.15e+00 2 1 2 3 -0.66560 0.506 0.05785 6.68e-02 0.0455 Eff 7.93e-02 3.53e-01 1.57e+00 3 1 2 4 -0.68767 0.492 0.04029 4.72e-02 0.0318 Eff 3.66e-02 4.75e-01 6.18e+00 4 1 3 2 0.39998 0.689 0.12842 1.31e-01 0.1286 Eff 1.98e-01 6.12e-01 1.89e+00 5 1 3 3 -0.47955 0.632 0.08029 8.11e-02 0.0763 Eff 2.76e-01 7.88e-01 2.25e+00 6 1 3 4 0.63249 0.527 0.05407 4.82e-02 0.0676 Eff 2.69e-01 1.07e+00 4.29e+00 7 2 2 2 0.00552 0.996 0.13883 1.46e-01 0.1379 Eff 1.67e-01 5.76e-01 1.99e+00 8 2 2 3 -0.12759 0.898 0.09459 8.92e-02 0.1088 Eff 3.34e-01 9.07e-01 2.46e+00 9 2 2 4 -0.95385 0.340 0.02686 3.36e-02 0.0061 Eff 9.18e-04 1.96e-01 4.17e+01 10 2 3 2 0.87404 0.382 0.16117 1.46e-01 0.1819 Base NA 1.00e+00 NA 11 2 3 3 -1.29121 0.197 0.08726 1.06e-01 0.0523 Eff 6.12e-02 2.84e-01 1.32e+00 12 2 3 4 NA NA 0.00628 7.31e-08 0.0195 R 1.50e+11 1.50e+11 1.50e+11 > print.haplo.cc(cc.test, order.by='freq', digits=3) -------------------------------------------------------------------------------------------------------------------------------------------- Global Score Statistics -------------------------------------------------------------------------------------------------------------------------------------------- global-stat = 7.6, df = 11, p-val = 0.749 -------------------------------------------------------------------------------------------------------------------------------------------- Counts for Cases and Controls -------------------------------------------------------------------------------------------------------------------------------------------- control case 124 76 A B C Hap-Score p-val pool.hf control.hf case.hf glm.eff OR.lower OR OR.upper 10 2 3 2 0.87404 0.382 0.16117 1.46e-01 0.1819 Base NA 1.00e+00 NA 7 2 2 2 0.00552 0.996 0.13883 1.46e-01 0.1379 Eff 1.67e-01 5.76e-01 1.99e+00 4 1 3 2 0.39998 0.689 0.12842 1.31e-01 0.1286 Eff 1.98e-01 6.12e-01 1.89e+00 1 1 2 2 0.88736 0.375 0.12408 1.05e-01 0.1437 Eff 4.16e-01 1.14e+00 3.15e+00 8 2 2 3 -0.12759 0.898 0.09459 8.92e-02 0.1088 Eff 3.34e-01 9.07e-01 2.46e+00 11 2 3 3 -1.29121 0.197 0.08726 1.06e-01 0.0523 Eff 6.12e-02 2.84e-01 1.32e+00 5 1 3 3 -0.47955 0.632 0.08029 8.11e-02 0.0763 Eff 2.76e-01 7.88e-01 2.25e+00 2 1 2 3 -0.66560 0.506 0.05785 6.68e-02 0.0455 Eff 7.93e-02 3.53e-01 1.57e+00 6 1 3 4 0.63249 0.527 0.05407 4.82e-02 0.0676 Eff 2.69e-01 1.07e+00 4.29e+00 3 1 2 4 -0.68767 0.492 0.04029 4.72e-02 0.0318 Eff 3.66e-02 4.75e-01 6.18e+00 9 2 2 4 -0.95385 0.340 0.02686 3.36e-02 0.0061 Eff 9.18e-04 1.96e-01 4.17e+01 12 2 3 4 NA NA 0.00628 7.31e-08 0.0195 R 1.50e+11 1.50e+11 1.50e+11 > > print(cc.adj, order.by="score", digits=3) -------------------------------------------------------------------------------------------------------------------------------------------- Global Score Statistics -------------------------------------------------------------------------------------------------------------------------------------------- global-stat = 7.74, df = 11, p-val = 0.736 -------------------------------------------------------------------------------------------------------------------------------------------- Counts for Cases and Controls -------------------------------------------------------------------------------------------------------------------------------------------- control case 124 76 A B C Hap-Score p-val pool.hf control.hf case.hf glm.eff OR.lower OR OR.upper 11 2 3 3 -1.3991 0.162 0.08726 1.06e-01 0.0523 Eff 6.92e-02 3.07e-01 1.36e+00 9 2 2 4 -0.8626 0.388 0.02686 3.36e-02 0.0061 Eff 1.04e-06 1.04e-06 1.04e-06 2 1 2 3 -0.6825 0.495 0.05785 6.68e-02 0.0455 Eff 8.55e-02 3.84e-01 1.72e+00 3 1 2 4 -0.6102 0.542 0.04029 4.72e-02 0.0318 Eff 1.66e-01 7.62e-01 3.50e+00 5 1 3 3 -0.5312 0.595 0.08029 8.11e-02 0.0763 Eff 2.77e-01 7.95e-01 2.28e+00 8 2 2 3 -0.1748 0.861 0.09459 8.92e-02 0.1088 Eff 3.59e-01 9.63e-01 2.58e+00 7 2 2 2 0.0344 0.973 0.13883 1.46e-01 0.1379 Eff 2.04e-01 6.56e-01 2.11e+00 4 1 3 2 0.4168 0.677 0.12842 1.31e-01 0.1286 Eff 2.19e-01 6.65e-01 2.01e+00 6 1 3 4 0.7471 0.455 0.05407 4.82e-02 0.0676 Eff 2.72e-01 1.06e+00 4.15e+00 1 1 2 2 0.8627 0.388 0.12408 1.05e-01 0.1437 Eff 4.19e-01 1.10e+00 2.87e+00 10 2 3 2 0.8681 0.385 0.16117 1.46e-01 0.1819 Base NA 1.00e+00 NA 12 2 3 4 NA NA 0.00628 7.31e-08 0.0195 R Inf Inf Inf > print(cc.adj, order.by="haplotype", digits=3) -------------------------------------------------------------------------------------------------------------------------------------------- Global Score Statistics -------------------------------------------------------------------------------------------------------------------------------------------- global-stat = 7.74, df = 11, p-val = 0.736 -------------------------------------------------------------------------------------------------------------------------------------------- Counts for Cases and Controls -------------------------------------------------------------------------------------------------------------------------------------------- control case 124 76 A B C Hap-Score p-val pool.hf control.hf case.hf glm.eff OR.lower OR OR.upper 1 1 2 2 0.8627 0.388 0.12408 1.05e-01 0.1437 Eff 4.19e-01 1.10e+00 2.87e+00 2 1 2 3 -0.6825 0.495 0.05785 6.68e-02 0.0455 Eff 8.55e-02 3.84e-01 1.72e+00 3 1 2 4 -0.6102 0.542 0.04029 4.72e-02 0.0318 Eff 1.66e-01 7.62e-01 3.50e+00 4 1 3 2 0.4168 0.677 0.12842 1.31e-01 0.1286 Eff 2.19e-01 6.65e-01 2.01e+00 5 1 3 3 -0.5312 0.595 0.08029 8.11e-02 0.0763 Eff 2.77e-01 7.95e-01 2.28e+00 6 1 3 4 0.7471 0.455 0.05407 4.82e-02 0.0676 Eff 2.72e-01 1.06e+00 4.15e+00 7 2 2 2 0.0344 0.973 0.13883 1.46e-01 0.1379 Eff 2.04e-01 6.56e-01 2.11e+00 8 2 2 3 -0.1748 0.861 0.09459 8.92e-02 0.1088 Eff 3.59e-01 9.63e-01 2.58e+00 9 2 2 4 -0.8626 0.388 0.02686 3.36e-02 0.0061 Eff 1.04e-06 1.04e-06 1.04e-06 10 2 3 2 0.8681 0.385 0.16117 1.46e-01 0.1819 Base NA 1.00e+00 NA 11 2 3 3 -1.3991 0.162 0.08726 1.06e-01 0.0523 Eff 6.92e-02 3.07e-01 1.36e+00 12 2 3 4 NA NA 0.00628 7.31e-08 0.0195 R Inf Inf Inf > print(cc.adj, order.by="freq", digits=3) -------------------------------------------------------------------------------------------------------------------------------------------- Global Score Statistics -------------------------------------------------------------------------------------------------------------------------------------------- global-stat = 7.74, df = 11, p-val = 0.736 -------------------------------------------------------------------------------------------------------------------------------------------- Counts for Cases and Controls -------------------------------------------------------------------------------------------------------------------------------------------- control case 124 76 A B C Hap-Score p-val pool.hf control.hf case.hf glm.eff OR.lower OR OR.upper 10 2 3 2 0.8681 0.385 0.16117 1.46e-01 0.1819 Base NA 1.00e+00 NA 7 2 2 2 0.0344 0.973 0.13883 1.46e-01 0.1379 Eff 2.04e-01 6.56e-01 2.11e+00 4 1 3 2 0.4168 0.677 0.12842 1.31e-01 0.1286 Eff 2.19e-01 6.65e-01 2.01e+00 1 1 2 2 0.8627 0.388 0.12408 1.05e-01 0.1437 Eff 4.19e-01 1.10e+00 2.87e+00 8 2 2 3 -0.1748 0.861 0.09459 8.92e-02 0.1088 Eff 3.59e-01 9.63e-01 2.58e+00 11 2 3 3 -1.3991 0.162 0.08726 1.06e-01 0.0523 Eff 6.92e-02 3.07e-01 1.36e+00 5 1 3 3 -0.5312 0.595 0.08029 8.11e-02 0.0763 Eff 2.77e-01 7.95e-01 2.28e+00 2 1 2 3 -0.6825 0.495 0.05785 6.68e-02 0.0455 Eff 8.55e-02 3.84e-01 1.72e+00 6 1 3 4 0.7471 0.455 0.05407 4.82e-02 0.0676 Eff 2.72e-01 1.06e+00 4.15e+00 3 1 2 4 -0.6102 0.542 0.04029 4.72e-02 0.0318 Eff 1.66e-01 7.62e-01 3.50e+00 9 2 2 4 -0.8626 0.388 0.02686 3.36e-02 0.0061 Eff 1.04e-06 1.04e-06 1.04e-06 12 2 3 4 NA NA 0.00628 7.31e-08 0.0195 R Inf Inf Inf > summary(cc.adj$fit.lst, digits=3) Call: haplo.glm(formula = hglm.formula, family = binomial, data = glm.data, locus.label = locus.label, control = control, miss.val = miss.val) Deviance Residuals: Min 1Q Median 3Q Max -1.3252 -0.9566 -0.7815 1.1967 1.8513 Coefficients: coef se t.stat pval (Intercept) 7.357e-01 2.252e+00 3.267e-01 0.744 geno.glm.1 9.263e-02 4.909e-01 1.887e-01 0.851 geno.glm.2 -9.578e-01 7.659e-01 -1.251e+00 0.213 geno.glm.3 -2.713e-01 7.779e-01 -3.488e-01 0.728 geno.glm.4 -4.083e-01 5.655e-01 -7.219e-01 0.471 geno.glm.5 -2.295e-01 5.384e-01 -4.263e-01 0.670 geno.glm.6 6.054e-02 6.956e-01 8.703e-02 0.931 geno.glm.7 -4.223e-01 5.954e-01 -7.092e-01 0.479 geno.glm.8 -3.737e-02 5.035e-01 -7.422e-02 0.941 geno.glm.9 -1.378e+01 3.852e-06 -3.577e+06 0.000 geno.glm.11 -1.181e+00 7.601e-01 -1.554e+00 0.122 geno.glm.rare 4.504e+15 1.398e-13 3.222e+28 0.000 X1 -5.654e-01 3.770e-01 -1.500e+00 0.135 X2 -9.689e-03 4.089e-02 -2.370e-01 0.813 (Dispersion parameter for binomial family taken to be 1) Null deviance: 265.63 on 199 degrees of freedom Residual deviance: 238.68 on 186 degrees of freedom AIC: 260.87 Number of Fisher Scoring iterations: 352 Haplotypes: A B C hap.freq geno.glm.1 1 2 2 0.11705 geno.glm.2 1 2 3 0.05959 geno.glm.3 1 2 4 0.04363 geno.glm.4 1 3 2 0.13125 geno.glm.5 1 3 3 0.07878 geno.glm.6 1 3 4 0.05470 geno.glm.7 2 2 2 0.14512 geno.glm.8 2 2 3 0.09619 geno.glm.9 2 2 4 0.02092 geno.glm.11 2 3 3 0.08544 geno.glm.rare * * * 0.00825 haplo.base 2 3 2 0.15908 > print.haplo.cc(cc.char.sim, digits=3) -------------------------------------------------------------------------------------------------------------------------------------------- Global Score Statistics -------------------------------------------------------------------------------------------------------------------------------------------- global-stat = 7.6, df = 11, p-val = 0.749 -------------------------------------------------------------------------------------------------------------------------------------------- Counts for Cases and Controls -------------------------------------------------------------------------------------------------------------------------------------------- control case 124 76 A B C Hap-Score p-val pool.hf control.hf case.hf glm.eff OR.lower OR OR.upper 8 T G G -1.29121 0.197 0.08726 1.06e-01 0.0523 Eff 7.83e-02 2.84e-01 1.03e+00 10 T T C -0.95385 0.340 0.02686 3.36e-02 0.0061 Eff 2.17e-03 1.96e-01 1.76e+01 4 A T C -0.68767 0.492 0.04029 4.72e-02 0.0318 Eff 5.52e-02 4.75e-01 4.09e+00 5 A T G -0.66560 0.506 0.05785 6.68e-02 0.0455 Eff 1.01e-01 3.53e-01 1.24e+00 2 A G G -0.47955 0.632 0.08029 8.11e-02 0.0763 Eff 3.27e-01 7.88e-01 1.90e+00 11 T T G -0.12759 0.898 0.09459 8.92e-02 0.1088 Eff 3.92e-01 9.07e-01 2.10e+00 12 T T T 0.00552 0.996 0.13883 1.46e-01 0.1379 Eff 2.04e-01 5.76e-01 1.63e+00 3 A G T 0.39998 0.689 0.12842 1.31e-01 0.1286 Eff 2.37e-01 6.12e-01 1.58e+00 1 A G C 0.63249 0.527 0.05407 4.82e-02 0.0676 Eff 3.36e-01 1.07e+00 3.43e+00 9 T G T 0.87404 0.382 0.16117 1.46e-01 0.1819 Base NA 1.00e+00 NA 6 A T T 0.88736 0.375 0.12408 1.05e-01 0.1437 Eff 4.89e-01 1.14e+00 2.68e+00 7 T G C NA NA 0.00628 7.31e-08 0.0195 R 1.50e+11 1.50e+11 1.50e+11 > print(cc.char.sim$fit.lst, digits=3) Call: haplo.glm(formula = hglm.formula, family = binomial, data = glm.data, locus.label = locus.label, control = control, miss.val = miss.val) Coefficients: (Intercept) geno.glm.1 geno.glm.2 geno.glm.3 geno.glm.4 geno.glm.5 geno.glm.6 geno.glm.8 geno.glm.10 0.2128 0.0705 -0.2383 -0.4912 -0.7436 -1.0408 0.1350 -1.2576 -1.6317 geno.glm.11 geno.glm.12 geno.glm.rare -0.0975 -0.5513 25.7366 Haplotypes: A B C hap.freq geno.glm.1 A G C 0.05505 geno.glm.2 A G G 0.07852 geno.glm.3 A G T 0.13305 geno.glm.4 A T C 0.04139 geno.glm.5 A T G 0.05978 geno.glm.6 A T T 0.11720 geno.glm.8 T G G 0.08456 geno.glm.10 T T C 0.02469 geno.glm.11 T T G 0.09714 geno.glm.12 T T T 0.14230 geno.glm.rare * * * 0.00636 haplo.base T G T 0.15995 Degrees of Freedom: 199 Total (i.e. Null); 188 Residual Null Deviance: 266 Residual Deviance: 245 AIC: 262 > print(cc.char.sim$score.lst, digits=3) -------------------------------------------------------------------------------------------------------------------------------------------- Haplotype Effect Model: add -------------------------------------------------------------------------------------------------------------------------------------------- -------------------------------------------------------------------------------------------------------------------------------------------- Global Score Statistics -------------------------------------------------------------------------------------------------------------------------------------------- global-stat = 7.601, df = 11, p-val = 0.749 -------------------------------------------------------------------------------------------------------------------------------------------- Haplotype-specific Scores -------------------------------------------------------------------------------------------------------------------------------------------- A B C Hap-Freq Hap-Score p-val [1,] T G G 0.087 -1.291 0.197 [2,] T T C 0.027 -0.954 0.34 [3,] A T C 0.04 -0.688 0.492 [4,] A T G 0.058 -0.666 0.506 [5,] A G G 0.08 -0.48 0.632 [6,] T T G 0.095 -0.128 0.898 [7,] T T T 0.139 0.006 0.996 [8,] A G T 0.128 0.4 0.689 [9,] A G C 0.054 0.632 0.527 [10,] T G T 0.161 0.874 0.382 [11,] A T T 0.124 0.887 0.375 > > proc.time() user system elapsed 50.530 0.495 52.286 haplo.stats/tests/expanded/test.haplo.score.slide.R0000644000176200001440000000706714672315243022102 0ustar liggesusers#$Author: sinnwell $ #$Date: 2011/12/05 20:53:27 $ #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/test/test.haplo.score.slide.R,v 1.1 2011/12/05 20:53:27 sinnwell Exp $ #$Locker: $ #$Log: test.haplo.score.slide.R,v $ #Revision 1.1 2011/12/05 20:53:27 sinnwell #changed from .q to .R, to work with R check # #Revision 1.1 2011/04/28 20:08:12 sinnwell #new makefile, pulls R/man files from mgenet, rlocal # #Revision 1.6 2004/05/17 16:45:53 sinnwell #add if() for dump() # #Revision 1.5 2004/04/29 21:30:10 sinnwell #enable updating # ## package: haplo.stats ## test script: haplo.score.slide ## settings verbose=TRUE require(haplo.stats) Sys.setlocale("LC_ALL", "C") Sys.getlocale() ## Jason Sinnwell 4/2005, updated 1/2007 ## Mayo Clinic Div. of Biostatistics if(verbose) cat("prepare two datasets, one with char alleles, the other 3 loci from hla data\n") data(hla.demo) hla.sub <- hla.demo[,c(1,2,3,4,17:24)] geno.hla <- hla.sub[,-c(1:4)] hla.resp <- hla.sub[,1] hla.respcat <- hla.sub[,2] hla.sex <- hla.sub[,3] hla.label=c("DQB","DRB","HLA.B") seed <- c(33, 10, 39, 6, 16, 0, 40, 24, 12, 60, 7, 1) if(verbose) cat("hla data, gaussian trait and x.adj\n") set.seed(seed) hla.slide.resp.adj.add <- haplo.score.slide(hla.resp,geno.hla, n.slide=2, trait.type="gaussian", haplo.effect="additive", locus.label=hla.label, miss.val=0, x.adj=hla.sex, simulate=FALSE, skip.haplo= 5/(2 * nrow(geno.hla)), offset=NA, sim.control=score.sim.control(), em.control = haplo.em.control(insert.batch.size=3, min.posterior=1e-6)) if(verbose) cat("hla data ordinal trait\n") set.seed(seed) hla.slide.respcat.dom <- haplo.score.slide(hla.respcat, geno.hla, n.slide=2, trait.type="ordinal", haplo.effect="dominant", locus.label=hla.label, miss.val=0, simulate=FALSE, min.count=5, offset=NA, x.adj=NA, sim.control=score.sim.control(), em.control = haplo.em.control(insert.batch.size = 3, min.posterior = 1e-06)) if(verbose) cat("snap SNP data with binary trait to test dominance,recessive\n") snapDF <- read.table("snapData.csv",header=TRUE, sep=",",stringsAsFactors=FALSE) y.bin <- snapDF[,1]-1 geno <- setupGeno(geno=snapDF[,-1]) set.seed(seed) hcount=3 ##additive, min.count set to hcount slide.bin.hla.add3 <- haplo.score.slide(y=y.bin, geno=geno, n.slide=3, trait.type="binomial", min.count=hcount, haplo.effect="add", simulate=TRUE, sim.control=score.sim.control(min.sim=200, max.sim=500)) ## dominant set.seed(seed) slide.bin.hla.dom3 <- haplo.score.slide(y=y.bin, geno=geno, trait.type="binomial", n.slide=3, min.count=hcount, haplo.effect="dom", simulate=TRUE, sim.control=score.sim.control(min.sim=200,max.sim=500)) ## recessive set.seed(seed) slide.bin.hla.rec3 <- haplo.score.slide(y=y.bin, geno=geno, n.slide=3, trait.type="binomial", min.count=hcount, haplo.effect="rec", simulate=TRUE, sim.control=score.sim.control(max.sim=1000)) print.haplo.score.slide(hla.slide.resp.adj.add, digits=5) print.haplo.score.slide(hla.slide.respcat.dom, digits=5) print(slide.bin.hla.add3) print(slide.bin.hla.dom3) print(slide.bin.hla.rec3) haplo.stats/tests/expanded/snapFUN.s0000644000176200001440000001252214672315243017153 0ustar liggesusers # Jason Sinnwell # Mayo Division of Biostatistics # 3/2007 # make a function that takes a single haplotype block simulated from snap that # 1) compares phased haplotype frequencies from snap to those estimated from haplo.em # 2) compare posterior probabilities estimated from haplo.em to the actual phased haplotype pair # As input, take one block of phased haplotypes, which is one column from SNaP that looks like: # V1 # 1 2,1,2,2,1,1,1,2.1,2,1,1,1,1,2,2,2,1 # 2 1,2,2,1,2,2,1,1.1,1,2,1,2,2,1,2,2,1 # 3 1,1,1,2,1,1,1,2.2,2,2,1,2,2,1,2,2,1 checkPhase <- function(snapfile, blocknum=1, miss.val=c(0,NA), em.control=haplo.em.control()) { ## Splus:genetics and R:haplo.stats required for haplo.em ## slocal and rlocal required for strsplit() dat <- read.table(snapfile, sep=" ", stringsAsFactors=FALSE) hap1 <- hap2 <- charhap1 <- charhap2 <- NULL nsubj <- nrow(dat) for(k in 1:nsubj) { blockhap1 <- strsplit(dat[k,1],split="\\.")[[1]][blocknum] blockhap2 <-strsplit(dat[k,2],split="\\.")[[1]][blocknum] hapvec1 <- as.numeric(strsplit(blockhap1, split=',')[[1]]) hapvec2 <- as.numeric(strsplit(blockhap2, split=',')[[1]]) hap1 <- rbind(hap1, hapvec1) hap2 <- rbind(hap2, hapvec2) charhap1 <- c(charhap1, paste(hapvec1,collapse="")) charhap2 <- c(charhap2, paste(hapvec2,collapse="")) } nloc <- ncol(hap1) hapgeno <- cbind(hap1,hap2) col.indx <- as.vector(matrix(c(1:(2*nloc)), nrow=2,byrow=TRUE)) geno <- hapgeno[,col.indx] # run haplo.em, estimated hap freq em.block <- haplo.em(geno, control=em.control, miss.val=miss.val) # construct data.frame of hap-pairs estimated by haplo.em for each # subject, with post prob of hap-pair, merge with snap haplotype pairs hap1sorted <- ifelse(em.block$hap1code < em.block$hap2code, em.block$hap1code, em.block$hap2code) hap2sorted <- ifelse(em.block$hap1code < em.block$hap2code, em.block$hap2code, em.block$hap1code) emhaps <- data.frame(subj=em.block$subj.id, emhap1=apply(em.block$haplotype[hap1sorted,],1, paste, collapse=""), emhap2=apply(em.block$haplotype[hap2sorted,], 1, paste, collapse=""), post=em.block$post) snaphaps <- data.frame(subj=1:nsubj, snaphap1=charhap1, snaphap2=charhap2) merge.em.snap <- merge(emhaps, snaphaps, all.x=TRUE, by="subj") # compute snap hap freqs, join with freqs estimated from haplo.em haps.freq <- table(c(charhap1, charhap2))/(2*nsubj) em.charhaps <- apply(em.block$haplotype, 1, paste, collapse="") indx.snap.to.em <- match(names(haps.freq),em.charhaps) freq.frame <- data.frame(haplotype=em.charhaps, em.freq=em.block$hap.prob, snap.freq=0) freq.frame$snap.freq[indx.snap.to.em] <- haps.freq return(list(merge.em.snap, freq.frame)) } # simulate an effect based on a person's haplotypes # simulate an additive, dominant, or recessive effect simHapEff <- function(snapfile, blocknum=1, causehap, haplo.effect="additive", pen=.5, spurious=.01) { effcode=match(haplo.effect, c("additive", "dominant", "recessive")) dat <- read.table(snapfile, sep=" ",stringsAsFactors=FALSE) hap1 <- hap2 <- charhap1 <- charhap2 <- NULL nsubj <- nrow(dat) for(k in 1:nsubj) { blockhap1 <- strsplit(dat[k,1],split="\\.")[[1]][blocknum] blockhap2 <-strsplit(dat[k,2],split="\\.")[[1]][blocknum] hapvec1 <- as.numeric(strsplit(blockhap1, split=',')[[1]]) hapvec2 <- as.numeric(strsplit(blockhap2, split=',')[[1]]) charhap1 <- c(charhap1, paste(hapvec1,collapse="")) charhap2 <- c(charhap2, paste(hapvec2,collapse="")) } if(nchar(causehap) != nchar(charhap1[1])) stop("causehap not correct length") count.causehap <- 1*(charhap1==causehap) + 1*(charhap2==causehap) bin.resp <- ifelse(count.causehap==0, 1*(runif(nsubj) < spurious), ifelse(count.causehap==1, 1*(runif(nsubj) < if(effcode<3) pen else spurious), if(effcode==1) 1*((runif(nsubj) < pen) | (runif(nsubj) < pen)) else 1*(runif(nsubj) < pen))) return(bin.resp) } simLocEff <- function(snapfile, blocknum, locnum, allele, effect="additive", pen=.5, spur=.01) { effcode=match(haplo.effect, c("additive", "dominant", "recessive")) dat <- read.table(snapfile, sep=" ", stringsAsFactors=FALSE) hap1 <- hap2 <- allele1 <- allele2 <- NULL nsubj <- nrow(dat.in) for(k in 1:nsubj) { blockhap1 <- strsplit(dat[k,1],split="\\.")[[1]][blocknum] blockhap2 <- strsplit(dat[k,2],split="\\.")[[1]][blocknum] hapvec1 <- as.numeric(strsplit(blockhap1, split=',')[[1]]) hapvec2 <- as.numeric(strsplit(blockhap2, split=',')[[1]]) allele1 <- c(allele1, paste(hapvec1,collapse="")) allele2 <- c(allele2, paste(hapvec2,collapse="")) } count.allele <- 1*(allele1==allele) + 1*(allele2==allele) bin.resp <- ifelse(count.allele==0, 1*(runif(nsubj) < spurious), ifelse(count.allele==1, 1*(runif(nsubj) < if(effcode<3) pen else spurious), if(effcode==1) 1*((runif(nsubj) < pen) | (runif(nsubj) < pen)) else 1*(runif(nsubj) < pen))) return(bin.resp) } simLoc2Eff <- function(snapfile, locnum, effect="additive", pen=.5, spur=.01) { return(affected) } haplo.stats/tests/expanded/test.haplo.power.R0000644000176200001440000000717614672315243021025 0ustar liggesusers#$Author: sinnwell $ #$Date: 2011/12/05 20:53:27 $ #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/test/test.haplo.power.R,v 1.1 2011/12/05 20:53:27 sinnwell Exp $ #$Locker: $ #$Log: test.haplo.power.R,v $ #Revision 1.1 2011/12/05 20:53:27 sinnwell #changed from .q to .R, to work with R check # ## package: haplo.stats ## test script: haplo.power ## settings verbose=TRUE tmp <- Sys.setlocale("LC_COLLATE", "C") tmp <- Sys.getlocale('LC_COLLATE') require(haplo.stats) set.seed(10) if(verbose) cat("prepare a 5-marker set of haplotypes\n") haplo <- rbind( c( 1, 2, 2, 1, 2), c( 1, 2, 2, 1, 1), c( 1, 1, 2, 1, 1), c( 1, 2, 1, 1, 2), c( 1, 2, 2, 2, 1), c( 1, 2, 1, 1, 1), c( 1, 1, 2, 2, 1), c( 1, 1, 1, 1, 2), c( 1, 2, 1, 2, 1), c( 1, 1, 1, 2, 1), c( 2, 2, 1, 1, 2), c( 1, 1, 2, 1, 2), c( 1, 1, 2, 2, 2), c( 1, 2, 2, 2, 2), c( 2, 2, 2, 1, 2), c( 1, 1, 1, 1, 1), c( 2, 1, 1, 1, 1), c( 2, 1, 2, 1, 1), c( 2, 2, 1, 1, 1), c( 2, 2, 1, 2, 1), c( 2, 2, 2, 1, 1)) dimnames(haplo)[[2]] <- paste("loc", 1:ncol(haplo), sep=".") haplo <- data.frame(haplo) haplo.freq <- c(0.170020121, 0.162977867, 0.123742455, 0.117706237, 0.097585513, 0.084507042, 0.045271630, 0.039235412, 0.032193159, 0.019114688, 0.019114688, 0.013078471, 0.013078471, 0.013078471, 0.013078471, 0.006036217, 0.006036217, 0.006036217, 0.006036217, 0.006036217, 0.006036217) ## define index for risk haplotypes (having alleles 1-1 at loci 2 and 3) haplo.risk <- (1:nrow(haplo))[haplo$loc.2==1 & haplo$loc.3==1] ## define index for baseline haplotype base.index <- 1 ############ Example for Case-control power/sample size ## specify OR for risk haplotypes or <- 1.25 ## determine beta regression coefficients for risk haplotypes haplo.beta <- numeric(length(haplo.freq)) haplo.beta[haplo.risk] <- log(or) # Note that non-risk haplotypes have beta=0, as does the intercept # (haplotype with base.index value). if(verbose) cat("Compute total sample size for given power\n") ss.cc <- haplo.power.cc(haplo, haplo.freq, base.index, haplo.beta, case.frac=.5, prevalence=.1, alpha=.05, power=.8) if(verbose) cat("Compute power for given sample size\n") power.cc <- haplo.power.cc(haplo, haplo.freq, base.index, haplo.beta, case.frac=.5, prevalence=.1, alpha=.05, sample.size=11978) ############ Example for Quantitative trait power/sample size # Because it can be easier to speficy genetic effect size in terms of # a regression model R-squared value (r2), we use an # auxiliary function to set up haplo.beta based on a specifed r2 value: tmp <- find.haplo.beta.qt(haplo,haplo.freq,base.index,haplo.risk, r2=0.01, y.mu=0, y.var=1) haplo.beta <- tmp$beta # Compute sample size for given power ss.qt <- haplo.power.qt(haplo, haplo.freq, base.index, haplo.beta, y.mu=0, y.var=1, alpha=.05, power=.80) # Compute power for given sample size power.qt <- haplo.power.qt(haplo, haplo.freq, base.index, haplo.beta, y.mu=0, y.var=1, alpha=.05, sample.size = 2091) print(ss.cc) print(power.cc) print(ss.qt) print(power.qt) haplo.stats/tests/testthat/0000755000176200001440000000000014673125232015521 5ustar liggesusershaplo.stats/tests/testthat/fit.gaus.gender.rds0000644000176200001440000060147714672315243021237 0ustar liggesusers}X;.E 04XQ,EzSDD`TTP{a@^]tQ$0^{yINN92sd98G#_0T QԦ+AXkʀɻ*[Ll}08*iz;vfV4<098PAvp$h}\ڲ M%͝=|ٲxgOkwKkW KњKZ;k+zEZLQZVM~2ewswkP%<(<_Le*dˣJ5'z"6l_pQF~hnl2U"qѕB׻#WP#ڲO=wjTQ k-Oͼ$p$R< Ҝ>P|nkh䭳*%]d (z\dyJvlZq p!::Jvu[>>(c6Y7O~Ne= Ge|'gN%L"UZay U6lCf[2==%׊8m6HʥϓK<|Mnr񉹤uolBy Ti~G+4= *wNcΏj/;'>Q?M>ޖ ?l'Uo9 NFBMAN8=HUqbhX *U7,z m^웃TIy;OfR BvϸOsv( >xՃTӂR/N4NJTYV=HR[@b_Se.Cs\Oo_rn}f/0Jۯ1ąo۾ToII>}~Q+gCSǥvǷ1~q|΂4ӡ;!}I41Z1Ml:}\LyUqs2Tij̒ ~SmU+[> |N l]|'9+S_q ~LP)S_. 8z}[c}Pub.ر=Qc {[Jiʌ/ l oic*yL}Q >wq5|:qSV&]z1so'-X;et Aqo!Z"9{Hz(kDd"t5X{,(du/}ɞށ]͊oFYwu0(_hd êpY,TDo9½&jA{Ev⩛4 1q3/?'n5b~j`5{/qW|nf=G_V5Fq)1nOQܵmʹ6ӦR9|)AIUɑ&w@Ϋg䭨/[oj>93 nnǔ=RGfTgQKUvVm*__TcWjxSٛwȟN0X%iYgn}S &!fա`E&$Qi' HDPk 8l_9 F܂U2torx|oIZS^};j۝uI/Cpyk*-A]plRgjTٔ lcޕ)9S6"%5^Lwځ]5VQ=ߟ L}4]au1T9QZơO!jw C+n1>h%nگ٘ tUO}^8JC8sóu^Ie.xW'xnpg:xEO-4>lyA;Ae~P9^3.)S9GܫM֍U*nhʎ#PLq.aaHܽ'Gς=U*nJ-$Keٝ]u*Pi0 <YHM7Zp}raf4Wf4aZsM3WɈ:(G4PNPN        t F"$A"|AD6x!
пkAJC1K'olKBʳҩ.sS߬q{N\q 9OmNoQY|Yak8Nh>@Zp} ?"cs+0Js+ϭ4?"6?"6?"6?"6?"6?"6?"6?"6?"6?"6?"6?"6?"6?"6?"ϭek/ ~ݮnς7/_ɥBaĵa'O:m ٗF=ls/8ur8UU^\u,UTzg7|8aGX uX/G5a eZj6#;{ @~򥷉 /(YEb #uݻYdzz= yqz)"65x8r~&x1s68Z`!ON+QEٝ* <7sJ;uDԐ`Fs TJce{QSQTYkcP_{ř:(Q4/>MsR HT rc#䩒(UrSIp/?tfzu.T Kܨb νnG.RY#GO}+従ȹT>IɯkF|V OU[ J\wP]h?uȓTEi *NT8ɥ&<[*ޞk^Q׻R1K |z Si -Lټ[^_q$0ui2qꪞ.vB_-J4uزk˔Ĝa~xNu7eߩ츪l2uQEoR_eHk?*^yѻÕKիӻG;E-N=8mJVl%u/|ng5*MčFzr0A^_Ғr#9XdXhQv]\47UWKjYI]8XqTrʼi;2TOYl\ЊJM ]Lޖ[%t"6.-MiMd }bX 1vAJaQT;C9o6m/ce w!]BS7 NAg~v)"N.s?OB] S:5xFM]娒v}Wk--nQ_xLѳԗr&I"v'/u|P2D*)ٽNUUG7h>.p\9*KP,bGtP=:PdSPE0 }2]yvY0`fZpA!uA‘kW?Pz{rrOUևĘK8Y|N;y kә|PbzBu7@Ѫ4 AIA7W) 8< 3|t#P|+W.ȗH9>}@V )PfPGmOgt~3<{!_uol pae[F}6W|IUcu欌?dX; =6O.>7 P?ol/jRoT (".'!*I'$osI&Qvόv1 ]$KRs2u qJ1hlAeA}P On[<˛B#î`%\މQϽ: {b^!5eZ呼B]?G`=|[ɢM.~Cݛ<9P>~%Mys5C\A+&*Qvx{Tj.Ȕ.4&8l˴A(w=Э;zujq)_C-Ҧ,I tw9]k1oO *f%5`R(Gn=(ٻQ8١ξ{"돇SyvaJlϿ9=7A߮e?QnΗz58Ԉ>TۤԦû_m?x _u*)1uHaT/on<;6Y;owgN}]?2w!oXoEHeĭΣ"j}S9.YyATa#9޵XC_w"y\V#꯾͡+Hk>UtDL$LAŝƫ::^ wԊ-owtXB} z6Tm?&xgHJgu=4.=K}3mˁ@i<|1I;Kgީښ9[s H&n~/I˨g&ZiӉ΂}U"%"ha6/bKQ;}|}?4v**ik'~ϭo_SLi3mʹ6fLi3mʹG(~35~ѡEG?p'I w;dr]=TVk)bԽ :y /MeLe=TlfƯO[|$ɔ# [EGnzOcfb]_u'ru9{D uo-v@zONK|&e22]5DtVEe=_ڂmr[cK߬'U[gYmxM~Lizr[|}]D b׷E~R{LqZv^R\p3puV[Kɿz5ڼ:,ť>a!FG%rZf*[0i#-N:=chːͧ?[SlCi6?pFpKkOgvTԷ$km ]*{A SEG>78<ӡ2 $*2}@ ǎi'ǬօF5ZO=NrEoYxtA3owWҸ1yX@/S. wztdD}?0y8\$!=3֋z/9:,c ~O-T߅\㌂be\"ԏuQwBeAD~A>쟠]NaгOFrD*߻,FE'KtyP;kM"y?g`Y[d.^hQZ77GxE&a?MP"C¸Y9atnYɍ:jXOD%27GFjD,ޑ',߹mB& U2 28CnRAQ#y ϶OG0RIl&[|{nV;$d-Zk[u< O t+[KkyN|WnM;$X1M?|Y^b4G!.e;}_"Sqo6 -N`@1/m`܌=jq֙](!d=̷z7dé>yGnJ`˵ n=kď| s,;*{{d>mz |:,r~!R(}^{reG.'/w[v_8'yy[ԈkYouRv1fV/BJv xM柳A^G>2NgJ!qཡ~ד;fΗ`i6T7~>*GG YĞ|!]T;P[~93W"~HH+3cŘy݊0 TGij=kt{ځWA yO-oҼʖH.We(:`G~:t[S ),ڡ,]D~Cf^ay~!{"X.Εz1F8/tj˒كv jE?5ꇨ&W[ V0%/>G(AW7̚-=H]*dmj'YԖy[KZ9΢wO 8W>u]мa$<5܇%T& O}$c=5zwH x݊Hڊ׮˹m-)G(/ϢoP2W^݉r2k*Cj9qy2dZzZBz(۞yt2|ne/Դ']jvG1qAԜ|NSm_982!Л.MZe|Pbյ ^Z&R[esLSFg +u2õ[%Vlĕ OktVwa=e:H^p&c_{ģ~c;^KxK!ʫׁ=zbAċ/ GkUkS6ͼCFtoƵO[f_A9m,5u-cޠl/Rz@eHMOsZ|!Q}V\ o_l߀2,kMjEe[Sn/_l U75jeQ1}GķЧJC5e̟ۆOov:5WU~Q9>LB-lM="̠7Z>reP;.?XNM7G-}W~Iz&x7hy51Iqݪd(ƽ|:ZvRa3MʪRcxq'ֵw1 9r2vUc+Sl#T,ddIe%o@5(4g{IeED/jogs0]0VEHެSF܉X=",m6wP<Q_ _?{ͪP>P?(< B|?A΍KB>FXʉCv@|$o]R$od>8?Cdw2H^86"Sx&a?d3#芿sQbƝ!#^Sz[ _cާ-{%ݣ]F}H\{mdWʿ<ѿۑ+uJqօ}x0ޥ9ujӒc6~(-7(0]ZE9vѓ uئ-%*̕}B]A?nQv_>&LS{]t|~\# xm)ȍw@XW_3V(/-")]!#ǝ&m4e;WãfgT:01'$ϒcL}e%͠ c$@dB~-Ҟ֏qއ|,L;q# ~ 5١\}2 ˙ܣ#mu[R4SnqQϩi `v;gQ.%vۄ!F=l^QlT<Ѻ[s˗m㻶uL%%0~,`A9T:1:f7.-#Ϡ2TzIu?uOetِy ] \-0"76bpfqS^^xJ wJo$,#Zɞ Ƅ9|LXzIiʎ7z`Rfݢ++HQZ$&헥8+q+k>`L? v'q)3fY^y A{ѓj WEվ{_~`Y֥q-1ɻ&; k-:;fή9Yﺧ>fmz0:osK0ڮr5*C:֮Zezo7Jcs<KmSXNMJxK(횦mD:Xϳa (Ê6F`cNԫbSNӞ=Z,#D(c:/U[W[(XkZ'gٱQjw uLfR\"8ɦW;kdo0SCQr46fm0բ~'Kp#{~$?F9XޕIP:r;L'~ ΐ%)C?>Oּ ȁs'GeA}K~A>쟠FiÆBMF g @3<")z'Mp#, ߍ_ g^O`۷gxaM.~c:9-G`vҼ+¸ g08]|-1rB#d'F{V<ݑ& w=0|r~po7mdv7@ߜjH"qsoEw x^4f_hdQRvZK2nUC" ~WדFǻeZg۽WU~ލcwbC;Mܰ#_1"oۮ |5euJ˾dcŪy ȿֲ_..S_d M852|wR$^Q1E.ːR)-W9J|c(lsW Z߷-]QЧ<[k8` (y*95$`D99jߨDo Xmʨ"YԸ-3s XtQ%By#^1M>rk =U0up|`''y0h+`T3`:;{1äA`k-oEeHg\9qcャfOv-O`޼*s1@[6K`o)K>Dszh^cx|/9iq/w#+' ƾ&8:t9Y%k&`T˜E@{IL-߷RmOG{&zӹe&;~d&[]nmz1v-`DW? ~|vݘ^}€aWs($>3;C>WtZSvI\hU7$`OM`0|GQ?6at|TtkYa~!9V/Lح=[^TZ?9 H.=8,dLrGrN/h02{tά FT'YmfE?_ڔ]zzĠv {vf\j7B3XSm s<^b+wN(ž.8jJP͊HXٽӲ#ME۱F/:WlhB-xu:PoC=SD}Z(^5r(3e1xpQ:,ʭ5vԪ}Iq0UwηW`]5:R5la$s7>XE)5x4 Տ]05Tfۇt|-?C*D~ΘuG/ԏ9k+ QYPR_Oα~NNic6G Bӕ~$}_?")^k6:$?q뼅3g 9X ٩$]hQZ4=Ϸ,eO7Zd>Fjl=it=jߩE`r5{cCeTJ˩}q~η]g˱z/ocޜrD5pXuUiӷ@|_D!qIowFg'-L !.|RP'ǭWRqM6ڥ20lҮD+)_Pԅ%SA`^c9ά2(cW}@÷ T)7-rK`to~ |75p{RN/ӕ=+fuq(x k7!*4|mGO|e"l+= Á鴮W*ѾͧoMiĊ훁!gһd`afzGS`m`w=E> b]6^YxxخNF_v|sW7F}SڟfAŀEjGt㎭CeH 2-xy^Z}0Gme)5nm: K >'8_{:wۃsUѡH*u0cKv;xl';tA\}{z{s_od1C-j.5v{Q ]wᴢ'w|Z[cx.^ūZ upmE(]ol=il=7wY`eϞ]9t~ v-R:=(Y)]9}x]˯y+A]݄?H'贡q_Dh{}L &_Ԫo7O> 우w^E%X7kvz-2V˺Ykug`sP_F; 4qBmVFA>nϒg#:Sާkw,BJ>a[,au-#?^H/ԳqK"ωJRɓcz 嬖43K='3Qo:[ f2s9fmf?PBB `+=X 2AB~,;,5䎕`ӛYSʿ% 7?3ܜN-t}Qeh=Pnf'[Vi.({/Iƭ>Dlj ɉ/§/KâCh1ۀe -=MrX L-x1C)_4Dq*CePQV+=Y{ {]`gy,}|>ѻlK_M0cGT0ebx&'m!ރѤ 0q||$6ׯ,niQL/xO , sZf!f+,:4 ̋ӥig\^K󆀲~g'qzz:|ӣw?a}Zuӣkr[@>ME:j룃GPCL/ͻ{`Yi:z>X%[6wĽmPR` r4n9] fɤ0Xdf[44`tX, HR׳)2v IYs_G/`@.CG؋/o5yM`umXVH~*NZIl[*t g"܃8Ş>R#Aa]MU@_Q~EFfvmbhuKM.zֳ8Pnh2$$|z$+M~]I$eh1™;]'c+8HF_X=b$N [ڝߢ ' gkU 3:?Aܥa/m 2 1U>h՛*݉t}/)wGTY!U^bF7pH#:* ՄvD,rqFuDBb#PQ̐'[Q;{n?imK3^3@r,&[;$/8lkbwXO|SaQ&a?MP.4(cbEM;gϺ-~I߯U"qiG=:1yr/ڿqCsX_k%Hg%GCG& UY>笲7c:zsg5MxY*yT"]7VT*hr!|c-5: ;7i7[HO;mkvEމ[6tٯ%jCu6V9ֺ%WX?¿&usS^O߀e o [2ң {][BMzsqڢ `CCQ=le{o Av G?ya{X4"s]XS*ghyRGufs\V v\ Yp} Fnk/uH@@킟[Бs3?lǏ[ Ng?;r;~Ʒ8*=&ܖѣrCҳ/yHg!Ju{? t5!|QM7r]ɦ_̼PvJ`ZnզZXl!j~^UJ9$o.6Xkoy9Wx)EQȇL+2hܐ#yә|D ~8~&-* 9B|?A#} Z; v#wv Z;͗Ғ"*C4޵!y?{a{?;^SgxE&}B~7u>C6_YշX\9k @P#ijR#%8ELbU-z:?gN9c)X9byϞ@y}ئMcG}$gB܎s8kiֈ.Z/uzɦ3'xX5DNX .jX}S֣_ i \޵-nVʒ*rKov`:Vv ?:V~Iҧlߩ睺odd뺈~P˜7O:Bұe+;2j]{wښ GizQ=S2wKV>p,܊.L۹o,\;33y*@ݸ!tg' VN70ګ5P{oK(=~XK8"@^mm^Ne?PB|Ǚ)WoޙVEmyVB49wԲ)߲ϕ+6U25ve:o5*ȿ剓AG'2Te;ˣvͧS;oᾱ/LiS9sAwiT}b%/7*>?6+.)sLF&GRySNJWS ${| d8 !]]f^Bh[fy-*[y|m`BcoLWHn@MqGA}Duk/OTK))qRberQq_{=ZD>k+cA>/o:gR. ~C;SKu>?,L~zX%FӒZrPRY:c~o-jc6by7t9cEbzP?x>΁qTow^@r.~悝Ca\M[_EnOQ ힷ*F-9zi"۝c)xr+ uߠ֜HDީJY vf3owGYN;!7)<fUL9ڧb-Bezi-f2D8%6Z>psV\ 7{8R)`H<z~U#mkQ ɻ5ڵX34-m7h~3喈 ^S-=T/ؘ)_GT7ꇯkQYP/+/ȇkne;'|v΅U"~NvC[bC'l/G>8;* _ _(4Ψ}?JMlYoYm˰EMPn!Ԓ}"?״[ubF+9EBaq{SZow!%>fM){X^e~j:l [Qw"smͿ{Sq9WS{ht"τEwrQu-:aߩz:"V1ʟA)rɾ?aُ Gu@T{UCZŋXo+{>KoW͍!VnI*zG@7}=(|+9nW[TV̑\nkצ W3v>ѺZwnj~,#!Us8Vt4k|N!CzN+kkwwkζjjFU(#O*̫Uet$ZINY:uIF_[:)0S:uS':)ҩ3IN]ԍNԃNtRSO:So:S_:S: @: `: *INt"D҉G' :iINtҡ0: :INN|:i$Fi4i,ɀN4NtHItL)t2T:Mt:͠L:͢l:͡\:iL4NtZ@'3:ɂNt5lTs dOtr#L':ɍNt'贈NM%tR:i贜Nt S Vi%Vi5i-i=6)N鴉NL:mV:mv:)NtAtE::S$贏NMt:HCt:L#t:Jct:NtI:i:>t:Gt@tDtBtF8:QtSDtEtCtGtz@tzDd:1)9RT_/NNoNFt:}S2El:)NytHOtʧSGEt*S JNetBr:}S;*N?9 >í:tsϥK?.\:tskp.\y:ϥK?.\:tsϥK?.\:tsD?.\:tsϥK?.\:tsU\:tsϥK?.\:tsϥK?O':tsϥK?.\:tsϥK?ϥK?.\:tsϥK?.\:ftK?.\:tsϥK?.\:ts҉.\:tsϥK?.\:tsϥO':tsϥK?.\:tsϥK?n0ϥK?.\:tsϥK?.\:tsϥK?.\:tsϥK?.\:tsϥK?.\:tsϥK?.\:tsϥK?.\:tsϥK?.\:tsϥK?.\:kWrc^Sv=-]=0, 'sGk&/ek좪UHji3EiA[5eԖݭjխH fѼ49{=GyѼhl]=z(P9X*w\P >X㻪%(&$6 .sg(~wz2e5jlsu\*TV3&8/فK{yÂ"O (PNi$-=<:zkGCf7ӒU+mkao[Y;{{.I3˩)cxj1'/i2=,)qkOs,&[S Ӏ8cV:eEۓgDd]핃Ƥܭ]U= \{A1~X-m=5JjhcXoxH9;;x9-;/~8y֌*k#%͝zvk utWo[ؘ;;.=}IK8Lu(ٴ ]lr}<\EQ54eM~n\պv2j%(1'Sׅ#A19L)fT X] Snprԕ1:m[ͩJ`FtsqY?_$hCKݚ..㝭քGKv,5/=9/8j/Z-ch˦ *Z3حǾ}k`XдaMY  ZL)T5@L 8}>3Ρ)WGj)OQp1 jkl}647$,neSbR {s?jtӿuTrA4nsS)d5𢡋-j_GB:[w<鶬n{x9D[ >62A[53n^Sw t:( ګR:IJ0T\ж'l+Ж 9hT ڤ@_$: `YIlMVOm8VNLjǤLjϤvuRG~aqQ-ޜJX+\Wɾ!i۷/n87^H7g}}YruJPKhdžmXN69aa(T1\wNYy fdw8SJtb`&z,unp\F 8tOѴ4wvvTwRUζ5E/kaʮ֖6K=\-_w;<J ë)C;ц i^ғ^+V޺?Y8ׇZ:7Az;}o e *혽 {#d=IkyEc!9Kі$rτ~Ϲv4џd 2mU|yw̆|=o[ʜOZw@W?=ڳ(_,ɞl=,3v4 悊*N૕P=WUʓ]BiCS8_hA<_ZZ~J׵v[ ē76%~rTչ?)o8ه=o.kK8z[6E^'?( I'4O-'t]R84u\k}|:cQx̎/6Azq#s+BWWr{GcܨX=_|΂57'؎hJ9t0/k k\cKT?Qlti3mʹ1(a^mܾ9i^G|Eci -'~&0k?,?>"#v{Qr?~}}O7wҍ- [J]ٱ9o:Xg-;k>? ͌Pv Z6,_asR^{%ҝ+B~oEni7v=͘[XTRWNfVqwI`Ûv'-*};VHZ6{-"jZfnm9w)4d-j'~ì/w:jwj3P87\/!]5$oG0 ?f|̙$R;>ñ2?9HҰ+ +@c^.o/8uo鈝X)`y+ ?HK;}:mX*lɛ/| WmZ._|I}4Q|)(Tc>}7R x^y~Yft<%Ɋ?j2ps{u#;cv{)V]q9sօF~A}@a5QoT\<'EQK/StzQB&wotizKBk [=7qzyhbm_nˏ >)"#QewT{ a=3VF?~P}hD_Cɯ5hwH^85EHGg?<߮&=/ 劺:`>w")XX8Tt-QUW~Tz oWz Ed_ЭC@N\M\$w'fǣ oK91RO*Nmv!ZڞgmZp=~T>835aYoi*j}3cwsߓ?"ڦ$T fs0so=VtP??Uek2^`^{i~Em~Em~Em~Em~Em~Em~Em~Em~Em~Em~Em~Em~Em~Em~Eg{J3mʹ6fLi3mʹ6f?L9B5/LBIÑ`C k~Xu cG.{#}I/7j??hCKO)': BO95'}\LV$gT8n )_ 勻Ous/jBD>~qj>_j߷=Snՙ#J6Ny?ʘ/FgA%Y uc_gaPE7yyuwPn1qɑ| t$R 1M;AA Ԛ M/-Q.2_ Gg~Ԛ, U3lIf|AZ 4q Hhћf0X#8lƏ8C|+ƯPpٽk/0U5 ñv@rqM2TMguy!qcxijDe ԊhLC2ՎN /Qs^zY:!D}kc&kk8_&|K1 2_r50rQ)F^>:DZdap^u_V|2s`?Η 3.2QZRK p/+Xk78ŗao .7fLi)_J`Wܮ)(f%uA5*g됖0ZXǗ3(=7f*խsk( S952\ J}/U5j1TVODx-Q A9^V0 T,{+@ZGZO@Upά̺3xE^̾@ì_j RfC^&@1Oϩ]溶K K u"/>v!3Mr6PK!|1\>T0\g0/tR}\}\[ sa ҂=x!w/\;`_ϗp\o8pͿd!6Cm A7lo8pͿd!6Cm A7?gY9|'5555 l |'6 l |'6 l |'6 l re|jQrNrX;,|Y_R91΋]kdsug3ԫ_tduCfei>ãfս0R^N e=U5YsI׵I k.Twؙ:!"4sxȏ55Tg[s/{sg1kiU8ґd̩rtE͸:X[`Fם ~w-]=]Y *׮@ޙbꍂZc/nneũ7ܬ Ƥx4p7Puzcl4 /ruSOUmvTά86îǮ'oZJԋYxY+kjOÄ{ gaiiaUru!J{דNުH9Z^$U=adJ{X[[15@O6{'{(/¥ʪXf6,=EM2ƪmnVSUzx9[ m\ښC]=]U=J]E=t7^Z OT#\|o"G6rĿ$G\|2WK9O|cgr79(xEAP/!g?i׿+GeNx& _̉ ti@ZL&_\U!eu9ڿPilj,74g闬 OG׆ͦ/f~N!Ïx-i&<)%6J?9SG4=Gjg䡕qO=2 z2Wq̦9` oM/ ɳ;Cc+X=ZѻC䀥SAWH_jY]`1UHm-m=YbB,άNvzkWS ]gx6_?UѽNmtQqR`pFXn "Wm_.2 ߊhͻC"=qzVT_.rW]})A9kOy92Fˁ, ͇3;Wc$.pE??1f,F_S)u,;5^B~--0{T r~?QRsߺnǁ\ɀ2wnE`ك箿{/u#dC 8!];XL 8ֿy%¯$'( xLSF4u`rn;~G`U f #}׊ULec墎]4Qycq| >VԨ#߬ڴs18,kuyϮG C3}۱*=doTnB|o3a; p>>Π3<(?µ,q^`(1$81.5oGͶ_]n>ǯU/ugSw[9kU`']ћmQՓΥ@X C%"y~'+Ղjgqr48b&5sqDްQڏٖ;g`[꠹FX\GO3,mr@2U:;k| Wƽz,L+X-!g.9&eOk/h-4BTu:= "XUxjM 64Jۙx{wfҲ _z %E߯ Ow9̸Z?l6 85f7FeHݵyc7ޒIyVM~~(#}LSF4u\5mW'"T|j 6O~K1SvCOCsv?7Ix#KmTv8]b1<{8'XdZ \)1 8X1,8cI*ح4.30?Ǚ XÇIsgqypsiWl ge{cpK|ig( +Cړ3/ Ё PU1`(PC5P-j3T:#P=!P}d#(<)fʣ<)ec8<)0e<)glȔ D<)Obʓd<)OaSS63t*S?Oe1ӘiL4~:S?)`3 ~&S?dg1YL,~6S?f0s9L~.ß2|c1So3yL<~Soԛ0&L S?g3L)Soԛ2 L~Soԛ)333c(#oP.M@͙L{s9Μigδ3gY0,v] ނio`[2-L{K%ޒioɴd[1VL{+ފioŴb[3L{k5ޚioʹf0m̑ >FI9}nAPDע_H ڢk0et$%S[y95^@ C<6u4 ZBZ ~u@ Z8 e@B)g/(.,2?@//42rM^pz -@ʹ/R ȍ ReG'6eFvC)#fLi3m*峨Cɢ MP7h2,}|2,#Y+RF߾7t| ކioôa2mL{[-ޖio˴eqXcc1z=v;F=EYggQF=מѻѷѳѳѳПE#Yѷs`90}=>ݟIx#s䙲92{w?2w~ #__< :?˒)B 4XxTYg=+GzV=Ex_c 7`nX/ᾑϔy|ճݟ3Mݏ#M_HCgqAe~(߈>oj>XcggSM"(K?* pz5y)\ꁔ4̇LxϙC7ڜ;>x7s9x`a U/~($_ ~?~0>޷y3{޿~?z E7 p#7xnaĜiΥyx xɳ(39>xNs 8<~s xN[q#ہva <,PRx>uB:1oswP?'xε2<0`;܇3< ֣_ᾘ}.:wb/Xs3~^uxa08+kp>j,}mD/ sh_l氞p} >R\']hgK1el\wL~ (C|9x~ !P?{_)~Y-ϯߎ-(}U,"ډ) ˉj[UE }_ֿXn }OdhC 7Ͻϭٌ)L sV;QpJy6C<ϱ@p/ -`;b(_ox_\zcDŽ@`9+x]},_hgsp݆!~~/d[Ks|> -'-v _ml lw)8wf`}M@1}WXX2ʮwѳ;]9z&܉(L -~|D9l͖`g/ͨ'v2+w-2+ |*?~ 8ˌ3>V={o$iGG~ X(bo.op ,kԮ+`,E.2m+X~LS-AE1zgP`F?A=vZVk9j_kɯ_Fvh=P~ =ΰ}XXHϺ|O7<2eL=qr$U-JW:]Zlݗ *Bo)/4U xvuY xo*~%7eGJ?~ݗ's=_~tپj8Q=`8{%X^[X}}[ iux`~Uأ#&DNk88R5@ Q)eܥs7+m :CfmOaت0,usHځm̝ W-,_aY:wSGD X^u}R U`͘)}Gx=ktg\2~5p8|n`Ûr}t^; v0BQ{"{-G҈ 郳nݞ8 Q??%\6bŏV wX801(] !y;w?/ov|v lkgpppaW6N<|9^p%X°`y+݀3E_AU pS۷bLx͗t_%!^/{I}&0*z./6AUK*r|. t m /W~ϟ'%sO7+Ѹ+8+5S 6ݗo}+#P{ؼ#27tnZ{}/w"Zaϓ|hna=No;G5o _l/sby#`SK2eL}D#C2_iA7AcׇM@ZҨv"vM8FO(ӿo>SG5z ۇջ΍̷k,zeKLS|cu. Bu*߇w")S(]K Ƴ_#e *uՏ ٗ?4*$O oK"8Sln2_zm12k[^ (_GWt~j򿭧ZђY2μ_ާ0=#>!:Ix?^@ @+Mv. 捸|ۯ7߾M E9_yNY'L~~Cϐ4"<%O<goo~W~+*?|eShk_޷ ~K7;0K%c XB`,!0K%c XB`,!0K%c XB`,!0K%c XB`,!0K%c XB`,!0K%c XB`,!0K%c XB`,!0K%c XB`,!0K%c XB`,!0K%c XBb,!1KH%$c XBb,!1KH%$c XBb,!1KH%$c XBb,!1KH%$c XBb,!1KH%$c XBb,!1KH%$c XBb,!1KH%$c XBb,!1KH%$c XBb,!1KH%$c XBb,!1KH%$c XBb,!1KH%$c XBb,!1KH%$c XBb,!1KxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxKxZ5[s/u9L {g+o3wU˸xx;{@Ted=Um͝Fe34C\9d9d9d9$m>d!sȚl9$6C 琂l9 |Ym>d琂l9 |)6Cf!sV|=_ٜßSIu7~SHݾ^F1GMw:|d?)-F|u+WޭZ>7DnOoǹRȃFG8|q툌8+T P0dX4ʍHw2Ap<_jEԶ;!OL|sXzsQ|;|VH&m؋|bO)+qN={qQ|?N6G]W'l0s`{~|db\_|h<Uܘޒ>:mDZ1Rɑs|1^6W~B'`/y46IFY瑂Ns8.*16M"_PV@;wY+П\4Bq`rX =Nl!Ecd}{A'QON^uy6pʕŋ'K f|-īx`}E?KU?K>8ciCbZM) G3h9+w:|~"x*o£kkſ^A~彟Y=P|@|U+wg[LiNVev:uh6 ?헆| =^Ό9ЕXsbVKw (eqzH9͇zWzC09|Yb ] +X~ !qŷPJz|jE[=*}Pg5>v0eqc뉗M]T|SWqe{ۮh_Zu?_tC|t]&9ַ{ N|?\xu7FΗ=_6XϞȟFy1fB+ne(2[D燨~ E全~8JJVCϳKgY̾-rll{%ʿCU淎zWS[n\lG拯ZbOe8߰F8]L_+v5tܩ!?&/՛gwiꇯ/qOv.YojhQ}EhT0矲×Ȟsܠ+*+.h.ǖWd??Hr$OnGC~4oyQMv CrӋVnSVAyH6?0E?fG,qikt7q=;>ҚEi)2x!|go?Ͽ =o>Q+:#zХW?*6e^} PWZ:۳A̹OCB/,Lguܥr+䘏 J.?OTީ}2=$~ƘD%-_LvǁjBOCSe(fwm6IBo?\%Qڎ*,?\- kޣb<1?\6܋}=tlGdΧk߄ۃ LS4?5>W}nxɫCFEi4~ߧƼqp~>=p?{\p|x=eU`ϵsD{e@F鿚R}IlThWm4MʘIm^I<&!^ZMْ,o0fQ_vsy{Dx> =9 i (qOO|7!kLjw̋r8yuk'^MSl>EQSV7n~Ĺ̇|!&ST}<G!N}4Vbr9O)d0yÁre39k݆s8 S5OߝzuZ|;Vw'k?848^9ё|5{lZ}'~E#7z)g˅᫩{i{} ɷON)c|1g#)ݭ 8lhGI~=}̔߱^r~ȵs;j%7[~Xb1==׵Oi^<3Sgޙwi8>Z>`0졾#G/$/+W;f19ްмOaS}ju}~;0%v_Ss5P+\Z;z/ {VR\/(?0||)1И|%&CxH McQv={1~ //ꓳPdz]yTEV\5&[T0ld'^,(ĐxJcGx+꺼Dx\լQq5,ݕxng\"Ȟi۽Ǐ~_͆+ >?}9NXֱR2PS]w\ϊNVt#IHdE;T$ -MtHVd=7ssN WCDا ' ~o3}'9͌6"7<]_>_ m.קG$(Y~®|9n(_W>'iz=By(5zĺȋS#Bs^ُt.6׵~# Ty|.]~p h0S=AP}i1矆 X =p{s?-GTax51rRqw_}._gekk__ ֋Gr2L>.?~,tݣ1Ju|q.=lϛ~Wuŷ4T;~v1 %>V݆*0:ˢrاxʤ[7.iE]/>3K ߡxt8=^"H-Ϻ /:Gd٧Yzt5O>VqD MRQP|UMTϟ /YmXpVMa+eJt[p,Sy#%o0rg\5ϜEś[jtMwILP<ʂe>#$%s|Z%ϋ.>P@w{Cl}y{_G>">Ͳ{iOXnlg? Kgkkŧ9&Zy^V^YK*yᙦZ5 t)`~Щ8ha#兝<%%dW\vy|,m++D֖;Y.ڌv[3Ӟx6 kk{e]~{o7 ȵ_s [~ knگef|JM5q|<_uںm._s 5t._7|]~|z5 9^._s |&׍ÿW7\wEMX"*&SG>._s |&׍ÿ k8{.u5&Yk76YN율9lc{~RvC\g>=!S}qcl'^QG]u@ǽkf`uJۀ?k|Vmj||zǶ:xw{.a\|i|ajNgkLt!1D+co45'xk^._7&b^[_~oudX_{뾼FCt<$:nYU=W$L:~|\lCؤsq|Z~+ڄJ ~616~'b?wlYU~C)޲8(c#Jq[_aYZv|\ =շ_?!WsrKuKyeq~8SSpY :8wl9wXO7=ef=X4wZbr,5w;dЭ٦GnoY}z_Yꦻt5*;mz^/2yN.1H nVO|qyXG-'r򤠃I5_V+\E[<5Yk+lcYh5>cm$ 8> =ЍE=yR+<_yɿuM:\~cszUw^xv:}v_û[kvv z9r|=87daFy=띟lҹ|8u˝G>/~\|]'~M~_?ߊ[~j_4QȎk_O2ij!x$o?[7O?|<5`x5{X%MwS?|K1:;A~׿~Ho%\f׌+Cu*|>z9r?#\i9lҹ|83lq|M|u׀M(Jlҹ|8+P. vfm <ˎY fEb\'&ęKh _F._Io|Jܕc#h>ЋqI{[/6J. ӯ[Ʀ?뼤Fk6魚[1rz^m ~#}a#6tI*FӺ6;_^uuXYEѯFUr|[|&׍C._׋}GL;M7/Vxg=*럱"}H{⣯[JJp|[|]3>zn,ʩ~Vro?p߭|kCN"u4rM:Wn_| ?=;+k6\nrz&FxMʇPw1F'|;8$u~sDj-N>W~z#|_[>Q#>b?먾e aݧ 3}{_GUqCm}jx=۽v>y<|ݪ\7rkHcs6Wfկ\^m mG;<s:2LP_;͓^oFOtզ׾o:ZeA\|}z /(gmyu GZcC6~7At? 5t._7u=2:eod 8?b+4{6_3 1=ؤ~?_3ԉ~O+S_lҹ|8u!lSjU>zNBU|]9Qfk`.l׵; EOiS+unˏ̓\=oGo&k$9\nuC~N٤sqFWH761~\fa9\{\f!Wn}\412|։\nu׭[;e-_x3|݀FV~;]s|Vos!lҹ|8uٯ X?<jo7oeO᠛ήBW˚k;o9U#uz urWc#L^^< 8= G&_+O-52M/Sơi=+9u#Rao~ׅk&kNm̓-_JVk~|}gݔu++N3K&yqnpٚMb}ĹYiHp׎kr륵eu|GmUZ#olZ+?p VoF%wNOϰ+!i멿o /YmXp|ADBN}:h<]fRtXCbZ|GMū?މ-nA,yojx[|]:Tt*a'a7X [_ȵ4?Ķu5:kV<\n.u/O._b S4۽{-_T=85Cq`5v|͘]}BNV)l=FΩxWOkӺfTs3Id٧k=%N]ݻf᳖=dS'V3MyG]ulȤcc[xo :f|S_GoX$4%k lQuo^ȵ:$r\_7jpGov_}Чpɐ)6yNpAݟ_? ۷|?Zg3&~|o eW~XR~XCm5 ׍E~<կ_Wݐ^d1=^-_9jb45˯,>]4~ }.wk'cdfI_yrX{-yn**~=5ڥ#NǬ_Gky~ݜ\ }׾z/կu3ٿ]s"zRSOk|:u4_ L[+=ujg[fXg&s.?W{7O'ԧ!\qc&A|z߉{NX/j1eՙlҹu🾟Oe~_uX\fkQO8L}7񸹼L]ݧZ{o_Vy}9ZnaMio ~YdgOl2;T{Bt~~hr{HQz0dƵӯv G\lF~ozc+?z쥧cgy58ٜ`3g~H˭?'H(X6iDzxvF׺鿇=O4<ކ-_k:M\Q|bu׿'=̝E#RvM3[ӯ{qm\sKW b{#)珧ٹHzSzجeu5E,Q>kש_?Ni؃[r:KRe]7+(_#h 6~c{{<35cs7-[15ZWxiLNpiRcg+vSi[gWV񳛇oӪiK>~r۟ڡ g*Q6X&@{OON~o3}'9͌6"7<]_>_ m.קG$(Y~®|M{Yn)dW'O??.Wߋ5{j*Wk=1gIY:O_a݊sGV8zg1b?5CLϵɟ=yPuQG]ُ7c@,kyugХy˿ ̰v>J/}mƦkk=7fZzl<_|?\a[U>o'ze{b~g6 wX^ºfGF=X}'[raf_t5=kAU 7b'M(4zk'Yq~ت]R[3C"~Em_>ʣZ7_g,}{p~|-''>ɖs.Ҏ5zñ|$s٬< 7*0h3^,*"0H.'gDZ̖4rk~?k=Fn& -#%o0rg\gtxu`@ǽkfe]z ^C1"gYAu,A^Q`?.YO7ݫ?Y,O%xݝl=[v"~}[[qSLl{jbyl>~37Pd ;u#n={^SNѣ_Zo;]y_~?,?]=VymOr7r!̓ˆб|\*?Ώ}4<3xq[|]d jU_p9wNNu ~]/D=oo.y&=CMz!61_Pב̞o{-\nK:CsM2eݫC|;_ `\eֶ!s6Vw<)ynV=kq|I~6߫F3u+ }xQ@p߬ ,<6ٜmマ2YfU>">s,Riitizd,1.9,%_g '$|6އ 9Wo簹gcX/o#{HCq,bK_0mknlif!m΍knuC6Ru[I?~[k=*1isy-]~!런|<떳_s!f!w|Oc0`˗68l)F4dk3k%5,kS#I86e#O$ܼ{k&l},㎾d=I5/ .L9s;ĞJ  깱(V{>ѽ>QawY([^\d`֧,:yw֯N3F~ 3ϭYfG+#džگ´~_~-g(,CIqn5=P3.$0췌>*nFt:0[8iea~g6 w65){bᄄV27> vj}x`f?" f`p򪎗zp|| &-]q!Vޛ3>fd}찮.GBT]=~-R{_T7~o?_S;׶_K>:Bk/uSٯ_{XINZVYYý.,|M)CgWSjK!uS,\WMzomG<ĎTC!LZe~__7kկ~HM}_?[\ii,_4T~J曋 Md| 5+ __o8\?__'_wgu"p].F'ԑ~MsR~y}1 pLzT{p~|A?KMlm/ֶ|MGl~]C&ym=ЯZ<5~,|:zH,=[N~rr_sٝi41_xo-_*ށwם5GzW}C|h rD.jjJ{"Wpِl[_ϱos|͵r|[;rMzjlm._7|cK _s.5Z-_|rѹ.|&5`볓p!b._kk6_6S!߿響c-+~Z/c^QY7_/]l)b֎oRn{T9}n]iub|b!ͣ9w`LxJE|3uuxDYLa%ͽz&k:rQQ_RWlfަzrVԕ1^Y'zת]c~m8\F^1:nó6Z.^4d^+6}ĮL*sf,GmV<#vV.8ApT)*GJ-<p!F+i:9'[^Œ~ 3mDz;/>3GHK.@XVVv^C()0mΙJ;:JtvV2 @~_MhC79PIی}K \!'!m ңu ^4|ח~ᾋ JGxخE\.6?ٯ_sϣȵ_Iگ,= Y~536~j;U"VW/er~@.ѼR[a]|SjuwS5|}"}s?楻`: >]m'}G+MPn>W0ַ[L]5cX7cFЧ889Gʣ|]?UV 8gserX{PX|rI׌ǥu\6b_7)V#_W=~Wl:,zXr4Wk.r!lҹ|8&nbעu׃Nj.%xg~N~sn>"p 5g3C|a]|e&HdY[|ݔXW?sG7-AIrgU֩_& O{<, vFFz[7Ojt"q~}ʡ㒲LEVyi^iyWf!| (M3-~XSol={?׌{e9.~>"Sou`|]}ZG9@<Ώȑ =lҹ|8l~3 -'M_O/y~8WGbsI41_!w5|c^Q< 8>#k_}x;1_|NeZ~5t~8lgl6G?\fOo͑b._7;b;鮖5SwrFU٤sq<(͛mǬ_K4~mŖ?_slҹ|8lfa9ykB n'c"> QVG=8 ~;ز|B踫?_]!~9{k.kd[e[EZݚ!,>.?r~#-_[~"g럱'~f7ryu5 [̟#e?\fa v|06[\b=lҹ|8l]XOVnpmŖ~8|ƕsZX5t._7[7_P j*|>zKSO'گl)~g|1zu*p~^~ ƻΎJtߛϖb^Yߙ&V׷|a׭/Z,~~^N,_!{mY]yk3+_όuHcЩxHttol,_r~5|-Cz5U\8!&~s[m|#?"_vxw3=u۲Ykס3jd4c[}~khl)S ^կ1lnuz-zքv9>uה]&ή֧Y<,$4m=_[5~8>.6֋5|\a|@d{ _MrE._7_qtps kO_c^4~>EneآT*>TrM:Gq >vuPҹY#Y}ƃ볱*y)c}c3{7T9Wf:Oqӹ@Н,{mV;ukįgPlj7B"6;~P?%싟]f-quB9[N?v?uy#ו,F\p[$>UG<t(=Q'I<ɏ+^8ӸpzuYFV6DWNTս.mEQ1Bîvzơ1/>G6v#n9a"*G|+Sקj%kZ->}uֹ&J4_*R5~O3A9%/{3z۽o|=>ʬp5׌9KG$(Y~R}6Kبqh;='iFb~N X7˾p{5ןC._Iufu5 +1>Ӿ-O$v%牅`7ݚHș1뫀NɑRK{6N>}bQSCɧfmZ69U#Va|߸|檠C֣ V$dZ$KJu_VF_?LGULiKx2ZDNIaS=Eu<:G]֤Em{"cڧ8\R?7/ 9ٍ,?\\=ħCT?**HP2-14Ei%qM,7fdO݂*F>wx5DÊnDs5v'^ߎIڇnn2j7`>_a7TxwtN=!w̝sJaHMaT~5wH{ȅlcF .54{K w$:r:Fig:\ )u*)}JI I >Ai&p*2x Y9$"יt݃K4K%>kC&MjОIS?-qHwbʕg1&M^zS9v^&ք$y̓eߜ}̊mR7K薌Y[k޼ ]}YM[MK^IqBD&5o&qPũCSu~>(3g4us`P.6dzgr-v]Ʒ<218"N~5o߈\w`긦?6Xvid\nJ3NfK̒?mEktd"Xn*Wb&zE}ϚmaJhd(zNwsJ$uG4ϝхcl)yHw}jކ%NeICRޭʋ|ڙMG"LߤڋAj{PCCFP5"ks*GgbI4B kЕDi9W{dTj_^|ōGa7д(˓T{g(ץ7Ö<|JNn4$v {)(czv \A5k :OGGMONF}m3rq7UYq9.0/FOryJOVD}:U*MOc T8(ANI:r~MIy+,B]k$wo@u_Zꗤ7eIoL icYwT-ODtʧY/aDn[d,5]t%%BzMeISBff'%^!sM=J}?/ИSHn=ɕ+z|p٭^ʓvd~Iа3hy(dnA^mzAj2]?$z=dx7ک;-aa͛7!w71c8q]m_?~mfP픮?*Hq1̓cB~ϮDӶ@wxC ;tϞTe7صs-bt~X7swt*{˳/_hTؾ$3&aT?Xl{^)|&E͖TUVn3밋M͛A#9QC[A;:a^a+cJ&\/TnOn7o+-Z+P KvAb w:PWtz ;28Olt)}g醸Q8RE|n? B~y: 5G ;剴I:#;Ǫz2_y2čٹTEc;j P-~Du8lAoS4:'iYA"AꮈLfxRYhp\@ْ%Hn֒TZv-D?4]0ꯛr*=C G/+ Ӆ%YAXkߖd_TxgQTxJe["h‰?|'c.H DZӱ(cdeeidzeifM!f8YՄGwg3IK ʾ{}Ij55}QTxz~T_e8'wK]|/k8V]w(s,OúY*]Yi S WR/y*?ߛ'#%-~Ra㮶y:gF$dҲ( MWޢߘdNw)\Shdfwr bOi;SVeT=NfDuDB|Uvf o,&>3m:R9gt2C&gS%|(^0HiLRNE -Gɛ^T]e #M.ߤpHވj4=\1emi68?Ы T~x:QVlY"B%S?{v !Elt2)jTP" qUct5<]R2[r-'FZՎ_C`I꒾¯?(H`1qvzNlC%.?_c/$G.sh<.^-xpҨ 2}՗I$OvWd,"⧗Hv Udgl?Fr~ƀ$y*xt#dy䑚#BV^$ /9f&,Aͥd9imM{6_@>~óA+^oWL+|]|-v[ %aU_3Q*٥ϐSdR^!:8f|n!JF I2ޝ! rCJLca= 2w%Yqm5&T=F^"] [L7~gZrds]_Ѻd T iNWnO,S.>zeV/D툾.d}rGKv ~ B|/goQ>N*fYν@i]>#nn;wY1ŖGogu ˙t7O!^DNWoS>6HD 'xj(P,P {/ZEWXQ˜±+/<5MT9 4_j偳qhv61n6Eu#Ũ.^ jBO^LoK Լ FKE^1rg+,wSugJN5OGo]j&/lOt;Gݒ !vyy Zf&Jf}ѱ ) .<N&[]]]4!fqqu@>i%$UcԮJ/Hz *#c~l6?!#;fIz9\"7r{$kNIblBKW'?l<=#}]$egRw_W#'DIInZgқCxJnEv8'=S{~p4& 'J{ T:i2A♏_%횕&%W7v)b 84LH4C׭- cuw%E~;LwOL̵9BpsnKkVbC?~] :"²d8`դ/YbTcA]CǑx:z¦2j^I?WQ N#W ;wjUS) e[%y//*$qN R{ov}<𗊝"N r=?asxR2.N-w2 y6Q 0@w:s=l#E%r[ROD{ 3d_jޝP^SDSنN. [wc)i~Z#ڇ&]AəKEZoSR.{<a FǾ^7H !a#M;)^|g!1Xvj2shj~}W$12MAu/m6LmԧhgGE>IFôڼG<"5H?h&ydf'$V'rL/>+i{=&$Ea<"m]yQree2=A.e%V *|!z$G'~G7[( vLP`.CňmlRN n #GZu^zA<=lJb זK"1$פM/Ϻ8ILhMK&Lן;Ջ0 2f:%#7蹂2Od Q_ϺBzz#Hn'. dP\K3N}+řPv^t &>'X{%\d3"C9~Ŏ6u1da-]Сĵk5K-^#Q=7]8'8UGޗ3ʢ3!۵>%կDwO5.%&t6xG V *rR3/Mm-xfx'ѥvϜE$Gd>xG`"ki|=1sC^:oKrDzLȕ]|G*94b]$j=&mYSEls,wdp=Լ'u$ Ql9?yJJ#r!])Qa6Z+|It,NgIW'WCLSRZl^%{񖏲 .ݗ0Cvd #̰t&#f1k }ƄJSw "̸JẢ\9I<;*]J3\D/$KZ )r0~>&l5zbޑKͧo`geޟv&Y%.N w1sRL"׽L>'iOn/SZxMK={j= y :Bpz *s2`e"W]C6R䉰*l]zb- Tq> tMo'<#w)^M Ήl*_b Lߊf'%^!D?+5~Iߴ) Y, $L1j޽󐼡4aHW>'ٽ6}||IсbݔkmUWRsJ#Y>|J~֑qʪo G>i(we))d}Y/u6_6pcF+TK(Yn3+"zn +3{cg }E̺r].߉ 塭3aHwj+CR}}"qITj며“CTzn4|Jr|@ʽd=:o_je?y[a3HJEة]qGhë_UpEi{y;@IM920wݖ+3vzSZ>75@5T|M'Qu͵*~kjeEcLՕTGU;GJW\cc< ([ܨT>-RǏL!YJEGtֻ-&uZ)xÊTT9ϼT*V(*-!UQH*\{T˯_{'.{t%^wMW#-&s}y='c=nMzxZ:ʒE#4}4ՎNp*lRɊF_*C3 zwYmyht/^z)pBe~3mED{+ӝNӖ۶ tn'8>*FSd%G_m$c}35̯kp;[ҷ ..#uK ^4 0=_+IcFbNJ%XӾ!c%?gd%qw\7o .#r4+?H(vxpbuav^Ӈ0f~Q1:l3,/#ī =KaAA 4ߜ&f!QƍRA07)>|j&qtconWs&˿ILB%U+o >*%O?4)NEiֳ^BkK0y=/zsmvG|NJ${!FEEM(ZU|d>f(k-$r\ EN*^_Ӊ%1#| %glw&O/, QhWj!M7B;tt2S ~ Cn'Υln 2<I~#&~#H{̷,1|+n3D'Oo:uF7ϪYglHcxߝxu[ϳl$([jF?o%ث baҏ\tO DTQ83eNs Y_/Mk^ŨN/l'.m:߭ (xsuJmړ}U!7i>]8'%oCI;tFLUm 5|Tz^j~ 17lr|o WclGCBG H|dHݩjN#O(֚H~I:>q],]Tz&7mNw&2bgN0qҦ+DW8~ gPzc%7,9BEّyks%V >ZxJ:DŽ>5J>uG͋GBC0SHGą+v͛ ~y jSk!UKըv7,Fc"swaP2pUJD,}蜏tW /< Kdlz\Ϊ*N'^cәrZaSqhֵLH=~֋ZQW r1-̢˄ RVd|ޠikieUCm"$oL7̤E힡wlU{"w? 8r/,^Κ|# 8Pݽ&:l#ij?v(*: 䱩ӵkZP뺡|_1am)h'y3d1=J`#ȘO;La=L1i7{I9W)QX#@ϥu-~W|T7z3Pn"p' E9Lθ@1Ĕ|"H:A"vf%t]t|-Kƹ%=vAOX4EGSrV6"͚Z>t1ʗ=m'7?Y;Ua u+L ^2ȸzQqXEN[xyuN;Ufѐ=Em}'{3| cYJ߷1Ì7 }j}+QR_PRFSX.4G蕩=Ŗv LZ:~Dx t2ʯZYGտcPqTxJ~ʬ.gCOSZW-N9pեHw/4%}>دS/Kv r1:ڣCY>e~a9Y[jzYQxSnTIFo)}r}6}qU-]{NB}Ĺ_q#ًLTt|<Āg.jV*wz-(-(Jsa"YyЇJ똯k ttr໛*dAvZEO3 %#5&;^H^:,<|(*=7tLbTc:*ϰJ~=EE P0}[!rT Wӛ %VT?%%w&=JGƴ1ݩ|>S؞0oD^Rb<5w|3Q2oz<4ݢo}p(ؠ#id "l{D݇cq;mElPxTOUs51 ]2u^Xmē4Ǡ+I<5CVZϐy*4ϔ>SL -EO}Oc0׿9i& s7(ОxԽY_MhhJQc+rGqKv%Xw3WRBlj}` 8kO.|x0(-|֢<&A'I =-fnO/z(`// >{}oޗ>HT^~!s)<9ǏœK~-LarZrݸkiI}!L.S2+wL >C}wݘL"nʬc3^"XA$'cE:!+t+W*aTHYO%gu-#>yh@O C $YD W/!M^g-\1.GihI޻r+}psH&7 _@k.o*Z][s"Slvr>G* >Ja b ݮ|J^Xoa+s8B]v~4^P-3=H3rGy4lcN>iΟG 5&)=H}}]F%RG mi8D& Nyr )6C8<3;N_|ZH^vק-bO0Z(eD%4iF3-4[7v5Veh4| pU0:e!ioNo x:)Cz?@(#2qwɿ2gܙyN.z#9*}8d)-$ bm4?XzO '@ 01x;B><}" ң`]!, ɇ5yZMK ]hm!(?aK "` ςp!r.$KLS ~; Dn_2B Yт+"͛uԜBz9ˡԛu0Rȷ 07 1oE;|o{in ^;>-2> VR6ߒx mGOsCjT+y-zyQII>mh=Os𧽱)Z+!!'˧I^fbȿsnvKOeK;k.i16тI{x_Kg~Q]j0dRݵck h1Scu,k'u~>Y՛Hzтmv Eicn(܃gs΢ .F/!i^+ŚRB\.s9NjOWq8>]UT&{ulўՉ_xM*pg58RX{Ӕis 2n'E7UNAKi 8ٛ꘡[4smW#Ϝ3!ǹO܊E*oO*4[o P]|0p)iHJ/pjηa;ֳH. ҿkKq*8uCK n^jS9p@qgG$/3.(kA{ddAP(] tG7$vV0c:ɇ $_w?uɰCʏ|`G%׃MJ)I~Hncȇ{]Òۙ 1_W`||@n.E=E0_|/.-K[AӗA`]-|` v 돧A@_w~0ec~[@sߣxzk'#C_O|}M>0p~w5# ` rUד+w&_}36buΦcZ `vo!$~S߃|dlGP]H>KZ.vb>uɘ/_|mx, V.|*Lh.ȧuf* w*̯!k/A={ W g w0?@FrN:; чz ? AN1_oz! !k׵\uHJr7 aLu,w@.` ΂,>Qycf'|_/|]:A^,~QkRfa=)s+Jm,}18cH7t<X0_C >lыZ*V1 ZfV-2Q ۲7}^2A! M GRٺH-ݐZ`{ܮQ83'W폾HVIЙ/zQt^͐tR2ӹ_S,4,e⣸HN*|^ 4Eg('Ug,rnbc+߶sϸ>4R>;%áÐ`wC:E;AInȋ[<[T<̕? /H)H"тo;!9*(D&;o  Ҕ#2.$7~n>qhge] |T}!{)${IGoMGCZ,^z{ ^l`Jk2un@!yCrs.1g3bs՘GsN0?HyWxaȃg݀NE7$켈˅[ͅztH A 3OA|G4w"]tʓHÙ ]x?_(q!R'#/r2wpJ@EkňWbf>$#i~ȵ AC/ASGwC5 gg0< b ңp:ݠ<_9=n4DЯ\||%nHt*tQ0hP3{M'!85r.(r$Ox | aqU ;J̠~hlg<<.sG@%HivA{ycIh[цK~?#uӳd>\g򟑫ֱӏe4ӗ͏AF?[e)&XLw#)C^4NXgS8=UuK./6&6Wh}/|Foy2|G!~)iCq;RqXj(Rh՝ -\+wۙƷ)6"hq(SV~8Ύh׭#z,ƣ S_${fUΑyۧ/E+w C& @*#WoqdQiEq*`}\Z{B~/GBx* OPIn7>Z Ǐ}+O1J@+OO$R1| u"0` =U+A^Vy#m 9W,^tpXە ?+@JT6hlNqpxS3:M C,{HO<5 yW p 0{!^iQ6N3h @n~% 8־'7b;d~hg-Nd_8`[fn~#Y?~} b` ``?|(=Y,;9`7ߪkkslֶ@il~xob`?R0nw\'~@'l CG{!_Cىי _r]:دWZ:ײ|=A 'n^ZÌ0ng¾H6lVbBl<Ͱ]R"_̀7^Bolcg~{5ПIa~˾A=Ya!!Iߖv]]W~y%7 > k-A2Fo*,lh~}Ez_llv  AgOd?쟥~u^ / \8Ɣ~i_= c~}}1_gtkYoQ` = دCa(ڟnԽj3&P!iSlߓ|yJl cPW.'G_Iր]=eɀwjoaM׀8)룼!0_<W`>0 }בxg̅} HOozw>UB_a~{3ckyWB~G!<~|dvu&`]WۗO8uC㽘ݶzn|k7''\8$:|'2ƥtk7K: @9gW1_T`  ?;Hϰ^=?kis^O@Wg72uzO)$~c?5/dn_@X~ /+xr)7w$N`/g(ڷü5q־s{p8o^ |}`;CDkprxjp>Sc=췃}{Z&?zpߙ/?d97cv;1_G|=)s)o1_bZ YC~.=uoP) 'G p h7ԁ:2 4+<OxH~=imјՕ9 gq`AA^@NyZ>S0_?ׇHמNA_69|-c]2~2a?v+B%"~QYـ0t:JL>S i|=];&Q80~eZ4yE; ⁿ.|O|8kTc% Чs @rT$ח`.|-|c+t4uL/9?~XYDC>UX' 7ɌZF,г@nz:_]o 9,UhVXR25wk-׃aNY/{8 c wx#|}k|c*e%A| i2xn0__|(s(ߟu$u9.#A3C1_J =uϼ~$_/myQ'4yGSHV얳':ZNH ( a G@I? yG\OK}yԋM@ | kQ׷Fzb>  )是Wx_tЏ% ;1_۽|]6;WOs ,M|-|m ,Nߕls3Xg{H$>|dK0_ۀ׋aw8*k5ؕr6bFI:' |QC/Ia.|]g<|}e'1_d6xX }끇;< { A+\^cЯy0_?ڋ:kc1_[p'ЧWay&׬CЯsV B|,ƝY~ÁO7ԛA<ijwr5-YC%/PO6fj@o|1_guY!_o]:L=n| v,w$S_z:C21_ZXJ8u Ic635),cHh}Ywܴr ڝdҫRr[1m%vs}q@>d7<:11'ޘ!xa뻛 i/'bu_" ]ߢ_ǠU_F)ymf~p%,2rSz5*R|ZC?HiYh+׮h+p|5ȿ 3f&_f6P|=w RiM9Td|O?FS|{g׃1vQ|]I!K=dԓ0!8Fҥz'Ə13)H1*hSy?Bvy/4/'S|}XP|}Y -R:/32z/ e}\+;u>D-uʏQB>c'Pz"~ mfj dCu!v|~egCvpS8gC;cHiWY0nLN gX/~YNndXvgQQ0h+Q{,Uhu~}L#yh3 :kW듶hמ-_ꇿ; ̡e#`"k='d܆qbޘl/Ȁilah3W =c1cA2-pE)Ǣ-2 0R:YOA_WŃ&>bwb[2sBN%iU"{M Pcޗ-Tu?~5XO/ 4ǫp8i8I-ݶA'˗t^D&ICP-p~ga\1rtTCϓ=خ$_DF[ Nׇ߃4h <='"F D{&D鳠us\8Zw'dU1=FK>w %NNi3HSIݡ?V^[?&ڮH={f2&5+:19^sqUft[Evq=n#+첑פp6I10>kUܾk/dqɣ-iۨw?udWzg s} 6Qh&Y)$cqWW1i0~spwt&#࠭ L+:.GW* B{]A`>0;a}"!=+΅0ȱ8|HXvhwcgmTks#oN"Ч%ߊ#=2[$<%1 ?{c9}G3H_hh/ "X;h: ~v| 8zBҟ@*@n`zD'=pqCq2?!PC |# _>46iXN#GuRy4:? #0dVV~^9p/A9C,vTsN9h?} [<3֧o=pC!´ӈ:"w3EV/mC Vm AG]> Β] _(^5kȂBHE$Mn}yM"ֵV!Kǚ{nCr C`>}\*|mK#Qil?Ρ:cT>MC{9y 2,iַ﷑< ]s4ikY2|Л(ͭ?{X >U7w6aZ U7ME* g~W;jp~0 ,nqCw7Gr[=agɫm[ÂEHg9- ߠF> աqxݵ!fң;A-}Y1׽?wyx~_P$"nH|^bgٿ9+_}9.g d~׏XA>=C -(x'%ZP<|AF;Q5B~é #gV](SF6Y7$EN>5f~-!oս{ F]FBy<AXd;G]l׊[/]ac8>ݭA;ʙﹼfsf uWh_潦ci0% yD>>-O0鯵|EcSuO*Oq"Gvv/MAQ.8I,.wڹ<wGc|9)Y*"%6Rnr/Ñ䷇idu1}A;޾ִ˯"wCoghp!>!..̏O  A|{vX#Us燢" GFC7s.A;l]| `d}P\zҷP?Ǟ׋A[iTd#u¸2-_Gkl\N] q@*]w%3o@NOj m{?+KL[įjs\Q Z~u3< 6yf._1 Oc^y1>vpv _VA5(=e2mMZ 8,23ٮ=!̙r}3R!Cēi8l82:6sq8g"R}7xD ڿ r/0o}| +uq=q/y ;2\Ghp0'0 .p0P3b5hK(,IW}'L'6!SqIjA9x `<€]'Il(y^s^y7ˑ}CF˼z8ٕ \>=z42sE$O3dϗ=Bp\k>wA7srTnG>,+{ aH(3ҍ|%VGN@Y{M6[һ}2{_yD/|Ejb쪉]1[1O/"n\S P|d|;.3X*PMHȠCZ23޷"\G'L ]R6zh+SpI(zMC#n/&hQ#As?%%|p_m'`Nv:݁y*ErEvD*A]~:j+֗8ݏ1xlh'[;vDop== C}V靤!e `>š#hTa^)0=^VtE ˾t^?|*1h& ?$|ɯ]qh'h(YI[;6l¥AhW;޵E:hfao45!nHql J0/ S7[\ ]:i9G{-M㻄::Uf2$G^A#hvUG $wg׻70J0^_>7ŒI0GkH?y o7.&` Ef8pv{8>ԯ C^H ,ף+ CދN}邌y|gAؠPN겇#mn︛7; 9/ ɓ@Lyyhhyz .nHsQDdWd^OVG)6u}@yc)eflTH}C#ǭNwbٻ͋_@ Q@^PGc'|wecrY)}彘nG 1s)ٍN{Ms {7w=wsyĉ}q{=sm>KOc` ֧&|hEV4ّgp~/~Lgut0$f9.W|=Y^Q%B'权\'U oҠKPFQJ q#=&ʽ"zE4Q,wAp_p /"הb++NQ] QԻVÐvd%%Xw ʲT}珻 |'\[(gK 4{y v/prˎX7dC1h7Jaׂ t[SƩW20"hjo U䧽JL7>{j{GhQWs6E[\E:T6L̏5y8]!߀x7@ H/~(|X?  2 }6p|}.u6ϟCVT($&(1@^{'7+զA Y3a~r`[!ݱ~.q~v6χPh\&1nϢ݀+\@W*_+<R.?~.CN_v6kQo-R'CҰJ'I!q8OH-!o. ϧvB;|wg9n/!w9q-y c?ǻco"CX@0/YطZmv ~ I:&2&_W;΂sqpu]d`pn#u G>zK?QemY8Gƒ7Yei a=p^f]v9pq7>qokAl PY_yp~q_~pr8g{Ap^_g`Ku38/ e-6\by Zog?#L Y0>/=w_ϡc۰u&G bkSg'8nfy,yNfap8 !,tj?eo- |f a1=QÛq>sz?(fgyyX_O_߫z,Yu30߁'7b/痲_@E4w*>c8=ΙS]yZsy8W!O.3m&N9"tbT:ȍ  &50wl 2G//fa̓sxy8eu|_:!|ӡ~8 pc0/ot?a?#nilLsJ6y fB;#Y)hWip98$\98[zO"ӕC qj脒v} V8hy{v:£=5kb1#㪏#κ[)9A#UfDV#dcbI"Ort S\>]"71Vk7)ܾk.h~QU6Dٴ 7 gAwg)Aׯю |p}/b ߋ h檝 E+,r %zuG' c;,xp^y S `ލqM0[0v q(:r`A@}5|m8d)po΂sG9½,6 lz"9p7 ֯]W ? Gܰ~mZ^SK=Σ_zM5X{ c+"kWdMu__󍠟#_ڌkY=ЯA̘"+bd3B^Kҫfy1,3O@y^ ^dޮS_o%֯Ka:׼Ҡ7!ΠW"pQ Xoއ9 fݻ熳j/$^0XfN~\8:ź%>O1xGsYKS]8Ϙa dݣd< ׇ@s19@<:/3#}H|o9p2 ܟUz<གྷ,{*O` ;Я< ֯=2~IMSЯ~]}OUX2Cv~W۸S|=Qu|tz|}7RJA^4ywC>z EPa|'m ୄY /9{p_TS*a{ G~]-` COp6k29JO`.XuY7xl6ϐcyjCs#k~k;c!ȍ<ALX\?a`bk9`8ΐ/|m4 ݴT8ϜN^}O1{2h߿|} ]N7f w2` l|ϙyN5:~?3`+!|VSY{=l9v=<}BM,(-p!Z+V_1_9!Xw"zo.̗"5SȲCf;C,<|{C1__|_Tt|ϥAK wy7#fMtڍIf0iq꾴ЬFdc,9oi';"̇bjsW@5 a%/#29mtw| {ȹ+.#l!㲫D\qL>hכC8]ٓKBq hŠZVt*_ z/ K2`JHqɒ9[ -TLv#c8s {cYЎkvlۡϫHh:m @k/h$HSƠ] ITQg whjS7He;7nvþ,+<|( ]\NZHwۇxx!>y׳b 1ﭡHta4*Yuv$YM8&ꥡy6[>Y&xe\`a10H Y(_3` k2).R]"EмEo =:vη +z44B׆0Zq#C#Nr1a;{:Tc<wr 3^ߣ)XHBPog@e rꏅBlu)'9HiX׹DPyPahYDJ?k^S~rT@u@ho(c̋3z:C>\\vhzECigL#j2C72}L΃2?O;D n{) ?nahMũf[Uhͮ*'cym36eMdP{1*\Qd;Q$}mh͑=h3 Y*&59U>vxDԾr;GlY90WOq3|HoW~V/?OvGa`Nw?r\NNO$/?rz}JEj)~#G&UP=Zxd mv\>_ӫZfۼp 5ngiȷ-LzyHiglZQhţ+TFRWb\}R2^:gz/!җAq^6{G?:\4`{˿ѯib{Zh@Ӂ[)֩o|~g؞>{lw뗮d{ȹcuޓ3= ؏u8fee|lGu*_x |4e{h]b{|؞ٰv,;>S|cCF;Q.jnO.(7E4Ad7ރ0W ;|Sj|ٞ =|$=Ԑp |76=_s~~aviG\]8vw vQ=W\)|֠N[ _{)p%>𫥭-a'$q=|f|ه0"s|Q0/ |Uu0" g#̷|;P&'7 4=_s+{?l7.5xw=ߛlw͗ٞ/%؞ k9|ʫkZ9>gi&t7LJwzRX4U}cQ?.QH!~n`χx}=q*3_ !ΉO;;zo!Σ>o\@|1g6!ۃק5e7@?~q׸ǒSq_*p.pS^p>bUpOmF 7jq=駈/X鬿}>pdф;|E77|?C|tp0tXXoq߄w!d_ncF=8 ˓=tq̍az3 k7pHa('Kq\~6>쨻y_\K>}ph39}/=: xb/GPo˸G k? o\=Qzg7ѮC-BO-ٸG})½ׄƷ_Co/Wp7?7ق|=c>'n^&½g+wC-#ВseSMd(=ėxg+GG ->?Wl<˧6!g?i7"%΅-?t!FA94^HxNqr`rWOX (EsHc[O+exTNϒh=~E4¿6Y[@68l~^k ƩN5M4:lt:>.MC~138\Bv>|hFy9%m+59hd|#79>] 3*1 [[ז)6?58OMD&*,_=!0uuig1?IX[9cG/y5kŔO#NJPin!JB{I+# &oy*Dr .m_qߧ2W(/pca#g}և˂ !>_8Y?f}hC&լY]I |ޜ?H'91|N45K6C\> o&>7CVf}Ƚ0OtG=sBHW +ubwև`}ȶvo >1CB!od}(c}e /59ևw '.Xևdb}ngޞ} &YRzJև<;EЇt5Pa6wx;'Νel}QC[>cևSb}H[}9^>+1cyobCR$1|AoS;!'[/~Ψ^C=752=7]Cd}D!%{Y od}ȋ2g5Q*#}aۇ'MLo{,wJdQ9&9E)'߈=+Y-NEӔZ6wKm流8_O:WtF ]z`r TO?Kd͌"#~^ksZlg1=h=~3wgyzyɴ[A\?p(]Lxs|$<ߌ,3<+ZA:{f\ŸЎ>k}:rVe=r Os~J;V={-T<7f:/\W}/zP[׫c|&I[ܧT^="G-.*pᇿA8i &DOO<m(& \~0Pq,-5D nVdxzciGv|NUsZ&ݭÈ۟ؑ­q|uۉ%gS~1 eb.uL|VX2^, O 27Ț,(z6|wgN |KueQ6N1)GJ߭0鑋h3W/L AQ (Oe?aPU9 `jQ pvBU=Lr75nxod߄ ~}0.?ѱT~#>MZϷW`伲ɮ洫}͐coa_{i1W>c~gWPc~$j12|s_,UEW wcVeYn!d]NNI;ٱ_IM٪7sЇKlĽ9u];oIvvZyVc6)~a-]xr]Y1}b,ѥ.3`g*M(@K~rs7˨DC\V6OqKvzQH5\}*B|ħL<} 7k1nb&+*??)ΠZ]k{&j+\m-=>B{=O_q &/rghπRuܳ2Y&=]4*z5!WKm w_pyvyvU&/eyzضۄ?Y60,5z7lsYF|"_nW̏'%ytJ~O]|#}@{yCv, :)ʖ,k]2V.x.֯9m0%EZgE_,cþ":BL?`p710nY\^m~asQ}\''Y;YzN?.7m,RU9C{L2="Q q:ċΡiHwtzwc"O/g*3 ۔!1M(oufV5Gs@}P_Ԛi7_c^[f (oqg)h >~ 7jB]hx熚I62vde ҚU3 KƎ=OZCɭ"3ٽ?:"yvFpqˍ ~ܟ+?9lGdZI@4ja4 oq^2%Σ[ھ]-w?#ȷ^,1dC4! Y!9A{dU?J!f>3->rB9iK؟ ooWfsFDՕ!O{Xv6ɍ<.ܻFC>CNևÆ!a=;>$z{v;2|Fܴ\%ևM"Yq ɋX2j8ۇ<W!%Їtg}Ȑ4ܗ'\eG C9p?N.s_&>>)CRYҪzևJEBX"r2*/%M1Wb>^ ?'^U@/4r<+A?ڿTG-COItl,yYb%f}Ȁ{&!뿱>dg4[Зw9*`'$~vkGxG Jg5!r |؇\c}4!ևRg}֬9և|#ScM}܋PX鮙xO}f`U_UAhCD챴L *~B3ʇ>@ߖo`Go!"o+OY{kX#F'!_g39e%s']C.7IEC~"jQG|CT[}HES ϙ |(i+`Rv!!o,f{`x+p?n!|N'mI{tgA{ !nk ۇA|(|e>D\!eS>`W!!q_?LheK:;.e8ɰ{NhR땀J>5~}ȳZI (H>ÿC~pmM9~׮!R .7`Gٸ\m>(T>W bgW{G/G'}ۇ bk}CWeF.Q7.l ֫?[_P q%oÿۇ IlRCװ}xYrG!W)C)4? $KupQB_ӓo*5$iw=nq2z5@kuyw@Qnhӳ"yL\]Q .4F$۶3ޞ|^ȻLPC{H^oj[Gc7f+Fn\.68czf>pMÀqO9X\jTO.VZh/Y!{]zzerxMy۶G_)+soѣ%?qGz8җ'=6t$~Sd=m[CQ\ʟq^6'vc;?b́M~;K/^E&1EpwELNz<1nw&3hӫ(<]g?o3_M;|}?$"UP빗}|M'}SO ײo.{atؾGQN36U[B?s0Ytrpo?>5~ @Qx~mPh$|VWwlB>v^"? @82֗oQ(kֿ8myyW:rw|bl@?c1؇~ zҋAQe!? wn9EJGhk"PNTaQRV8-H1oMiP鴱}_QDV_{Y~5y~on-IMuQX/*ʦu|@蔂 ҡ)'~ZNaJ|m&:zE6^ .(UP/{ƳNn0n::5::~BYawGZcM|mh GPx?\ R"nI~ wwCǚ{b)q4n*av6|8۹ 7YB{f,_+w| (xC˂"Җ &@^^ z0CzOu#Y~ 6{O/Xpc2ijvG0{6 '~:ӾǃG䠾aG$,Hh9) vd|yks凤Q-V\^|wAZ@SPMqK"z~!>(0prE~.zk;̘cvU3_Ў ]U#;)b=Aa\{@/`̫7i]4r~c:lO2YCfW78iLdVъbG \vpr }#ShՑWy7-dlǑ!ꊍ1u:<%"c(Bzx5T1_gdi`o2_zÃt|0ڄ:(ED5=H: (pXC8} ӂdtMH>ҙ1eY4MDzb1_ pP;= ZvvE=Ez Hj/?}h|/G! ݘf iх.--/D;8us'PH}iZ]qoSwDZ#N> !π5g1ڀ<+7l%ί}IƽO?SǷ\ޭ&?u%k^[Xg7/9ڗ{o%#j͙.SH;(]pm%Nԫ_x_|E::hua 7M^^'_kXN/NN2s)+~M鐯7kE"7RDg9qg).宁cupT߈)1ps!䐇Ɇ컥/'T<7 rӪ9M{?c JB?Rg1AtxG}<ǂV 6Q}ӥI{oQSC,HLPI˹~r5}n ԀL"T@{SEc]z@'*<%֨]RkGV]<8gWZJ}W|A{QyIA='t^7%w:lҕ')QV9R #:ꯏ5dc# ~O 3(TB$w]w!|:d-V7omc=hͤ$?<E0u($+ys1E9QUx.XE/vN}\my]PxDwѾ2hoϿk,dhg tbڥ>dA'E&d]~gV9|p l7?>sh-焌rqqoı5X`>p;l>`\+/o!?(h` } #q/fDzr=٪;on+ w_u1eǸv)hε5)-/&m{5ߺVL8ׯ#5vjHٟ\qc_yw,g1scIlM%׳hC7bamȧ±@5`cùkI΄&DZI|&zߓ;]v@OSN~GWAvtNbVF;]PX\~4OvW\{髣wOŵ|UUr޲[*;t(ZV}4m4Kf"ߒw1%אV6sϘb?4Sz<9'P˃?OnC;_OUc}0U>Ds.h)YS74j6uzM^zon,Y//R2ɶx+ ,U+uh4Fz$71hςTEx~*{7FvɱUd\`}v{r{v0zi8Đ[]ЖozjWdsd ޤƩ|޴ah14vk~72mwh'ީL QQ e ͱ#f_H6I^#g>1*AldbAk$gT\wPBVJQv*"Yr+C"J?L[, >$l%C ^y=)6wr  q(Ym7?AV-]=p)]p>@O;(i}D:n',Eg}Hևxd>IJz Zևt[C#dCSև8Ž1[d7k_nЇ̺>d5pMy}ĥQ)a}Ho\F1|b}Ȁ/!2K9{zp(1}$w7}cY:!+>#?{tG^A"g6^7{}p&`_f}&_N&U U.Usg`=C;=w}'rs{C;և!^Cc>w >F<+^QSQ9 &0<ؗJƹuuևAƮЇ)!sX2˒a8և3ЇB!n +X󺥎_naS}H~u}ދ:~}:~}KJA񖢜zCTLן>7fx;90.(y# V#o.A<0}!̯ X1R岍&Kdw8>A n*uw d_ 'yɶN뼪Fm~떃8JRł=p+3Ma~fqNFLʳ:Z=b!-I-|G {s̯φK*Dė)}Cj_{/^|kH5삥N62A GAd]B\5v?{+lzGLJ~]{(Zwd#TSװcSa: 򋬐C~J"ókŽ"y\o @.\Ǽނ_þ(C. r7!7_AhW2^ rW(g3` ~ {v_<{^֣n[[;_/|*ztIk[=MiZ 7_73qP׿F?{>ۈa=BVd~<Ÿ_ CI!+7vBK|D13.k/xb9p~G (#¥=S9yB> (/,3' _:r(ăn`HhCn}l=>#B\7s1hg q7ȑb0CJ!=junu2kqY7]]^65ƕ'O_~ ;Ї~e|e®9b_g~u/ם; .pr`ߜ!OV񵺁_Þ7{3uރ_6| \Ƚa}`i~-CgB:ki3vցϊ_1Aש̯ksWk!~Q/xwBLq"|xӘ_Ϝd%k :g"Ї ro ~=!No-Ox NHRT2 E.I׭o|>u^[-`7!I?' Y<ʇA2A/y2G߇-+E#hԠ,pNrqnR ΤɅ| ~?jQ!a-kNK{9? ϭż OTv̯v c~}Qxzf~3(Wu_WOyXǯG.}>uzjubk:~Fy>$*.^.n~6|:~}:wG=L>ٜJ~̯O2uȆ iGI+u *_ {>{ρ(K*_9!_+#3yAn{>'!YbkA>r}* q;w/9 ~y 㽔^>ǀ=_-ЇMg~$CA4.Iz z/+ ^XGZ a~]a$s_^}*Jzi61U+[Cs{?C-?o?8\#a5T2~&>d LÅ߾5Ρ 2A^my 7%BRaI}Ў zg虅)A1|s>|_6ea~om;#~{{a\]̯'s~}=h+B\Q8So'ۍe{шЇg~} t_C/=jG̯f~}w 3i%7_GTB!oM bgMnRli|IӋ!m34S{*D,>!rvھ9K/=0ޏp.'xO֌t;=?B>l2kHodvxOދ ׉bC#8׈8+[zcNNIG?,vRe=$˒wL|>J\^ \)z{t0ޓy>{zl=%2ޓTA!zJ6{ \l{qv;oFzGf2Ӿ؟YG F3S)=.g'?8B?% qK Ʉm񽖎j+H 8b2{Z}ۆ5IF('Df>G𣘅Ma$/&p"+p =ObGџ*0ӣxO)]xOcpuxXV6̴N6U*2,WAvו!M.T4kqϬzN@=`g} Fj!pNYF<,_G|h(C|}a2Au4ò zlOĝ0z@ }./=+뮍 l+ߕ >1O#W_>v3!Ї\]}H !Q|u,B|]7>J}!NNs|U ב(uׅ'ye|}8搯{,;K |l؇%rp#?=W'^CvEAo`#j˄ZClahʿSy: ق9$,_eAFM|5Rև6ðρ0F-O~#% }HwGIq'[pk2)=!_-XNgz`eYNS>;/w׽i 'Kv4Sء:rpcqFYokZ=ff-;3t{W QF=7K![;?da7V6ߚ" nݯ/U1<蓺?#=ikEnrH1mgzx0y.껣drX3NxNqsR#̈́<5'[2~Kj̻]bsY"sE%ˑ?79Q5+VlЪVCbSCRdq]#Sd{p%\ӿI_˗ ˛~'wÊ4c#ѿnsHczuEy߇>jwqˇF]rpd_=yZr.u(D5nT,۳Oܳ|4ߥWx %5坱ޏ݅[LPc_73%ۭ&P۔9R_}gpz%R/WFN=L>ѕ5A{rZ9IG1)Ǽq`^e#1y$u]4Sc\O_3Z_OotZy_6VGS/`|ߐ 2M obxZz[t@|d@8ڱ:; ns }CI v+ӓȏC}U~Z1Q Ud4>6F/JUh] &.fkh5Ie:d>#C[eڞ^dAuxV xAcȰm_7y2Sӂ_=f^Kiݮ})ߙ汵6 Z4Q,s3G~OT{F_I}MQ7_km'z~=`7kr.T~v$i W=6kJ0Y+H_w\G {OPϯ?$ 8) U3m_w<{gqçp|?)N>x5mT~)^x_3S&z#zǷW#hs=N5&z> ׷M&~ݖ۩O[2.^@Z^<a^-,A<:>]ϯo"dfoz~?u\YB-tC<H__FQ)_Gu~āW2ֽ30Oo!M?-? 7ҩrȼ.!z~m@~Z Eә/XGZeL]=t-ҩaY1`}`킘![9Wqz:h', cZ܄ cKak@uC}F>q_{u"nSϯCW2,F$⏺9\~ dWS_#KЧ]FrO;cn+;Lջd\nͨNG<bCAwAε.*RیP<Ȉ?g١e+AjzM;vec\s'׶|=:ݪR|xے_e+紅={tqw+ouxqtP O2~5ZUsyTRn1yrmqgOwN3jm8>B;(t/B/HXKY?|Jr5:d8icĀYt̺sT_KN6-sASݧ>qQr>h7v|ːrBz>+)ۣ~!7C'ЯXǏxNvюuY8/gu!= 44CcJ(p*w).03ltL%JBA}֌뺱|E;c"xz οk>7g ?Bhobtߐ^]՝gNtvOzy?^^~@Z靿thŝwWRTș8o~|RuK']Q呷]A" Uv^.gaemIbU\mi*oȨ-Y>&CS7rd Y_{IaA-ʟ0]OdwfG0Ճ7YKed.wg Y"ݢ08u3jgxyWurY_֍7iP=gpZ]x !N }sQ'[7ϠDzQN[iw\Wr I.<~1d<3'J$>u=z*_[/DB J[Ȯkܭwa>Rh|Jz5fZ6Q<'"ڟ wߥ#SZujiOoܛg]^#.i[aa~8/\$17~v|"3t?{yE~26B?T tnZ]A? zD{P3萭?Q?^$'}H/*sPWǯ/00Uv;3_68_ۄGז@k|ou!̯j7 #ޯI̯Gg~}ؗL2]g^^a~`\3,1!?/עe/p/qߙ2] Ƛ 3,:3̯o3|[p׺yk0 пX81̯{R3c_;__F{_\:v}Uhm_LuTC<9&NqMD(< 2ee 8CK_2>W~= b~=ߓ{̯;(_!ߐa{_h{LocH ߧ9L O'Gg__(z1_~|>~-Wо"q>1^%3-hǎu{Y9Qv?߿#87Yz .h}w1~ݝD}ת̯7ʡ ;f~/:y̯A+ _yB'=dUcSݽGЦk߶6W;{T{ )}q=՞]ߦP6Yvd/Ni_?eITz9;.`Ʌ=l?4^چ"*9]!L2&Oksz2{Yh  wsissfZik\1V5 i Vx>9E(ׯqvw> p{k:nMzm> u[ユu)d{\KGᬟvaa̟BVlb]$R Jq]qARJ ^чiEGY.d`~-7mwxOu1gmswj[I Z^?+i_NsɦOTH:)M)?_i(V?d-ҕGt:oݹ壁(ϯz ~x2yWb^0hjY~ұիB)!tWf!Y՗[,ss8ӭSho >^UJs_G_y@؇9ޗy\9bc{gLNBIYO?s{0_u):=|똅"]㚈ˆ[ch/Rion?ۧ՝dž 4{<wkٖW0>h??ƳWԟ Xv>o2|c2rmv X&nyݘx.pem%8?%-әjDsz^ f3/K]W яaxFGQdYl'T'q} 8t=Ά8z:x+WiUm]ǶΙ2O-[sT,3=yA[lp(^d6wǽ-ܧ[>d>ۇ !.Uw=(Kt6ۇnalB>s h'ۇT6G{C>=o؇b؇CK>` 8y'}H{uub6>(e5b`'GO v|3؞ ^Chv"ް' Wl-C<>dq[FG߈9}ˏyMf>$+5eoK!ϱ>hIfXa|B39/.j a ֐'dvdL+lpۇf,Y ;lrm/e:?C`ЛCFa;Pw\^F };KԿў_#|k؃d샖_GAwDi؉hi C>$ ۇ8>D͕Cz.8!` vJhX64vVGۇ =YJqJ7}ۇHUaCױ}Ȭl⽞C.];؇}Cj}@؇Ap؇yN-~pl"ZkTKqD .howH/7o2tcL0?|yu_XF qxd}:sN0u崦N^xJ{~C/n5TW4.͍GzFS ҦuXٙqmsڭ ?W9h3_Jqwu糾cJ:C~Jg'N%[욘~:N|a}^<< _zP)׀N=jvȫa]`}jߞ ϭx!-r;@(Ue4y K淚 ỵEC(R<[^H*U*co t&L !BZT2:.ȰVxtB^pg4/&{SU"xܦ?zMi8<]l#׊Ln^N0籕8içvBUvU$}M~x|\g3*ʷxQ[}vx>/>M!hiyY@_ƝegP/g/Ci[|_l˸g/'eB^ /S '~* 2{!x}^=2;2[Gz0t4c5#o8/h r]`gI# u5lT2і\7eT_Pc0.]Iư̏?짠K(_9ɹu{2n"qbw%]e/ゼ_{a  z%}_E}K-@ Hcޥ;|%atԅ=/192*i Ӌ*7 2WseF_7PY GPA^{xmP08_(1SX%_*ķ~0RaA=@k˜ Ry2_Fjs? IR ?X/UoIP8%7G_Fe_66/2pjjE8eb_F SLk$Ν{}@aRylײ>gDr'(SEgv;#wh^iWv9|m)xjL[~MfM:!zdo2176݋PS+0Ky.yNS{^i),o2ZYICc6Po맡/pBKuS׺h?VU>PЛه6]*~ ֚~}J+2 nc)^V>FGMcksܭv8K'a<@^-~La81`i&l72=3]>׹s,O|<"zFf>7 s6??±+[bVL*]ع1OO;uث:fvCɠNP0WӱC+8 Қt#z]h۞^9f? %JJpN2D t,vTJ VڊS;dJt?LJη7&Ԋ9VÝкGz{xl7P*kmIst&(.f_ꑏ~I ~E<2c_I ZZ5C 3"˜䩦 v޿1lVJ&/=zA_du vn=?k5Bkˬv<_oFY~i%rgFB_?ob\KVZՋY*"_~C=1.AOn{77+` ߸{Co:y8AoQ?Yo%$CvbwΞF<;۠·^TЯ 3_'v<8W'-s67zLA <}EY-cCƯS_fSk#!87X4ld NWyD`]]l:7S~@5T11l.M=Au7:t _kfuOaAw8? Hq7b^Jfߨg*ܔƂoe#k_Ï?zGYެ^d rɅ&sSY=x{L^i$鸜 2D^ -DWLeCSl&aI^~G~0n>Sþw_kM*~(N7y~(][3{SuG/)Z呗sGd1A7t2墳3s/߲2~ XtWA:HF}s #? Ѭl;+̏V|-\?3_82&ff~*88>b,42`jEzOk+3_]wϥ]S;ՃZYt\vDԠiCLd09{?z* Wa!Ϲܨ†|ӼYox'ܞ<ׄz3H Kp ަt(¦g#(jv؜#4 97z&16}\#1uwB?\R 8Wx~EgӀ98FN?_֦ʝ#}AE_l T1$ >ib[ΐqKrs0N%{Ur?n8-x1s4[ ٕ y|1oVLwG͘n@{ mVO]ݖLoMG3.-@Oql1޷xba7s%<lRSAvT[;p;;{b6ckF7ۀ>5x6w*FNDcоt 4Ɠ@AA{G;X?{meoMt]$S/ @!zv@6lB/ޚOUnl['͂[[u5\ھPع`?i qo/'xO5ņTg ,,Wʴ xgO5r4>x.2\? zqM#%sd$h'×L:: e*z>=T׸y%=ۀ XĹ_gdCOuwX*a;KS^x?OuK?Sx_`=OPTUx e".d6'Uͺ=x~ wt 8 aSHSU6~ & *!xR9KpOC-)c.Γ ~>cZt{Nh')`_$!|sSSOU 8 Oj5TzSU8 Y.&+T+О|#x1SmxO8SMxv^x0bN`9GG~_>-=_q*О1W̯G])F|\k__/8̙=9xO20Yx~Tr;^@n>9lnYe\cm_Ox) c~Ludw̯_?~ud𯳘_zZi#~QJ7e#>8ƗzAA˜_'[0n| h^n f8co!MAK0hLn ^j{˟OOEANMh. WA:ICew(#{&e~[p]}?hG8=a>_6A)|?Su[C̯Ë_*>zx[ԨWi2Wә_d~}A 9γeZx`S=bTzؾ#ӬR*]}}j-҂,ަy?~Juxx4k%!J.S1_oCFƿ0A}5v731 uSs a2u_ kw$#.ifG#>u/񯕯!>}-Ɓx2ģ gEk6\`P{ Q yq}) ]W δIc!?F|tv_+ƿκ}zƿVOh3e~`}8B<&_cJ(GBi1p. ~C|*+b(76u3k|x`~x`OZԏw%Ȁ|Ɖ/F<\IޢQ1 pK#zňSi!#~cc/!o]8^2cEܸ2-! ⁝^W{ F2ϰkvC<\ıs"}1+_k!sėqD|M}}6_xİ?)KA|tcoL/ƿ>8R:.H< lY:c))h7ͷ[ǣb4+C,*,XM'1I9ycs {2mL+,uv;XUH }Ehgo;W=!E!ٶڨVd㴼ۖy7~WXXPڼ{%yx&r;/yKKs*#ai8wqskx_-WzKDJ~W=~|MJ0+G7 t%8+{!d!h u$Yg7Zvِa/Z(qQC뿘.s[ێݟAy`aZ35?B#W7umooqH}VY7NoT7W"f`׉YA>C.7q IG#~@1,_?z-׏b!wu,I8ۜ5' qq33X,sc_$!_K8AC\Us K_2[,|-@.y+\1۹yA^ׅ|?r^)ßm߸r6<,_B]?xR˺@^sp_&e0l!7/ԱW_9~݅x*}~@^HxRY!_;ΰ|#.c5 RėA(Eϒqť2G] BkOO.k"NMln=2O,f:a?gNqed#aߣG]_ Ԯ&Տ?km'-O>???+])/h_.Yr-]|QkL~nZ_^Lƪ!ߋttnUO]M:rT1ןTF>6:1FF %'!ݍV]<84[w1^!@|;݌?/b%GS`?e#~Pre{k0LgӚHO;#[pZvze\>;N:߽]573i}O!_R{-ql87S+HKֳ;ٖ;]-Aǯ#`=c`Fv6`Spn3s o*hWqy_x~ԟhI_3~:i*﶐Tٵ^rfn9RR/w]A[O i6Lw6ˣ9\uq7@W> Z !OP7uzBz%aN}Yq=hgg:nѫ.3ZxHv)_ 3LƞSNی^5~0%c״|C_ YH7=bm?/Us73E}ޏr,IN\Gn"/Ozy%s+#Ծuˣu;ﴽy mΛ1!$s[~&y}=AtPy+U`8ǧaGAmhf] ]Q ۛ脋M90OFm={1=1]Xz ~}\~sנ-\~1MTw2t_'Odg>9$t)i{z6 sQB';$"-^C~В?lE+m=~jW.&o'&uCYUPuS0 _ sgtE:~cgZH ?,Z7~,ǺE`|v3\ ^30 _ډK.PVЯ&+ GW?Eѳo]ļ֖\~nO6SmAzzFn؁unI+5Ǖ Hok'-j8]h. ]L;p2c)51j{t=?RN+HFyXOmlw'0=3Bkk)<'Xo -\IJIo@G'cSře8WIMidaY?U_4Zk4'q:׊ftw c?(@_Իx9|P~z'_zRr «k@o G8?o.Fyι"u@PXۋsUR_ӦB7?=yYBV *w&W㛯@;sI/ &`3E^6u.2:g##~Οy>oϒcyȼN O1H#?[MըuGkEdmۦ6=pN>}y%*0m֊G^t#BÊk<ۼmEy6jv2DRߛ=P[zsэ^&E>z_+rI[6gg{{T6M:d=uq[봾sJWIQuntJ.[?P?LL&NiQvbͦ;t7"~N{/BnAgսR/PlE^Bcf`IGjE;w֌o!z1-k'Aϭ9ʍlga|%s<=:'fe?.Eq{ﱕۡG\ 8]~+淒('!0#O;(J7y5!eqo *]LL8J 7R\F } " |/ɲ5sm18 pDwXID׏a;bi)ޠ7qyKhɊ~[o@)#43Z_wb_guk ^6CaG G4$詽0ne<ڇ~^6כB5_tau'%؇Iӑ(=JP7/ 8a)ĥza_Zu?诟I؇}H6o'=50_@?ן.CGS&]EzJ*T(wEG_pn8n_;+~`Lh{$q֦6Gm{SԒSif9\lb&!K c{*?פE_SygM 5y')xv9!dӢۗSt|'=O5jN+O)`?=?8>l̓^A\?=džxy&fdtqq?ԛטOk7{\|F~zb="Lx)tw(44Bd*X!d[K?mM3jd纑ED] g չ|ù g Xz55!@+;a_P~KM8ւsoI,/gA)nxuqmvW8g&3Um r/E_}3yPĂ9_7.&w<>= {0Ә/ºX<.d 8?\Aq~%^Z)ԮxnxοZCznMn&N'(mpIͮH4*>9*Vb$m@uz\ĹLGva||ꐗIKVoΗH(pg[CR->cj<t,M(ΫԎ(:~8{b)9V9YEazoy@i>vH]lbiGsQEMD^nw6OtT E>}':e$2_tnf2mTgкǸ/ֽw}0n]9? ֱsf\ugG1owv9*N'[ ?<_F<ߙK *~[UW;6ُ?yF<7 -2!;H:Y-N)~T Enk 2YC~?7L jYGsըGu8wj 8-nr|"ez 395v1B. `9Oo+{1glbt{&ֻ? 0^Kr ɻhO 2Zoq;H;.[4VZ}Ohs"MT+S)lʓmX£fSl_GZ彑D|2TQ.%7O]zJ7^8LO6Aҟ&PT|quN}':2Ӧb&. eC8mDreCϸuC:?4 A;@[υbݢMދvΑe=]bW@91={Nt!#o?ȿOGMscqQs=wy{daEEo6<spӐ? +4$=z4|cdtܹtST~NRͨܬahkVfN&{dܿ *-rM"ȢU2QΈ> ꧑ϖ3N~SD?;%KQ¾uf nrei %4o;S!rUS}orM{U8lSЏ4$XW/ ~G+og(uo|u[wo݆ch )s ~Zؿ1D?l+)39oTiǗg4q}/W7^xZo_7f71_/ %{߽LXG?ts?_Y ^9]whdcZosX 7{ 8@ X}=ckgUCx~~n 3' ٿ4o|/taVG zJ17p?xecb}]?ź_$ע|1<A;Kw*y #D;?n($ؿqs2{ΡÿQ1sS |?VtuRѱ.$zlՋo܂?znx9G'Cee0{1S-fo7a *gJ?):|{)oΉr*;(IO{D$`mvGLT3usNvVu#aGLx3*VInUFۖkpB760`*u*.d,kdx~jK7bxQnii4=;b&}Niu]Z=IZ\qy[Zj~ TXP˶98?'9 }>P슛~ZҴ't^:Fw&lk >`|)"?ÃLCc7|;-$y 9x{8%nuSrr̸|}'s8)X?+syɳ]^82ڞqNq{:w|Ѝ>4|X\h&.Z1j :u{ bW&?sXu=\~)Əoăv3 9}]}]4ugB/K~;l2Ď9w8Ea-Eee_]Ci$G%__G_ KsbyGvГ8/{G8>O惚*ngO2lw}͙a\_vE{Ez*G.<>W%?p݂&]8kۑ.!*6yۧ^n>vx_97c^/D99ܟ\)hfy:9Νl̘9pT{Xݎd}KQ>Oq2ټʌ Y^E=E^irJ'725Bdc&8EMI򷙠[짼寇Bu4LɶKK\l~/%k51uuşvhɺU:i]4εϽH;e6s_v6Xz.險>T p/Ϧ`SIߖ)r{,~Ъd,갭wH+iO?r~IƵ~#@1M+~rY{eҐp(p1P6ӸVw\q;6$v#EL'_1׉.o<\Ӄ*Xt>=>YT}H':Owe1-y_ r)bF.ku)H6m&Hoy,IֽO9t~)żTqf=Zy>9urryۅq<ݛ6#=omGddwh^u.ڶ@/_&I!z3qd~($O1Nق~+2wsE0ܺ|^頲aɲ޳E"=X~*fkdE^\w_JRΉv8l^'l>V2-EJ vwoGkώo8P~:?k"8O%20Hݱ)ǔ w 8>-|&v884r/GaK׸?~Rx\e*)rG ?t${JJ_#AZȮxZe4jO]C}sҧiaۘiOS>(m-M03B5U|J01-a\8K%%bK;hktCqql|p-3ұ:ðGXGho@h; ;|3vЪz 'i<7]h&η/]AI WK+v|:x y:`c"O|.zU)7֊{~}]탯<`>@o)T&p -B;=c;7V~5 *_&Ӧ>$Z6lis9p-x/޿dlhZ5yʭL2Pv.z"'OwhNsf|hdZlЌCrmYoϷi&5ufpQE㏩{34Q]fb6ӂ]BO]~Lf{sl7,dh5p`"-ϐٞ/4c{؞|$K_f|緢=HTv9 jddY{>JZ 9/`7e{E؞O+F; *=^jc.ֿMd{>O3 P1OeBqk'!lo {G-_Z:؏J`=p#y^:0|awݰ =s0N厄=2;x^ 'hv{G󥼃?z={;Wc{fX,}H 2U+ONQ6cס7:nĿgbn$ț~|{q`{lϷ'Շ=_=97\WɎo 750=H=`|Q3g{{:~S=M=}a{K=y>"Û^v6=6e/{Xj#꧞9c¯ϯԦkٜB'߾+NW;}~V/ u, &F;Ǘm5}*^8|{G>_p5Ѷ?u~ƍ 6XG 2L5۬\ L&7gg ہLŴ8qΑnf؎]yHd[+M+Ӥu!m0 s WؾWNt;89ɚ.AhܡNݢ~v{qOdZx)݆0KdyB.G$ڟ C0 !J?'֓Iw?\~ ; sd0>t5XMa{}G@;IgW){}=ߜ79! ij|n']y~7T^ӝK_׽*kb&>&NG^gV)xru 4\6х,Rm|O嗼M&_vtۗccF-z?ʔUOkW!z2}nz>nq:e:I+vGFz`M5Jsֿ0#YD:z߇YuyZhӁQu3uѥ} & K/u,NzeE$🿓N9es q^I~[>:~GW+[ ѦۺC].Y@qbE)Ǣ-~nsO!6sܓF6ܹ=jRGSN3|ӾdaAasv>:Jg.|Y7Gz.Eks-ڽL~MJߏ@QiA߶CY9Pe7mV/.hOq~RXwAȃPOx/t\+NŸp.a'f#6'Wx4DSӰ.H}|Wu&g%}@^Ըy=ާ :JW?+d^]O{©>t} %=#b~_{s81 /O'vym8.;%}ot:O绶ʨ #{Z:R/ ]K 4H(UkIJǗyo;^$JǙ9,SΟ G _w.DSc=LyWE݃l)a$8QxfC\D&k'2XӢqsl%鲷OTEHyT/Z:~i?3v˲7PT%6GҎAGrit"O~SksvLi|y}lDxV!;`s:j|XSHOڑ|gȧrȩa/3ss߆­q|<•.Y`Wmҷ&+Yyխ6=$ˎ|cy1A qUN" l #&S㓛'W;}GG~)M<O[.q;QVˣ.rܭڄq0\wq:F1.K)"\-~@$7{ĵ{KX?Ʊ<=,٧R;e`+{RQ67Nx 1i!VÁا_|6)miGW(|eq.yޞS.@׶ەslr幄NW"ou mgM8K8Gz7g Tz<{8`/ @11Lq..~7KkNnxk o@)h!Aגm{P hΑ鴪_Q42%Ti}Ha=tԗo>Mn[oz&G_ӌE[:tq-8YӾ^|TCg> H-7W{.koeܲaⳡx)? :rsҀ3)lAtdY{N,Ἱ w[z&#팬ɚ/¾%٦5Mٓ~Q*hgBUմ}%s]+WopqrG<0N.C<0!N_ǜDqc:6ucl]{L$B<4_'!O'Sޭ9w _G X%@l]+GkdFlz0B\cOo=sY$쩏_?v o7_jy^㰿@Pvqв`Rb)n\/ #=&ʣٟyWij"5C9H6W^W62Vj۶MQmF&mrնsoM?5}5,b?ajxG<0cWkhG8H£EyѿO|w}_$ėZumbu すџNėu75djB]ѿ.M|}_|Kx_jC<}QǭN8&r'Mןbw ^txݰKX^KLagF=,/;^w^ _e%X}z(B҃)oO-9Y1PN2;u؉3WD:Cqz6x݋}Fvmd8f]zX9s=6q)v%Ƈo<+xYM۰Iyd'kϪ䇐N^']:~|OÈI\X]2&.vY&;8gl C൶8,1h49G@AY$xm\(x>u@;)xq(C0cdqǵ=1| +FKS}N]TOzմ5K븛憎6V ^$x}SLڑ\~䋝Ar#"cs꺭\Z6!y]j.3qvYv֯2C=ƅz9\+NКEjʝYFǝ[9M M{~{ LѦ1fRjbʕͣj4/jվ.>B5Gd]OyQ]N}#.'ϵ$nP@5iy |R#u7碞cjy>?gՄ$6jKU"e .E?{f]! ~:̞ON%-IVʙVL&&nHu~g_WR{VhmC5Æs;oW9vlTsX+yS-jΞ[yˉϳky(Fː@>%sȼʷ?lOx3y+JU^5Gujf/>TǷSV!n@o컬owjn<*R-T_e 'Hyý|TQ'?ԌmCA-݂Mo<=m}Rn\i7Aw;=~[%=~cLAI{eKsAo=:k:}}GsZ}2%糰3m LJ˴}'/sC17Gϣ#Z ϗ}>/<7}dg}%D$ϧEO?ˠgdǑQǿ.~qV!}X7F./>_)ϗd盟z#oϬ7j=%?hW81 :>ʶOyO$sʔhO ͘SB\CCYG}N}?GF>2>N%A/z{aN=_&WzX/~Gd$I:Aybgϝ irgd_?F?߾;' >g?BoU% ~bC} }>Cߊ>߲o?i|9uHH8qb>Y'_?BPG&Cϗ׉/}>sd>߹[+|Gc2!מu!ݟj'5 ~mUP66W|k/2[{%-e)*;^8{&.?>/xL<0Ex^wԃn;zib_UN[&~1W^ -QG̚یt|~dxSxn^)_xxCQ MI= 5y} ^6rxՂOWpk x]xzZ#xxFBº7Z7Z U iGi?T '{>sw2vpiIּo+ [ct\՞jqwzF+3."x}؀?Ppzn_H|t1^ Z1c咖ax"Ғme ^`b۷$WuȻ#b\susY_pHo[砝Y㲛i'a? :t᭫]_wr v/ 2Kp<$xEco,Vk.g_o툝Ik-^?kP~zS~6ᩳ?kJD_W,u4_Y }FE61z^>!%]¸ܡ+>FR}tg_!߈3_{9׿\"ב])'=u{SN3_Ϥ8_'nZdD|}F׻6Z|}xC_f9|/#~08-f Z|ׯG|z4ei2IR25Q&>7Y\*v"_>pX_S ky3!ė)]9Z_#g7~"y6oz.!oc9ttџv`uIouO?>$d6ׇ"wF$r7D0噴^&CZCm!uG|mL;#_JV_{ُ?'x48X&ou ~"ai _GΆ|=zϭ(jI!C4}p KxėHjC>1̆ף9oC>k=}\^4?;cۦmxPlx}fĝk˜;9o"x]ڴ)K g~M,>D%ɲYʼn 2S_\#W綸^/ xx>ux=Ç,~q˘chE4go/*ÇlًS7]xz#3?bk90!{~/6rވ?+z 7qިoNҮTK^|>DS BIe, O_siO}I[o}h/&sґsv:IzH9kh?"e|4db-C2[Cj3ϣw׾&!ϗov;=4fx|Ftnu)x}>d2Ӟnyc"s"7yӮңŚvx {ީtnP'd ϷZG:S pcyg,M {]Q̃s'CJCʡL/C2 _&_뭜78D#_/`mĺs:zq{z57ƒ4ᣍ~߉y??܇Gz6w(YuvY#H ^w:<#x_uR EFԸB: ~ĠR=hSUpSiE?D﷼gƬة"CSNƇ8̌'|djnm/GZo=0~߱ y׿%{wwf kih!Z_}y> a}OƟx c32N/.}ℸgc4OߑW)\ .xn|]8'yh==ɬkϊלCc nuO'.yiR}:x}<֠S9庭֔K% Z6}לA^6~;ֵ˽ ܩqvmW,]5^_68%fA1K׫S =׽vW1y $uI_(hz1^\8' zB5C{ோs}V q O]ך7|$u__V([NcSp- m.z'ku =/|xن,BOlY~PxP O ]s௷zXoLe~_>mE7+6~(-K>=eqɦVNX_w =:^tI''WW.uG:Ʃ?ygsc=C W<7d&G]B ZhBԳfv;`5z/_#AYG^:Tp|4_ y6ҟI_ov',:1f{zD[d'_vk|v{>v듥C{#OTp{Zzv:ɗ%Wvzip􊍍)> k[;sϪ>7ǢϷ >Q}޿@UZOj}O;C'2OuAIЮ{z-΅| /jZ=-xIϧs~B#& YyO:Q߷9v&ی}C_D 6 3>$Z??>ZM_b~P?j~_d_nG4s:FaB|}XU#_aj}!PZv#oWox?UͷdXG]!"_|2z;5fG1=᯽ቍS!,AliTt]- ,?:̨)hB['ZcM.zUE+EV5sW{K>ukUm]L*c=wb=}OM 8á ܨUMKu'j_ԠI-,WMmwUi8fg۾fՁ^TC_?>bw|[xOTϽkN<F|I=j7j={ muC&D|Ue׽OK&_xv|rҜ6Zmu_ӟe Gץά|9s)yy, oȀ\k>eD~ZMMDjnF}t iCG`~{#7@ZۉW9ƚ :]Ps5&?_|zu.o,#|ݙ"_Qzfp"̐ؕ͂>7@΂|L^{_sc4~[3yΉћu=R#D0,'@?Ҍq:vPBՀo u_'׿DN^ 5ȏR^ _v%h}#5&\a#/aa)n3WO8ohs̊}[g|n;}'9gY}cMk&'#uJo?S~v&me#_D^|׷֊|G|ߦ3|=o_XNm~H;oiMu\mxq lx}6^ܰ`\6=yc}ۣ{9n/s2j453O#C ^ϵ]~Ls^yTz43q od"̩'D`ӃWIF ZÇϗa ¾33j`fp_i,: a8n.x/x<>$53xJy?H|{#Ict|cė1qΓ}>X>!F.=G nCNo4f߼툵~Eszٷ4wҟI3/yEBÇ x62mC煀)>>~X1! ~X=ݢߛ>T!aΞyw]C9Cbrt37\@z)2+JM:nEz[ǩF?ɬ p#7x|z!!k#/g߃OC|>D=#5ue>6~MJ_^:wݾqW\^>{NUmt6>~j|e}W/;YC絝S3oNh߸ uWأ௉eWxI/9߿8~Ƹ^հZ?k~ KkF_#xݴ D콌:.~N9w^^OC>L95w ^{?xS31CyWmG9kmw|~y>x}Ik\ ?ǿ?Y٨/8`s֯fB86wZ;%N @^Nw ^'Fìa'X>a%c?j:9֧6l~8/G虄kFNi)7-ihq&5&p}n wKrמSg)27bo~/s ^sިo~{LeNaxy1VB[סO~b/Cw N wkdρ /w㳁oVxZ_;0a=P繤أC~+x,-x >-x=>d8u$}Jxro75*'m쩵Wϸ81%53\%3jLn[zY5aKߖrTS=Je.R$͗_\)lUyaZXk+3x~jcʺMȜsO^(wjw҄УzSxǗ,n*S<x<e]z:!u,_n% ڗ|,o]Bo^gfVlZrpFO,`]_Ӫc|2"JҘLj\k\*תnNA}i}G~ߐVg*ӏ\?KڝuCyGn"_Igs:@͆SnCrgv#-LzH{j%ҩG⩚\ASoCՄCfVyU=->a)^/g#H?e ?Ua+$mE nL\tgMj`ŏ۩&u~VJ>c (3zjgyJ9Cg\^jS]OPԧzYjԊ8ݡ&_n,HI淳vڭV=Ps*n}oYFǃ+T˩V/r;UM-^v/ͺ099siXz]vU,FG'"I\zIwLRs_Ho5'yNU#:ɺV߶n|[_8/jr֧ܷJ.U}j\y/ܿCuO8j'H\?(&5ңK*Gx5&k]IdyWQo&-i %?(;/xx5ܞ6+Kou~S.,&ͺNM~Y(Hz }zjC>y&P$~_,qormsjb1[rLr%5 VF?`B5e%c_~[25~4[S<Դyy?t~Fuk;ș힐wă{eYjsC^/ul5W>Q7 p8*ǚjQ) 6pVo BK~tVMWuLjJ2dOl?D?@^ˤsm{>'K!+(G܎')6(PeumM[+jq|uc;[6-?%n^?_PgUa>o˕Tv9HT{}2חiWv,d\ZW<7XzZ|T5"_W n7?{}ь/5䟉 Q-u[j\ڥ}+1o<ısL#b>J'N@x=+"?9o?ɳCG\Ni>PYլ-jRZT=UwZ57=G'ؙ|ptzl;6}%B;\_J>vf:H?2mWϫMN[n}>)WP=1}*DN)ۖ()ş>_.ќtmeL+ZgeS [=fz񎷄&>^Q5z TK.ÎcHx~1^txZrqԗIMzi~cfS5)lk CG#.q8viպy-j1K}Q25 NYH;6zoIJ, }V>{Shzk&~|/6sO~/ ñW"S͛'AjڨmF/AO0Kz*7v?8Rڷ$J- (SMU{r7ZsrfI&ٻ.M*7m ě(>r!r*gzmI|k)qiX51eB+5Jz}0%:uVʫ夬PnR5sʹeuKjlw}*v#mj"=c$m״62 P_a /1%I/(HulGx̽; N>U7io Ϊ7k_ʹ{]Eu.ag>&i;xמ'V3;g͜m@}o_|{߀uyl =3dž[Z/ꌙ=q3]a~r#pFy~95:Zŝsvs%I$MzTۯzq%j&5*7 <uΎwFS%j gwu<|K{Zҳ3%*''5*UI{~Z7xTz,. 1}W*K*_kuKjZatSHq~>}I8MsRݖbtΑW֖VShbڜmыu+KZkWN7g2DO0.9߹Z ċa?KVȅմ3mY7jQ,j̿o.Q{[ɽVojcIys*dm$N\]vm5l}.PZ{ԅeX' |=Hws^ڕb)igzV爫][|A[i*{4/(fPxʼbOԙ^7z Sw,ijGͥɣIY/{zBw'Yɷyw Ÿ4~(?כ9/1Bt#ג~Q/y5EI>8׻k |]NԾ7θD9m7 )]?ntBu6:#Wdw^ҟ*c=r~o-Jpcun,T 7*::2‹IF@K{3?P%?Wm=v[7K0_(fV ˠ#o Rռ]]x>Fm ~ZIn7#6o~mpU;]\RfpٻJH~f_d>F>wR -N^ɕ~&y\kdH~^ ~ x^o>7ӏ딟9joZ8!jApc^:Kڑ''M{fpQg"+ nɪ8Lj~&;䪛z^S.!vU]ovڽng-WFܸj_x-܂:\r:KU9~1շ=|[mjkҞv >U^FLs::"6絟ž 7s[eyzqu5_߄Yj[֗GntR;qo$X>4Uq%KMR>_fӺ56\hom5ZẖejZ%Iyy~~=K6(﨤wԄrM<\oߜ5x4ύPSQcIfzR@we=)BVi#L{S>[cGv~Iy u@ӌO//b_1jjWBc4dPuO{SzA_LY+<ѵأwIUCVT5LCD[DyhWn^~~E)5RV(Q{ƣ5]+N{|}:tݦ鴫^.xxu])'։-}x!"[RЏ>9G*ؕ{4/xꦨbzRɟ._j~: W5^_[פx.@Aߑr}G]HH9~"Ǽga%]Z/O ڡ/EC:vg'[]8ptۑRʧqy]F9ʼw%T[+P~ޯNՎ7>qIoeҡai㫾)2;= ?|FeNg_~6ճGajժ2fV\>v d=;ӫ;kkKTzVB8_4pDi;9kgCƯ%xF6>됯$:1ץ.:(ic ]ouڵIy"_Gv"_̂|]_zsxGt~,rq"_*"Wh!4@N$4,uEN[1"/ho)gCJ"_)"ވ|#_e< |kVtkhIƱ(Qn=W%}-7E~,p(Ԉ[ESx$Ӌn۽#"_ D>|ݚ;Bw+IHבȋt5rsH&m+Yz}'-GeARΑw#g|ORCg$;|X#^M~}Bs~o^&]ܟ9pY5E:CEPW D~r:Iu|zfo_: |YxkCtQcxPǁ׽V>$ോ‡.}=>Hx'x]q߰[9O̗C\i ^A0x}}c!UeFO]xns%=O^ĩG%< ^[C&юף ^uE!y뇱^^ ^)~L#8Y; -9r  "xx~ ^$xmv?L8]Gj_<~*ϣߣqpy$3:GeU;h;GNIƑ~ھ/I}Sh)8@>*<)M~#9y)wC2:S~hyڂ'?nc?EL}-?~?xYpVok!׃up^ovCU.5W^[M~X̑Lnu;SFfWq L|[׍anW]F ؤwG\~[B۪j1/5sєW,TCLѣk|^~ \ϭ&:4V7ֶ߫ݢkդ 9L mZU6MȓTw-j~!̗v7}MGV$UC{yG=먿޶kCsW3׵H_|IsQ-s\OztՁ)};@6)WM-󗨉%kQƆUy~7vH(ϙ n>>}쵪!5Rsvyuя/zU!_o|A:q%!_!_/\DD6!_oX#UnaȫY| |#; aqz ;E. ypgQ.#bqވ=M$||]:_]i|]z _O>$ RuWynk /:FwE^#*"_7yc};8oSk7a1B7!_7!"_hzFӢh^犑#H7"?X=(sĨ3Ϲ_ϐ#|#WΜ7^yz-#_$c۽u|G}. s]O|u2.'}^k|Jyw$nQ뢺8ORNF`HWÇ9J'&@ӄ|"‡D!_DJ9D~^>\ 0W}} G9~O?O GA'^2#Qׇ9oqbN"|dV[2|@kw>G/R&Nں{Xڗ&{[~JRjv,v-|Bm/›T=fT-r?r_;񃐢 \{zg,ɵ3O=io%}CD4CTwG9eAiZMUuj|l81twVZ}=_{m!QВCPm>Wq~y^#S*fr=pP=O>oC5k.ս!xhS5>~UMl*hOO(%KRb}JsQLf~J")vѥع>*ӏډ^޳wqEnz[Ytr;&_c0O[}Twx(i})' ӑna|&$zO_%~%-sI)Zu/y 55v#,i5*`klx,u۔z ʐ5J^Wu~#I+;_5^z|bO{͸n\\M1L9i5Où;LSS2US졏5Ѿ*˪S&PcbI[M=S(=qڬ԰/.+eƏiϬz{"̪E(zjAlj=fO=S1?1é{鉿\u{¿[S?#q.µ_'Grc9}˄ksy:LZK==U3x;Nx# /h=[?5߸ Of8'%t,fO||~v67=/F[wqHSh?o0v~حauSWtsB!#d?~&ٛ0.pAVH<6gz70ʓl1 _s:HW#~f,ۊ;q0-3?diy5]8k}=M=Sڃt*M~Ä1J;6Sc=S==?Ht{*_2?Z+v'n*:ޠN.u헶 {ܨuކGRUkk=Gすum!vOLufϗm|Ê$(xjŃTU?JSB"] ^߂_3CnL̗%ϸ5_.+(^2wq ow`]i?Y:Aֽ^y ~$^2~;{Sw_^o^^1ij-\?O>|E|/Gf.şjaz&U⊙~Cάyx_|||{!ZBI^uGk^hCR'+YS48qܙi(e~kná$J|sr⟯-}qqy>﷤|G?Fj[rη5 SM7;/B-UǗ;qOFy)m~C|+n ^?~GLxmMZ%>ZAK[rݻ`yAnzuwLD|LК[I_Omqu3Dc~uq9jQeFq_!?Ǻ!iX5Qz5Vj_TxZ-|~~-$;^=^]uuM{N [{uF5ŽKOMr^?u0;^OAvn^ Y}kIL sjώs)^uHͲu\)8wrv 5֎ͩ7HR̟n?NuusC"ߝy5'W6~n%)\L?y#O-:~hj nmߏqv>SMut|ZMX5܎gjv|GuIoYWA:4~M-zמUK;9rܶ׾t.6_ xi~GG#_AG׏=D6Tg#_φaPy^b`$y Wooi foG^%\^R>;ru]S+x4|H3u^G-']q $BF5#_Co) ‡ڼ|[ka^j O2aw#`a`I-x`qF8kaއ3!_gO|,g΃\6GZ65cQC}vYJE6&s=ɸ ̃E]~iyx !Z <[_)k~$i'(0qqkCh1k3u}8: <o2r:"#q*,OҼOlH=FSGC+"__&Dd!:꿆|)5Z}n)k~c$: cϨ!,}C f~M;,zI|P)xx`~ˀ:> ۬|gF#x>F⃛/NRzx~%X~o}U tsMۃ׍ᯛ kr9hǺp ` ^/C(%kI rxWvLTo_\1?'Gh$Vyg{ė=:`o" ZSU^k=~\^c'y>&/aB~ޚi2఩(1n[WE󼖬G)p9q.925;dii y ^oך^oJCa5+q(Lx-Lຉ8qGد]rnuuVx rോK?|q: e?6xݮ63G MÆׇ}vm덽3rUh3^%{/[UΌ|Z~ۘp\mO/&~87N9C¸= Ӳ1Cs*N\xz!jbܴ7l $'x]~ONf;:eyK'@Bsy^oQu8oL^ҔNyH |=8>g@Z|PƑO*\8ϵ > w8aդq1#π5\ 5WȍOOsyܔ\c_Mp'k)7\ny3΢=noq xN"eAO琯}7o~ΛB-unൎO!U(u&kxxV x]A\7kVEߘN^'?6:XVu+S^oR. 6 t-Yӎ׉WKf/%xmygq"v z!x VyDŨ+ < ^W&܇^JXZ'xmE? 쯚~Gi"xݛX S .|MgףG0n|_AxWɕx` N#*xx'w]?uN2^3xoɸ\JN3oBWgfܪ^B{ 'ܬa7TdƳ/7ie>B !w.CU5v7F?\X>r+Z۵^Q1hD-XƓw<7~o7<: !A{Fǰ;.?x'3xh|9xaʸS!x^  /w:dz֝֩Mn~sC"Rx ^WFnCԂWק ^|LF7 _/>3#!Z,^/b :h(׽ &3m;,f J:6j>͜X?sθsð{8o\yc\sިd'=yG9o>Gp~g8瞐oǹdky^)>ς4u#Xǹ)8ofqc:<<&_7yy7FyA'FC`j}B?q3c?|6قƎ\q/6$ n$q獅?rިycao ?1(7^K&獻X9o(hs[DAc\+⯿9n=SENիla[Z-9Sî+/f_j~de_?|^8ٯYTXuyrq&qwHnOrjBZk+NmuT_e{#o'ۡ܎Sk0O˞^sSj|{])T@Ӱ^6;pU|jѪw >5l|]`̱GTrNު.ogjw[jXs5Uz>Scղ#T=؎Ys-?N.5mוYmq\:yfz5J5frnV=0%׫p?(Kzv5Vc5رwڽF}Tծʠ72Kfgjz- ]zN6g{Zաљm|jTe 2ŔjS.u{yY}zrCʩmw{*iq?~ N+ŒN\ȿՁz|?r3H|m}LcD'n.- ƳbGhtإ̦-o~^zY+ϝq=ɹns~-/eS(Gz|GƩ׷|{RRbw<3v$sW۫ 9XjrVe?jSmUϏC[ZXWW}(ןT7MHџh5ѱ&HzRRI9F5hR63Ԗ~_mzf~}b7H꿵QxΟTϽkN<F|I=jڸ$7Rz$1kɠ|'VjhCk?o~HI Z_s!]곯ƨkJyq8o :| 5iHx;xC91$~LM<Ⱦt*_@< ‡   v_^NcQA}ᯓvf: >jM+|1uk#_䃿4) ߁]Qm;Z;r^6,9>qx|:>NڊQc$>D@$$|ƯYK!ÇT]'k1(Ặrby<' v7ތ#e9k=ix u{r{jyٔ.ɫyck-> sn_{9 8~yUGnI~B@/1fʳ7ZÇ\).ה>$ uzJ!CX:!CjΎك ua7܆ی'YlxyN%6|]oχgry ~rZϡwћ6 ^$xXD 蓘fށ%x eṌ/^z8dH'e4OzFY.x\ Xล5x}2e_}I7^GWqz R^|ћt;W&|طv<>|яQ7b/üY\~-z~9baHcm ~X=cfj ^]I?3^v7l^!ZRhp~][k蹚G2C-?l@ڠk؇X :q[\, {,Vf4/N[X7Z(e?>uͶQ} F^ệAwL?k /6榡٩uO*tSrד~  =-C N& ]F盄N]/[7 Az#vPɵEzÚ7?=XO᯵^Bkm0OFS1FmuC_ՁBN P`ᯟ}ec  3S9nykc%<SB 6_KCh#yi 3Ml/C?ne__Lrg.i4|ᯯ.zG  y Kvr 'h _pn w[Jmx}euxͽWO^?hM ^v|A^c/9x=Uzo+zدsv^R:V7g>.xfo ^gquyBX)5n5ľO0<S4MNquOϰKb'# 2U77¾KqzuL<wx q7-x}t빹_+Wg)pufbJW^Rm~xFZWӘnF?%C<4{3nxۤ86} ?,ב7xV]BN5 X>zG+*p[_.OruZ9e1} ͸ ;fICpxF vGZ^i&!T?6 l'S7>9o%x ^W>O"Z͗3 ^ x}ׇi9JQs?uV]0.o u|u_;2ݥAwɿT׺Ǹw!Jf׿.7}_! aڏC|H*!쏴Hz !)C ˜7brAۡ܁ľF'Y2>cݱo53<1Ҏ7.e}|D9C F?M3\7jD!هr~~2|H'λc1%>_Cz__AF񙶲?/&ɕn_kM!H'#EdmCf.2c%|2'IÇ,Fz"ھ$<<^2#!YSpyuB~;hK))g5x9d$чh-]YY.MȓMh/cJۅ ݆D$(Od(ui( /콳a2ܘr>$_׉)=9$|ȹT!7CE3|=zII~xmSMz yvz45);*bvZ+xdɸ%^gCc/<,'>ȼkǰG/ ^q97 +xu75أ'g]{Yz ^/z^/2kb4>^/ n,@src.x]u-pJZ'Yo(O5ћ2noY=z+?;딜7?6U9kmzCx 2qkeXf ѻ[ڮvp`GEAφ ^ςn5#K:%~7~M͓y/3^g0nSYW9Dy& ^'Bo"~] 95"544 ÿϝuCQq%AZ]uҹNvcj)a?Ru0OZgjD$ (xB;N=8kN*@?3g~GvVWډ?9x ^/8{rވ93xﵨÃ"7ieƀYkh_7$x^S^!}Z6kSz~`Cْ._{^/ކ]|{:)_O6>x6zpH;``d?k-_@Ə{' o6=盄>_e1o.ޤ3oh=1QIkË6}>|i4ck-u.hy#ߵz_D>}[k|]<_>59u1)^A5_oKSEW4vD?"UЯ 2^sa'-j?QZ>l c}3i0}6Cؽk*^oǁ׽HQ=q\K#_k=m/Zmx_r^i߸ع[^;xi\_1h^O n-OȹڿֻEiG!_#Wk7֡^YtmW7=%^ccuc<|k:ZgnSe1:{t: 7mhc [ 9Qǃƞ)ycyW$=hIw?֣+/fK,|d4Aef^,"9uz)2Lb/c'2Ƃx8ľa48^fޯ: ȼ`/S򒈽b/\[拽3moYeꮤ/d^\%?ģ0}ˍmb/t82ɍL rP*2sJH9דLxMw{+9WzI?Lhb/!)v _>*b/~9{b/yDeҢ?z\K.2Lb/r$ w%4`&UrF22/єS`!2݉uHe2̇ b/7+{ıI|Ć\{}GS\]93h^櫗i [̦?De'5?YQ/~⟒fc "x5^F%N7{ ^Ye{^<(ΟLsb/c)'2]v]^&l$c$[o ^x<(0K[{yZmv]\4]p]Y@SWh2sYםszW=mZbakj]`;^{k'iIq.Uͷna봟(;^}/66S~=(瘚bk׭ԓU';^O:ƽ}kk}(m땍h}c(OjG;^7L}5Ď:~vv[%\R/o\Itે`%g";^/&9zao\;^{s`ʛZmIҮ|i_k[5e}ɯX&5ҎMEjckTG;^k?oV:u*/NՎ=v~qBr9οaRN"=z:z9+/^vn'Sxpī͞"t&W'7/i>\/HzMIPOqk}@”Ma{>L~))x>?/?Jڏ'uR=Jmu35ŽU+o^G_Mui(i^+R:M[YN8;{_W3&I뜡"__|5أ7}~qcDw#E#!r.Yث!v2KE9Z]qZ\=?x|TIE"؝G|].H}7Xi&Գq=o؉7r| ;G*\ nhE>I}E,wQb>rV|5?/u*أ7c?إǰo 2n_:y'i9;ܨYsG|{"_*u >ق|]Zq"_w&PDkYv޳am͎:ֆ?Rlk$_u߭eC2ut }ŚW[φ5P }9ƧS>d3|H-k KS~%xۿ}u]5t /2}ױ1SWXMCb ^"x]c ~4y{_-[_o^rOzYYp^d)x<^'^ŃvE,1qyX> T_(x}-x=*x]uT^4|ǯw ^_q-x)7yey%'o^sn#>ĉK§h9k}-r ^{ ^|$xJp82iIÇg$uJp%|C?#J^ۉ_QKXA{<{!Sn.w;r[;ඖ9/ռ$vN~{;xc=C‡A"xm^oDN,xs|H.$xmMTuI}G?뫂בlDG>yoCBk?f^Ty,q&O$iƺ^Xt\Wܒy|Q i1C>Ç>du">!6‡,|HxCm9RC*!|`ԨL=Z5‡>$897%|K=L>|a*C RО~Is})2턿_‡aQҫ‡Lo>daxpCA‡C_{/8>c;E|‡}*|HNd! [[[Y C.)|H$C>^"f̈́|V也ҏ:|q< _bXΒGzLxd=O_@/n0ib‡xy R!O^ 3!;#‡X^7-GOk^0g|9CƛyNM3nF!TBҾ‡t>D!%{$|H‡\)|H.‡jIz-fX:]okӾふMn]zyѻzkYV^&|!rܝXijZ΢r+_obBPe2+E? !4Xe6LJCM/ fP{KXy|x?|:!MoW7onµ$ ϐuُzCRjD?M>@?)?ˁ~M;~j>c !ќbs|F?%!:~jNC^oׂ~ϑ 7D?Dۇk8/89yq~p 1qW$k,@?J~C#z qwE?$WC?}}E:ڏ_mS qb h=ߠNYaqo4?0n O3 !.y0ݻѿn>:2?@?-"=i}oEvNf%Ceq*Xt\9,QCN_&#!W9u&Cos?'BOG?2]͠qOu}' 6>|(ݡv{OzU2aow֙~g%)}>&S7>_2iրׅX' >߯= _;:_.>_izkiu/w |ukmW~!dӒyLK~:|x}}qtVunD"f=U_^f_•|Z]oL!u^F7^'_Y1W>~ZPmX‰Y~,:N׃ zxEק~$uG{ ~zF~´#m_m^]&~_dZsxΗF:p\6g2>hMg%Nu?w%hj^OC8 #%Y&qo}X9 ^cfr^yr^aB|O9׍D/7%ѿ^Ǡϧ=-u|Ff;m_?-<W.]6sDmu͛9k`R3ύoLs'M[dƯ^l&Cɜi-OƮ3r ?du6IUDc`-CVՌ_sOT~mxލ1c'Cg?Dƺ !n8֭M.sq/Cj;:޵㢿#uXQ?qWg=ou?~!~_nG$o~!~75B<I1!g߆+hBsyOy?dt67y?6sur3#?d ~sϾEǝJ~eh$ngS} C@!Iɗ'݇Gd:7CGcGcF?;t8?twwbHxi?c#ogwΛWJߖqMIpOTv!C :Gc*l'Y)WϷk/ĭ0gt_#hh;H!W褐qOi*!o OKׇ&Jd#n|~bڰuv>dXiv>d: =-K87N ._h]>y[V蛇-:޶87 -o}#ΨowIB:`}#xdAo|l!'8`{s|H9O LD6 `o|]: )+e9|H]ľ{eÂ>k !_o<| si}!o||g¾<9kJQ&Fh'}{osg-?'AD~3j ,c|}#0fFƎR[ѵz _k;FDB/3b_ƺxˉO2.gYL덜"%M,FL3k X7q) !z|~ϑ}Z#[?vg b0_Y°~}ؗE^ R(G>cߘ!gރ} 9wy}j篷ݾqmOv!GKjׇ҆tlm +U Xcx=gH_Ptx? u|{7~Tk|m_w!Ȼ:.y|잌3k?<7i/C/t!ËCGV‡mg^Xtr؍ڟ#pQk}:xN/"<=? Ç vL|^w73B+1Υ7'4xcp}7x!v(\'hHLu#망C׃=k?=ISמ䯃״ 긋NEqSy&IłK+1j):֫F43?;+e-&]BpNe^[!گ2z|͉z&kh.8'DCjFhO3ߍ(7>^_\Sѵ߄ON_g_dv<o7,uep;uǡvnE [Æ׽2z%rם?=k ޜ_v?rƱ^弱 xMaIm-3 ^/Kfg".&x~X I5<@y*"5ќa^׿'7R?;;p |=^ 'IǀקX/=k3ڿ7}gb~9IqRZ)xm |=zuKǛ[OWSA727[;~xX7sb?_ux]n^FN&xY[7O57kb#oiu[|sPI؏8'7P)~;87?Ų t | ? %M[.σk7N>ȁK0ygM؟_iy^kMAz?iWP zuP ':S__9]t.mC}8Ԇ=\wI^o9=>ԝMj8κ#]>Ҷ:|px^Z-~@>|y#nڠ՟C:lG?d)x>d?U[ ߟ,x݀qGoi8zI'[ S^!8o+ϻ,Z#3^!@xoǗsܯ"x㰡7<ǯ 6A~ ^I>d*xrv  kqZ:> ^k<0ߌ37_>l/ކ;38f/"uî xP?$r*5"^gwS=Ǩ]$ vZJ<\2/֠Я.;nHB{mgkCuE@7O1uALOChg7:39a(#xO07oBX/&։ ہ ܨ^wu,=|4NCCR׭?v:6yv`ovɆ}V:6\|y._V^כk+5Z΢aEL:.5A/= z*kX_^o~^׀wsg_DдvvdrΏ׹kp#eri~uw'x݇;xEB|3q,x/o^Þxfj|]85zP!8c致kpCCG%rѐ L-VBNKϨ㴂cZ͊m<|n^'OEi#});1̜S;Oq~Ѓ4Efqbai}'%_ՙ ^o>9 NRaEcL!kƵIΛϷx4ʚ :|ijwnߡz)8.|-q }h=v?_~%\g7cVJr>Vs蟳,_4UzԎWN {E_['@!xQRtg:1l[o܊zG*GqRg_\ !dbvڳC-ޓ%ϸ*o<ܯ?tu+q/ymV!.<\xXXCOL Ϭ,VIk~5VRܫ*_Jol.8|yHߩ}<(R~m3*դqו!'txˑt>/%\?Kb❝4;yݢ|s?U7_,g T[& |Ь\Ӛ˅r)sB'x/Cߗ 'Re7Ge8ץobsJOc<ṡxC2 n\.y6A?t O+e(9`ႉjK:%g͢vŧ8jfVubLԢ?BzBjkW??0:_wSԦnJv[Jn<8r[ύCTkoRcb`}آ|?,R^-Y~LOj0p-{R1U=v?#H?s帱|5ۆh5p}pks܏W?^G{Rs&6|Mn%f$jm^3n_JT9xu˾kZ(&m~<ʛM=TӞˤzO6w=9lo>=GH|AW#^O̜N/k\Wx>JkndׁkUH"u !N'㛂qJI{hCi73ʲj= l ht1өQ{t~5a|)cfR,dey>n RN!5Wk7oR5hcI{SMK1ϗ?K3/Z#$ϏP>I~~ OW3he#5Ss6P7:וVHuOy\T4.QS5"&]۴L%~v+*i+B~+igL<7~dzvOEZHOuVkoU8 N'a$)8}ۋCFNR>} 墚:轚jڵm;5*Y uӤ|av^$UE?p| K+=݅Ԅudž5٨wV=E#ԸUj.U^M~jzyԿb>I6-'圚Lm_zأqFzB_xڴYiܔJZrŜ=<8;^W{܇n>~A<ķ{b2uvceRA?mWiM6n3 ^LUIÞ[WD4U-z*Ñܝ']?V#]-fnޫ-rOnQ|=!P<96?^O~4"[c/7^4$ ݡƥyn~[5IRho5'vUœ]~=}oɁ_uXgG:~3r[v?Y1ᅬV5I=:fo|<۶j5 j|=^i:Ov&Sko^h~_A-[]q%i`)~m;ĽJ791\ mܧf%2_ܯ:߁)6ߡ6\@ޛ4;"OgwM1ݗYs:ԙ/W<+FtڊuH2:qџj}=dzLiVm޻~͹|F$ԯZw1MϪ^LդՊ3͛^xhR^N/`'K+[3!*U$2 ^&*r<{c=^&9q#}WQH`/ւqgW5h;νuD,g'n뒆y^ˤIt\ď.f%|5~nr=Kc>^0[d>W /m%Qx[ /l?%20x?u|^ᒄߗ u\^fSAǨM1eLjT^\%2Lyg|{c^tUWetLel$yy'DeSuY~w}9H֟j_ 0K*yBp (q=M$rT;Ŕm݆6\%fҩ 53o",˽6KR ҜY+ϯ*0hW> QZ`A+7Q+UH?HJEiW6ɯm&Xi{j#W_zyťҾm<&N% 6V=gU <󳔓c; c:T]{yf*,wa.5~$PBJB_<`ʳڽc<۪WJ]-˨o݌qu}=2lVYkC~Vϡ?uhWMd{;PLI}g1rvc}~WƿrV>Kʫ{ՄCfɢIjj/ 6m{K>Yv&hV(?A.ղE]v;K=)2CO=¯kހ>Y}Z?S/Vv5k*o ;{|RqTIEoq+t}#+/|'?_C͜C}I?%;E=Mп~f>ߍ___[1~}_3Gό]qH\#uX#~LS4^}k57_/}y;E/z{C>N#n|ڮBF_ΌAۅ703O빯GDQ6aE5r~RNjMǹߍIɣ Mn])K>,= {gCYt\ka/37'hFm>_&+e^]ѿ>5ܻ<|D7p}>kjʹSZߨѭݳ!^_}5(Yǝn׸OSE{0.E(n׌i&_Ϩ NXUl3~U}Vݟ$ۻqriOU<7+&G׷FfTJa>€ܝ,J&s֌Ss 41]yfq4UՈKG9Fw=<͹RߐI궷t}oxdWV~q?rjv1cSw25GКTnVuy.vN5yIeo۽E>ˉϳcXo]WOHHWp<Τ?_s{TA~F49t3gtnNQ *Z릝+qjɓ}z#$=&5>NI+a+7(Cִ~W0͸^TKҽ<)^4:r=+iKҼk ~EL h#U"' "M-E*;doJ]* R*Qp]F *-eD|>^/ù%{ gPn}7]|9ϞJUsC*xOC=I0Ag'Θ:s(5οn6-9`Ǿ rqr";D~?M~*suq<+%PėW&m/ le^;ϴW’WҘNNErKN U77Wy.M?L{ [1TnI!wd{C͍ؐ5S 5;M`T'Ofe0][˼ZcZ4"vbҗNަO z$bϑέ]gj۫"2&k-+79Λ,wE;;1Т]?A5HXSӍB>ީFdرǣO9ho! ǖr2p86ctHFAzE=q %!OhWO%oJEFd(fP;rx:E?#9%Y@?T@K~Oxm'kwJOqsj5usShVUơNXryze]2Lh ΅l&Ɯ%=vIL}Y474#M/(X~ԪZa+/OdFAh?S#]堫@ ].+.A=aώ<2n+򁦵J{AJýfSPţ4<"6'coEz6Q`I_KE^{ ן X?п l );;y=P^ahS?-WFy<S;'ڙ}D3دx&\2Vmz7siח[vX[O5y.'=<萯kOX䴷Idt!.9P2hpzF]ydZ`2kC,=a<#\y9 QT峋ݸor|ǽن 8!zuT]լrh*B{w&Z6r}Xz [wB4Ⱥ-s/O!,|dKIOU^_;6$ľrh O&ylf%S1H37z:n lJykrɐwX~^Z5GLOG, o:ϸH֗S^ye|zc=?^W7cV87[4ғӪն_$SSKPoYjin/]^É`;?<"iLZk5dl lo=+󲒖;MChC_K KX?k5;pkGg!N -$%]d:7Ջchd5 D闍iզ鲑1,o#fpq w p Mcx~OsP^6pZx xs+Z}}ln=!< =8~=5*|}t 8;sϻp[A2ѯL94 ko+/2^~4t6}G _Ax?G*q ]_';ur8 xUw/N}̄ Ώx }i&?p|r'?;S|.9}7Sq|\_>'}0>z!Cn=~>-]#\ExOVo~k㏗gݨí,B519_W$x7x׆~} v&;j{I !T kNoIև#:&w'5gz 8<|(X~sUk_7F;`PWfsrpNR`;I |8ho{~l ~m AHc:L7{8ΛSx@}wtnOxL!b>6EYr9=U 0>,i/~Hn C_'_ۀ_yc5,M!~2᷌-Wf゜P`~O6G\X6O׼žs# 1?N#!#|W 8|%>́\sм=mƯ_o5ܹ1<ñ^I%Ty!yG'Jb7 C9e~fx`_o\>MN_3c܃| 1~>auϲ!_99A qA7LM!_(-1PQ$~/9údqyk9F{/tw?9 p_דy=!/_sg`7E5'_\7aWU0^"?v?u~@÷~z|#}=!&,|?| ux_Cϓ _su _$__@p_%&|e@:b!_Ka/y+rxѐr~ʇ?071_? ~=|X:?__j>P4s*pX<_~*n# A$+wp/A;$EkOkt=zלf;n1?VɥB{c~vujd*"h㭟g*ꛊu^ouAn4 '?BBƬOd6}X{SzShWqV_*4}ǒJ)S=XO W9p$2*To)9xZ~D+EN*P.ZI+-F (_BJ@[YZ#ieXoAAA;~m?f8rvN90y̙y 6_zlN-u;÷ ,̤a8or5wTA.>dz6_sG^*٧Lm䠿@ &9] 5@9:WܗQF$1rY-y-5 _Kk r,wȝqu 1H!_ߒmk"k _s48f9'=qK,Z_?Qs9O p6K3.#asz!oo;o|=5Wg~"[aC`rl$;D./?-|u|w`$_gB?/ k+=N6R!_ _<8#!c M1Y{׻Nw^OA-_1*l0OZj 쮺/2=b+]lr)M kpnMXuP2[8(:{ -KѷЎїMOMnt{v+8(~CBAc>Du 08h筅VY|Zda| 4$&cW[2%մD;u(7?HKL7%3MQ7 ޽dqiK>XH ,opOM^pxp_;LGs[ߐ@_m!~g<a9O|~R s7 ]*r'29yS,8'ts[;1,2鯌|b,zّZ{ߘgc3(׏ e'kE=MN+22VʾC8[7[Tc պH!H7:_og#6q]5Å*C%v|tζpM 8==e{q8ވ;2Ck堓=}Ss5WZ-2~|8dQ޸?6}`$Ly~4ҿD{6ʡ=RwG2دs۶OͽźOojxFZw_DT{]W;Hi'"ِ}sl3V/ܢ?%ҽ~F[7cӷJ]H*/ MX鋐n#A7#] @+z(HL[1F=XG2ݗR/]⿅3'ß^БᚶD=;X.}ĻyaN9~FWQ&؃[g~}/y|#$F䇴>`[n{wִ̰b `:jYԽ#eܽYGӖ=(0Exu9&)ip+ˆ!UZWb9Y ~"}뛡""BD獶so "{>MCC}E!SZ{%nr~?qZľ%Ӈl Q}w>{8oSp!`>W==盀|J=sЇ=α8Ώ'1),'zo0}Hw7*hU$vsB.{F%G >$ R}P7x>?=q}?7v9y/^@{<;ށtz˰ɹKq!WUr~^8`Ї̄>D#^~}wt-t saRuc{b~0/a`Gu Jy `] b6ho6sj+ܹO]cLC8?[?ܣЇ</E*Cy˄ާ#c$6f Ї\>d!|7Ny7/Ed }K۝}Hb}}#}"'IT^H}GL镱 0Sud'ۇ8wu?"C'x_6o&_BSa_?误?4saۆX9܇P ?C6B~1^7!^G_COo ~}~=%| ?|ۢyeISk}oX"P7Ư_7l)Q̯.5.__ˁ_J} >=aos~7sv^ g>q P?_ ׆_?z=5l~]p<ǡ?I  ɽ-Y_nu,'d!^2s @UqBr_+"4y' C*s|lkίK_?[0 e > zŽ' "+]n s~ςoN~] ~=q};k}_gBNâ'&^Ϳ"+sl~=XȯHU}UkR]ȯ쵺!:o>u!;U"wnWu! 9?}m_^">IG=WZ~dZ5pƯBq5a>s} @~b3p~ـ_yɽ~~G/8_xUIpaɟu}~ ~=|:Tg~ {_`|O zJUt|i7_1~=;!_Co~= z5p_|܏ǜ};g{`; |Y.#yN~5 ~}r׭!_|z3Ec8o_~ <[.aA6#|| 8;}x^cٜW' %> &`9VtϠ }O}9{CD){6I 8: zk܇q%ma5uǂ~`._ Os#N7k|7s٩ۜ93~>g_~+8f׭ϗw9>`uB3!vk/X;Gd>$EH>dBX:bŷ/D5vy=⽐+jGByxs ݏ8~m ~ uדi_Ǿ|(|>5`" 2xۀg_ˀ_svap>'C>p?w8gC__7J_j9vjkaאs%~e/dC"Wݯ|,W̯sar;8z3C_Nzq.`7x_9[9> Nߐ qDA: eojs Onx+C޺9:Mx 8}ܽEA Ɓr7{X9/$g}kTE' <>-=ldz_龌3Ї}%ǽK>6x=wٯ>ܻa|c7מڰ>;#׵a GgϏo0 N[b8R{KWŦ 򒯭꫞HU[2jx~;OL4+sb01B˂~d6e;b}kgQ-{8/˖<6i5T\p_DRƅ/YoD}[U?=7Xy͇dm_7FG ![Wλe@(+7Tld[X]2o[~4]\TCŏB#({,<Ěl0K̃PsF6f2pKK0:y8C'͠"LVf.4 )3Uk =i᤬Y5H.?[g 74}AKϔ5 gȲgظY'~=PfOc~R \"ƟH'GR5g|7HpX+27lѵٶ\;-MC,WFU}сņ(g*Y[W"}‹P~0¥cp"4QKP]@KG7C2m|=Q!ћ{,=4L?Kȯsv#[5;N ͘lHẽ,`.E}tRagRBSh= d+(0xE9w%~7hg#a-[~EPf/Bb;e`H:ԩGhS|A-M'~̥])ob{ְzrjhѓRkS~6,*u) `'f4iL$pʚ[|+mA^Z\ZãK<(Z#r~⡌+y?s?&_+YwF2K7Y4/i \Z zwK[=J9iS Z_7N81vϣXx$'i O)H^9>8{sO{A' N ?՗qm\"?@޶ז2NF[^̏Dž*Wa\v| ß˞l6sFGPOлpeɘDKZotd>Rϣ=#Тd:eh캜3)Zc/սWgHJؒB_ojW^FbGK_8M(MñdGx>lS{JW>=*n텯{u##Ή?qvar릒Ks ";e {Hrn~'TK1(΀N.)t㸝Y'Roqڑ7k%˯vHmN",R{u.{/rgW͕Fx<8[{#؆<$zt~K)RxkMP8| JSܚN'<>QѠA?c<ղ.Ou_]boҏ6W'j8V<})tR:qJ#T Xe=gir7q,n|=5N֕ٙ02:tZUI.e 6Hz}QʸѨo-_#"b3Yv/Խ3o9&)/zM؅;ZF;uiz: O~b;*?W"d>Y ! +v'Nu wM}m}J>C0Z"b'uO}6n]h8Ά}{#h\N\:!q׿/F2> 4aX>T/AFiO"Q;HP?d 5Cm1*U;8648LF=r?EwklU!~~j_gvy?KCn >We޳K2~.({LmB\|h6R\(qf)X9~6es('M jtYk2JBu5د闆.t=똚C;5~Ie2Elwom{2;AvfbTވxlw!y?]#̕q6]}?N>Ev y9`:x Ҟڮ(xK .PɯWg Tc*"F~ήfmQjr4yFWѯ7 ͍droqfMK/F?}(9X(߈B[њjޏo)nށr81? >Pޫ ^Y2Y:p;M=x4ey+6t/Yk:i1P>_<7C8]iӝMF/y8yOcK[ \{o>^ F:ofjOX üIF0ďE0z 7F}!r?Jj2BM_#0SM߆a<m#;O$=n`Dy|iR'f[}OuioϷ[Kۢt6BGͼڏV9*^"TY]G#t:(p0'e?NﲣPky^N[hfKyFXE. rJwޅb3>\6=\_ϭϑ%Hc{-DFS:͌TMNi M2fv鸷]^ND8/LM k{VzMv/S> .z3m1mϙxړ/NF{1zŇ<|dz&=;8_3#y%3 hG{́՝$,_FlWhv5&雚Ί$SǶEӗȐB'Fnct%'vf[ׁK [1JfzuۖJac2>=?/ S} ?ZV{fq3 ٥\B&3;i[qFؽ{pD o={٧y 1Q5)T_'Q}hD1WӜ}J/c(孋OxB>0kFQ^ݺa)EU|/[ROFWt,|п#,T\gb8 nO^#[%ۛ?۶!oЦ+<< -HnQ.J XzhZ68Khx)h6Ƌqa)|pV]ρF|'Y=r5fFm~MQ!q!oOTȎռM)auwvc~lNwk{^}wnXng g1g\LUO4;obz!L.$צ9Gӡ ]'0[zXidPq6䝵%-MҾ~ȿ\'v^u`U}T};pPN0OgՙhGӻl-&;Yo(brl5*P8ouc`_ofM;mt2k@Ͻz]=FSo_q|'Y;)s cED iW](`EN=Wkq` +4(L, DVO|rȤ'ܞ}YP]ڽxMת؂дb?cֳtzHK&d"hfInм3+;;ڗBn˯]Ӣ\Omyi2E9ێuM>2'{4-ɺӣ0 l|dyhGfAf@.KZ}%>׽ߥ1kӮ篯 3Q%EM[Gv¨Pڽ} ۭ&ӗ~DZ c=7㪒ྱMt1]zv-@R~>G(h_]7Y &~TK0:;N!GYxAg p\5U?bƋW\ws{^=l*]^; : Wwi#rCTZBOdz&Oe|z[,*~mցvbcx)3?KsLe=7nJ,9݄uқtkǨ0Z6QZe>;Qfݗ݈gI[ȻiKG,4_՝TO. aW.K13` ʊpX뵝D|I}`_wor .|&}Ke 'qDRraO*|~q"w \nθ/k_/_îZ m&k*u.S {\ ^*s`mz7/97"vp_͇5O2Zrς_?_s`W/+B'b<氿|ܿ@y3~#7^9}yD_q}fv_R~1~6 k{ }ڜ3,9bV|+}eUOҝ\.Vk0nj"kGkC ONrˣYs} z39K ;JptAd*]h_֯ÿkEV.dnwe}u',YK4g:3%ÿֲ>^pS](_#~{1 z/ÿN/fue۲ߓ= 3g{Yz {`hEi-utÿK8ÿ~G ^֡?_s )qCnwq瀎Duq=w~c%p HAПn|@:G:ϗlgӌuko/=K=AC rxɒߌ_{]7|]?|p߸<)؛3ya{bz6vzَ"ʼ ntI RxR,S#[LcBg>nLl2{XuSEߘh#ҵf T5o7? Bt]EЮ72ؙ?7g6O9v3KRN[eБ(7,Dl}j #6)gs4NЎo59G57`Լ-mh=˻%XShvCZb 'ߣsF:Sܬ_;?{1;or|nϽQq6~n&[Gί7Kvs 㞙+tZ|+C :uG)j]a@Z+.깁+ϠY<;o!^ yi[lg4m#Z>ϴpng˃7`/L_MvtMڱj~f ,:rB>{Ǥ^he›1&-p:_I{t>XFuQOg[9yzcVEӑ$-@_Jʥzp%]ŵKhY)P9^:wܘCl_ ?߸4>4FA>=)¥S@|zR{|}}j:3JNy:,N 3eHB'g5=domO#FہԒZ)cn͋; ,R'DɕxňOx[#<B?X;\bJd'Q]Ȕ0ZZ0irig49Bbߑ_'E+:Yz6e{Ýɩ{/@п<{-#^}A{jG ccqO |Z[f|e_W$C\8XA.5QivX1MC E?K%ߗ,}1@Sp7O a[PKP92fHc+ɤ␰vc5*ed,JDa)#`UA{*Yد : :d`~ TA>btnӑ݊dG7Aײz J^Ds,qOgFtOs~f_uf^nK@ ==D׻l' sRK˳Rrk:ɳu:Ms} t05֝cS@W0< i;csOFyO(=wo_vdLs;G6Q3š"#rQrQk0k}ŮJM:|Vsf'DoI&TާEF(5[v %ݞlLz =L׵Ȧj]*(W>Z[Go hlǟM2wy_LM>|47˵ͽ+G[;.&P.&.RE3z5,؉Nfﭰ!ݿ5b񅦴¶Qh~Lag"Ņ2yݲ>%-nnjKYd,Z5_x1_^@#vshgg}[S`2{F[h1eic(oźkQeJW\ټM!7rpcx&Ӳ-RoՔo_e>l\^T~%gO?D ssQ7|O1d]Ё>}{SLѯ mi/8 I@:-ڊxCHD6|7@O ɶϚNFqdau&u˸FmAk&ݜLivu[paFP={h"٦n5Hy+@x ØAH_h ƽ ӑV"GO !*J($Š6kAgRr ohyӁ>^-bUQO,|׻EmkK7F:|(e2oCQ.PuJ8OøYğuƎRG .Y㓔#Cx0yk#,^"[6뽆gHk$ i:\5kZi0Г^xE7x=ּ16f/â gaGN6ZOdKk-q&V_Kt ԛOtd4e M2 oYcW7˳.cM&BMV&彧.Asҷ];@Gt HQ9ɁX_82&_a u^(+\7f (bMk1=7̭~dcx\)Jc5^v|'ia)hʍk-j6T~2KW=eZ.e鍸J=OA| ܓ {mm;pwr 8\ڬ֛,n7#(لZ%V9h=d4}Ho])Uƛ&#!5:aND$?HDԻ^H"( bt 椩/혠$ 7,q;P仠2ia=*ޤ5]r4KF^|Ȟk>lBx0o!l& 5T2?2P> ߸?}G=&~:t*1{~k_X19&Oc|z>w^ٱho ~7=y=xC ggU)tXcmڥi\K@'}UW}>WC~jq Exsb|>lϑEyw_A&CoD !O.,yuIY;]Kg7 8A#q9m_ SWP_{-3Up%>_;C>d+^" COFy#j9G;bU!μďfCa҂ه}C`2!+`.a!_dpnCA$l+t/W^%'م07Tu}UNCЯ\>N`dfo`r!K5؇$>ܹs`R5p>ځ<ػ#ǘb\ CHo28|>%9lI4ٝ$_ >k/ qSUa/ĸo#"Ή /ۑ56 Ad䤝qrcϛOcTW ڻkQW]fr[rt^ؖg\ڭyȍR+즆}rZx*?"KVMoC+۬&7j{EմȲk^ɢˎGiѨ}NbKɲ7Ό=A;,nja?S zV$me~H/_tnh =2Cؒ,1Z|\V6,n۞0'm8˪˭hOJ[B~1m֚c  ͟"tt1o1!Nߵv7) @dqףhE"*^A|-osvU_ ǹxi7{M'ם||4h Zeިg2ֽu%33y>܍"P%eoa<#Q-O11/pGu,=ϙ /s5#~z?{h6bt'*{ۯ.ϴo.ڧM[h7zScv L27=i/GU4;g6%KC^Zd!ǃ6)mA";KqNro4y|mcq a#oz~URf"molڟ7*l$ Q{,.o\OBq-UzW58G,~z#Eȟ xx4Nm$%臔OT*ˈ[!^E/+ ݭ\-U%`foY9:i Y/8lx#geƥ+îf\cMl̜kK4%&iHN\N JJC!n7 pC! 7H pC!n7 ?#,%]e]q¿$KKu24Rr5s^j̞5<\hGGOk*is ѿyVU$*wUFf?t*Qx\\#zЦK~  /SEWx;غqH'sq9馩ˡ_6n\&K*,7xMlPǽ%7ڨƷ%%hkRC:5o7ٸ&ЕT>z~t\HG<_7Dd6]M]t-YNB6ݪ= ue=NZS~փ1ƺ[:nesuez.l|మ v>|0QTu䫮̺ [ѕ dGu`\j-ѹSHQC s|ICz+bɁtq<M[wNh|< 7☼FMz W"VB1ޗmE% /?(<&q]eq6S g_B2O*%*u<ݦʊ\]IzS*RbЕ:i_E]y1+/z|kuV?nUdEWIF+%T죃<'Ud[WPo|rmƧWWw]_t1/ o*0~(b65DW5ݦ}LxIq1>krm E+6|+Y8S W89[9ZZ2S%b{t1>SU8A'pTΏ - wC^~qU:%ZVV[|\gIqG$huC?xo6{AZM/uBeJ}ZKu!e+JQiUJuį:UXWEV^WGWqǺղuU_fE&%kO rx5{rT>Pi&|cAuC.en;{+Aw*`pT:wˢ]_6kGrlo\}J?)?ǯv~5_WW퇿ח_gqԇ?{~ ?=%%?{qVg^T_?ڣ%o_Vïkؓ߿{P_/-6Yï\4q !+Ps#柣'Tu{GH]t?w~q6A4P=ف^h?EortDMU3xshh4O:b稛{ߺR@h,)-0:;w?@3̯.o ~xr]#%x;H[~PIgkw ?s&A'/D>Gvit 0#, ,58BCW/1ÏM>hBM׬ @[Pxdt3!OIAV?NH*zP&N:X?pfhw@.uRfwnNvua4;:݋uc;Nxcu.6vݤǓuTFU_Xp4yv3wIf7!tW݅VUͅBѝJR܍'nfQ'P wH ,uJ7~vYM;n eI׃>o$ͬοN}MwgME 4(O-V7he% @Knqu3 jb`vS*?Ư_|ݭ[T#+Os>_ ^Uy֤d8˟߹k[g~OjYOm3a&=ooq\mi }}9_^hKwvU1yAVMam?qx>+YFgqiz9 yn3=K~O4bV4Xv'Sz:\dMOۦkVqmnp&ۆzBzeKgZϏ~0LLCVn,Ӥ/J^N2W\бO eS7fM4PyRfD%Ar% ~]wvMs܃a~iOYD[ 1i1A-]AUWRмW])Ӎ_S xbI+Lp}տbj5ć.cc.o7%ڷ .?T?ȱgʱ3y8A}}H|t4Dr;?jz#/GM9dv)7^6YG4>b`/5}t[ K|Qsy֦1/Aa/sA\nyIF2=j~o;1!u[ฐ^kBOKc곁C)^֯%[Vx%\4mN렓eU=Q瀹ц<*ooz<&-{jesh\W<׃>1N2-O=H;1bZa<Iz9V ߰/~yu菇m'Jt+|OSr<`Q9z1.X[inU6QhsQ7UHb4-6 0?bD,6ZIOK5N~~ן_/?w?ߍoyc8saT >'6RIקQwQɿwOO_/]%w_gi =5ލUչ|Hho^^)TP9ѿ~ 4Krvoik<"CH5c~Y[5߰^&m&ߊ_L?,ܬ[';x=Ea$盚5tv7P’J4ًl܉R3*wOg?sY+]f:ʶZ[;FᔁvpD PNI㒄D-7~)dEo~ {[X:.qtp6-t)pNJأs@Eq`sl?yI:4w$Bȁ|A"?<&Ǔ?%JCy_D8vIO#nb #Zk4XoN/lm3ݽ9 771;o姶8?qar>pTCG'C8_j3)%?e!~ˎs'wqooՁk]k*)dgꆫpVw,j#%W)[X;KU%lݩ/NflaiKU)Ak8W36Vޔi.ZGwv456 /g o ܭ^92L{Wc% 6y].al1rC/co#]؇;4c[ooꈻ[qrcoc.r&{d/&cӵ>w8i{;9lv0״[D^6aՄTi_RˊľͿri;b7wǵUM5+Fp=#z}ssUyKNy'D~;9eH8YB~3ɼ Hֳ\{1)3VoW;:fGB@W;}¾'ǁΙu~ts{0朎Ĥ%4 l=(hxPN5Oj\׌jדxɤN5gJo=?)fK_`+a>q}}O]C. :#+i'#9-$a~H.6eVF8d:M|5pԤ?p+:ҁ7VSƂ}z!hYN?*^?~|c\FOr2~j~5/?{~:P1?U#OD+ CT6&kS#v?~k a/{yp\a>irGo|kqn\ {p5erϡc/@x$9/O|?$Nmb ڰ ׯԴ=C{'vtkl]r~s"7l87kHU;ּj2ur僂͇e69`fBgG)Uų'{_ ?,>\J<-{"o]lǚ\a4 !rݲV(%םrNǚ!}E߇8{ /ʓ(f̻؇y,yu9.rrª9w5P܄ ">82>H(ɸHN]ga-4KE>j_[zJ# H=$g}'e?)G؁/> _^aMS|m=O\Oe'm/=gka#vT lhm0_6z7``w8zw/߆6^ mtУ_^͋;!-|Xt&nzZ7uwЫ˾ћ Vr hCЀ64 hC@o964 `J@Є64 MhCЄ64 MhC Ђ6 -hC Ђ6 -hC "mCUt@LtBjPjCMt"kȚ*"kȚ*"kYc k d15@Yc kLd15&D֘Yc"kLd5BX Yc!k,d5!kjȚ!kjȚ!kȚ:#kȚ:#kȚ:i kȚi kȚi kȚ&i"kȚ&i"kȚ&i!kZȚi!kZȚ!,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a ,a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a",a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,a!,air1Ƣg<-WxXO>4wd3)5}5AEu֭HWz; KWP].߾@p. ߩ }=0;-Q _s6%lW/8٢1'aErr{J6YUvx(Q`PӺ\x>'zxsP:E]PfnCpr<UmF]zu؍ѠfHǹp|ڎ.RԍR~tMs=8 }[,h0[8AqBNߞop Q/?fC%AR P-R|<8tMA(_Nϗw[Q!1,\99mܒoZn YSƳ'9uKݷ<ϗ^:dJ uXZڲ\wjXR Bߝ+p~0_N}3&Tyujh`I QAԂ47/z_|0,۠~2.SY&x@]4F:̌=~AazIGGʑv}_yvNPoZxzXtpsk-nyTrsq^eGCoZB|i]MK> (#џJֹe;v~vBqDd TEN3ְu$Rl͔>I`G$/|6;l+R>_}9F@;zui\_^MO |vKjmv K^VD*ѼA݋@.z ԏЦ>Wx^hbxŘfQ0hydP:͐./ >jo|1Д%4̯V?Q0W>d>8}l,": } 镃/Nwy!{7r~dlӆyuQlhNCӍt%J׳Oٴ-AoCa zag>SЍ oXkC}ΊF=PrXIk;p<p"د:PpgWl$3hYPLb2Ȫ`ϛo6&yut}hһo><ذU9TX<gw#(}q&8q'̫ISG!3&7&Kѽ }takٷdsL<ء&/,jx2u﷾4#^hu_ ؛F9%=oV{VZ v=D,1y\Ws:\/6e3n(ԟ/9sM~5>=DfrEvyvycoi&(5ٲ{:ﺨ؍USηa$To@qBNa:Ln;Z `TeY&9'B^3}}S*`ÆCq!͟?jF'GOLW |W?v#}|p 'I~]q~i֟h@G٪RowxEqiS.^C9- a{%0^t M M(?΅c~MV?' a{<8<,񤟟OjPZ:?׏X =@׻||l 9?ʽE\Nx(`OM-kl|W2!>i4jC7Xl,=_ Sۧ7Q/qd rNU$<׎=9 |T㯨9_ܴ%yCWvTc։%^߆58e]b1zC-<{}E=xM/4_K?gG㋡aW[_䝱kk>c݊=.{m\wsVXC߉Sw;G.j^ P>r":5JnMx/30B?ȋ)hwe% ?-]{أSOS=´Gq>9NXEe/uo|8ʆ=Z_s`c"J7PYyLf6@W=_|n5.кO2zj2}_\WQVU[(q1ȝvٻQwpm59O,y]RN!=]uhI|_^!???Gru4ͺ|4ôvQ~GAkr&[} n韰~˚!;ݩTl0(|ì !e^($@2].(;0NMNXsE=1g(itJӑL\u$z+v w^aql}HT_M^-S^X lۮXR׺GWR{(4S k>N£OcS6!U,c[2{+{.:|( ܜibݚ I-uɚ%u,A'%ۥz?v .[hki'A\p Gbѷ]a],rx9[Id|dP,_8v^ z1TxF˷`_#{B p|ۘ% /W6^_'NĪzK wU*X,\-qD s-)gG"ἴ 0A9r[ZP٥&H|NeUc7 E2eWhA|+ls5K]S@ʑJ@ǖWG٠DVh|'Iρ#Yw"ߊ|8A ~؂6:V;hv{[ɪ\q2Nvw7%p ]72U^We IK%g9~Ⱦ]kgT UGC!di ܣ v?4o^}LTi w'G ӊI Or`+L*GGÎW3:ߊo`j07% S'|ueS7 `1q'adž%=_{O,CxہlD&B<7Ss.(ov4,y7*sFOsz+(Z9xic+Z΃fЇr tv>ml8]6L;EEJ2{HTwd?l-ֶ@*> 'b<('f|uϳRꁀh] 9s: ){Ov{,~ZA~{F!_uH gAV!1E T«71!\g~$?(N?} qMg~Ie 1 wo'hkBNʓ<_ ʓ<3h̜ iȹ x*{ߵJ='.;nO s؍? rn fx?,/ٿA;taK2!6[Z(4E/oJ(GO$䠼w;'o" z~j NuAyy=i!ZvHyn۔hۿ ʕԳ-|$ gGY%Bu4@DI|XhS.(Ywr-޿pv];/@>״R_k=F 2z*8én[U-2 m9 2ZV R,)g.ٹ K^?sl\| 5oױԳ@ĵieJ>nmjם Ӯp)y5l{>˘8 }E7B'p"pL죋OD-vϙބ-/s)GFZ2#hN{`tՓ+@;P܄N= juiCEоS'MCx\)7{ng͘!|؋4 flF>Q Kh7.;C卼⩐0,W;{ݖ>5wYEܷ,CsJb7rOK6gO=+zEhَޣ-> n~d7[={h؅ &уoe/UE/AtrSiK1:O61}3 >}˝a}Δ g݄x r?H^m<7|{0C KE)Gu7oSO QLqռgbw,!14/QvF m|`Jck9*h]oB܃O=A{([:gʣ ) ~E욡 *Qec{k˜G8ٺw؍X 6஬'u EXD 9r߀r{_h:lk%oO2Ҡ?G-Nrm_DZL 'ZDEx]gxƍ dz yKHkj#~81SvDRt 9_R:wb}M"E_?1 |Kr>nǮ'dD$bϋ[MSf L{HXZSyZL5.(],7`3I{({z3X%PIn^J_`t3_%mn aϬ)ρIw:`6`?33;v)T}e{{F7j,X ]ZcMa YOOk~m8-C^||0iZ2|=V1)`FK evUҡtsdp=VV0ƁKޣuW1Y3+\7כ, nc.}fi -pDp ^kePOS<`Y?I|k7Q;~$0W/xc`!`tl4DLPvBg+ `&@ptT1|_bD7``MK=g=yTM{rg 0jPDQEB«N6a7+1qyc2g^4"V]s z:?*dh?mG)Y!pmk]WB3$7Br#滎b/LoJM'!_ f;mJΐ._9U2kðqiS[fn>L'q~$}HӉkՎ(;=vIyt s@M,I59O:B0z^Hqj ԯ5{m;  i V^[W5\|| bk5jq&ڀm[LJs׭[Aչ?u'!˿%\b¶mgVS]y8o&qU*}f_^͖٩S?x2Z/rޏ{.^~z{=^ &|*8b'Zω|3qh5J 2Y8D],;o6:eƞ*S@_UASgQD>/j{J?}ƖY._-Tܞ>⿃#-[_U<-: !+J] p7HW-*Yrt' QTԣ*?7-a '~iz\R*و]^2Iժ?>qxI("9Z; m>>]88d7jlbۤσbNvksF~ 6oֿHt U X`cawZ~^9+Mʴo5r-*ΰjugMȹ߀`wlvy0Z;gLy4ܰ}#,<{=o)/vmtd ݸesQLZLog֫s*Jg]!xHT?kp Vr>cm&$*_[SYTXBXZkŝ fnFmbt[`]oIOVKrmupBcqra￙ b}lfѼ^,5B={*qj̫۰k2?m⁣u#'yidڱL|Su|vĶB wzbp K0B'lfB!i"3T. 0M O/ T\<:Tx#|hƊ <.m;Z&\EwW+ݗ--o gX:e,ZE  0|``5_+leL䙗K[nKC4$z@-M{̠ R1YˁQϱ/?Yڧ͟JS{<6E90bJ,x8ۦfRx Y5(XM1}6}vjj=mF?Ͻ ӻ-ɑV"{+3OhP(bd?kLk=] f(ʏ*㖨p<2{x:lbvO/q_}|;a{02i`0jRhSWC9;Ҍ.o lj6~A {]W\=ϯ߬2|^2X1:gsB`%4,,-&.QWxڮ),>?H/< AZKT/A"h @ؙ@] +X$uYe)!y+a lNl@;ZYuY=|c|p /6hEq8' 1E`;ъA(nɻ+@#!'GeOIQ5>vj/ ^*z$-_YEr_ BtInȗ|ܠurK]d [ò".WDBNտRlJȩ~IxIPZlz8ǸD~F_Dk?ŏ,[;:IywCyq~|n_Pm98OkN}='.;OjRț/9ߗ~i`SF/o_΋ٹ+%6okAyQor;D? u`8ohՀp:H11 kOr2pLRfI`X$_9΋ܖ=3OzsOSr79v0n[w.+кCGġ]9cނgCx\/I OMή=lω f}^[Ŀb4L־(ܝaHIj=SA` Z ,"H3`!;;BtC&fL9o5I{A13Cvi $ʪN~S47yd-3H/ v@Qlw5 Þ;'~byrG.GrAج} sȋ?J[.ץlF@3JLfoigv~/ ?Z63ŒIy@PܦשWX?~RO7j7՞xsENߺDQv[d}Uj@$@Wd>;cc_g'5K2!v ^+N) }M#bOwԻ{_6mOΙ:u +,4dX^taQM@o6{2߼hNVALx۫ѲDF2X!~o=<,P]>ܻm60lH`ewr;Q*_ 款j40Z#}uv̱󁵹\u'kcJD[`ilue`T&ȕy{/(ݒ++}3::XYTav@>A d?BMՆJYpγWn:Rme=9saR?5]6ތuzI<=`=)]L=<+ڤq! >l)&˾`ݕskao{KvܯOWS6i&0$.z?Pfng>f&$|Y b7[GnS(nDI}>&ekԣ'=Sv;&뢷G8u}IGEwi:lW@|%J޶uU@|D\Pr!'䄿F r}I]=se  _Fp: o-~S-D!״Ac6how"Gf~R]"LA)InInBIi>Y%|ڿ' 70:NLɜE y[^{Ph< {_M_c7eI'~O~]x\_~lg~q(9]E)?jH;r]ٸ <Mn- suV-UYsǮy\t@KQ hIUO}Sm}埳3Ŧ>yŝokTy[u^bCWjd\0H|{ ȉRf<19+ 8Y,dfuZ8}A;o ' ~n7^hܤX<@Ζ,& ܾHr8d . [=e+~fk]ܶ$>!kv(j;wS;؍YO|i[C@}X38.;u@٩ dOQiwb^ lP: JVrLu??-Q}A밿qfJ U 2; FF<,Rb .wy)~0ݛS >qL [\t|}., ROlAC2xH2l_t eC'Mp3w,w3Rh,۲Y]pr_c76À jɃ Q=ana`uF󮉾r6#3\n d'V<$*PZBB e1tD^UEoaIF:vHh,/ed!{ˊU'LGG7~wS/`mpX ]qFzs;hLsSH`t@HXA&5ǫm%4oȄ/{sPj|s[L"h=z`}ga7Nr$Pw~: ;g-;1<+ppf;J_-~ P\~~Nz{ދI7cY&,f(|YfMrq,aAp~ENx?H-rR-r'\F=>8}"Hv6w;3U4"Cr\Ay d?V}r /ll[˺ mG~->P'Jn me=qAg_hH/3ȆM YϞ /!1KȎ]&pODktPݒƣ+1w5zm)rڿ|~cRzj/93k^-EC&'"n%*/j!']63ȭ}"|~ ]F{[!J"r> (<r576AN6ܦ^r?j-k"4EH7+&RxJؙukGh7@NʓܹKDEuJ_v~-8%Mv; 䉋'8=ՋC菆ۿǠ}M*ǧx~%qGyuȻfww3Q̐#\gv|s'~nz~ NuA~oge>Twtȹߠ\5X7pq/ GM傉B~es`3 Ziۆ }t?l7|d81-m[y.{S knOgpyprܟ{TĨ]p $X`,J;-`{ΰ>vu'ˤ"txض2=4߿->yfbmdaK[b7V_yqk'D|,D}Wn|q )RϑMiވ]?`2nSB ^g~qоZJ4ωk!9Ky٘-`6 Crx&-}OӃzfi9y秝(o?), Fփsz<}.2Z]&Þ<-: !+> 7aB)g͉S,[sֵNkھPeLGcg85[+ \IϺE<_jaJFN_\ 0EFA_:*K;3sn_<`SEB UܸKqv{gX'v-X\@UXآc1Me;۶Ϸ\$w[ɭf?vQ&(pm9#s5,zǮWz %"n|s˱YіC6 uL"v.ЍAWj̀ d_V_(T:[.|2@zT芑'q{}L3FIKt:fYHy0^Lz_DSjlzXXyUwk/ A:wlrc0wO σm[]z/_iegczW7?Ìo9͔T if>xdPL_22bFiZe"eYhYӱgc 63.}Jp,Pªr,6seE) 9ga&B~I"l8%0{oLmU0s 1SQͧگ/;`/5 }X{aٺCV/-"!r- Nw㲖WhRf#d&<-и/ltkiٰM%;-?CN~ 0Kg>jtᣐglBؼ־Ŝ6x`@9[\xjd|QA)ǕaƵ Q 1kt1|7`l6h =iy`(?SyGqL+ϸW~/ /9Yck.J˚Ē M<_׆z:$(hw87pGGI0Œ"ӏ2xU^\Jx2`"`B%kZ!y_rf Cjɣ"bnߦ [z-!x=>m2Y^_qJν'B#!wa;;isEQ)]]hE\ -zP u[ʆU Er25?M|:ETW YV j>א/Rym.Tt쁜 P%"F3ˆǸDwB~Lcǃh!'I@y/$$\쥧5xlwj}n3f`?wܲƹ4cMB@оy0^w+P\I< _ 6#\;(CyV}l| >y|}3֓*]xㄞmsOI^X\Gr.Kj/xz~̹D|xU47oԜٛ`NM3X #|#8Q}GkǠ~<׶k wwg=X(c[XNmYch4 8q*gi?xјWSS5/䖥xn۲^ѩrrׅp+g7ͫ]gR# E{)|"6vMװf0; .6l}f+p/r>r}p$T%녏o+]^wea?zx37XkvsrO;'/IN|}$m?j7u%y/tv3ؠ*\p +Q &ɑ3塟q=Ue77OO3Zy}}f8B=C ;I߳'؇6-|d)7=K_yK`~nk2NB,nt|xNQ,9}'_"0z {Má͓M3i,úڂV`>,#H}ek(]oǁE;yDror YZ-f`\>h[,R?axLÓv.so7}DzIW6}=p;/xb׎CZ glMc7as݊ ~\b`{V8n᭜ۋ$Ʋݵ4zLZ; |[!_qd T<10C~J\-xǟ.bGhgBNӼK ϕgh)}&کsh}+SO,Ws-X{S`"rrĴ&65įmɘ'm !pK~}t4iXS]K!; мw# WhN_Uzs$ ^;e7obi՚ϡ[st?YSiP?בlWΰ΂5L{Xb%X}1u?q~s/w|p8 印t&;@bv^l[ŲyzYx]}w:?Ǡ 79GbbBWJcYJ/6*Cb.on8";{d1X^ڸ3w|z8ȉa2W `thwkP@]{뛴$IPV1H<K,i8}ilowBGI΋xLw2~9,kx*~9,TQVm ,{YݳKUwDvayߥ<q`F(i~Ev|ܾYXkZHueX zˁBeПSyʬjYDZV '?l4r.#@=, T!yZ:󬸶ݔ9 FaaG)cN -'boYy$cg.-v9k=: VnSט^.^) s s85pNyw͑0k10F׃/m/K4% [_- ex|TVXNVoͯ ^_|!pryfnǣF}_mйa e6 23~-\[Kzq5 ilc f'^?gY};6}&'Rn֠-?aGM2Y/h=ٺ9Yy)obr$~rݟeSu*W*sl}Ϛ%GLцޘ٭Ek|U韖n֢$4xن4s Q7_y;`t9c^yKWz_ii\_6.%sGOFefbOza:qh_\Z%,\E[zG,WyQșUrS[^U}ۚcNi$hBD5۫b$VGqfOZ񎔃\#αZUUo[y; ({1xڞZ*M'5MPfZ=`xNfLX'_]pR) /҂W&!& O[TtՓkŐS{,ظaȩXd_ ׇ!Q?J;O_]xDD>8CEIT!0-lwG7aO?o0ѐs'|&џ.KSpkL {Q'gü9 Uu> 5O_Dv`; 39Ǐ%z~ N~o`wPc6ޔ:!;#?흗 <^\7@kweF4FhO+> K`JsUL2ȈkDz!%߶q.PwȔRI,ϓ"_jVmiKc8觿 ,m^e꠱9|25KMƲrDv[a̰w00]lyXb WrM՝NHq9y4[7Uήw(pB~m,y:;}>wZ8˩\v}lu0|qV3\v-|9vr%-`{W(OD>ྙYgW6qyhJ>oLGe=,3!۪ߗ6ƴM N8a Gd>?qNgRo><;ҋgMt{2C欫 6Fe Z Sr࠭~\MP0&&yį1۶QMM#+U'R6m *cgʡV_ն5jnCJ_G'_ D2I_zg޼86)Q0x2X$y &IYַq 9kRwˏQs,Q7,ںvhx<㰢iRn0;` v?ԗ + i+N6>_?9lz˔'j+k?5~~}5aYlԯ^$2e>;v!W.}.pt)>l.k\SMlLSfgiAǀ oKb|Wql~5$Si;p5b=?eO?!uƞ/^[R7'^Ɲ?a BYC>wlK;1NZA_kaJ쌌5NlVwI_Y'wޥ8WK gUqdp ʜ u]Τ^AxہUeƧN-{=8^fL q/}T?|37VPPd3+ވ MRv5Q82.ߣ3?!=Ӗ9] Lz;\;h1ccp䖌KӧXZӱo[@{Gw&~[YϾ/j;x}6*@|YB<՗7VMa* y@O0ȩW(9Mï"Uki+WF~"]JGp/$Տ2yv㐓$?Ƨ~Rn'%wıqŘwwa\H􇁐tdt`dz@ ;X_ ]1'?6! K(Gslz~jPZ<Q87hCw_ȹ\ӓŶ@[9z8U ؁umMo/ v-:(yXsچk鋋 3{kc][[pcxr5lT)c@ҦJ']X,B&ྙk,Cر~ s 2Nj\Lжyh=.㘜{ ><~h}ȩ9Ъx3غpX. cuw#fy^}JaX1`;kU 漜p=xVQ2hQ&n(>8;=DP2'*. pWHYL,8>R׌l#z?2g]vD_bTK-n~ϳ $ 32%Za܍I?]]x,K2l6٤YBS +bn._r?9V ⷁAͿKbؖ%VYϟh \n _˩Ӓx2ϕ60U\3e0a>q9=$|Gi>8n:Jb-z3ߧG[&!4l×Rz!`0dkC1pi>g5`a⽾6`f:F {4+LZppr髭y`d4/{`WW%/z{5ow{KIeVE1YKhtMC{_ Ok`-kOp]z[=y`*;PgϳK7f{r;_>pawMx ;걺m~CgzL{Ǚusa{˪= ,=dWw$l܆53@y&/xpSlXT0ȟ NIЃE}oo L>Mվ[*y #UG wI@(pzQ x/Hϯ߂&Azn1E'{V^Fï>-ȴtZΡTrYp~$~Q1e |+7lJ/TOEu K13,})SׁXTq B=dWxnȩd?ƿ#ۧ~֬m7 FC8(g:M `}7exeMɐ0gIVU0~Ǐ- 䒛@lHq٧[OU),Iq8ls#:6bG9L^4OMw5$_Y |%P'lWS׾ϻ<ʹ`p&l)/J ՜7rX;{чZWhmҚH[~gf}SX9U c!c_zI)qt2O=/[~jD;rjDrKBd[]3szumf}| ٬sWKWxVxdY7Lt*!FOޮ^h.NU#Qdqq7AYm 5xᫍʰN73spԊcq^x]:)>cڸP ˍ82\wg2(? ן3sKWf6oYEW!穜܏%ƶϽ:g|p(O}.v-h} ~(R{ջöz^Dv &RvoiXt \!r]?2d|#nh6\ ` :;ImnRjESC^gr`|X?yMkg&ߏ(?H?O- i NR8I4'48 i8N#pi$Nr8I8)48I8MI 'e&⤂*N 8pRI' 4qiNq6NlN:8MiNqLf498⤇\ᤏNqZ!NF8E8-i NKq2'3drV' ,q'lq'qr'\qr'4avV"ϤgJWM;!/XrnnZu,,m z7k/Wߥ>Zܝ:/J;`AOwZS |Uja4uXXsO)jhh?&@GS(.ޞh?/"Y~&H>BVn5οyCwL׆P[B^ ͌<k< &8Ptc6T1g 9bB8@6e CDht;:0z6Ophl P3N=n ~ jbCvBW=F-?O703/2>+#u28_6tHT;S:@d!G8s;vU>nb!9'qY $GPJجr7^Pfc,3lv6wib-mO B?E\Ls?cm1nI9` $(C~9ԏYD ACp|-RN׮Fg zsۓ_K?{>n _?R?@zBD"? N$JPOz/IZطDDCOtˡh(L!ҷh$D |h\'χ:_$V'RD|c:v@3;9?f4Bz ;OhI'2Cf!NYtmR7/R?l;?wpch=\,߂;>+X1Z ϟXwX~'wU,> uNN)Q}ŨbwDvβcnb&чb$ 묾sݤ[v9,AQf%+,RV3/Y/oYKY)ڲ 0saHdaEڝM$nL5^|U;忒n~R[t6$z iw37Wmj%3Q^>VV8UB|Yed9Z| Tiذ-Ϧy6FwN~a[II_~0ii %|{88Gi:]R=?!goiUuuuSE9 OZ88xxzV]H bap?nzm|i]dl97_Yxy'pVYfNU'>sn8j#xWG~3& sn87X# mΗ;ʄ?}:R;yi`+M3 Th4|okӇt\7I"vw4,E>H+!~k/[C^}: }];ĕ#f1;+p CON_AnWN Y5C(q7:>V ґ!bZ8;Xs~0z ]XZNuu/%C[&\$rj]ѼX'iϦ`Ovŝ^x~}C#' F}@loA\eKt`Nt"`r끷=61!|7-}BÉA~~@!?8u:Gn3w^:+k`je&;g m>%zP]+̏Wк֫_'oNhhN wނםlZon B\heA gHd .>+/zMf:xENM";>epj qJs-D9]"nN^W? ˜ߦ~sF6-|Y]גqq Bܗn skL wП(X>߸Q:;Rs.Aό>3vA_ؙ]>y]n|σ^Էo?F죓f'&G9r!:Y_w(vS7k4x(sdvɱOiOnw%(o(Ԟ{[&/?_./}߹N hjͪ/yN޿߿W:"wߩHGYkwߏQb T{?~O2oyS>~y7 ϮϮ?߾WCGE'ACkj}Wp|ԏ[3G/!Hku??8~w'u'x^]Jyy[V!tvgxmE~n@t3g|:N?{,otDs~eqvK;y_quh]nm~o*?GhwE>՟Kyy^Z_~|?/RߵK}Gݺ?uRDo ^K-Һ4ϋtrHE>^77ϋtHϋty_~nn;A{mn/%?sGH}vo qi^;煸!JB?/)t8Zc]~+?F?p}Hu⥼oh)CxJH>݇?G+7Ӕ>`_Rx㜯XsmYoa ȓrKO}]ƫrAFJDֳL }Edc3+BHNq~EhU]Nw^uá{RI y_pUBbĪwgKI{h` }-ȩ^ʾ Cy?),\.rgyF_r"׭Ouz8vXP_A=`n/<>oSq'^9}P콣a77/zC|@}q`[&ȋCd\$M7e+ >#q=>\7kH8)<8RO"~\OH~p~O{%=4);loMPg-g(F~sO%9l}APZ*y s3s̜s3w"mH,&"mH&!mrH&!mrH&#mH<&#mH<&#mHҦ) m HҦ) m H҆c hd9${PXr]d׭w֭~J=zs﫝 >}p"]0pcr{e&+?!66v^ -rȱ⚿YpduHCy D5pgn4èI5hsYIWmC{4?\x6*9\Pk6CGp3-hTG]x snWi:Q0d"on|v ^WN[z0n7ҔKdH?M5l_b\DGȷGj̈́aq}k1M.Ҟ9b-sσB]>*sRɊBh$G݂z*39fk۹_>4jJ_pz~R`-k]6gnuV{7W Io8ux3?6컵wXt;>iaX"Pl8q[yC1z|C!2q%vF]F%;xog+$wk/VSt}t/{uuj)Xtlׇ`ѧ& 5' 1jG{ }u'+s'Ǫڞ ^}n)F*V Aѧ>+`v7q[:vEyR2Ryr݌:Y;~JVV_`[ℓ@!ANrUK' y@f7>6`Eo|Zo|f᳾gv$w"ڐT75@U]+o]%\`GLHխ-]k>qu'0},a|ldF12~+f;٢5A׶M<0q& [eނE{#ieBI|eg/9_\W!Z%G@xLE[E{,OFxۋq;uj5w63AH%sm2g\nl~8̻pKPtSvOBI 񗬓VdVXXϼ^ ֋7_񎔓\!n>ّܰ8d"_>UrP:6P0>Ŀ\O73T ,~ {ͧO^Bn9͡Io},~r/ށu|};LOqhf^[QЀrf?oBK}waW/v݆Ûǝ{@N'n/$!%$4D?[a^e󋔓1OqS 7!3EB^ lzބr^bD0n{z o8u}bb>8d{~lq&3plyÚ'y:~gNO:" N!/>%-3`Z_juj*^\=cp~[YB#8RupZ4qWB*<%=8QG=Юy[.捎;(aiwKGG6Mޣ:_~n==wŻkO5379Ƃ\)eoEV }n~t[\9:>|.^XNpQVy9?HqK# ?6^r߻n%p|c>ϣuFɍWsIqK(HM^ݗxp<l7˕7Dd3.}:3ŏ_z!#S\Eɲ痢M֭e@I{9XDmay?ӏŲsU$qB(j[NJݨ=wmMns%'vKc'JjP|qQ }C&=,/>د~z2Y|EgWt_a_a_a_a_a_a_a_a_a_a_a_a_a_a_aϽCid |A> |As_ʡSnK~|}l?Kts5 A77777u\W7P ~ck,85fqk,0_ca,~8585fqk,XB,~Y?5)垿_-O>Z62[/yV)_(1.9X (?I'Ƅ!8CM,,Mq\CcK||[!}.p[3#1"es[YȸL8$c={+[\+gϧd nHeFmL9Qטj).l.5'GY=nodk)eodaGi$+[C#[S>z3MwJ 9 axm쬭vbY<=>[fesL;xR+v9Z4eO܆/'SJ^ϞGZJ^Je!R=SK9%{9>A(īo?9@&EKh>j/?(R^K%y?VK%v=[`_{|V /ȳ ( J\7_/; ҿ/fHт h&cۿBy=~q{C'ץï`b7pnp~I&Ao_܇@Q?Bw Co-`m* ]m:O$e?X8k|h`iAےVӵHyޏ׿ysߨYыS< Y?ewF0zWns{V"w}ؗE>oʳwg~\/s߭ߋ}gcIYٝ3;u,־yA?vYM;~ ig<*}ҧ]??K_Κ~hd ==}~[m# z~Ӂjd*Ư?|[=wAz۰]Oۡ6W!5t?mj-OwfU=8"qV"{n<8֥#DڎA#?d,?mv^43Fq;MvVmUJ'O񿍃' k PjТjAlyJ9u n#=zF`lkz,'/2&r3qr #g>j +v$?!¥ [B?t9PuRm0xw#/WrO\ީH=zT= {lNiˇ뀋Z1]M kǷ{F!k.<x}t^_h0`V jڡqE*]Ud;yk>[xjiG'sڵ# _uUHSqEH5>]=.1+F!eKwlxߑ9M6UgVMQLm:>rٞlXpu~su0jdm0<]WAcaE`w&yḆ:1 AMAE rw;ņ5'%[^=OM^gȟk=0P99V _w^\v\x4>w_QslDzs/[}#ytصXl} 0V7w~k >t? e#Q9S0}ݼfcvs&F(vYd}l8b7#~Z( \")W.sEc4=@&G :Sq㦁;eD {g;lyL|Y"K,ǡnP6~Y_̀o<.2v)Sk: y,mSzy %66ceWGq}HiYwUuy&ޙG/k>+\/Ք==p~K㳵z.`@;X|Wh13j/1*33(Etݷ^y$~^Kt_s!V?_7ۗm,gkz?XW$|l3f2 2&ծ͋? Iw[!^fm.H2O1_vך3ucAl+ f+39J09On|_j|f;$Yt1 xBɝ<&W8WcGٳhidX(T*NT\;Ɣ8Σqi~βש w~?mGjWP O[yR@B 8_m7V?P|?pd4&]&Wl .]D3eMd٬3+M '/'?n(g:~sQ{n_&/w]=l=Nlr_,Y%HWqٝoϦ'n]?ߺ7{eΉɗذj^@Hv-f<+_<A=L6S};xrrpRc]Ƈ)"@~7??;Oߍ8"Tl?Ij^@^x,%'\kxVyn8|Oa 9u)DiJ<{.>qOS[]ߍ$es_wt>8l@q }~\ߍ?o?Gޙ%S};xr_l'?n^5",ֳi`eK(8L) `ROYxqDqN349w~* 0O`4ѕ߮L,!t,{UʚY*egJ1y B$GG#,w&^\ emkO*2pccA6;Xٓ]px 35ˍy( .)|9ÙZ9IY0$zEs1'bD U˪ b#B$^Z˹ݬWq$gppkr&S ,U=}F1S̓ ЙN wĮ+Tvۤdv$'@i)"Cr+ce"H=~I2\{@W(GƗm~y2zVhi|;n* :kr .bRХ{k@|DRo_qӸ<9c(VB"=ɒ5]G|R'9k" }ܴC$b4E]:g]5uo 9䞆{`~Z^Di.^@|W?v_G;N}C̱Y0qb0+~C|p:qHvZ:\{/@uLѨAֿ;so3qnSlC0>]}u˩;Z_ߥVc7l%Pw<h$'eoA>I$ľta-zb_n q=ߩMC)wF?qcXu5־t6Y8^GՎ<'ESJޙbfJG90g_7^Ͷ'MG_U S> ,!è=Gz^q}&m_QySNZ!0s+~(z  5`uؠkA1{N:[{6\OY{_hqnro^ "О~$}iU'"9: x/~)w9SBSgWh>:'< Ggs£9`tNx.:'< EDgK3ѥљ5HCE:*ʠ,*ʡ<*"mLtit&4:].DFgK3ѥљLtit&4:].DFgK3ѥљLtit&4:].DFgK3ѥљLtit&4:].DFgK3ѥљLtA(^DЙLtit&4:].DFgK3ѥљLtit&4:].DFgK3ѥљLtit&4:].DFgK3ѥљLtit&4:].DFgK3ѥљLtit&4:]ZiG6yMiG6yMiS@6MiS@6MiS@PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP{Nyi8TtNGpNJ8qA櫠B?\:pಘۅڽ3_vE_/jʱƁ`.pd`=qtV| -a~ uRߑ?a*ݙCQ[@SH&x=vgJP"6lePCG=dΛJ٧4LaB;7CA5?`Rٞs]sr+\nrqU<ޥ+И:Eؚի}JL =5ң!栱s/f3|o^v3hX/zY|r3OƃG'7T0:G 9oz8?w;]gFO^?Vm6Ь-|lI=05 Py^txGY lX?q͹P˩uၗ+'_qӸW<&Y}V8ŚgD?9ds- yyzڃoI9!yz[>`h/Y^E6;H;I5f5=N>)&ֳn)ջGQBcr}4V 3*h*J . ̕LI-ZhOϷA>{D\7%glR\;KqB˕^ų8tQޏ|Gzh}rp϶aGraƉ *藷)@<ỢmOr}/뾍I|GX d܋Cn]?zC \w=mnRU{wSgI:LޱkᾙGml?'/V}K/ke %@I{Y7\ωx #Muli2,Zf٘#`Il!췕>ROڏlG!9~%gC|q_bwSnH:8V9ZN1iIP"uOOU`- R;ֲsBcqԒGa|Elx7xg]TDAXޝ,ng|xw8i3ģ]x/D)2QI`{:kzN|=ϴT"{Zcɋϼ W^+=kxΆ"1.u gc3] +gP۠7xqRhO倥-ͷV_tgܯ_|vEہ/?8 e9 [KWQ5ZX$Wd<`wg U\1[gw?sGyid@ w;~2[T4(Hza<g/POͭEeK{qDD(<7}y{}7~~SKIZޠk /@EKAP;7"'h1Z4H TU|2oukW8Iud'"yȖ06>:r@NW3jzg\^}ZNƏYq*p>ҕ{{p~nNpU[Skc{8;MnOOP?Ts@=l7x)~'4"εJ15n;tu9"d4l?֓7~׎=kyg.NUj7ֿM9 N5;6%Nu䵜Wl?xv߹z@eܽy}h广u"Ͷas^ 7}m \Uw|A )>!e9Ң!9 NK""yu;͆>w A7"䜵*O3*qg[Isv$s=?;vv$P~S1T㢓?a [_*&1;ؾ(&=ks~'LU^Θ4 S?JSבvlv$w.RX&y5N^5sDۜ:>eEshG,va4e(?ua@\my~uʊGScϳ!U2 bO>[VzD VʞN ރTW{Š>kM R+ч{pXb%FNʓ3#.Y'ÍW㧪 NyB֟֯4`ϯ<c 吗)̵\=cG5Jw9b֏Ru3r~tQh?< CPA~)7aX|–r9jĀ՞pɇӢ#ǯ#bWs\axDy@^9)'yO@KIY0Eu Q)G&?"~G~gbk wDD֙/&gg?Ӟm؟ 5oX5/Xmr^?pV9i_=?G=Nԃ!g3`7!6Ҳm, ̇gڅZEnc~HqH&R8tGLaV&a3L;2_%g(KrWeD{zw!cqijWk6g_Ê'nVᛃ=.u kK:oXXiG;vCGԝɠ{_>++j-ܔxҏ'W}n1_$-[6y p߻nEĞ䭹5h\wۥ83\܊=PSsW۳r":( iZdU}4RO,"ڟ`p~?vܭ2,_[+}{sF6inLXEyWuha7L?&>]ߜ! um7<ҟuŮ]DW+bʲ9 :SxX:umSUeǼ8}Eq#={'Xuwd&b\F63f͍'u/~]E0KpPbC^vEA> |A> %aX.(8$ǿݽqJtЙ1~_?~gӶKͩӲxU󾬛48q>^ >sRTx7rrW˯qڨ< 8v ^y^?BTK-U_IJ40iެ}녖G2 v[ {_=<_gp<$|(,Pa)g`IhpKkh)gc`'$`>$c׬E/6^TL}^?k_';Ґc66Wͤa獼-ГwNHj[rYl x81nh[zk%Swگx[jf;hDcu絮S+VZ+sͱ Z.E% 5|aG׭A.ϹXi;'ܩ$LaL<(gόJ a<y\!+؈\y1%}U2i&$gxo  |s| ]dajN OanFaߢ)Vh48\ԴRH/zZ"4i9 ?1V<>ws2:!tP~0`ԗ^8t39[y蜤Eȋ O4(Zw ~~{<d t lC%;08wx?jvW;Z8@|ա^l@k%5e|[8mhא'#l?|vd'd\/q]Lya=ƩomjbA>f% r8tDVi rSŷ@{+3fv"}emW@)+ˊT@/uARJ|:(v^o.M,Mz(5 /E RO- _gjPreN+\rq+rγOލg1P8+*tgtx vm.=95 1Ǥךv䉿umwY j -#bYc7p܏HnwaMw*tgjш;=`L|a>$:~$/pv#YF2^Hg kv^5YΡ4X^<''X3Gx ؎AyUoN(pYբ z>ehp_?0N< ~ Yı0qZN`_zmڻp~:#SM; N&-rvu2e&Ԙ@`8HC/{󔷿Qq1Y~'ሒG&^_WsN] T5iD=AH6;e+(21R x|+.dXaoDzpBْ3?/+b߁B)H9w.RE&Y}G~K> d:p!Px3׵a~ ZX"~b~K IGA>)kbSSX8ӣ^zA:w4Yhҩ| wؤxr`yoE|/aw%ai.q aXDqJ!'ۓܽWۓܝGtcșr56?Bʏa^?)'c[?$"Ɵ9SnC݄ BK7AIX'E*ݰblgi9Yg?Гklϴߌ-d= /a'i[ް k^ۼV;tSgF 'umr|lW4LPpUY2H1Z78(T$*d&䀃)"7S'N8uk}'#{Ծ4N<:|ck /@)JaφB<+L2oJwfO cmg6OճAsw,?&zlH;,}g[W\ȯ?^us]]fp*_v.R^{Džl7肉W>fP*@7f;ciAh=2MYLvv%7ao[<;AtSߡh_OgCu_q> mMZԯ8ukpU|+uԨJ[tg-_F>guNZNW2OҰW_=l-: b]q'xص}-aWͭz"GqQwqQCGs,/7qw+\̾3r6ƕvG. {,qCv*)6{;0p64\-<gu\=. ן}hoTD3?lAcychgĎSKrCg`Y@9AxSRNXQRz%^`%gCAtҬ7 2Ԍ ї`G`xyoRD'9 b؜0d΃Vo{B#aAJ-ۈiX0w]/6]nw<.7~V)mr}>}!~l6.ž05*qvlm*c4O*\[x5@[ Nh@_ւg͖@{ֱc9ۓy%{ᾡ ×D 9wulW>ֵ[:aeŸWG|D[h<}oh}MlШKG}6+wa{2n/kH@P.nZ`c,f$1]$:^ h% 庑֨ļ 7}(\ 4N^*/lpXۑ܄[[?O} b'!mx{h :q0JP8co׹> lrMqW_:MalU;-}ZhTHa(Hb z h|5Zc& rsڡboDz%sA5nٵB ])X!norDw_FGvqQrzfWI޺Rlк'䄽?1qk軷?0||bgH!Ӗ|&_|mnVc]]+UYf7+! rV{T)#` -PݙX4'Z ۳ !c 'ۓ\'ȵqH;u9  șl~ʻJ*rC"~uO$W: B;7~~؞i[L{a^·plyÚ'yoZϜ̟>uxC|}oQ)HSGJlT28{v< Y- 4T! _m \v|y+_,򶊌(m_B`ʡAz 5K B&j mH:=?!6Kծȼ~s'CoӍ`g \apBhO,yr\r]7ל/ ם4p o1[A ڳ 5sqfbXBۗD{v5 Lٰzpmq?gzdFnod;} 72=g:3{p[cxQ煳R^KkP|Ȍz:W `q+,1L;_R W>;zWZ~[\"L4fwFӮ{y8=,/>دt D}:Л' ޷ jV mC@4gw:w^c@v Ńϛj;=OИDžApHZ,]­ڊXVPڠX?9{r9-=6T1~2.`RQl2}E:S`CU{vԋZ=;mrǟ2q+S2ShKrg5:/o _g,:@;ݰډ5(p)k i5gy[($2Fns D^\W TR pR<*"ОͺڼmAL06Lհ&kw"0y7-9̹G@K~D3K:Aѯ=7q|ݛ |‰)Wqv`q5SUv!m@uM㦢FOC») Smv/!{?8 vAjx=[Wg&NNdL:6j6\ tWɆ|M+Af#еZwSL^'yNr3un"{mtĖ1@syW5v3d ӽ#loqd8..8yNT`p8vŵZ5oQ<:LJnn& t4|WW"h7"W;jˤMIVE`SpZ$迍Y )???q| 0T6i4az@4;4SaQ9u`_<,D)Cɳ-`C؂"o_3i> MMKz`vc9X'ުaV\Hhn?qc=!mu`,yrmx`;qh\ӺYɗSo"_6_t$Ͷ)?|k~lX}Zƾ{;pЅuhY`nQd:f}TO/y lӿׂu";A"hWj2ҭ򁰵y9CQgyp2~ƧdO9^/[i23BOO:hW KJhUNy8.1nYkՌ'R Yu 8D0VDž޴o81YoDz?PX}z"I-`Ա!ޑrȉ}ٵ@L{UZ @L N߳z fsǶv%h~ɹ Es!Ku m90s&ZV 'ŇpQu?\,- 9;,wլ'2ȞyO ,Cȏvjv\Ů,vzx9F@N'N ''i{8%N g'ad촛u56H9߭ո=1>'L#}00j궹( %:e%8|JZ;il#jYgoOiCq?gg?Ӟ8aD4NulyÚ'ylwY, rRٞYw!r3n:{kL0J_ս {cNMX@Ą.96Y`fPvbU09g. iYF9_q(2F:k تjh(yXL.)iQJӆ+6 ,FݻyѢȴ- Fy.l2B mK1ny@,x90Vm=T2? 7 W0DQGY5j՗nǐuK{1rEy1{rn\:?Q\\ӛFúf堵Nɯ>yfbrkvq3&|NCy̛B4 *XyaooM?]?;D"8Ho߀ʾE lbpNS=7op=ՇeDǑvb55ׁQtIoesY9GDgWUh߮y,ñm%&9iJ ?>w-,v?ߐ0 ;˞ 1 ZكGÅAY Jӌさߘ΢7 "Xvagô+j jؽy'On"V_97Vy7lC[5}Q" ]!& }~gqnB=zCh#2ۀZ\V-_iuJlA&uapz%%bo#E7 Gn@-e)磭{AEƁmӁjޒiyaQ V";`Ѧ@2@*a8%m@UۋS6^Akڵm=U"V# Hun:nu ah3C5.Gg;B=xq@Y\Wۓ\Sgk9;#2FCS"~ s;׭Ї7:lNn jn}/;V"X~n$߳vi$a('1 oUuNHYκ){?U2dOh) ׂh+2v4o Bi7^s[bqMV_ 4Q|\Rba8]}M1RNà}^)| Iaޤm6`V>~ctsۻщsӦki&j;+u:8vxoq[AˆD,DŽgeyHZذ$ԆLܳn?ײ-1X2R%=)e, NLw A" O% &m $p=ʫq 7q(|=b79{f od<4i|Kl9ҞE^\XtGB'VyU_>s*`0O/CXo*޽i+Io܋lDwu:]~?h4-mN:2<'\&K*&@O}C_ƍ濪9 ̪'G#@.?SKǩ=C}wPݑ1$g|Rx_sFK]yfez0+zvຉ~ ܆GMT7^+6(l|]Ytu_cWwig&ޑ>5Y ۑ%I[pTz7;X$OU_]e= 8@rs'b`昻G4-u;l{kj;]~z7&yzMW$~=dmUqX;[$) nCpzl)<"Zwf:_foGybA1A:ݟԨEsK1] 6vvkly@SJ LJ]Wie8ѱy ]D#Eu'ɱUL&zH+%\5o]>r)߶$O^gD<ྙGk9?H`:vAh};oAC>8#eE_j@vR[/ohӒ 3W>2p<L?aLef.o9ōП;t nJ\@c3طsȳ O 'ճ=,/>د|}BqW 掻(:,4]1̿)~ f\I.󞽤eRnbA/vXL恙Pv+Â7-x^TLw`u;Cj ؎k^ ۻXhuCc18<{&@惺GGNm,@2eZ3~%ܰ˳'w;@;.}7/yʲ-W/u~7{)c};=6tԄdcq|Sx&Rc+o?A@;4f<5\PI|6{Yvp&Ia}'1S>IbJo/ОoBz]2 &8f t׃/oBW/:``e)G̀ י'H,w1o뜫0nSWD~mj/<f̘'o}!buX$çlSC'g[j2OsvApUl <ܵwlԜd a깊m#o :.c;xsGc\M'30Om $H>eƩ/Ttw?4;Lj(VHd{V]8q\Lۚ2=#12A6Pc2zɣ0J[yʌqto4Tr RmePJI[Qdcl5+1U-n>1˒w_klvcZ WD"1!ց:Kv)˴Rk?j~~S~xIXl81-r{!k d./mۏbe69B-@&-ERGLEMG*F·`3 _Crs'WC5Lڙ_ "W>qV|(9fO~++YE筁3^W׬_nmjM ؙsZ&pOD>o[RwMH9Vˍg]FtMIX%Twbn.`t 7B ћAXwBK!_ka׭IPMȯo6zrugrOXxVܚ 9c<@jr_7 {H8h`yo%܎w? ?۱Ezl:r=7lO iUƯ*l~tx+y}_PN~nI:PwbG3 t(?.%Ihš`ƍD^sr Wvdi6GŽ~M؞i[L{ߎ ô-oX5/Xmr^/d,@N!3볉L<Xlm^^43f]n : 㻰Tf1twXAX%>+@ t4w,4tq6ҭX'LwGQX%3 aK7xhm+LgıVb^k|",8[y2˨CSNb.æ8j.~m2ijcZ\2 fULV|u}kM{̯+rRmoןC2 *`]M׸1e";4&}w #/u [XVp'k;{[3Wζ ƍzhP̮BٮGiՙ+YeqgvWp\g}!9 (Ϳ`38ʱZ @Dpx.6Dbل x-e2,dDN`0k9:zxW [U 7<.S_lġxL?j=J9zAY,be[MgԂSKvׁf@K^ H8Ʊ*iϓ,A*%5|%DӤλgky*@̱-6X1Bvz{j;JWeԆTϺ"C?!);Ξq@&ב j/1aL 7u,?c`;N~zy ~db(g%S灘Œү7˰MqQGr>MO&cYKF?Bh#t OO_#`Y<`%ݯ^( DT:d5+F洑~*v܅;А}#'1sF>hZI֤,㞂ƼN31)CCv0 bc3"U`Sk?.˦.yt^Z:Zy#O˺n04#o+mjaC=YԚrP]  ; 0T Q6ɽ6F|{l: laب̕ tF 3P 4W*tl :j;];ƅFٳ꧶3|?pp`cv/ݡ#?^,4g0RouT{= `q8>6z3}@hӭNBuRǰmjAع~e8j&ZA~C@˦a,meɳxYmHKtX'pVhٹOlKYf{X~@}g(g̪Ogev$7-,~50qqir{ av1KX۩7?|N;M@F+au)6nVoh:'M<68߷f+} '6y7 "(\J~^Cta\ |D8db4k#G=Ŵ ?'1==[ DcgblwSώ,#_ ~fGU`Ch6%^B sSxZy{#7DgSM- S!>!ǀx ӗNY/bJޟ- LBbV1[#(T Ws˂ɕ_]l~Wuy"A7 Z'{&BnF(B>Z 6=e Mn|vr:il.9=vyʁQ_r?v'ɴk?=?o=\D=rV?u~sACCڹ#9S|YMl~r?fS脓 gʃ~wb &BIU꩎|}CJyɰaݑbYgkW؞ik8aT8 ̷[;יp-~{yJ{$!gk`}~̏5p)x-xh>5+ۂ_ʛCtAuoz&Rŵ5( ldrSoMA˓AmFYb!EY5 qjz^-;]\|,UCZ;cᨘ׮ޢA%4i&Փ;D##?ax+v,3-p~іsFr2z[3º-u-<?̥bpʉ(7(㥧F28wMDzvw?>0 ^֣V^9 < JDxב߄%!_|P_S;h?:=Z*]3ܘqb{=ꍬ,(1.QfUf̺Y}虫G۬x弤Y7BLeų=CD^CoC:S {(0ș~+'z"Uw8Ž<-R^%{JYV@󻿠rx,bJXv¬UaOoyp/x*(ضKBX'f|23=:NY!FlN|U(̓# bƛR2^xc{ujY_iՏc=_ZfHb [W7#3=kQ̓->0,F˘ 0K(K$ᨬ =S.#bZ3iI;͌NcMl0y~.:_֘q >o]SS;]x~P=lR. 5tٿx_,ql%+f63ywY6'#|w%xzw@;ZNYeH|Kf&nz^OO `kRn/ ,><<6Ϸ{EhXFW<頬r5hlO9)\3ԕ1]7b7.\'-9~[6~+,@k4 {+1;Jѣ'1XeJX'XH>NsUv|qEl 1ۊ[ F$Fq=WǁMM,Vy \Rc 39uj~̪grmCWoYȧ=LN[]~9Pf%f(rʖ3>rZf~N׵?ӱݑ54$ufcs0kƾj 8@rZr0: <1[s5zKGYɱ34Yf):{$~c,yo,3%>-rާd\q K:?~[ 7@;G⥪1SOU}C%)_D<s 0K='َ%گq3Ѣw:lº:<'δqlϴ0[L{&ag3i'{ް_oכ, [ oNòH`ѼJnP g[cU.S;/q];S={}:'}4=|qS/NFUV˨XNp=*kΊ,Aa9Td 27a/8kf/[L/U ӏwlc_w]4^ypu6_AыdŒ5R4.Ǎ4l-nčFf-0^\$V3ԏ"\ibjl["s$E.Qjjъ,y7!<_Q%HwP=v>-m7/(=\M rKtR7@1{@$D`<~=Tjc^=aofKC} @udܰu/O%,:?C;ys}cOų9Q#C zЁkMx]=lklb,*X/L|~y*m;2oӊ0uaSzo8o.wܭn"lF:CwRH348n=#Nk7?f'i]XWtdz)zMEpZ iNf~?*\bDc 9qGt-a/I]Ó;7^2f]Ε 2tg{MdM}-T%/O0g8(wrlyF=w>LЯS_`㠥WZ /: 4ߦ9K2BG- Ƽ=| ֶ&[m;?/ f<޽.x.8WbDJl,+&W۹%ڏ ^2ގq֣B@±'ndA"}9I7ri%mxqKiJ̋I| ̿SCjjІ+{ކ)12m>Bah ",GxMwΰn}39 }hĢ;$l73 A c'?3q˖)'M ߉#ŲZx?gw{oPXG+:uͭ"9%؁c/m"h?L?ζ,}9~_z3no{ru4Onyߴ}h'ϯMrz7[;`HT6oƃآobA8Ɇs*v}~xs rDWEs>,R5A#kx}7IGRQS^ȧV뫡}Êsgj'A{WWn= 2E猒twg^'6#4\%2HxLŚ4Fۻyfcj/߄Y~ 4?UNO%|ӭJA9>&70d5XF¨kw`";UU Tj4׿zMwLQ*Ċ̿>Ϲq5ZK~ ㆹ_mmGX5?ʃC7GB=d<(ܩ+}BJb!WRp5i.hB/Rrر v^²Œ+Mh5q͹xY@+}gK@ЏQCǩSS y'\Fty $&v DB*`D9S|WK!лrm1 qÑF`ܸ+̀GO1ܷO w̋oQO~%z̀s٬Tq\`8ra[n\!]V-v 9iE#!r/N\<~f*;KUl7B]N%Na> \;-mop|QrYѐl^֦{9nwr?~:*]lVOz|z~ʃ 8cΔgͭ1C^gþO1JWjKAΔo%)oV/=iߝpBhouZǦ77{ΐc֙c[(?Bؿ-d=?Kôsok~ȱ_o,<< Cg֕.?w]*ߊ6sSuxQ@et,JE3N|*Վ{H \22AIkI(% =qs͚jɞӰy0SէA\)Jw`OUXHgWK_Ns+Qa*AdXGFmT8<'mk?d|wQQN <" =4o̯q],r!tr߻nnB=]-םSz_oEV\d\n o֮=9&}:+'zI죱s0/<<g}&Ř(sv Z_KEvd+XЃ㼎C {L-a۹^my~GƃH?[5el~eEf[g}dx&1P pܸ,΀'ugǘ[WWօ57\V^%Iy rsZFz'{E)a{n!YR!+ 򃃃C'Li0|h\)x09'{Qpw$BԹpƉ!8 ʼn'>.8ci$1h6iNB8 $(NqiNqdqNSqiNqLf498iNR8iN8QqDI'YpI8-i1N81p8)8-i9N+pZ*V㤌 NkpZ*NpZN8iउ6 8mI 'm 'tqڎp'Cp28d9N8Y '+q';qr''qr'7qi7N{p 'o|p'p )`Bp ) 8S$NQ8E>tXp)DpJ)TpJ N8e┅!q:SNGp:1㔋SN8TSN'p*$N%8t 8,Ne8a8t8UtJ.t 8Ut8]:N8&N586Nwp=TTS=Npzp&qj)Npz ^Ԋqj`[v>ԁG:qgԅS7N_qĀԧ` <)xSO? <)=?(O? <)xSO? <)8O? <)xSO? <)xS? <)xSO? <)xSOQ  <)xSO? <)xSO󟢆<)xSO? <)xSO?eNxSO? <)xSO? kO? <)xSO? <)8O? <)xSO? <)xS"p? <)xSO? <)xSO? <)xSO? <)xSO? <)xSO? <)xSO? <)xSO? <)xSO? <)xSO? <)xS߻3x^k.w;|.{#[#kYh,&&_.&DhTvFVֈr[Ye.=#m'7}ܾ n_/ۗep6lwl_N"?U%%}k=F[pHM?V#Kqa nurA{cO/=vP3it1:q BCicK:f˜(98kSG+{e{+ P\P>Cg_rWtԞf$bS7׿G|>S.G?=8Ʊ'r=D 9wgs!ELdJ)GnHľ> ;\Wgyw{gUG}9>1>Wo<_drDʸbw2r53eș)+ ^{rE,q" " 9XkR} s юK|ؒ1&?ٿsOٌ5棈x"ĜcoCHOwOsgorw\cmO?_fu=}?c/4Y10\gqM't9&8~O~md6q|}CqgcG6ӂ& vqݜ =urwwc;N!\fj}"8ǔu9r }9~Cpnfsf݄ }׷Qĸb~|}l6 ]w5Z<.#;lc+;ŦGP̂o܄]3ĝh'^nOֿ_7>b4oD'C C9ЇAcЈ>3s#s!}+C5r6Q#srw~17'Ӗڏlk")/gmd(&~bӸx]cѣg }}ʊ}Xse1uob,'6sPs__G}Xl >}I?~)?ٟ9W}=}:?_?s8t( V;č,M-\抻[:ً;2a7mĩV-mMŝvĥMwYI9od;Z%*yX_[=a^)>p򳒾??o!7gŞ{={Vwk=!XM8~nzږ噢,vYY!Y??5g4/Y9|qd^&G8~d}/#}*N^Ɓ8{ľ{>i<$43N=k01D"ӉXx~O2X?cKI:ziӣ祀=G%Hp%aBѷ3DE~3R"e}tm=̗z^J-Iĵgiĸ3fMK\C Fh҄ T|b\Zqer'r ,^H6Oz| 'ZL P$b JLLU lyۥD|sOZb7y祊9H #-ʄ-k*Q_G:FhDM}n!hm7{^<8c%ʊV̗S}{| d>ɋ,U\V}7<ħN_bۧ>wY>fϻ}k*uϮio}ɟsl:Qh͖2۵^BHc:vpYDEą 7O,&[T܊(U{@@DEKU@p7(ne(*O\--B>Ozrxճ{q6p>b$STmoBooJפ;r$5Uh 9[hg}j-KX~mZތ?0}*Rׯ75} }--͐y[e`3DtY('9JY$׎B!un_]|v"I{Hğ~hyl:ۇ&Ugm(ӅV1#=éʝ\-Q|AG?8 SS%kѻL(aVd.oӈG-(=@y3c z*t](wQWnr%SeWSN=P.QNw'2x_'(@ `?VF4A xJv%(5xIuԄW9Qr&i7xޮDXd=lV6}p}P IWJo4oP~ (he=s(lKۑì50?6ԫ>!%MHS"XKJ6l*;u$'#8ˁSʣ྆)?GeלѵL~yP_ ۓ:U؞M*OV7z7d]6}U[=Cmȓ=Ӟ$keWU{ b2t l+s(݉&x%w&X|G :du6(^Vc@\CYȕCX>J<-K髺_81f2z.5(_@/YT"L0z<(Ov_6}U/ybyAq;45} N0^B#RT9^؝^Elj' Xy<%NMp=`u_B2pMk\UM|jKnu=K0C=#C^08Bot\&Fǭ8s3m!| $sUG7yJ+ W+1o~BqzڨH8sDv܍Z!S&]ԣt\,mƧ `61"H'{@& JORt.oCg>?pA~d> ?zO u3LG'Vۧyl }߶;y!o@kC'a>5tR󸢱닎|کI+پ{M3rĕ$Ǎt*SAv}+qLWokyOr|鮘^\g^)$9wQ y:7 1YҜC@p+_4@;z<@^/Ag$|։%]=J=屮d{j;*PO~xzK.0QW-oq qϷ!YOs_ۡ½q OE毳SwWϲV9g='jR62LOh]}h62N&y|n$3S } {1oɕ'ˬJm-*mC|.Dzh= JA2LVvC)XP)הkJLG)ޔ̀8,cF˘tIt1I 2%]f˜t2 :)Nʠ2 :)Nʠ2 :)A`2 )A Sf2 )A`2 &)K\:ruΎDo=5|u+[x"|^M> s={!ךyk[{p2=RN¶c4Z4UIǵٯ_G]l}fY7l;=G#xd}k"Z~ >-&:Ɯ[td{[Ջ"Su\X5ҺS[S)%;u23:4-jk7Ql7j}HU'UV~UCg ,Wx. dh>_"SvbhF jӾ)bVe؃ݶxR5OC, q;]eguo,8܏>j]GEGsdyFa XwE O=}2|?d ,W]S4e2\ !x}#_>ѥm`xd -׎G g.oUo}d.4*Y{ .dϭGlRAV֛lQm&|Qᓖ| '0x6p1:dznN39g \$r|us 2¾ W#y pxF!9_O$ï^or`1˹ڶ*vx\L_oq^=yH>88s7Y]3{O1S@pJp$!2s tA?"YoMKmyfzM/w  >_g$uVA:dLbMk/!wq3J= }Y/_ Kpג8fgIa$zhޚ{|;NIM;Djƹ=jO"UdML_Gg92ep^UDBm L"Oc!'.g)_F"Hp*l¿ĩD=8$:?2ܯCևJ^ ԏO|="?BtB>d..7/&"m.) ?l'w$ʙK'QHWA~>_CEs꼠/\̟2D(? &L2#Kض9J^7Rs:!)}i50iaG!7DROC< ; @.,k\fCIRQucZ# _?k0%qx}^3{j()#'rȑ%Li~v>~}G-UCFnt yaX[%?ȧE${K>@=HR4 ^{=NH(D'rli|?N)ܔFn١)5βIGO|+|+& ~?YnrUXQ^BlORF~Z|E[[B u+寃Ր*7/.ꯉVZD8Mw=ǰ_a t"ɉ*K*˶DLo\ʄBE5/ocsOҮ)M[sZyw{,,oob6~<\/ןTx<t%.PRi9ͰZ q/2֟9'4fl4=/nx9̢Tںl:P^q ڥn4ɭL+{̵.9p?㰕~ao8^Be c_^ߖlt eWSOXM p7.<|2|i4hg_:h4 , ôG|9#DN싷_YtNj+MƲ}5w|4&lJw?F~2aoj- G%voʰ'rF}MNZs6{o]ʅ39't3zUvӌV6<1tĥ3*n{rq#K]ĭ2aa#ZKmהmzlٕ5}~&E_rQ=/,9>4rzu-]yeʎGǼy65+dޝFfc_}}#rT]7>"Yg˄!FMشˊx6~pNIb<'ŧWݑp4M}_g^jŒS:`Κ߶hۿL.~;li}/]6:s)yDN:pm{m?x–F0;nCmq{e7"wn3९zڹo{v4,Fo MGf{NY-޵w~lu'cu[vsI4sWu8XЦ0^q٬U:s,V\,LO?Oxל'JuOxቧ~(9pcۮR}iק_;ӟ^ςK~:}{~7wsl}ٯwN]f>Zv[C{n?d S OϗIK]uLѴeTݷ}j,=i֍ ?FnVĺ{yx^Ե)vɼ_:62>Mݿe?`ֻ~ 3ñƻNsԜ+6]u'j~+*Gcugᑝ7}5O Noq.ѫpu^ޱmz}'o(wdǏZF㽕ޖzYj1{svmLfnxvymk*G;T޾.Mx<}ms:c~zoL@.673]K-rs[R q[?{O;޺9写[^T/bwXo/؇~hHup} G8k7-ofmKE[75p,MKXL4kn?vLvp &Ƭ=ۤewӺ %+h㿔|4Vfwyfh-j3R =2ǧt6xcm<58\+W\qߟyfo?N=uN}l:ni^u=;+׸Pr3ҼdpjUoe;f}R[3i`Hg{:v5Z}}k}b+︲E=>\o34uᎼػh1^ zKQ~ڊVl3;g4V3~Vs滙窷{o}yM1iA:v(=lަkc]M>=־uԥ{g,긁f:mc&Xd랦?e2uk㤏"]m߽_xo]#S8Jks7tlov֨c/^}uVCZ]e7~ŵ g 頾">E~ynhI}Įc;n$6[w~k:cծ \u.o}ƴΎ.љ{uv ' cr~ 8jҀӍ, ۞1ss_{]-9{cZ=lj_WvYaӬ'#h{?ܽ bMp,ʾbOn0gxY^tѮ{ka^|Ygz̮?n I>}iwvU_:oO|W9 `m5zOM}B[~=9ز}nlĉWSo]d+av#[Wr0gz>FMn=zc_>5Rr ?vX1( -:npC =.bCP7O_ssHF7lr>soc?g;>%iMND1iOLѶׅ7lz;w#+=:~D18C5ņCEp94۫FsNߙ Ɵ\(wMo`p/SSwV5l݅:a75m/g/A9:80v[ n5z.{.9 ϜY8pXhC0yy6 רy8FX oYnn }.^s~ 4WW'M o 4gl/e.aR&,mPLO^R<6k2^CjU%kTw(UoWi^Jk,T٧b(\s.FU+UfݿWŨ WUC\q ٠,SY:)LfrG3*REf9$QV*G5bb ` :eUN9#HHj 2B崐t?w1(u,JUIDEVHp<皴dʸHF%Ē|L]!|_ J`HX0|HP2voj!œe5\8 |e^̱R}zy& !}(TcaoNhk Q@Z=#De,*ca L2 '6 D *Wm(sA4&lv n&B^*:BElB6˔+7Xad*(L2!_ب(3Wp yBZ^-$%dš[Xee eFM[VX!B;X`s m:!$cBvH] !E#(M<HZTچ4ICK~B^[&k)~#QԗVv&Y濄8$:wDySH 3W6 fi!2uu5jz9gCKgfDqBOө1Gs#>]67yYrfLe=qrK~L͏8F6>= ć~dȼKg; ;nt3B:qk _¦Fx%"/=,O-Yƃ wj`‡Oo/": gOkjSv4vҐL6a̵/-roʈI/eQ9B曷!qsg <@>@_/1a/ >ھx">S\93`\W|>D w#siM7[G&}P!3~_Þz#Ue cf#~ަ fȂ.]-p9E}v\}\dv>GGϷəPc]WY)1 GMܫ{;ț8|ޠ۱$lRA"^׵;,`mHv52Tpܢ:n dm~ @ࠣGq~2IOyC:GV8,.X! ϛtn-~j~1b5 9\# zRO޻/P7QViOb9|tYa1OUg~Kcm0 ,U /<>b [w6Dza3&!ko%zl],i\oX^\4I&G'6_#0hl(ɇetQ"ӏ5H`l;wR2ɡ=]V|q rmaidGʝ+sOĴu"e7xN@O8)r|w0N=2۷C)Ww- ~=m][(OĴBݱ YS#+c~8RV-룭_투^~\k-USq5lqk]6x>%uAx;j?D"!n!P"G6ľp /}hW4 ? 4&N @M 4#М@ {؛>ZdЊH[؏G@8DB߆aN%( ÑDH"|$>7Eď"GDh"~ CcqD8"~?Oď' D"~?HO$'vDnG#'IDd"|2>7BO!SDTNFO#ӈx{"^@"=DzAL:D~"ρHw$; yD>G"#Gs";ND~'"߉Dw&;|D>g"3ϙBs!\|.D>" ϕJs%\|D~ {5KuŔ)CYD.> 2A`IE\&|ݴ! T5(5c](5)()"q@Q&8P/,E], pQ%/pk_ @6?Q^l^tUvH~@.GFȋ@.?V"E#H KdHc NȦ ^b# jl46ˆx`U(BWqH/@*P"JA{PK`&E$s$ʫ@{ )@A|ps(pKAB7D97rD刼HCTr)HGDM'ʙN3(g::D93rf ʙA3(gQ$s#scS(׍(׍(םFA o\^27u #J>xlA?A;h>:H ufP:(h?God#Yol~) ͏z(@6?Z^]M%Cvz~6Z/nC'KE|\nCI/NxCŕGQMT~.˖?FeFD^4H 몤}N=I}A;SJ @^D?~\7 ~G5Mگ?{/#׫^A}u5"z9~*G?_>? rDmZПϕ:'o s(})HV}FQRQӱ)~Q*_>xlOSMH'*_( (ed x)CGo`O?` ud`>s/p&qx3\؁`Om`_x ҁ~S@?\'<H} g`2xn_0پx\>QzR[R[`"1,\%&'SR7 xN CJ{2;|{u[|bM<k[}G%'{Q ]ƈ< ˙%JmӫϷ;?6kd<+MvEy3~|Amշ~I9g@|t˛k|.Vjg߶rtVXkzYܘ^ȗe#;^Mx#cӜGNBrF 8T ,ܧP ȗ7]e1ӤŚdw5>]feo&ڴl2n†˱Nٰ<;gt,Э -!!9;|o ˯5 <}ŒBa=NLy}O$;{iٱ3,{,hFD7A=7 fڥsD)~Fm+E^g}ԭ"kF68ߺ.;:fȊ}~[+dqb^4'_Έ=w̭)o5E<[_[ZNmdtdqvHsϐNEONmA%kyٛ秽4΅[ǃ헟/ʻ#8$sA֯Oo,_}^+BtZt:GNegg:9fϒ鹈Q}Gwk- Z h{}kU*NLp5jCG.sg/{Y"L}m9`SDt|S".uR*\٠T6YП 9'/ߘ̱mDY=r냶//9m-!}Rh7 󙪯'<-3EW_Rl?= p[W$aOl޾Ձv ӫ!I(m~mȐ &A7?I\dbU >`I$. >['ϲrѯ!$K$z?{$Rq?r&kQ\CESA՛'U/=$/&ޕ̷bWJq oK"/|@=Hևo P/wAl=7X G1lno*|S*"NݼK5'gCEQd;?OS+OgJ;w%(?ޏz,&MG>^So: ?D^r2]񺐢Yy5y4.N<arnwג\ {;'߳Aӡ_N)B^٩Z)~mu'ؗtI|#<3 89E{`W~<;aȣvu״ƾo"K2 ٕ?KKz~V`7Z@ v%aɒ^ ]?dwUv=tɓ"Q]N m!oz#a|R|yv8V^W?ssI)3m^P]QR2]w.I~ȇ*k>ennb! ^IQ'Iw@8ys;ZY4V&{Ll,U'~EFĒ2ȯ+ӅjI7"<e a_r).!翖9[d[x$+ٹeN,2r( >(xz*'3H&{"'LQ _΁ݥJ;+6ğLl>5oBr;0*R (g!_Ο}EmwuGwsV̲,Nl3R8MHN7+4vOȿdy:O*GuX7pk }ݦu]3_tO;ԻQpb'}D>nȝx,)눿ߴUxzh7E[J}j c_"a!Sv"}zbDyzN,'??ؕÑ&_ tkro9g%ȪCжg)5s1ڃo<3O")|ٱx߸y<.^[#qGVov;Ϯ6h )mUlEV 7M(|xjz9˳y/d_onx1ԏB]ԐmqaSNwBvi.V뾡+rHXuOf(#ۧ72/Ʌqwjxe爓͐_H)}N"<W݋4,gs!w 2;OE}9i.wю}ɿ"?g#ӻ:l]g =.o˗Nboدzť٨_ϑ<6M8y-c\#${H j#;I}g[pfMK|zv,ns"Y3D9ly>pc9ȝyz45bfˆHNnkoQAT[D輭gH3Ř$`&M{K"|EH}(Ʋ2j+:\[J|zS%Dr~=VxC\Ms8Ul'zpPD9/w+Q>̈́|an\n6Y_{HA7.w=~=.36N(g7Q?݉r@D9v=7嬯-PMˉޔa`M..):ya؆in J?o[»~jX~W!og l (r:g}Vv7HzO)q>UNlfԟ>Ynʖׇj":[3!;rzO͂ HtvJuZʾVQ5,+_큛H ĶtElۍRdkmvNF>9>Qϫ-ۧ|یnl71_Bʨ.v2e:H[!fJGuRU̜!IPx.yb"cY=D9ɆgQ.d"%*0"O Y !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0ͱsDl)HS#v^3<˸=xvX@P`KXTl*V6iM&ϩX9+`cZ1l-t6ʓPU?m|)nq/c|麕C?Zc_`sNtv~JCp2wAB7m?k6QY\7^7evrh&3ܘ3Cxv bVZB{?ms'U#<:팠0{2F <:h4vC\~[:{x2C(mq5ܙlӯ#p3-.&3hG >>9kvGC;JK{^}5} *ވu n}ZҸb-'xjzv54o.L!TN xd~qr-{ҐFA\q?=7PW(wzxGyxѐhʕJ8O_^M)&zj?nv! Zgl/$nnpݕDEǸCDbK2hh3nE:o/rz9r09y{8N"UöL:kӐK 괛FCnya^s%x)ɜ $pOH<5ir9nz,{Ajk͛pE{f-}OM_~ˈيNm6~ ps;9t]cw걾*r*}9GӇgWqy}nkpy*Վ4V׌elt_7|wLuV?l^ܖӀQJ,#sukf@ڣ^>}>-Xܓ'ȦVq]z~9tkorsVe,JRe {xB}U4Vz+?nӮ1tD#_\oCUd﷊mu؎5Щ6G :?u~už<*:} Or"6{oDв)ʷL?oRSX]V"߿Cޔ _wv=Ї_IdmWqYwsOF-T s,ƣɞ[#}?FrU+y&k}+CFt;Kpw5mT \|qǽFqpM4%nE[O?ܐ}U-O .ҝ7d;_8Ѫn zv*j {Ǚ;γu(g@qt mbK:]dL2Q?(&zb Wx{ܱ y7;hy ٴߍەd@y-j]?L=ڎ\6k :6-iqTGeS )J-I[Çt64-1Pc26<}ˋo6Xzf.ϯId̠tE!DC/:Iprb)B-uJ;jw[s$>^: UZq(5O_Zm27x#O?*cZ=/PCjzj q+q<^#14vzn ?> U{Χ-X<NBK,nPuB~P(*~OuҞ< _{MM]}ѓ̝iqׂO?~d8A;GPC-goh)"?>~r#M)M l1R#:?d;Q-h5E(D6ry~8[mrW>Їխ}.b$AyZw-r'-íeӉl'QQ2vm,~r\p۶pf'\8 pFjz?@RHI rvޢkSL]f-U.zNQ*f<#>=k[1ow{L\E"Ġ{X4S=@QyV`ҐwjctPx*s<R-}x^ue}Op++R3}= 71".=:mcQ.F'Uʵ=olnN]>h%>=,-1[RCGyQ1~:uk~>o&(zgn,~Duq6v.;ŧ<4tz~Z [>.;/,O#w=n%qt/jiz+,qv=v}8k2ŖHG.}ˌ)KS=oު5KǣEic(:wM \=_3Jǝ}ośIY\IZ[j N7'ozSǹv񣴣z KC-N;^ yΟw&mI9n̉Ҧg?~ O:FCL4*7?7R#7R؝W~~>L*~2ׅCW=ɥe,W>v>iəOilep4lZ;KbV?L7'Vp}D.:='== xڪN:kƠ_ؐ̚@ 4pܷ1@G==wnBo0\lDAjxC i,a:i/}{o8? fL/|oow5&ù?.xSUV6$x6jB է/ՌC淖M[A/Jp,B]EU.[coOG#>q14ҥm9ih'/Kcd+^Zy JkS~0G:.w@G|?PN){| ތG_,_T;Wxt/a{qH էY|yW,vC#t>z8UNL|Ɉ`uCp; ^ \2v)_q?e5Β+ _Ta=9E{@`j16W ;26GW<)?B=D}-.|%_T>_]͝ro4Wۈ}jǧ~\ڦE?x8={.;ip)ܟ2Q(_ XR#E|J5D'oAzog{Զ*5Rh ^k=_m|U?$Aב]UMmA9;CQ"*T~XQlZqXƗX|-(Z6xQy"c&xW}z(k~Tt =ol2c͍93.i| c %#]?isϚ4vxμ+n?:k4tT\_c|->O_|UyuX!Gu3ao?e.ʑ4!eRTW=%*ES뒼[ P&Cjz|FeD_Sk1Hx~UC٠¾J5@r?ɫ/W㶶ZUP__k _ ^)UJ6)D|V~Qu-k*REWyk~TtX;Z R'D󉂯h`ٓ!.EŧɌE? wC"9bwZKǗ(ځ ~5JבrβT9LH6Rc,d젂#toTv>8ZB@5vդc˞/GSVuƿ /WSpќ/s|ܥ| ŴpOhk!D^a5Ur_(y#Ү~Bȯ)|],n\TnPT9w:P|~_/Ozը}]lk0ޫEuyQl*2H; I(﬈+G(JJ`~0g[NMp,G {l|EcfvV^ϗ.m \V?Id5,߾q^h!9dskT gi(U5~D(?>#+ZƗrqw(CM(4K\j_&7]7Cs$O1~j~ůDx+[luW|*WQZ|>k9Bג%W5=asD 㽦1/BCd~#u=>oc[淋1ΫO#!*zlJC$>XQ䗙Y"%_SC6_K^c|݂  _ (_5y~eC|T_W]v3w;©}0qzUϽmWMd߉렔􃳃si7^H/V5_,#_Ww|v<&ERk?*r!'9X~e4|NJ" *gϿ׀o1,"YsIJ ӥ~:z^q9"]}_䈮"ˏǹ5'e~[Io{K|/q㡊a+οVhZ|ľeC Z6+b_ZJhObNn-)_sljyFeGjl~΀gW=2=ʄe=M2OITq!X!l9DcT_=RHi_ܾޢ~W G}-_JulW)j=DƊae<+q$<"5F*_7oTvTeU>~#6?q +_U}-j BuMIJiŸQ\.xy !ZE>b4j ew8+}k(iH9dErm~k_׀B¾{c__劎wEמ;ʺD{52/E0_eeln'I/;ܑcd3v}b3&!9# }{ tts7&4F7ɪ\QQҷ Uu֌ _Gk6pn鏋+pE?0?~PJD)*q+`Fd pq5S_^jֲ֥Kq1#(QU>:?D!wU(wb};W{`2߷(9Ԕ`9WS5bW_ 3KwcΎ'#J븏VlCFKȦ!݊بՠ2)|]F9v4 5/U>\Q_U|䭇PҞKG`5[+Eo D=+xI X~ՌQݏwؽD$_qK}<#?QW_I]jC97nWAjxᕟ[f'%*~Pk ϝp/w;+#Zrq9HTtҢ˗Vvh>p}Zx;?6^x4 O [ߎ\(gY[`x_,+XQ㺢TY'GzAp'>U*,?|2bq1ph='b|MsMOϾz>bu-gYb?_F̬\~;@sП4Μ7ltp[=խ}.b$][fIRueGՎb{8^d7cm>N:F[\rO|i]u'?o6^$_'4:&$>]kMuQ3̋^fs{v5N2ֲ4Sպ~.z&Ay݋D`>xM۝֝Ѩ޾޺TеF`: >h-"^=_/U_l9sfvD^ YSE7/[Q;O~`݃JgSDKJ۰*nJ`R_މJ4X)STx/e?\ {蟩y,*ZNhQnvqx!\RG*zHe ڑiq!pۼ$*Cje寇p88p"߿_S,Sߗa|M]7)y\kj8?_|-XzX)~2'{6n].r=ļZ0=.u]rcZ^Pq5@+5ÁMgs>NN~IײA|ͮu׺]O沝2؃^JF>^q xz8~ߏqt m,4=<:6-iȝC 94ErYv ]Er{7wu,'TLŝ\w6"Ƕ~!O}kd>9"X x.ۙACШsF\֝`;ʠq^N /_>Bq\FvY?^#j|JgNEk֠ |WWqKΰ?O?*fۉ5[3UdZ>qt05WϾwiH%.y!TGe}KpkX["ľvn##1骪~%A<0|pWS;Q:Ur"|(AYL(D}~(^t5}X jv|ՠ2kjVUN||-B߉~5_W_ykiߗHҮ[5x) 2k٠klybnW+_ s^Q ōo_=*}~>yA95d_SxOk`kj=DZny'>@k"kG_WwHמ>oT%\䋯IoV};Iןjy?*Zv|-}Dq+s5?-˦~~5pVkYdx[]o7CO,-_Wx=վ$q<뒽*auR/(cF&36ut'|}y%7=s𰴺ce.GE\ #Tg }~ %== xŮI#d|th5˦bԛE}};G{T+rhu(iׯzn>@Ft;K'\ c屽us :kZP4♿BU4ڿnK4|yq*9~d9 sd\'颔&@_,axF/N}J4Xr+> == x藻ƑvOo'q?r͗k+?*8/kK4d4?*?E ÅW$ <@h]o:@rX&zo:C~-LϾ=֯Dto`nx_w1k}]!&zxGѭ۱/uZs=m\E߶3kkqf#m- ƥwǞ[:(Odo~4X4q-| cuU/s6_vgQ~=#5~>k8&$C{b(K.kоu|ͮa,鼮mW|_O?9m7) ގSD_W/Ju0xk"վwpi$_׌>lQ#&+k=ȷ<## sӻy6",{@snQH4rmB*_i|ݳ_QKvxu߿J+Ovz`ځ{Ce #=+?G,O[q;wt9O5о2e[H|y̿r`w8d+_w䠟erVy 兇E_c 堟er׵|>uc!5u=VRNK+CB(Nk-ky%kz$E}ϣj_=۵.Fk.žiTuSk߻*ֳXZjd?Qkn-kyE_W{;JpޖTu=ob_+*۩<$iۿk?`):b_)_} '9_W{,{7~edoղ?ēM5r`oV+oEׇ$&_W%O>O齛VM.7ʜEGג*kQB,>k}"P}H|}Eձ:u?b=zž7?עu[kT:J=QZהuܪP>ו]Q|+kbսw]׊j^__ۤ$yv\5).Yiǫļ2zE[Zt[[8R[ss@Jqٕ'AQݏwؽDCu4MƋ3OKԾw꼑tt2kqk,яG9"kyhT/Z_|g 2'z\ vsP˧s_!h~&ٻS_c_$UܾKu~m8#Rp34Dfm6# wxel>y@:s_TG1TZoӦN5_Iqm(8P ^Y5|D#uuԕ#5 ެFn3uک+ƥf,`k1v3UZq(:ޙU/.n&%@?Jg.ݞOFWŤ/L'/4˟F{Զ < ( ~QAp'?_!1:/]ؙճZa+gX3]jѦleTϊQHNG<>;1![QK ߥHٮOV\:/OwhFqJF)(N}o7^^SU_W;t S_x? *|>x%{7A|>l:ϳ3ug_Wdt<}iaoK[o%n̉?~c1|}tǁ.뤜ZP7v3ԁ{y_Oc= ?ebVED4wo>o9$qHN$ !|cq_}dMMX@awߺ)qTeksZaZzQxsF)Ω"ZU/Wt+}=slDȑ5_W J|{Pe5cv~%^Ҭg7_Uv=$b=zPb??*Z:HGL%B|}ɐx=7"އG 5WCpǴz^9Hv+;iF|Y[^yF~4CjZ6 ]-?*Er_d|Mwn?W2igۯC4N#[MJKH|r]?-r=оԕ߱O [4@]|FwO;u޶T!?]A&Ъnᥒ i;!WRC <מ;ʺd|v^ eԯ {b֧h]\7mv5_k|Չr05?*ZIg_SMe|- ߗ!||h+XʶǿʧVeyLk8+Z["ΑR7jJ>V\q:׿ōʝ8r(m95?*kjk*^C,)X(Xk\5Qa_W9~,!8޾]|kfks.|^ G_KhUR޾SM,~~ _{獛 yk~:gYc5@erC^b=k|g7 W5?ְ}-?UߢY| Ju_eWՏ ˓z9Ԭ(_:c^:=~֧uc؝'b@!**H/y'ir|}?^ ??_tI8_E2n!sdBWqۓoD)rGOa_Z0)vsbvrV#7*WXG|]䠟e_}[5W5J~IpX+̸q$lMC&t|:4lItQY\Tn Z=h䎼˼#F#tBQT=1qQuDo  y|-v`{Yvb 4hc= 5߿8_M}](.4([E;%O_v}λRWjY(R>gD1(O87dW9FkϩOycHI;.1\HLn_K]M5ׯOlzlTܧRTQ;UzX1ϾƟ#iil/Zrjd?U{bڞ8勇umA9ub?/XSUݥ#|?+sw(_皯_^k鰺cy2kἐ|>Z[mu\C}h {y?{kkT\z~WչLjg9<+cw+]5?WkY5iNB*jLw ڲk]4b5ck+"^͚h_O,;l ZrHNZT"oDK_T< ӕYINܮI?gzOF_?.5 rBG;۪+WL &^Uǫ~|yA ?yua էY|y?2,؋  _p[\~R:汑"yK]fiuS3t~IVl4e?}w>E[@GS{0K0xo44 qI]"X:-\w?jrRO p#_0zx2QzVq?q^xFqJV^3HF%EI{Ǔ*^~_t-ǫ?#1"ګlf[şb<9N5s&3|،m>a=6wV<ƹ˜|Cd6q+\Ù;^2%.kn|X_Wjrf3buw҇^c'npX;:3Q?=N<ӃX9O_S7]㥛4<_ &2DŽ&X)?dq3?}**83^(+mY{4sX[ _4jA&_Α{2ʺT-',s-Y6iqQq> 8~{anqG_ə\߷7/?={6fsλC7bR~4ޙzVנ^x>[A>yΜm~ ۉXGb}w.%U-qvod\s3B>ys MOѵS OO7Ϋk8X$c陠j9kΟ9iWoy~15g|V .Ym)O-N!ˊ:%OWGcmջ`0 !6ד:GZ]G_1l}cdq Cq<}u0]p\;ڌ5 8?s)w`q\$^Rk/|g*|n0Ul~52_.?<p3lvp㍓a\z`^qyA,]bxfgiOxېe̘=rvu1r-smֻ?D8I&&=TNdem8w2MNQpOj_p*iNPDK =<=[1hvegTK|Ne#7nl\c#-c$KRJȵ섐ȥ]εVB,|Q9p+P8I1tc` q&~!2wB,5 +DhfbiOtutzrքA/q~|O32%NJV^b}-=3Rrm۱|ݺz~+Ft?뇗s!z-_]vm,_ةstG_} 4ؐ7,K~.XxZ ,}/2mB s^x6naz)+,\vx|"= Èa[ʇzWOz2zo ~86a"}r7ã; ν;8~)3+z5Yyʉvvq,~&~1&z6>㞂uXC^, RO>e!S_xwX \ƈy:GwMe ujkW'F9WOjң~[DzY/2 7ɥt+z%̽a,E_JXykMw(Q:6ޟr2DʄX4V6콨-.o\[Zx};\^_˥}W1xbIS/k*cgpL<'=N=߁x.KX9Yeٕ7.3` < Orz]^cx\/ YNg؟g͋׻0"S9.iY }ʴsnǟ6<^mZ=7O}MsݟrTTip~<=6!-1{~OwX0ru!Ged +> 9 wD8gqӢF*rh7vCF)z nmמNk94'y&O^$ 30d9'ӹؖUV*Aԭj9kwMl`ظSu֫%Xb]A\V =ּ1x=L/%-9dxekvn+5X=qOҍA=p"1[OTȄP\s Me-Z廷.)p?h,޳?C721<۰\{a˛h` qx?nx!t3ZrZv;rζ t|0'g}i<7u=ҁsjG͋cG>E?St9?#9}:oQ q=8iX=}斎RϹ +|Kd^iŖF\ ,>s w}cku1 Yw f NwVi_=F_Jђwys1auY>Lc](~Q¦~g9!G? gёLNz?@=Ι|Um8u:_K\V>b*>?t_}XCpDž|.3ͣwkqV_bzڲz;Ϸ%ϦQS|{nt/ xbxX{NYw\ՕTvqZ϶}fy9b+yn'.}}O20℺<5\eJ8 3[ʥ ؑAWOx]p{|xsM[y4$+D_`䂎ˑe%!ѳv4DKj6nYo{tM'Njۻ!,;֮:6eN?ZcF9q5#A6&`q8tV|xV:mXg γ/Ύ ^fM9Vo2˗l fu/0o7]30ѳ=Nm1Ǫ4|G\Yqipx,i˃u8_z󨃅-pN$&_O61ZMAt tgJ0/:jaֵo S'0%UO+UQׇsu!ǢQw[e:Nh}Ar&: /Ѷr ̩ fkцc׿YZzU3Ue+>.2X}{-OoXf:p XeTadz@ɏ}'KZsb?}j#fh1 \^VvcpY6l&M^<}G:^Oƈ$\OwX_1'ϾҥZ:r=x^[cwlbxR{?۲tϟَX918s8xK6Lϟ wəo޵/G-oy8>she4+jiE7wx[vc0X734bYk}pnӝ4jϴ=\{ya\AƈO>c.QD=xtN5\,Yy2xAe{ Ê*{\уza}þwuJ!== Sk2w;6ٽ GAra䫯{ jra!CfH$Mz/ЗVW3gZ)6p!S9;GF8/眙R<?'b;df;r9w %sfr^Lۿ:6{,::30ywͱioڏ,qrGdfb|bMsv59R5-WaH,_A{֔&/mdݟޥ}4+~ñpC^FX́FMrozs"ʚ?cߛtv0څAx=[FcryF5 p4VN.٬&>b~uXʓvBXZvЃr9u# rAZofe60l{%9n=*bL,y9a1'C:zڽSKemf}Vu3JVpCiw= M&ctWc!>y~ߡmqg.V#/9 8<?涚<q}{TeǑ#Ky¾8]u͊lYs9~e me e%w9>Np= %q|]۵/ˊZe59QsRߝw|n;lĹ%v՘ټ6^o?G>+4-ܞ6zCxZ9`_;#re6~#Wffnxo~3_ 5#5O &dٲKuw0dm -ŲNnn3%sZu0E,{vI_cMIxFۜ]1#sZ9ury19r86o*kQց3uWzc~8û X{}JɘV3NӰǛk]g{!ak!{xzӳL΃N8牷v˨e>e\Oivo'McO0 :qxmϲl)y˘b4S":ɹUi_Sɒ`0.+ӯ=`K.+xuI}lpڣk#Ἵ:òx=]=#^&ZF)5%øX O|V4|Y<ƪ 9Chtx{f\] oGf3^lq?\p<}7M\_ϯO5M7k^މ#ӭ›r>5 g9*5w?i ÏŸb=uXq}x}8q׏vou~:uL^>؉g-ao` ㅭjcru~ ׷ kc|rsK؃SUY+/eܜy\-'.jZޠ@OsU|Lxur뜬cv%x=+3mXbXK<9s5gdnSV͌೜HfpybΙ)nmZ㵙;|qoTl}eCu$gnO_ y7wof\17^6q}6, ܩ3|YXbU>9 UNLŧ5>r.&\Ul;e+6'eGr~-+ٲ73w&يJdR()d%2BNPdEHǵu^:9{egI5˾ؗSrnJur7SK#ɢVTn!-+e5Hr1h/'\sYW4$yC)Z]nKou4B?L⳻EI>vi,{?Eǣǡ0)|׺]I9ߥ|Ԛ-_˛3@K@M|tjw:%%RiF7Z?-1u ]ZxF0~'Afq͈;er=R~&[d]7<@gZk L_g[uJJ7<" vZCg %yGʧ)YzgItclϨ$-٭:ޟEMݱGuMu+CG!wK's:|s,]m.J.;1Qvmoe9 |͉[.uY2&<+u3OV}R7б{?KsE Z|7E1ޢ\ր3,f֐u:jGJdujU~}(.CrxP̻SG5/Ѣ}rAohy22UN4IS˘jzfNb^gD V|2.lyjPM5KǭzlAJyRx瑍$c= )-#Iԓh'l1"Vf8oExfH~hZh-pA3.]}ƢKeǩ:U뼽ATOٽez7y!v<*a;)GSeo<[2q:ȲÎ-D{w _`_~^~Q$٭ ,_zi%hLk%׶o=Eh+ lrh|D D?̒EdUqX39h,;-0[H珦?gv.YrkNF95#oƋYn V{My٣H+Q]3Iڙr.tUOJNE|u`ƵүȔ?e0̓mp=t=B]Z<‰:~P+F3b>븤RBq1Jvky[y;Sg\50߽x9ٵ% bدv s3Kzy"I3ۮN׌e*ɧo\(Klyq2HFN;zeiU>[H!Ʒ%sK>v<`U2%ޤ!U)϶~XRE6^'m.ʙ959)"צ3 Ej E5:]fw ?Qn["{gPu˸.SD|ֲksj;%,Q_eWd<0~ڠ"_zcﳲ@P͂f\!.ίr.ϟmK_etN4珯d enLJ?L&?7ͪ=EM4df.YohL';7HwlHEƸV~${F.g@;tlR|@St'.ͽ#,źU;,xYαW<:=jIْ |_nxU=y.K~w/lSeSD9QN\R^$'G}Cx5}1G랈þ qrfFWKڅ i߷g"7x2;ʿ[R~IŹkQPuq}5uE֭LtDe~֫}a-aH=bVp:<%WSi ^|5zB,8~2h/0%;-_3肦l}5{/T\7%oygQ[Fܟ<)埔xbf '^r, Ko6+;=1}˵-zeIt><[(_HnwPknMnz"+ϟv&|Ti(-9#WN]r\_3[_Bu~"l 1j,ctR7j|?IUPgY5r- ~4Rg>a^, NGC3Dzq:1vEb&'ޡ6bV;o^{^N䢽튈N:fl.ֽGTngUHn <,]\:vq QSϱԢ+}M,-sx_!۱fZKD)uԚ$!F=@=x(WC>;tA"}@O1agydȷ.7>*=\u kmPЍ} :l+tn;Y![#㪚,n{ƒVmG˴ӯ@1cvKV^&ze>=+FOlV|ǃ"|H0无TPM{?a^"gi}~]\S.M{ŃMt%X _Z:k5VyOs)]?D~=q}벗YGAM{tDaJNa]yls쵲!adW8U#r)qlZЪ%ޏo-sxHhq>Q <6]>CYgV/󣇡ó~ E|uc5tƑ>:K81+ }Hw4ds߷XW=sqn\CW\l,ʧ"I][!-!s~r4d\`S?n7[|BW.]ZxPpУ]۫HgoX{qC'y 9wnW~.RGKί!?q5"Ӗ _N"IgHs׿zNziSDߖ6]5[5!;>@V!7mb:J-)ߊs Q~$b/d3-ӂN9\MǦ4sW6ی^6B21_/^߫=+7]]m#˷UNE>f7vZ$/yy)L{OZBM~5iqp>U7y_AXߨ}g(쿵!ڙ9yڗ3_[R7r e"9DphOn^s ɴzs]5i)'6مzGpʢ}o%ݎ&oou!}=}#ޮ>#{*mS2ЛԺ3ZJPLktL'ݺ#,o_ qe#7r)ri22vZRc48=TT^ip"HTAktGtxCk76hXױ`ؚ6_eb.?!2o7Eh7N*0r9= 鍿q2PE5LLo5OzrKίhN^{ov[ՀY+K9awSe1pSKw^t"춧N,#:AnT-e_Z8Ϸwϴ:N}†foDk/ֺv&}};pmS[j!+㿃q6ALDs|;5յ77\"ipOؔJ-֜u l@s7߀; _Eƌ}&/a<ګ y*%D='ɲ밼&u1}.+8Q @m@|S3&՗52.ՑL~׎Ͻh?t9*,=yoߒIGhc'YmC?BImZ}[I-Lov ~խ4CMzSk0 Q_K*TI$u?cZՂaޔQ Ioo 0]+p T9eƅQ )yggq3Mr[k}Pσ--Ɯϧg0<o?WFN=:+>ڂ& p9`n& rm8cd2N#iUe#;rZMBhEY] /ZxIP]s$xhH9!K>+ qzߛ&&/JxcBFhp{hGJukM]8mzanߎzk_'as9SωzOuI15mu !I4uG |o1^kA*8_|0̏(0xc~Nuαcvb8iך8'ASnOu;GL} LDp$?rw`ֻy,`9:l<|Ӡ냌/oEkǘ'>Gpz_+,*G@-ć"|~x=8:v 27oqc>t#Dcf3^Gn?9t7a뜑(3^Oc|Z+'u';k/aoe?EC.އ%%?r#$l-oq;a_ iJmBɏu-f:.QV|rۊ0'(V9Y?Z4hk7;I"~yM>;mٰ>djgz/2m'sCoL! jL܆S"s'nrcd2dFBLn[j?˽=ڙ? ?rvL]Q;bʵ8#no ۣD-Ӽ^͗>`vyNN)) /X1V#5.ʹ,.^X~/K-W\щ!%g.[,twdb} g.h (-p}(Ӭv%Z$ E;uo~/kC+%I%kZvG}οH! ?5ICƑ{栽m>#7!HǼlCam2aяpZ6WW2ȏ;y%{QZ˓%ӌ]LEz.sYo<95].J2yh8vJaT!G#oO6趨 Q$)Pt*]FKZ%uXLo8羠Fx(҇lJoNFZwG?ϒHxjPDvnVMG+:L">~h-0~~x$gAwߠ ig.5nZ_Zد?w {y{ҺHv~j.{K\xhLs`П>]A 9#=z{oY1g2ӹO/fM&KӵqԞ颃L-;8wL?^_$YctK {nLj/K!Z42z,_^ ݓ-zhneșd%-8mJ^Z wG?_SnN Wy||8~aw r1OE6y Kg2, httCo!Q3=mȾqգ/n≯#cfq9jSȣ_13e6z&-m]mBbO󘚯GRhO-u3`7A/&iu?{\MoV$ |Rg7kvm-tm:q[=9C4yAd.[ RNڹXוL';}A;LqB;No yv85EOD}(AnMnB|Tޣ+-QW5͓ȬF, ?)L'5 a4/rC|̻-櫧?ɹME:sXW4 @;`uF=H/żaz ]z0uǕ ?2$WL1]f)2 hFy~"SK旑dzrɟRb~s W1h ^ُ }}<:=m1-?bN{d?-Ss6j[>/ iUľ+;'12Пu {rگOMeZ(d% :7VEujޯuؾ#imQt$Rs~{1_ %Ӯ׀*]' cyX8 mk%c%rY~ݩ1˯W,Y~]O!G9pȱX~i S;:&KCX>vrī,v{ rc%ځY~׃30>,=]@>ȧK@&B^ ǚr7dw7z1 rT7F"r={Y~d3]u_{4C,=pucuR__&˯du[ȯ f _=aF.4ȯ}7k!>q~N~9-t=ԇ!,2gu˯e,9rc,f,>=E{OPLgwz0_°?N3!V;~E=~}URX,x_'@~=r^mWmyq!<\kAzԓ:,}r_/M1 WɣUӀ,ρ˯c=1oR>'qbhȯu_{kM,>'_*Y~=1Y~Fh_ѐf_دJ  ^o !ׄ͗t ; s_zOB;#CZ󹭂Cׯ rJ2?k;NƽGwGg뎽1^pa~Q!#ĸm8+^W:=!+kxo,ƽJ3?z;p~'?No|z[,Ggn"zAUڇ:x+ד׋;+q?>.BO^w}ϖʼnuxYx=Ox=.zJQ[׽qߨxݭ8 ;ܿu u}b>p zA8?j=fJME|ж M1^=xl #2xx}w\o0T%|nҵqjuRݗ6]zuCh7tćǖ8m9W.'Tz9 z\Jޜzw'7u[臸_{=n'q\h SU}7Hc9xnxay7Qxӎ kS p߈&{>߈f$'Q.iwII^'')޳ۻBw~s }sm#吗g^t&%z#'Y?x 7e.c_b'B%.u&ir~ج zQ_Ia/Q~(uw@ B*J!~Fg~HSkcvM~[Hx\|qgx'Cg[S0^Mczme-j0^?5ecT }Iov} v~_W` |wuQkm_Ì׻/z1^8|\xTL|,O: z~k 4'p 40GB֯ h/? 6wL-^N/@/-QrЃB>zzߕ1mp0^j1^˛YOyqn\nV[.mεһ}X/l>qO[YNe|x9JVKVF"u 2:3L%nOBz"iX/SdW3A h_\r&/}ij [qKxݣBBo;pwq~ffl0cd+.Z'KxNǀ 7 g]oh;׷ PKxՐiι*mMU}Jxo(YH= ^!d-d"~<͖ <2k9]W(D\봘my7;rzo)1o}+Nqd*id+BTC~׉/igcI.uB'@W^ ?#S OCRVcR(o҇6| E?7|@=Aob\q>лe.7GB^9.8qN1^י}#u,Wri[gσ z5phG>AXstOy \Σ|B81Î|ݎ%ncBϧ׭N9A'P'wJ *Ex3hםN~m&GjZoɟKZ ۭNUI ^ Zh) N W, =Fi-Wgv7Y/xs nSw\bQصd0<}kW]*JpXirkRKǩ_8&ڧ: lcEV~^?k #„sVp|KIvkd7w=߇c(qV͵ݳکŷ"u;h&9N(_ɴuC){[& ǜ%/Ab?(% |9n`Ӽ 7l ݐv^,]>gt9,@ԷϚ{܇q: !6Muj312f{7xuQOzjH>=:u-q_ ȶ9XEx 06kb*ʽlӧ4ϮE}oԓ=r6atC_sk vüc\m3Aݒ;˂4ZjnOzO:*ZFs 3?z)ź4t\@" WPۊOhV7>cmrЏCߌޚ?D|;-wקN/kh_?|z'r=XdK8=Zs1mџ1|>uxBkDBl~ CX{oIϧIqDAk0Sτ"ix/79~wAO0N]-;5 l/iU}6#=*" "u3]}Of_J~liqWGw[|ɟ\ $?'DK3,5JYC"rt8d =n)LYy3+ A.th6j"pasY##/[ъ j;؃Rz>vls{GE=u15Iu[WCrO3VlN=gBgZmPxrk7zdU[@BSpyǼd*tb9g|'w6':!wͶOHǯ"f'ndB[w~½-ߔNa^<0zǐݚ;&o[[OJS_f>هDubЃWܠ5KZNR_ shq}Ⱥɣ3풚_0_w%juQCeiCu yѢC'Pؽ}^i姥1՝Jo<-gjR81mtt61 9c4uNtJJ۲n}r7˘7"3rڗ1vFu;%/M\!]S/v&3տ[ ߨS5NTm-֫gz$yWt 2IF lq'.&8~1M ?od:8uWJn6=f^$ƳdM*mw,+Mp@ۓOyBJxmG;x=%q8]1A;;.E ;'"&Ӟz>H~'V;4-?Ս}F^?p*SO<!dH6#6DzSv#j]3t?,(1k2v%o2mFH+ݪBWvHgޥ+5=Z;I{pRtpaGaׅ2߹L ^^P{` eCkO;$pM٣;|oNEu^O>2Nqzjey\,ZHԞZ}[۫g'/lٓu!g]XВ.5>|gxَ랑7]kvLkLK\Eŗ[hC@Z$ÇҨݚ1#vNdrkК78H;\O 2p*n8㦒嶳-ʴ N}}v_o^ݻ>Dˋz}1uOk%3tr|6yCiLCwyfD.ݛ u %䫬nUڪYTVI%L#ܯ:%ϘsT_2}}Obʯ19g짚vAüiњz^-i=WWm҂d ړs8tie?y"cMc9aDn *_AS^roy}~_@Wqoq>{\@2e2-:2ݐι1a=4 횀ޤ˶Ow>c\>T/}r^( -~1S!eKYMY ?9o՜:##˴.衅y+Cdߊf˸껟%뫭F|{۞6,n,zctփG=,f&=FUP8a&Ó Ftm?jӡ8~~l 5y}Y=Ǵ߾}~m~Z-iK?F &92}$ff$[:G/;Oڃ$PM  rߟ"_wu+֨߅p5QazdGAdpɦ~gmȱ8wg'Lx:3Osx'Ӳ+yC9<.~|nc㵕K}֌i-?AjVlA}_`!>C%: ʹVv:8'?;:¾6|r>5:M5C K {,/ײ Zpn*>?y]vhws tExz_>jrQO;qb_wpqQdjEY 9WhUL?<,EV4< +i嫲&#Ȣ]ޓ)2OW*S~C.p}Gg7ޯRer3N[Z WH;Nc;fY}*f4nUZPsq<:Q)OovMz {yn4`|%n5~fx2`kN5L?}*˧;or ?=SqF~Gs\WhSz#Η9'hCBYm{/]Jpo_?*4ހ~k^VjI!Vcnet|cA}PDI\DIqGm; uM#(݆& u @_MsҎ7=^̴lJEPڼ,gmI4 NҔ TF|qb_C\.o"~ԕvsZ+iu)]yݳd\x0E:1O>g4[I^)s:8ޖ|/5cnٟy/C(%9i陠lzɓ`wc}' 2}FsC*R SNwD )W=L &\K[tȓF.E =f'%)]m%خ=Í 6O;2[pTr{\ ғ~ciT_{{?̛O(xs(Dᨷӯ_1 107bqKAg"\Zs.6iJEٯin3ݯ׼>KA_Oy]x)lN*AyJ :ұio=hvd6tظߕV( Sػ]o)k^r#l)J̌!m(@YNsϪJ'ھ!?U,Ex2t/]=I/Roj#0|Ϸi2aX+_ͭ/.>t\(^ =xo k {CN/pOwȥ^=9zQe Y/ג>ߵӁ=!}<Z;zdoYOː0Q7t>߮$?*Cvwr#>_J_~m|Vп>t+>_>_~=w.O=4u;c@O7wgU4тG zSp_t>_^_|϶B[xX@S^8!]:CaS ~:+`) ҡ=zֱw㡇}a}s?ZS lzl1 ؃]0O{ S!}o Pl}ПȄAĿE|$̧1E=8u1k~\C:\!؜Ae|=%{wZJgP>dIӧu~*V߰ϨWb}|Y5{.2eп|na;u{INGS$}}qm%}mH|%ߓ =$}H|t|SǗMa7=؅~ti>`|gПz}q|Ѧ˷2ZB/z \|YK%Oe}YOp |/՞ }>Ϗ? &<0^MA` ze8 =_wg<9>>uĴr[ }{ ||y/8==_=Ѿ)޳7M} a}"kob}AXo&7`}>[O[pwf}׳|;yuz)Hf:8/"@cU=Ӻ||;>_n>_Q+c}o6}P;zlU*HOb}V loGgPVz׸*ەӇ99͞~ ؁tU."j- $^>Æ:s]s?^&^9 v^@֧|096( ( ϗ}j>߀ͬw'eiXwg})X}05;|nu'iެ7CG޳^Ofi(;ݚž=FU}Ukk?z]Htz.vF~ʷI'BNOey \wPu? ~ۜk;* gnA_eyW uN߫mxA|ؿCyC;J;q<,dz%#._Gbf18_|%_E;>xH{dapP.p vp>/.[ ksطJs}m%_Q}x {ցv2]i:Cb^Ad8Lw''}c.m.e{G}s>`z6ַ;f+:]:c^v{hj_KT|fI{#CQaU]_%ョt"j}dk"9K=5l%w9*sLFAYazx,ϴu 59W+gpox3uDANwO47~F[2ZUMfúT/I֙5w7NohրݡӣSxjƉGzҺl iٌ)6[(aD% _}'Ǯ {gB{L;[4&d 4%7f>>%'#K7V=s")}j~Sd:ny6yc"ơAIm`kkxGsL: ;l mTox-`3 8^U|s5^o,d>r|A{1\LĿA|Ko 79AKQ׌ mRة7øktⱑNjHyxhfΝ I?U|>+W3 :nj<fx)b^#?~2NɆyB sv"rk)|הMG_&;o>7nA2p98FI/[6 ~w{ w!vG{z_GY&ן+ʅ]B~}(Wȯu',gATwa7(a7yT#? {Yec=I.zuw]W`'TTy~:ޣ/.{f dq;b9gzi{/h?GTa0ޕ'lqMgf=g+y ] ׅޓ#|%Mmctȯ7JeWK_⽻=׆_?Mdz_b:)!7CnGTg[Cn\}59 ב~1}%`l每Y1W Q?:roz9؇!v+8!yz> | _VɳUv`Ixe;uퟸך2xߩuQ0k̃{b]_^st~<_'#;尃,N{֐_=)]~rQ9qkGb ks5|>\14G }%%ޮ-!Z%ue>FO|n nNczUO{#\&ky R7  U**KnA/%ro80^AP8x=JW u0#^ߡ= y6u|5M73^A^x/x} a_qvaVa^zڌ+{,!|ڌ=! |_j|]^8Aw!UrG >Volx}9יc Í#`o ; }Q_g_7**1?~*r#ӐOe KTv/a?D, k~!!8P?}ہkEz??w=<σ:s !P?˩m_ða?Wߪ{ByHpyx};α 쇼w,QrC% [d۶EGZ1\O@cM?} _1߻ xQv߹$TۣP6 C4Q 3?JU}s4ɧ88wٸaLa$_~@}ۇDd2wz)7E V2M|]{Y!OS6kh&͕h-27ob$9Nwybu7/ܭ5h:\nQYK:ъ'vt)6)E ޑ1 0N3oSzW'>0V=ZzT/]7MHyBs?۝ҳCx=ff%qᓊ 5MxϨyde<m,oy$? A{7A[!_ ҷ`ݑ9^Kws:oܛ,?8AKS0pqF}gWS릴Ӊzs4|kJxka^?/<4ehDSNY7ofi&2Z>. (eG(ĐbG]5hIQt0.D[TÍꓑQV/>$Ӝy#G~v!Ƴ6l:-1x8-z.al.nal[|O9}]36ZnFl[a@O ]fNL1AKf]LF'ꍉ 3ӷ^B3eݮ[4l j$qxuj'.G{\)H%rQ2>W: \i,$2ioupg@F:8 F^>l^L}=_Zձ~lsa"1M$ޟLѵZ~Ty䛉, f}ի\z# 4RgC--$qn3tV=lvf^aMZ"s0-7\ji_!eON[DKw?ײ|p觩idqXۅk"Xq{ $}<5>_B$}$}6fZ6 ϗqϗiV7]狨G I OO+coO \vXJ~1T2 aT |>~׵#^A q_>z;!>[|mα>ߗJA?J~06rCv CUTzC}>V\X ._8B}| Ϸ,Bk u?>U'{άϞQ驳>_GG盿 >+u u6D9ȭG!i?ʮlAyO ?<|G>Oϗ|!N|kz?a7}/?>AOe?o0 |E!}W8Ob<1_o Aڐ\`nܺ;QNw}z /P@]쥪.4>IS{<Y,g??^. }}ZŚaGA/ *{QUqhd}>|~>ߍ<>m'86a}>(߱>_[=öO/[uRI~$~7M_|rP"^G?{|Xȯ| aw>X~WָoĽNʎ8+>+p>˯h}b~N/P.|Wa}D_ГT^C;Y~= vqhoGq (ȩwr2)sʞsX} w{O ˬ}d_?m:z䰇$èy#Ti6"]ÿ [ʉ}X~]|eķ+Y~]І׽qU.=BUvD~\~_9`穀KoUzx eU=קTȫ;@zj /so~s#~WUvѿB~'UPBON ~*źzpݙ܆<W~/ +Y~ߑ _<N5}5_OS^Es ?xy Q!Vڿih}2ٰ=Y~=_ÿL:7p/3 _^-DlGe5=-lC5.wJ6ſsn[PC4z1MRPu˃VS"6ΙXɌ>oU~\ݏ&.~4a?@fw.pyꗬc}7_N(ݿV E O8̦S+O!ߕ|=DVg|!o/UD~Gz/H&UP\69V9=Zݫ'ڗgN(bI"%d]+*6 `<+0P20̇iN?G3mk@*~[W6t5?ĎLl=z'ܷ Ԅ]bҘ&M2^%%J{䣽|0=BoOK4Fʵƺ!_M.dM i)#!? X2uCfؕ!_@@ T琛AS{?A<_)gyH,OT<.q,ٻǯ}B9s!}5C*ѯMiG~8^8*O_ƹ }hC.U}!^E!WR`_(BЄ!q{%<yxE.{b>O}Ew?<DJ=Oĸ GU~ %7ƞ,i!SY UcayȦ,i:!cyH'ȷxV[1?uyZZI S孊L?éW]W4*:%nksj~n,KYϼ;Xv_Y~y hi7m/d΢q߸y[> ?釭®iQ ;Leܕ \.;w5޹,h| ta=z=-+KCsdo ͞oDv4_)9kۯQ X^2Ϋm/f7c[M=Nj`Zsf#Z%!G߈I=-yEMdLےG5Gr8HZBޤ&&6/KY7к~ϗ`QL_p?YFz2mgEVi,*ugi7~__s#iա+MlzqF 'hSWӼ KQl,}jdC޹̈́)pLOFr Sδ|>t+~%vL_g$-}_qZ=tys2r)Z(mr1} -ғzrղg>idrl"՗1.xř3s3Loc?)k9O3-'D{4or|b/L-G8i|H%;nY _Fb}P~L߅1-1>Wg8Ůj3 ƅwGw:rqab1=HCшGtn+8}fv;3~S|(a^~}Όf|UV@vA[j U[ażqRIDWOny:spc'QKۏݘwH:;_OF>Pv9Dak:W v譎Fh+kC Cre4KZMCѕR{u ,ew~rlZ 7r Nxˆ1~\it~j mr~q=]~s9Knzy&Y0==YsNZG6i (8<63'k,Ċ[0m9i_L=ᶷ`M5hD<');O4|}/Q%Cr8p-R$qߟMfޛ~|]g#>Q(Z,mScW~u$ŕSai?ո޿h, ;n3}yuq6\ø̇iy]y˽y)S=0ۘjrz~47{=L[Es('?0E̛77lCk޶8o;t],YkӴ3BLJ?Bvffpt/x2,ѽ۸+E1yJs|~}#OOm1mriZ561v,y5DᰚӡW9.W7kz*`籂闯tNݢ [dz>z#ǔzbfCv]"C.و߼Sxe;ws0y<.]? Xxm ڤ5lRr(jɕ V)ͣ54Y.#=㚩ҦnW"}2P]pmhyFr3dV?ERޯwʛ;~^*Tq$YC$J'cvJǢ%y oI+ yȒ~,<$LH[?UQ=CXcC}ҠQ?O ?,Qϐ7(G?;ڿ4T١: }=4 ~U!'9_[􂞃7=y#`GIl9;(T,rb:X~qێ!wԙ!O!Aqx!w?@^;]V1CL^R=Eރ?%^)O7Ff>%Tvw6#^%ewϟ3 Tr/_}?aRiOCo<-2>'!TUD~}koޑC?7=s!Or't=w?X?pIϤ+PK{xuO=u{tN`)X?$ѱ. o߸bgaT@ov@)ЧPb.e뇜Q7xX!x0 =zkĿeTQ% o=ʾq'  ]ߗ++?G@n=[ʩhO_ nBA"}=Ɂ wX?$b8eY?$2FKG';~9U!xwzBߩ#}KKDgolנ!V~H=Ɇ]WahL!Xhij~i{{A)Zn¾4748+ø]ϛ[GZuyuj"B~\Džt9`#I%:+~ݤ_M:>~~\)bX޶؇[p N1Xu5GGHJ\R/ ?rV!|Xaꡨ>Lv;09}g}3;яB>{sNZb<}OSRQ9W}㜎r@mп'"-1ȻpY&7:wJnjР``\cB0=(̫JGΟBqJ>8zJGiq?ז2a< dϲjc2kWǚS.UZmh~!; ԛ.|Nc$ 5r3﯋z>R*{ң1+0߁ӯ|!},5/E1ұ>`@gm⯔cn24~c)yKZѾosدb\U(vkh a\'=M-sX>/ga؏(:X] 4E~g%a-G-c-m"t[;gz3.I'lIA7ER>wIu~h|8sxEơ~k` Q-Qx=Diȇ>Yo)xlqycڷS(u:1Ïy-}k͐WiUϣ3=CXUyAa{S دт|)R_hfxIM'GCLtk~؟=)52Ǩ3 znwt +8re /`ZR55~?o=WwAw>#P?(.7sfTU*{9uIYHmu8 |?C{P'w gm\[&jcgaɅg{f9ԷlQxaw?%X_"gS,X@uu_υޅ.2556(2=$E_wJN kS;fH#~ꆆ_Q/!;=W!J:o>Uڂ냑_/Un@{K=%=oU]V=xĖJ?󡲣CAO`X>] :h`nP]8ٰqпb_/7=z_{u9{ϣ~x[+G}  Z~)5F0}#~@놰k п6eRu;/7W}VOԩ|tTI^G"|q 豣a!4ѻQNЦ¬55kSө UN7 c_%e1f'r^HsFr5wQWNߟ|ϙ*ڰ7LcB;sQOyW,ضMG?Kj {.\n#[vM $lC ϱHXӞ8~p%h`7e1MħJ|Q?P }&"ǒհ9JT(_K pv>mv4Jo.>__7yܜ,4nt77!?*LݙoOWou KgsVъ=Ƶ.}|`iraw2uq,||Ң3?4~4x"/,oJv-͖" &߈u~^#tWͻw0(#8Io_.@c"r&g=>=I׍lu"k;}#5ct[(j Wۑo_~hUCz6@!e]O2G뗑ӯcV>׵ۺc_9+"g&~KCur2Y&;Ѻnh~-L3gHGg](˸Z+C]xJ cZCWueq}I]ōƈ|߸q16;$|F﹉7KbڸϋprOC}~fb31? =W/33p_@cd?;v7zy{I5P7|x1 7ڎ{!k:9;7&zެO8S{oAx AS{]8l*7h}^&hokjN|h݌FcU_|8|-üqߏ=h'ӵ-c\s{8C8;q`oԫ4mƌ>|c%ߩ)|ߘ}67ޅ^hw+׫-Ui@}-wO3Ƚc0pzt>h2ƃwqxyc+ZZDrX/x˱yH}FAz7ve\]g=zotaq¿~p;_}V>3oiy?qx8q Oo{}fo|xsܔf}n;op}UxUBr$9gY7F .>p$7z"_P,!W~ yG{Bj9FVeyHa, ~JحV`GÿL Cޣ??.ս'谗?I !`E' c!{r+/@?hf,R7$ #q;Z𻸅;x=XC/\Ā+M)Czp=wq8x>b+ƕ{6{A,\`\&5X20-{,Y!ƪ{,!Opߨzg{3 {>|s^ {aBp?~Y} }9C/CL>!ex=: \e!ʃ1n[V@m0y${or ?\Uv;<~6ޣfyNRayH7.yؐExǸ>Seo@?y*9Q2%7B@?g_K!D-G?,;!Z,a򐫰wey1G;Xb~k{%DYRu#*$>㥓%u\؃%]$>:dow\Aum~Ȝ8ؑ7 $?tBog8W׋`W#Trп?x=g*uú68ի(Uv&~>`'7,<ނ]<R>Ud닋.ƽ>ɷUߕ(w!Zus b8vDX~|/_ڃ^; Rw-YGoW0>/r^R/kxmx OS ,P/P { 0o\Df; C8; w؁Qfu1/&nKM׃?`?p8l.J O SƩ' =(B: RʞQ=h(qUxNty@%0T_ |]!bf?xx {e?Y*;h8 }oO]*_7u__d)c"~@?0F2^/9P4]eL  =Z}Jx Jx}djo"/x=dC>TU~Jb]+1^Wk>] {O' s;A9)!=^CSeI Aem0u-߯}mC![zeJnþP `Z} |qX೏0^W\|۱_ՠx};ƏwJ ~Mո/G{*u4xݫ&4^fNx{On#+x-ү <~(B x>SOe=qi>Ԍ:&:\@i84zR1^2HW}.g=kMA؇q?>t #1^G"x݂:`,æWoon~|Oտ)ov3_ï g7]X=x&?׷TW/ ^'[;םwx /Swпn<\N$-C`ngw zj¿L;_T/I2&߀O֦Te 9xmy !2п~ Ug*S.Es5 (Uûн3k ^C'X+\۰!?NIlz#k@=k81^+>x}~=!o=x_7ǹLy)pºbuwO@~ fx}؄|nuп~H?(-Gl|w= Dy||gu>/3!݃ÉOև VxBKݰAẁ Ox=Te_&8+rJ=> (zB˗BNz7>[{ʮj] 9nK7@zσk臜~gO`PzϠc^߀mojZZ+~*멲k x-^{DSC*zwα-/u V kSLdwB_G}͑7)׻ GU^SILo y8ȯBw]{?{ NNhrj>׫!{ /51[Ui~ͷ=uU/{?)mo@%G E:>_?KD1^x}ax}Џ>d>pMwg}4_J{IS*[e7@iI#*ȕ#a75 |Mp\+_np=?{?WV`0-^r{y!^y0j:w쵂/R;7bYNl#.c=˹G=|)}Ѿ ?q:f"~ ,b{ \Z.9=~j*Bva:]8f@~](Y%Cz!B?s_]*_;^kjG (ú_FOB?dܤ9B?$`"0\!/fB?d7G+[lB)TO ױN}yD+ro^y A;c}V#1ⷣ!ƠH!C!3 ~ȧ߄~Ȯg˅~m kL`ڪ|~Zh+h3̗XW5#6D>֋>^=cDt[ r =_ E5žߌD|3qA)~hJ!V Z|>Oo"]v5A[FXb|p.E}ׅ~Ȓo~U(41T3|<=k9ז\ |A.gZ5e)=a*?*U;A~].TG2K7x7ʫoߓW;B/V'r5$BғY n! 6 1סo _3 =[O|JR2V=z47E+}c_@.TޓFȋow/ !꽺k=+@&!_F%/&!m^+O3!~. o!*w_uU>߻&Χ:#=|G>Lw`h4|7ޓ~ ##(*<10++.BR _G޹8_A𓬒CX 7N  OPZ_g@~=k  HEx/ u1M_~T 'ha$KUՓ-dzS+򶙓k5-xC&(Ihǹv*f^}2v>̐YiRVVHzGor~T0G&;]`Lnr-3.3F'ױL}|ՙ?2i8қzٜbBFْChmh wr>d#v.t}jq7@g7C<5lzZ+~o+Y?>C? Gw$'rfcكszޒE>UdǰSlu'%{ՎknuOmބk "(oG L6t Uв' F/~oη!Wt`:Ē׫uirR"c秜b?md+HA QfOy56<6{Z4ź!MJz`Jƚ ws͐|q y~1[AfZMX'EӐ[({wo$/%u&u%Ӹ# i1ZbWw\җҋלu<ě2i!?~3}WO 8d`s++֢czz]}UM@[Q6B{9i3 }xC ].tZ>y%cnA 76?p3Gy<'cNǼK0;7ąδ5Ey:YwQ{9:dRFߓԤuUKi6Qk??e2)ij+3]hLe֐\sBfQwq^j:j̱铺QgjT:?S l^#{ iF>H=qrzhKxmaJ$Fx}= z7ۇr|%ޓdwtؿ+E=2v,-iCC}ǽ GW~?p$4 W_s» xkn$aVTT,u= : 6 tQ83%~(hל>$$y{y*">6Z(u3YH\}^cW'%=Z%^YJ^]l =5Z$uߴ]c" #b~5gmaz0v3WO[aMAߣנMJ g i-uy!m: ya%3ï*_EN^k!S B{9:R Tӭ`y}Bw? @jPgkp#6s|oKSo?ú #?+O5s6Hx}*yIx+y]j ;_*O"lq5&/ ˮ[OuY{fdҷƄך,W=yO46Cۺ I3=Eژi|>u79 !>f&ՎG%#~ W<<OnwԎ֥y=],vu.jVﺖvdޮZ*>] ^[A.S3=MO:he}_yN oy,ks>>=A=151. *|9?QvQգDa}\t%5XWj}? L1-iy2WBku$CQ(r{ܐ޹|>Ohg7MOؔ={%3ƾp8aI~ۻk Id_LuU<## wOQYӃi>7!َ^ȺqIS߇/"ޯd)/7;8ݞNϙu+֊]zRM%5r\h  (D7L˖IJkx<#Yj<:zc5(cvU. ~gGB?swΦΖSQikGƌSicIU`N.g8،p EU~}+C?ft'V[I%Mr3m9 #Rs9x>76Bs¾Ǚo99Oڟ(ט@ (d~:6tloz7Q+Y~r{mzb߫ ŦLֈ(іu紺 <<]x~b}Hru;{7SwoF]~]9PМ~ ~A/q;s;y]8r:;?w֜3V^K~Sn">FA6e1Q(w ^xA"FVP}u"~5祑(etϼRrˤQJܞbg*O!ž:Oh:A^hG4pj?_@C0<^H%(&WAO^aA+O?ª}e/K4O|m?QSݏbT܉y6K 'QC{ߔt ?Fi, #OO95zGѢN\mAmn:AaNݼLqv/JSJ Гv|=t\՞6pvu_Ҙ[|<{[4y⣲lN6mZGޯcӦK_;%2"4aԛhհKS:M.Zݼvj6#8ɜ7mUөcdSd'c$3t19.k\>L W=2r'G8?Sus#oYIyzoWL%o"{9e", Qo5/ܭ5 -MM1dkWC|/~\<85홎8bKaON`…L۩3zsDKOG߹|#+{r?yi:1r2Zqv$`\G(4wfh5J+PyQDV/;^qEN.՟ =/:%Ѯ=D};Ù6ٔL}}^pQc}sz(ZG#Πdg/́Wuthʕ(@G ujϱJJ_gm*5G 樵)dݣ[ʋ h[)߾dҿ~0]$hS6`vl*;KNbrK]:Y{B2c?`w ڄ<{r²c}XD[ j7BeYɔ+4XsyX@@A~G5)׃(0=Wt%)D)mԩ*mHχBDv|)98 hDky~z23w!^i}B7/30:mho&(a3^JM͔P%>uky5^/!c$n+zv^?h\.: >ΣX&.-N»7ȟs)cx}zkk>z0^sACkϼ'PN x-׷0^ȟx= }3ki,[2W!\~uf1^^Odv: ܾx}ׁOxLxx]zas_ajs:i?ۂ*ϋ>:xrs7's^WIc@vyjF{y؇ӻ5øpzO]g"ܚzk+M3^7b*g/L+Nhq;8׻|;^cu/vzꀪh[PءX"\*Sx^bv<Na\}w\MegRd@V2B;hwTH$-ʞ}uqus=_gL+G;̯f~}! ӷ9yLN6Χ+hwL:(U1[>y__?Qb~=_̯ 4}_:Xaz̯;g~]$?"_Lw;]L}(T&2j(~:QhrVIVwE?NN_~QNɟD9gmOþ0UB6]=6V݀fs=qyRx[іoN/ıKnD*YH{' ~Mr]9lb:qX:B}?ǝ{|xۋ0h9Of=M<"r{/^\|) %c8][ǩv*al"M?(S77 {BC"m]/}_}BeS8\ ClR}Y1^KMZɋcN)n°g2vsNneTn1d?}{(PjX[0/7.idL®Cה_3>dδyJ Q^ԩMnϖiy^:2_NQSsӢMonXX"L#j0?bU<dqjh2Tn1ܥu]W3kc_N׍XSȿtB[ 2:;E3_Dش/C}dY{uXmE(NH>&1>&ӡK峹hσ1rϜsy=mǪy(w=\;)4zᙐYEV_;ע/ 8=4ϫ:IC^-<^ݳzM~U!'TT?d㼉RSumHCo9R5IT~Hh c??'![~Ȫ뇴d2uhg.Cz)"}ϒY?O5C¡gSb!BX?DGC~b'9 x E'w ;J^(~2=7K1B;ԃCF~[9!~ȃCr;C2Y?#$~e9ya2z-׃ֲ~ȧuد?[P(/D{Г* *s;2r_ }C? 3Ѓ-A?o=ؑ&=0A?dN +@;Y!~ȩbgV>4(n=_ǘ뇜_?zBP ;b X?$^C~C~θ!X?]!g~* `2;}8tlE&-CE[tKۊ\ G>('Ѻm %voY}ȳtۯNr"q'L4M;,M#sm_a;)hWeV#YލOﻢ|1증@sos+~|= <yDv[kȥ؂k?/+tikcp==R?nszy?V&S}~.;mO hyɋx?~1wkq  W t8So1#.z?\eѬ/#x#P9A^~VXbUӼyՊޘ+wC{Ѵe}/Y\Ue׵Mu ;E 5xDZihds1K;_r8 \Y  yxN~8x0Rn^JqoRՑyE;+o-?4ϕz U5"PYSb"GvO])#k'B[ּ6|,^m>hGJn|ޑod'R/3e™^ F2֗Ut|Ҳޯmj4Rn:НB E3wY2 6E~ 7gs;@?"}4`E! LFw=(sZc/ %c>u0O~)ÌQ7Wy]7?2ǑtY_W>#}s :=/Qh.շh݀5H;;2)~R{~ B2+ĦnR{Ef"K}-n`/ ^뱟^j~#&Rs`b }Ћ?2^fs. =Ч>jeL3\ e{@~dm5Sb{Mma;+c=x2ioBגfl/Cl/Zػ<`{*mb{Ы~C?xżYog=4.G 9 'IneC?dw\;Lb{>^]b`/yb{^֫ĉe&jco\o 2*gLZ/)z 89F](⮠*.B9‘ (F%^jurl/-a{l/s,WLHg3t!Y-t_>eh#v %c^p;!h2Ͱnʘl^[PS?"#-/m`/VK< 982`{b{^˜0d{dK@YhvQŰ){19e. HÞi2ϱl/sÃe6y2u|/L2W^f>Jjλ|zu^+Dщiݵ:鉞UrxYv/t|qu<Vv22MrxB{%2QƩKl|/2]閙RV.M<\A{ֶ' `'ʹA)LmkL6eו@_GַFfriWNi\?W> w. ~D2L햧8҂ ڂf\s-C\BVr~@qˤ2t0߉4O틄(.} V`*0ΩܽA69O_Գk} ߋ\ahoB<ί-#3UczپUzD~&gMwpQ^d -؍>Sh]3t,_#m5 4hҏ[#X.=Sޟi(cGwΏ&?\!v>33M)Pb#BiT?|(}pX Bb6|П̋y'9C]nJ3߹5{Tr OlFyUڹsrS|C9K բ՞!)6ɤ~d3J\1S_6LHY9rMO#YKtNC}/ZnKqey$ů_D뾕{O=/%ůׅ)Ft)~=ߌ?RGn'A_Wk+a3vEdx˰ov!=; 8&ƯǺ2~(nV:s Od1~lqhƯ1.uy?7|,5𴍌_a:pߑE2~]no.VW gz-Q'arkI@^V1~ٌ{3a| `̣, z?##gIgEou]O׃`uƯ[y ƯtkY?9G1߶_eۀ_'^:^_hSvŽPM=(qjwEЛ?"_-@Xb5az!t2F>ff3~w-YeuƯKNo\/{u}#P#'\0~}Qx{kƇ_?70~^Ggu^{(_UfWy7\tsͭUsOIkjn=ToYڌr-mHޣݯWuEPǡIA鴫cJ-dy^d~$J!G~\{hǿ,FyG)&kr\uvᒑU؍z9KU{y۱Y3KLG~.юӇ6Q;\tb'Ct&r~l%.?s,O,V-{Oіi}^sZNV'я9{ DHsvEAؿ ]ޟu86.?" `zz s;JִMJruc9_ϥ壝V~  ]zllvH 'Q-#¼WgF4mԓO-|T&90=q dk82G= 0x.z2DENJM+'h^992-=;rȋ2ytM=EWh~喣h˝iЎc?5uC3D5ӸFu>;Tpi!xyhiݓSoJ-s=ZOX4i 펼#uI;ݰWsdž8?8?7se'WRq7 Tzxs+s?ՙ>?'yv}8n&<@?9GsA*{r<8?pOլckG-`TCow! :t<7ɯ ϐ9 `kk7VPL)q3PAM¼0liKz)lvsږw% xS9X6o`5S5v#NJ'Ոx58ޮJLj8,~_)s(kz>[(o!@wQA-jqd7힟v~`}ɡo7'= xG{'۽20|<<7O+^ N51ވ߀z;^~0=0^uBr qP%K@9nKco7v C[#x~Joעvcq_3_42O [ I1p^=9nۖoWٟ^v)۝x]p]Wx}1|^5Huɋ9R~*Kʯӓ[~E6KuEd!>oQR~}Sq_R~+o<+Lޗ̯%2^ ?u7+*c_c~U9_C[Op~Jў)c!^OA / Ոx0[y6;W*k'O6Q)2{3_Ty>*j-Te~=X9;?A9 ̯^=_/PzQ!u?׵̯ծ yI[,l.QG@=˯%ʱ%G G3f~=z.#__@|:9=Ea:uZ#/e#~qF#x9=vP? ОGp 0D.72_m׈.Fŀ8?s~_$5_o/`~vn3ZG͔A18>aeq#}+.Ĺ>~s+>~u̯0u b#/cTb~=ڟu;pW0 ⁵(}KM:ksuAY{{.__9y^:?[RG'qFG~(~׈s?ҁx\XVx`:q^c~2ۓL~e_B e_f^2x?_azB#%ocף?j<qjNO? M 7N;n8kZ{0ܣUE~;{!0eI/3?ėi2xē\K}5UވVWzǀio AI#~r C;$P e1=2u?.[~f%H!Ό /~??}s#.渀ycerꦸ\\z! F9 ~~/A;2?Ӑ;$'qwޏ-j]Esnz(Ϻ/1𶅢˚MYE ljN0>#Sd~gM+Iҩ2έ|0G;1_w}94]Nբp_^2ҧZ~8O7cZb̀wNR"_n[<%5;o-^BCnq/Hxs܋OӛZ'gb;j^pkZd gr;CG^< GCuC/0QbUeN' tD9D--mi؇/"rY۞d~No^XŠd8vNuG4ohh7,̏RNWSVʒ`Kos籎P/ 0daԥyFdL%"͛QѼ?<;|$Nrھ&+Xg_M6b7s C݂0BwNlq T:ݼ?8O5F7"ʇ&`}7I$)MPt0|Ye|ؐ=ʡ]1_O؍tx:߃YS.\x6_%S~%?C#^_tiZ}zOtS'Sm{Қv\ٺ^̝Kf>yjպ1gDJvC/>m\0Y%;Ee773{N% :*5MUb p^_V_W-Sʯ?fTxHR~}G^3_G_#*~#_-׿4!E[ ޗ̯Nc~= {uuV]_3d~ݧu}܎?b~]so]h/ \$ƳZgg_ho(5s(kum;r|>!7NHO}5Z2@M_ϛ`G2x4^Έ$Y>}|{9-,}z]z`?{2uzױu{ZuC]V`|^Mg#1 /ϲ8Ӛz'g1^L_1)ӌ!ߓ2sy\S߹FGg&GvD.}z-@ۃ&` oF}/WgN#$0~=Y8~-z&^̯S߁_/A5~~pg</kAۂa>x^̯2Ȃ{1u=̯M__+"Nj?rħ5Lvo7+PD_n)Cv変)TYmT!,!3xH#{yw_7mňk_ԗ{v^w>VRxȒ9\vf<,RC'JݽU)dt)K?g<|IrDQ~%"!ձ,B\껈UM%!.-|79㹞cg>7KsɌo8ⓠ$-=3sUsy4qi.R8]9|z=p^9,wZ.B<껁X}e<$7[<ck5!b<4sG{(/t;GqcY xMv;޿OH2r3-I@\X!k7sV2CT2nSQA)9{7ϝPyYtӴ:*oEe'w,*>SK:CH=r<-Y7:"aoZG-S{ъ3BKuڗ_HLU"YѶ+vM+fK6sj}#H׀>a&~6sVxwכGt~ x#F*lykZsʈAsW/8g9&Ӆ^tkAfjuЯUs%ݳuϒӪ%&ۡ^~܋ؚes4#|9Nrr')xm?~ۍouv>\sk^e_u hrt1'p"QsiǞr5rZ=o(_d}uդLʿٙ'Qs'`]~n@^c-]u)Qľ/~q\~;1za{!##mٿdTuxweδa+ȳf+/O'-w _ܢ~N2ݱV.}9>  kl F?0_8wߤ:<9i% xOTyRQ>` 35A]/p?@g4? ٠ż J䷢P'w|AM vҚ VCmU>0J8Mw(p ڕ*Q|_󼆶eԔ?q=|ZBNO_Oq]sjl1V;>|Zn{g=e)~>2m;{f\#gcu֪IFz/̩kW9sGݹ 8tG7uE{wǢ&|B;ɨ38Y.d:D6-0?ij8ChA~9La޵SPxHc{Slp%Ӹ~gi_Y+:df=ogU~Щߓ7s33M=%zꑕB9$?ui3^c}Ud ͮ gFWDZqcT4I^XnI>23J:P< (WEy7_: Gy3]@ΓI9YehמEp괴3kwq5:H2ܧ2p%a8-l/9x>d~l/'0oiz](CJ!"QAes0ʿ#ܗa`3?]= F{-@e3C)\Z/[Cl1ms%tƇ:|Ɛ?EMt=7K봛?e8H{C.:ՠw@0rvjM*yo(70Nz,tsko͆Q3ҖtBg/Y]YdnsUQ'%-w.Ed}khѽ%=G#֏}2 Tw<Ԯ6t'3ab2gVFwܚ#J2^EoA;7xxd`y˰n%YjeNK +!z "";Gnfgl_hו/ssAq'{1!݄6Cޥ/58q*9q͢/J{@wڎra1ϻЪJ;zz]<鏴UM_#=q1rܭ88!V'J Od?Lq;)l73;=x>/q>.y]<=$i7b}KGrd{h.9אvwX]2X6]ԧ[kPÞbC{V*5[g`>L?3p8{>ү_\ϜL+njL^hkO3vy)~T?&Of֤Λ~%A%{6i4صr+D|8?6S /}v&N}ott>i4MD9h| (Bבl/_"͹gߎ8 h7 (̗6v|0'ph,7t[PQe䜲=ÿ3zޓ7|d?v dK Z[w̡hg'ml͉da?{ə°Ia}/q7 p?/yU}>h)~>䩑eTOT~C_ؕ|H_߰-*Y|Z}F1x7υ_S jY3~mi Sb}z$O>#מבhBo.B|C}_k*dァs}k8]z+4 NŌ_GO~ND=[Z ߢ \Ư[ ia%OdZl|Bv:CroM= K5_em Ưj3~z"T^: rW }Xoe0鯽!/B%_ A}#ݏPƯM`}ANPb:_*"|0ु }>^k-/z8~2@ pkq"`߸="p,O=#?ae_Obz`&]|EͰN^v ׻z3~Ы3~z~7UT{?}魶8xD?C¯t^)jEm()yC]D_-۪Jէ2)Ai2j rՀg0U%ߩO[N06M{χ%^`:hSPF'ۡ%E~70rSXi~9WWN1*c 2E9hK^휷Ӷ53shU4W|;x]6$z&,cvqoVbV>~SryT?àXi˱.^b%-ı=+s'Zdճ(aQ3?nU&ύ^:vbZ*ntxc"hXJrIT>7e{U#5{+DWv|I,9Q>A_}4X%H_}LŃ>j|a /c_qΥdGNg\k"{tv.3. ڝ~u@_HG4q" ǁD~ U-  yGNm~z8| *RMڪidA˿h}˩PRH?ZA/ԱY%m_gk?51[;Ӄw9ICE1!T=Ӈj~XzdqM'zr<zs~EE'w}uܸ6_dz\{nM8Ą$ 1%V=5051-@T3<4L}FTU/Yuo\]?oryÇ (G=OZݙŴ2ԆY/e3V|#+ڐrc8o<Rj H 9^zΘ!/D?0~syNcQ7鰞ohrA Tu]aݯy=䗒W[7} Bf?$V==\*2m8Fzu}Cdseg]x{b|8G~_?W:^P/x0st\nO4+>1T.6'Zg|?<4#q=;ٌWBnN_HJZm崙?eomR!+{c!B0F>ݢ쨝d{ûmU ۽\Zs -#rhr_Ѫ :L&W[6QmS÷ah]Dj_uױR{R{\=VeR{wIя?@j~-:`~_n==zhOa,?)l#/SgDۣ+=l~;ۣ+س= xY-G dW"u*)xAa{ޗH;]G~{&Lddb<;=?} Gw.=#HWGo|-[9qyGT];_0%t;" ـy4߿Yհs??=C`Ӂۣ=X>w0[zA߅c!}GN4>5WNþOGa^a7lۣ?ixɱl~O{G-ᙰG<*`qwc}׼QP/ ˽.2 Ǿj^Y{ïG7!A?2?s.< Z>'[}B67bތ}y\}g8Q%2_4HnG}y hz#!h {2}*c{;#كѿ=0أf{t5ۣ{Oo(y VD_:A˴hw^-9IQCcDOOl],(c)}1)*35L~y'vDY=0[Ka3P~ ӮꖢhG׃zZR?¶tC\\%<D['ݓq2]CF:gF JOU.5@'D-9׉!9| :hs]7(Rh_}ѯzac %~(O~H'< ̎\f@V&sϝ\}\:L]syDSIuH0"}˃M~>6u 'G|@r2~w_b-i)_u9wk 8ǥizߝt4>*tebj=2uԭ#֩۝6Iv?89XmܾG*ރ/cjSt;M_:DS u ou0m\c!~ՖY/u8{D,zE^-) XLלgj;y<LN8iYMm̋}ǹh-O4!gxam [6~V8J嘇rO@כޟPvƠ|8FY;-҈vG8xUF{_Q~@c(R] Sit/N+Z)Nm٧zQNu0Hņzv^~YOh" 2ߋ?1Ooӈ.Pop<_zk@OoN[y;n2"_w` miτ^|G{洬C.d%v߰7Y.!~gp-smӳQu@ۯ7귥k[Yo+%绷tT\*>_BB?_MR}_IRZ,ɛ+;wwɽN<w>b}[ _:סϷ,>R]}> nO?C9oBO }M8(l>_` Yۣ]n* b}P =#B ҞbNG[ q0q4!d*a}V7a 1>-~/0_=ß&?>B~حyC#FcR3k<.=@3k=ذ> m[zwCMrOXGCSa Ϡ^_Oɬ7fVd}ϗe|XO/%i7g)Y~/-zlp~dvA/oH୻gokzezwC` b̀Bз%S+h>z'p7D9; p{|.Ϸ|=χ|DqSK67zAOFW>H|I:iXoI-ľ?ڒn+' 3QMt<}sr:n7>}fAE7U7i$|cemEeBﻓk#!z~2zL-'3դN; cjڜfo%;@[N{P4 =7# ^ҿjM-DW8==i;؀\N@l?#i3Vz< :'g|L3ZHnQ&p UwnBj8V'ğخ 7<^\UB*+`Jb&q,xZrSխwkEAw3S~?v_ ~Fq}ݸG|^FE-=dr\,<?S#xj6(⿃/!'%V˻ݭjANs+?7 P.{˫䱾jLT3tþ|Ehτ#ۍ*o$7EU|Ȱ+Q~6tX2Cn7>{\L#e}8(T|dTϣ4vPu@\>U S:G̻#Sd!8ݷTsб_c?ƏQU(oC/^Q{rsp7+Y-H|Nj a gmՄ_G> ~%h>(櫶ߣf8^M.qҚVsLs;{x5rZC^=:v)\v\7 9#îG NM{A}!>:^:JxyNs/)̑2P銶[&*s[Uջ|E]*6pщTZ].,՟b=ҼrEi!Ζ2R䩵L Q}Rf#߃-W?[9 &./هu.C;.؟ȯ:zs}?:j$ptM.?^MB:frP]mgWҾ:lS|nBrاsqk(Kx}qEc|]CO\JMy-7yMWjzfB|Av'RUѥ.+w 6ddJ.]Q2Y{wÝRG LǢ70jugkk(2՜T$@%R\d{@o{~F݁\k~nKNSd玆t t.y;}&`8"|ZХvv=H1B^t>tWuh?v>4'-כ6b: W3Uy$_-p!7ehՏZѩ,rbҡ%?N&1.w|H{ x㑽P#`͙ja<{"ӫn2dzqQݮ^_95bq(gop"?Po9/yEP@y_E]7CEnKޥVPBi:6`3CP6y܉Rk@1B.c|@ 4p\!{G?o-? VaPО2 7Nx# K DP=AYW tbAO ou%f|swR{go{s |GT鼒Rk5ݎ%>Fhg-t2ŻgM:Dot"`= ?QֳCQԧ G)wmJW<)Ipf)uM :ytX&H9Ϯ>ױs_⁍ܺN}bs^B'A?*A\:_ˡ|9NYJ<ޟ`+Գ> *AC'8x` Hx`~xnx}z~#0^i9x`XsX:q*OC@c'G!nd#e8]>"Ćļ+пF<0ox`]ocxw"~HxFFgHrp[ *kh[NR~}]oҶK_Z<_' c'̋BF1xo?_q!nv̯3W`\b~bؽ9g~}sP{^)FK_d{v{̯d~4_'d`8Oq@a ,xY ~v20^{YFu 3.N=k2;4/w|@K'_vþnE K87Z2 =/D3uۆ`|/p~eaW~~OkQ뜆=P_^owrN{:  a>|48c~~;_N,b}O]đ @C19sz\=?%H#ރ*ױx -ŲxLjYFmCmg_a~̯C$^W׺x?9c/8,>G6 Ukn`o#F`k %!=a/cO_^3I?msG1ޅEc>:wi5)m'_U.҈~?b yvʳHD}*]-Z;mvՑ"+?&,-hm"K;_<+~d'Ҷ׃"^GvI&/}Y4y ^KZcGiG7<tUg/&U۟<Ԋ\7`Azl.Q }A=bG1is\KrL}gSx{aQa5Y8k#m7}: ~q`~ǗQq!6irīz|j^ E[ >BCҸ>iչ{B\ry͘c?q-#KMox#ecM헱O~㹫|R_x s:vDTM49; C{QQ5wA;s^NB$! ǧ%A}@Qth۟h\tJ߽v&L=$wQ׽N*nv`?iZKLvBTD$B=-فruE(_?F (Υf}}sPPq45Cо҆x뜖O/ToDMY>Jl[ޑ֡w)r4ym<~?qn{+PīЌSH1;59a\#΀BM~-qΛ(_zXOO.׸Kw2ه|&ڳa{e^&Ѩzh&=(^4|'zJҟ]țM)m$;>QnT>ߎbAg+>_g_z]~uJ>.rO(ޒ+kE۞ |sud}_z&3>_4wc}k%A>=oWV|ϠUԗc}ah|;["L;4 N14z@Wv>߼HUq70s ՠE!NIL3]Ӷ"No(A\ow;/Gq$ >WCzQp!^!XH\||>|_&z!e]~#.Lzl?$ϷQ şΈ$vA}[G#s8SjxSSn!*>_ <]lX/%wve=p9/ XW Y_|{?8@O> ,YOn󩄲>ľ|7>ߦ{\߻'3ΫO^_WI؝WM)n)G?Dc]V"Ss T k-Hk ̯W ?П @\ T}__0nx~ Rq yIa?w:F8~,y#S&;/QHKz3>ӣ^#zkX_σ蛙_ ~ g~] 姘__n'ރWm~[|C*_iwfUÃx>H 5Y̯;@Oz-GOgfk6p[qGo7,7An'ؿ MzмϘ__g~}1kW:9zzvK2~ ?-cO}8m '' >wE@ 8hbs,1~F%G?pZįC<-1EOB ̯#Dڊ:n8/{n/f\A B9"Ĉ'| +ad# _jk|$ c~=Sџ0fP:~W!-F1{$u¶R,vSeK)~{:EQ__﵀_8Kؓ~^0 'ڐC4.TzMb~}u.pf-lfK/|;Hv3~uW _(>K8_=q_0 Tv/hؗ.e_d/pKNIӥ_'1~}-E_d`>FL=oaof8,?+_kf1~wfzVƯmྱ;[ku^C&3l?mICd]|._ºA2aף<Nb:<3_WNuaNG\kNMd<;X{DqoZrQw9\[^!xZsd%i9 ~|s9W%S姆⽗l<qLd.7~&=mvǝp8 7{sK3?) "sl¼.p ' dp=_}c{VunƯKu~]v'I䕷HJkfRZBRz"K)~oZ)~}ew_n?[/M׏ݴ< S# AƯ]pKw&"m͉ _?xa Ư۷f :԰b0~=x R௭ 彀_l8K~2~8C~Mb@,< *0~3~=Fvufz%xC_w~]פW"ga>0J psLOu5Ûwoی>_; _Mcvg~rl1M\@i;ߖH 󉟿$ï@`?4_ߌ_O^$Ưy1~]6q)v)7L'3~m\ۑkI&?s'ד#_?qIb sΌs?eӼ|Z3h%pjSęwޛ|fi w!-b.mЎIg~pѾ W0Byوs]dMxSs~mz4ק0~̀;m_y z kuך_>Ks ݞ!=_[P?7NxH/K^1GC*}<`/NU|?D~9xB/Cd<{,.@ؓVMe<9e1)>:%}$C[ui?jӀy >|=Nِ'>3ΎY(f<&[$q{<m`9wvO?J_Fvwja'pt?3G}I܇i5Żi ޏ7'þ:v&KCFlDCp8xHrA.C2W?"CRQ׎Q/m-\v*meyevՐ?exT?GX'1B ;0UcֹCf21&1(G<4; Ko$1eCdOu_ >!<$x!*!\ὗ={C^!L$!k'=P_^r"MʯO67}R~]׵_}Z _ *kw~9Jb!_[^(%S̯-e~(G_~ﶌ/+_>y^8?nLw?U̯?7ߛt\/ /?C|5Up* =Ԇ|[ףN/h7k}!pQ/|=qn`1?YK}9 [ereӗhԁ?[I^uo™1\-)$2, ^~M̯t.m#A_ r~9G/z{Ļ`~=8P#?#BQ{ >3LG{{ g7߾ r,`M wW7v@M~4qߨ ~N@{Ԡ8 u.q zkt _kh{_Wo2>m B OI eQod~=NT_̯+)s O?a~} ͚?;5iⅆkX\ ;@N@@wx_>}|eڢe%g`_$,I  k9o  Omظ 8p|ߞ_;,[3z\ ׽d~: ko\z*}+p:5?pFUqR:5쒀_k[H RzLh^A(ů8fFb2?R_Fz\{Aq4XmƯ3d:X xI0~L-k5M*?W?ƯnG?Zho4ex`OOp)xtn :09*G3~=aד_~ݍPO0 1׫&a2}|/Y~x/2~Xv)oG1~Ѝ oBZt@={\?۲s}Ѹ ƯeKƯOb8zG85+2~m38w;Ư)Z`O;P̷rN;tA=Ψ'{O# пvWs~V۾L߲5eSv=vn3~8~x?qՠ@q4)Z?< o>u_?dzGƯK3~>u6_wZ2پTAھiY.=' uyORY_WL*_'A*_'׽]zGRpez3!Ŀu/M'B/}kǬo?&C?ޘY> ~6@7t`&O?uCzq,_WaYЁ|m_"Cr>Kp^<@> </pA| |}Cȗa'g"gն@j8;O!,*w⍼b:A|A{AVXL<7'|j^/ۡ\ \28_sOU|=Y޻twb9NyHOak3HgwzCU+Ӌbü B ^%dzeXgș7 9:>+_oL x4d X"|RпVTOTU Zo¼Cz!Lz{|u CO|]51^6,_oP*VgX 26풥BNx)Qw[}rcA/)Ώ\C˵0);,?!̯ź6 !3:0hL72>y0N?>$i< %? _׍e~i'=LX;Ap'z4k^_3 ⾑Џ~t!2̯S+Up~ig7}Y3!HfT3n:5̯Yz6Řp0*q;zv-X`ܧoF׻]txZ4JGS0wa~m>Z.!*R~v1Qʯ3-Z'g7n,Fe)|@ _,/kӗ됛ZAߕ@ؗoF|quC?>uZ2~{Zpoıת\HrÖ~M T0GVt6!_OC"wou&/k̯̃{\~-o|| Y  { |ywEolp+Zq_~=e~*d 395eT4C1yT|$ ? бXEV/ 0_}%c_1N3Az.pmcO>,rL׷զ8yK\!l,AOySLNGeCA]x?+ !$@mh __(w8C~ xqp(qerS/ks0pd 0t`~}Cdc7A>ZF_6kg^/7XrSʯjIkeAV}H_?,o}A Eu<Ⱦg3!a߈=}7 a~m假1dvIeRCd{v1)߲8̯ " .9@H+a~gH g1rSP k^{ yXxH?7Bt(k%#+z?_q8̯To ߣ̯} V~H/602DZf/z7_nKO2=b=-=obܳ7|K%yR_k̀|= 7_gf~]5r0!;Oe~+{ސGa Z8]ŽYe`g#$Y|EoHľ9X|(``&e9?.%en#1lo܌ ?$@{߄(ek^MW}awk>~}̯Nb~}'B] 7n|=zCAz2(Jn/!c:[K)~H4Vʯg" + xUhI۝} ==ZT26|$ӛ ~ _?̯0~b ez{v2^u/%MM~/5̯;B>h̯g01/L7SײJ'w_>z32ʈV: K뇚MN'q @ xo!O`~=Hl9VP&is}E̯t@n qd~9t_tH 7I{C ?iW ÷ WIJ/N_={a ̯S_|8څuco1zZt 3J?ezn2kǀ $N.Rτ_|92e|s_@ݷȋ$^}@1gn\A۔xYݰjS=XUc5,v{!5ss.yv]A4؆EG~妅WtW^cw?2I`vw.Yx+WàL&ݮ?hCIߵ彴^Ӯ R!VO6cWOߚӓ '}%FoSS?7O#]2[=y2_Tww5hЭ˓ ]Z:l4ƿV=Q{].כA ~1{GBM% ?Z0}@Rj6el.xݴtlZ]vȿ'{;[Rh|rgNo8'ٕ>:i|fc`zDٺ>죴f>aRK91=vj3SȹSBEd: =^G̈́,}DL4֥+FMC mhm>o2MM'7E[Q_O:ZӨiW>oEщ#fwz7񝷿T_1x(H߬{LqY}9]aEINmƐi嘑 Y9!B<9m|F[ ,[?ÇȫkGqc/:!yyg[S=C#f)ܽp|mKϣ-vl^XĿSt)4k^;ϻAd4dbqܾh~};snqwd|9~2(j3`7њ^^=q@V[?륞G~7 |0wP_.# -b=IIdϓk6k 5QXZu^Ԇ6<Z*ԏL-k^>TAr5(OVyk=OquNy3 ?<δ{%N"zW*©}Wmza{m%2GhZ1m7xPY:t4q^;rŸ\D@o>C!(7GMĺ/Bدb[Nf>}'ZTő+ICj^z%ybX33}2䯡%.G5+Qڬb ^@vc?+QoU`:6G~ JY^܎YH }E(qYhϝx?#mzn⛾vZ9T=ݏ`{S쭯<~Exۊd/oޗC@A~7{q?y6⹺ e-#jrYWKUVHE39}wJ28$:Ėl'7KZiZP5oXc9GtgNC8g1\ }L^_u~`{0M4g;θ,OtW|ne\OkO)-?aD~9^ۯ阁LRV@]NhE;XYy5<Η0HG'L |dG| (;p;gzf`߳1=g:b]UЎ9q U>"]s{G/$PL[#i :"ӖG0>ß~_8>0f7 &25׊sʌ]= sP|"1-?ԑܷq]m<=g*$QmնSAnfgWkP%7y)M½M{<9BTW+EiϸfK|3>?ppUKQ{ٗE?o[1za3NZ9͞עsi&J7衚yͧ{QKyoL)}ɝzSE;ry:/2}8SѩoW='}b^!c}ǹäٔec\c~Ѱ/ILk~IEͭȯD-AW~ MC b`R m)lGEj_x:(n֞lg*>1 & ! g`J6"Ժ"q8c΁O젌ƵO.^N)cde]CIogP6ϱ{c(n鯆U6%-3tSڷŏ:k8TS5%K)~=q-+" q#A_׌ ;)~ޚ $%ů{oC4pܕl{+ů).!RLByKm}|7 \ zY8GuN׻y]^d1ЯPAH!}g>c'3ZxHh&^ 4 u\|6Y Hk\7uA{`fd(rt^wIO_{&#)~^9.Y_+%3)~+Z*ůΑ.u&m֐Օu{G#3p:|Aܭ }f [1þ|+5Mq)>q5;`<؊?o}k뎴G_k&biLYIX_p98bҴ]s'KXޜ~l<_Q~6 @$~N!ZB~;6? TUy䧢?xܚ¤ XKRzHZ-ůn$T_w7"K)~I}DYJ1d*ůwRz1Kk{_-/_"= REb&lhkVvf/kӧ}#AB](6U2T~t/3][4:GMJexѪ uK7pW=(Gq.M:hWm$_rybfBeJ#,dzYhӑ*;\6~3kΪqI\c.Sxs<$"?|.ھ&+* Zܢ7_g(iػ $znrve r2^wn=d]Gr# 3oIi:6F'Jq.oKiu7絣 _ݾ,W5}:RK- RS _/6v ul ș!>wԈIY6ÐR`R 9.,_{ٳ|ע,_wۇ~ _?%}6|-J*Rv| kML^!WgH.>_/Q}KׇX+,_ܬxH _`z,M{uo_$`gB0Q[oWsא6^jW=_(?r.0={'΃&ڟz%T1NrX~_Y+ YoفPkȷ%&|핁%t q,_k\`:,_azCc'f5t縱| }bn=p5~=ђi~}t#,~=jT'|"C̯>1:mMק= tޗ&̯',2#$ {j̯^>:i̯Zw&_iN}H_2;<כ=O{ /$/(Orl3! ~}ku0̯m><S[Nc~v2Ϋuwڃ̯'C-xR|jwD8׹xILގ}6}?kY6̯d~b/UXox!ΔE87(3]u߄z8 ѷx'd~m1.)a~MS_)c><#|z}H9p{Qz#;4LEeN5Mh<ִ+[똂qTSͲYW㞕7퍠ؤ; z_#rq[n;X[HW#޴Ѵk٫\QJƉ2=K'H.ri'ySξQ+fҹ̮eNUZ`~n-\9 Hz9IۑMmK 8Z=LP0^*sz.ǡtg9f-(ڿN5> #گE6KhzMל`Fߛt5ӹ߱_".tymU)؇Oط'0mԿv.XЙ==b['{D!mts^ɑ/9=]<q5y(OE>Λ s Uy58_:Fr"|uA{s;Ihϒ/2}ۜ CX ?Q.[UHEDJgYܫ] )LA߉<@;mUܺ-syS|wf~K?Ox>)dؼS.HjsORxFD+V~_}O'ǖ9EͯzhkYk^߫/\]im}'ۘ7z1(BNmlP5X|}Q _'|=Q}oh&#k p߈u Gw;|m!=p$ʳ|]݇,_|}xH7M,_ډ^EB 9n"JP=7ҦC}#rW|"ޟ̀\ea׽Yvfz4Ob2Fou? Y$]Qf!t\EF2]TfnC,*ʣnO,6 _WVmi ƒ :/ۧ;E8ktkr,wu EJmkWF ~\4fzǍ&w}!㋟+r.AWk'.J5ϥsn2lk{0CIJ7|tH]I B_t2O5 cn%;QJ\?h'~ӱNr8?<˛*_ŁؿxV>?Z'@z|UxO{P~ j/˺Cd.KGpzӥ8 C< я܀~'r.M֬dӟ9g@J}ʜ7heV.{fVO@{ͥ \rߋ!>Z >A HEw!Md^~޹J=.R%D?ROtN NP{5gi1/'\i_C1H:\{?06`|oo烿PY|$/~s#)s{ris~q tfO}SY\W{eO#0I%"X ϧm{Łͅgӻ:*bwww]AP E[݊]bwawwv<=ソ_33={ρ%|S/S?Nq _,>մKc1zF|Oq Y{긆|`Wpq\*|O1Dt+a#e͎L<, 꼖|ձ>"*3<['aAϯBYV':~_fyu 6<yB< Pxgi,9EWy>xY3F|>O[xيr= |VƝVxy"4/\?1ہ|a )|cK: d==gx+gth{ ))|OgZO?={J fyZjx=H[/勖o6>a^US- f*ZYoKhx=oQ H֋F̋{קë2࿎n^Fm ?"&7^ufm^2x({놼7HYɃ6U:yb+6|YN@M~RKޠ"xw+Z‚eWvҏ%&?cGӗy_^m ^y_2ś ^&xmzuOUjn|K1Tqn_%|>K%?wKI!clQC ^W{w>qmiWaoocoLR9Rs[;Tᆻ? ׯnp `C/X V^jd5W>[6zۊƫIpoAGg~5Ԇ]ڿҮuf宭*Іy6SI9唌}fTa6󛮒,06>cbԥ< T<^;d?m=rs噌eU#mx혔cS;5ӆץ=lxUڭ5hǺQn餵ٱry z)wmq6xGmxї<95^'/.PS5^~gQN6D/Rcmx=gXO|g6~&lPn׆;*W6I_gV6Ζz:|.j yr}Z^-:juo3]2hPu5cUHܶuGӯK;+hMϊq?;zAcwtJFZ~|!55WAMh_W燋M74MM> ~=اG6zZo9u7=4f[Φ_?R{;k'}3ՙ^+6:en6:p~6:zמ3ji\{UJ^i,cFwy_W{MOMڦW >"E{~ݢҾMNd%=>_癏s\!<^C+/լM.Y'kMqؤSg_6\ףg3o ~q)MԬ_o|K׵ןk*|o#Jچ7JzvYN(8<ɼԤjG h˛XUx~ S%nX^\yEx)^+OW!<^o>>[x-eeiP+z5H7MH _Cx8T†go푱?~ Rn"w/~]KOp!_? _MMvMNzi~rly?WW?DBz3^gluOx>D9M"_N}ɦ_M1Φ_VkıS9\fCM~'Q*_G~~Mvy2' uXCҿp[lx}mȸ6{C=m1~}`C7 zë=ĵ7e>b4!-=o.vfrc[*6Yt{by|%o)?{s7-o"/Jhy>$/h=d.bF17K*+v%CScTq0gbd1v b)<;K=/k/.#2y#o܈$?ֹ䗙 _|of~ՊCCBkb)V2w/ }p*ayxyi;PO`M<Vb&Hy L䗩1{He!_׀'9دsWڊ<4`&K0P-ZۿyʰUC/ÎQ:3/E[by9rhf:Y? N z;_/ aiw:_&+ ȋ~;3wa_~vqCozLbpb6?!>C=tay)zǥ/32U;Ca?7u' y#^kjx~w^oސ' ו}U8^gK_o3}ЬxBMjx=b<1~o~#F%DzuVM')ړ4aOלNzɦu0p"_W`$x^_0^gk2%s,x=|M+:IW yKkEobk yu+d6iO?g^^@6׵Hp5:*x} ӓu yk0Y ^`!3?}puo~*4Bp+'xku9?=?dFد׿oD.L~wSk:^gm2@2^G͹8d2^H G2^7Q{YQ['6?L?g>]H] %usF'Öp2^y@{o7$Uy9sfE+/Ÿ^s4{Hњ=^W=ߦhx#W[jkxR^ /?ly=P1Uq R^QAM59WCxkx}T\kww=$ύN_ތ%}BNRocn &֒'5޵/ϟse:j9L(ix}Pg4{217x^ORGzi7kx}N ݝ ^?X[kNZըO?{y 3مgfp_R+ quRI?cMίZ򹴭Nz?AxM4<\n{8q|MO.~_^Kh_eŬn_johK%>Y!3#հr<";8 :}9^s̥߽!|9^?}zy^Pơ ܊ ؓs(iCdju狆?Q^ \8'ϓ"-5m;jomѼ~wwȰ+ei?~cao,8V\ߘԘ뱿baZUO_h=~g7Ngf yGy"hlh~u75у7J}ʰ߸DY7e}ѷ7xj~cP5[[~ej s[o~BEyXa$ťߐs7&Oer#o|8Q˄[q?K5w;?W`"A{߈Y_oMi 4y\>!r ({7x[nWqO~KΒb`}ej0y/PގrJy'I\ N7>l~eL}rt\/Cd1jpKWc~~78^F7x^wq9}{֧uϵZ}>ogqdSoXfˋJlmECoQqf?K{5dcCϮ]h^r̀*?t5Rʼ>{ʼ 6s'Guk'u0 퓢QCUڹr=S:<726)k9[s%މ~J{&p4956ric}rNߙ=%^9)Q\E`8J 'S5|KbzGOC>TW(Qd,w0-5vm5.jP/e_}~kI=`⽏=NqS,VI}TjpHs\]4N"Wyh[NUyqSul|Sek4C!xr>mchջw)ŦZ>5"p7: 14/]IfyvjBfxeΫ3}?ɼ~@92Ƿ~Ou̇ǹ(}'oo!|ʝ*XKߜqx{ϣmGQdIcۣ^; BrJdw52+m;s<7P^p_7Fva9Hڪf_1φ1uvMF۶6OSdQ.?eM+׭ckbKG\jbmEy r!χyYp"A;jUM<]VCŖ; qr?~9\Bq5r [SRVow5+Yj˸7ä,˚kmqS{zS~lͲٯ9ٯsٯOT~=xE~2#F_ #v*Tol~#~! uP^۰_uoPa~C?'voظE b}~5QssWݶU_gDO1c,w7b^ߩOugo|D_o~:qnɾ:b.Wwש,b.~]_g_ [X9z}=[oi{ :=Ͼ\XV/C_~ OT(LbgzuyR:cƏٌ=84u7B_&PϾzpDcfĊJrp/M?{(ṙE#&>-,v{ دGOZ+FRgد_*q3iFo|!k'Hօ"81S_ub>F-ٹ~eߘ ZO`&ɼP]3zk{lx3? Zl*o[sZ |[l7X݇j)&s< :3=\g>2 Ԓol/xz!f,׳WYn ^pĻF''VvBC ^!x}'{ƔC1kK8k3v)=E~aM9zikgƖدJχ5`{دOX&n7!^f ح#"k[z?~}Bb}i ,v;V~~-05b-'迱د!^12Yn&ef/3"s`F ;jVSC_쁬N[rG~NQ~>yRSx&v2?Xu8%kF(} 8:͸ƾ=̨qu춟ةp;TZu##Ǭz+ģXk/3uO__/'K_G`+k د߳\\ǟoȔ'/㵃x7+{j~Oycerb=د_T;__?ɼ/~xbuʈ0\MM^i\od jg缵jx#o--~55nWb<{[K*ux;ɸk ^!x}x*YofO?nc}='xMܜ4ws ^j$)kk_aK6׳ IewI,/u}!%ܯzj+^{C ^cu)$x}H|oYx^pJ["qs ^W.2ۼ\+ d|c; ^^`o,~&r^E'Y2Xmqlfg =6~z1+7&lxMcu8 wٹ㾜 [+KǑuxyL'/7XrR %/ˍ8n[؇{`ޱnt&}^GדYg^ Di8sg 7EO'lzuxqg̞\x}7w<5fY=fic~7}=RxZ|\Nhgi^=N_Ócl2@!.:cI{ 2W!ҋ=$+|OLاNuz[ KSoX=7!9_~%^b>f!^xhKeXO⪟Eϩ݂yCΛ`p޷@?kXw: ڇp0=NZLy0 bdż^/iwWRue> ^ ^dQ'x=yyD׼Qg_ b\>+xM<i1g]`^X?& y/[.~=:/2+|gi ^烈X:׻,o'ZدbޙدgbǷ?e3kL]Ni/j|'MsMnc #%aWʾR(|OKhZ;߸q#رഞ|-sLHރphkmF)}=\O\5oM1c4E_XJcTD;r}Kv}OYy0p۬' &Z_tyZү%x^b1ډg 5x > ^<=;u)^'^5 ߹q:x7&^{5asiWh|iVmx],K^|EGRӯ_jx}׽D@gm~ڼ>7}q?Ă3sģ_ǎ sV8Ym=`3.uO*zz׮ĝBVbAqSy ;^Cn~ z$%k^*~MީSk۰XW&=+Wjham"ۈo{/~'b{A}?^p-3a .\?xSjCR z+|wx?])\Hq w 8c[oz0v]uڌ~}>lgIӂ׵ѯ+cG^Aģ5ݵ;km21Y/J%5i!7dkaM'z^WgFjxY<9f;,#5Pgy[!-_?0x|_K?=\q,ѯwߣa(x݅ S('kAރׇѯS6ViGR3-Ǫ_FΓ! x}^^3_?(17zCQk 8 }ֈ?Gx֤züvj~Y o-x]ݮGq=Mw݈ ƿ5\;x \F&ݸuun/ V0vvA\=կ_X,Sv=x=^ǁםOzҮ~='EGZLm2&>˔y|/[g·x.e|~ek2envev5-/qU~o}2-+2~K7_~k%]!^(2~S$^pOoGC<ʧG/y|xCa ǟ8/u$^ @e/Wʿ6I <= xٗ)@|Buxy<"nSeܾHY$^SnJL+IL)%^&`x-^ZSrOeor)e{¾XJ|vVA(ete>8%]bO.2]K/<^e6IL\xӕx<(|IU{IDR{#^v_Aϗ +'ƋOw3_Ey ?y[BǗ$2 27e.r %^o9QxG/ql^>ׁHKeJ*s#^ÿs'/SNILge%^RYeK~e7IUSeJLB/ox6Z5ac|qNuPyѼ3Mpis#+rD|p08eg;6sjҰ c>xW2^g~A{׭>/~qs{K.5Ά׹+7^ú|༢OVxmEyKbǕ .*҆r^93$XyG%x?\ ߟ VlK*2ծ\}ɆoH^zOg _Ux|ÆזKru!j ?TQ6jsWyix[Fn8q@KcBVE:׏Ȧن Z^+ņ}`^ܨtU^m-Ǜ Y7$5DW~[Iy't=nDhߣ?/]_W!='U)xg޿R"5yȌc==MVz*Ԇ325 RA6>|Fadw5ʆg^~G"+!ۥ+ч癢mxe/q\' WF^&JGeӆƪq6XOJK$ؤhj Rlx]o:Q6ޮzίQk[[/m|6մ^W-ד/vۨr5%7ѳ;=w(ѯqI|Kѯӌeۢ_O<:"MIWJB<+LO~`ſr7Eu r_'! #z\qѯxr].^L ѯs_@$x.ѯ{ESZT1w)ѯ.ƀ!iEd~ޢ_o~HΟ~=c'RӯgѯqGw&}hkX~ڝ<ЯhwxtwxYW~s8NOy8rz/ʓЏu;W>BnJvSo}=)}O((F3 D<~LeE>9Ma~ѯ74R5q䉺>Ǡ{C<ѿ5u kx.MFWc?y$xxDgk/ៜ>y.}+l6Ŏ=0T x=|H 駜7g.㪌/ C*c O}z^_&x~ ?r^gq9c'k+HwS#KP:Pzqu=uCV8==gb{DNok7pBF_Tk&,52AZE&N7{ȷO!bY Wj[|{HܗnZ=}uq9zW!ʉ=OQ!C=$D h)+RF_rG1T\)NNUU[eykSh2zi6$_AYbe¯ ;_x]r2k]O֨k?$!Hy+a:cg<^ɾo?|Q3KI: 9𿆷/Wj_,f8m!{Y)_O{d?߳e Wş=UC.?đ򓯀x ~sV <|8MoKHMƟ!Kwnů@\NߎYk@{3F_ %2{jAC/s?)M/CN0&z3&xkOn^_ z~3x Wﻘ?Dpb³[kEaK2b^HCi!F8?2Oyt8CWeϧ獷iN-CRrNϿb?Crw>ZNB D [J~zM-?շОZ|ix%" ߣ|JGs1/go\5~J֧v_ ތuI ^^wNK]3yI5^__=~_p=ϼrŎ"u>_<^{Nyq__8|y0?=&nu]]N.ps2|g-_dy2eAܿ|&"ѲOa֎u#3sǟ|_&^&?|O:52/)^F< DuiyB_Ζ/C" >HSg;Nu1Fo(2-t~ya~-]%0 C;ߓֿ_W5@,M?YΓ:CqXܯx^O/;ui?8|O]^1vUk?ִ4iXfsm)dG-?]4-SL_55&/BpPL+|ɏ>/2|Uq/!O r&?8CtL'n]Çߓ<.Xu^' l?Hf}a2kim`d#?z4sqhCN xsҞO]C\ѧ H`s'yNv~7k嗷t ̻Z=%cm?BCJq`R =1?ɰw)?ܯ~輤 ^ KwXӯ,lƾhuZ|j^33k|okhmSEӯ۪C|vO]Br$_zy3=uFѯ[<K4v~N  "r~_o@=6g.E&~4LDNǣ_`C]z"5:uGB!zw!ѯ#ѫf4l(zWӯϤ<λDU]@c0lYkXa,u7kË~]u5c7Ѫ=B=ģ7^_w/iǫCg5rk8M_W[փ:~ q׊^i67`?4o`t2}_VCnr3x_ǥo(x&[z!z~'ootS5v. <+&:_[7 x ·|X'kV ^W( S!z\{J_C3!o ;i>:3MYDӯOjc -LZ EGue~Ʋ[%/Jhx}|%_\}5ukᛸQ4oDD0zވ̷~^2YIƑ|Eu&_h~Aor $x]@^ ^?$ IQnq3;_>П‹W}_yo^2;RBz|%~+qb5oDn/\~p{Hnע_vZn|?_z1f=Я0~!؍Bo'__{_7_ׄ \?+Cރש lfz:-[z2=lx]jHNѯݦuN)Ϸ_-.ӛG_74f^&׃ ;p8bw]xSo!q8z< {X/&<,XX+|8֭53x .盃#lMSfף_ף?2~ o_l]lŸ˪kw&Ϗž/؄ʢI0+MI8 .gݿ^ ~?\~V.^{R&x=2a3WaX YͼfT^z)x~!DZ_Ԥ~׈CX%գv_*}@}uᆸȱctP V&g0?"aSDgn9M7;76!c-CL_A .4稖wG)KS)Ӊ*u},[~VQ Duv9?OoGܷߛUBE'f^uhW˴C 8?XKWƪeSq"PS>)f8&~V^]>)O#5TJ]>wp9Μ]Tpw%Ү Ǹ\:f\ƨYOj_dj͆R옭x׾ As"՞ڑjWYk.]L?fyh~ԿWG80s~V~޳zTTlWmSN/pE]*12M;jE=H MNRE7Ue1Q3.<ʱ TRؒ.zOo?i}sKj|GЮ̏<'!QنH/d?_gWց~@Af } )`CZ͜D?ՉF_?X:KY{h y?GI !g2^{mfΔ;""=}'Q,t:@mhmLMu8 TLLm|[Vv7T[3[ݟݏe=*]9aڌIjV8衷U]W,N帗נjw`2:5iyff~{Ȱj`73,Il~+gUZ=8ΰ}Z:բ4jD[&]KeqUN\O;Y7NdN}_!'1G/PH }4QR_'x]|8)-w7|HMYiɵ|0)O*u2MK}o0~gȐA:9j3?W48uvD%GTqր4jTݦ5/u:Kڏ{S/[9\ky 5Rukё#pg8Om׋b߃B.G:(wMԸƵLR8m璚0gH/E߯R=Iӄ" ,SAM1wX5CU⏹Zl߅ޫ:sR-8r{ޙ/UrHO][6@P;Z|v,A/W&UaU[D^ēF^' voT)6_WʗC Q[+ޟ<_V3G_[(?dw_3g־Kj,3E*lȭ oLd$5A &?s,TBSYZg;FʌS+u~OR~;jGÞݖy瘬Vvuhb휅j_RytX!4w?eR>5ք ۦsfjC7BgUd;ߛצ{~3ՑާYRTg*dorbSsit`pXTR=9v9L-yoQ3 jՊλ ]][LPߓ\5-U7ߺS-Zqc?ybo&8J8cw|?Աw}Պϥ\-,2oyY^閂~OVs|f 1뤚9xi׼Y:\DU\sk2Gw,+ѷ-^fhy4>[̛/|3]m2Ci2u eܾeܻoCVيx/m!})s#ӐovK̑a=O~t1$>@cjE&5o7"^<]Js==~ v?rQejv\ 8o-2VJzqz|W/ֶ߲ٙx/ؔxue4ɷۉx.9 \ vs2ۉW8¼Ӕ@/Ӯq9%^qt!2SDe ^Ɖx=r͏nep'ɢyPO@=ﱅc3w%?zuF/cx=ۭL]vrو|KM]=SӨGGioK_.'f[<O2og\&Rq?ے3J\>zQΫ:g&G_.xSy% nfỊe8n%^2?=;M& |%xyyzo2bϏ1|=ArevJL</s\ 7ׯJf ^p=s$vWj~zewcH/U2hja{ߞ1}]3؆fÛ>5rxzU{~yWL@MqXI)jx'z~"WՔN{%Ouߴc+EN'|UTQH)#UW /٫}jՎ)7#WX:8^LP^6%)Y4/^.rƴŤyy(Qv|Bg$dϨzt iu?KyQCk_K ٟ>pt#C3\ޚeo9^JfN|‴[,:#9}z uRG/lm9G7ʆ9'Q 庨aUjҧUcmʼO<6^'ٔO|=tMWFMY=[35д)uW8r/4#jE=ߡW=*}qM H^Ӥ~>G8^^kd4}vO)T[0C~vϚ<ej q5VJ01=\DfX3haf9.By\'#_=ted=^;ēXMsu>r: ]ʇ G!!J?R rdrBK!yx _%E^=~ 6lX"=yGJQ*>-1޲Z-_pd.;R̔iݰӣPB%r0 f<ߚU57eI{_,;^yܰUʿ̑=eS5־W~i4{C?<~U;R~ :)erV3nuJ6zcҨ6|CS ~MXZnؙuԶ2llco៪e6쬗sc3iUd+Z_MBd_7n+PGUȫJVVjoo.&oJ>|W'r<R.1!:O}m{:hmmA3BʲI} 9~uƫQEya\ 9GgcKe wiס*kݻyr}aKЄ\gN{inj6)Y,2HǟAєR2OsMj2JUm^!U%5pj yHgCei풚%g㙫I?WjSœ]NI`e[}>x:p}7_2{5Ŕ1:*js$ {5jZcԦ /zT KֻlN5|$Ac=(Q zwIw3xsh}S;P~iA[E$Qxd>N?>‹w}D!'oKOp_8=^QG\/=Z'W#׿TOS翝pjո~GNN{*U9^z^gJּk6 Vzk~K )7[aC);4]ZYar7ε_Q`ql7uŦLoʉLi vݠYF͒zϊ,#?έm˶fIJ?ߙV xI;.}VI)>E4˃n"'O;>/g)S3RϗυT?_xP_?͟ϳ.b[Ga^sh~¸_6?6vnI>gy͏X0p)͟EB6ԛ~6/{yaO#Ha+-?{s_e?༲?_m|GO~m|ڕϷ71?ߧ_5zp_KmM zø@ߜOowRo\T61Ƥ3Y:͟oѴm|'j\?_dr5S{}m Z'/~5ǧ%H;2?#ivwg,㶗0'q~<2gj#V_yElwcY~ (s?#e^u>^i.6{dwz=Yx$k͟wkט5̺y(8}͟\6~)FB _X͟Ħ6Emcs= R.jnj[ <]kv)6n0oe~+2 &G.d-é"0L;N#6^ߡ!i d_Kb[+[X6BꝈ[pF bUt(if0{f;)aޞA99oP~9qŲn8k^|\p7T~=\\#?* r~g)kQ7̐}|E Ro[͞g|8>VMm_%i+w|C|,+h q\-ujMPOnT#GNeneg51;CP !3&eVZVH9X%R?$RtͰ ^95JWǦPNK֦VMds.b?h9S}5r˵4ٸS_&\-:6`~LPyrЧy՝zF׳;s=u5`Rr%ע~Zz"{JNRߚvḌԷ\.=2FKWV9.R&Lٕ VÓ$Qs&1l?RY,|,aE)r|rHq(cE.d>"5|j; &ܭ'T=/3y@I$:tq~VUxidK)_O-\g"љ oZ7{_^&pa#{}zݣseѧw3Uٓ~l$믙dY?V]nP_ '>T44u@MW\wK1BM6~j%(=>o:KUj=&Sv\N޹TW.qXaҭQm]:Urn~SDxttS﯆\ʹ)= 8)Oko~dɄ}oMZAuvԼ1\iKȳev}a5 ~̳UHH8) }ls|<Q)EF3~{>vCleZx]dϭ93*RUNO9M3}DEUWk_V˕AhuܔQ}kV7v4rV pZ^N䡟OjFƳ;w~PƵD}QJk$9$Pmﶒ;SnmYU;EV Ϣ)UFY4wIu|tϺ`ڪa9=zC!/:+xm]d<#iwQT[uE\={ (X$g%jX@q7TkaQ`-ݓ}߇U}OjZsyȻ%*;Q~Uua_m &a}hԈ ~CdjBO~[Jj’G#K?﫮b=tojvO:=xG|yHi,_vJu}/0́G>iΜboi8OyzCks2=樓)睨0*eSK,m# /wכ/a!3wd c7w'3T ~v2(רUMhX)QQˎFȅTWU7 8x品rlhn]e{0+1YJ+A+:ݓvu'os!R_5Dv?RNQI|Ϝ׉urq[cÇtr^i'Dn_Ϥ'{ șѿ~Qk=p֠)A-4h_E,{I[ QSzǦFtXSvl2]zO51K 7wTTc.+/:QczUW,ZuyuZʊ\Z4Z~W&_ATyzG_ό80== ~79ww xO$=~:f~!:[Uw7+VVĥ|y2.Ǫt&}"GGK<'|}wE'"Nw!ՊxdwϛS/82eIx t<<_~%OunGY ҎIcjyT<@_YdIۑA$OV'|g+q{y*+۾c ^D;3 Y[ɯyu]_~0! ޟx^ B|97GM<:8a %ӏVWsCd޴jT4~\ⷆח&zY^= 2Kx^Û~Yah^+x!qWdUx,_gȫX2uczוkw^/i5!Yƺhx=~j_{MІ+.uh^W7Kg?_s4UJ:Kgxr'hx'U<-y,oZ ;k֝< ^Ϗ~|]_̃/yx Oi|s8$y%yLc\^#g)<:y]+x=Pp[;_5y.M? ^_\Ldeww/+ ^>o|̿ߘߓλEG{>;y=q >1+·?.~GXGTv^k^BW=RSD>՝q12?o u> vGK_oQח|`OO uьG? w:~h2#BZauu wn_͚n{<ѯ[ut?^ypx= ^[x>5xoq:?x=Fz4|]A7Yn_W6^]?Tk;TN2IFMVg~ c46vy~o+H5Yli ^lO^WO |Û%|erY<dw̤yϤN_|-uhyaf7p=g9mWKp38d!낃w"x}m#wyto#Y^y`uϧY:^y|>)= xMxJ/:/mx$x ESRwj&[nj^W;mЯ/bSד8~~=YC aڿ3Ron=ъ1^dC?'p̌}$D;zyyd<3s^Ëp [u}ϠV@/?%?^c2/^[j^'`$?EY N[#o3xw8Lϟ~}.^Dܘ~^&0ov_ܓ%S,*=9T;V7t}ކ6zh~ ކ!|MUNOhIuXPɺ|rDKdrmppkXdz{Jf=fGgO|1e.oWu}5zāj)5TN|~);wIH#vqʿVNGOU|!՘Ȯ_yz-tEF}oyP0?D~D?.~Cog1 GcEEF.|{tk F=O6y6,ۅ}7>D^m%{ xDѯka9~]!-m)<(~@8 ^p#8d&o :z:T_}5f'޿(kw<[oͧ_fo!M )k_{ʱ; {b$_EBm/{{5T:fWpSE͂ ⾞MeMUZ;Uj7(^;oU~-tl|ˢz.1[`GXؔ?z\篬: 14/]ŬB<]:5D {7uqE y7I%P߀z7dLy*_t'gT?V?rS""hnթم5 2;~_9w,rWw>|r{|vo#{Oe~0^}%[5)Cqg]͊:z%.H;ZB's}ryuPGGJ 2DTӶ g;y|N|H~Cuvv_tw7[z+fA=1 YJg؏K69H9wOeR_Fֳqi#<]'i7HUpsF{#65-theu7TaTz^j{~kvv(ׯj폾I!_WGe|U̎}. XdAZ5M1~h5wO Toj:&nwQ<Rĸ\\WȴZΜ}; ;dRjAWA]u1NSQg>i'52ٓINK+C;Eklu2~-p;AUW=6f=dGWEϓW 2DeVAލ L]jjUPlq%-UgڭlAO /&cTdNxF˹k^=_Y;|Lpb x=^?]TNj}:$x=\൞OމQ}gi>zy5Μ7_L_]mx}ÙҚ~t. W{kAdD1Mg^_Fz!H/2ᗗ߈~Czox1o!}_J[~ Sx}yݼ?!^Z&_TJzke|/Mi[C꽗ިJu42ѯ7ӕoI'#%^ʸ[8{Z.R_?+~c#Zכ^ǟXr[x !+3|ˆ?[[2 so| ^C,x7T:V"[ͣ]._.$Yz>Iכxމ|Ww8#7G4?" ԪkO[uFٷ {JpςȓzНF-M񿆟8m`mƅ-#y~gLn^#8x=>^.[:nE=0o 'B|-xt)5G6^wrR#6Ć݂׊=CZ~=4X czƷ&c&!!똗ukC{d=@bk?!_g=>SyѼ& sa!Y߿nz,ǽ^x_Os Ş`1N9~Eeѯˀ׋idjkq*=F!K%<5F%)0C0YxHN7 5|./8u_k/?Eܺ }ɲҞYp7OS_#2` !Af|-y,uS8/^>A?C.u?_G,xU?۬ךjءͥTd]Uu]W8^컆CϥRp]t|F~~M55Ҫ7Zau7*c<y{¢t+|~VnÁ,Wt'u ^Bcr_mUI fG(uUN\&"[ 5IF)4 W־~ƥ`ܛ_ j)cT-7r]I -Һ\keMqVs|_RSDuSC10~]j/HRj)}G2 28o&,(/5Lu}3fwVtgUJ^? Z[pÌ3յIGS&<%nU+m3JT]+ԾY~YrUP]lKԶCv.k"\BwLR__9^P]ur?Q~~yr&`\'ῐv["k8tvrw=RM)Ȓqw+>%l__%?bn7si\%_ y?K3~"q=s_Yfq\.y;;ϑ0W9w(9Ӈl4ҥOJȝdwI݊ spǑyEr})Ԙav>z=+7{ 5;$k'+'/{\1uzVo5=O/EG*wz׽Ԡez ꆩgpGDjC"=YL3{3vw(<^ddRXY/^(1,䤚3Vʒ'-Z"%eH6jZvw4۫[ƒ$FT͜ұp=Eʧ}/-&iC*e67C:ejw+ڏW[o]*jŸ`iSʣs_h7r~ZETM.O"m^w~ UԢY'~$kZQNIE{orOy|RꗶUᆋQy 2e| Iժʻ؄aū _Y?!7Fr_2ZX1]>Ǹ3K)9;Uy|W]qQmoEM);ΠFÐ۪wy:@UW`e1jhBQ^s]9>V }[;L]\8T@-j'gq0c%2 0h^7PCGnbgّԎ_hʰXE0?独@=5_8ܾ=ww?}W^ϧѿ>~q^?66nip:ihvqɻ5n'\~'4ee=M|H39>)o By4}Qp:":|̼*`NS.oRETׯI'QuFʫqQ*]ԐESa3SerR}-ixUo=}MzE|QYCe*j#tǩe uw1tgIC_PT  T_Cθ]i.v uSTH{S*ע4]Ԍ>mJ}"3>FzwxZ^ķ;׊|S'MQy]ɜZ׵ⱚC#uut#4DZv rd[6'3^,C(c ū.sV&K e\,W@9NNE~/S-iW-5lZkT]'7S!695 wilLcZ5nՂaq**=lyߥxiQhH-U_icOõnSoHm*G6y7"3i%jGJyj_Cgo ekJtw>BSiᴚFǙE]?Uc |Q/9_o̤Ajzê߅ gƖ{)2m\נ r2FB:"!"!*i.](]L$l˻#xm[jy`]նjKy}'r6[`{U>%&*uV#%"Dju@E.-.!"uϑ ʨwkN)?܉m$9-VSk0Zpaxs)ت^P7%~]}CoCY8s](B'r>c#M]cOU56VZ,#״9k ?2i/9k@ ʻk^2[W?{YkE&IsS{>gu.og{= K[z|jLfuu T߼x1cu}jnqmF9v6]Yrr9,՘c aCfUWYt%?|NG8:ʐg;}h_Sx%sq;ϓJʪJ}Sr^AR'"Iyjd5TF=)|P34[_7s폴Fʋy+Xd"sfJ^çM5riZZm5q0bslBgtA j+~+\ P^k(WfYD>w\h:RߒMշϣgsMi=5wu}8Vpq, rokjXOW=htR {Վ*S A5BP37\ϗ'Ȓ>qzaF/wY4D g\KI6ZЮMY!N9ۺe1#>=TNW{DOANw7+'[}Mb΁Bfq5ȍjbC.>)&ǥ**V$(ʺ:isd~'9)Y#xE|hw.ñsޠ#ǩjڴMEp!b|nIֹOo?~(,sq.}3pxgp'vE^xFpz`QߑjшPF?W3c=jR nʣw3_Q:;8{:og5Wi|,f^YO=~pWjġkiʡW7'oyY6::^.jP],Yz8q|^n~6O"7z5Cꯟ hX)9?J=䱯#Ђ eTc '9ՔQ GP ZrL"v9^Id/,"5RK siTvUzu9N|6hQϱNNn+T;-|>Es=Ƽ8T`}e@g95NV}Dv>.]y_O͡)=Y:z>݄ju+jE´2oy#s#{\%ƝI)]%?b<>ߤ kq/Y~#~7y.$q1vvhG\\2|bIڒ+P?ߥ5a~FԴݮw+Aږљb3V/\w1fϊ?<"lV>>l]_ oUM3RrRȸl"P>6yuܬ͖|T58˱բ=|yKy7r*oNY.o]cj!W 5>r9IɿbZ<03\rޱi}JobwHuU̳J-vJ"O"^AZ{}-xZ}+|m|_N9NZI^s܌jF fsY[.B^W3^_G4$wsٞSpv^Hd~밾#|zNOOr#nܥϸ61v," QMmXn :Y^qs>ߨ܉fYr"ƿSiL|y2'j{FG{.F2_󸾞X`|#Rޖ׈c}vˢ% xkyxzZ融:Plu$56kmח+n\굍M˨u?4QZLx7<}6[C{῎!Y?" u=_/q] S'xd/vEE/r7[uA-׳P^'<Dž:3oq?%~u\h5|ė onW]3AFx۞f_{'km ׭FUnroK7w ^zȢ]8%y_?_Gk .{s^r_/tY]wʛtgxS.Q-3b_ϋgf |~]I}Z'u֣rӄM б\o]k>rV<ͅ^KF=UΫY9 \SXU)7xI߿_-α7 q_/o?Xp__xKԌ̌$뿮γ>!LMi6N5RެYVvYEr(B-?w!\*4;ʱ\mQ7mv5&7V_x6|_cէoTP5#"ͩ>vO5YEܚDB'eYoM?OI}jz}Ǘf+lXCdj)7>RV$s_jNSJU,&7=;}?|=q<~t;nŸT?8ɬbV'Z-QۜNd|*Xuje^I[K+-waUy0_MQ^1*ϴΝƖLKI^y>jV*֨U{f?WyfV 2}QsLWMgz:ʳT\fxނ;&d~e3{ ޞ~`]}rvNةʸ-gZ>H7X;#yy//㖙-YĹlz,~y#oKGl5Díbx=wrᆯ*EQs>~2,PYAn !(UN8c=S6..&_Me5cܵ qCn3Y+xO!jyOUӛz- )b8 OȞZ!ôKOWN &A)DNk3{;7IJb},?P\Oahʋ'ۜ\6] ֻ@)W+a,plf*_ܟ|} [Z̃Pmqai S"hչ:>}; *GaAI[nor<>e1A]Ty&g:EVCG}zu դg8rna^^mxX. rIh?aB(מ0PdQ,M0Ot|a+,Bfxlx ,<"hM ?i%n,o??+y0}? i5C8j~♄+ƶtBRսBC6LOMyL< ҡ! ~M8=ڣkswJ|}U:5dY\Wןn8,p>t*a,g.d{b ՓdüU#Àʎ )3XVn-7ۜyA'[Eqg׷QZYHDKzz9S׈}FPn E:f+Sլ&|9Y(>.7Jxj(ݙ"K{=:Dneا3xL^*p _AMhA;gC;R2ߖgӇz_"n[ӱ~ }ϡg1E{14r`D$ts7#{ ,bN ɬξ]!`Gާ'E_%Cg}7]>M|.=}|lƬuo7s&Lˠ\Uθrt-=f." :I HX} v'2/_'~cfS!% _c %A}~~ް?CAjLqֻ oK00k8˕y?z#t%?$2_B| [/@$T?j^XɄhR`A"^\AߺY2+q<{nwKHXa0ȟôL߂9po}tߵp_ Xn8POLByeП0 S7DZ).L$6-u>s($߹k|cr&w{ǎӦ'(__%wo 9|ޯM_Kʟ6B~6ߎ‰eݩ#.+2~zѰuy9R=4P*#r cU$⚜׬eYUJ_[ే2_2Ԭǫq>^[f\ H{j$*ձٛIH\h>y ;ʳIJ0ǷM1YJK"I~U@5SmupI2{Pubω+ݢIQv"EקڭRpX N97O \;JC.)jwl˯0&<]Kn< nG/\B> T|D.7"|f>PuagĽh9ꊳ+MjJf7'=8 -E~ԹcStt1.n~emѝz?}!W (QC)ΪIJ[#Tj$f$2ۂqS*?!W~6MMaP6@=G泧/_ ϝn;+LP^|>ڋ#9PS>gAפ#z>a՞! wWa~7tjƋ-L#'Y @)?WkB"ۨX*z>җ_RmBy]YB} aMrC)9Qn%Tzh$EŗP|P4 e( #b &jp!pN6ga"jo:aVjv{kׯI}u4w)PV:A{.`}N.uNhW8E{r&.pbw#?FԶۻl[w2c-}aWj>b4ӯo*艾(= "Vf mCzzWׯu}HHͪ!Vi]2!fևܺ߶;̶!zmM'}p>sͣ>SKʥևt]Ay +}C>e!qp\"C~gosj}YI*~~A~k\gj}H"??NFS)I@ߣ!pA=g ܟܟ)\rHϧRC/!p?|3ẋ/CYy ~?ׇ)p}+< ׇPCx.xT/j}x\NE/uAayz x!N#~p_`Os \zQCX=p>zkx>z>S~Up}<3>|+ܟcih|{I}C#yp?x.];h[u-!9P>|}>L@q_,>$IDև8SC'p]/}.=Na%| p=>d\eI-i sCR;7#@"2#K҉Ƅg~ϼ]co0Q5kHJ/Sa*3e(}zvKԣ0Ԭ.=4u\"A 6K͙6\3)PA161wU v7c^ σr 쌩S):li3~MMjRTʬBNQAʮD ?VCը_gyQbT>%=hu/Bz-+˻TZڝNl0m Z1㊼""0g|d9)@p/e=*Q${5`r7JKƟ<);z Α;'a='V*޽p=c!E=(i/!3M 3FJtҠ %u`XZ'Ä>~Xu㐇sX/vVן̈́q6p6ST |^WiMĝق9z 7á0]D) [iGP:ꩇvlA`:RMv5e c ƾ~@Z$rp I-G JMWI3T хt/'}qخSxݚ ys? ҵ' }=S:?-s.ӻC`?#POә0]ur`Zj2׻%ڱu~1@## |am;ml_o~S߶ Yp|堻pM%pk/?}nuW7K ֥ךOp~ Rc5_y~<=h <>7E{ί->m-Zτeӡx^S܏>ޗo的&g8fBqy(pP8 )ί}|\ίOTyנ[p~MK!Gy5<.<_ߤWQhx^A.|Hͯ:#. hXp~ 7xg,H|^Kz{8?p\k x ͗y2z H_#95ܗ;~ M ׋} OxQ+:ΣAGy笇va;K_' +믏QPϗY_kO=/D4u<>7>$=8{=MoZCͯiw!k`{OxQhCMHBvȇ(UEc,V 6;q,{ݒ.׆>vYf5ǻԥ<1$GAaƑ…?XPtlTrxh/zNm#0_'"¡&#k* $O:'aZ9a/dWb]M`>T1Pn6-sE|toU~L,Bc}eORFC9 -1Ў5l7j&'! 7H|͸8_IxtVqۇ7@0}7tF[q0-Oc!N/=|ٕeeWCxx\PէDe9!% >qf )9R ÃW"L;1eC):N5<da0uA)Y){^@pYhⶡ)鈾j,X_҄3LμzEd`}Fo"6_u;`g0_ nSt#rH} 1Xcy4c32C}ޅ!G/a鹄~^'"L?)BlfPVMWA^l*= RR馄iN3B.v5{TXcBF˳D |}?旆t{ BظoJ, DpwWh>}W^v"얅 mfTUᔬon!?cӨwu:ߍh<2p>U)αU |=.9 '}Mv}jRv?b27+?ZW{1PD8ڍ5`==Q@@DH@W B+_/"]8X5'cCc;q4VZVNŔa)MeAVw,k bB^sw0Lk}+:.oJG;aRȪ2JѶCfPIdA7i~i~i~o 7?O4?O4?Pw~0Fs,'Np0NHlN~1o-'HŅ__@*uuwuз[kekjnoE B;Z/ſ˗Hk-+H /+ WP(È1Pb(b(bHc ! $D1t0@:H`"L$ 1<&DH c!y,d3zb!,$#)H<"#)Ry$OY*%#K$YIV@d$YIV@dE$YYt("H"ҡt("H"ҁ~aB)!JHҡt(!JH)#)H2,UF}<y 3pg>}<y 3pg>}<yݟ?wkHHHHHH`bmP/KBjXb_u_p`_p`CE/8T I:jKs߁;˚8[S9D1d?bOƨ(2FE1*ʟQX۲Nə^n#UޟŎ߭?m鿑G/ſw_b_`31q265vj*,Nǘoxs:ok>ſ M=^W_mcgc{@<[vduTo{~w_㎰w|Gr;/?Ǧ#`!msH=/v-DQ^?R=9AXuC6K֗omQfs5yY;e}[ BHusADPa|7g|s(<[[Z;9UR{xiʶwwG>?ʿGgGϽ#?#H[Gᗀ@gX6+:W~G诌kXЇЫx~? Hzs}ay}`}ڑʓF}0^\yi;rY׆0AxOz ĹteiGFNo^[ۣX;?tZOإPIo,h os37~".]C˕&[^\׾ zk#8 ^Ŀt־o!ԎMʧn?{,#m[˚ZYoV[~u2vvDpỏ{| '^nhps} oMi/V_Em=;tom-C{",/}_;<ӈJ:X;[Sy9yR?BZܷ5+flm`n]lddڿQ \ַzN;|ja\`d )#Sd?2EGPQ)TȔMo-.[ Zo-[ Z(Zڢo-#@պZgi=nhklbbnhnlD`hnoE3z;9ɺ[9/drƆ&8X¸u2ѷ6S21ws0627tu@VXg++Y"Nƴ 1WcsS3dP;s[݌LdibVh.6.Fm6FtNV6V斴%ݨԷNf4bNt3+3w8CN/̑51F{$klC[kk[-"N^+GtZŶ0s::q4آDŽb.o6c+sZlmissSږw %nI{WD+14525uuԒ mvGC[NmX9 1N6ihiݶt=7r62ut6vP((s^ my5^Mo^ZvcL~/D/}Sß}?O0c1ObyGOI G5G#+zm?G.",Q(Dp5bߎxb</Ki:=TUDl6 EvF>2Rwf=%[g4O =.Mov۩<QGC^EOW |C}Fo =t^|PkRiCi;Tۘūx>cJ Y[f ptkC9}>-O>ΐV}>\`hh% %^6+X@.SU y. 636*:fyu$q7oԂOi.UόBQTrbE|6̿^8mRi$6iKG,Wip·rn?T(\mh{PI`T v։Ǟrara:(ήZS/7m  wH=_ MFrSd&WzK |Zbz8T7,# čA::ב?gs@KY `k>INzӓ.uZ?Gm.o~R:v>ߓMlOp_ m^X\cljC D)sgێLܪg6ȡqnt?!&4GdyQLvVĮSoWq p=rce|_-~qm}|y/m[ю gR:15Uw!O g]2nSo"9eAK579tͩyǽ;U^wQTE]4AUʷG:0u.xɡ߆ÉN1~Ch45( ,$~p_ 44rRu~Nw^>O':<ؐu ~]D߁~q#j)76E4po̚nCƏAiK4]ѡ5v?yˏ~ӆ1íɖ~xƣXt$|;]?kW/3Br럒/W;i}[k,}*?a}NH gmtO|f(J/fAfs0A&@FtuZcj~}9f]xAf.ۆ2zK~t$q5+Fqr^mqA3{5>]!uÂ%=E~:<\)ft#ﰼ;D_7fPx"ȇx~o| 9dq>gn|_j=Zt_KaUOU5DwWa EA 3D$;V?p~H~~dK2(Mݛ vvrKё>n?;gzysWY;ИOcn{tgĪ8[&ùHS4>  ԇ;W:WniI~׾%|o,m-E(:y4mKoi?쿪U p#"3[whsF99&&q_̓_;~^日= M3B?T]M_V͟jyquWMAQI5噋ܱGpHj??U??S9YRVWUngЬ7bb;J/dgjLsX?Xy+9tm?U}qSz:__N@,-Vqtr?}&ryS9^i˿*zhyzkK G{DI\?<~O?ێ@UCg9tm?U}qSz Sr~9<$hƳ?sHj??U??39B7VWU-C?(љ]vs=}ԏ] M`f?^h}7vn=y誉؟>篪/nʵvw3QT ґ.&in v\vVf]#fhMZy+B^h7w8wuׯg}t!,ޠ#DS_F~G6 "vGiBJw|>S>Z˧|ʧ|_KOO[) b YW߃ʛɚt֩lItCoL/tqM'bC#~mw# ?8) Pǎˏk3WΘqar<84?vv7:j#kNA5#OCt?P  l ޲g{oݴ|.Y{ҴsXHs7g7c~xF\{'µwZ{Ӱ~H_<3y i2\_UC~|ON9[wDp3gw.xqm{'@i_h;i?>e3`>@c@{⻃~~V+֔G~8BYq/y gSz?))*mR7>S>ӿS>S>{i;woC⋵!^*i7Sc[xXh9,f)MeыacYS<K7))vD)m_ad aS%cLֻۗ?59~kgRg.cJkԥ*zJ/(ZW%ѯZIߦVkM^|9Ʋt.1dKn缭><[XtxF؋1ՅKÖu7W9GC[cG@S|gPunֹj0y"vM5ڝUn[}f֏\xxu&+G'Xu]U&.G/[kn(Mc<U]iǪ8;92ַB)7߶?u FiAE'YvL6^\ܠ&%pN9]VM]/vٸ&xޠ"W|.Iv{jT+KνR1 %?4>P)qvMk)=6=n_[y5NoLBK̓<MGAC@n;]RP>->)] isi=~~'ߙAK@Ƈ yvg**q-l?h>%s0Tn<V:@Mkwyi_GttJOrρBUJnvOf[|bW GwwܗBvq|5`c~6:;^Xp-#mwc7 ܥ 'S2 '̯x.ʍI}O0ƃ Kpp1@ĮGo$N\#O7#:.OR=V W*?R3OB{yS>S> qNy/h!Sm><t=pu[j;g~hC]ۑ>կV@έלpCɷ ga\}{g³#v+=O!J߮q=H;ɧ)8Ґ6VY0-.&R I/8n\\P4R9jz ?n;6<_qH{:~Gko2t|2;~! G QD:aVLٳq}o/߷ݲ̪$ hw\m;; }$LѶ\nEx)  )"H"ҡt("H"PD:/TB)!%C PB:%C PB:eCPF:eCPF:eC!,7e (G8QyUQEUQMk69Mk69MkXkc`m 16XkcbmL16&ژXkcbmL6XX kcam,6yMk6yMk6yMkS6MkS6MkS6EMkS6EMkS6EMkSڔ6%M kSڔ6%M kSڔ6eMkSڔ6eMkSڔ6e c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c KuLJ],nRvSvA-[=+9 !u@IݣjE-[g>9Pd(_]ѧS;ؿhު*5Td+qsGkSr|UQ:?moWI'(O(?{Py\7#l%`sbYpL7(=Yj2z'QE~v:T_]Zh Nܼv|p'@'M5sՠNmǫW( ҋ+ÍvZlGk!SLDz|pS,WJ]Z/?+^1}vu{XShwo⧈Y~~K#j[OS'^\IP(,Lz{Nl{Nڿ {L{N'oh|iZ+סtVg(}7uqQ}*{Ԏy:ZP#Wf(PlFvq(?OqqNf̪UKoB8+7Ot] h>H~3y_uێ"\?Y .YӘrenzϩ&x4rh>ϬC[ȴG8ǭ{4-=Ɲ+k"yeweɠ4ٴ WGNGf8ypJ#_{zn:\˒X~hF2@Pj@@;~.GGzӿY;;F¼:m}VZT@Rk?FK/%CTd QQ!*_2DEK(/%CTd QQ!*_2DE_-߲Q[Zl?a+w>v&k]zɽPM?~A~ni|m7'_LtT/UL {FUdO&Ov{wn~mH/k75=v~cs@˝ǝV]AAkyF ̯R}^kO*6G/>oypyBe.&FԺ5Uk}@f+UTZ)>vo|l8y[73ɫYn.</:j5`a# ƕfX冧dɭ']\~r\d+&T,~4f|t |S0Qb}V=UAb?#V*HӝLET_tP/(c?r3Pg`-(uHT99G*H:aJӴbpEv~c%~~u|t5hq߂_P~;ȗ}&ߣETܼŅ|ưsk맟m!_+yH '!"ka;c?4YwE'#1k佞r{1Qn{m|_푏5*c~[9ZmhRNvq깏uJA4UB?i; F h`i_D)~??+$^BPEirgtSR AD;Ë4ЌU1}u`H\?Vc▽C|ͮ~7TOt:s{P~hzSh'w'{(.ͧw.Oa:Q;M{nIA4=|zG>)ܶ,~]4Ω_;'/lb#6H?y4ygRi^q~b䃽NZ&O8y.#뙯Kl)eyKU=[tneE@ k2'Ǎ]&Wk!34"_{,_c^"I6\50r'ƫ(|G޿py!H(cEVy)Ky~۸3bb4k?^g<=3G, ;߬K^S>Ma}qWՐ4WXsɏ:zx̿[i}{W9A'ON>>P2h3lLAȒV?> AsM1ZmâVA;Uanɷs7Dž{!jA~[ޕ ?ۑ*;mxeI.WJF7IQIx6_w*t3|[Pw]zp9~X|x䨤7m#/I nA>.M,<;ioTqa8gʿ]13<7e&Oޝ/ؔc4c]n?Yqf\6UXuu[%5֮ͪ [UG5⻷7Ɓ{g~;5 e^c_2-c6|형= ?MKdw) En<8c#;¦:?{upjdoMN`Ob<}Fvf'eHT}kHuهu_ڗ'Ԁ|41+V|2)T3(MVIRb1i (2Pўs1(R#>YSBX &"X#{r.,K_vGAkA]}͍ @y`\gQϳ՝GMq=#ua{C (X}/ZhEۓ7S YjFPP>hN\+`=k>s_a},-6?JTxB4UoeoRph)pڂρmbkae|DeU\NՎQ9͢-?<<$ÞKЮWK4M[MQb`!.l6b__߱դ=OcN/+ ,\XQ>h=u;7t;/AnS|bՀBAF+]֞ww`!.$Ło`GEmHe+O97CFd|Nf.7_8fi'>K^AE.%A0r'6'^sɡ!/yjk_,EHq'G?%uL`msl GĦuFxbWP鍗?ga:*,ubN|r(2\7kLڦ x xOnu~C@L`)b!3_OJ&`%Z&"4G:߲ffRYPd5'4紵@Qhiy ٖݏJ+ՓqODVɬO\#4KQ*yAo{ɖG])#( x#-#[tWLD+5wy[(yur ?] =)eo4o_O8L+!J秩g_姩'Oja)aܶ)QOm!R|{H7@>h/^N˚`~o\VI$r7ճ)Bס|t2ԓ~G߂=IX>Pv*~/OaVi:7}OMʈzTZ_#JW|E]Ս% qcʞ# O"E_TAHQpW[@3!ʪXoN`ƨ'}Q WNhWmAjU;:w|(0Ųv[Y,/z+id[,yx6/_T3ȠH0K3osfs[7dǃ|'Yɵ$4C>yC>S W-h)^?]ݕJPqiƬS9tW`} ͛<`țĹ$7 q.M~+]=]I(<uZϹ7KZj7вkfWt_ @Py|X$VEn~3Φdp|'C65j |ȹr#Oا+_<]1kM\o{Gѱ@CC@f7_כs'H9רM_FzEzyĕ)y! y1O B4eBio䃏"=Fx3D_<4[<{_@D;v~NnAh?xNJvQ?gj=ѯ_m9"H~sJ١w."y^ǭdQesK"՘AlusD@pm}=9gk@1׍矹Y|a-Z1MSTVj(|+Tpz/>{+v֬ `Z*dolG:y?&,[ku'Ӂe^AV)3,[9DM z]N^Rdmvb[SܪZ#{U b2ff1I[Ffћ#&ԼBAkտYwwl sj;Dp-61MU cɩ ɫMzG) ?RѹyN*lD,uSZ%¥ߎ7P]֒OlFz"M{JrUbȞ`ܔu@gޑ˃y6}MbM՟=C8+)45]}giIQZg݂OV-ǁFϹw-Tm=O-`1t;v.vr2sy;Q:0쿲Zh-iSQ,/4G0xU}j Ƕ^o.L PXy|&n [94 ,y}K`d@0EY)ɫe,=r'u9֕0 ǁwdET+½؎,`EEH]u꓁t3?I}Z\9ϠOܲE; sڽm:U hW[/9uLQk6 *]mvJ'`z ZB`|[ 3%{cs|451 >Kݽ^zvx XtHR==CW]l tcݷ|tnnY`r[bWr\g>\ 4eθݎD?񊼶=ya [t?*[8&u87Hy?V;t$ i⇃cqģ|b8H6\}+-d$; A̒w@ ǁۊ䚨iE}{/2dOGh2H qO0m=Ue(fUsph>p|DbHև(0g+U{I*=K҃#W^Y \~" UڒOGTʢ ˕öDT%s7VꚬYcQn4%e!m:84g{O[/8tޏLh].;-] Q~n;ӹ=`/t~j6C۹F[em7ct~RBR9 u[Cދg jsV|MJށUy>5nn6W<;ine% UoDSJkDuD.ߋ} ͛<:ڥLGV `~e^olLxt>/eمʸg7lt:ܵϦ nj>e?yÌgkTμN?{֟=?|~ZV]%}t6}y[q=z+=b?I\h 6r9WYܡ=)@!v } C^lN9tR3o*w>I? Y oҷ-|\{e9-e,+{xOr7`Y|PyCQ#|@2;J쳯fBT ?nXz8Y,t?ija& {V֭Ͷ[#Кm`RhV\^.oVe-WK{ 0Ե^t ~؅#S]apXگ '[9eȇl;_ ^>`qi^A1QZ5ٻkVC<ƯZ ST;8 dC壩 Oc Olg/ek:[dp|aX;*cSlf`(28A7i[\)aU8cXƽ]t'o_8H1ͯtk.pGs>[Tz. barOj$tMgw񣞘kb,lx?2tmbP㉦c[+Oen@ @ycncGT\Bh4cydЎ Ɣ=N~OEIUӷ, qO01Pᒔo{ώFxG#m'⾠Y 1bʥS[@|f[ л7 ~eFUdB{yKHeBr]C) DF2vڶIqQ)D׼2=TNQn뺬rQn{e}/퉝B`Dr~ڽګ t]zҰv鍈iAi\f*0Q?+F]APEir?SIS='(_QKڏUXO{0ć1`aH|: + 6u%xPuQ5 |& IqkL,X7_gT>-.8Z݉,^իIqR7 Zk2o*./? ƞJJmw2;1{jݩ 7k^1Cs ʗ %ɺO-)GAt9?uBVh] ڋU)]h ѱ[He O9ʋmԄ=Xq_ܒhf:[_q/1عodKVݙ]k͟;rn¥C9~sMs5xܣ;N܅1#;`=mnX#5fZy*Bi#g54;bhrjY7%.+ vtoK ?꛶NSCes }aʯ~],ɖ./3KsR=qDل^@ܞ$p:pH1dok 4(߽N-SQL>#'|8l0IT#U DY4Zo \BDrZY6%|RƤ%M@R٭m@\'I[ 숧I=ao'@X:*>r}7vmEJ@KvN2 fdk'Lc0ء9?5~<{iҗΞ^wG1VlYu_؃.pEfֵwA'yWN\/TuIh[ļ lu3ֽ:9^#g4p'O8ijrbAbUl+eQAa<;T[V#<{hOˋe;>5(V5;'S`+_K `[8/K/}:0sYr2`|+HM/I l+c#. DL֨wƀuZqL9@G%`bPۆps89qxN`]^|nh_qii>nK4}sP9/ .g[[+]h6Xe`:\KMFo;JTB 'c~FyFQ@=f1vmg&0gyjRP=`ѹ," Nz6_h5GP~Guc:4kuj" rykXDx-X؇`M$'}ݎmk4AznstO*ce7b㻪 Iޮ!9t?2F.!l6]{ l>e->=6,dI.lY=(*A8KOX.;”\vx&l"R KVJh~T#{~C@LO͈}=W7HW`6w478uue &u3QCxB\9gz(|ݝ)ejgDQ~ܵ싎m =ڛ ގ0g:׮gK?M(?MzDo^A{y0oQZኖ[P=D)~gHCk`pN<0F)8AkO{>w>)P>:M/ t_StyʞaX ɡ7_pvv]E}.0(O`zʷckH[`6l[иsyT)spGD L_42. |l #w&pȟ4}g<Wh׉>y`erӐ< gs+dOɠr{WeMyuC} C#@@5SkGQq3'.V8hڳ21<ᶂd%H8t~%uI.{]ݪHl\"=OvӁ[E b= b#zO[ќya ߣq'%E'[ջ =^ژ+PQ' ݲDO硰>мΣ0@3-776J؎bRǣƏR9@WOAd= 7mo/ L[|3ya}sGQ~G̚2)'UT\.H}yq큒&)J\U?}~v\3c.XXYh5yMvcvj#SKW罅gszb֨W6V1S=$X$6l,jR݄O{8$vIRv9ӗzA\ŗ햷 6z4Y#y1s<$Wz,ERQD&\6қo7@d5h1Xd_ZLK9r"$h%tIqFg;_"AM.|l7k dݮ_|P$}>ۗU )jֹޔ`]1`síԽt+؆>Fm/ʥ"-ӿU=ps$&Mh1d\Y27'z HxqHOXD1|@3S0HMٳAn#Q}rmĢi[ɇmYCt{I¡!w*֨Yz(|;GX~HF_, OGCun@UAg ]?(e'uI<O%gs6n'O9@zX}pv9pz8)Te"; hi+OʭޒbscEkןA znHÅ`TfIr1y߷oh|iگ{MO %ww.YgXw4Qͯ{Wcܖ5Sy|H/I=pu1'֭l &;-dtu)oD_ Q#^!ju=͈:VF/띁yϬܜh.5+وr˷Mj\(=zM^ǽ4=J wȧ=7thW\vM!ԳkW$GOS~vNL+4~*_4*~G9܄d/wYiмTvp6D,fL߁i9PvTߔ Q~Bz˷򓡝HeO'p'm\O'A;Cү>t23ʗ$*j><>>272,=[d8tg2*_8=_=38pX C[7_8V\ X){n0݅_) 2U`d?{xy0ܸHBQB,m i[ꏀXa즕3y~۸%lS|4x/҈ s&ٽfrjmOy(4otMwؽ|a[igĐ/x׺'K5om &.TCݱczڶ1[Ld]hܑ*{Ԕ5`v|aUVb$1 )}h|Y]TneN>ԟ;57A㈭A5u`|sN_ 4=JU{z罅gs9p龠K/ݡ zzp0@9krcWF I[G l$psH`2:QHfo+ Zi!8֓4lWS&58:{40 d:^V'r x2{>HJ=[!U2hn_i*p Ց[?Mz2?iۈY˗ w"̼5e[໋ ,-?[=ݩ 9l9i龀_NHīfb`;KLIk[h]`ZyG"O%CUV;=K>:KݼZAz701hx߾du.W~ ^\y92|n}9Ȟ@IdH1>r'5)^闻3νYօ-q:oYs]rDTo%#v~mp*>'xL3f§gA:fnP0} =ػ2م5u2x*5`'INVDvZ >7̏P;fi`t!Lt={>:#Al?cU:In6\v4"Ls%VZLfs3]HE5/ 4O}9i2S̷tu7ZjHj]<:'Cr΀D>QL!6uخ s@h!iN' :/G'$jTF7F[Gt(#[-6K MtQA( j)7՞E,@xf'^=Le}HFY>#.H׾Nk;knk޾ংƣڮ҈o~f̝ĚBtx##pu1ѭOJqOT^_mL}mEH_zy0` 0n 2iȐ+dfޓ+b t}|d0oC$%a+OYu[#j;d;3-= =КIY:ՋTqLa7+UwV^&nJn D;[jj.rYRӐ^ՍձۂCE\s*&+!-yc|nD홭/2luwo+7-\v>v-@c4Q:?MOeOΕn|u? 7 EP7?*eiUP]D)H_"zM7 G]~B`d(Q>rrP>:Mٟ zo_ 7g/"ݺRwњMzSyu_U)K>i χƒ cNs>9&_>KԸuʉ h&wd+7V'xVv 0p;}ܔ4o'uC5ˎصe? Bjx%m7OlW(n*>S7lHُguA8V^cH>ǯY} 15MZCY)nҟJrjZhܧP/RaBWHoF) ؇ ~amPM PNO]$gsw7{7%]Nh&M'KeLiP6GSb7,}auoz:↸,X}1k `=;_諜:d`pR׹(yi(Ej BfMVc܂(JVi9[ ܩM $l8o9&(.Br~H>ZӵnM<tvFt/6\Mc-@x9cZ/* c}z"C8KaCo%o8v"tK:N{C> {Ej-Fjϻo qƁ3WF#couNASEOE`ܞ9Lop_,dI` ;׍YP+v/⇕E=-Ew ,Xȴ h{bc>I^};)6?# өr_Q=(s]ֆ0(d{q:h>UOԿ'`(QoYoM&aa7U$6iPO46?y.OSEHe[rO?huخ3;\tO'a;󷥽JD)~9ʷ}篔޺7ov>@xw}@ciq|euw"րKIK/x! Z‰+ 9aݐ4+y EiJ_MzE^IDDUyb%Ef ^,&ra`, c|i_@mMPCt5\ldO]W*d@ӧalu[Lb(|x;7@ ]/~||[zO[Q 괃BCfvQl 1*c>cPdt(7yt}rW%0^o؃V.~۵αK_[Yu;@rЛ޸Ca^܇psGd<?bwg t3a_[9xF 8 ?D0ǿ] 9wrŝޠg'Y[;%MFoG[![8 =ϡ+䁳.K')-cEfS"#"|?'IMz2ҝu.,i]rd)%٧!ƕ۵ubPҷ!~j_4/!HdgOdNAHf)Ieg}ϸ`d *r2{6IV>.! -"D'S d37m؋.תN_W9b!12J.z{X)tSh? V Uפ6[̑Q}']E廬Z(Lم:V̈yL?;dmbMp\P`حr{)v3}Fi|7gisݹ`du^RO? 1y:Ddh*٫1oHm' I<=|FtpxPu˜Z>,pvihzͤ+*6kp%RJs4W~ aWu񂹤ban'HW}.n'΀En)yFhA)Nߍ'LLQR$="{LzWd6>='Iz??iFi/(D/MJ~5`<}O;o\ 38H(Woi3iڽ"gv>iVנglˬQ.H<^ܚ'O՝L9$ԜIجKZUz%F[܏yv'=NH#)=_J:\;cE׵zVQv;7=\Ӄt;˅\~fjߨ޶4-~ȱ:Pz}m?@+%|*&UCu&nx~*ʔ,ݔXqFjߊۀ1/mB{ DEMc[$(<.PFE*6gL$MBԩs* t"/xۃrc8%bD"Ɨ1=.C{mv܃zg(LFO t~Ue(=5v]kDPyB|UOtcD (?Q? 9@z.VOm^:Cz*PYbU;5xmh':M_zoOٿ=_,?YPv~{~m4I~OmxR(yin{4HAVcDq**7O qT&r+މ"'-X2Ub*IG8w[|i5wT)}'=_Z%oLn+LZp#*u|QR_]Hc3V~$SiA{g9K,\藢-@4@ܲoaLB}Mt2uᦣ`%LQdV id\d$}eSֲdƹէѸ\ihٹҵ#*gP~-1ww:} ͛y4w|uSӑgUno}#!4uYq<L1O7,K C8#]wl2jtz dOGQ~um!q@Gx8;NߜHnce qڿߝ+0Y"{ӇywIG/G[g5~|罅BsY IdႩ=i_OKmjQ'g48cG=4.[`vmL7kY8v,P2zN; E'2?t`Gx{;&Jjמ@zD*\@-yd@(>~%\O39dJ;seSiKN'&O&FIY=- J>S6 ڬtmp%'g{̈n{?j[̆v:x<^ZNW kbwn}`ɢ9YJ oB7@ԜbקOcmr- dg/@%Sc[/xF勜Zr~&7nyb)F @IkտTO1(I7* v:OJY*b.N[?7~:H<0+HEw $lXhڹES8~d CvRmQf> _]$y+6idSrbXb漢a Ng[ÑW/Z vquͲ籠4 7c1_O,tvnvK| _*t XXek+bZ39I݋*SL3ocbBA pz76[;>c IF1 r+6<,3dVW:ra9*ZEG?.Wc)+|'UotR=!2x_ڡ]Wv3HnXg/(=io~xePr֥Ïm;&^eҹ/v "ySpnê'a^ܙRr{mr^ SwX,\\sv 7h&rQ s&c]xm 'Fxbs@LҮ%e3I"d|/dh3+zH /Su`OHމ`|gb)@Kው-9Q:ODZۈhC|TO"8cR֝ta.R)"s_5[gěmD^.n?{mN? >ȚE2ڈ:TOYEuwݠD[ O\/RmC؞qʊ;淕# _}ڻ i KLzQDi>MG:N/ Q_a6~'A?׎y-\)sEirc~RRܠ|gDi>E ?z{QUJKL<N7zxclke=h1NS@=q_e4O=){ry&$sO'kri}`:[I3L#J?|yA/%F8ydnF]&dËhɝV_y櫞FX Rӷ<-ڷ!][*<$;wθnk,qr ±|bPgV-k|'޵|)d[Zuj]w7ś">y,8b̧N4` S] 4E&jVilP&w|jCq|qu`٭>hW$#j=J]h:11l!2^NUV<^aȔr[ *|؛PSӉ!DjmKO^ :Th^ݢw LKȠ!\ br  m%Mv˦"Im-{ʽ,!iV? `ġq4E #T =,H=oOx׌V3Fxdii?UٟU;Bz[A´(fS!_Uͱ)N v!{:|U$>.M =h[Z^~tzj)7q^ of[Tv \F*l<` 4xGgI(MS;0$%l' u_0wX)oiS__\Jh|q XTc*xF( (a؊E+(3f`v+*b!a"" &v+*vo޻60sw1s/ӷD#ba=v6ܟn=.|23lDoC X1ey)#p Uj/n&^Zg4lʦng`_\xj&tˋbzO 0޲w3.y`|o=O8`+{[Fg}|`7[ߜ4̫g7;A4Z㋽%}9tDqnopE7{0+.+6TXxO|ws6[8Q2߿ 2_)7=]{&iXz}r}Ccl^DNÎ-89&y YS9T>^qi g qK*XoOesxN|ֹS \:6uN24fJZq|VM% x_\ˍ+Vϩ`MgCI00Nd=c"[$Sv3SSfcz\|l,uIږےD޾iN+&q 8H>fA岞$> ~đݶ8#^;4F"~6,$RGndaGoFq<Dig7.?(/%g."O/Q"J2.(ӏ $BGSaD?ӯʡ':mHOx`g?/sтc@r܆>od~Po#Sɰ| wO_'3ΰ=A#ng;%덪2zzS)Z&,N0#H-;xU؄=ˑmkfWl4_v#G?>\ǯ]eژ䵭+2-[]Y\6^g-v.L!q?mOj APs=g& JĖY[%;9 d{4y6~ -Vvi+N]>%!b~ ;ufr)'B5uq'E[ VpYБ4gǨ#k8|C$t*B{^;m r )^ab۟~p};} Yb"y|K~OHAL!s'P #p HyΓp^&| GQM8n .p7pA@`….p 7p 7pS 7pn:fn&fGلCG0'-$"-&-%2-' …n%Vn5n-n=6n#6n3n+n;"p; pM(!^#~ \4.p#\<0(8wp;I$"\24,RJ4#\:2wpwpwpWIF넻AEۄCG{@{DDŽ"P p/ppoG3zC\}$'}&}%7}'$\~70/V}&)B3 g$I?&LB3A?)g$I?&LB3 g$I?&LB#I?&LB3 g$I?&LB3 g&LB3 g$I?&LB3 g$&LB3 g$I?&LB3 g$F8B3 g$I?&LB3 g$I?g$I?&LB3 g$I?&LBA#I?&LB3 g$I?&LB3 gG?&LB3 g$I?&LB3 g 'LB3 g$I?&LB3 g$I?&LB3 g$I?&LB3 g$I?&LB3 g$I?&LB3 g$I?&LB3 g$I?&LB3 g$I?&LB3 g$I?&LB3 g$I?o0}f$5V:.77( F7f@;(Ll2Fuٲd8lgB{H@ϱЯ94_d6_B/B/B/R &Cl6M#,[#{rkmc")fvF-,i6X{dńƾvo~'j-'vF Q|Ϭ'S}։M'|0Ԇ zaǂ=Ǎ~ @ˡNJ҇U1% .27>s,%pQ =7uU+Y=`(J+]BA-e2 ɩ@p_50A$Z6`!3%f8%4HA\2,[2 O"V*!W :>$@_4^Qx:mtel(+H760 M6KKmt.ou|+[3 C:4,!gf]>@ #!YV*k@\f ,SF).}3t2A}r%B5)Ce%w$!Z! d# k` +HR+olrˊvKRb@>?Ʋ y(<`+KU.920P"8= WF0\m5`K \5 WQK;5NIR'H+e$l Uay=,EZ^=eMT^"/KNP ;yu+o&tYu ~9Q!٦rnT 'Y4/K%.r-Kn[9B(cGUD)厝7.RJ%RΐS^5n߬K3Z3Reh [+wְX%2 ~-BGZM, ?@S[XLjki1;7s]#9u'xZ,Ǐ8"34Ѿ8 ; qm,B&z{"MĂI~c' (pK{(KM!y.DW"yn ƯCtQX.ڬ)i¡r›%fýkktj::rM!wL)!tu0C: Χ"^0I\ +yv4g(~e[e[eEM] O]=$}lU)fx{7>"?pXP_ Q=PQAm&D2JيJtSF+GNReZ+IQ߂J,O_U:~)j|5F^]:ӿ 5Mm鵤]ide W\1k>-IޮqS:W6~;$%;D|'V挂U=t]TYwrRm MzRvCzktXP97VA'=MjѴEߌQBk+Td7=VݔZ:?=׽ּvKy(һ-UkO??jv+jO^lџ:Oj.ΨWbs]ƒ.%\k8 (wE?iT8aa+2d2]zx* kx7ؔQXZXSeqN'9S7V0\Uv_3\[En UkWyEծ o[XM$CdV Bg愫!HZ5 d הWy CJc橭_s'b[jI`}5(1\љxHrY>Jک87+o*Oyr86ߪ+G!.?n0@(/ƃuP(Pv#/27D\',ט!eT복d~m9rm!W-b8^ [־^z^8(͖\j-1_]:W&Bp_nڸ_Ksq2W\l!sA-7r2W< ̗hvP{aWzL%3,Rr٠(=ΐ!{Al;ɆB> N Y{ D|' *Pn(/샘]?0DYɼ"#'QfO`6o{~qǑ|ۑӎoza>ì )zH|eENW8=bis()ݯ w]aA ˑ,ŝd>QF0?xeGnzIιCOzLjNf.n>򿵷0''/=2aXwY>uWdMa{LS Ͱmsm;M@#٬zWd$iޤ*?>i!j7߻Saw{=}~M'j{pƑ؋ejnR.=,$2?%,ǃ,upzқG ~нc]&]v"ϘV ɘBl?LƯ{{sVJ)ڭjN]3v)O^,9d~-}I9Xu@Ar("?uTeWyc2ߵr3[]&yg~O;ofd.dFW=;Nڔ-kӄ8?gI>鄖2퀿S_6ORf`OAJa!lەI! W5屮4 dIjbv%} LhOy=XGd$ՑuG#4"< ݉w7h54Kc' EV{Nzη?ʾߞLL=zp5d2sf|#g-$R^FƓ?>tcAٻ ߺ_;~\|ws9QW#Ns2d_<]pk9;yޖO}E~G~Q 7;9ϗ~Rl>E#_:1Y?D,Msf> #Ay@>vNr)S^|: ^ޙ8g;ZWu5a;hLaQ޹lgܥ e.o)//rϩv.i`4)vɷSw؂fvbb݃39z甏+ZWap}`>1/g~e-ccWj}lϙMF hrpUxrB~^yugDtCXEF!|q g|pҪU44op<"/|! ?M.yJ u[ϛۭ9vD.5:ٶʷk`# ,z既{u ` z.rɨ6fe6B>[vCҼ:dܷ d\wmFyMfָWqs073]VeiPc>܃?5>iD X߼{!؀95<]pӬ]n=mc{n.c#׾:uq{cjX*6CT7}-{4 */ZO*{Ql zfǜ:aMe}㱀[w949fj{O5c˟;d~N1\涛s:lؑ6Ǻ ~ό9aOL՚?.5h|&`Ec [Qd>Sz 2`ozNױNWc TWXuv+sDDžA<6fYd~fo&˔&rdͺEu/`enI†w_#y {~e]W,'nK>vz|@ԗC]3moe5y/S[j{Q^V$tzf v'M@C ^5FwȰ__`q)/|ʼξbW"#<a}e[ tcRw0"}$yǎ>ؕ1o1BhdsvҊwa.3F]@'Y?h/΅KI:$^gc=Y_HE$z68n ]Dj{v/!Ƌ@u/ݎ9@N._tA"qy <>" {Hԏqzm~x?q9%w+;|1TlHn&_,[@[od~oWqa/Pxc_0qP<'d=v.Pu_^(H#p/0\ B90(Iǿ%]}hi!e#7.`7.=Yؔ?z~v8d5vefo"y5~Ē w*oʩM_|93s668,``\H>TW܈Xuc;رWqS2VU nOR~Umx¯X^^gʻz՜b~ޠy"cۼޯYCrnmf|L ]%ݹpeݕߟs.{$\s7V˾Iއ2ƃzeY-Vkb A2/6m,4;6=i>;cMz/81hgز;˅LF`}}D>#Gt^K{#:b/}DG쥏舽>#Gt^K{#:b/}DG쥏舽S4H#4H#4H#4/#|S?o 5$O0jW>XS:uǟWF]DU4-GG_iO`occaЏ^1~Ec^1~Ec{XD^1c{X^1~Ec^1~Egc~j  DolP~3r]‹ ^UydĹn:# A-ҟփh)}?쨱6~\2: CN8|iY_Oj & NX.Oae4qS(qmNAX_yQAxj {/1۠s`D\9qY4  37>XItqyDް|3H8s#[v@`zOqNן&>za\zWg"G]Ff)ˀ9+?_)_bW拝N.STHLJ!2i ryتmVUa7>-',I4nǩ˟.mMݤg0,A)fIt9ne ZK]lG2R xc2L,^`r0~ӻ1lk̫^cV~N־z 85g;41  3]Ʈo>8?=&qIF='WHu®<`4`un ]yjxh{L yٵ}:xe.Nݧ9k _ѳ͠.M]<0umӉӳ<wF+?Z['eV N>5|~vCj$ն\?Ǔ ,cɌfnw=Yb^nˋp`W0̯P-shݟ2egOyii>n-6: n5XYc蹷-*u޺|ujdS(0z`찏?G{ؠ^m˵|nmk|[o:ъu5v\ܦSjIvܛͺ?XnY'nZ3~yengU堟8z]^=o\g{/n\R~Z/W׾tgȁ˘^2ӫ4Ǟ\G책Mt>:1sF6>{zc~'a;D{}cMfDhC/gآ{Aaw'UԌ+[qc&g}jĺYwZ}i7ۭQ!gj~9nW'\:'+LR}]s{S75 3<֓m.V?|"ǸaeJm9j;rx4_i_EVϾ4L|/&MҘ ЯFbM^}dž՟-2AW]uIrmwwOeeyrbcu$Ikn,w7_;߄z'^d)*!?9onFm8*[㷴҇?Y?]=h:0OZqhV))/Ιf6,n7ߤc]&0踅߷IM4<OTmno|ySXL׻*9V#>g95>xJoGbۏ[o9˶>c|r<=uS=3\M5np~=i)0"\yC [dmߖa^oͻ{U\-}:f`ƍm} UOUO޵}|լ;ϬFKֻ$P%+@vs?:pǍwޱ[3IY6K7h83/sS[ɣ߷['3+\11r/]={M~9{Z6^d'ș6Yzi;2{Ht`[ݶ7$^odD+ ~VgvWv` j~GQW~au;q3y}i_"xg_+iB:|Y6_GÍڛm{coOoIjxZJ?US%iOp^kq׿i| /g|Yz9f[6p;X06Ǯ㚽7Tuzޝ4 n}ߙV#= JQ3^cԆ6{G;lYUlt [cWʸgvobuk_: .WRMU6xm vx=ߧ',׭YYL޲q9#Zo>k.Q f%\OnT9#՜1 kސu?3wYI=F('=+ 0<Sws9;_,䢜x)&괒获R/S/lm^Q['iwh]cf_'LyWÌSvWrŶ -YCAY=b*z?nK>4^WyW Z}0t٪S 0b_;5lERg\ƕ WjH'^nܦ X vpHpgs69J'm[cRb-=g }$`N3n$wnMJWt((iuƹ?zwpf~1y>umk/1_ӡ}ʝǓoIF0yyz m~@qW6ancBP"`q>mBB=+Zq6?* K 5>D"1C;3yyW=~88/w0 V21&3W""xX_ qVQ:loP$6!`W =4 4 $7.4T Sp;@4Mt|In+'qV_ cO^QX!D|r˞CpԚClu)"*#y|}yYOB)`#Q##DSiRBIQǑPqQU_!%[*UX(!5M)˒25B%;&̈D_ Xz\= j`J`X1zVVH;QԡgWNmVP6dI<,:M@rPn=W#w: rU &PP*X՗d9l]٨2Dl$9rjCql^+vg9c"'ёP4:(K&uDr2I7Or^YV[yrF^-pT%{l[^g\eO##+P2JLNC'N,[9 kfɔ^Qׄi,?9(æ t8ICv/21$π '0oԈ4| 7Yx >9ǰKq[+T{޾.GGJ:/Mw#S6YzөCجNW'#g ~I_j1 [C&6g-8꿍YF2ٞkパ^}s<:LGU[Qg /oYG0Cofm֯ܲ,lT2dʲHauZ#`BȆMw=7&T{ܒy;3.{[\6Կvݰxv3V חt/ө6/6e1&2ٳz̛Y23`ftx -JZܯ;8˴J({yDkö^+e.Z?Dغy3+۲ s)cg~0yˮC>1nUoXOAa(q8\%SnPR6^P]4~[QY Qcap]*W>$w1gKaݗI7Zi=g?E?>_ f$n|% qH=4v&o[uxl16(YvBY7vvwގXHI=>tb)'a9;t)ҍ7:G|^^nH#߱ऍ &s1fQ wL~tqq_q0$}1_o֛sLʔar5\ƚe+7;! 1!xpl[7ɮ:C<BռPur[=&kO|VUG Lw1\7s̛dp^?w)]zaS¿V{cҾGD<>4!lq"6یwѣ=OL=~۸T_< Gp]?rDm{PV?coMO[ur_ӱO%}jd;{_MWP\ƨVH5¶ɬ3bv 7Gd)^/E^*Sѻ Gmly_~GlI#f]:h髚lc$gw,q!7/_٨?^:_y@N֩z-ǵivڛQb\7]#!. o(X@۱y7a6Ƭ)/ϺJI^Y~Nf`d)TdQξ[Z>K5\JKO uJ<i_㩭os oW7yzrbm,x%ͰK^>0!6;!(؇<^ܙ{,B6gĊ޻`qY+':?oIXÉmmBS9CxVl<1x,I? ^B /@p.  xƛh @vY:t`kmCAv@#wN ;⻀pW @w {pO ½@ n8@/c}A /H ~ Hp } H }HA }0H  }H҇xwA9w>CA0? 冁 }8HG ~F }$H =@@ '( {򞠜'( y^ yr^,yޠ7( {ޠ7( >(r>( r/( r(r~([/ i5%\YR>dC>'E>(7Q]3qC&dT /܃2dP>3(Iޔ"W#@1G? .@E? Jx@AXklth(ҋ8klH#48=FPP0K / @}j_A ËCD 9*_4zd.!z^Dz^LB ((P(P(P(P(P~(?AAPhPhPhPhPhPhP?yzA @}#( u > ԟ0h׋vuK `}~.Оu C}}G3a`~hoR>:^a[nA)% B9u)(:C^9~|cR!v{@#ܧ>ht< ]S_Ud{UE\MQP V602L_Z}%ۣadWP<(2w og Ӑ>zK@d1Op N}*7?h{X1(C9>8>H[;tpapu4}t9rӛa yH"O{BI# 'GAqSU.AɯLzaHCÓFEMQyz?%LTyL|+QUNxJ0OX޿I DZ+%8@@xO'l}}0ȿ^xWgp`l%;%?Dž0?!OB;_p]Nөv?#`-@^Wq ہ0u#78$\7](^]s08pok?T ^00\'^p&C@(܇CC>E3}.8 {0L}5N_};t9hOS _B#@yht?(`!KgP2XC+m) M[pWfQ3(JЃQPyp%~MS.Sr2y.ythQXX;ƮtG F>l?h7_ ӡڃ0iW :.hz*%p< A.^AW}~7maQ_g߂RG +OQCM)ȣyp|E( +ˆzQ!~ox Z2 7lЮ&ȃIڃ7!=ȏxy*xnޯrh׻*΄9Rxxz7^/8oz_>J S_ ~R[R[hrzV ]/l7))rzaXާVa̾jlaoC\Cg_R-?SٗA^Ӿ`L`@x_ [yӮɔ0`҇+c4?^R9E'͟=P'7 PZnr_c.T?hLzBK˷\\]Yb%{9QƉI~g"ڙH:!R;dcyLU?~}5>CĐ2Gm?{qkl\4̲9/0[Pḏ9o>?novT<ukUz~@{9O}dCh"kxcˢ> ;?m-bAM~w^n,qUNk]-]axS{~f;W5Cލ0/UM‚j<̝Wma67՛2sǢ85-|pɁe؊\asëMrךܚy éǸ}ǻe-_]xrך&0+3XlS9Gt,V~r{t]_͛9?f/[5dS/UGUY`=60>rsi׳s-nÖC^ݸ.، #m%P? ꟩P)M5xYc&߷KW_0|2vhƻUNt}սN̖I϶xw5m:v;iaNc a77zzg`PS;x^('=?/5q|k32>s|j柰S>-2}uWMQ.?׎* w^؇Tb<:\xךqnJ'Ey /q;z}DjJ'$grDmR⚗,Oڳէ_*#'y͹Z3YN]|VaawayC˫r63am7&[S^Q4'UMȖ뇆]nnUo!φs]3i ];9>䷉O_&#?LG~X,Ub=zh}H u"5ԉP'RCH]u"uYl+Gl3gd 8-pv"\/ yA^{u@^GuB^$ E`;$ C`;$ f!,$4BXH Ic!i,gy^6FH0 f#l$i/~\/ࠟ\/__\/j``#H=G^AQY5N55 vE`G$ vD`G$ vtuB`'\/jjjjjj;#,^$ vF`g$ F+ YR^;^򲑗#k눼Nreȼe!lZ)/[5Y,d鲐B. Y,E1?af.0\S]]xZf;C6^]r+cٖwNAu}&^~#Sæ/ә(S?wl޾?Æ$Q\u6sz|,#dܸX/j~VnO\Nˌ|9C~0ܔ)?)?lM,r?gˤ8`A؇S/,TdԾyp>ڽ!)vCGG(pi+/ f /c~~۽oy=ŌsVx6ws6I+QYa 8A6]$ݲ1͏џfsͯ|m14˭9[a{a.74D&cB^mֵRCMf?WU 6 M4j9dlBice+Ű̖cs8xnzp Ӌoj%,t\ĩ5! nb+ѯ.l1f|QSl> nUq7}%rcxO?Ţ:6oƣ&rK %Ꙙm8 [[.um 푽-~A!.7P 'D<>X&Aje[3[ATƣ&؎i*˺\!+x5XU2~azCOI|Ll?~tF:bGm]Ȥ? ^5(~};'bn/{QU$DķG˒(m"$W.mA"=o\X,-zɭs~KIvR%a!vQF8E"ac(Og%Savzs~K|1FhlHn6_N$wK[HB2Bw8|PZ?rA=0PuauR1d= Kd%((HO MJ~qx # &r>dGگh8< J9Z^* mb]=.*x\[}`3M'i: ~Y^6z ;c/voe2μ3DvsZ͖o/-4O]~ǜza?> ~'+Lk'۪]E{w/'SS\ոnKTS?ڞj8!k~ ᱙&k*P~׏ع(wf]a[1ܷV~|ѸmiT?6#{ZFC2|"F3/":"T )CY%'X܊UHJΨy﨓2G/{ 9w/ޛĝpV玉IuoD]e;(;ڿF޸ uKs3B;E|"iKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXKXK؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K؈K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8K8N)8#0E LўAv~ACBmDaB}X!xz{s;&ɠw6M{M{M{M{M{M{M{M><8oBHpzwQe-pmN]Xb/9>֓G`9]79ZcfMn: =ly8kќM+3اwoWT:PCK7ĺ.g1ײʣs<@%Y/&]6q!ӥp oÿ mwOP1o`O,s=c|D g*W\!O2S^ao oRۉ.vgW8c$q*̸HH9WA:'n1Fzn\ jw&%oe` Rr5fO}O;NhZyC\Pm7AK}[ΓM`M-q9Cȫl$u/G80>(HojX )w 1ǥ^o^ң<퉘=h7_ĺl|)M9q81f`w汽(xq{7J S| Y/ 4nBl ;0w}/}GTs؟9Q)Ћ+V/=x'oXQ˭o/ǭy jV9hd!4zمm[dy@Q:^޻BnaO`U͏[sF.vt ~W(dE.+ q0M̈(W׫mtxV%A)iӸ+f_ FXJu2_Ԛ3Gphw۷5wxoK1|coF>4=:hSQgu_G{$pp5<%CڍP)YQ_<ׂi(dyyKblFsܹm,6?l}y4.O?rӐqԹ1:އ)XRimV{x]'KiVM;V_P?sx7`ubosV3xek&Q Zw'.ջr=viMRqΰJu~`lvo6俼0KrWs-ò;jTrgbТ M g:{GۑnZܟje<=a$78d˷弒nnצ*nG4~dc2ۙ^4.;.NHꎥل%Mz@}~ؘW1*q퍧mPN`WXqަU֧qXLViKJp^Z?0%KN[Nh 1Ŭdę`|Fv1Ÿ{o~!Yd4E] 7J'pރ!Oj )+' f6a+T?' qg)L^[Q^`AQ7>"(|b "?DXu==6GgOW_[O ws~"0 4v/F]ԕ?[JIp6Y:/'=}D? == x4|m^~?V/;%}xESf05OyiOk*0O,Me}dfo=u{Z@a7aoq`4 kG ^&{ 4Ɠ`'TX92UӥӝsGzy'7;15]{$n=*gwp Gq5.i]i,wҮZę+oqnz7kn>>3 >xAaH5k*_AUǡq=ix2 Z=rFʔ{׃&:OcR¾^sqWUG ya@J?E==igxߌS}ȫoeϧkק>1"@iu`'=(^2^'ϳQ+|]*_?e{kx}(r߃?OrH|=]ӷxS;ad㊸>vu>B{?rKuWoDɒ'~o׭Nqț? J c0gq,y)[V=r){O#|_RϹax.ihGxכj/W8&K|r1+G ~<>z:ݖQdrǹKWǜڄɔ_9Z ^΅ 9bm,n>."yZZYT^ǵlgz*>'}!ձS;VRVT]y>" Ӑ-<Q[6\؊ߊ*튩VaUO3۫qRrcG?+_X<;L '457x*n8sgV̘p^%=Nj-x̜C o4VO~/|}EuFdjׅWzZu:| eϓ4_;FE+qZ;H|-ZiZ@9\cxCucu ծD3ܾC4ڣx|]H4||~}5>"2˃a"oύs <7+֙á/(W`^zRKi`<>/SF=y![ڗ= _G)ir^^)_GYuPZg1_gS/=#*վ˃7{׭T-|%~(յU>[MaAaAY |GqQQ5վw1_{Jua۹[#VOWZЊ}]ZتkJ0~t5>^'#6ӑu菪~HOy6^8fmq`]Kw/QIk!f!_Q,vkUkt-5zGGMRVTRvn}Gכ;QJk9W*5I2e_w/C l>ԩ=|Dƒm?Rq{4{.;𽦔HG|m+p{@{ jF-]W'1j]{޳|3ׯȉʪ\ng =&U_u̼Ǟr7`5*4N+Vj1zt_S^U֓iJN˰6ّn]%>޽0ˡ]#T~}~`?:/WVh·z:! 0)-v'}>D͐>R|OUkJZ|PaZ_`{@vxQTeE| K~= /v4||ʣ87~_Vwlw׊/C=e1Uu*;L]foX _kzΓ'mէ_G}-RIr_,qR6-U+;B}^:QLqS,ZQ{ V>*_?W}C }Re_~+ i_Cx$O[8}CɯҦǥ4_kK _+ ֗NUB |>|)k8̉G^V.F(=Zi K_ 6\s׾q=o%о.E|ME9@{uu@iF5Jz?֧Oh.+sE_zL4||~}ԴWሇfEE| ӱջ:4j UEײ?N䟯0Yr5q)]_ Ҩ|h_qB4-v2ұqVݿgkP1W(PhFkFھVy#M-m,"x#=?NR#;7{A;Rk|a޼~,*S3Caϱ~MKT;gmF|=n }.'>d(kڽn-<vZpjs5?9+CzckO܌PsW8RYi_- $T{CJPt8N},k߽E'2-}\pf1=Zi /k7]Pήhw˅&\B@sx7|Ee}XڰyL1nQ8QnFv*#FQP"uc?-kiCZ#>0iv%nCAC}QClPܯC ::lI2|}|m2Ulvj~u#PW>^K4c ~#}Z.j|~vm_K#m_k}Fт<  P)7ao}Q-Vtn7*N/%K,$_oj36Ox'%p\.kf_PwZ;WOZ*W|%q::a_+Z瑶տ߸JR>ՒBOrYGח|]Dvk5ez JY_P|-4_k_^_ɞ;]H,9@ckP|3·*8O|1HfHTKyPX{zh|&_x}tA oe: JhȞ'Q\q1kmmK^i|]|!gK}sVbo!HfHuu1M Β׭(Sƃeh(B0C%+D 2&-=%Éc%,ʗY^/-dX5+m_xj">ܰ'[?ۓ3+ӟeĴN/[T㥈wQC\.l'\Ų+ 酈+k|MCڞb_)9gq{XU}I[X QX?iQ*oK{j$2W*]v~>*_˾O5ZP+vULmOPz/i="w?D7RCJFFiiXӹi_d?D]>,yCEJd?$"_B/ LC,5Vj]&/uT׳hV/z?!Gkާjd &0o񐏱^g>5)AhCd.91`~t@Yd]-Wp 0ܟ,ħ]\̔~69X<5ު~ G^Tz)]OKdZ{!~>J|]كP,,Ez $Qp|Hcu Hr]ϓCj/kmھքhO^VE4>6_CyxQ2]Ҟ]4m2=Q*ֺ`pK|~#|)Sx7F(f Wpj~ HT}:_.Vbg|}B/߸TC>/FhzRb_o-m_kiZwVQUkѷen *A ׿nN6YU#zg =&U~&.cN%. D GϹH 9WEb_+Z⋫%xP+|]FU7h7kjY~PQNx~heXd,!Z̾}O4_wJk-u1>Xx*~wX!O|(4_9|]qDZhvu>ǹǮxVl>p35GqS է0k9 /'{)>Dk:2* ?MRg΃q.yt=hQDp׏Y/zKM4}[z4{n" 3x2gߗihՕYGRW}bbS4}ľ>fY **/^mB(q֚}-t"l|}xESf?Mܞhtg_Rc{Z]v[V ĊƛXO%ii^Eny Z&bAЦy(cz#sٖSz)lvvڳE)j׫׭24>wp ^Œ! ޕfXY"zA9! j; T}-^;߾ =0[TH9WR5!gw!%}s; Zw'NkVq{'f3fy<ܵKYF=p\bO {p KqOWQ! a}r39\S1qϓY'Ipz1 uŌ4XBޱjW˧˔tv_yɧvePPm7}Y; A5s? |>6] _ ,c> &Leųckq$rTGY>MQk*OѸ[>"ڟ?anwʕ)/Lѱ,=:̙<0o]>EZy*,*v^]\!Ϋ}ԟƱjˏv75o6<׺UVNѵ~>uϦ~׹'KPʾV~~u)gm#}O--ɦX ?_d\w8oӪ {X rY'B`QڑqW/8kׅ5 q}W(c8)D/a<ޭW8fV) :ɵ:T,V}Ꞛ֧)_ 6qAO3]Z.A->*g8_ -_Ct5d{njPu%~#WӝqZ;(yNξzf8Jk؛A>Y8kg[{2sfOOf`'5Qˇ]J&7]ەq`^N*nkqVV|b:@{}]wUeO&j߱-xIu$eޣYGz!O_Mnvnxۭ 9Zo_ϤKWW{VqKI'a7j$G3T׊M"k:h>Z>mCt6{ kǰˡ?_|O5 jsZ 3Fv^#uK*WT=ǯ ޗb+FA=4NKԾ|tC'echkq9Z?#on|-QaL]_%-5u^dQ_\.wbu`:W_ZeTC4kM_=.f(mev޿|]oS- sz\|-ϹNQiy}y>]A)^8|KuuQhDח| QiyZ}^"_Qz)K}-&QI%~[kӔ} JsV+iU-W@>)R iF{5>m ")N 硰7KPuIQ/5\8?Snh:j_SII@z?D;H+5^VZqkV|7~HZiK;.͘ NJbTX^=>b^=q_82|cK_Rj{?T8Y+7gW}]: Dkuu8AgTn#֊L!NxwtԜVIE6"t ~%Zs)䤗 ~Rh__uȠYj1߼bG_yJUS`7id_9{Wi,֝ﳐ] U޾~A.3HwNJ!.1",sγaK eCmtRdyYSV{?v}{"+ y 9q2J8H^5SkG<_-{L|tf٤.=>yRI֖qh<J ؿFО:K#ίXSE㡃v?a_t{oFfYdX`l;95;.l`_G~|kex/`Ӟtț? X|̬1/O-]!)mAU/9;ɰx޷ #O4& Co P,~oP/qpӐHx3Lbu$Vj “f3(Cu2)ކh _:ŵگlu(ϊ;~Ⱦо6Et۾.븘xHckU·{{?}>D$_%h_:RS0_qVUK/JU[wTG򟈯7 o(_~"j1zp)d/޿\i[}̈́=_䓵}-z\<#J1a!2ng8^"'ϵ~RCl_Gkh_WoTvjM*o)bl\:QJke|+J[J#{t?M!< }+HuCS>v.<@~߿{d-_ٝjeF$񪆕/N8Vu/m}Tu/NH4!Rx[Yۨ|]zϧDiw(|MݏU+),vA}R!QyLy1_W,~i{DpU<?im:b~e yrBP׽`eŃuYXu#E(q*~}"/u |_&޿.KC۩aO#yǩdkjs/-(n>i7_eBNOץs}i4_Kc5.}uB׫ £Ctw}iK_9-k%Kz=K_I}u2C]k|$L/|]u}`>{"oEXdZB|-ݏRׅEX4Ek }s%>TEھχHuSkgTu}-5V4%4_8.&Q+vK5_k^_KoTyZPJZWb=]h:4_FRZk]E}J}-FҞֽ4_]Ń%!i.=%{U=Z?DI~ ~?:4_K9_M|FCiF{˾WJ%iVOԌ-޿ކb]_l˒kHB{?rKuWo\P_:~S#o0,vjOis'9$NY6 Бjcw] {O#E~kldQy?Ο2!gbdZ`h\^ rd`{g3V3fC~1|W[WX _G^:c[cD՝qH<_1Em6l4~R>SdZx9o_T"NOW:P[d_7j z[Ndz_i;\m9HHzO]8Tg}z>d1DH|-%l_Oͷ",~/_Ct5Xެ׉ir1Uq3˳v5Mwr^{'R/\9(CldiETOa:_*Or2\|]8]|sɺ+(aD}=Iy>ھ.RE `IR%c_SYs[o>Huqo"r Ёy6_ð5k%JiFھ MW5|%iF5Cݲx(ZqՆ]k^붴1Hf|t2']pbjLzrk߸VԞB*uv/R|mE||Ń:ǚu4k 1Y](k ˏWs{[~_O~߽dnxA2?MT!c.*||CS>XJn2ץK5_P5֡qNQX.J5+/_)k9?\}(|<^z=DaDxkz }4%Z k?"kuoׂu/K)-K_]p?rW'`$OHB~8̾)XjG&ς&{S|L-;vOZ{tO̚W>1Dմ}]0c-g_=hz`~ji[8K_K[Y߾GݚdCj^QImz_ lP{gÊwY^BSCΛ.79Y>4>ks>h+O.*_><'l?|Ԙ>k (F?sv ©|ۑnUjsݰTx?\([JTkM+i{ڭ}M7?h oT~]g_#iiӯ9}y`充uiAc:>ϧ+U,e|f}| z߸o} {/Dyn)|hL*|B0znW귋>-4_ko J_C߾B1X\*_?߀FM u*Mׅ=GzF)VܛVXR\?~ #js_/2ikU1|Voe-U6甩}-X^<.п340:.Y1ڵvV=r)]O[X؞n l >LzOST"īZ^Q\ll2,=d;ca͓)iZEWߦgO?YYE1E~mWu}B<6eQ!6%ԟg}˽S]"Z=Ǔ6<墲اeMa?'޼UC|s 쥡D3gyuHwq5.7 n@\=l>'}a1W*u1V6xpoff(J5Ƃx[fMD =0gd%ԞBG.uS$n |;x"^xmȿ;#BWmBN[~Du!ҠST3U,Z9~>ở}N i]iF?Z;vsNJ8߰ \6_ >u~xυլaqPw4,/0k?xEk]UQJo_1GR<I:h8/-Ux!^¯;K~ \윰Wr;71({j#׭Rt^2~UWf2eݿ.xiu練ȏ_w/!=,+=HY޿-mS[UornY`?g?FeJz:/vSU@|Hb}z}>8+G$I5ҾE>U}Z.k^ck>5@ }t*_K~]iF5=4_$;`1e 6!g/`^n¿2;a??m5rF/_srJqY|0ѡuG{C[_'Em8V6E}5z qVAv^}|} dz'~0:Q4ҽrn+WAu{gy/w˭Qǽ<o-uЈ^{L&W% Wή-&j Y ω&"q%g=of+%3_ ,pJY-Uu\_7Bj+\1vb8=NGOEpÞ"\(\ h.|ƟS'!eC,(w|ރt[FrNW򟲄 6E.To(ă7#gr\͉o_oo՜ks'Lr?H<1Vj7V 4kOXz޷y^ҷ䄋_=ˆ~egr{q`a#&x.٤J6 Q|Ʒ03>.+?{ǐp_ka||,am-OuQ^J~TÖ|ws]OJblz[[Ok)p\[ܮ:߆yA]_v^*^a\W; FG^nUfc#g?xrJJ"; -7Jl4DνpݗBeq=~~a!^g)Sn ν<2fS_D8Y7{)OEcX 362ƗJ7UDe9&̍_&e%>:rq>^ζqgR[򣳧b+u%!ҋ5} `Q;ƫyI`A4'''Lg,ho"*gеh^O(ʗhh~n&G#ܪf`נߕ%ҽWeS+?q̺=Krɫox >2^ v7gQdiUo7Q9M$koQ;.ܬ"V?UOrM|z& ʓע3a%QzCƊdQ8xxhQ?7k2#@\wbYE;or߮up(cD>]F:Q;>|K]rXNO?>(V0_-vvWJkU ٣ɛR<ߚ'Oό\(yPysD+HEe3_b<6^玱|6xeյED__!b(s'[*r''!GS,2Kի^ޝͽ%fz5JԎ?Ox>wضS6$Y?I֑Um>]I4rr#ZQ\t…CK\'$7k$7nRgcFzV`&opo7atefߤFz 39 p// Iyn)l~+=qEr-N~pKa] X'=zߍ6F-Nk>V}vGx̶isp2w0|y+YnD ?VwWkO/9is 1qOg7Ç4$W[^Ӳ~f̾Ccͳ!Ow 8̙ZO|21x|D+v=Ms?~5Ov#7JQ>Xy BO4'Tkp!VjTFތhrKu4N~P.ahӍw1ӏ'sƫ]9 nTW_c~o?)y߭x",'2{ s3uii{/49%RE5x ,L19;uܵeEpyaoX0=<|]$rB<2\>i0o&hn&^õf)q8C6[dٙqk'ȸL׽z53q&7o%/$Wb 7H. _2 f!oIo|%/ܺͷ]Dw9i~~0|P@#9BF_/r If۵N|4aN8r;xbjPFK|},5NjF:'mUD~.[4:eF)/pZGЂ۟3HF|(u%9uߠl,ٌvl\<@8-:n65EH:^|Mx~ٵgvGGL+u[xJQ_vsm6<5T |uNǪ+\(Ok(m|MZoLjֺZwE_[1Tm+mT|nmޱfUodž+ Eb!feO1|?/f[l%?(|+9"='ݹM^#de5Y|w^Pr~/> w?ac.e-V[M&O*wVvխ+pf5R =FoXk~73;[1\e\H+VZxu{ڙp1%5#<-.xsVbgZͣEj7齂ۇDИ_wi ^L#6eC\֛ؔ&dk.emӚͼzcѥP^KkȾ?͟gb~]풘8b=.S+/nӛz,kT"}-uhB:q|(u I&q+ٳ+,9pn:vb0#hl. e3_Izӄ]~_gjm:uMuWn>Ck>סS=yvъ]r/nl.K^Ww#h=>溶|_<}'GscܬW(XٰNY _!9;fB;Cᕰ["+3Fep1},yXZN.Trau6 )Sy{JǓ0?z~tՄR1L6a,*ULfc|$lbt[?=n#nsU$Z7'*'\<&MAw㼏?V/ `Ϗ(_NgؼzDVpcyv% v~ W"ݩ~U8+^z<=K Χ{=ժXf5>Vjf#.9ܾQuqnϨ 5Wh|}LJ&,$Nд\qjw&+±3b-XsbΛtQLm/RpcN w;`c:1Լp^6+Xs}9&=|g8E>6W=OY%zkg &en/ֻpDIH\L۫trobur_4X }3K }u 6Ķ"d9N'uP̝^v~U#֯qT[pZR/cV,XǩdNws#D>8еS˙bx`PUjBQ,$Kw~]2K٢x[k[mK>l^HoͿ;v_*ֳha6Ń1ݶ,X=+<^O1'EjߟȁBsZ4nw*W 9f%G/0\:_Y>bǗ^3?ջXoZžSFLro"6 ɶ8sa0.,gP7%uZ mΪu9s/X*v4XMU1],/_S[XDLY|oŎy+?me:yao8 /t١|J-dui|O v-i[aa̫Xpc=!3%-Jxxd@:Ty'.8G[$nB$?ZkUE:`8nE|xms >.| f%"|tWﴐИb=qҞO'<~b|z }^1ky?F>"~Wȧ|]6_S{Kkɲvjv%&n3zԥ^-?Ί` aKh,?OSU83I⬣ivk}>'8%s"]~A>МNUϾ=љ3ٸ t$v\X',ާ jm[Oi,b'06WDOLSb^Q~ʪUb;) vXfze6 glͳ%ai_A ;0l4(Xܯ~;1%OW~VvZYO7hn5sZ Pu}s7) Z'e|'MG^j-Yޥ[=&8@ 1eMgTg|׮'aHPJ,=wO7={u%Ѷ+ؕΎ#'vn?,;B PJ8S>x^(ooHx?`imEeEWW\˝ٿ/6=&X6⺎tz '6W&#x~ p`녛~|Gg eD'LRi|bQ>Sx~ɂ7<%X~^kuMv_Rui[t~DaʗDtYU2C1kMG3[o秋N ˒ljS_/|DYXTzSVpM3!Z~-񓯻E^_Ou!IEa;懅7< |ޞmp ǸMtw1<~ץˆ?PV*{t}_d:Wk]5=*2Ș=R\RB\9hL>)1f,NNiS-dVZ-_vpj(~9*66>{v>'n\vi9  x}')ؔZs}zd`' h8}}q Ov@[vA&%MDrLoLې\_ҬZO[w5՝9;\VNϧ{RL}Wx{s:D(oK5w3+|y=`g.eoN4{y}}qQx7O\3OpoºjW;sm&{]#38:R({(,1E< _N.~>e1;dtv.O"AݷT~_[Gg pwG<o!\i96/]|zҺ>q87Z.?&׾1LooTvl~@a6qZH3 qK׺48?~]ϊ뚟~/nX7OyH73~S)({.֩X.N5;ǢT}fɺjrY[&RpzxՖbꇜ^W1?M?ɭ>sto~o ]!Yp'b6J]۝k)|#8&^9ds{KCyE?|5[(*X4KhǼ|DFs1bv0gVyIL]M.w['cÍ n?,nѳ"k۽mÄ6b=s"۰-*_ ObGն-)3gG"~wGʗ;ܔ[CsD=J5xX3agXB~_G 7Gf-[/O7ƪ_8K[(\P!Ӌm nM~Ter_S:pu*Xo+K 6cbQӜڄ![dQ|\9k֬F/k˵,zBug~rnnv!i?l/t:U.|u:;TkeMاO߉ַ=EsOn<>H ss}i~[o﵄;cwHsyl'۔FzIc__?>/&oU<]y=.x&t7[~rڴ|i2=NͲ* Rr<,z._5ډtVb[g'Co'B)<~d ~޲w+Uyҏi]=M|; *ٍ_?߮iR_:Mٳ69b=)j80|ѸLhsNZRppRܞгnB oűkOM\ϱݝW?e]Z’HBAM~&ݺM-NN_tkg{7,!M{1YCr~oG*{<#E|sVzs]\גN|$uL?)+oz%8ƉBRIXן Iӓ& %" 7× MGjW 9%8$p ?3fUh i!__yל-}j'ܰݘ7xw^Myj3MaYU? {OTO$9]R?v7FK _)zkmMtM؍_+xx,va)-y],Q{rhcNw.PHL^U\׭yTW"%i>v+S/,*yDEa2+ >7,}7]##T9=_q˂^Vb' w],:9~*8<ؔ};0:+9{_fۧ}:Lxti^›#F-U'և 69VԂ容wpwoo9 8o'oi U^<]naO`O?{!^[C{Npڷ!g|-k8=C!{i,r~uuBhzt!Nt‰ZÏ%=9x-,>2=kVzXLҙL6!9NHr}dY`]v*ŒY{>8KrXP챐NYiqv+84ҕ_>gmznĚ6di5˽+ױn ̷uE)BkG<|5>cG ۝?Su//w]u`h㓯un^A(T)Wq_:*/z8w?'+iigVcセϝf!uNM+6X-Х'X;]plګE >یg_.~"Kӥ}r_7yWjhk6bn +ϐzZyԟQ=eMԑxjة;۟l u>w^J Ӆgvǭ}5Xx3*5f#?h> ;0QCtߟE<ך 쨍X8\Ty<}V?^J< )<]\ 88u4¾yvvބѵ߂±YΫX]A+7/dƙ[lCxX6Ӊ,ﷅ<s:4[߰Ò8BZ᯴h+9 3(kIsU|M4O=Tx龹!#y|aLMSsMEH[55&J~T.sx}_h?wL჻)>ϫ&ТBc#9_,#\[<#;!{7յI]Xn?^B[WC҄c jwLwjG!ڹHZoDhǣځbawݜV4 ' uo H ;>k`ݧ?sl„um4 7_Mηo?(ESjlع|i[/S!ȭzmrv/hV׊OU{E4LO帼}JUK TiM'z=.<=?ӳ2u;iy|>y9穂&ej ,!/48V~|r)4ҝߙS,5Nv{ٚn+:bnzzN&r]iKc-yzCx)\07#kbluNNX.--K: ,ΙǷj"o=L%Nr!oĬ=6yxo1見Ӗ=uO]yV3pw^*>exZSx9s.Sj5vKU I}Oְ~G4?D6F;bٍaffzٶ]Nd2snKi_u[>_۲lнicxb梹B۳i}u4(Y0eKnNU7n[pA>[3vV5L2.ӵG>oŖ&}yJ -G{YZ㛒:'74xA?{G j_6Ϗ|_b8e% ۇt0AcyNK{N-Vy kg-=HTw~u.kDԩyxgd:<|=6'VU°5y;yq׈":يix2U2.}w|udPZgj9䦇mԛʖ ^w63lHgf>8biʽdY%1:6 gݾWۂc\zrG/J_10+O1Jµߐ0"WX2Y̊Ə-}:m~9[/8R淁9llG[ьiluClAQfiqC&h'k8T vA!][1NW4lC6b_VKClH'ɰooNGķ ƺ E?,ZkU/?Ŝ6߸X7gkkRS՚{Cpb횧|NیzYh5I#i<Kk (P_6[HǜO8yfW scp3w>բhfˋl.}3:D SW}Fbf,%O+fof2sIدZ].l79d7|cxO4u~t}g6{/~׷=F =Pcͪtu|~HJZ Jd"y2M{c-wn،[O ߤŲ2_Uϩp[>Kw?GY9?-dxtKLozV[-)޿[[~ZW/.lϑ;]f=jz*7.'*B? zNΘ^yUTl՘۞3ce)B_^?A13Lښ#0y*{1kQ >glˇ Lef]7]^p ho?uW {f9e򏁋0;~Kw!Ue嗘R#0gV{$CU0+0)]O0җ_ǔ>Q(bpdRfKyJ~u{`>lߧ~:m+-@xhf+uӚg31?L2ڢ]GTo]DWӌnXǴ>50ȿ a!T*o9([.ڊh]WyuA8'Cѿ%7" ,omf7/Ljö%y_l ~{B4NŖbokAΒK?w+x*vK.<:KGmw[g à H9M6ܦ3o2[Yw榖,)_5[]Y}sWs7T!=[bi;;6ݣIrz0,&^Y[r6Fw7K`_V>O@._*|q>m_Iz:ίuT'>v5K88 Cįk?{(?;6#=D_GZ3hۀ^!~bMz~D&~r='~C)įUNq#~]pGב~$z‘ #:!z* ѽ_O}֧zƳ?1/8o8/~\D|[o 7 c61/{Pryh~ ~/D;g/h ~}D~"~JFZEd덴^,DX?$kISEJz$[z"_#~}_RvįwVOu_;noe"?EI߇ԫz~?.ٟz<8a;rMj+$Uk#꡴MQZaiBkBݍÁGV3W^z":q?:quyj)|뙪ar܀m̬O҂k1y@&e6iQ(#:U-n2Ifn;#俨 3]p>3OIa]mjk=ڙ_vJ2G)7;S7!Go${ <=HoK_61['RJEsm!oي̩JqbDr[>Ax^tcc۩Hf KJn퐉,-Xk$#o~KbꔌTuwe؎jfeg]{]ʘٯ }rÂ~c~0@zh@+yP@`PuĿ@XW[i_}fYt|t'fi* 03ޛIʧ<¿ɶ=!2f6kwB3)[qn#";O'"AZ\ʨQ䓢n ;fo_%zO[Pn,<Lt&FXv]duF&m׻Y2s4w650ʊhC6Z@ht 9}vߖ1-J*[?F*rC;cUq?fU~ gk>uHm){a7]Gs;L'{=zߍJ|kΥQ"~d/".OɄy1r~FjHi/?dnG|PYCo,sH7|O/K2+)iN˶Xv=څm|٨+rߞ{A sZ\P/\* $2Ə[H?'F|6uף^,V,> eIFb+ԄL [!92XlrĞAe,xk|ZxUbtT^K;;x(Q{R"Y2ub1h{bYiou &pfM f:[qT΢dڷʌ?a1oGeCnZƲ>YkпvDc[8 Sz]Gw72KkcfouG^2bfoAEfYZan}u+aO"Obe>F6D W.f3cIo9H GjA7.ڎ 6|SPzG"QZɶT!%ڭw['SŖj B'&[pd&楌|_Xol7<3׹ 5x2U}~OJ܄{We.ej)f[#v>~4 C1OW'vntD߀06{'nDn/ph1qnF=KE}1ʁN_x} w,Etu+O+ أ4J_eOtyQ̆K\z~_wbK$l-xYr7a߶N[R93_*g+%]{z͈.ŒCL*j+ rs6RX_=gz[ 䟏,@mbK. A&1KK<2(l͖6ȭ\`Vta?afCm= s{buʿЪ~9Yv'iUNb QO [zK7)>Ȗ-ݓ3ـ?գu\\ѹTxFkV9 D;yj@=6Tö'S1KO<ΒB)A_R?`E{pϔ{)06-TIk[P!ߤ|5C{H=:ץIji\ }XG:#/I~|HC}/a@D#I.ұcH}~$C}3})mN O \D? %u;Co#חBo/:7'=uMCHdy51_Q?oy؂"s}诡GPO.?i:֐zU<Bо\-?s ~~ƼKT(F>AkۤnJ;H})π'ܤoH=>鯝׫о-{_Qد2_?# -E~?S׍nq;I;ӵp; 3Ws+&p߯ Gӹ!׷ zZUį(6=~#~gkVį'~݄u)#Ƹm_;R` ~]K`"/E\_}cuE8~į`W{H ~u p}cׇg_E6z{8^Vwڛu.`o%~ԗ9OKqt8>uo}MJ%ri1į'~|.!oT"~=|:;ܿu u9"%|p~B:Qޛpnq;įՕ_w ~Kį_$>w"i|8k-L: O S jҹ=_)I~_t# u1O?s > | kݖ@N{I㒦_]_dC:=̓c9!t>m`J=7q,ۀ׏ ʿ^H#~|bu{׽uAʷX_ ~ێZfp< "YQ_ZiV+uD~1gvd-LJ w{GKž 9<6 e_/z~'kJO_>O96iߑuߣ}>7xį(,zף8^=-Ɐp@zW'~qEE^Eyr,x>>yx!_3|Ixϧ|į_"nwU]~[ Fvį>8ʍXGOCY^pl5ז_0#~=|`9/((D }C^W@|we-w,ך>į_*%~}}{c_'PQIįY!.4<}k 0|pBΐW9:| >wf|ܖ_^xke#vE>O8sF eį#{#~]2̓s+=|nMW ?1y࿡7}%v|DCԈ_OF%tG^3ޓJk$rEYs@"]Gn%SVGxOK={UEz*cc="z@ 3uv3u7?3PNQq-q>d]7w W[ ^F߁}_S Σl_H_XFb6d,MphG*>A$݂st{O)kK1?8RȍR #;Q=L׍S ~NW3g_?/Dyhr~}[-suq~]lȯ Yx>wk譡?ͤڢ{ D ފvMM`^]^).Ic[/,>c,=_ܟm_Y(&T(r4߱ɅO4)mPsq~cfͮ {#_:O#p"(4Nz1oXėS|B*_ 1O}r ˜0C׏ `'SzBN4 ?'Ch/+q O@@0ʔe2mܿsL#@#>Noշ]( 4c/;1ݰ˝ٞj‹2=XcнQ ;=&Ć_e^c;oto?hnEli=+O滮DE[_ޫ\Z& 875R~W]x,AD?Q۴?&x.h_7#_jy<,o 4od6/ז|M2ݱz3^Ni5gQGyW4s҈f>+yZCԅgPz3ԫLtr.)&9ZXǯD.&SGtٹoY5\yg.ُv,9s;pܮ߅Y^$=1]҄[ͱ)ЂhX,-yYoKK0؏p;M(~ vR*cJi}>onIT>9lCo[P=&*^ {zϿ: ^%vَ\ZjHw'13b7`axt?Du8'>)|?,i 3_Wx58QGgc3U2-u.x|ZRͱJzvMAX؍u/$`z7gk6D ){8>:'71ի[l5B[ ̗2 Hq;ɶfyBd?J'1i3xln*Lsn23^SqG.aW; q6ېlcq[l}[-r3Yu9o/~KCkb"9y0߸*яm'\O' f>)y4i6Ikw}} 3,P̠5a:1RYg|9Ҭۉg|b<})7껊w pC1ZlHլDGhs J?~@F,{](_39\ u6֨/=99 =_ښULdqe^OߴnFR9_|4!Elk2͑oaDY J|@ǸŽFoڪTgT)36Y "[k۹&qהگ cV1,{=ױbA^f9|dզD~Kfq6qsV7 [¤M}NY|lRM\fV&ܟ'>2nzg'ku7Nm-_G/ݢ=w.UP[5{ď=&x.| /kj*އʽDM3 { x@?L8zl/7r[RW !VyGYEt)T2<ا5YxI .xӖPgM;9D #]YHմu,NeGa0tX:]S1U,WP={ڀIPXJ,<3p <يu3ggnysZﲞm:FՆ=Grej,k 0OAC9vbQߵ'c>7|F{oYJrҪKXqjA0%VHJ4RV*a_P#Web0П@31{f7޽ѡyv4\vkXrυI]L4oܧ9 dn+ZNG ǡӒѯ:KO { 8Ґ݅gG_̛/%( xc`ֆD'S|$|~vüc|iƹ,Ҭ6*/MkO[viK'P<ȍqk$g瓴,G?0з'ǀTxXl1--7MeU+$m6^ [ xh片騿7} =73'  ڂ|#n_ 8ǫMx>G4|k@Ex~x/ǯ|>|bzx=x{ E<_q`˾#|n7=^B]ϧFx?I_U?p=辸Y1[v؛߁MYv.o6nv!yyo:R7>ELyb*7LZ~y!c'WO x>BDWHxMg\=`olxv$<ߘq*h+_@x17KHx9ф[|[bnK? "t6C|Oi&<tx(_>Vu \= Fu|}s=z6UQrH}. v&~ʏ'~NWnYx IV(|/xp$_KQz_9V?}~`Du?mw\ xG~8^}U8TY9x_K7f׎$_w'||3|-  ޣw- >ݖk|= ݇| &$_aOyv%yc0eXo_<ޡ-ޝaLHN| $_$_? "96󐣿Aζ"Χ7&a=^59 *cGk(=}+ yOuvy!V.&9[ιܾ Ax(b A=I[ _;`ܿI. ez|mwHgP=Y_=75ށɂA_^s YxߘOu1+Iѿ|H |} Kؿ^H] d+kiWd'-վ[[]Hgeg(<N(_%6.W*ЭG|<_uɺćsY_D\'j븽EVB42h>r\ӛiNVI?p;@Npr]b7tbzNٕvUZk*wGՇ[,Ň`.=.[v7WJ ~?*ERc&{J8֍]J']D눞_m܇O*\xjW"sGVA11i/ >uh!aȖ*kep)/ǧm؞:x{$4yRQ?#@ퟖ5;ǫéJ8`6Mu 6=9ڼ CG daU'tpmq?7Nm \:66ұ=[Hj%=۶牍؉ LّN\.!zyWҼ';> Jv}EzcQz7kM4[}د Kx,`N3G1wџmv{YNV^tzӧodNj^y\ZNsf^Rپ}B)GC\wkxO᧳RsDcp3~%Ij?7x-#9e8y|s#v,_>S|A{^TlĿC|7o%(9V*/(ffo.e{&'8[d 'vv8cΖ26H,s9ڃc[@pH1z4/`oYX,UۄO)sjcvPgcl_}#P|&l2z&sr:9|N=3{zɦimdv܁ᘿߛxpn|w(_)Crr9E:WpvZN4s6G oDɓڑ|"k؃?r{{NIz?5=uٗ[_ wS_1m[~x@>?L!gH?qڐf|}"1_yF {_asa?dޣ@6 w)$_@ϒ{OO/I~鐛Ii{teʫ:҅=׆x.Ea/I^u{7oI.zAH$I@>{hQ(= {t譥ПK|&^(Hǰtr!g,G#z+|]?M.xA( 7c"CcP{D;wH`R=_ԡ_=אe#;lw!^InZ _;I. |yp@]!Ώѥ%8Gp/Ju2C y[;H2sx|JVm:xoA 5}ϵZޞm6ü#^Tӯ=Be6_aYUR)e7Ι2f!ݿh@ ۢߤl)9HPJ\l*Y~1~C/f8bM1tf,}BkJnӚ͛ZdhIIк_6xVQpuFLPbf4 gɌkw=`$۽2N8}.Wylo{} ^P4軌ڀDB0TzsHdj& <1D16 ѷYә\닇\#(|hp[g$18n!벇$hO\,t 9ݣli}a!- ◂@,S=]?3KvK#=ιD߀pұ>ơo4}3֟uZ25et<9Հ9YZһCep-hf]Q*H?*xV2g>ucp._ B5Bj*fɾk@f=m~2ƞ((oՙ\Ӌt5lV &5_;,fE9ʭet6݈S2q>Y>6#:H,^F}+IŷOx)?|=v,w3*K ?Ne|u8o\z_VE'G!Q:/3uD# ;A7'ӻ.v竖^Wtq ܗ!`xƢMq|j;>J|ë_XDx>$'}>9n=at8?ϫ"<߶Kg|a&ӝ2.@ 4"<߾˵=% k4zBxZ*M"FQ^OO|} Ϸt/݄|Maϕ|n߹ <^S*`] vvEbtP/>c|2z|9i#<|>{v5? 7+q?7ds8"<3pO~0qWzk۫:Wrr#@_ ~]?RKkv| |'/$*4gysܿq/ \9y|/|p^%O[MxS'<_uCx;{" z* L)~VagzuG +9|ec_(٤. a7B60@߇||y <]WZU e`RH?e_G|辱Ə=H=R_XWW@o(A p礿n1__w$o:*ö&>&~Q)@~"E_$_qx~c!>{\ؿֆk?_Oi/&_7>7˨_K3I|K"~7V52d6wbfRM{lƒz*4qh}3,Onrb)_͂oDbS++uEi ⎅m~ɫ_JX<ڌ}||'Gs!;/Ӹ]jBHF677+ޣ- ׅ_5z4ʵC£[-ٞC~|VɹmMs 3G}:g‘yU1ޓzGXDamE~N#~ {xuf*RJmNK72Jb[tۘ;ު7GJkAHeK4J2z+Dc됇i؍.{03g0;cY]!+2}1si^6MkV}l}9©!L_1X59Z 'A9-؅ry| T`fc" څzǃAYe}oJ<_oǶݺt%g˗=Ud3r<0-_BF*A{Uސ?Th.?{k#hǒ}K!)7h5Wa?uՙӼn_6?ƶZ3fKbkM1瞷o+4;/ɇsia=ӛpcmʖNmگ{r}Ȣ>Ӏ{>䊺)|!7W'D}DQog 2]-8 L;&]҇$}LUAу!9!ɾÌ֤;R Q&}CZЇd])ПBOr!s&mI2?!a/D]e wAo" 9ONrh8@1@z}+#}FAH>5*ǐrI2#ޗa%lJq]H~҇h!}lm҇,<9?C&}HjCc}^=ϡ7 S?A>O>dG҇CݤI#}{]cv>3F҇A 'Ѿq Dz\_H3Ǝ|Ai}43 ?=8rOoy N}dB/ H};#^NWb_HC2|Cb'}ȇäL!ˏ⻼~WK!O'_"=[{}ooL^Hr#!ZMٱ!>O>_1 $Қ6}_<巖_tJk7Osj -+^ BN o]?J(J7EMOR[!;v&z{`6pkm{vl7ob/JuDkphvߜ H&[Wq=&l0UmrYT.7wu߹,kMxthGPz:uw)}-!K11*GQg?o!K/ pW-j]=ﴏ#ۙhF*D?R{S1oAl; "}9I5$O4Yζ9ѫgMNS晴CS]3ޥ*upJ/rf[fهZ'ZMW|f[lIXW=kf`^˘Z0fv7lɬz0۱?־0};Z*[J.x7oWOec|v Bv0M?KIթάT.g-sKR3AzѯŔeh?ߊ#;n}qXHYq2W\5=f{y{lV%l4F(p3ѣ2T G[ϟ_BD<1t8>h)é(d{J/C<}wKV}mJa5‰TO;lH{YQowN[Vu-\Gz^ !h"ѷgYԆ3%y{<\\[=|M]tzah~ħ|tR MF~AG9HL\˼;Hjvy'1+0om3mt:fۨɴFVv`>Mh"HW17퓞 l-x3ocf72;[֮siگܵ2zM3-'FI)c. XџR QW/wELfaΤ':|ԬwB*6:1>6ᚫE~w\(~46}qjcvr{y9T*w=2J8FgcY>#=P|(OWZ /4ViYꩳoBPx\saQ>95w"mѾЯu6wy\SM&n;%잱wz}4x?\9MwᠥD-+ߧA͘4Ӥ_|[eJOg[lgx?Iiխ>*l}܉uilR.󙕭Gjo_Lu!Ӌls~ NTQl]w K?dKZ:ϝ,[(vf+yAh6l['=ۋs0{jFQz_~"ŷ{D"(=8_؇m>uQd `>/OY}^lٲ@~G>2s1kfǏvD_f&mwYVcJ/ʈKh,;TD񝖂NG_|}T~jECZIMvm6v̬hV3;ANDoR|oTיoPzjV6!XCw ai qݙ_Eag++$b@w5sJ=> /LavGA/َߒ x.&'W=Q$o:1\5=Bz}{0hΤ t.ʯdNwǶ;>IdN,`U6YfzMS'Oe;goR[clgm⇠p Jɯ1V~}3ΓdדS{>$jX\/CO*C*Dk뉿>dLJ,.CB)c7?G=!&>dIWN?@y2C|I2t C>'҇|A6#҇Eixi>n?Iߓ>dp?_%)%x ӓ)ҹ'=;҇8m>ԏ!s'I#}OЗ>$XG>A~WP@>dΦuC>CF>D -IbB%7a H2!F*#ܧIaRO&!س\FH7G,ׇY>$&!a Fca)!'F|\Cf!װ_%?]NN?I+C&~{_W(qr{%͂N_o@ pTrIm;;/[>d !Ӂo|7^ypq#}sC̰uK#^Yv s =H7Bb}`CzA2!}>$É!8=cUoT'w{zLFqI!Cb)w!*C"ޙS8>jͰ}U>%!SYw~%}O/!}gh~6SW˾ ||A{go>C燞;AD{اYÓ>}>iHCߧsN6#D#_~k|ޣ{x8!t> C/LrٲqX/Q8=px`{r>9!:?oXIkz΅! %r>q7t_8ݠ!?`O!}KuՄ9!a->$*GI{joA-Ɵ 5>dܟ !x/v|?%JMz:ֽ l'?/'H?{O z|R1!A7h[?:=ٝ>%S,Cbhz T%?|7{[8>dz‡>$v]}ƣ !Cb Rn+!=3E_Eݘ]Cb}ZimTy ]`/V> t >hy.v4a77JΗk寭c'fq?yi 5|yga48ׅ/đ,Va_W>~l,%>~Rȟ]u'TnT :AVGt(zxsʍO{\:~|fCGa#v?&~ůt~+qW1ι({ ׎y&]f{EZƢ}/nB;!~?߬fsW2/1=`,~5([GO"V|SXvy92W!џV<> Z ڕ r|/ sy_?ijweEtٞ!|}ϰ}R6Q|^O|3 c\SZΏs)KU|8cM@[#>Vs,wsaG@ *E<@u(7(7[H^ ܅%|gkm'zyK3H=6w GR& "_ v]!wހt{ruߑ|} a'+qG Yyn@ {~H==ތ oXk^1r;r;x\!G#v%X9ͅ7 Wp/hn|7=*_{u9{ϓH~r[+A}F>5t $_+M$g}Rma?d=_|m% !'_=/{w}g yZMXyVe~ ڰ]Oa UaO?'v2o:%ZhҜt1uf]I$=9jOYlsZ\vjy)D."*AбL6%o׹e܏B^|=-<]N) ɈF}Kn<k<<=|#w?CJ:)#~{\>a;gܥ|sg|!'x2QNoOvQg-kGK/g;=fj<c>ˎ/o]|&3łY*r!Jo\~G1~ z6w:໢fh]7r9}hb\kXh~ѫF27iwbv}?u.:,7leU^Cl6%/گ%=~xxzܿ;~l%o^ot߸xOѸwmN}thy=wD=?&bRܟD}Eg&*þգt!DŽ3jCcGyLOlTS7p/v#!GHGMrt?XLq3DT7jmpߘԝyR^tߘ_A婃Aŗ_54O {9w7}MP_oLrx&ד}cm57NLc0eݍ_tMs:5Ƶw?hig Q 72 oOl"dc^;C~W* pD#vw37 QH}d\;O!=_XXFN=z]47i}co܂9~wi5\j1ϊѧ84nhLjqM1t8JUv}V>7wh/)qGo4ɡCvt847/7jOگS7p}>W~6S}6QdTe9$ۿnݻC+>b!ׇY ?~}aQ=IR@U!CR7I!}O}YCDž_2')>D*!xO.s}5ΡL wTQο@O{=? ;o޷?>3ѧz5"tX l*I;ygЗ<{'p]Wz IүGvs_oT"}Q-{kNc=c҇Dno3=_ba9X~CjwB_/ Ax,vIZ1n"!jo }ȫs&}H)=o)ޣÞ&_W !r$#r[XjqK-5Lp+,¸qoY}5Ի=I`]r(kb%}H\GO }5> TW<8g>d91n{ϔ`>o]'J~N}#pє?ZJNO4{soL }HE[D;Hrvr}o:#H!Vؿƽw`˹JE~}exȯ/}e?OUE~}z~HJ'ίr!blaG^A~8ngoo_/]y>~=į۶$~c'^ܞLnw~kvr/]~vHdѐg]wA/7 >-mOM|[]rgN`F3 W| io_OړuaO=į.O%k/C? EA3y)кWd _Zka{Az2K"~_ 'eD;ב{)v`d o~H!YЅ׺ȷk+>9v̈O=I CЀ_G)s0N'| .@'ba?;DW~O.t /oIB}r\$" 5ksȯ_*ܟ,o2Ws>ӏתQ{2u_)ӡNZfįHáBZ! {i~/紹3E:nXȯU,*uA|_,|ӭ9nw_z܄'tn?c]_v&~T7{?g='~=k݆B?7&?7-C }~-C .u_2{q? !;=\oþP%~}| U_s +ָgԄ}uMuۇ xnį_&4!oUb9Jhݿ`È_iJz ._{OLe;+BZ/A~ |(B}&ý{*/r)}d3סį$~>| G,'~=3ѝ_: ~ C8}_3^׹D}Ȱ,A._|ׯϗG||/gJįm| F/G.!OA_c3g׷[DsU vdp]#௑m/_z? zg.u߆]6?tqσf_o9uį8$~-{z&~Iy! A -pOYGxX_ |Dz ׳݈_'6DCு%-/C|/cc{/cGQ})I_Da/3eC'"~}5_Z.!~>}}7xV#2=> (8!D'-=@nN`.rrvPW nK_/yp>2!_i==@=;y~wSr< kЯQ"ћA6}_ į Z}>CįW}Kۅ!U~O pu.">i."]:J_05zA;[#ery pXO]/I=U !B}w9v~ׂZ._/1 ǧ*HԀ!M!~}(|@_ ~$H1CЇLwCrI;`O54?tx/{!G? !_B(z#!-pow>U_W6~KzzA^Eo7_DcB~{[t=J_t}>rXPK?NZ듧t׏ tz}~D: L^w&Z-J~2}i?I #rܝ?JR MM|xG>.O7὇/w+ z]^z{I HFZ>p k\(3  ox _I//n?`kEk7_J:K.}Cx/ X2_%_;O麟A ?͕6xk4Q"tX7]tTćlcq+_) g]=I!FS;͇>9E:p|ȫby0CVMl9>Li4Or1Z>zП7saqAd41⏎{$Q|KsH"\3%ʗ2ۢ+6lĻd9 v:|՜-aϑc!q!k]!9k_CKz6z)}s0LJ>֒y"|g=t(~(; !f.3:LJV?DeрCs9>w">D1/::r?BG~Pzm:ҿlD3CAcC6qwLJ|YC|CUޡ6Qrq|=^Θ/o'+@=[?|>[1^aj T_ ǁauA7@,Щᡠf;џ7tp|Oy7b5A;X׈]qĸ>_ˈ9-Qg;no!ONU9>p*y1 1ǮCq|ȩ8>xMј,w8LJTٟ@8o _Q>~6$7 #_'sD:ky>W*{']2`͒@l{.$_[Ao[( !__t ׊$_W{@~2%u+'!uSC`C" ԛRQx/xq7~Op'w.zMЇ$B2n !mߘܷ; _| ?V/׃ŽݵxAMzCGo|x>ɸoHv'|ڑo0π@߫@\rp0 n~ۡoX?CzL_dCUBz#!_v>DzہZb_y{Dv}#w?aC>*h*n'} #(J<| |a)!W^>$Jm _6q'Y>L o'} w΄Zk|x/ u$_~T '~mʬ<7|TLtJ Z01a[o6$͖v!^\P0gV^V=~2U\]Xy %KI!OQ~-L_6m,M(8-Ym[h OOna?*~~Չ9~kVË ~31ؔ[eON=YщGY_+0[OR~2~bo=/xa6:y)-zo,zo \B+?|q _z,ke1Æ}_f:/ګvtw\ghvόuZͫrf۱f-ϼj& >@> ZThItW6LsYC+3v8}U(Z8's:Ix eToI;c^Cشe3|/*0 0dާF?7mVxtɹrRe_Uͅ8q?{]ON;yDnnkE敯j|N{_cK.(:=[l")}hռyi-]fc?iS#^ 4xϗ r緹L2ʭ融Ȧ>-23qsM[F%rnc[ ³#BܦCZ6H:K呐g^?.|xxmcARDx}= /.}9r<&Yqg͂hYNC+C@חqܛq(`q\F/ ^y_S.{SDp\T:?>-ru= :y 8cCO'a^'?)^C;bGU0oe{0|sN?{'-uH r(Z#YdK' )^+RUu&K)^+]R>^OReb ţc?z._Ѓ)D|.X!(Ǽ[@E;W#^[R&K)^@~R]R.x^yxj&_|Cwruϡd!eq?쇢 Vt#^"k /@ȿh0#- s*p=p,p2GAu)琩tH0.LKR$s>GZ+k|;罸_S\8@ @RD~ަTƉm(RrzHz u m(hkM4y xJxyJJ9C+QߚVJzcc׋T6K<{seG;fE^uU}a?m(gٗ3gw}]o9#װr檧HL]n{B'kqA_PJڟ3-6q|/E kM]OM#;ے3eю+><*n2)B4No~rb4ڡx7xs~[F9+EfzaGT?ô+؍_zŸ|^avYzg~m[o>O_ ^-O[oK>}}''ɧ҅,kw+A}7hx'5se(xSѺb`bC|躹^,r"93cMZ~K1|#(ЎqZ5ʥ5ucfͽWVA=::ݚGS+)-[A1u~Le]J&a>uQb~c~!\4'bdcN1գɳz¾zRoſM%[i2QNt/Ŝ6*fi,'ʴ9+.N% k>@JG< B>yPz}Q/9oq>^mQq;]G&AcO` 9_%_v'#k'F@QO J=f59ƅ@ ge1cM۲XFP"c?^:֟IՊ4<\=?>_7_Ry $f?9U- iKޯcX\y6^?پt{thJm"~$:qڡ"MoVA1\{ %L*Q?qϼoF?=ȳ颠_7vjĞtek^}B?d;ߦDE7m(JF结g'FLnuZ|ݜHR7"# :9xlmխ#_7wq|DQ9W \i=|?o[_^;y{\A+[M1?Wu?fhxJ>OdNTڦ4 }AOM2ڂDzEѶխ) PQs_boa,yy^oKo?Ώ&wFӶWĺ@(E!{t_%Ecު`=wﭯgRQGicR':YUFX&d0Ei?O͟r PFaQ >!nҕW5_M:!͞gձS忨1:]dHG}P+(BQ}\駝SJ0_gdsiZ{oG$=xKy}|;n؇&!B^AA?s~=]]uS&\Hˬh(:\;ZrHض?@OFsb!?<8&ِ,1:tfeN,M]|X귥5:e~R@ЅчD9ڜsvZ؄i#ޗDo%*Em]?~&׸u"=U*rby91[k '_JӀyǒy9hCe= h%DǴ-CVuKgCP̫!z|7T$ 9{Zz_~͠0H+PnC.N?k_Zo+q\|8 N8gKQ\ONc/ҕ,tg9y,vәֿ| K.[>:H=yDZmJ 0ssp;7i'97 uWyb1MEfo益zouxe]xݧb\G)xVNrm5ǯh߆|"']&JW'jU; GΗ ˥iՕ'[ޮ%?NO뽱nCml7\^=3ˇi::@4\Jz3ם+טCB.v+"yvd/-_Gk:\ە|Tƶ]عAn^}0%x_KA}ktRŮQ/%ȟ?mv9=5S9쳔 ?)"4]I#0p"N)MND;a}$Rt4<>#W$Je||+Y=E#>( -^ztȷ\ i8!:~F4{.6^ +lxOȼw#_ut:hE'˿#ioѳM]aC׸\]cFx]bMg)^?jӆhJUFGW>W x@t:~ne^y]>3^/fv=vկP&KuQ uwţMײ}x.fvG7xNθ⍷Qd.Xx=6Cw]!݃zZg7782^[a63ag,ۗpz:뫮*aJ_?WN+H^ ?4Jю=)mMΗ{\~D]{r$ex98gד1^'b.~1^G0^wZx]$;c6~F+u9ULMT<PGQhբ*[Zi`4U_ЭbQM=B?ze_=m b2r9w\ʦ! .]z^t;r 8E٣'FӺ]*[4NI"u$:|NOe9u?-NR SΓ6K:}۪O6|s|EC!B|9_{!4Np,ڟ(5Jlfv1P-XqZ{)9ʼQ<1է6ijgH 92'̵總7te[BS;,UcRi~Yzq~982B=90^'hAv/i媞KٓmuXsVP?0nPΈh>z}Nt(?1ò}W$Kr\4z ˇ|@!|ހqyqtNMebrX$a?| LۧmMXs;z6\L{bo˷NZ]69]|%iѺwvoXT!CYk ƺ*w7O _ͰTۏ|jCYB~:OR鹉Ӟ,W Xh<׵ȿR-Fb:rr;ўJ@?gQ𮜆Y)*%r<,Q"oQ@tVQn/?YM=)ۆ`<Ũ<'M} 䃲RyOw@SBfsIwֹG|О.c M谕"柉h^ Bj${a?U!ol.ot=T?d~HRW|7^+dT?XO ZنCfC/ ~ȸVb?C5c62Nvf~ȞDCO C^%3rn&:gqX?D,뇄%r~&eBuܧO_z_/o8K Y?Ihк /'0F8dA$CrCq{o~Ƞn@*4?1x_uO~*!г)Y!"X?DϐCLaЉCN~\o}E'w;J^$ΥdznXb]+>i{Xj~ȳլ7CbGKXY_臜+od~H'Ie s"â r?fSӐL)/ji|Oחy򅰛ve͡Ǖ (*woAڠ_npo9]j#!l]~j8MAmN7.#hNO>'H1>"zzZ>O|o'RnMa<8N@a ;?  90#.z?Rqbh?bp^}ז~w3j^iE.ךּwG{ $YkѲ,.os] קT5mi]Ns\C{Q_XStl<;zc4mmhe\wΌSpm۳'n_>7/ﭢ'PvSP\wn(8AACg#?Q~Ey$p Wa|N@z&S| Ӑaߏ+>1HC&|R氝h3., }!KzNB?WSv!w i+ɧbo~><_vAC!}1c</GRHoH&\p'/"zQ/!xO!-h^3N:7g,2GQxȻ~^)L2K-Z4 kz1Ж#b_"u`/sU^Fүu}?I^fi^FhEh;e? eIe*4`7  {^1 2 ^rCS }ztnH e{Qy|[^f][صN$<7 w kI3t,{ ]LvֱL{U| b_< bܬz F(f }ŰAwԱOawS23V5{O.t.  CLz Q8̅l/U2u^Ƶe.c7{3^&7hb}JB^w[ {#.}DqWHMEz9{`j^'DZ|ՙezVsf/8~_>֡eu;m9FΥAA%m +ԫoGv$зނF8o:؋y$>')ΆLl/Ӏ7l/su˔a{cl/"ϧ)ᅩQybt[|2aVbnHÞi2Oϱcl/sÇe2p}oLd2WS^fJ,|zԛѱ=:׬~Bfd{^q۷usa)TS$t\&ɦONvwJY2e*p 2eYXFK˟ͅtˢ0mZ>f.+F_9ըmq,eiYѶA2Z`%x޹4fbIJ4--Is Z[uΠdh"a].ّ-T8N{Cm q /sWh~I]j~VqcF< y?z~Mג?p;ϊ(v3vE}{,/Tur!_Aq',w ͻr^|]yu֊|49L;i7[A}YBX|92Rw<(}ܺE=4:-vݵP~N&s{uXa 2pyX(LP22saT1[\OՁq:g&#iyyBgre|z/2R݆\_G~ ǥtz>qSP.O,FM~йc\wIDVB{/2N@cBZ 1Cpryc'B*2jȟsL楉<K,9 e|`}FRݗ_s1mw2ՙl(YoͻRii>K{R_75:xH2Ӫc&Źd7Y'<h_e:@Q_/ {-牺YFRzڿiuϔn=Q؆yD8/9on!Cu=; <:x2 nI\g.3/p} aG-a/X2RWvk|%.:I`߸^ேqe~870bx,_`2NWȁ' ۖkmXf߸ u2ĹߗKΩ\ ;(G\}<:Mr }w1욋>w^9y ӳb:GZg1j˚v]g(Dqk#/^HxXo/M`,}c ׫zFEm_E_,Fzs-.=nv]hhDT3yX9rFJ3ɵnh4^I9>νj!Sy@#Dr'iCjHWhiG, ڳLqOPd|S ;&FUdM%:ۑ !{R2u|]l;\,G&ē\Z|]"9C6:F ;NІ)^=WhO<{@ci 5gs3X c]D?ܘ͸7GG={`Rе+coq*OYs; ti.y5D:Z|C7n@ȲQN&s,:ؑ}\xݵ~p  3b[{8V~5px}ȍ ɢ|x?./q :p}eE=_2y]F{&.L5 r[(Ǻ&a\ |PN]A{ߑIcKm Pt]}LNxJu#ɽ6i}zVS4 gNVHC =u0lo`~&#_>OC&.?6"ScyZøE;$?9:K12N+n%ȷGC C?kn(p0J-۞?}_3.8QOvdrGOX/~>7S}eHkѿ<4 ^aW~jR/Ѯ/&*tp<ߝ|ӭZ..='Gy̻\& G>]sS{D{O+0rMpgʇՁ1ǘcorZke#V?ջ7A ?+`v U {>(sWQ1?{".pƅqfO[ #NIy[:Vĺ#.x$vMVbp]#jՏ.D/UKxU9ޮ2,8,~SP(~VC~DyK\8 EY|YܷLvS8{a6}\R#9nj/{ vgÏV{ d~Cvax1qB.ٌ)b0^'5GxwVby~< !Z(mx?szԠ~"E{nq?Obȸ9m1kFEIldqf pa)uڹx]1:@˂bZ!XGY\H> .ľ>ƾcdqJdqd2^x-ׅzH u2u<_Ǩx=m:KǐZer!X >duA;{-<$>yוk8>z Ow3?A+~n5_#iHk}uZY u% Jb|2L~e_Be_xW" W:t>&⇇ aױ^ #Y㹚Ө O@?%We6¯'CnRw]5(Gs{|mƲ/,`& L; _9g۰ G< 32?2?؈_qWï?hGg5x\OezYDĝEG_x_[]E|!YS1 e)e,>:J=n"@ėg׃ ~;]od__w2v*{'8|DdXղpQ;~W?RQˀCw>j4vYo qOd3m͑m EM[Aw1-WT?ֱ:#d}gM[Kҩr2-mnv crT9]uxWN2Wi%BT>gSO7SZZ{_;J3zL 4/}~&`=XOd}NL,_nSykK'v#7V_7 {!^?뾨!q/6Sgt)(|U l v3-vkx,3768_QyBV{0}VIz"2XmvoKشXy-}GGr]wdflyD23`IjF2M<ڋ;H;c)O5F7G@&c~679K>Rh(6G/4?.{džܦWqr?463J{Nt\纷*Yc!s!xE/y<:LwC>A=kȉU|i7')=/&qdkReL>8?ӵЋGklVNVnAYV.s^hJinp|G&kC*uRtGyJ\~)}瓼_3.O)!V-!egt7@)\Qʇ>%C$#4nj`>#}l+!{ 2>VrẎ3YC~-!Gu%^Gܪ4C2r>Kd>9=Ei:̇Tb>dRE|̇m)xwbww}C\׋ZOҧa>x*!1Yxr}zwsafi \;CC$=$C4 |H͊/2$. Za< Ԝ˭c]Y>vO˭`fŅz່3Vj|7PC3uG4ra O B=U1C\{/l*Cđq<:eq{#^]} H7 Uv9cz sޙu? UyG%hCf0NCf/!4|[w<̇2rS|Җ̇$#.ȧ1kw*=}Z?̀|ϸ -{.W a<X5h,m4gZLF=2Xi7<ܙ&n*N=ApΏoAr7gFMUdb"PUӚh;{=|d1UdZF/*_?]? ^,ٹ_-&7 pWHq[,NvYS [?JN} 0?`ΧV,g.M˳QR~a0|N;_U$hΟbn`r`2YY[[~l@CiaA/hfiz쏩ʘd4zP׍YtiO2&jU}CqSO;\GVh$ҍL}$sŊc^udZiS>ɷj?z2K/lL =rYnE3zqջ׆>Џ_wߤAc;<>i'ȇ(|);ʇBz"_a&) AN5jg#d e,C~+yy b]r~DڙL/Q6~NS&MqwVJ}_ゴ=&W/:iS֙i,ꨏϡR4D8 ڝ81 zg;O:JKWB;*B_Zn;gxh.hG;G?zC+O^HPH5:l@Z>Ur+=g(&aܦEիi V6fn]}FݩKy;a9#;rZq@JLQ٪cӼlgˊdgr hm_N:+/Cim+#ws{7vn|U@;i3u8/, gKv+/%YYP_g*,pMq[?z?Gsl/0ICjϱlp5Ӹ~gi_Yj#Wvd{0?([1ɸ/owz>t6$yݗFPMƸSdsiZo1*d>VpZf[ot{f*p] W;f)6o^-K!Я2ȍY)Vx Y Q(yքFy3= C ّMd^E433gUzH͓\F|";Z}۫㐾GNYl c*PneB~E3Xja(i@%Wg"y!Z@gSݕ1.ZNu+W`ZSwTnZܨg'װHl)O/EskD{о g|x|Ɖ/wiք5Ҫ6^'ύ[R}-%݇5[˟iqǹ&9?h:jl.+ZQGNԝuLnIIv鉖΅[sD]\Vu!;Ʊ,_&n6kޤ'Ű8i,?#aɥ."r֖6#W]9ev37#NDZ1?aI?Jwi٫+nܸ}|AÅD{ !{;mF_hw MU~=ȾzbmVA'~ tES=GCq2q1rܭ9Kp*CtT9׃g`?LGq;il7J\v|ʁw`>Gg-zE'b`Ed=hȪy9dw\vU{_E;A9ry/٫5yaG`C{=5"[gaTa<,q[4Q#e[b`E뒶2}ro PHb JXuŒ1!}ځez-O7z%Qgӿ}d &Mt-߈ߐʂ<y}36 T %0?eI3wXG>G?uo .ȷ]5zvg\LnsϾ~)nt7,$g͖C#E}Z`Ϭ0OpH㹯? \lt[P䞶y_ga;_?|$o+JȢmtNqMC~VW :,94=ӟVy]Ԟ 95U}y _wIs I;ifKDHcRJ 6 w}C'{ bZwCo_;@+Sy옿Y5Sd}ZП}>W}# }>AУ >%[N*A7}džC:׻ך>=tƻAh (x{4W E sn}"c@b3} ̂V5a|I aݿ߶fz. YYo ׋F`^2=hUfA){ S Mq:?>^Y2\=P ڃGף0]_a}ANVd:ސ_+ | >QKC7|2=l(ZC_%d!)_^c.@exa&us, }Z S?cepa {0uXkez +oS6~Ka<W pEӠW}}>{e>՛W xE _&0=0m_j }Ug5զ-O'Z%Eםl׫.xQpֆƬ>CUfFN$i7Y> ,AAVx#PߐkPqHp;,9A?!yG}'̷)җ!R񐺈V-(Su.Oeѹ55[+sMr{a%|&F$F{_U=dO<4}c}FWtFOD {J{E'|Ptϣ$6@cIIrӳbL,/)gݢ[T )G>(t=ۮ];7I.m(x,Ha}A)C-=nz?8Px_53~Ujsk =70]{Ӎ^=njߢ "n\/ݒ͒\ޘ~iB9ץSV<7&,xvqP|*@>j&?<(%OO+Ub((U4in>7pz~6yN?VWwvQϗL?;YL5d`?YlY4ΟgKkҮvtg fs}PS|ŧ!\3 q5??WG_Rsil%Mo O{v>>Fܭ_B<~l?]ҎۑcfӯUE=W[7] R'Ki2 V35\:l8B jz{벾g>F!8Kw lb -}¼\z!Q>)aكiOk2#Yjp)} [x%Z8ƅ)軘V%eFgO)w6_-5vYs=u 07|h_5\g~f7ȿ8!+#%b(FncfVZ}ǿm'ۣ<[u e7^#C::J%O[+bW7MVބ#}I*=[{د:R{ҕoI5͑ڣG$H_R{ Gp+{; K%mfKEK32??}ނ=>ch[=Bۣ跾=z7gG>c{%uF``PػGst}op'ko`C6 >(}2؝=?}+Gw{tWءl<{߷b+5:GU]_8efי#IkQ ;lѽ?]ޖ+~=س/#s.~+"Q/|L;ȱo^Ǽiw +=&ۣ`{gm/9rяt%?WGI!$F=w|zX\weDU ~=$H"B~s\@/ dp5ïę[]' kϩl^k聩<lne3bE`sB{;ۣc$P~$ maCaчH ۣ߁_<}aѷF}ۣ{_޲=z7~ERW~Hd}4}-}ajWc! v}bQSg'>?wObELP0O9y KacxZvĕcXA $X3"6Iے>G*[:wE\eK tEX?vj'Z$+ju;ehmS)gf` "$.A/K~Ù1/Wtv Y|[oя HGyW Z(&:Vm]ƅm8-l}3r򈩉7ǐ{;s߫265Ȍ+y؇ve뛅-AښWa)r- RV+G#"rTy 5q+Z4E\ur̾zKe29z'ps5ѭ,fdv3\uq"ϊ~ӱ!%EU/|,ϲKn+9Ks$K6*^-r={㌫^cٿDc{EɅp-Ν'`o0!5wsA+;?עXgiGvͭM.ts #UXu{chvۺ̋7q>9R{1,7xSE gȣ[s5ǧVJy8oHֳ\}0b{0?KY.rVI29t?e%+1IU,c_Et$0˛r{ySW9ژy6Y_?ϑ =W.ZfN%E:a\)5_ÝE -@g-0<|=9hޫJ6Mw$'/=*;c=mb_ZBZoE?Ң ͷ}ТnN_9 o5mm1/ ̟=n>v]9(ai0^r} Nƕ_q|ؠ4CɪGkXMxFv4's;tz7UhqOmݽd+t#ĸ7Z#ZM#NγM4}_nݠ>ߖlnѿ)H/GSWxT){>_r|?_UR}_c2|WmKn͖'I]#ztzK~;|YoVát[|XOq}> kO?@9oB/|7xP }6>߱lBv{ f}\ =#蝅܇;}^@>`!nϷ*7!d)f}V7( 1>-A0^=I@ɏ_rvkёXo;(xwε7Muh|g>߳7~@.낡& |̣9ʡaϰިAYO~>n;?^Z#7kW>ߥ?~G>s5瓨ߴ3dD?ڒjo% :5:7V)=&9zW<BVɏ,<:+!!19jҲ'6ǟQ~< /1,-ou?sr/q*UاH(v)pڣ(xњnCog7>G\ՁO݂M49 }Wߡ_xVћ~C,N2.]|a /y :|T.z(leWCWVn+髨bFz 1]ZT K9.6\|hڷP,Y>,o )'#gxkcZ 3]UWlelJ4W?P ⎠{t g qnb1˯79syKwb=#YN;;ĠO/gޣv[$,sF;8{~ :YOvEܷ-W>9E<l& lWџ*_v\׳)PqoVa|UtzRMc(a˖*cQQ~E~ZƑm5Q~⬯'+2le()79B?jK}g! fJfځٕ aR0fnj_-NTpHWU #U6|K9?ʽ#FQ7Z~URE,+ C;|ڞ3jj ,Ng98@FJ _ R}C>{Nϻt;k ztss#P^ N+w:{|~(☠߃*("|qYХNu=_F0s{ӅȥwԠhq\ol7amPixK>xZwLvx*Nl4NhK{8n!O0!kPUN?9>9ۊZ"YvfyFKӆcEֳ ۹-c{ ܮ0V8=;\uτPϦv[Z[=:=V,t,>\>n/>[qBy_E>/\L2ˍMv)m[)++z7ib҈#K)ןzNC+o-ƻJHbW9Vc 1 Xh 2ո,Yu6H=1Xvοqr iX1͐N4~k|q* 1zWR}1v,bp]|\Cz Mx`{ekzy!տN _'$A:,uZ/uąjIgYz!k^ސ7*@o,0a. ˁ'qxˬxB_;C2ײ8sߩ [M a|kXZUm uzs,wl~^ҙ!JvmvFo/пfk#_ X: r./B<{iCg.xKU!X?6ǺC`#詥#_n:<ŗ G? i(=F'C_'obǡ-t/:`߆QkֿuC 7^a>8hά=YU1Ij-](8eyZMzNx~mQ&gW C:1QXg]k@z+W u#?7 v5#_x`l57Vbg=ֿu{o~.؉e5Dd#e<] C_q !}ֿ.7e<[QA: BlBFj)^|Mחڅ vWw #x}ZXkSS_k闄+"_Ȝlx\A\}V3^_{ˌ / 'P̢q']q873XA}8ezdjie?//PgAc ?ۆ\(Aa1X]qoyY5cڒ5A\o|A }as{E?FGZe>/~?*mm@C/-FQzӷ#ٟ+֯7gەmzcO/plĵx.]7%=`~.ƺiZ?wv%h~[kYOUj+W߁ڧѯ=h@Tb6&>wi5FQnTG;^B=w nGRX!(tENG(R4zvSo7pz9)QlǷډ'膶q?컡vѾP>2E%)QO r\rʗ5}pQ}9t=yJ.ºúO>sy8C#оƐx뜖=uttD} k)qy%jz<YU yeya 03*=DS?u]"  3!e=mQ{Pp kձ[(גh;I RՉEcjA„&\ېoШm}N $ȭ6_G;v\6ٱy/O=<FQ-{Lk҃% Ao(Yw(T>B|yˉR}>3I)>6Ϸe@Ϸ۷T/jYW^WP ҡϷc}>KSh|/ R"[{8>߬Ao˓N =%uC\ѐwz:#'=(d}gP*˱>c}݈۝ W&w^҆mmgr@r, |UhV܈2D"ӧL~IiB }>KEհc}>BBa!'neA_ bAǕ&(_}h_kAסAQ,[}\||>Kz|G_&*1z#.sݕ~@3Lo ,n5M'\yF`_45T!~d6Rls@0aE `y |Q绉xS豊}uk/ L> =zП AmGˠϧ }>[|ʑwG|3<k៯Ƴ>[W{>;cv˗b)^5GOL=J}zJAAOU{] Tg5pK7bx`xqxBo I 3^Ud3uan^ip yI;c=w)z%͠8wwdT?⋅@Ziq>=ENH s6w?a?X륌^m⣯g9xx 3^/F w~E_&@Żcd ;` |h8쩏3^Wf0^wPJ'Ogfk)dpmpGo/̯,7%pn<'rN4 1eпחznשwy3+]k~Z$ڌSqD пߓГmD{ূ@"NV(vD`+,1~F%G`xZį B<`|2|N W_wylxm x*^`Bd-,пx$(]D0≅Nt^{SG0^q;<#">3+W<xx~R)C 5{:U7F_/寯P1Z]'Of5I€_1}s|8u.Ҹ\h/GXwms3WCmɼԜBov毕ݘA'V# ]6\/~qq~H{`_4 83ђk5/9OOm0ץmQ.bZr  ?s2=b9C={-_F[;u^C&gf1̎Avo?x!ؕH"| a#a:9T$1]74΄Od~B b_I`aC:Ҳ_ c_灿gzb 9P_b_.&>9sh毯Obzwڀ6";AU_e b 'a9ۥ|ș^s|HKK):)Cɑ!i >2~Y!!W=*\v*̇|a>vGe3=C12ߏ̇|2a>ⴄBİdň{|)x)̈́ž<\ [8c>$o2!/_KMė1x'1Iw|/#mߪ[̟.<| a%z!p|H`wṄ׀y>Dda^3P=!\v[.a#>,"ͳmBz%kb~Hk@ւ@:5-?Ac#UpOku@xSW?EX%Ļ0ψ'O-A`o߾  Yܽ7SOj68ڒ}6u:σ"*kw$?aޞ6yf:xZ^7º7*^%Bpup^XRI볦IVb,VUBƌ_uЌ^/YLS XZ}9O7kqPc~>Txu ~Q/Ld`߈{?:@CdGb? x}CڏF}~ =!\/YvN~&;wBs;v#l{b_ɲw>uǑY1e!3݁D q9(',zkG5 8_#!_P/x25b}dz|]p.m"p,{"~c/Xy#Pf])u9{ TH`￐fM?7xx7pp. B\pNMHwE(p7eX|U[vE_ ,q px-' xuSkp@G<ฏ 7kGe~C+׌-ˌ*ўz*x<pЩkhxơuNDAn])uYே&Y'He. >RzLhvA௏$+<_u?_GZ\;!?h!_?hu毝_uHaO{׃_jW׮L1}w3FCZV0כ$)N񦑐^п>~lQ>:k_O}uw5/_/=`k3'` 12}4|/Y뭸/2*0S]'Rj2؋⋰oBZr@={V?۲}rvCܖ_u!Yu_א 혿nS{5_'EbXOx!h z7M_5 ҙϷs-;aQAy=_Lu;)B-Ogh$#|64y_xq &'>t׏^'7a׋eRkysC|kpN]/=_9IףIש5o>!pԶ}=\ xxA7'B/}Cz. |1|qA?,(od COoCOUп6/Ovw>_ڮ黊EvA\ v^[C  @C!8_5G/ (ҫW|=xFTx`~5o |/-_&P Mj/诅8\ ^R p> /*1,|a |i|~q͉|>l$|= #|}S;! +ӋcüQ 3dz`qΔ/xQ8GaMk-wo ~L[W)ח_?ca_*t_ |bJ?pcKSh].u:0^c7p3XJhχ:x~H |Hk\<{ !Ck0^wkDcwPf:AYO=^bW x]Vu=Oh!uyK4Ag_8~go|֦e&1^T,d0^/~ f~y(p)Ҁ =5=~CsM|7>;'1;Z3^?>>t{39Rx!a%''OkS0>_#i)GJ^c\n}Xˮ~V:y?lܰ~H<2^Ĺ>Ӑ-B8 2>1't<2&Sܞxekw'1^] α7 8@n]+ׅfM[wq+Y`3^_^FE?s|'Pc 1Ix{o=j ~gfXK! a߈ B8gH1禰P|e;)C#JK 3^+YѓGCPx}Be~aTx=cy;`臔R!źkx.GoքKN2=bZ7z(!=Lv!x$C4'&uo187CakA2ti| _d3ޫo{ ;"vd2{ǟhqRs""a`&`GBO"vbo#x]|H%7 8;Do=oǹHr 珁k^MWawhH^>+ W2^Z&Gu~84|s( xp=$'mxvhK 䥦'>sO?Y"uܞxٍPTj~xmLoJ[ :׽3^??%^ LcVXUK~-q?AIB.2^_x Gd'uNqeexy^*^o^^z=pz @+Vf}xxh~'3, ~\$-S7- ^f[Ax}^|΍^"@wEH| H|?o/T8-ٍunO: 2~KsIz+&3^GucNe~;q8΃So}x-RA:ϟ2/Lozbd'37|! .]۟?(33Oox.BoCdv S x|TC|N(GE>P #>b|'C'c<w ח]Zbڣ9- Z y6)W_K(̃n7.}V{%k~ڗ]?VӁ~=ߘv;k\O՝~&gyd͂ۚdXkoE!UoCVElG>#"9=JrrI卹9m۸Ӵ6d}u ~[[#K:_~JF{iŘDyo."N/O1 CT[=yZpX;ZѨ{gcPxͻm҃.6óv\o+='aDO$X43ЮoG>DZ5?y[=L8'7^P ?L7c\9o }5+r)%;zcnN pp;ٟe:LW}m};lg RyCz-CچL5{YIN_h]E]jR1ZH |:诲 /yz b= m<A}%+4\Qh?uQsu_< 3ER꾱'¯ST$Vکܒu8IA%wY [|eۮ5e dw D6/(E7}'̫=;aT`{ wjU\,LlN6} E'bun7imeA"Y$oV;upqF덨GK&;t^9Ҟ_UދR4hS3Jg$Mst.f5Etovs|&ylfn&VX2ױ Z6ePYkkT9 iu)A_h͛o'&7{[} ~= ‘%3V<R>,K+2$(,իC>[یODIPDg'ݥe 4}?/D(k|(XꔍٕѺ}/뭺B9<_o]*^}WeRz BRPڸ]'Kb&m~hm,A~ugUX:֤57V;sBvʁdbFۣWh〓_G+cYY+Gu!Ȯ>~~S(NUk2Z3WzGSn`>-P<;սh6OB-? pܭ8iGCP֫M|Nļck`7 masHc_hND5P)%B(/{LOJUQ; Vj99P(-ApY8RKNݳQW1>V<7vE=پvοRy-,ϼP(si5HH밯Сg_!_#Wsڒڼ" qT8t%ˌnwIr(Aޠ|Zh/c%F>C{{+M6VnVf=nerq?KrkS?<u:V1 o0g u۵w爃\RVJ{^* =umth᧯k=DqzK9ni+ZsRL8{]/o5Y\)6?lʽ/&/ǰA*q!3JFƝoOW\%َ_%=|]:z@+^Y'}Pt BhI;߻a4O}|ı|ݮh~mٷ8Z}/5 `7њ^_=;Ʊ{0988Ąr !;-78_23ط,r[ȳ`QrH<y( ZldywP@ mXr=g˕T?=Sp D& S?-;ʲ}%WO O+d1>뮐t˲ ۊdEoQϞ~);M܇~<*/BzCmrۧ~qDb_?{#P G>^qoZ/n'}zyD;q2ߝ.im:h UK{"SiyT=6kCHayGy6Yvb/'SJNFO"MolVQ/U{:cy}ʣ4+üul3 K/JsDH|^5;~F:n7YT|;7oU<}CZ?yxyQLcُq6Jl䉲y|81<kWû1T4O.OkM \3ȶáGѪEohni'21զZ (*SD02W4ҹدT;{WrtL=\K#@T!k7}*eBBEl(թ RyA@m gQ}s,\O0Kby8|ST}vF y(fiZo<-!O߳)QZM;I<1z8,>PCǝsK%=4]#W985e,rRy36!2b} .ϕˏL"痑9pL~}6.WiQ?]O^9}+E _=+<=`Ë1'u,0 _{-`'7Po{QZV=)LV&_kbO`7$: jN·sq߹t;2G:j',37p~;Tut;YPeuuaC2.Ι/Y31hG?*xP~.ͺ=fɜxdJ}o_~ȯt cInsaB|I"hF),swu͵񜰤9:~u?X,ܱEOó?Nߠf|TheTvpݥvsvFo߶)dgIAaX$?v}=rowwUy?b=3Gt?SMد7SaTVvwDrD[/]8OB6ހ~A5wig)Va=)"Z|eַɆsuOu䗚ehϘbPcuvN6lW(ˁӸ t3a_ {o\oԋ!k.|Nv\;NYxJ#o]re:C\Jit_ óMEݦsyw~ /wXV(ElIW gP?ZO;'= (hu+r/(ᶎm+i3㎾uO+(9]yc;q uO``/k 1\~o.oYa~:?x>Ow}8e瑕[S :-_9O(IxYÜ~Ca5au+/D?&aJ7T5?b_0^'^(OE˹Ksʧy#G,p^ߊ( ?xПgC>M{NF¸`m>/tڅu< 4jM1^+7 s=O)ܧ P/B3ςa}T]gc?=~|NlSmؗnM4kzz쥝n~?n3j4RqilڵdvylʃnC[̛%E>=8دDa)y]~TR=Er(9K͠n}FP#onIẹ "߿UF[eslPc>DfjI6Rz&Z$寗=K/ mENRڻ5Ikq,JM_߆8{'?7͆NHsTH2 yd(r)hKo%k)%{)+qu)wI.,Bݛ#} y7_OV_OkER1Ky5XuR|Sr+'_aIRzh -rR9IkBNOR㰖_#}w|q^]p}5FY6Cvyg~G@*>ct鸟?QnGQR:p!ܤuwJ:L+t)0~ga?ټ}6OrWIx %~MA{Yh'q"ܥzr^&/B_G6Rzm9J}x(Z-[&֛VIfd(寯jh~_.z0hM~~ӵE,ӮSf̈́'שYp.?1ߡS(ѣyǟgmx-y ( Ǧ?R}~ {2,_^}v߁}Vu>zͲ?/0_w)g'I:V#nj z0Q8? ꟠[?2ji㸻sp+Ž8- c(Tq( www׶=_4f7dwsg2;sφJxsԜ3v =E~xWڏJ+'} {,!@tG?YUS%ͣ\OLS9Ӛg&\Yl@]YxwާʌJޓRb<#QOj9Ļϵ߂ /S_=cQ "56P{&HYkN]_.29eIy WTA*kg:8օEӯӟ9GSRh~=IMaӯ?=|5:"~qFzf6ާ|G~0~)zZBO~Ekɢ_*ys?U|j~݊ڇcD-~~}>n~?ND:DaѯO]vryƈ~ۛ{ .??.gE^QOD(#ui[Q%Я~{:u*ѯ;=F=DB^!mzUoZޒy9}(uδ_|F~=_ZS_-u$ѯ{F_# #zYD&oaW⹲_]TyŘEzח~}d/]ћ[ W*uh>xPѯ=;S#+%5sh*c~R?zd^E_ۿs~ QsF ߎz)upa׹/rU~}o?~<^ڸs\g:!跗կwĈ~yP^%8UWDF#uV_-#uew䚢_~'u_>~|$u ^7$[>jxז%4QêuW5^,x]u 4vvtBʵ2/ RQa?-{2O O^7 .Eu )?bA c;X𺠼/-t<1I<s/ޭ=t#xju78U{|wκ3q^W9(qT4<ח. ^Ƃo 7? ^G9kxGZ4QxCtc}!#/_\IC+a7?UD]C .rOu`W{ْz+x.x..x]!I~4/O/Q{b4}tY/xߢ~Jzvoa5N!]ˎ ^,"xK J:x&xv]vɬGaOgޢjt|5*l2ߤgV|}:tzUo^f_4y\\EM^#u%ߴGj:5-qu$95%S@ſF/Ttڭꦸ[3|e>*\kK5FWE?(ʽ=xE ?xSZ}dͿQ3Ok(N3:咲EwT֕:X1ŦCFy'E x})kk[T s<|鯚=8B*jX",XYwu5ek=H/dzI Otv!j%fg׍9=q PK+Ժk 9!udވl2H#OdUk]<|f#p?-iL\]:/ot6XsDcT."k/LZ_ʩ~_˽}lD:h+8zkA۝yK&MkW+{H9ޝv3YWIc'Ϋ?V+XV<[wj{Ԕ]xqEM5>V50YYo\5e)oSAiwz;KjXM. VY~](k4:*M_Lӯ$뿚~}x7M:j9Rz-;y&E}%?_?,$Mѯn~$ o1_;‡ ߫ebSk#~}L~=m>_㏢_؇}D$[ѯЯrgZGE]հoE?}7bѧwW=zKV)ˉ=L>+יȅ\yƼ IѯGrD.7A;wѯ?~uZY9r Rߧ @f?q$GyqDE)ڽD u7:M ѯgve1yb~e׆ !vV1=L-ܕc ]qy䫸) 6.ZN2eYɒx5}}”Ϟ73(&._0C{z)y"pA&CR=Df T#& \B:xo>;)ɠ/?Hփzy_5sTL3|-^rFNʰhka). :x e֍m~(C_J}WtdPyK[s',0A =s|4G2>p\~EԷRo~=rIcjQǔ0(Î Ko(Sj_'ط{ +퇘Ԅi}0Q4Ku,0V-_tlyw"~zO HxOT.+/Ju[g! GxIjjյ&{Xȡ&0 ڻ)T= ϒJ19xcV'Ue[qՓWs8)=맨zTJ>%ҏ;QEI՟=Io<+t1"s8@J>o4/|O5k֙|wǕ;?lgV=?<_$RPk gp]{l#y2 |ĝe/?Y1`:tmB y-NC{lq= |VOƝVxy"4W/\?Q;  S ǖO՗'/t0|zpyKϤ =5<\8B{ ))|O[O?={J fyZixh;/勖o6>!^US- d*VEo+Whx=o1 D֋̋{קëz1῞#xݢ}(x3~>=#ELo)x ^{+<\eCi ^7})xW~J5R|G ,ZuoZe'^k#^+':?k9M|Box/6`7.M:-<>:(xh3 & ^"/c͞J}~JQ)#OU^ϓB>@ ~!x];Me^G*2guT M烅/@O|MJm>>'&f ^G ^$x}0MŚqv׭3V\'߯vbRTf1wx!< 0 C/h cTZ^jäd;K>SnƫI5Rˏg5̆]ڿҮuf5R[ S3lxr)˨mxE7,0TSlx}:GyU^yhy4s=v~z()=d8coG <6W6.3ο=نsJhZ Xp=[:i=lvl<Hm6rGmxы<9t^(/,Q34^ ~gQN6BRlx=gpO|g~&l] +uTlF2oU ,Slx/Vlxyo]ӯ0> +R|[U'/a5q'wGd~o3Fpq|,;?W^s17Os"ȏG:X"W_JUn9S/ó9 M2^|5q_#`Sq\o9x)sa5ZoHȱ\+Ygܭܷ1l*B lx݈+<4>5ۆׁ;e668/xOk0׭~jW~b; yLL{' U^'wG$H^x%iz> \_Q4ˆْ7^ς/Eh?4Cˎ=R6zsK-?*Yεf²6z}ZۖZ>wku|]Y19gG/h\bNX/2_߹6H{Sדbӯ hdӯ}!כjx27e>b4!-=o.vfrc;*Yt{byw[=ds4}2Mv[ȋTA!:=u ڟ'#|bYHs%_;x !1?jqñL;<;=$k/!#2yo܈$?+Y_|of~ՊaCja)^2w/ }pay}y;PO`M<Vb&/Ss<*C*` O-! _7Gښ<4]_%-Fo!CV=L~) zǥ/32U;C&b?7u' yC^kix~w^oސ7 ו{U8i^gK_o3}ڰx\Mjx=b"1~ o~#F%:+~&՗F{XkN'xDDdS:y8^/ EE3`5y9u^D(򶆰j!o} c+Ǜׁ}yEBi?{ Nxw^21_4|7\G! xg+p;:y=-ܿ{/^qU8}:py wܲNȾV|ٷ}U WǗ\}i!gRv̓_^G쁒)Jm=\Ou5>LZpK^?;xhz Nws}_?S/6R_'G;ߑi7vh8}c3r' 95{Ho5vR[?z<"u7vNpѬɼG>jx=K]R)Cج';4MY:=~^-fiKёg x 07>Fhakq~Ԓϥ] yA#& GWʧĹHykRW yj*uF+☯F̏֍v|}?Z"5b|о=R $vӗrϱ~ Kpf.,:-3Z1wixCb4|*g?\w$י8 PYS|7FGh^whUͪ4{o ^?TT,J{<[k^~KӼ?5{!UQÉͶx1e~cc7>YՐy9XG7|mqA*F_lߏZž'Db_!7(#O3ŢO?n\H Edocq6{9og>o_o4eD{e{7v/,rv~Њ߸4B+o,~ g,^d>;o7E~i#om^ؗd|na;=Kew~c17~?~cq>7v?~cƲp7 b߷ ~\v-NEh~#cf}O ~(g_bqOf'`>qxJy\;ϣݐG&rAO~Wٗ':d<6^x{)Y湟+&r-E&8間2:}Xqه4%~cXp]2Kdve~.CXkT àmN4w0 듢qჯUڅg[9w}|Yu\?;餋*&)k[s%މ~J{t,Y5!le}rN ܙ?rt[PJ`q.O{맲mKzKhC9ԝCTWӹszRh1`P.G2Ys>(Ytw-7v-{g5u)853-y1NkRk91=V+Qrcu_ԩi/W /d YIdj|=)='>IM8`ʽ= NqS,#b*5x+$o&4}5MQŭf(zoX5O25K['M96Qyݻdl>ߔcZ=5/R: 5(SIeyvcjfxeΩa^Οwb^Kqiw_we8 [Re_>1rn2J|߮[*q=OS%k #O{N"7(,s}v{+`V{>]i4v=yF8D9*3e7مq,np‰s;tQ#mdroq3o2(q}ol)|Y$uԊX+R&sۆѽ8\pH7q}Pzu+kWQ/3cSy8S|?~9\b 5fqO*gcը;Vu]Jܫ~oڳ#IYXϗ4uMFכ ;i_o~0~뤗~}ܤ2hy%*iпo4Y"Ď`iDc*~c Nbފد;~Fb9n{ke_/}]o7uKG-_]د:#zcQecp~xΜ@Jiԗ`دa>c,Rb.>}7ZbVt&=+5}Ku~]##_fד7ƻby5v b.U534c>szҮ@uCuz;nC}_ ^&JC wd븖:bq&/^_lo[sZ |[l?D݇i*&p<`:3=\g>"02KԖo xz!f,~},fﵰ?-2' ^¿ByuuMi\ {cVfmo8O|cupuq42w ^/ՂFHqƫ:=3}^aWs൛uEodu Uss53p&1>=^J߿źa8C:\XXE؁HY{\cĽ/:=C_~.3D쫎KQIڂzny FO7ia1i!L\kIy9ξ)qĸ?{<7ba/p=x.,"q zB%5Bz vد6|f 3"*3T qo]Cٿ,=xǷ ^C e1xY<z; -^j_]c_;/5-^UzuU6Zk25Ǽe l9o~}/;U#\u'Kk~_gubS]j/CM!_YN,!دإݞ wO׆/k[L_c?3~}@ڭe>H?<_#~~3awK.2_7nFt_;ߢ'7{̹؇&cacjϭ~a[}+FU=~87u<&^!m_WD|epd؟2aGJ}jAzh{=ubԿ؉2~r<#?+9g~>yRSx&vEe~77rb+3n◱~fka^AvxM__bIL8b!,د~zد]6`~s~¹oȔ'/㵝x7+{j~&~=y׻_by׿JO$2U~u,Xϛ4nj8{n^,Ն.xk/+=:GZ|c{knkxݾ|-y,3nSTu?Wx'>j~{%x]yod߳s >Iś?5qsfӼ:%x]7 ~;^ymvY_2x!B+_SaX+ ^{ ^uS),x}HboYx^p48D殝Rey^W6 ^F^w S8X,M7=:O8aoRAz#8mբ7&lxAc 8%wٹ㾚 [kKǑuxyL'ԯ7XrR %xˍ)c-C=0OzX7:M ^>m+7_~8 ^GX^]Ci(_+'Rz>x\USg̣~i2Motw^^DvOCx!>YaT./Go-I$>>_t5~n87{_giB=$ 4_̄}!!AXw2/[ǎx__ĩX18˰F_~=$Ct>|_# }We+kcu߉ZTfŮ$-7=侱 I/ }:?JX>qJ7"YY .3Cc):4tcYKþiNka_&q&c̷ulE?4{x!qbS!'D<e&!C\26O=-s5 ?T}k< h9Zu^w9^zs~ [bdǼd*x;U+3_YJY(xf!x}F}ĿK7x##A_ ^y)|Osk?oDOfǴu1ya.jCk;|Ȭ󝡽3x~b` ^O𾙟bkǯ4~<b~o׫S0. ^waz;eX쫅4a5R1x _>+JA=kA7c~{"X41i=O0Z]L0ރhkF9>zߚg92c.i Wٟ >nL?뉺w2 q^{2sf},x=\0׺#x ?Rޭz,9?WN\8Lدhx]8k֕Nk/x}x'{7|k?eߘ x=3ex ]7μFS oU_І󎹨u͗xN4A^t_uг8PY߆6/.'|-z<6Xy&!xt qAsC@K_nk8s=K#ENPSW/Yz5qgAY~~$8ǗK tydZ/+A;uU#W9wY)Y~ż{NwЯ/T ^;M|#qło7OoX*Y3|'Xu >!|-ЯW_#=䳽~M䝊^ǰ2Y񯰈_S_=GP o3FX܃%R;A87S U !҈>m%Cg0?1!ѯS^OzU@RxxSփ+x^ff>OB@~] x=j'Ɇ!Sd^Qsrl6nl! u{fM.Qq׫:А = 25b^yc|-t{g!x~]PO2e!$vmȺc'zP.x}t`=~5^3odMCY CZGNH!;_z<?X$/ׯ_3=u'LACfןЯMģ^B&NVO2td!_*zu|A1䍉 ^y$+`GYM7Y#5v[7#]v۩e-gu -_u#v+&/ݟ&&p!vcuQ4yģ#YAMЃz_Xmuzx ; ^6 ^]?_zFGk>kLi29Z\4-^竴xl5veFW|Hr-^-^ -^Zf$nuc ^%2$^o]ϓx!/Ge~x_N6_˴>HGCe-~OO"$^&!*~e ߲Ter"^fq2-2_},/Ɂ //Sr:ϓq>/Sxttx-$^|?u?xcmOux>/To&2_ILM_KK5$^k 1@e'If霖8+/6y /xE8[7Ty/JHwP鈗ݗae2ʉb~d=&p &.9ޒsV:ǭe}=LCkpx Ri[eW&^l\@<;2u x⪒J\q|{?yΛQe+xD9Re:xmҮ_UeRՒx8_Xe[$^Ug+}jNu@}Ѣ3Mheծ êrF|p0$egU:6}r 9${2^gv;.(wB΂c%1Oā&=Js K99~r^>pcW{0Mަ}dFEY{OH^O$pj F_Me릭 q]y~e}1&vJ}y^Ǹۏ˸\O.ݔцej)6Qmx}0N j {7Q676Z|cc~T^|𺊎yH^` e=9k[s4^ά`ӯzneӯ'~qQӯ/_fӯ]Qӯ'Υ\#]EϪn<(ccERa'=;^/ EN3Ikݢ_o~]l$f|6'ѯG_+! 诈3>q_~o~+]_utѯ ģO|ˍ~< CqeDNywz5E~zDKWOZ1ѯ"Ң_pe]70CҊdqޢ_o~H6Ο~={'RӯgѯWqģ; zFD?{5A^2ǧ#oO"DJL A_x~$ћڥHnE}cHG9^MO7nOyrz/''v\=|*BnqW;Nu Wf8{B!ѯ6 .^"cB.'2~e#O\>wZ?YG z|Ȅ~]xOGo.u$%/0ѯ :W~׷?GX^?k+Σ5{HES56vl SUQzlx=u6^hyMTix؈V%k˙CKgYwIku+MxY: E!ݭ N#惘d.u?G': ^ Q$,=vH$^agvE4g>H_1^"CZJ??uH2kxO 7`=d!?ek H Cӯ+x}Q:ue ^W@:q{ 式8z=Xn93v/%F/%uaൟEC*yst 4.}C-OtGa|ÒpqA=KZHy"8\nOUm]/տ8_n0^ÐW&鼬:O>A)!2`)yNEYE~N=zHLO(p'{YbW*.x"x}runY_W5!)!xHpM^C!g]Cfi[$=d6mW!N!'o- 5{疿俸߆}!,\3R)+%GfiC={4()J^r ) -%99]bJC{H\'$}{ȄC&vD$~S_Qiv~QC{Ȭnb)fYbC;hH! I?U=dUCRyj:SOg; beтek+b (cm?C=NCz09(C=$RK[Ğ>Gb:G= Dvȝ\{<$N[!CZ.ER?)g?({ϟ$v'nRAd\K0?,yJ}H@rH#O=bPCNߚMYߋDV{ȤppC/O4{ȱ2c=dy?];IG.#SY!wǟ N)*%rC-{bS {?bI5E!Z=$sCCy#j!*kשi|`^km -^]/-؆4ٓFi!;h!Q&k!_&u%7!dCLpLCR."_tC;|q6bx$|m;5q~f\/|)[g7(4j"ٯŲoJ@_? ̹7.?%SߊܯC ^o !_Ί?G$zތ xu6_=~_rv=X l:R? K`w=]"u__8|9`?=&(]z̻\/?_'7s|-_dy2eJܿ¿|&BѲO֎u#ݘIğ<|_/S_NMKg &OUʺ47҇z^ _&ڞEI-x}xbc8,T' e {WMx*5&.b?zVC~p[{ \QˏE?%8W?$$,?;8 ?#_!ϰ狼?rEC'?D9}"!:[Ax&M7ȏai<.Xu^' l kIߑ|OZ H8|QQkim`d#?\W/ !s9oH<"? {>u>w^CZ Dx,t\ Hi !U''y4>//~\3 dN|f֣u%ȗCCj%_A/C>2SC*D_AOxe+׍N2^r2^ïvX|-3X_%/26I;ޚYykKJĮd)ŏZ_<&xl~Z4ЯyKyѯ1 NѯSoW翞~Q緳'.܂=D?^=uzu#{܌_ ;_ojpꛈ~KZX$iC)9v sѯ˕C&8K_|C9EЯCѯV'' #<%yC &~&$%qh1ģ$^_دdG=ĝr,R֎|:q&_ ~q̦7oQz1|_Q x/[[~5fg}7xAz;h^D?'oǷkx}k3&4J 'Q u5qλ55񍍰_ߔ{Ȭ876g}} .d!x׾d|+DUUNozG_ ^wD_RfSFnZw B7}]oY^~5&e@;_+zلހ̾ }Y=7!9?P\5vp:#uBoџ!NAg~=:gQM>> 7Y(|O^2i 6SVi. W(c~gr}VzQm߆l΂3۽gSy#&0m(xgs'N9!#y,_E=ѯ ^?þc-Z׻ ^Gױ[ N2T$nͭv;,y95[O}$\OBg?/[(~<VYy0ngX60YU/_g:y aQcxmwcX:#_W ^yt"ݞuDsr ^x.x+|OYЯ=/L~[E ^/ ^O}xJbX?c?^G4=n|6rfZ}?[&~q4 ~:n!uo?S!|tXtCϗz/ll%xHϧ Fw<}Lg|? xv\.x{g"; {TiCn_wYuѯ}o=ĕk;~AoRt.^_/k{H$ek^w~a%}gb`ƬWayCYC//w._⇾I+VYϜeC^7 wfq-KkżѯǨc{Xmֳ  ({NH88x|OYNE>0W=Od35׫i6[a]]5eu9Eo9ݧ ?>hOo~wrC|؄R;GNaqh æоϖ-r0gnvj`xm%Cچ߿F^|죚/G^e>RNg^ ʙP1Ϭ fu0ZL 2E7#u1Wի^*mTs3/]*0C:ҕ1jeTRNXdzrТ|OJ7|2++Yy%Uxif)*rtE;Ks.?n_ʭ^8Mʙ MBL˔#گkk)e;I Oqba:rT<=-QYivVwcVsF(ֱU1)$ \c=ġՂ~}5~6Э*[e=2ŲҤ"SѼfGmfzvŽ(5YJOW8 vx[:}v۫Kx~*7}b\]F \'Kq*gJqcGfj8ɠIj3uV uD͵՛O_)e! U%y]a&zy8g+Kisy];EOE-LJ ݑ2%Ż&寬'9u\9jhV,~_kRm>~ڨ7{:Rsh.w8vװ~K%xrƫN)7bv+/5Ɔٰװ"ŭ_ ~0p!"}Z94jD[h]Kgr :xfx;^]Ԟv,톯::PSL0އ){9r^],ުʡ-ϊjoQ)6_W4ؗ_Ra{/v2y޻ܯRk%SuڍP-nâmjC#U-*,nH􍟉l=agnĒRoؗꪵPV xG\Qqj-\_ܿe~'5r2^TTTU.XZf:!2C1Y~Zy:^YG!{nl}=ησKD7Z9Bg֔A=*9/~>be)4}zpxTR=1a9\xwY jJ[Lλ U٥[LPߓ\5-F tPUX98o8 NxEFWa<2lʥ*~,ZThiIn)见\43ULNV^YMYq͛ÕM> ^A9-^fUɾ]m2F[̣iee|9 h9_[//3$xFp~duyO (ٗ27ƿ? v˓oNsGS8Sk6Ů 02Rsȷ /SGk:UX'ox.%VyNPǹi8K ZfgJ|eIc3e‘D7io4]ȷ;\$_;D󏈗Fa<Ζx)2%^vN/S|2Nۊ Ko~t+됏H=^zy-ZRPJ~۝CQevo yt MK1vȗ|zQx-RXfݿ\O|v y4B4eƸLx>lKz[ܾ(q1ep^U=3ڇ>mwE}z8PưkJeSu ޻~өUE}MY~djiS/sM5.!Ud=߮W ::}|5qM8H^3~^G(Gr;9>B܆_4C^~wf͛6O>˰=UK1f/0\%TJ9=*wF4KT.wEbd=^;ēMsu;A},N̆+4)*|KM*JD/) ZC(OD\O\w9%^ K>;~| 6j ]2ne֨RYWү' 뎑"3K4n1p%r5y>K}e雲*ޗ-wP4j){@T@~iD/Uw.P>m^lP7óN5ĉ\DZkNiYY} W3F/V[#>90ð )%?unTWm-枆_{' sTC2]ӢaGN44[jr/w[c:_%~W-^g[<#ASigu!,1xjޥ?2̝CԤ>X0.V H9k5RϹ$5ַPw(>=,5LD9n]ry p_nG\@mt?9;׉T:i?+fdEi}Ik?w.əg4YRIU]>!˥:pry軚v*E`Kμ2W~.d;睔{.xgydȓJ&&Թ1u/u_f˼X̼/QTtL[ؚX7үk[ԘS Jz_pW3.5/ ϫ6w`7E|2:Ǐ\zӹzyF ob>bh~k\iLԦW8tLr4]m"0;w!{D[RQzΣl0˕u`yg֏g(KzQn=,3hqOsm~@;6mOڒZ=k͟:8,JQ?_Iͱ6ԛ~6{y~ h#ߟW[6gʼ*y4sNƍ[$z]g竽3U͟os/˻͟ͱ?'_5szp_+mM zøE"#o/;oic59[ W"r͟f?mviL`[6Z?߉fƧ+x}xv͟/6o}*^_G"< __4#JgUe]>\/;Qttj#ǭ{1:9θ{eGPf{/czȾ\[G{xeh?'9򑬿s^ϫ'2#0ϝsn#۽F@Y7'^5~U|VֵY/P?qpPA?>{ݞ^t-?m|կk͟i8Wm ~%u&jɱ/T >"NޗݰEg0,*z\eaɴ9j )[~a fqa4k%LMl˘Nߕ!N- 8-rpSS6Mܬ|o9ռc'2|p!2(= .5Tu/wz rusP#SsuuX_#ՠ>?;qUni-LJQcoֽ!5~ۤvxMҾ.5I9|PGp_ei%#_y+j Ir׭c#kI~7#2YyR:jÎÑj!0|o~xf{nw5J?sJu}X!CԤNgko1^c>u'xL YE૿omjT=2V?5Pc\O7L?ejʥU[-=Uw;"gMwz 5g8rEr)eiySt6̷%wRj{eq~9r[KQ.I+Oi?Iܒw'Q pۘfr,J9Uw7|XIy$tJvoUΡ)nuȥGO|c}A6廵x]]祕~1?]X.z3QQ:o:SΔ7PQP.~yAx 9Z>}Ap:4jgUOfgcY d} #?< |Gu[b-8a2IjO:PvW?}J|XJ\|GojS,~G8+9Če]RG1|t朚NJ۫s9u?{RHZg)Skۛ[UnjWq>6*V /uu .E]T{yB ONaw_شP+ϐ=_}U߻:S ~fO67!7wGliRc$rT5 ~j}͏ƙ0rطHk뼪upO!/M' KU,O:[ާC9oBr|r|bmտø)suq*pTg?jh\/LZ"Gf9!7Czk[:Ï?5YI5FٺW^y$pPCG-8[sDJ5L]h_D{ҒCi|0(+lT<ՠ }~\A9H9)EevPu8/4յҋ?ȼ]sfT=org)~e:78+jٲI:f: h\y̼^:K?Ԑ=|ߕakqIb<㯑G#gs/]VYpI9P^Ff]Sz!Gr=o'IM=`5YG !yи<:m5S,ՠT{4UnvQ3W޿jTFS-m*Z=F8?z/ա}7sFYgGu՞U5~ؤQ)jU|^fa^ݯff}M-c |)\.!emQ](:h4qo^,᪜J5~-xXydazw;)B|-jLGvJrޣ1Ofq TT^zR_W/ 4/Af*SydH){jk?ikQE[Jkǯ6muajnfץmUד1>J75\'0sD>< $RA4׎_vRu}/!w6uΜGG> w9Sqxׯ9V{suQ^'7Ƿ~7 81NjxatKjdqcG|YYnB2]|O51K6WR.A^p4޻\յA3SV}Ĩ*/(/f=/\yj_o]Xţ1A{*s`5$NZĹ;1[:aY  p!})G_*,ϋr}o~xqģ ?1/N'^4 oe^UˆEVT7㒿58׫zb HAiǼkx/ y"Lk;? =A|÷_1/;) o6 ^)$ |OD+9>_7]z=V!sgϏ~@ox# |O3i? ?_{/^^:\@[CRi8^!%?VAwgmSoK|U ފTBx] .x-e&Oq.O>,_9s_Ip(aԗuq=}e]>]:4=՞X?|2 ]0<`i4 Pq&Zׇ0~sN,G~:.@ސEuez$xm H.Cp}#!s??{}d˿f}hKW ^ig&i'kk! ޵`=<=?ye]Sao{"73{yhjg'}62'f~oNb~WCTSVJk-|;OQ~ <:/?eI3 `X#R烚lu}Y6\Bz}[:JgN:%fx:Ht8x_{1x[uFyۃy..+x6*D>^ ^+@&sjx8Ɇױ 4ֻO5n1N5j2?gFhxܤᵱCk=dn!_Ax  `>fK+ug|&"|` ޼.S-k :恸&3c&}?Fc/x}:u=ZMEo =^:?g(x=X:<5L}/S{<*Iv_xu^`MH EϧbD/V߱xoͺ1x]vۢ__^R^~~=^k@Ba<uKzx}~~SG_˂?ѯ'7&_߷ݬa@#= C{4rߟbrX\u<R5qY憨^;aoav}vWoX_ϦUN'YU_a^kMիrq+?A{ǎ<ɶ4"oP}jtTu)u\,yXArM9}b$gPE.{uUe\*^?sswD?9|_WWlF/Աhh5}*[cϕPEdjҍ[m ^.S {Sc)m断iҧ~C gkr,=XE\Vljh deGZ aHӢTe'•W}T~Jr#nvzե|ӧi>rq˲7ʽPWT@e{; EĈLq4_)?n2{ps9B;k>6RW;/},_yNa~z^_u-T5MU2p<uguJ*"-zE8f6xrs<@Lvi7 .Yq2x!f+κ&?lVʁ>Ńk'QSV"(n=|ujPͧF nwM|_o{fVŽQނ !_/'D_Ѭמדn,o,={!|ы,ɏICyut??G?֌C}~~Mk6&c/F㍬tTg ~]l/}z+ɏA/D4wLD4$947/ѯ_ :=Y!Яɫk@C1 `[` BV]%`3|a__&z#A{د#دQ6`pDد|gx^|T9EI^SǪפQfeDހ~=BY`70yɳaa.8 !uP!'OE=u(SàmN|w3 듢qTڅg:>Ө'vOU$V1IYsRz'1tOM隵YjBbGW23߿rt[P`q.ײrgi~کܦ.PmN*uXt.ogY)ǕgNW(#i?S9~ olY5uIvsNH=`$yx?VPy5寪!xV9,jԴݗU o'x5ٞ3 Lq5Q#帩cRms/ݻdl~cjZ=5oR4ТLU tԬ,e5,.xK!ȶ߽XG|"hQ9NX@ʹOPT|r> Iζv*>h ߽̹_)x9R6@9 aJ޷܇\+2.}YW'-,篦<ISb|vrTp<탐:)(v?Dpxc˛oV?*0>X\<3&~-J_in>]M)mhE{pIg(7q}P~zuWQU1=Vyԭ~NO֧F>2P9{Zzy|Uѥdɷ5V=>ЉpsJ\Ȥ9 Uw+=.!_Q(-SuXPٸt?T-ݑԭO={swd7ΰIo=y=֝"z7e\g{o{YW?lE>PͺA-O߷epπ T)5|沊Y8n*s=Kq?wԸS1kGV.-HO ?* z= UckKޑQ>U`F*xKϐvoc鷦kwiW\??(k{*?Ӯ|?dޠ߻OT.I\yxtjioZm7E7~~j7L = jbBx<\KsT,2v|G j{u2r^ioi+\~g9d5ri'5&jٓINؕ۔Pxq:?X\bre37~{<@JR fܬYo9Ր^ s2+t&%.o8H{([||jKjsdڥmOUK܋I9`< ҩyh7F;wܽd-ZdǞ&L)JB%. 㙐o7V4r:oφ,Dp{pTpaSc5]׎~V Ӿ1$q-$񘓼R~u<9i}]M Y ^!8Z+q;4Pjun-:]-e!jיB7o_KReӍ:R:;}kƱy^j5ʏf?׉=$x`=$~lŏ:h)JhgiihK6{܂ y%<8F}}y=%O!-D3=$Y{?>AHm&w*%!y+oX"j'7#li~#e|v{=Qc|`={H.;bYG/4{Ⱦ2yMB? OTz 7e4%?z|%wbYc"={y-ح,?dܙr{bf;Xi߿uߗgEX{o/f woL\Hf3o¬ExjJ=d3zjF`ߔ#?@D_>~}a}@Vݿ(`o>\~cq2cE|z{=!CYC ZA2^k^xn'z9Kz!CaY=d^*s!K"*h>`izmuܳ/6towSCH ulx]xZNe66ixyו~zr,Է ^'~unG[{.6Z:!V%~v?H wnɹ@9OχlzNY@%.M!x]aٕuDT ͖} S:99@}OkGJD#/q;K=?@?$ v;5}?$ ^a:2 Xy'=#esg|B w|`𣛣;sej,z!x]@e1e_良.u?o9'T_p;t-v'o'~븩'ECdC K1.7lj2ӄߺ yxL B y>tuzx~}}ʍ}QֿO֞06q2>)^>ٟ|&qg1x? ^;^3jxw ^_񷾯i/5GMGf_҄ =cUF Wq4@NWFV '#OG7Gox+nů6 iK]z~cf,k]oz"x>cM+mo;f\Oïtz[ #dgn!nw*@We`-x:s3z(GovkD7^pꫮg_oy]sܱf3`Rn] .?o^ǯ3x`̾e0߻ ߆~Oԃ7oin5ЯoOn3.|oi{d^7;czo>wzuނ/u xo<~_8 ^hcoˤK=w#416V!o?Jӯ:xj g+#m8fy^E_?WId.G uC^k!>Ff_z˰?&yBW؟pS&U|[UVǮqa:3UPt>eWIr+gIڍ1Nx}%ic\=%<>!iMy,+pbHnjbkkgՏ>d^RVgX~8ua˾x"qS$<8+ɼUjڛS渫k&#nV}7oKwFu<Ðzͷ%nn<ĸ=S]6Ϲ|Ye[V_nsޱxE>Sn>unNަR8ulK}-] w {MW]Pu`S##U͛D;롺WXTʋ\Bbž^R^RCu3x }GN9kY}>GcۃqB~mԯA|ƻm-G+j&Sy~:'QAnte|;ݧ#G |.K+5}/g~@dcv+üS?!g9 .iI?Ȼ5|.pB'k?!\y>sd.ضYꯓ.4V+jSōv̙MZ>w蚞ok헃ڤ﻽6sV=>+G) }J*,;r5g ClU_~)+VFtLuPCh J9|a1W[~dlC|8P{U>jXgBZKwsZlՄ~\_H_YQ!]9nSA[~Z ;nҹ;jX#>>ڥ6Y:|fK<%y>:ԣ@5,u];Y1>VmG'rSGȹ֗JՊ%/N|VQ>oF,F̉or_C͞ qTw]&?귢jՌ>-S%oUO>Ҿ j,Fe'(qssnrr]W!_lܶJ#ϱX͹}i}`:Y5Jg'Wr.h]2eU\ٮ j,]Vk3OCz(qObGQ'Op>"| ǫa jVuX5m`u!V,p*4ZcToj>|02Ȑwzs6w:sHdGcV~fW.e?_dEYs{!w3j!_9~u|&cgY%3^jC㖆R.KFi/?[wy?]N_S;?7 i&3s ˭K>Pw:r Hu1xq(S ^^'DV=g)ykQ~-V.g%d(wuΔgzvR=.,erŽ&nF{v{B =vSr>0SG y5`uݞ a͂Fu?j[(xr d;UYfkK3-1ҝ+J%Uq_-VlDt:i| պӍQiv-Hv sd [.'3^ CV(c%rV&K eBz+ӬSa+T[ksc{d5vŕ~.~/7|ԫjBq~,!/8NC}SBSipM]]bA2N{jF "[^TX-GR{Տ 7\ϟt'Rդ{F/I4E&,¸za])J#槽r*ժx5*>=RNWz̝2m5e5onWN򛔩;͖r5ȍjJ.<).ҕ/nƲNZ9wpQ<_P( 0QnΟY]-.G>wggg0=5IWi_ w -WrW_z҇??0G>,_LahecHh^- 0Ph qzieS1|1c;s#s?pޭ^@+$π<9ҧ} ~S| N-{<̧dpIzvx7tWᾏH@|ڐ^0w;սBV.Cw6h4K۞q!ʠEvLu\|ZAæI_owgj>SzqúJ'+Z8\5zjxķiE{ue\SDCbлhw7\ddbzdsMφ&DuиѴDOp~+Xy^Fluŵ?4{~R5/cvgC|G3].Y w;>k}&~o^w@Mt+t`zK?gaoM/yҊ_Oϥ'L'pei(oԋ-C/|pOu%>_h rC6FۚF4yykn(JŤڋfmpzcOiCϪćV5(Ћme9[/ux-~vy.5ܧe0.t@&S~?bzØQo GqYy|gK:,Vb3㰳ᣥ/C8;='!=H>cp&I&|VHsm'_1_C|8PGNJ/;9vK \`Ņ,VO/l8V5\c >~m/`>}` Ϛ)Gv0᧡ۦY}:2F7h=P5 0|Vt 0Q&#sSq{ #4ߓ^[PzgFKF6=_#,lqGЎaRq nL ;1`ÜG~h#03͎0zN N9x|Õt\/'@;qn6ItSִØ߱->$>3~: kcIKߙwU1!??}+Ғ }Ju;{ce-[^k޿|N'QDQ'+wvXxWCh1M(O1Y~c-v VSB=veh\3Fަ _N7FW?v]Cޣ.5(7*V/ށd|zu[t&秃=igcF0NT6|g"~>Xd(w>sݺ3KY}G >?p)> we N/|GάOì{\i˥~eߣɷ e_юC7tM12=k=@.ʺpO;(]P֫>yc,10cz3 +]zg5;>\872-N}|f I/a쿾ޒ]D~?7c ? z3,׻a?v"K?w9s1ݯ쿆ۓke5웟A"E稦k79mV/סp wׅ@?z,rk%쟍ENg8r_Ǡ=A'auA] Mf⒰mWfuO`y a_š}Z~49^f}L;|佚q'f:_ y_o, ^׷oe}`OpRcszSнrC҅!ߓ~{$WY ţc+` |>kEn `rv*'H89a%3sў'װzF FA{農v}b&7„y;/>e,D{دɬ/?u |fxW%au{ y1ݡO^dq~a^<.sGez\5T>\t/' 5_'FT~ݼɌjTۿyXe~b>cy #g:b_`_vp98qv=cFؿ՘Ԕ3c؝>~ p؍-ؿ;:=ؿ~Vs 䋁sEAe== We__E$e_ހ> (9_= V{8W|c& c^kؿn .1ǃP.tyg]:;3]Av|ؿp[s>̇t5U??cϱ2U Pg`Gq~cw:ؿv 4_2?7`*ؿK~@{ؿVF10 %Og9Z@Ùo/rua0ѻ04H{0식 Mvo̺ur'~ؿӁ]cFuw4|.?=wDtl2woI:jm[9Ć73`Wú{{w:KGF n|~3F6e~^O_ iЦ48Oa}4CWq'&*CCYgJ,DO<^xz6~;w'|=<7@FL>yp'zz>/ЃlU8Hi=#g`Z m: = Ρc{n>is VUA/j?A,Tc׃I80`E~CϢ\55wϤN/MȿMJc'*[Uޡ*V PncazzAvVy6҃6v^dwmu-| RmqNaehzt&=c _h(oi[Sj:mq(o!}>>ΐnh '{O}t3~\POۀS8{#}'ie+¾!9o| :yyn8:Polf%o@q SNPo >lV?~MM]Su>5oIwG8_AOUi\ٴ罆#*\Mrhwy'AFoIosu%\\ΫG'ӛ-|? η=O-_a؁/:0pzeF_0WeeqaPM~hnL{U}ԅ 3_00Q+-H^j2z\z޿Kwj{;젝Jou˹=᪄bPJLQaF>D ^Լ;ȡ!:uO79#) 9+E;J|+of޲CvҾx0~٭]u/r򿠃kx&"O>&qt:7O …R?-yq =>[kEuhOzecҗJv`x[ѽZ Oۿ3!CG;@;3ǒ/f[޼LN;-ِo=Rw.+ln%NSv3z'ၕ@>{l2"}>÷4:4cko<_oWOķȯMއ?)i^jdJ#]:qȨ-=niUssM6F;'='=)D>1㏜Љ]'Cތ)wr] Sgc?2? w%@C!0nF2ϢUo=hwG g '?犡 ֣Wr /I((a2#Mc[-xzUg,M{/3E=vLTZ5j "K>@3vM_}pO<O`+=16b֧C=#acp^ֺ]_A&ؖb/ *ڣb;@E_-L=:T@%g:\kwsϴzvELtgbÅf<*F{3$tH|QÆ(h /ӜY) Tr\g@%47L|ɍ -鋔g5/y`?CI|E^]YJOo|Hm :G/l |0$vY vy!_H8Ø$~Wy:Sm s&+&}ʆ?l6E& Ч Bv?Nv,Sy_TTفt8xzޝ_w azNۧ-2wQvȆStO@O@A=3ԋbhQ Yguinmδ{h"yzFM>p_:,U$=WNG7G{jYqayJݛӴׄ_ם2^[l&@myķa C=, >{A7q5a#1i޵Nʧ*ﴧ*)z{Wm۞ o]_=co^;l@?6- Ys;ꛕn 8H7hesn2>αp5qf&~i&Xwg(ȹ!,L>ұ sG,+>M/ekMzfWVsse$=BrFGIf-ȭ }zB{gdSb;]FC'@Q38Ո9u;sΥ ft }y~g{t|G~3Vd.08}3mWg} B~\sϟ1%GlrxtoQ f/9):nÊGPX7XI+ =})}#Cpδ;\jޑnm>b-~e+CYнZS_lsZҝG[K&߷C0th4KEu۷(twAkm\6MdÄG.\Zgk~;K/=rPAt""fgwz2nV.^c}5G+l^kxALLp&'#ApzZuǷͤО KY uz̺Vt/JU1m:xinq#bXγ?iiw|CUhVçK ڦICۺoޥhjoP̽k1\C&|e Kw4ݾ]ȑU h} Mzg(7~*`3-^:Ӎޛ [omj֯Tv+QïtXz/f7Jny@0zo~346]6wFo>9Œ桒#9F^كt`MO&CҭUÇ46Ga=[7fӭ-W> rw0?8LSӐS3t2}*r$K?W>GA^[Ko$çt__~Cv`KEx{@+=:]6210ߺWoAyj;*_++ѽK8v^o͌ϛŠ}/^3J+)I_枀A) ( ܁gp&yD9g忦ޗs#֧2O3N0qf =c]i'ڣz0}LUC6?r{5GΫxܼ㬶yz6j|u+=~Dd{,|.}/{#cϑnU2C=sC>_cwʅ14pGyySw>m 7>ea;?d]+O/)LaTEKv/h2Dd~ ߖS^Tk;4}SL%b C>s o]`Ou=7`9o^ʑd<k B{~@n4o} WiFt^>0v CB8o Z&mp_Gޘ>I!/ \{w`HqMM_OE}`w" q!E!8O C!!Za׋K`֣axTxyg!OҗR+Má.a ?=CloC8N-8*F_>}՗nVG۲ñ=+HޤctXⓁVdžg>z6MsT J58CKi8߆fӡVO C ԧm 9twtb0bV:Vfkg<`Z&yo:3vbv}=H_&LqڳG~ɐ?[?`˷bқ%3m ?3P82qUC&-/@Ka3߉*:bvz=#ƔkI|gv(C䦇_0o]&4:t `x=ۑwE^{Fϲ4%=rc!gotm7nvr̫tݧWvėzC J@;{-zU*Q/ѽʝkLϪvgВ 螪W -jk`o 2E?:hp%.btfOWj};:^ 9U;CyØQtE!kPo#!~ P st7AWd '&UH<=@xEnOa .נ.PD =4F;]o֭=\]ޭ5鍫'D0ΌcW ?@Hou97<½[!]U'2vv< s/2oz2\`Oo{8#_5ac 3^ 8 ü 0v?s_ewh^:('?}<̫WdJo_oV@a߫uWړ0^u3p_A쿎17"@)'a/hj ̯kNp GyWTU4ؿS[5L;rGw0ĞS`?}O較A|}F`u,̣}L8{#4e~p? `~}/̯j/3t. P_aPo 辤ƚ po7G 8q.Tsqp_3v3u~ӥN{߆̷AnI(oÀao?L>k}Oq;>u(}B-<ݻS|?0g;r5#׊.AhQW}ƃCkZҁ.b6=Ah֓t@i@ӁjZug7OQvi0s%.0*V3V ]CZz!&_XӚaYW@~t>!_r?=|e%]v {СWxk /wH~Ybp|I:Hag;i?T+sgVNG8g ߣ' j\vKOoˮK/ ]衯u]_К}\M^@3L-Y2(TvMLoE YZ~ ?դ9W%w1YҼCҽ] xU^{e{={^2w H>:̾' Pk/T{gxT﹁s4/ 3eFUFA#llv-;ʹ{3zgwy}Eo߈y#1 ܅=bnÁC?o,]FG6jza>W F;.Bx݀}5tF.X&|sH_  6PB-P zc-".Qͧ>uj=WͧfcŽޘ6ƌϙ˙w"{C;c_3`ʳ&s"| N44ΌXuWS97~sq1ȫ[2~nju`> PWu~.$OD")OrKv2U*(%h|]kn~}-dVZAAdyYH2+Ȇ:A7rvy!g9Y~V,+Ŋbrb5bYZaά֬ k5ٚlrf9[Y,g +Æaʰaeذ2lX6 V]Ieʰeeز2lY,g[-َgrcر\XMX~v,?;/vZb;e)N+NN,K,K,",1_KWJ1_).bRWUb2W0_+ê0_+ê˰9!"Xcr\ 9&XKҬ4+, KҬ4+, KҬ4k,KҬ4k,KҬ4k,Kl4,Kl4,Kl4[,Kl4[,Kl4[,"0_;|0_=rGixHO|$m]CB|uO%D:?NYk(M |:K*Ԟ^i[ /9'ֽϙf ҃/Iߔ35:Vг39A^>as<{*-tXž{Bi:#U([1X ϙ?OךspP^H? zDZ2O.-|By~ői 2<_WY_Ger.$#1M+$KxK|K"VWM /+$/9ɕ#p_9z$ߔ.L:n)LB*ğgL(Q -SVË'%_H0!қ&Kg_WUrҪ6w!h?cv U/JFyH*_c h#'ſ_us.C[ >!M3\w> (%&5|8H4E9| s@G`;t;QYK\\QͳNyr(RXbA%-јuQ'l,On"0v Ax;3i%HdrT-ǭYC@Oe`̭Yoz'Ih*=[T4KJ7GU:B:''^H.xxD㻠x @a(Di"_p/*⋊"S|Qa _TK]DS}۵!o0/-5t vs5~Kf @gA<>cToO_7@s@7WO`@oWξ.o9Dq*T?/\39*ʖbʁt;-p+m_s JsҤ{!N]I2<3 τ p"B 01DJ@%2wєO9\*\:& ͔~AIfnI )ͧ@܆[=}SoMRasV9?]kO3T* %B*@+jW!I()Dx5"\"@QxOW˯V9Py͈pR P<*fɇkWY"\R_Z'ՒK7~Zf: 3W3`"~Ud<77\!G?dV.8.K oY"^Bē%ɗO=t{Ip&N _jœCB '.ep]|(PNy ?T@.Y>%Iy/Y=PDzćGH1OJK4_p+\P>"DZH5|D~cZeq_?\"9BN<t= Y~Po# 'ZN`|XoFOGB8hLCV~ %|K>7}epH\#/$2//0~y<^>| 녘g ֻZ, AI>:p|_!~$ϘG{R1AAG}LhsBL_O %_yGvz G֧(d9(Z&+0>C}i͏xr|p|KKj_'|z%q;xb| -4/%)(%B|I<$a(?(]Ix\ڃH=6ɇtBz)^"ŧt'Bv%et(L@/!~epGzC|C%Y.c"9?"ہ,?9B1B"dꋔC /H%O9(^hܓfDzc/4Ngzz.r|d8*җ, ' P8>ܐrlx-|(\a-NNPkx6]}hˉ|P-ނuo}"}-~*8E~dz2^@kJkH[5GUV3^I|#ήo~#92HZ5 )Po|mSO>Q,ŶC8'qxԏIR"lIYud;zB"4/G~oH<$Z5D:B_-#HoQ_B]<~ž%(OTZG|Mp>kR-~fGxhG!G ?9^?dG#y$.U#6|Q=[AԘ@y ?7CsG <N?9I}!|dG(&Oм|4j&7#n8':.!ң@ʇ|lkת'! %x~$-#-< ZZO#q+r=Gh}EҀHO7҃lf>eIDz3"Gj,GyLNq1a(A{z\Z;[~)/%DSdVY+5wvv s#: cY.|2+Z WhtJ屧&wq<`++/J35rCt >&8#q ˅s$DZgmtK8AdBM<5ENiʟӪz7~BxWMT9=qazD/IKIJ˫K?>B:yuIH']\%[W.䥴j7ʙ\.^)mOpӠqǵ+diTa!ZᙜEyE8a Dx2/I#y&D:Sk՜kќkIQN~,dX1OsdVmZujn}!Or+HoR"u΄4 \ExXmiStY&m"'6=UJ!ߑw$‹A%wXh~qwh~qswT>D|Z_}Ez V; KJ:ޘHG#냌'hWA$.Z hRM#w+ZNտt '[8鑿Ϙo̟^ڡIfא~cd8vP>Dv|)K%GBP"W|8'< T/D:-}DD~ >hC/tWlj?5&*Z'ZL'ZC֗hC3hC λ-ޘV;?`fz6\ڡOSETڑlz66eDDDEvvh%ޢ!ZGv0Tڡh#)jh`%ϡa%FWw s`#1VksDOg.^LtxF?epqpVtq5w2ybeKd9%6ZQP+A?<QY\a"#sqg2-T9(Z;-.tNrRkx,Fnr;u]9[EB8vvƣ[u9*$.!Lh<%K*h.nDH/mOTaN:Lz=2ƕ(1hS9YXLٰ +% Er'lD{DsTgQ2xl𩌧 .'CJWxk%3b³iSVKS$Lਤ_ q&T]娪#'7nE*RT"MLG-}~0B~Z|?Psmr7 RUVs+R.n2weꇝ(@S& K|lL(0)ӱ_~7;i!|aSS_)Ο,>кDjpO-=ZjTrHϏ-S:F}6kw/Rx%9M2&^5Tϴa)u[][":ұraʳ{.-iGB4qܸĩ/ c ]tknE-nr@uӢ\;w]~Ex̨A/ q:KÎt-`RzJ u;;zQzԌfDGq*XN>>Z ԧ`zU{5Ĝr9ݭf!F>wU7m9Nvh̹bAWΞ[u݂VNxiXT^84K ojt˯?Bo/:q[+-=$`_e)"/@:fEQip9Z|z̈`Q)2jq}<rj]1*V:v r;(=5ޥ U{KQ!gUL~jr/>25넎?. o|2Ub>{9ݱ,7}u NHC{,4ƎZkF?Cney>cw6~>#S 5$]t7Sjƥo҃i?[qȩPcԠΆHy}xܬgpD-N][fTQq^Y}f>tBr|Ԩ|'zDͮQoQ~Bg^uwMԈB5Vdf+P~3n_u ?|cZgOF1ݔB"TN6|Tu33c.Cy/"2v) *G|* YͤIT)UN?꬇!k wMyn>z]畗^$귂;2S[iLßS3m6-£tTF7EgT;@Bzq\Mi:l<פG&VX-gQ~.>$~"P/-'JUjGBv͜ݎ.Ԓ3)#T䦶=2\l _Q!YzO% m‰qPv ~:~Marq7ʕt_X^ۏ WO_w]F$%n hr7ԘuvFN=ٿn@t116po~?@nsʋ/|OrNdh.j;ze @JФƦ\ngo? UyQɸw~jHk !#-DB]B|d# KT8 [zPh?J;S<wP0 4OR|4͞9ݕNy.\}ֻijKG}d t>$8 ;Ǯ[C2 $'=#|6X!C^樄+:٢q b-)-a1|8H3FՆÏEs '^ Q>ܾqźґ/ԅ*!2KEu]dzEA-Ӄ$!2QL CP_S_K+VܯS)JI^3w5_yxu8_t *VrҿcҿS=?= ="uh1 S8y~:7Q0_"W'2x~>IX7Jd*w$Z܅mU"\رS:4]<%>5HήcG]!ݠd5biBXsu&A>5:BPANˡF Aa8/#] [2}f>@`FECP5䮐/C@erS0nQ~U\+p#?7/9^\FsdrJ^qer+8z#ܨU*r(k !z8Ui%D[qm)q;@ݢs] lO"d]hGNn# Sf쁒㍏wpdzSq8 \r#]fruW-%Dҏj57qyP\GiryT\̤a8M[@F.O^<,CnEK^HF>H-W.v#toqKCṷ3n]pT'[\9'q?4ܺ- ʇ;/'LOYy%mɃNrCSGm>%( 훨. %q r(}QYnZ Ip aA_ xCuhg!G!8.|Gu¹eDH|9q'8Q}^@n!NZTHWG9~Ty9\,N!NQ5.ppU7/mp =zn&( ~v7rs1QT^;B'n@T%QA~4P[J8@*?/UM wvP:S2M$sR:QHԧQ5뭵D.ށ6> 7Vi[ ={P=i l fOZ-y2XΦ=,ņ XRV>,DžY2Vg ^_ǀNm|Y.v #<) `+|RHgA{3>ljoʰaeذ2lX6 |aʰeeز2lY [V-+Ölre9۱X.v,;ώg嶴NKb ;ii؉YbiX%aEXbX%kJ1_)+ťbRWJRW0_+|eXu+|eXu!"Xcr,BK!XKciVXfYaiVXfYaiVXfYciX5fYciX5fYci6X f`i6X f`i6X fbiX-fbiX-fEavXkavǼy)RI.̩?|4MziLV_%J L5;㙔&BQp,2]֣VA:cZ]|)[aZL;j֝bBCT_Cx^:Ul(F_' HjT/|=HVލfloWcׁaۍauU"gl2?yyU`N/Z;SF :~_lE3'-ptsj{G[>iSFmLxm󲳿(7tkߧua l\8 ;^{Xp|νMW.רڲaLi뇫ZnqG݅VQW]֎5yty}m5lU Co[iB}>})=ڟڰRFdȱ޷Y7[+vw-6ZT_ >yٵzʑN 9ՍWZI9 C+W~aJe&޵ݝѨX%=W?Q*uz-t;rPm~W\/RۖMhQH6:_ePݧ>4k;WzwS/DW5č?;ĊϱaA?T^>5jɚC%,>ug€2 {_;}e.?Zbܑ>Ǿ<5Zi }76h^W'T:Qkؼ;՞aΟFj>Э^~UͺsŃ?+!6Tx|otz']m~b~RKۊN]T^AӼ {2mQUߧj!;߰{۔ʛM+=(rh@cG7j+^Fnbnz9㰛kwDGկ:~_NO_i׺eW)߶p֧)͵tgË~|ܯÖm~q7Zکlåv?7u]gw;\w ?DG)׮TnɼL2J~q/M:{v;3jLв =]^;ppl*9VlUj] ݧg[ҍ 7NU}_vq헚v >yH1Њ "(n۰=Mk!}'t I{5?{|ܧ{0_/z<+EO1ztQ?T-Ɩ6Apއ_-Zo;vp,?:jPsL̙܊n c*/ج5*}rhjT>/V_G2jX _?*Sumi:g;e`^0o-mֺ*RW:j_}뾺>ֳ']-^$rxWcϿs1 7.ůsWw~X&5uu *v~gl:˝ߙ.|_#o U;J;7>_۝zWc6˔zS7a}ԧFG*g7ן)Ej.Й ^6hh)Wâޟ6-z50 NWz JKԨkQiX}8;2֕ZM79SZE%L4~f7ӼOߩLU[wVi|]7Wo9Er[O5mY#/ŸtV?8Z]3=WA&S>VIӷYTh·_m]l~k-^03o_tPk*]ŧavQ'o@:W2wWyT OGo;*OnWeW%_4tͯMzw[C#!{l}'V20WQKm߹w ׺q[)9`C>xR7' ]98s5<լM5gށn~$5JGd|r"ה$:ӒtpG% R1"Ծ+23vǗJE}Q|_E}Q|_E}Q|_}Q6pDWrؗ]pq6&⽣s܂b,#\Y3%k\gg#9XgrfȲ[RTdʑe4.,Y\˅k^ۑL/˨HI$ӃxRvp˵h;sH5䎟ԻZq$S;vZSJd"y7RR䊩q2LH &v|*p$RNwc:ޤ8_َ#x0r1׿m 5ϙʅ?U[V>7:mѯ[Y,V^KNٖSgM"Sb ^478XRӮT?P!G,E+ߒR?t^? ?zDVBQ`x{걮m}pCzx R]԰9@z.@CTm*MA6gqd?.Yn'XM7` 9zk5qn/"ʷKUMr+]7mjr KQ3 {qvUZ協h1fZ/ryp&æ]_/{sxjdK{LEYDgdSzI Yhhx,5fl }f5 4僧_{ԩofMF Xxǃ{Q>ך5!~KL(0)ӱ_~7;iG4T-MnN+Vt\;R~0{$_sKh]i"5ytZrHNz>%oO 1*` yI7B4qܸĩ/iCWa"hE/qpg[_ț X~Q^vز?lO CjƯ߽qUD=q_F ҷƟ6#oQGwA_wx[>~}EXJH tdv͜-tѹGxkX.8֨ HE'nk܈  ,eC[:4].*}{e7Wɲ2͌ ,Q/U"&SpjR>OoUSj;Qٮ0>Nv<0˄C넎LԇUտo?j<_P Ϗ{KQ!gUL~jr/cZeΫD֌~ TxckqY44Gs>< fhЮ`h/wϝA Dwx+L¾pEYf@+}ފj@ki+́Zj -P;6=P 06cD! Ц -oVo o6o ovo (\N ;Axg;C|g] w n ;w{@|= '{A|/᎐{C|o } |} /Ax?C|! ̀B:'')(wΐ;C~g !H?@7 @@ w.@~] +w|B>W @s|n A>7!;s|`E||tɜ5'Ě'#̋5 c dT%eS0@ E oLДz B9>ȇP@U(7&iB8A3(wCQ%C;AN}(!Ԥ~HA<T9U2Tp2(ӚT!FPHIl NiA:_"$}T/o | x|<>y?0_O |$~^ y4 ~ 7 bH}}A@{#ޏӆ?".7gߠy7G>gB_:Z3z(ԏ{&*J[ P}uįǡ^>l:D>DM ?%=#\Ds E%]tcX ^?NF3S Q<)O)ħuO)U*RI '+SƏ_VG|YB ?IjI=h(: G\B|JQz)ZC N#!w=p E@Hއڝ}߇x+5Gޣh'H dufħGF~뛈iR܈iRuOOD4)h&Z ϪZ&DRFY`a~\(-OW9ڗ|R. oK%WH4~]|4Pʟ~~u?O6)^/Ka:~hw%r(D2sCo>YD~Q="n)hC'}C }?CʇGykHDzG"=ZEq}'C@<}_D_Ny?G +>w'=QzD%QaLh\u Pނwm~ʇBއQ?{oH^֗uMyl=uh aߣˠtuڛ}?ZA5H.D"h nDCG5ch] œWv.L3O{/c׫ ?x<CH/gx[ Mh/Toh ڴpЂ(/⃞ȏ[fQuGWk1$:#HY.:#D:ZÅ ?"\Eϥu ]>vCsT~]s"*r_H_E3=#fD>2]'_H2^A0ON #E )1i&E k}$] c!7zAlup4f!dњ^yNh#g8hOmh_ҡ}SEH?='}FH{ gh}}7G^/n}_DzG+sLP*'ݒߢ>[>T.ǰJMHO"1\rS8ȏa8_J ϥ:g ?W9ΆK||$W7[Hעq0HYr%M)5䇭LU76QnW:duxPɺ'=̷\iy?_ޞף yM$:ƴҬ߅gȨg=m3С~K37emUOG}{wbFjMպ&=7 & :'AV%b Xk,7<ϯ-% ?٘z[ZTwl}]2LKNM+BM]̈cԨCj=_čԮn/rM}HMuy6y϶EvP`VJ󪎬dCyFzӻPOƎrq=y~%uKjLklM<m<7f\9ԔcoĐŴr*xAå6h2?/vpLlebk6Wj̓RNʮ-xN}R~ʿĕ=qQCƙN0 5kя;Rks[WDM|eƩD/%Dƹ916:FKjՌ}w%tpv?5$VΞ8z0OA?>VJ5S4cPQ;;zgkl6|agLƼkL&{CB8AB1CmujB=6:;6~֬*շFܶԒśomRo G HERACPrߪQ|ǩ(-~'5]`):{|f.wǽwGiZeJcfJRj]K=O]Y0!)'w찣ͰLO;fK?b}@{4ȫ6ny5-k}30:.%Aj:F} /QKCWm˳W.-9gk2MtX!оm XJⷨS'cװRl$NԛԓKKȹ2: HIIe_c)[˓~b* GcY)Irm,e*Z2lߑ$wձlP$gz J[?[e ) ׻Z\D=Wc3IQ~u;<Ė[7jF{.%SOQ$u7ߙL(6; k{'P 08XK](TZhώ[t}|/Љ4;o+/Τf*^ElYIjسߩJKz~VyDPSm߆ziĞ٤zԟHR8ԍjP$=40\fǯT='mvvC;aϣ7Zo[uÆuJYg'߬{D#m3;$T}vyNv;le ǚ If^Q_ó"xKC&iNwZ?B~ ,Ҽ'E,61KkA;~ə淕&gX;%k=˒ǂ%+W"Jb+ )+CcRjbXi7ccTf1QX&Ymڶs9'9.kQlwc>xIb|hx급lҚDžMb\l,qذذذذrmAfV +H5D DJeG-;Bmy\XeǪ΂j`j`j`j`j`gb5c5r嶴NK^;e)N+NN, ubX%l[bX%lK`)&ҤXKbiR,MI4S˰`,ÂeX a2):EӖ׉r[:SD"r㧈ܚ׉ՑcX+l[aVr^ӚiĚY9֖N5+i5XcX m`, m`,ƎibR^'`u:blXlIyXlavXgR<{pZ:)N9 ;;myX3<9i52^'Vtx+3])JLW4K ?UXڷ( T*zۺo753b#u.C^ܾ:"om 뽬b>R+ۅBfQk:F=ͺm3u9әo8'OP*ߵP*F+~kgxSovl;}-:.,1eEQ,Ƽ;G|ـ?zz :F׋.fƖ^W}7uzw|crk/^qBiMP8C}㨻 j:N(]uzD|t%a_R/gQ?&&6\W٢3LuFd5 ϳUScUaܚ}S4VC-׏b.Zspw<>i%QF_ GP[Sm̾dLym_WM=_dڪ rwb+P3'Z@䯺(p_j{Qc/ݠ gn,Pϖ=4jfnSn [7>ΨTpn'؟Z7m}j~/O_j@M jOF-yi"ia׷VzfY( o C?_vccQ8KY1j|wo,bc?;OZf9yQ]OX?ޗ>Gj eɪ7|suB";jmw݌uaO΄\[uV=7tG;L}SJ;;8w)Bme錯v5dDnaiUfkd=s5YWg$gbtAl\DgCi!KAqk=}ɌݨUQdSa e"joO)}7ݬԬ&ՀusHRX멦i)F]pq Ow oE|˳k&*<|♿dC$uqҍ)|wwچ?[:*G|;<' pI?dַ w|Ȃ/9C7pY_+R]"5#R"5N, cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c c ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccVeH`wQbY=}]"%Ǎl"U ܈wuv6wtqcR+ʦ)W6ŕM)l2Nqeq+S\d&W68ŕM)l2Nqeq+S\d&W6?:<8UѤ  M_V&<B}oy퇨wΜ~D&b\I gW>~5݆Mvj$ ĽcaJ&&(+>|f6^E=y*$ ; SѽqfJ%vJDIE<Ƶ=?tmQ_YnV?GʺkV WnrbPz)Ѫ _NY Me~#/W'"{]Xo=Ŋ5\Pr^0(ff+ib>t5f륂-JrꯅM4qD)aB+~2y죛%ۛjNܽ鈱$Niξ: XPởܔq_#Nw5 z@U iMꆢݓtW"wQD9 ,PtͧH>t\o*Z%D[IyB ;WNzr/z[>h=~ |SR!(VA2\;~ew'*_)qv}0t&mnB׬-+w+W ;)K|͏Gң4isSG_RTFSj[P/ Ljjȸgͺ\?g*=Mݶ\Z{gVcaFˋfOrmwi~u#=oOhQ{g^OY?:rBԇk*0)* WZ0oQ^uǮ{|"גܓ'ۡL,tES:7]bYG}*qh^Wr=Hz&4,9{3[cso9 мmU' ye{Qd5Q=?ozۤwBłQQ;̦:_ܣq7SVUZ~zu_rV8fCy†>sC择o =J}rJ=̰s ];h~t@w!G6qzvG~)]5?+dğia٭KOQG&)MJ9tVg4Q+Ӭ~ˇ򂣨^%,P݇S{xc̭A.t04Xib4|`HsMK/p=y1S[ oHr?fwWzP\MVUH\?KG-b#7/3= Y;'vuu >僇r=. 7=h}{4֌^Jݡ5׏YhQ8}`<"wre\f}xJS?!kq/}@+= ik]Q{"mQ/vWAp|}X b@>F:ܜS~quMԹN=ba 7ya_}GDhͧ=XSG )&o?l^׾U' )ۺ6Ѓ w=\~CZmWLwO=zإldJ$Ju}:Q=$ۦ.䳟Gu{_'ԭbnU~e-rRE}%ɇz;R6("w:0zyt=§Gܿ}vzjN=q;81@cY>ǀ"3zr2̛J@rQE qzvPYr$WÎױ<&)Mop;}ێ7TQqے5r_Fkz%(~k~u)u+缉DQp #è&QVèU;L|0e e!qIP:5 C5m9]J8N|:BE0QBN]:M+H ߵa .(Fox2t飰q_Q"Uj>..Q7ulH0\BCKݻsq)yY3#okTQOS'*k_zcp{㫄o:1tDQ!2_i=}}XEDOF$ K1͋AY7wlkHh4ڗ{h}{ihu`skVy|VZjz$G%Jɓ]2S֪ښh4~~Gr5cuߍv'0MQR6\Yw[O:zG)rٝT*F ?Y(/>Zad2v'h;@CB+DG_Se]ԏh? ”VG)n?+FQO7CbPJTZG ͓FL'XOB(OR)WJJ'q|~C$^|dtGy%']G} Nx!"f;JQ\P;rǥ%Ԯ:8R䓮LG]c-A%uTv{Q}*on{xpb2#%3{K+0)Gιh_#iGμ{je{=WV|yS%JE'ww֍QG8zi?%F+S*;t8fIoyJM$gxT )a M+W yQݎ|q~ :r$?Eg\o3cGiþfjZɤ_C~KIM:YIiebV#rtDi6X;Wuf4ғ1Eҍ;pݕ,F-7ۏOY>.9l^{٘ZaTC:R*i%9^nj %_'(Rӟ"Jy×.6NvM_PtimJo_ռ~1sN{" &*W,O@i&PDEr RzW y~?*p>z1dko_IZO #o$پavs|~ zM_7 Ck(qpem%jݧ6v({<}=_&yD.NaͧN7=Ḯ-7Ubڈ-j.Z/ hя8>YZdx)ti~W>R?udȯ\}<ǧ*kPwO{MpEvkӨ_3[4w3ʓoM(bO.[o|OW~t3ex˲*0gUVwԌ+k._q+W~EL-;Rl}o s&TO_.fh,VW;|`)g ۣF]u~FBU5'(…I>wΦdt=@)bbt$i<;/]ixއܾIx[Q4I+NKwTWz]|Қ?݊= ޜ!㕝{~$_5zi?v/ez=eʿ;u_#dQ+2H^T&We$.SԭVNljgVumm~)_L̋~dZozFRR+=3J?մ-b Ǐ*Ĩ4k*j_9|5qrH[ˎPl>WeoEAreH!v_ Hx  ַ/sH\r(6֢֗ ]ym K,"^kRF N=5܏҅^ĞoGvA`]^W_2ʳB`=lNǶy'+ȤOk2>xb#܁ Y'H2vqgf ^ѡ翋ױyD'^o5kI2E3ݳ~LBp-Q-r~ȾG*^I!3jo/UjL߽w]T0?{#(_k;5E!;Mx?*_NL#S+^֥ocdה];L"@l:|wU\m\+"`i=$ Cvl V!=WNY{ZltO?v8-Ou4F8}uK_3+ YyKg=ut͸]+sޡ?mT{k85:=MT'x] )->s|?hJ_Ǥw=Dʠs7 Nq&CF!Yo=L[9}9U+ 4K:y uP|=Uvd KEeZx6*u7%RFآѽ[_ֶew|2LZe_еC>Vnz=D֤uZyx) 7eZk=޼fU=|_B|+'u!ː&dU9S@3d~-OzK9ߦfR~"pt5i?$_렀y| ѿj~RPPq=$s8Ntί!a9eW_ڿ@E֤9ղX6fPzcÚar~ٻ~̯(N1SzBFl&&x8Nyr9װPJf'ߨݥ]{uᵲ\h_9!nG8FᵐiM;L׮ݔ8![Ͻ_ڿ@3yΙMӄ193ҧY%8l`[:ޖ/+u4CrjWn~Mҏ;V;ttVo "=r8Αk<~1+[neJ;sflo7{*ʬ^q#:I_gMj_gLk]6qa?ɕ,ƱךTuZaFR4kjշ_'HS*ns^ewwREg\^[G\Cc->gyȩ`s7<tQߡZ~}a_ (]r}8G̯ux8Nƙi\fu9z:s?a).NZ 'xn!K^15i^_N}9`xIENTN3dOkJ"^kRFhOqu:ft=x9TTu9iXgA uܿ4i}6~]s8 "^g:CucƱIEN:z7ד$t]Fy,U “gQqpD?_2^ῢ \GExOr8&[ 3qd ^ˬ,z1xEZIܷ;I\p kgfh;Ə5Gi"ze:̡Y5F=KY9"]҆e,M x](]|2 g}jYZq ֍& kDt[hU:I}z1O՜_ga}<FqpQ^e×>NeVyB\wuQ7KwdyR!ӫ?O}%Z<.xD^kguV= ޜQ8]StGJ*?e;g ou8g^ h 擪a~  #SWHֶϗu2N$ʕEmdؓH:Pq zH&o$C9jOk΋U8NRYI-f@;!C3d=$ez&B>g\g=dj\:s:MK n%z^:m(_ʞj~#/Wr/zz"mm|^S/mO((hwY:*; n`CHq.M-ݾM^3}j!o63Ch}YE>nUOqm/\Fto$!9&GD8O}y(\>|:(O$' WLyx?v_lϖjcCOb r1/)YxQ߳\ϯd?$LY4U)ǬoKש;pH_gש_+L+S<.qJZԎ3o*&/}6Vt Y+*o;A0ϥFgLG?S@#s.pe{pz> ON^z&M^kGH)]c^5x͵ӓs8>C:khƏT ,&i^'d}B!=ǓyZUǑH/:o$xKSz%S,d+Gg~}Y8~>vO~?s=U̯PxV?f ^gwI)^4qm?I1fQ[[5i/.#hO)⣋fX9i~Yl~V{OBܞs4^tR3|cWF8mI)(M:khu, ^_O9Z*_j?_=šKzbQBg"+z*J7Z$Q(7^Dc&?[lS_۬2/irRE4|r:]M5k`U6\; USE?o S},BK [7Ϻm xwQV{y{S)7s?}"| T4T=pF2E_? ) lh&8TP{+]ʯdйI}[ϙ6V޳۰i]Ekߪ Sy|ReJRo _ ;(}ҪVҫ"͎㓥JL!)LVJY|#^_h> Fy'/ׅ_Ry͏O/U5X5ɑJۋl.N~Bzfv~\Wlyͳsl*OF_7ۆX6IFDVӕ?ΣK!NZ~}?_ziZ}1/0Wpx})쒿*ˮ5i?/3Pn%;ώ;?S ^<=?AQ.f]G}aF-7>yiye˞^7:̦v*$_!WY8c(N 'Mvf.CK? pYڟrRGWVyB|24;+DFTG7~(\c>k"&ʗf/{}2@5׺II;g6j~]B`>_h^u6N~™$<~OBښUZ6Lit]1Je|NO#^~DrѺ;w:]7^|KSOzѧT]Ye7.ujZ;"XwJ9t<9/l=Ҋʩ61S*aceȝK+-vOd'ZTMop;}EF? Q6lL0?,=Sܬ&U38}Lqjϧjt͟ M;ÛDOf})j{y3Wޛ*oH6iuί߽#eU9l=$mKWFmT7WW0]/_ {W6xMkzk_y:vl: z^}o_ϗSh4&($u&u"^g ^gzHZiVuj3QET?Fq=/_()g5Ku_O)Wy;g:ZGsKx9鼌>q]w4 >/u&P{89`xΧ"^g:x-L~Om3x*޽鈱N>뗷ސWI0^//a^M%߈vylʿ;uBnӥ > ~=ޞʝ`/[ 0 GgnfX=53wkΊj?FT*j}"~GbC|55}F=#8B]HΙMb\{|_1FY tGtϖf|TȰ+-Uļy>P)m_?zџo 9o _8;i2N'_mϻ@kaz*:KኘQ3WS~D*:d  LLJ_O 9L'^?#_Qp #"^)4K:Χnd0ͼLe[+xy^ߧGtivsn;g6\V1pdil*O O9r>i]%OZ<&6)W\MVO]ehC h/j[r{hQa|W4Y=QW.U-ѷtz=3X+ݖ!F"I[k/wOXO>=|~nƫh+e4,-nj{79 T /??MtQ&s o=|߸SxՒS5pQ+XFfQ;fzz~1ϗa?"J3) !#:ykWòQ=t\?W5^/O1kyI45noɡx"^w G-U2_1brߡym:뚻K|ګ#W'?_Ϲ`UC=wD.uW&˜Ā>xXW⵮L_oJ1Mߨ -SYBrJ,=H,ԋw~Mk]xSڕ_Vc{x>MiouD/Ƌ^ɦqyAiCw-|u!bA_ ?*F>n^0yvZQԠ)$^s륳S;yxVU^J!!3_/t<( Jq~ιh_'^GT5nZ !)7Sי[kA3>ќv̿Nsl= ɦ 93M/S=eD)8V*&M^#Jvh̦9|ׅ x\w % Z^zU*;I"!)hH$c&!M))*B%~^ߺ>wwwuss>~)~.ז[>$qW)=uoܮ{>=Fn_ǡxC~7%_oOX~YYjY^|}G??˟?p}ssk~1OϮ/\){a'/֢+Eq=_sݨ'߭_[}<履s]#Vׇ̧_ _M|ri>i7FO l5;o}4'_VbݢuoN?[~|MW|+Cxl?߂3í}~~I|q;~3T)~kC_-|1'z+?_>[-!ylO_so|u'k_n<~6ߋ?n߸k~=d _?~ƿ_[7~!W?=n_+?Q_/_G??=ֽ/M?}\~.~~ y;7[/G WߘڲUccן"vΏZ?2+:[ _}^~qFX܍[yTXoP\{~+~kztNK7~w}ӷoן_Żٞ߅uAwK-|#?kчe}{Oc>ܲFR_׉ ?H=\CO$߮NiyG-|1!ݹ럨n9cף?[_W_`'_@Gn??d _-|zy|-e~_Y"ntoe#N޴cwb8;=%É?UEMW74YW%IMX (/_߶+C֬9} g˷G5Gw7R}z+ ~%_s=P**pdס]O|tԭK"w뿛9iJ#OvIEu޳t_/wgg/oQ>WA~ 7VYljʽ~?Ks_&y}r?1b}^Wۏ"% Ϋ͖XY2nׂ =3ܟSk''k{񥸨"__.c˥"/ET @Ru6w"kVh:+w;KIa _sUT5ԋnVVa滥>}٤<*j^rG=ZoRbsxFt_^T_^ׂQ#<q?9N~?_i-a}L0_<*tߩ>Vz]Xw-6eTԶ ˲_mW?7ϋc"8xW|MUSm_pk]X_7 w_KiI޹oΙco$|/hN>%55߲ќ)+K/rb_y7|}W?uڋ7W׶7^;FW*Ő47 2i7*vSoW?쇏7zʥʽ8D(^Wuc8$:adz>ۯ=}pxk?DuQ.?N>WS|4c}A׿v}p[>S7\=>hӟ߯ӞoSC?Coчq=_C>8NC o'}HCO"b m7vT!5zE/B9LJ#*J#|*o: _Q{u)~2y+o~|~^~*) h~>A'.rC嶙Շ@x綠ӒY Y_P2:ӗ;hd?H޹ lY_-|ϐk?qV M靷G>ı}__s߽?#Ao{S?"~덟U|-o{\r} '~/jY_-oR?c-|1}?I?k~cc`Yw?=ȝw#w~Žܗ=j돱SծH3o_Ac_~n}N -|C-|1R\ߥQ{>{-g/i^/7~-|15gqyo/'_aQ)_K -ʓ8>@,暲Լi y>c'1Ux}iSg kχdO)/:{H'.}gw}Ξe}}S C_YoOş7~z|zC>ƿ{_/0 ׏O󰅯?ƖG|̧ESY㱅?:ן"vߤ;.>+̙WF|q _-|uK٬V[]zO^;x_7"~$#/E"ޚbc_Sd r3_o7wOgdS'韉p6vjKϧBԇUu xN) :|]_zfg}{o~|Oɻ|_o\~\"QK>?5smy٨zW_'_#[LR[ﲟ?oc}Ko_~fy*K6}O}6߯k{'?' M c.%>|=^7_t1SkBkR p0Kr_o__/?v~y殣Yt ֗jԘ>3/ϖy2hROZgz ua9A5*U?kNSkz R(&kOw_oڣ%uo֍oOjw#r\w='ߘIl>?Ş/Qx׿ :ŞW_~;O_J6ƣx?E=7rl;3'_}w~n'^-c _(._ߍo1/~>W-R6*VmX2zX/|oH~y/{.7qeyř^~*e^%gvD$-_絵si{uZX2'Aw怇Rm~ש|Rn9*xiO| |/̧ }-~i=)~iϥxr!M7Aq9sSy3i|x~0){ߏw/zJJ ;>'[W[Uȯ`vP*:QRq^R^e]zNvXsLْ_]!ΜuSvjrfYKEخ]lV~v~:ZK+зg.?x;R^#yT7az_w~Wzc V~8oR%$ 򵔄mp@|R>{bTńT{اpfʼn="]*6T|n'&&9w\wᤆK򕥢?Lgryύҁ9"j{6H~>ۊ^<OgD(ތwŇ8 ttY7}w}H*7|r׮6__K$=ՏK_?_]z|?_yswvB1}ﯔRj[| [G-J |l4k~9O7~؇|S 7VY7&O]GG_X֟F_%}|yc _?׈G\c _XfO^vMܵsós)oF&>{gՄ.S]'>Ʒu[&j@B.lY|UkLYǟU۝SW$bU~liTH^IGa[)jh<ޡ;d=/t笡cz5 Xxu5hy YsSc;lK8V}2O //2+5 g7H W2]ˆ?ryvUiE]ZOA(HTsKE c i=ߍ%>N'I'+GqwhDu;93xbOq6=VW7k&˲|!֌9t 2〫&UHy3x4!s7m\WE崾!ix;l MC)8Xο؏Q%A;ίF4 i|yHmFDwzFreW5xlʃ ʁYe@& ZyT*~NhL-i\%-o`_ ~SbnOx; m{+RTIT(SMGYS?!QE^ĸgj5ũY443˼hԽW`G:>R)_hh y #y=`rr~HikK&Ďv}bn,hNצӒv$Ibv~Jt%_8M^hpWGV\ rr?'z slK%Ϯ|ˋ~|W-'ɽ%ncxZK1Ɇ>doى͜LlO8$mzZoyiuô<޾1Rփyu  IeolvgYؾWu,O( yѱW2Azㄟ?ە8C$9Io]ùpw虾8zEg8;#Mg0g.ߓqQL vbߘ逎,( ֘)GJ)SoU;TN{Ա sǩ u~/E2Z?mnSc O9Vg(UayIIQdžύsS`uZJg{xU_zhs[)*!H1Y+"5͙~mF>мce6FH9&6߼>ڋĩ`&tmʹvӮ m$]ct-fNCSzCȽKgVz]|ňEJMyhYsi-NǿhHJh{JFx[i{dFۣv ;SӦMGRUS}2:<5AqRr[i&9\LqpHP4=Qu N%maL jIئ=oG$ޞM}Fb;>RجyƿˆGouzMkh;ݼtC-'-h4xo :zk?qv=4sh>:]ٙ'P%0PNǚrNX ) uz>h='nO{BuΘFC R߸Hv~ƿZEwaG]&~ (H!ʿSlهn)+EPX+4~ /2剴 J3SOO)>lI?X/ISyD1, )Xz0%-ŋ/<c>V`.S,p8L%ƿWMLEjB*J3вyn,OV˹7e.^8gJvs^2UȉJ"m5Kۿ}c)~ɊkȵR{"֡Ib;w`-ozc44myXtiC; =l9,%[xDY}Fw-l.U!ЬXu L`MPujMt/?Q(J&6ivʾSceMbNy3ӉJ\iv"e'#gwJMݬ;E UQֳ<\6Ko4^Ex"Os7 oJXa D`j42`#H%½ WV<YM< 3. H`Ѫ]ywN׮lꢎ~0{sP|ny„G ȫ"V eyNnKe}p;Z߫;0͈cJu0t{Zulx[~ͳ[!#/V5(=霎u}OGww,}.ᑏ9sfP[]-q˄D*^2`PZρ>dL7ZVs6 t%gk91l=t,GOLw3=o.<>RogJJE\{>bQ?==󤔙cf=V\%h{ThiXt\Rbm2{ރ !&d'Z;ȬK뷷ݤ|gf.91=<ŴU4} ZP/r)H:*'ͼ5]+;XtB!s1na@T>EjB{<-=î' o=We̵;_XCΥ,Hv2;ؒM˦Kfwu_)=^2֝!Aw:v2mHq\5i']Xɓƿ,g y&ڐu>>Ӧ1zYN@ c ,f^f1M_MIJ~P1s2&ȹrLȠHhGcۓٗ=`b<+yu}o0[B_~< Qs iW<oz}:[GvW9=m.zBZ=lE@>69,-!lnlxuW}T>_F뗿š 2/kwM}*Li=vgڲx;#MyN+?pU.)XxߘΞfqZjӦg i3{Pn vɖsStZaqsP?]WUhߌ3câKx3u3sS ]F 6l]|Bs?LItlҩg0L?:zX%=oG+/XNa$a#AtkզD>}p.۰cͬtKR;0)\]:hڐ~ErIxҪ{z3d^n(zf\W1BtL1YGLd 񈹥#YEܚ%V1G,nSL#](NTEouל<'6v`kst^09>#,b堧 O(H0MNjg͎O6hDFNk8EȻ8;ý#M7,h2OckUJMaVCm| A6g5#JXWB_Hule?&TG&{.Y؜NRNQR99'bo;?5ˡwvr6I#H+gq5w6 }O@rZQ=&澳3UO;ڳD66xQFBc)o/bUO:0'pv9" ~SگDmevZ#@„={2L2W ;x{i}˅xHI^fn=7V^E>bf=asViRy\9t86 \iΥMc9o/ݻD[Cy.ղ6;e᳃X ^qyǜ';@~w)<~5lxXA?qzfBݺSR&$9b&i}rco]N. We?s`x-ޭy9}Xу'UMnFfQiQsl:]jR&L 1)ν)h-*Θ#{'GO$y,\2VN30?qr1'gxWgjxC;e;-7(?WmZ\^-<1 $$״Z8Y۴M\)EG*.M\I`yᾏD\ _4yzv-NDgizbTZ+fr#7.k0_c: w5ٳ4&kz@X$y(S`s!/9uqmbzM[,6M{@ 6~;}QΛ5}h]W0&jOSBF*7 Vv{Æ :.eJ4~xci nC>Lӟ^C۷C&_r){m3D3(YW&WƼ<ϻα@y?gB_p.Et<'̥O)Mg~y7O8ӪWQD,Efy>5Q9\GLή5fa|<{C6&bZ mUg&3h}_aS9%C0;[̞x 8W|G$ӯ|_KaDZ;Ř򿘗g꾖\FF:88\ih w:|,O\T9Da+|}W;&w[I3҇fC35h~V#Xqo:se/*qhy?sehr93Dp+-O~q;km?!ۏʫ2j1x0TO]=V1t=}.6(tN(Yחs8& gԺ mv6TkFPreI",&/Ȅ,YczVsjWܩo}rĊvlxVxOm/S։{)_htEe vցg_*⒴ym3l5Fb˲l=f^g1FEڎ4+X Oy4r,smÎS8~ G-KcVL{#U'~xߓQ}5LOV{0I ԿĦKȋ\J/IY"2kǨ̥&NT>֌&oODv|L찎ƫ~׃c^N=1[֡]Ke)jX 0KcҬ,e;'wbqvڬu$'Zêj鰖{o{A.b|| R^ A߾Yp3g 9z@ŮsXUil>1}F3uy? hcޱeF?]#g?<$/;HYt] W 6⋂urDi&Xh421X;țѮPw1l*:3RާLmTWnO\D̵$f7LnF2ȍj={NfGj*eh{+Yy{nEY{tut=#QGpiv=]ikNB-^8j ~gB$ƒs0#Q0yP.r"ɬ~cFnzތʆ +VgK}OusU`66w֒{\G/ ϼ9JxڋI1mji_tK>gD C׿nkEEy%an1+_-ʙʦ;4>f, gVEqO՗P!W{2y'w;x<_0&FCCj6,n$j>Bڵ\8M1PDblm {+1Zq}v2\{8ᗈ_TdiEמn#;3N8c3ՃٝotOow h3Chxd^, k@~ӕ(|n sͿݜnI&mưW(Rօ 9%h((ь3)֛Q<|3-GQxyzO陔T]Hlx|3 Ӊ?Ǧ2 +j5naL$y*z4߼.t>`]B݅ 0yIЂq!=1;%LXL^yDÖ4]Eڟ<̛8 x˘qzY8YNBWa&ޏ),9IZ><::3gwy-W>W3 qs‘czSy:@/(d>{,ڐ#nڠ/oN6΢Q)Om[k&Gz>&ȥ^N ? s] kEMj#3iX1k)&TcԌ+~'N.KU NɚMe7דm[U6t[t[RwĢU>^QNJa-.H|^\{3tD{IS苂̕]Z90y"^{RuiCǜG8CX.<|Mͺ;ݭSL:xj{\ 4,btE]bqQg vDWRI|婉1aYJo{֋Y ~29=w6:4|)>4ҢӤu$EϨ>̪<3ˠ8}SyZr"v{~OI^t'׎;>S.d-LaN=Iը13;߾)v? }qQb CHݛVCh0;mu~ Ui:)g魣{9~@.p ~>5E6̅x{S3#6%.V#G^p(sd)f&:s{M\ksrr>s \#N2u'/Ų[b$=lz$-B'=i;ۭ9=KQ r2ϺUqQ4`eg0 `FR? %WDsQ1iƶ!{E5ԟR jer$uڵ=>A:P(:[o8rɟBw~ѳi>67Ӧ8.)=N*ޜ.{Gno3?PA(?ʹry ˏA+Hv!h4̓~;kYE?C_Og93ۅtRǸmń'3ojBne}AjH29ôܷd$6$mG+Yv1;GJ-\kcd] g:TiVSYnMgsv=-fzۙ7]C c̞^ Ė|㱉beCCxk)JZl,e6aѣfouڑ$F[d;ݮ!̺TIK,`ekO]4MgAUQ7zx6Wv)7ċKMF1wٸKDzeVch{W=gvd㿚6}u'A(K=(Y.Ãzk 1Z27+'b;rēwl{ͿRh>ΙwȖ[ܓixPbdςoRfPOa}`2wCC%7=]՟x*_j&!Chn1\jR-v<4_g/y)qDt=rh{60g&֓ GiIMњbI3?c&tC(GEG n*g>4ޡir8ޛwƳ!Fq0 #=u[\pL,/fVHMֆ =~:iک+祈%{źqdAV6ERvUxIrRshjvLShxi W;8$J1Li/GC&G̦8Y恠Ş[PT8vM:c;w#5>=BIHb>}P|x E-9O}`<1dEYt|=D8yZ3kWRc`n䬹RJBя _X]:{{of&S-1dd*R qzWGi59RT:!NqK$-6O޳ x8J}.9[c!E>W ins3MT-ʖ$c0*cu]`idKa>'HcHW bTzuoʫUsz.-b=Pn+Y·t?iFS KU-uUt*U07(X<~$_]VKu_&&w!^{Fml'rOzo&;c^f+`ɐ6_y/ow1L"Ԩ?d`ɓGg ݫwr11,g5˅fg^*יa2dgsOtK8}˼x`X,,oW<~N ͌\A4X@V&8K0lY6f8{xudAiG Ϸ3:y H%UV˂6d75WkFX~QX_r{rT/;ٚ8gB=Kokbd(f)#+I׮dS=˳aSw@C#O&aDVÕ.zD}ݶ{|n;:AYt&e&g}B6imzI9pU_"Wki*JӎYU!4LweDv]xsy#H)'N_,_SBWvZ|ZPy">2R[At"zө ;$3 !+#/s Q!:= 4y^Vqo=X&& dŽ^O@=y$9PˏjS;Jtw47 #gz+;a9`\_ _koC~>7.A}筥|-|nHgv_yvqPMCyu `h! us{S|=0 |Xn=13.ss* j |-rgv|nX_ȏu4w /z"|ף|)VH|->Z=f_/A9u}||p q1 Q^̋ 7%r_.~ <T|onjg_:v4C?|=gSQW(b{SnE{5t?"}J\7~ٍs!=8Za=JPޝS _8b}_wv ~0|=z7?*?^#_:k7uQ/hb}#_ xbA5u.!$'_gOXk) b_7ׁV&/cz9me蹣>VaR;}X=G1|80gD0)? ]}ՐU.3p CZ출s~z p*q->eK b'm|!ݔd}h$[y:tzNՎs'ZkGtS0D}Ts?-oWx!3 ۂKzM[ \uD&/Ga/?cn o^龎8 Y"l0t(_qv[OQ!6GMK NZKVyW鹭CGo"u v\,h.X/q[ھV=륆D*>!4/ -]1|(xnI1b͒d]v Fr >*yw}3DUx K$O}ߝ|kMtnwNDcήV''b9'\lAm9rAt^8 @*y1.7 d=qcӉ!SI[ q)Ɇ(37M# :z''5޽!s С0Z yT6Tچ\|X#gz{2's:ٽY}WhBt| xSMlk=9GXqFlefhyZcs$lg"fE55gw$ȹG IWEV@8yOay^do%`=(%dU5# ܣWWjdž@A0&\Yx>cv6&jǍ7f׶|kgAD\IV0XGFϛ!+s 9`2"s'`t" ~vsv@7F"T nMXO>rcQe۹y aLba—/-ԠjBE݈zD)#B4vEnkc1;MIE |\PC$ dN7"$ ^17XlԽ q j}Ke'u% F5nu<c Yl}1eCkӼFฮ\O B;tK:Aw~4~r,!*.> t;0~>~ psow~ng}i#׃6~#ރ !"OQM,_Num_lmQm|c1~89`x6gᲘʋ8ǹ=<诟^:x Owmcl;pjL!w}G}O;|P1rwqn z2p7:SQ+G}c1|،E(rF=D{_xd{qqj_ b|>;?A3"_7 ? q?&xBi*ꯏZ*U6_K-'p _vl_uoG_;+Չqv,__jlI,__RBIڞ,^yύ.v}󀼛}a֣+]aꀯ쀯 !|um|1A;IxKp_ \RF%> BqX8 Y VtSaEvan^!^8lp ?Gqr12'- quK"__ __:B;\/Kh'F+=;&|-R|k` |=#:kUQkbr ziw0]qur.{7[g׳ㅀC_{.> NJ7ǝv/Ty$|8N⸪q,=|@[|݀d7S gU\wou k|=ڇmGkY |-%q=s!`J(;9*#wng5l S^Rޛ\pM ֟ދqMoz~s#{.ix=ػ?CXpz%=)Ccrk2 YJv|=h|D4XiO\,L׋6d )W "_-j Q|S{okHֳ|=x`7wC#dzH'1|R/,Nh愿 h| \'w%k)")_%,_m Ɣ{K^9OD7",_gc~ĐkP]qmXo#mv<4q%vu,_+c*',_wi1`ג~7jCz{-Ĉ RqC0cs2c|Eއ)σ^D1ZjN4>uCsāDc Rom@4X>vXlG/ݼqz$xFh13g"b& 8?RY)3B'N">/Fb! G|fڃcALY+Dv|ms\gZm,ύ}Qp;b9'9nytY؞!#' -]_!,_V''ĀlbjIEk_8ؽ*Xa#+w'{8Msuu,S 1}`GC w!Ϯwvfqq,ef<}Kh&ۺdw"As4׫CKߞL%Fz:w UVa;`8 [w ȋ4%(x`tl ߥܮ5CƤr8.dGK>̾nF^3G͊tOI"3;9k`IwqѼQp }Έg*e`:~AX2\xxac1|3ۈb24npdww}9]\әuIyGc"7yu7%u}7L4vzэ߄Ii=*^ "ǤbzyI܏;g^w~&{#T md?5b Ptc{ک׽aCQAة:;yW kȱw'7 Kwk%wrI!l:X{bW,#?v|wQs`%FJ󻥼A9("N=CzW;AGT:v}wS"=U;QOS`5ՍXN#c̮;n=nWB=X/9bvt@@gN69^?`g}}nܶvOq_׉y\qk`YbŎd+)ۖyTOƒ!RdUs]WB}dǂiG`_؂_ȏ|OU#X #:%[7&[#[|>Zd&3X81WN^R"ƵcK;NDgy=o/NB \=j'=/6xmdukKuwZlibs'#9M 챿*;FwR n?hx9U7ڠ:٨+JvTՑ͐ nmu0EH+ԫ-̀sZ6!`Yn`5S+tyϐ9e$FdMv{־)ĶDwVy6ݐXwܮDbBO&wr߈ǁ']^ybK1a1{} gq;_7) ] ^m խ9|6Mu,Msʘ-ߤ q|>r3g/'6|r Ƽ0Uch\+g(8~]|/` GOx#u՝!cߪ0]48f%b>cdeI 3֯w'[+"Na38Mǩd}*sl2gg 6u7g $s.[NL!ANt_(.7ί}S}d}^g[ľrcBSoP콦 IYbMav:pqoze׌-~z_*?v5~z[bt=sHiQ3fdߣ/|otƸO %H{3ƫ#!J 3V# LA;~:INHC.2g-,%: mzBqYDirxY0'7BxC3#,Vk5d94D ھ p -"˄dG8B;gx"  OY8^ !B"ž;>R뵃z7"fV5dY3A?$e}NEd˞ &eڄLtω}kYE&ѓ|ItlށCx;dv|]:@1ݼ[qS])Ѹ1IDlm#Ҝ) L,f:w,@h⩐7SyS޵{h v/ c{L ?bѿ;rY΢.$ȝ?, LIy i^wkzu'>qu^R:3v/RbDmHc{XA !.Bq6=/g߱q;26$ Vj=;+S۽齦,vw"sk+p"zew?XXq=&Z/wp:+:?z[B]+I:Y' H4wu Y8{dBcܷ|e%d{ۺͰǘ`ɳzMwߢ32|:Lnw= W[h3sI 7褌dĕE )+ymC8cK<8l9$uF=ieL]BV3ш5o:a.8yvVb?zkiw2=evG֑ }ԊqOc ]1paIb:X<̷_4*c9n&IwrHLtsIr\{~#Q[|ϦBQʕ.`e/n髒q4a}\xTɬ.5ĚolA瓓}'>y5YfAvݦЍ%<``Pe.jc5|E0K}hu4 TyѮ /{f2cXlGxcp{`>ŃuϹ`wo'qZx8.xO%lq xf8@/ڻ{ w9uNxJ"$v`h^|^hvJ.`A:PIc{> σ}~N|ˆh̽ [DT AySˑ|p8Dfs9|h|/|jO0i9y'牺?A}W':7ȵWw< |+Pk|#=_A%"?828*Y}OCo p=<̵_=]X( Uc&Y|!gY{KZR{3;0"t KI=H[vV횜G]/} !zV|_ Whwmvhb|i+=}(О/%/_{=/Nq(k718T% {o9/{1`7G7=]`ϧ* {{oh%E`^ /'' GMgv΅셈qt枣j|c=_!=ߥ`W (V^T uv[=n3G=$]l9S?7<ëoȷNsny y: _ka|m:pi)";{>exOT>?B9{7~0s{> 0?7q2& =@=&6C,D<7$|1h^=_+2߁=_Z/7ϻɁ=z糒{a`g{^ >7){ө':냖ݧ>%F؝#y-WY!xG!G7ރMS^H{\Ϲ9%;}hdvw`}8Eւ#wt MEoޏ^E שa}]=q9]2a}}y9. N}x}M:1.y:X_[h$<'ưF<ߕQ~a}Xkr<:/ی_x]d3ϣ';xY }|O.xϨkXo sEs1Kq|#+=0=CsuxA דgOګd!ousU\_uK\gm}sNSp x͸6v>ށea}Q8^0?'k'ߍJx5srCs󚫁'X_JX_/a}8}p}}kX_rf\_[guGrDo>mdn@JϷz,ܚṫy9}o\Bz(mZy} w\TWk*ޗWXSDavU-EC-j?}{H+AaQ'* ݡ0Hw| kW̿#Za9>v&#k_ \ C@w^ b{d}|C??o..z&u#=! Xxz ?Y!?{bʢE`1y*9Z8rvM:q0l!8od[ط?tbcHo͌t4­"HՁqqPO?pGz)4dUj+o>dõɣ5;UA`YU1ۙsdo d~Z1S,߱Ѡ)џ߱ϱ ȱħy狫~>~} I}[Oq /q`6!0(7(X\*f6c}`y{ T=Q{aa9QTO7_ Nl3 xxx_ALF,rp8ew+6Vi=~z]_{=zWŮ_C2Qu:Cp6,$;sowq{tuY\_}x{><'I K_\g/wꟜ}\oz> ϣ}O7q}p t|Uק `}݄]0LX_uX_r>5p{q뱟^Rz9уp]lX_53Wv w1.F=K d ܃$\7 :QϣLG6ޫ%ΰVN°VX_/q.GFp}G}~0\p qb8Qrdkwt/{!ױa}];WIm|G/3a\_?]B{g׍7I|ʡc{r .pi,b^;<} 8hϛ{xmɩy" ϣ z(ZZ׷3a}%<5G߱ /p}D"t}"Ϗ5ZW|+&|Շy?d!ާ2d]*0oߎG{j|퀯_quOFrQGs P+C_;p/y[!]Qw yPA #\k9r߯8|=R ^ܿ Fx}9r|A?Q_5oFSIr!_G+|_=uJ9.߹},~=#]ԇ,V=0g!~bI롨uNP?/䖇uMt( x.7__|: N׾x?hi7ߗ&MxPlq?%{օ8,#Qb 9{0?9hǼ||=;|X>$?Ҩ~9 ^?iW 8k<{\2f3Pz"/: :ͱc}?!C_/^NBȟQ^'[sqqt/7]c77ϕuTy0طZ, wa4vy<}o|U xV?`~'|eY{ ) 9݇*pn@8\s.w~zG0]kώ=[Cw`S8gR/\,!<#"}mt OܛjBYR7a?  MIb.Y׹db<Db'~"]qfS/@>ZDDZ;TN4Ve$̋Dv%sNxxՓ9JCn^PXƽ=lLb's+'V5|+3*4۵8>\~봴]OﻈfݰLD~;1킒Ax,O`< ML-db7z&!eWi61~gm {n N]S :D:Q>sv$7b8K@[)`!~8@'훏ǻYL1= 0~$"7@ݧsW[6 Fd۫G0PudXmU<73 C,BC|j6x"=۹mu 8{5_6єhϊϏazN60^P%Yu7T 7]DzȜ66Duӈ6*D/ԠF1z{\ "4i42z}e=L}+*9H1JOvkMlȬ|$eѷa{}>\ GS;b}O'U4"_߭nϷ0Ms{yph__ va@0;cx/b6S0lHX %MdaDhlɭ(rEwForL1"b$t+ \kک 6:=P c>54̋V" Vŭ'+X9CV4|9lXK2CVWΕ.Ad3O?1r<{|s,8$M jo?ll wulGQv&8=`/KjO?xM-y5l>…˾dEYDvʾH$`Uy[}0TO(ϔkD9 ;%{/WS@/m}wz6 ݅Rڊ q;؀ddDY"i]JGL@̎%t%>$Hn wIv=mnJ@RV'"G9kSŃX Su- j#r$Ᏸ_Y?ݭ!ω6=#pc? "s cBw|\!߳G{>_q85^}^m9|x/'LD{=!{~>T{^ޣȠ=hF{{]0ͿW0{`׼:{>Yg |Ka=\u]FX}h ӡe ;Ox^QiL?cЮǎk?'|/ |I`ϗ`‹祐@|}Q |I`;^=ñߐ4"ΓGhW<홅UpʹW|%Qr}xփўq/pDrF^C{>`9@?l{>8?GqwE`;^ijb;Q=Qp:P{W( {/= ?{Yco8u;;=>C!OI {PudV ~:<Β_}#~#jwT)_GHP{P wB{0W/W%GߕwpX<߆z1#8Nx^c_oݹ=T.}8w|n8"@_G;I+XNk_O{~*8D}{|ГM9wVxK>h[7C:B\_ ߍp0xP߇y pn *_J2x8K/2m=7ڃNo_`G_'E|{/=s3heVr:</CP￞ y=AnrL,޷h\z7\;8}"JL~_O}G ];{hgېϠ^|0`~mst"7 pq?6/;H2k,|}ύΨ澋4p5py=xG@5.ϯ}؟}Y籸νe2k):L<"_~c!2^/ [(ފ9#L%'%{.4dNy;4Nt=c'LԤ*&Z-11~W)PɌ 5C=UO%{ f[eL_^x!O #p_Ur> 9K xBM!0[3gjhL o`򯴩zȲ9Q[Ze'}R@/Mlש,'Ô&WC<>_h6-oCg:NcJ-@̗ ,x=';9nm(!C쎡N#Ə q rnn!ܱh/Y'_v<s̪'u %眩Tq$fG-q3 Kw65|էCBI"kRzg2{fƇw3=Hl$ܰXk OSB ay}/O]L'jc!c)"ʅY 㐉9~O"&"reRwbdO96,1o \toG:&y;Ν>1vfݝ&N D)I/^0>~ƫ~FD|8_$XܻxOa{{]Q 0~OWV rȖ+.Vb}7сdH!֏"=԰)V" #fxo:rD H]-Th<1w"Qi7'-_i^(w(Ky&oM7|yO?Fut9׋h_T?-Ys9.JxdBO}kT(,Շd X}Hyw^m( ھnIoxՇu`!UX}<3wu>$׹>Bԓ}|dtW<_ߓ@2!ғQt!R@2W !*޸N1WAR%}cz&hTCߟЍ {CW><Ї}HL=C;hC|} oT} nDЇ9s88D6uC8IcAa|R^|i7 /؋c;|Tt^l'>ow"Q.Q>d8BЇ.!Ab >C.?}w{~Ob!'rw#]Gu2ݨq|PЇ?}HbC `yuXIԇl}ȶՠ! }Ho9yߪS;qDl^[|څAj7Mdr-0E}8?b{ \@8s KʮE;G31 ڋ/.N3B&@}4yd }Y̩={ZB֎I H ӅMV{MMޞTuKt~ {eiO (`; k!?Ok5y:a{Eb0FlYT!iA S݃l Xyw,IeOE+O҈p<^dF61/{N4;9XWY]pD[' _{z/Y<ڣb\?<]vrd} -m^%79jqֽ,KXpsҥ"^ c4`R;>~'K|[W&Ue"i,O4E\%6˂:!3,'ai =pDq7'7_Z yx0 ^&n5*;o,I=L5<{<r7jtN'YwAmzPMg<s`c-sGHSE/ 662ǵzn$x[;gM i? 8@6N*lWjG秩ȟ\.;6׏ASgcyhObqd1/΀ p>|2xByy~zEVcAib/%:f?? =x|3_]I~#K ƍdÄGO*5d; {H.cVRquJfQT&}N~eǕF0ic-fRLj2LrzbW<sp?L4<90p&þ8.DBo9'V6mRq&ҥgA/9>D ?9Wuhspߝx0Q밌oi}>c\mvb]Wo,nK'Q|Sr6(O@>vV?6@!/]3^zĀpeoҵzuE HJFc/_7J"g/2Ss~{YAbc<,3ӈAx%;->z`OwqgLb,$g?^GـO{Oȷ& ɩ$v::88-]32l4dGd[MN Jٱו<>B׹":\=ӫ/\h3L>AJWd]wSa>?Fy=N{CĻUS}td=);C.>CR.E}BVVQ{w*|}IY~J); C@2l0C@CQ4#cs.{04i~G}8~W:k䋉'!bh{ڃ7ޣxOz `uΠ2} ڇ]H94!О C\cCnD !C^Y ?p?%_ƓE} \!I2}HW'Xo= @b{>oوGWڇČ MbC !Tۛ!B^nOFӫ}Hq_=zMx*?u܏hC}~l$ ?dQx6tI5+'[>3sz~3;`=t`O!xn ؇>-eıh=}ř7= Ms䋑o >ϣoxq؇4=I;|{M?O؇\G^3qvh/7ϣywqyt.O`q\N`ro <4ϓ`q?:.{VlFAA,N@Dl@V@%A X(``b˽Z~|&vvvfkN;JnP :>9yg~ȮbIO/aX!ɰwLGأwD+{j2T' ! KCrB Q @[ǼW1?! M`')p!CvC;R!<OB?vR)! uzG0STP%ֿR8Ma~!n2d%d~mu O~\}N TuC~g: nB3zyezwآ4Α ŽnBMUwKxu^HWM4s}o= 4;K{'K<MnP<ߑ>"a'kA,=b.sӗ $-n G?ϩdQE<ӔhaO\x#ksNu_ пBk0~ɯGHڮ6S\੮{PZMP ә&4Gҟ|s%on枓PVz,g!CПlLCYƷ%KƗkoI6yOs X;̢?7#Ts>TհȯQ˚tZN#\;UzhE)\uqĹ_x| k0gCLc~4Fc~-~mlBq{uih%t|.)˃uF.,tJNc]pMtn`n( :ZXc w b9$y:Pývc[GQlqZֱ8 HUW~ 'QvjD:bS1r߫8:t.X|hQy)@-#}Y8'7R8]}:We:Y3t˵qthDNƧg:ϣ+ ;SPUAy ԯG#T5?:U6fs) CY|劰~IOGw}2oWp1c9u_ymӚ׽Jxq$^\e_G"] n⿚^'Wrq^u$OTg:<m;_G8 3*?[ĄAo *xu =yOuwy}#Wf)%X_" uXo`ރqh_л5F56_zI_Wd/x*)d>.v 6(# ~uñ_bawBzE_|S`=p ym ݀ lx_ dGxUunzЃxя6 1Bb?-`0:_:A?S`}o#=xOo3=vB'_8ezt9PѾP:=C%瑼~p[+E{  :)_ww~+*n!+y5y%=Yߦ}թ;.4HF_-+qsR=ؔJы_W&w<<9:ngՐ֜nEvj/B|ݣW.p%7G^{_Z}0r稑9U严};Jy-㹖S=liwM[_#ZI$rB=LWSއz܎frQʵ8oPEE2 (NG9͸dEqK>mkZ79?y1ž!ovmB~?g 7A?p>0c^V"-qGkjWvv/DX; |O[ެڿ;}𸋕 9I,#j'-'`]u{\hu rp339)OZ4qWp'vޝcxg 3fT*ͺ)ėz)7nN]^yޘ{vv=yqĆhiZs]ŏ%+ 7V FOcsDŽ|N8oi5or疭k G|]r|޸b3]R7qޘґyrn|x9 1.QOi{:<`9r2}5 ~>oo獃yL쫔o(}>oV 0se,p_q*x9(ǹ[o\ 45{#n z;?%7y}yp (L8xpG5ӭl;_xO[rGnQycƅ/1 ѿy|7>'( u1Y&_A<?O">o|c`{xg7Wy =>o쵅 '7ƅ|޸w7:"^y8u*9y9gI8oܭ;LZ:{%2oЇ LBC !: |ȦkՈ}| 6*mẆ|8|?!j[ė9|r=:S_Puq$XW`{t˔!|H4q?>8oTAm{g7< ?H A;Q4@ŭ<7_3 {1C/b>!{8o, _rcУms3/0yk=yc'CAG|ȝ̇ϡ3d !7Q3z>xsxXAZnK/o45yCtq޸2+OIG|CJ` `BICĸ[j82b]{&yA!%xn[~E2 < *Y-<yQb`>D6я0 Ȯ?e<WsL߀4yVaCtJe|5 0bpŻt|ȒtqJN+xxW%^d+:7hA2x}lIm!܍o]2'~$pn=e:Aogז. wA׆s&1^7kxe _OF.GܚHTOný_<\Jax} wAvӲu6]u'=՘gs ^A ClH ם/xތׅ]׾'Dw-/з(hxKHCW xmx~ X u=/x o1n\B; d ~`䈿xiێdK.'O@^OE$|r0Y0N9Ip6d@\G:)OR`x0$uLR{[D2[bܸ{g6*zBOAMx\ `i9P%aZ3^-"%w菔^tx;1?c-F ?B:uq^chSY4PЭwc: (dת׊1<J`#z!b>#jP+GX;<=qވe6iK>_HCGb݋_1KCש_'i޻=w| 뽍_f"mzHT?|Ȁgx`iדze xR!\icxmo? 2ms"a~ kp} |?W?` ?rq>a==؅kW@g.܆_ qBNg=x8=҇ x`IwCu-[<\E' ~V[cm|x]Bo59p=2Ó_x](uėx}ƌad#*V`MV"]x}/8 ID?R\?z//^E| o =/HkID e߃Ev߻`cgkˀ Nߖ'_CzGC@?(8UxF_dvA(Qb}Vx=uQG?x}9Џ=`>btSMb" /E{]CƩo[qa&u/ *`g'9krzw J𛚆S|&8.{ek {"޼qC^fW82^M^R_+!bIo~#'kOB1 1V@|͌>1^_oq%>97V^Sݸ>^ZJbYOҷeNiqo%Uo|mA5M(mA?ĥΏ}c;s5G vzg9<+uoe}K"}ނ~#A?pA/d\lGԟ*<4Ov!p0A?'13;o'jڭvߣ ZyusGᒠTo/T,C^8 !C~u})p< 廿cb*q~.˿]F'Ȟ(/E\2;5y/ !ӎuC"]~Ȋ8i*~H +C@x |T'+E_z'b=ze"(wC.K |'聜yGgoBcоҚX[ПgȏCJe\G 1~(o~_뇌 Y%Ȧ4@^ZBz>*ޣ#Hs+^ 1{),|)(C%Clo !f6~Ihu~{> !< !#F-|\drr}ScN 獓;U˞MCt} 륝^ S7c{.0웥!Y {o[R °>R_wdz9axo1N;GH]_R1.Rߢ`/ >NkoEܓ8 AߋUo <!Czf[i3ym =,yF8q=T~q CKT}| Sg_?z8!Ճ\_~O<=!àh%/&!!a/Ӈ׏~ Qy7b!b<`bj4:?8_{5q=}@葈L<>Ld`7EaO"Á #;$`T>pa>+. _7z78">L|7NFO+x+eC%$כxQEzOޫtHL3"+ؾ:Q,~! TY;D2jws]#lbҭdIŮ=Nٸ8/SA&I4e-*S[9a&Y(,-3ah<=,|~Ս,j6ߒLg;)έ #/&Uz~3_W'O]e[W-|x_qIgkK7ڳiix7B?!++sGwxDNi!nD+M{7tRyMwSdR׬\_gm_VYI3,S- sWZp܂3ہ7,|ulJS0@4yA<)x/gewvoOy2.iX7#Ô5ƈz0dz[߾fD{gU>tV_!&oSCCdC1g 9wKߡLTMX܇,ێ>[NY)K%fȿDY^MY]n5W/e~O_dRZz Qu&i-!c>W#Ϗko7-H4$rb|W7+ąjd߻띏ƃn[ѢW}Ouʆm\R׏|aڴtN "knYbì ͵Џo.3 T/?JOI߮/MUjre[nĺ>%o2Dx=iĹm6ퟴNL6g 0h^մL(< qRUnR⵵Y*ڻ/Y_p]4{3}YO6iqgLh YVQ-6C@׍qNsaf# _ ޺x]ϑHOIe⬘7MYkup3G׏za}^'?%^?F;2ˇ7b܊!wcc#<&Ϗv@E;QO! o9 h~Hog55mq8Kqh g=b\0KJđ3>G Z:=G]\bDgO&!Ղ|x=u[)PQ"X PfuZ kZk!Q N6FvJ|l2|b`ױ ch87(A_E3~erW b~6]$ 8#j` wIdkurseśg]'Xmi[Ѭs`7=fmYI۶:;fu=w,oLl4O|Ou`?Lݸֹ*'gކ#KwO߾qk镒ꤥ{}|,iĵwg1sXOۣ@}7(NFΕd"3%k; nʦSdK\?KwMn+~0Bt58V#xs~h%36/Ep=o;eHځeO1%Mf^*꼏ο|n$;AßFת.H ,541ɦTT^@k&ĸṚs/Ys1k8lSHv^F ufhn'V}iJ+dU1:dlwFgKdҁ 婍iOiz/̇mig3p.zuq8=!M!@٫.y3yg S\N"vUYnKÛiݕkɾ_߳O/>xRU \o^4{{HGhHyFhg >ӽe`]Z&X݇a=`w7lIGy \8AaUŢfH.ND't)kyr="5 E./w'ߒ'Nmka}Ɩ[p H/z7RZ+zѐJNSWTe4o%^;^~_[wX!lKJߢZ}X{;<9Ւ* kxr`W^Jsw2^x`(\൸No<кyz'T\=AX?j9K m=b[lܷ1e"t9? xx=q$p2='?1ND .x=9s $=R.϶f~ߗ&(< ןb>w1^x=:e/uג.q5_Q8x߻ru|w\Gc\\{?;2^OhxzGk?93KH^+U=;GޢF"^6 ?4w;cۺ/;\~lG=Owr0Ex|x}zscd5K~k^O2֧k<.h;~c'b6xDz_9c뾯|J!i׭V0^f WQק OUUEOEQyj}!y*s6J_ݓ\>mQDɭOTni$.oiMzO=G6g?A_@/eVr\qޥsxkcW3ΰb~z[F%ޱ'.вuN$yOu$:[S-;Yq=N²rl]Ɠ6+=u>݊hmG뿹q_!>!ɜ?! 86zr(oϲ K,oe8{)s~O_>ʼi,i:XT9ypZsk8\g;,1h~Yn4||Z_xjriŁ<ﳠOۂZU+?=2f;,m49̟ds/ah͡ʑޥE#*vkEnF_ g٧7myP.x]}9= ˁ}xZ噴/KwZtxIbIVԉ5g estg,R~GkFބcepX*_RK_7p&sɺM9s73{Nwz{ѶǦoYš̎Ҿu^o>U!g|Pl(~nMYfd[qNo~++C&?,"86}y~[HV'p!MX?d*򏠾9pNܟCF4b4f^&#ڙ!c.@뇼sS*n2Z, Y?D4뇄r~.3dZOg\/o/OsIϡW焗0F( 臜>I|~H*F`7𜻠G}{+R|!(ys)뇜!г_!X?ȄC̏~HVrb?CVzk&/B?!O߱7 Kȟzؗ0/yv9ެb!OV~Ȟ ޗCJǓn9^Ig揠7!)(qC.G v|XrC]={?/Ѭb=))p A6)z`1uz`~Ȕ`A;Y!Y?D/9g^ 2 zyjc<뇜s=!sȃpqi~ȓ'뇤f"A?d64!]X?T Y.QzwRKO6r*o\T)خV~6Xݐ-I<]cķ7ػGI l1/:) i(B%#畫~>EMAf`OuyQD8߃8?tZaZwؚL:eٹ+n:J9FAML-.#uӨOkSl 'z:uaQo-}vFk/@{;RUzz [$x 'n;@ԟ_Q/_h2Z9_w<2T ~Uw6Os;*^{RhXE[rơz,?Us~eSZsN_ۈ]oϻ(/$~'7uwi3K-6@zR3d,\7o{w%0?zž[EHQv0+E s!ry]<#Eysyh/{cL6UO4xoN(O_Wޝih:޶~q N;L oڤs,U&rA r?B.=h9p's;}[N A>\<=i-x:PJTo>P+oeW^/نՎW[8LXN9g}^hGyWCzǕv9ks/Ԩ'}}_2)0O3nzHأu|GT`Քyq}$IlNЊy?|B$w)Ik:?'戂#g^ }u`/se^Fѣuu?E^fb^sy=w|8K{_{)^ÂDrR,=z^&+~WAO 顏2^F2^2ed>̚k+e=xZT*߹ }||_뱽 %g {W`R2e]2͡WzɃ~~futOz:̇^{`^l& wQ!u jn.́~r} 0쿕eUW8{u"-$rQHBb>n9،}q D^ ;v0U%l/S#Xl2*8]eUp?c桘e ;|}9%AڻrK[o<\QۑCz3`m`/+Ǣ< 9 O^e nL gr_l/SeC"ϹRg>`דbo _idlrC+˃˄jiBYMhfv9ySu޴^d?vqݼ0bZLF u?"M_7nF/p#y<Lq//򞰿72gsyOE{c(A~>>YϧWJ=pEZ1WҦ *[v MN]mαlu͘{OK2Q#7B>qT.\'z8 Yn>/u%k}聼,cY 3l%qN}Ns<-uE_{ܯ__d:ڵeza¾I_績 qzO0Nqhqroa3ou5_7 ޺ e*d@6eZ_ǣ^*[ROure[)Syo/>\o΃]s.k!0=3qay.G;+u~S^1Kxv]gD^kS/yXoMca뇅_oR1F=x\C`io毻e:k+׶Q?kHzNi'vat I币Oϡ:2sqM5i|tygcəTgސ=MӺP Z2bZ[We_ry~GIY&ขiX>k-q ~ZjIvd\|wBz_%5+9}xadaW LГ;NG$qh}~|〗Gr~KgD{ltϻ_c:4WO93X a]D?ܘj4]G5u`Ӷ-ciorqO.vF^\.$ٷЗ,em0JmȲQˎ'-ے]g&\x~p o Y/b=٦=A+`K ټvu9dQcbKFM/O+[D;,ߺwL9Ao7_ץ`ݜ#R.rk;.4Gw'Fz:Sl{*NS}Dޠ}x( ɽ,Tɭ2WϜxa{0WHu륝 ӏEcr;j䤔?9:KaץB;W F V׻]+KѤX~Fӛxn;ڒcĽHu8fG?~g֝ c'>MVy4H˽6:%b]]_Ɖ(D֢<ߦnW-dQ6f{O.Yqc{Y 63;D{+$g.3Eh>Oge2Z;j/G=W-Jnx4PSM<|2v.Pۭt\Ou)x7& v=txfS??6 q5G.(_<_F\YTvv Tox?Չ/Eo7~{uќ9A]܁uð⾖hY)xeW< 8͗X29fs.9nӆo^v pXܿ۝nxmp]Ox\ xjQu %^v9ĆߕxtvJ.M~(%^g=.Q. Rud냞޾CsWԇ~JwO|f;5+Brۻ1^uqWEMnx=ՙz:la/uEw<8$ƕ (\/c5D9ODrIA| HCSb-/ >z[ `x( /:"xx  B\`ۖ54کDX.@{nq?Oa\ȸ9mak"ޢ2TC8_SPx}:f.xтb7Z'ịy?Ң'һXǀX2CD#[xݹZ uי}f൜SX%׽!Xӳ-TS>65H:$s S?}+~uJ*H-l ˿ϭ._5t0֮?^W>}_tG<0#]87x>h3_Yė=G|=ėqn/C_bڳ0u?\ޟ_G5z gjNT\yq:Im_O'C:Nև!f9h"?wro(h3o/?$lk4LƼÿ,e! =՚__=++=b<[u|{ C1G {BC9ꆊסWe1@|:YeGs2cg /A':~c݈qܥ0kOk%I˾>y6wBܕm=wA#ƾCD<.3ܧ?/n4q~#>so7k/s]Ax=.ƏɃ?_/xNx/`먰E|[2_&_ۍou>*_@|6CɠSA//B#RǪ 9$#O 4 8~烮dvNo֗L9{Rz¤MJw6,*<#dy)ۆljgog //>\:2P1a1=.!]Nf}9yKVXO7cZi~/;w&!Ҝ{GR"?XMJsEGhLO3 הi]|#ׁV_ nD8}D;^TSg8O*db۳[lW*{p]nG[Q8?box0 qVTa@Z5%1*hN <|_|ZՕo[xuCfzm[={#$ H-'1]W+E?5>ê x_9q\zѐ(<0^u~#3׏gՂ>~ړʇRd,?6-;j~NrF~99TH}NA2 1tL.wN~ R#6xj~=Ac|69KJAh{G/Ԉ@; cMf]+{F=xϸp}3[7<{w<;Lto~ӅaUZ3uფ~FC|gp_A _Zk=\CaA?9 e_P<Ư9,4FcSS)xF\GYHMWBVnAQjmޝǑ*M/;5XUJY9[xdfnSx}H'}k2^YGVu7խ7Ow.?s>ޟ^|8x=Ìק3^O8~x=i 'ߙzAuy]\_Mo]wDIDЎߥQdsxw$p/p?Bz)- к} @u~ x-yxaBdC{\ӿ;"~rȦM'_cx=:km=뙋-$ڌ |-%'Fx?zM/xol]%Bk%rkF~eV!)N%jJ>>$sI%T~v/o}|v{>dQCgs<12w !ݙq,! 1C|i#nU!?9]y/;s~Q[gĊF\{5q5!y=._]\d:3R~<8)]^:C'2 sCNgSCn]?~˻|Gx"9#ߕ=+ta>d>4#ϻ3b]ݼ!̇xm˙|nt"!q!5ݍA,rwwWp,ŸP|q R|3cC>]UWN c!~A!!T;u`s93z8rw.};S zcAq:c܃.LS0^wCsd>dṠw|HV{CLv!' l>L"!Uynq|H^!3L `>DVC&;޿jCdV0!! ]4qbv+d$w&/B}lܸSG\d[Ge-+=j}Iΰ=5~ m[ݐ",<ƭ}edA<.:y4ZYgt \]β0WKƧ&[7sCeƬC,~<{g;WIqOTQa?y_l ?L{pn|'`<ř]kp?0~nxN:z_+):zԙ4cF;o`ry?r7Y-P^vМElTQ3>$l'CЂ f]yA^N\{jd;Fwڮlw廿cOyZ@=*yB{H׾:,}ֵSkr2{i,>]ϰ)ݕ~4xpj'=2YnAKzV>Џ_Xwߔ[<:'IFy(| ޿NYr"x^,S+oО@M@<(I-2. {Ahg-`=~CyÏ;o.\g"ehW v_z^FNOMgAB}xG2Nȭsdĉ S5yQZ iə3+u> {D+UvE:>HZz.O]u]t^j[Vk%F8 'qXYO'?X>)pdSVe_br[J?[,q! %Ndh ]K3#+8X}'zjFf1û^M}( k,~E|[>|H}O^#Nm/!_i森fO~I-uV8/FSiu+g3;79nJs3_tyH3;u#.{bboktr9Ѿ99ns߇\P9b,C;#o3lo{Nx7OdLc<+KOn` [p;lfXUc g'8ߗ7zs-gZ/|3)KT/=iˡʔ'`|i[&[CL?Wh1OQ${RsiNˎI~Cn ݣFG?(WGy_8BF d!vnd޶g7>ٱFH6A&h|'yո׸ iȷ}/F ]H3S,~g 1[Q> KVrQψ租 @.Nd# OG\w7EY113\ZܔUǾ{P؇:Н L'9>96.~[pF#ݏr#X_/ȢMʥdm'ˢT|`4^̐d"rܧs [\V2LT֭.G&/; mrˋz|oG10?aoq_hu5n\L:Z6Å$E]U[mB_hw!h.~皎=Ȯ@*zPoZ~ʑvAK!H G\̃w"MD|;)_N!ۍϻ';<.C?}y=#Na=wI|嵦[Doz7G ymm~yWȊLfGd Եw8UGR5!n76Fi,<4Gn _/`eNk\~ S<ˏg[$я}L.fE%:gC늦2q\qկZ!yl (OY-1!f2#-K6q!icQUNh[!X\9 ֩ 2 !`|!㸝J)Gc9V=& 2|vqN Umm|Ln 򡈬69>}#Zd#KOrQ^a]\w 1K'n'M{[;ES{} ,zdd*Yqk9n31Q7qBôb乧zҊ#FtoN&˕nXEAo]Hz6S_IZ?U'yp[_ۚG_XA>#J"0kj]m=,) =s=lv`*>_xLaO>+׾ב N ]> A-_}}7}f毇B:;>=x,w!-x;1 >Q&~B=[!ߢ_7@|ӻ% }"3@ּwaxzHn8}Zw<*u¼1뾆_φj7毧f}_q9u߽W~|1޽7f|F0o O_{Z8/>:^|)_0A7GCW1_|/uB 6n&_l =a2_~9a!h/q>8 瘳x._=%  SI00=YxuHcfzicJu,R#?Wq~W! } ˁ> u>}Yj68!zn ׆ڕ^4nC }x03hԼ։Fujm֪Kmb%x5 h_~MTs;gSS?eq]UgByH5YYOǿaCc4=b{]=ݹpKSZ@1ivͥ^h7PBɗSaWMb\x71(|1%[\+s k0%(/Fy;S] +CQCok4tɭPZ;v?]Y4z?rɜVA~377g^N7.8Y}q@<.5xAn5۔Gzx_ú~zȿtOR ,ro k5X?a"} 1֨?>7cKLfۺMtbsMrh|~?c#yݩd< (9CV =BE~,ㄷwԛ"TWsϢ8&@3%qIYQe2'/)I;UmV׺K?t@;/M4i3Tl#Qߚ+ߜ-ɛK[TQл)%S|lFz=}{ٴs2[ѓo+& -=dWWI؍kcz$[8WlD+7$_dkiYJ˞rs-fYZr\".FtʫywhC?#ߎwcZSn| kdwh֝C-ӸN?rީo:Ri^!=J{EaiWڣTOi~oa/=ւ=zD= =zdI?5T ?Il#ѧ-v ;l>g=lΙ?^u`jv=e%F} /^w;/li^i+}"Y"}؝Jُў~}KGw{tWءl^>;߷<+w?=zcB }/{!7A/o?k3Ux`'iW7vۣ{EZ= ۣ`{g/2=~+Q/.wE |L3ȱoǬiwi ="O=̗G:pDsqf{t|N{X =:^YQ/. üj^Yïi9썾H GXnσOQ~}l#}5iUlVfx?#* @?W>iϐ =ml^RyzRC=NN4=zKт=G׶JG82`ѷD} ۣ{ް=zOKawvHWTy+I8a޴a rhHlzG}KՏSO{}vwkl‡+%bwmQI^Gכ@!rK 3ʱdsk߰o9\nh8I^ Mhӣ!mh޴MARu*95!d>G2F40mZx"d?Cn)=d389輾5-5}Wo~ݠПƧL}5ZIqIg)=v*{=GIT' a#dzґiG˘a_ͯbWr{,#~^~!./o^U"[پoKoίO^^qa `b4ݵ顒Nw;F,{|lM1KcOQǺ{RcwsY:-_?M/M_sC׀~7O~uߚ`ܱ>X\`~Ўdȡxd0AAbMq;A)}39{C9&zGkQi=oI_ܬ*Ǹy%~7.2F _Q!+ƾן^+yo!ҋy~EKǎj 7B0N-%Xwsi|ɧf/iYϣw^'njƛX;=;rxGӲ.+/^65P?>kt:_pͯUoe4)}涯Ao]eо>vOt޴UF-%i?8DG3jU=XFTOcKNvJushzR~نV I:?_6lCs՜v2K7NJ^N<׹+iZKW:pn]r|y@Nm57|wR?8%D.|`T-RQ='Φ,q8,/zl&Y7~+ q=yk\c3_c{ 76[F׹9N)O$5ˠC|yk,_뫟){#ׂ f ׸cIs~J@x36O4{2!;2K_ſwiw^ X:\E}5ȣhX[}MZNg_ p:ƄOT~?Oxx.a˕YZ_%yKӿ 8}_r-ߐqBgn9֯j";SAn/|jXZ*^D3uoHIT/HyZ`9g6>LJV8ddHb"(Z04_kd3oӖmߎI Zm_i&Z[uIJO. [H+kYCg_U&g-ԝkWD'b܎8f}ӦǸ3yl/e6ov.Ԡ?>;#P8GMWOGy?m%zX(ܸɓ}hkmbwȟ_zd9hݩ_R_*[sONVųIZ4qo.àߔf-ov޿H/GWWvHwZ夝R/>ziJ}^_w(WegMU~5NU+=GwxA?f:`}OvϷvw Ju"{| YoqS|fA~BSn}NlIweMkl DUر>oh ? AL^HBl|E{XoU狩CR|oA;X4 1>MA/{R8ßN!?z1wS3Cky= =@Kk<8>_[zwBMO0P}N!w(?Ca}>};|YL+zzIIw(X&>ߔy>\|wb}Rk Ga{YCun OBU'ս\zyX=K? l ڇ>a=D1Y!c\|_|4YO ||x޳@ M͟Wy@OÏw}/|Cg|CX~|Y*iXoqͅxƼD?!Uތ}t,Dk?ɥ͛1hlm-gnqђl%ɏ\tAESea2%;w5`rw Yj"V%'>mY1("^`҃E}>w\>u#?QPPMf_u?3!LCt72)Lvu+@SuM3 {$IVi Qv f('Xr~fjt2[1\H<<*zuAdG9׳1,l 2YN o*}58Y=R'w͡dxO PH}w}m.Ӑؾ+G+o[x.r?50~|zwv.#4"dV޴J7Nl7LiW&t,! qA2-bc4{9*u5?W,5T&,eqF=Ox,5ws;}baET󵇡?~.?Gus { E_?>41_OK,l,5zϿr4PiLޝ O-g"E\(%çW)R^U?ߒYt6-&r0+Aӕ`Zs$>䝝}'Szwv^8+hπvle$YR:3Os]q.on(}-|XV꓌~dr0mmzS+$]L(OmIJq.Qn'ƗGA;6-ST[Kw5y#џc'[W_93y c>YNO69bPC2j-qZvL-֭yyB1W,,첞oS./6p"5\|x`~"066q(GKM . ^}2:S#EGMV~<2)7 N #G4ϳiL{?oJzƅ9%msΕٵkDZX#<^{U[\~fy?⾭ myWGz8TJ1QķEys/|6qhlOؼt$O?=tM3bE$5GvchJX0RQj)ee!e'枫}U"z^wF y\?~2zrRqJ1aϠ]Wvq9 [QYoW%y,C3NR&]Q6-ﰁ[ZK(lJq⮴=OԳ)kg9`"%.#!bWCW~%)Jyw`טӽu3P^EڭN#߸#':8&w28J8_ci9`E\!ב>gQ _b|u%ڏ-kgzûr~5]Xl,"KX۰KR֟.l[ 2?{"n3N}brxNTkMԘvw:\YuC|p=";W?ȟ-7hm*(iʛQt|,3/ʓ(a`A8=] Tkn<1 n(Cпj< !Mjѿj ~{̇܉ \r=},<ϥp=YSֿqr<iXcQ[TJ=/>H}Wןoс'݌ݦO+^SS{ip߮2ǟ^u%!~x`:v"3Dc')J udCŸ \'tV_@\(识 z } lf> _Fsֿns/u/w J98scߩ6#MVm<⁵z93,~^њ!t6[#Fӆ(_WCF)s*,zwl!>NީCgxK>E<yeks8RS%e)a7-}>Kj4㠯 gqq5f!GX:v"~ֿ~ޛCӱo!ߘpQ!*(߁rSקNo O @qqƹJo<"X [ "X\w^8]Z7|]Fx 7 _!֟<7>CXRR냭o)b`!n6!J?gG%^02cR x1A?-ɧ^g0^z|E3^wbQx}m e.1^v/eX'&>+Qxޏ㓇L3C b5u?&up=Q7rω$B2k̳ ^f);d.2^{1~R`O3:>ߝ`}#qhQF;VdՈXF-Gܺs wBx1ŝ,zeDF=N0^+ϱvb ċ ?vGRRsuzb|U@ԃhO&9=ҩθ:_wՈo)#nf0x[gYa^`C|j #x5O?we䰋a5qS _jZg"?2مO?jAog8x2~`{vblǾI$~y5\XLu;^;9\65w&sT:ED?Ɠ[ S54|{EQt 㬙欍=B) ȉW8Cpc}_"3_FoJ[m=mP SC?Ǔ(PPU+֒S&K.>k\ozCǻߒ<[y?R7`6h}ITo+\wUʘ+,@4k7ڙ&HsXL 7ߢ&׼r Bq[v~a> ;/#MU펎O !zJ^mu%o߮&;edE㵭K::A+b*GqC8A'tA==ٌr (_Z?F$倵h1nuPgPq4}? ~9-d]JƅW6Yn;x'qWI^aUa udgD0{ox ?uxy:!'C=m!:RsЖQcM)hkq=kDryk-V!1:\[oА]O&-o\C>>:}KvYh'A 7P;Yϗ_FrROhL>Q*|ׇG6 ||)"v? P2>ߗ3gx EA*D%O|rY3Mj|_4;BƲ>ߵ| 9'ݿ|-OUWa}Al|;A"L{ nZ@Hz@ϗ>~u7{vLo%MY/qJ>gR͎ "NoY(⭆Sa_' 8_ 2AX&(_uh_kAסA"bIXO,PK+gwC`}>H>˘oemY?CT86??qoZ}8NR_4ay^40^tebr_"-xn:u a<^/axG|ם[% P~x;_Wxo8?WAڧNߙž8uS5$*_~f䣁m-7b|U ~>(J0#y3^+_7g eЫvcNk9g1^O.v>[!1(c8m 'IГl@{৤m '+~q[C" ,5FψS5'Pi* <Yb,NsW_qlxF5֫l qM^wY&~п(P)≅N^{0^=Y3' >+ `ku׻MuCN~m䯓䯯NhwF௻ ;R~3 $!`]/ޗ?v!_cZK_/s]L̲_[2/5.7!3l}ܘn P:΍wXsX 5ѐ⹌Ѱ/ O h_Kো_}낦(08& ?{sO3=hC#{_Bk]8oAz]gא,fh`?6d0|-kB| @A_z3ud"ק☿._,׉85_]tr0ޡ _,,k];(:wsf/W'bG{59~7WeS{/[39 I׏[q4ot3rgJ\a N5x?<sspu}2ىGh~u,I2FͮJzқ?ts<%BJz`lk%9|.ئ}' y JFD1j_z:ޒ;^͍C#.}>M毛7f ΙԴav1=p=Rc௭ ]_z~"חVc 4c$Ki~Z !o' B]e +TϗQ1~ > !|'sC"NK0H/D|h'+C܋!sKAo&񿕁C1bg#|2! E?jy\b>y'>3:COB-!W`%u;x7rW׫br/[?·n'Qz2b3 "O2q0 ր4a>dB?2n?SU$E:Ct_&V[px~2)<Ϣvo̷="9/~$I/?vaq2̇蕣 IsM?}+2u Ypsأ#(g_769 U!C.|E~Mأe3 qq?q@?zRxw) x=yr6{,w.x}6]Wௗ2g둌8\Bx}zNL;f(wCn0^9c௱B1Ͼk7^^w{jSE.x]l2^@Cp~|y=qn`nd7_m^:a<Fu5;0䯗x+뭯:]SC~@ >ⓒ.km's=9 _Hsmy@׷~:֌&_;#@=uǑu3[;_WJ׮d母1}oBZ˘~ve"oR gЏm9G2=ף _݁k _z>vs0>sx>3w-/O3g!;>O2p#y`7.om?-6U寰D~zG[oX'g;/WןqM棙;=п30Kz3!u_/`)+BzMټ1|=qA?,(obCOoR1~SUh:1˓u;am[_"C9vzEAZA!w@{E_1G uZ \+TyC*4q\_]y>Z/Ah }e iuj/ס\[/E5췱NC J} _AÀ:ՋO9Vׇ͑"_O<`_T0ʡ7$SbE8??`/`"UO!8c)/lGga͑k]U"εz: v_Oz *OB[ׯs5x<^K"z3x}95>޿׎oU1?I A8|&dk^fuJ>ܤY/dDPۂs(ց>Dꫀ"x}P!?0le?xM\K0~͑o-e}?^$xSz"886܍&:^HQ\Shx5Wa^4? s=7N*^EnuVc5;%5kjSK&w>q3tLC:co_fo ǂ طzH$`؋,+e=+lo?uvfו͹ѯia}ۈS} >j7'ty.b&^=~G ^oo^f׆Oa~_D|c2ke. xݞ|-4+WwC:oy˔a߇y*? \ dMƟ|o-7^24دb.~c Zү7vO(o~ g~?ܧW\MSyR?/k3d?.뉜A?vߐG?nEaq۴q4NEK|y;CܢЯsnsb7|<)j쿽'rw?Om8z-u3Qm? 4o^xZVͭ~cn'5X_ z/ XmRZ㵭W}qaٜul{HWM+} ` nVuv!cfψK^/ )7cg73O|<#=! y7J ^We_9cCϲ~,6ћBѯy?vw}7Wꅬ(x]> wTH`Cg(x]b!n9'!7oo;{HykK3ڈ?,x]6ey;.<~>-k~`f=_S5k&G?)x͕w!x";ѯGqiZЯ_'kg`f웅/DdqF!/zB ށuЗ`O{AF^l$]Z-nc'x3~‡,`oG/G(^cb_ $:ED=?wm+˲8 x]f:}ln,Rw߹ixMutn[t{щyt.rFzS}>g}*xN7eC {G/!] &^Ø-x j)~XI أ ^Wc*xl⹌xYÿ7突ն6*mB1t1dbX\:-erv@`gv<` SO^6bޱo ^f^Ig׻cAo ,xr?XͳlӶ =^}oЫ,LkW!x1XMK垂ב(൩$5 ~)wlEJ; ߩHßWzce ܎x+)k"u}%Cدbu_ga f>c`ey±p_<X ^O[K>'?'ݏEQgE ރAc:$H?+M:rpѾ7ҏ=vXJY?3r#3r2}($KJ5ٴq(yr]L)gٽfV&y Kp,EM*p|q:1.'>ʡ;&Dr}ՠ>C5<2xx\tKTR[`uJVöȹN].ǕܧjK 56[ւI߿wOW%ouEKkw1UPԪzE=>_1ӺMI8#,}&u@>&m>쬑4#JE gj|=]LVW==djDFA.j\oG'齩o'vAxgx[ #kU}F?)WQ9?xo r˦q֦ʽ嶻GJySx.n|u6'=}5ANFUwoM5U͇}y51IZ5TvWpM+2* `E}1'kM>h|yaʜ5lÛvEyG<1bq^8ŤWU=ԫ _t{:Gy?p_ ʥgP?uG޽rsջYly[y? G*cܘ\Iߟ x!w,bvVɻs閉:ScƳ>s$n%oG`oroEUBԗ뀞EK^Q`U~kre>S-]Oޫ[:HU!+K<_Fxd0m%K+Mq H;xl: c# Wa~c'XWj&OGQ#&>B_kxq/W.efGy7.`>@<Bp" ~Sv2cC* !{;)Z$NwsɆ^+ߧr'Ԕ}jqQ#>tX>srn}n>a\6{vf6Uzl Mp{Yz+cs+4grSoJ)xco/U?}iZ޼oaҙ?riӎ\_qiM|#[;Vn|?ͤ>n$5i{?wxqU&/A=2izThrڑijOyJU 9oh!/]ޗ| M"[U}/o Q*ض~-9oIj"!ʵءWWMV~T/XPJ ~`iqsWPmvm7G99m^<\zj@//eZ^S Z1{щCo%ƨqߴSjϣ2QS_sn @or~~D&}멶UܰVʼ_ƽ s3_ENY_prͶ2:BMy?!cRj~|WTQݴ_VA٪Iso`RPN\'+o[˅< iׄv7Ol~LQͼ]Tr\{y۹xʮ#;?Nc':.tYB[O/;#\j9weG쩟!)ulj(= ($>G%:ӧϪپh.-l)FXiz?clu.EMѭ9GIMfl"S=|WvS9 t[{=7R:3[lȅ5JMP "ɢ&uX296LMҋՆf;R[D΋'euLMn?PR[Ljlɷy?31E"75YNi8uaky֨5{G=IٞGkr+{ȵLkqI+xV=D~IG'!BpxZ]mj_ESK7Z3XDݧYzqG2ucD';z<Ϧ>jyCY2}"'D=Ǝ"N.z\W+;@N zT-]*|~陓{x\G65遥ozQS9[܏PJNl_Wͪu`>9?פMX80ь\[2]{Z_2nŒm;t^Z77mƵ}̴B{2)rmf`Ӟ۰H7A@dI,!yN;}/x}$pMZOtw DvDd8oVr'ݧO'mٯV\ҵ)_}ű1TХRюywshzM₅话1͸ M/H}OR27oQ[k"~d_㧻W-Gʿ6=9y롖jW*bQ ,[Tc7a?`7SRmO->4&Y}jVMdKϠ%QR7%b32Զs^)aYZ5'oR<任w^7~9mti|x]'XoyqHϕIv|wPVE{<}:=:Ygv*HIN~γi_nOUTNC*y!cYp tZDjX}?]^xޱ2?_}ߒGKY~7rqxGJy~iԹE=--<]m~ruxiM}o6N|ѵjG}9V !Y}L:i8$b8t)62{@g=ݿ}gvjeU+H=CmzyEj k7[s τUf*݅nYWٰPzUmGFs(@3c9e,X6kSHLո9WP Z}&!Ӓ廝^Yӧz1O'MzI>-ilEibX&iGUX~=#rזeQ_7 S5u^xc[ _:/5D_oS*:٥֐7De㔣f;{[!Rݹgf]~YIfإj[u&5K_Q]5'lj\YuyryW<6;~øeoco #+?}<;XgxӗvE;cBJȜ\=Lٯ׃ q]_b+*V 58\4~e6|OJ9D[ySt791fQ )]_?SΚ:w'ٯGS4uWW4\)W(g~==ٯ[P\\ׯ^Qn FuF&w:z]kj/7o߾4;⽡?n+z{fЦL+5n UnBXvORȲX=t5ǕzVK9rkkm:G>R7_~PŅ=&NL?wjtіQjʺ [EajJMv.V3y;(G4Sx.'ev5WyKI%O7uV xZigj  ׬&uUFg_g\ 'vז뻉RuwS_Uo?+)oȫpOW_Css,p՜Z!w:~ҝU)6o'i1u'kK}ڦϗfW42]M{K(ʳeר  7ϓy?zJwUYX28&I7QUԄV+Z8;V\ai7Z,_c]T~)_KIø;ޫ㘖s KQRv&24{GǚXاMjO N(8mPg>K2 pӵk+⩪z:sta! e]N^2?P K}LvD6~)&;܉uPCw}E𞴐rٛzV2ϑU\'^=\xLE/wqLo$gWLjqq1+Q5y?Dߥe"W,3(ArbGo(>VXUܝfu-5gLΓVjs֪Н.]-8'O-N3mY5Cz]MH9!倴__YiXGk&]N{搮_LׯMNK۟~]'*Rӯ?]}t:B~yFzfާ|G;~]/}~ zBO~Ik_,׹q_|Dnw~C΢_DF?H>Hs~Z@7D޿ED:Dwa)ѯO]vr y+F~Ӌ{S.??.gEVOD+%uHiKЯ~su ѯ8=F=D@^.mzUoݒy9}*HE_z]. 5)D.0R봉_w/~ƪ'dћ̤5yWϕ4e-^E)ѯ~}G6~rzs Eзӣ_&:?ў*G"cD~|%GF<`W?OGl>}}]U W!xhP[3_/E?.l:EAѯ g}ѯS_I\ יF6r1_mѯmѯ~]ףK~]ѝ?i_oѯ~zE~>Z{9뺉=:^uժt꾎ы> ^Wl4_kyoK'DFy-x]RIl V~r^ x=uP/m{8Y[4#v:jVP?FzmwCg[c>yY}\('92" > n/x}wx{x9~gs ^ǯ- {RFwD_ׇww ^Sւ&^?ruł׻Cy ^+x E_*;ta~ĸf?+vӕ8c ^O^.KUavvkwE?u-=?)Z`:oQ?yN%x=vwf'ץG ^[.xZ :^ ^Z(x>D~]2z"iK'U3nVn?Vju/gzw0mog³96YVNߕ PC*xMG5vWG&E?s弦Fk?RvHڕ;%xq9~7<%kuղMLҳ9w];~sܱÍI}M<[W~z59ob jPEjā/]yݘyt{E5yk]kHM.dxQ Nt!ʸ!7fw{VnyZR`-1'tFdo̗I~!+\~3vْiFcrO-~y##x|_˦PvY#w)"q~)7.&~-6َ8J/o8z]k}-)5-X_-3Ry#x-B7ޟ?.[y\' 7r:몍.wYpᏣ 變ަj֝'ɡ>n~ޖ]{|k~~`-ߝ\0;r< ԾI}' DzNWsX%iӷoߩpsu)^⊚bj*a33 p~ u/jӓ>ߦS/ C v9+^5=]xgu ѯ]ױWu܂~0I{dqO2]AׯdK~#5|#&w ~ݟ"c;J,~E~X@k_I!4/bDn7|_R?Я'1%Թ+&{~=:.ƞ\{G% ?Dl =uwч~m:.0C.~XDSځ8H_?o7zj{rȼi{H=ѯ7Vk/go>{:V&_(u7ΏA?֏y^R{of}ݎ2<7|zkruzu!Я~7?ע7'u%;ImI2_c~~};8_ Wþ*}FX/qF]^͙/;k {ׯ\g2 #p=3{Ī;7\H|~=t8ѯE$שe%}~Hcq?{_.ϕ'_O=ד~/J_WiDo~=ѯSzF's~}'/P6zRngԂ]٦MI-[jKd]d.~'T3QRPdJB6a{ Ŋ -2T.>)K?2^$|h>km5gs+H C-&7{UFWj<;!Ѥ.?rp$C=SCrf/*<7,{rDž`xĂKj3 |OFxwO|O|;' |`19\Fֿ!sW?no4'|O5'@c=K{*݁"ȏϗ-+2z򰔃/fZ\˞[ s,|n-=2qgۂ,v[]rl26<y<*@xi9EWx>xY+f 7}: #Ǎ|$<wEb䉄R~pa|Gy\+o |O+X [J?'lp9c{ )07~=nA?ٸd7d)%|OZȷ[li­%/z#kjx}! MNF#T[r*>Wz#2D=5xr=_nZZm?"f7^ufk^1WY'PZvyn ^?|;!xu5ĄT$_m<<6L5~ kWŁ5ˬ+g?k|Box/`ዷ.YZ-\5H&L.A^@y= .P3sGr/'|Hv0#ޛuo;HNy4ev<)ye} _d*]ƍ<3f`@> gv~҃m5xVr n76xdN.^O>"Tz`ϋ?lzWZL}yރ׬P1p; ?9816zu ^$_>o-x"xmq\z\sx\ nb/&dHqкo^A0U*ϭ\Tu3?n55e]GK&_g}‚&R&$辞*2[WWu^Mz~tG5V ;O]oj*_ sS5]Q9kx}`rN^yҫ` rjקͬ[uKWϣNCq9nF&u( fF;D 3KhZlǭ[?n"OAw5\jד <Ә頦ix{XMz%I9kx}iԟix=gp7|gV~&]<=_V_gf0KXqz)Iǁajǂ"9^p|4緃F̈́"U5K뀝2H < zޓukZ4KӯHӯgVy_wQ7+lJ4~}(=~#y/pPkfE_䕖 C{sujiQΫ#Ӓ9vWD*sz"uu3mwyW|9Vӯkۄ-5:"_f5'Ԗ55:/2 yF}f]:eϳُ縠!eG&~dz~]VxMԨ\]>"{4}&c|61|"dE ߳~kUz]~_\𾼦_.NӯVim?^P_ׯ_'Ij>Wt_ߤsNS~z zE; tk\|t{H뢺dJ\oWt{[|hFZ'] bU!2ci/6<7{Hs42Mv[ȋXN!:-u ڟ'#|^bY@kʆdT7g_Wcђv9&u@ylF^Pp@crǸ^ bąWL|b Mz/'QH] ܎Jd[7pu3k˸`܌|!oe_-\K]8]Gެc_񳱿h!q䗱<]7}ۂ{Yу+c}~7״f[3~  ^+*x]KPa1%m/) ܈F̍O/ ;?|R˖׍\QD˷IxIx]$.xIxks'u( KO|Xoׯ(rN1'ӊ>WNqWjx~ct{Ht9׻Mz{NY'que_+[ոu@9ѫ/t3;7w;쁒)RW}=\x}ܯ5*rߗt~v2/ksWg4珥^-_'G;ߑ$!oq&XO (.:{H?sx=ir |B{ <IoL1GN;gݓys}zjZ=S_UTʷIOvx= 5u{Hzmt![\SW_Wq!Ȏ>#xߐ_U#yt)%Kj #Ys —-M~\C(F"/9OKy^/)2IK\|g~|n%>:]Lϐ-# ROA8 m:(G wǻ|C>uug^Ѓ7J=J߸\ Y7aз7xj~_U[ƾ>e#o~ExX~Ť߀m7"]󼱲X7>,ĸa*;d3]˳inp-]ob? K7" ̅_G< @)/C;]U\k/P1Y]J&y:յFw=q$ɦZUΡg\9gp`M9ϩ*? ?۫~uK(\U ze/vLV.,;Z P{7>WMYAsnqYtxOrOT?|c7駜j)U^R_>P4Lm)Do5z9UEͧ+Gߪ#zl:O_1g2Kr9m&գGq,TE3B5}*oj?ԴTEg_ >Xe<}y:tӁy->}ߕJoI 9K/}oo*|+XC\Q~JHeדo d2)};P8^pj_";2ޔy?9GսqTpD~lӌ~:a nUMjz#o2c+[zMyJ ֲ_9%IloX5&UN#K^ɔsϥzO}v}501n.5߸~1_Fs5utuYsUס!3GDNUƖ7%Ųg_ ƿ~}!7snA~)vq/_c4~u|۶b*)A~M^v; Gwjn=ϙH3r'iyAد?دF7>دG?8`OJ|dR-_tu8C&_z"naدC^3`دK~uu omCk=cŽ[g_.83?!ռدs`'*f4|S3[51.دc`L` 헉Գ2y̱o_bC $u>l?q]+y-&߉7Zṗ#&>-8v{دmGO+Bu3^/~͸Yϴ#˷fq|!k'Hօ81 zӰ_ub>F-,Y~%ߘ[c&z}>4R #eʯX +mM.u^mϗu7۪u7v{3 ,XC$를[ ^ϋ>yʾSgK ^8*xn+mU7w6r~7YY#,[xqx݇ƪtd1|hekރ_?WU5zf<7/3ɼ롂_akW- ,Ù/>h x)c&}bc[_{ro<~cb鞑O`!qrξhxև7\,gW1.'}knq†›'=Jܤ2q/'8h=Ax߈u+QA ot!^f0~cYЃ,ʬM$]zO87\EG9^4'elzy~s!=^&j^C-^ǟzeȇA-x26z[__`KNU2~q뉸|9~دTujwx~xb>kk v)#Ű~iqDςc> ְ?Xq]b^A?\x~دb#^fد]n}= zF8ask_~؊y8uew_>N ~672!~z[7/3x 3v0 Q3Su>bdkāX9 uVbsm +7_~8^SY^-E(_څO'%]?pbdOxGf/t=Chg]"O#>$8Ne31C/K8+|;_>t)d~= {kxDc῏Jx}~}JNuwo/?ck?v=2v o*o:vKBx|ylLA:F 9sxܬjb `_*3Cc)ziAy.#~;}C0VֱՁ~a=d!C=\vx~JL2D!n~݌a=WCX=޷^Gȧ7fkBkm7 :^ۯuK^ad2?8fyžORbޗ_;zkc|`^!x> &NT:;7xݑy bwҌ=2W )d9߸ {c>yĢoNyȇ:4e߄Gjb㳰j)p# 9 k)p9֊􃾞`y#Sq'~9]ߓ6+ܶg6N5|2?OKx5#7fc^s],C3`u>3⬱"0מuw2'Oo׾,a1^z$g ^ ?Yٱ:^;Poq9Χ:<7 oU]P뢹G]zm ^{jĩ:ϓog.!?Gǿ d??Ę-u1kmzg-x}iש >?#<|%遢__wXYuKW(CѯٯgBuq:.L-x]x|>hL} <'6.k^p:9=ѯ׷ww 5e jU빧o$ֿuX<= -UVW>?wFm1c¯hk8z/uSsG?j%l/_245y1 5{6+U7g>}Ê8@Oy .G~'Ȣf񃆟3<~:![+zp )yHU-tq=C! )os6oxSCP'^-7S"x}~\?5x]x=Nz4G<:Q]jIzQ^/BQ:K3 6zH}x]EׯʴGt0@B b}3/{~Men%xq/zwn[?#۲|*d3x?|+׻ǂkŐ7&vxm,=g7Sg^c5~8 >Iv;̐7vfף\krǿ5Ny8x\G&=h uaTyģ#Y3-쌁 mу乺_lXmu[zx ^>5I~_0e5M\8/SzLjx;e::xTqeJl\N&*_>0e/3NejoE/9x s.RC4.7uNyE؟gisucEk [}+-}7Hbgrg^]}AM<\ψs>zo'?lP:MWjB?S4^u$ =eg&֢L7ŃOj&KP49JY4M&k8]# }US9rz_&$xq08 Qi^G9kx꯽/eޫ^z)סo( j3($d)㒠\5.3P-5[KJ?w$oKqXd{Kƌ'$<*HgXhxݦ5\5SkxALUV {C|-j?nb|oQo G2Oā&=7qWr4r4j5ǘTaM\ݖ&U4&pj zV}毺Q 2^+gHi7lh`GOg:f*8w T55YN*H[H ϏS5Pyix39%olV5Jޯ P}4d_n5\[mz|~={M_y9__ח.:o su\u!gw°{Ѣ_gy)uC/חz_ nѯ-E.xtEr2>xWęv/|7?.ѯ}:okrѧDNBF!c_'e\fw_ @^Qd_w%+~SQwIѯ a]70CR\%ɢ=Dz{ ?z\ѯO 㥮_/u_4Gw!})kX k!Ⱦy8~`q)̷#x}1LJpŮwo]ǿ2#y ~ApbѯΣ3uѯO̐qO#믤Myϯ1e:7ۍDģ;_?!S_㷓؋x>׃DΟVL__2ڱ^GkxxW\Fܫ5npm5 STQگ5asK5u˵uT%k˙uCFK"IgYwi n ^W8^?pY:Y!ݭN#搜iR.q?G'^OEᣈ_H{2ِI¦kcNم4HQBCI?eyCAׅW \qX{{H%!)^?\CR~dyr^g:zx/3𸞜=㵅|ވ;6e|{] | )~!x~x+xo!run$ k^> I!G xFda~aI0xHO?ǸT%a 9QoepKc>7W $/>&p൷w {HøC~^Sam_̡=$u,!+ozx] >XEYY_W5!)&x"x}PΫC:8!g,͡CJNXdfwG =ө!=Dލrn4۰/$cC7%~D⨾!S^{Hbi^!u=;ֳw~=$_/[!rNCo?; zR ?.=$b{Nokg??M\>/6{H&,v"6=IJSiCVjQ=dKʖbq^(by,8 ybq&{Ȑk19%[F hWdGba\I _[]){*b0\*SN! =Xsrx;G.щ(Ȁ;ȋVO'{Hb@!=dgY,= {",qCJCy#!*)|+,\wXLy]>1zքHHT.f|uɉT ?v ? _c5!fq<&!`!|G_B8[o<6SI8? .䭳 kx 4~?UWba#o qf+Jz'0/S |r$!/ g7g3x_;lb>~6+|[&o7%{J~h?FCZχ5_G;_kOb~Nߎk@{ A@re4 ^ ~?$W/CN0fF fxkOn^_ 3-F~23xWﻨ?Dpb/³Ӱa1K2gbY(Cy!AqeƸdpkqź?7ކ%?!قH/CHF!MO zl&^x\ˤK׮W۪u ufk>zɥ:^/[o1-`^N߸ klO~+rA(x _?.W+|=_c> ;|3y3kAֽW[}}Z:uZ?s8`/D|pK(,y^w"3w c͂WQ~>x.|8K#^fލdĿ|2S;-xmu~ Sx]r̓-?߽P-3W m }9׍|No8|e :x|:'uJe^r<+x_x0fxmF~Pe rZ y |tf 8-<~!ohإ_i 1k/q?=k{ z| ^O ddOڰ<oOԒz#5}(|.E~G"kUsx=֮zْͦZՙnȝn|OK??󇼼dd䙩4z~b&_Ag+8D~|[H(򣏇?zэ8|!~= ?ND{:XCvFfy Fz)|W ?!L'ԅ? }|O/6y?d;ga~6n߰y7A }|O X|!?z+qZHI/!''it>//~\3 dB|֣-vK&!Z;!!!xVCs< HyRX'[8@~DDfV灷&p& ^S $dê'YB6R'!q%?z779gR V~nf:.H_ w'b7GqFYGp"!]9:{JC~tI\H1D~tY Haz.~~Wʺ~1L᳞owm=:z~[sWek~ox|G7~׆^A^=#em~^fOENݎ_3x>xl~Ҹ4Aѯף_[3_?b,_4/!߮=Z:Oog%O+#~4z6'raq3~]&|n~οPP 6]"f"_M/M1xϱKXz~] 5yElE\5!ED.~~ X/o|=R?i(Mͨ7Oj03! /wG_"=xc'}z:Ico$/v\m5׉6K>8=q#6/ǝz b|䛈 huw&G >}Z=0|fCo Ou08pW4Oe&cfNdS `wTcЯ}Я~]:RS}y@<5skdOWsTqueix]aw; OVP_7?])rxFzs+7ofÎgF??uVb[:~+/m؅^3'(B̃@s;c)x3|Oql^C|#N׋"o?{j}W< ( ^gLB9)x}=]^[ 4قW/?sׁ/`9tJMKyˣCW |^,_Cȳduf+kx,mikCZ70?/k! Mq03x_e/x*Cz F~'oot5v.+<+fïwKf>l؍[k˗)#=9ׯ.xJ7޼xt_^Xׯn ik_ =_"v ]^mݥu>"v/vLϾBJ:^/Q%ېYp%zu7_l$xw{#o8D#L~ND%VDYm,x}Y:/]4l!kq/\%Wi-IljG_IM YU7xqTCk `c_c4п?SNmwb\q6kA?&u+nW^{Qf6&uւS? 5ɧ[}ݎ(8K^qͶ{D Pfʃa ~Vc[гILmpu QDކo}^`m?(ֿ?[_dسOFzv|w)ECɏ~yuU>˂h?'uשr{j-bU=ו^^b/y ^Y5UKÌ=~~k.xT!7Я,[`Y2k;~AVoR|^_/I=dek^~ma%׽gbUcbWayC怳w_j5#^Ȉ\L}%.2CW=1M3;Klh/5/]~D6eWa^̷Yfkx:_v@9![e^M=c܍g{{: ^C >Mל:^\tbr vu~>B~}%VO&|$ز¡:^?y ~Ce2xc<+f5p?ld?<aȃgy?zo0L>(a-0 |ű_ʺee3|;WSNy?JRF!x}_ F:nL~5ٰZ WeC*5ҁ׋k{GTsB7Dc6r9dG Ȃd}:%8e1iuiΈz4u]z4xV\__&-eϳGiK~Y1l*m]Lղ[^3TQ3)E&KzufՎ?Oo]*M}uD rƬj+,vEx2Ȼjo9ŸUsh!dj}ˠN;C5dUo*eOڒpm~/X*SQBTMSOT[v?YR.ƸzO[e=U|ۿP/)ƹQM+62iStKkZV/MϚ?7cg^ LsDk4?6}3gܔsSݬ'A{龧uKB/=اhC)iw@MXi٭\=shw52U!b`$QN. -)~.-iW}{o9s~EwG;->%JNQxҾ#5gݞ+J$5z#&4vG84zmS.z?(zq.5\f5aғ4WA=]}QM-Ӈ"SvioZ:<*ybҏ)L9[5oRY[:lR<$/;0]ٳr嶱-"e;ʼsV )1~zG 1C L[z>8Mui2ozD9Xz!jC{TUa= p.> oJ/ yޡ~Կr(d=Qc-ȃʹ¼Y%^PGnEP[}5wu1.OV՞;킔nL<&go8%o>kmu g4k)K|`pdc.sR+={NgT*U3g2jiޙ)y+Jye~7oQ{I*05 grR-&ع'4Z9o("٦ {~HjKyRK*lΘ^}ݶa.k#D;fJaʽ}XU&T'd5mVa[JȆjGO<*T. ~VTR\6t\G>3ޑ"WbZ{"/I2Ts'qȪn˼~sLUQGO:8 XvJ5ݚU_Ty9JJyn7X)oU[k>w3WӍ,-3*m;ϛդԻ~1Ր;ޣY^r ܇*Eo=UM?WxSj {PZ}\*zcz)(?B6V9U?*ku|v[/?X5u'2<<ȺD;7' p~0ϑ>}QAOyq7-c/7)3OIϥSOyĸa`ޥNǫuW*LMh:^?~;*pCK;7桬'?.rk[7ioݡVV+Ȣo"8VN3b{ {wԪJ&_."κp/n9ԕ{G`7ïj^Y+ɋӯ~uHUXPYx#뜴x{uevY\xGSKe|9۝㖠 \/3xFp^dU-yO V([ؗ4?v˒oLsG ?m]vsAeȣٱ3 ow#$^ơGu'.A$^fn[i9mHnħx,2kS=Lxv\E]7ڿ!^OӇ|퉧HݑhZ 8uy^Lsv96+Q.x6}ݎ(WC>}xd{j|zmI^f:Y-1YK*C q˔uF#C `ҿO%;L\ #5&$UlG5x_z6PkxisR]kvY"򨕷[5FxՉjegi7,2T rX>ղZ cϽ?deɫtԯK=hU?yx 繏)GF,I[y~SsNfϙeО*zS~*O"լ;#V_QŚ?W;!/Y/d2Faݺ1??I?iׇYoay)7Ox_ "9H#.ǣ>}Spw ѧcҏ)~߆VlVe[?pj|%{3]_@Eຣd]Zz MX0:VK'YI9mTwH%s jO2tT+|zX;kDc5a3mu }yw;rO:?j}CVY*enz9LdH+AF~O?9_M8Ǎ!WŕZQ¾\.lM')?ԻW.>s٢&:9_WsAyϋ >PTZ`/=~lX[\ʷJ ī{5zZײE-#Ɖ/V Nһ{'U×΢l M}}O^P{zwy3xs})S:GrV^?+ciM"W_$-Wix/Ѯ{ZXmU׳VWz5;jO+W񦼊D Ȑ*í4STrz஖m?o8CN3;6jjv(?LٛWhyg,PLq[9vߒǔs)<@F rw韚cl?Suc.h|KgTi(z76?_XuRYu-q|{cm z'/~uǧ%RI;(QWivwg㶇`p(~Fґ)q%EW8yIuD=^\*>sl>\U#59sg7dzdS;ڥh)ڽFvEZX7'^5~U|"ji|-xz'̯نG?#xctۓk|s wcW=5>筞csn-嗔YR*bMG 5?Uc_Vӆ6lô0*}kSguP[afqawP&EOo{wEi7SGڧs)[ Hrgh>5Jë ~7-܉[EM.5`*50go~pFsnw=J?C *j\ V v "bF ?{"מ1ɔg)_}kcF2ٗ2Lj>S]5j5TϤٸ_\-=7Zumv_rޠ%vnjiN_OfehI9HjrE&}K}K;rioR]2Aq~q^T4#&>Ϊ\>$;?e +(eWЁRI =}5S}|r MvhcC.a>t|j;./uywe:wVʼweI?g:N!޴u&s(~HP?I7 es=:T}thκ+\(?9G0o1yuߥy2E85Kp(eNAe,p)Z?|N^.a 5C=~vvD|~O]QMɱWK]7UVn˝tW_j>D^?%zf;"rj'c.P&-_Cipʥs}\ ѥO9XC73I;oA"'H/}#$O&}kK5i]W9?K%WĦjgKPΔ;֑Ԙ'*,>ZSnaa#⨯q%3 ن"yc^<̭R^YJ>tI phtYN6'ru\PʿKQs:P2'7|RwM'/0]+s1E'f6FcK *Ǫ<ءs:oͬ(y]&>]tloQAyyN)Z<>uc/'UuV!PkU.gy徯@̏yJ*i8Y ٗN%BS@8,YoC6!Ⱦ钂 m! 3'DѡbXWKaʘH1~Y[Oֿu#yD5q=eE':(˅Rm_޾CUNC2ϔU`Y5v= <PHoδej[-հcwrʳʦWox<"Yp5祩uiF [:M}ZFjw[%ruiM7,-p4qn#{ %_$&v_+!ʹDׂgS5wO}U[OkLȶLȕT3?2PhwCSA{DyunݑIMd&INi7œ0յeu⼇גu (^"Հ!3G *s(?RüKZWZ,oT C"߫+ӄ{[l]t9H >USGm~R [2Ь7Dfܦ&4kKkim<0϶ɘ{xRޓ"oPaf]nuǻ%NjՉ睬:]?STeeylتdf8в:sR~D>C.vLXMAy괪.Lmv,sFjr4p>hIof$x$LVʍ8^V8p~R65Ty瘪;շq|?]oN'>7͞ѿqѲ7gkܿdn=99s1ۡޅ.il+GM6jV *212u|_ѮGsmq]wep۽XSn3W}WĈJ/(/b=/g_yٯ7.tOGVk跳\+X?G)ѫ~ұ~g={G<3qF<L$=CҔmt'x`eQo‹i0I^x.|_fKA'W/~ij/xRZt&}(O\(˯ėۼ)U?_vO ~Vb%Ou'"yFr?jagHV)~Xx'?G\O^nެ)Ĺ;19:aYE  p%} }G_"l,ϓr}/~x1ģ@?1/Qk*+4.Χ>-?ʼnou^ekG G`vke6x^Û ~YaNo^#xtOC|`9+ BbŲnWn^_* ܯ xMT=#໎^? yD6?$'7X/x~ =Jk0x VyClRgkx+m?$xZ[{aÏH}V[1 ^Hż,vo/3~H$|uYeX SG xm(29iz7751Dm"Gq-Syllóm֖?|O3kxy,k^o }8mA^2aͬ| Y^WA2bD>0ehK)x'#O>ru^:?Z5^I nIOt~;߽jΒy\;6>0/w=b3o;g} ^׀o-o^䱰HzQ c^7c ~)-kxͻϭ} ^)?("{p}#_e'(GZy6s8zWuvlk\ ^{SF] 68_ SO#08xCc+| ^1 |O䏳&cVz|Oy-}0w?ƕP,88BYjHnʀ{ S Zyo'x ?_o{2⧬ 5|f,bd~Q@|P< C_6Я?}3օ3^,P][bG+ Rݹ_ߟ8x-s NOo4p?{Y~wfsfρ(JS9_߿U|X1u_dٝ~}n^/&hx[7Pk=TL2AStZY3t\f:Ck#d˼!_A"x `>fksu3|f<|` ޼.S-m#Z恸& cfc?c'x}:u=Eo =~S_K?ѯ'J@6oYNmfjۢ#֫\ NH*vLdRT]_.zZzҘ!YnX3ĜWjĦ\e+GxN(g^ Q;vo2a:>+|+ķzqD-}{㔿ʩ} qk9i+_󎓇\>!9wXIS]L}ңc?=?>O.kg \bkli#i=+hY{|]T7iz ϷE#sXEu<(qm+lHMqeKץ}wjR<%T:;9ج7; {֩9|asMQJ+VۊSmn^6~H-=Hyn^x ꓱsȷp,uF_>-R6H[/ݾ{rk[o]|v<\m?+9qR>XzW9|.7:'sc\TMSUN>qNQ m*/M^_Xy;ួ!S~vVʏ+7߄y"xN=/{e!隬0֯bXo Jr.IR:rVR>{qkK^!1 \?89f |K&q\}8^ik*{튲rͿs =ǔ?hztG_.rBy԰̴*_ujĎ󤪤wwP JUvT=6};:Yc&]3__tB_xw{J:_^Gmuz 1 27;z{H 1iW~v7B޽PE֔Glk_<_R z5v[z!BA&_-WF^Q|_yFqC2D.>~G7—a& ;&\׿?~c*G/~~],յy [_oy0ѭԗk`3 B"տ-د/ =~(Cد|gx^|39EN^sflQfe1G^~׮7Y`72dgʾ]pA ױv^B >5xr(u !Я ?幃o %JH5_?з$@< i:z&_y5g޿ѯs_of7~}znjlr|uTMSMOUhCVkfLfCߩ '*k ˪VoQ{(MCWM>$sTԸ"G{U33ϯjZx%R2S Z~C<ĝCU'se&c#Ϝ*?.WG2R*Y?(*\?˵uYj@/eGˑFH$~7'~DPq5ex٬jʔ] U ͹YȢ{{UO0ǕGUNƯrCԀajKDs3!gj\wS.2W?[uDM yӅ)~m\xX˪z(IYtڟUG݇\WRlQuy%Y'7uqY y%R_!V߽)XG|1"i^ځ7K~;kH݂.؊ *R]t#bbaccwb'vw`gw~_<̝3'g=gT(p֋Ql@~;Z1œ1M>oLz #zqiCރ_Yg(k+C9zU]꣟vWGAG/@JkYZr7߂|{9&)KPuti)خc'U:tG_ZI1e -͠Xk܀u|W]-xnm~NtfxUG8^8'Og(JwZSbع3iFPJȕ35iޓp^4cڻ Ӕ0#C[*!</ԐomB~7v?W7EswEi-Eޯ{;-L|L%% @gYQ=iy-IϠt@,Euډ|w!]3:~1.!;[}G`7,Mњ|brw^bGLW23HSz "c<Ђ&b= 0Ѣnc}wf|DU2)&D@wHxDxi@̷xk5b=pM/X C_UDž*`Ƃ횮:ӎ l÷.wmx~t"_!v'爴0p75:?`S@ȋKYNt,RTS]_*lWMeiǥ2&翓2>zxeh.^|rH|ʾڳQ+IE3jy%e!j) #CVb?d_>C22x?UУy(rysL^;_MowM=r2y-m[}r}> ^t\^7y+a~g,m,G<>i uVG'4u9wo~颞C@NyO'a!{c<`:5]͠wZoLwVQؿƾb01?5 r?6טo28ay !X^ކ<~y^L4&.b1_-O-~~@Z9}XA?k&~"JWп1~+?/ yDJ=taz.I7#P̆ 9< z?pc/m3!Nr=XN}~z6kgx=,/??H{*DR- 8{߽@8E0~?. )^A^\k._zOXL=ɺ^!wrdsސ.׫ g@?ĕ[M;@^߁~EZׂ?yRry}Tycpa7^PfeU֮\FޥJ.6̕C/5.,RuO$c}mE~Q7J>oeY^?·s)\/~?+b!/`=qcYBC< ?#J)vY^o%륂Ly.-껏a%7P!h7'#R.MkgC.o`C3 R?8L]ߦ1hT\F[&ZByc}}+XO`]A;Goy$)[L^&YN)y z%CX^XX߿^{px †uu/&}ee4K9뇴^+c~ulkKzim5,h XCbW_Z@^WqX F<^b}^_k~9M@Ի ) +.dy]!(_xJ, ޻_.[ zy{NqOHSﷴi׭ܝz !@NTcy7XzxCS;>ЯG*O_|yF,d`}~yܗi kNbyy-4},o8nd߫qQ7|9 {I}1Ao3>|z;뾐ב7p}# !>*׎N^E"ֻS gazΩ :2 7g,S>W"g*- k_@Deܗz={\^|צ' x/Hp:'`Xr+Cj50[װ+m's/` i 5 }757i%%zuc !>)קϰ>:iykײv?O*!k10~EIIj\pLj>:¾TcN]^\뽴Y7ݥ%udWvMuU=w|Ye8*cAoGvM>x° ÞN@ Py,Ж8kP? Sa4Io|ڳ {^\\KB>?f՞l,j3_;d{\MmQgx 5'{u؋pOHqKz m6^R3GsP\PSz'O~ڥV]"qKϻQhvev"mjE ȷs=ÃH_Wm<˅/?bs~j~a]'߽zjIoMҸF JfA}Iq ӟȪkiin~Isz|kJ:AܺnåLZ&M|Cje䂻 I>mv= ^]Cy '_u5(N)k*a '-5;f4{RWPEG)x~gzey~_m5ޥzk`Fîo 0MK(|&%Eq(AjBbs9<庌t3Q.=;G1Bx6ϯIq2@ҺGuރV99ol[JSl`AoPfE Än4pCUt@'/uN9QtzA:nF zL~΀jKӊ핕]-i^zՆ)^%fNJLwE.r|V#7#EErir1U2c 7ib?g _=#|`xߘ|ޝ2ru^MwQWlBI 3걆/Ad@0O/%#>0p$йDrX%&a`:5xX=V?raDctw \zOa?SvMa/(uzCɱ{ {b Y_i,zÕup/`Y6~ǣ7PzC`Ew'c/ЌvsӜEwGWէ^ >"(rTjٷ|Oֹ|ۺExU a8 J=iXzW+}ys4{9] u^yoG>;$Gu͙p/> MysMhUy {7YC_eDz +̚t`[9:>y\ak9s==g=ӳ& M1Ǭ]ՒJ~ 1f=6H83K %٫E#|tw[ʒẓ2n^Y;cJA0 u{nb_.K ߷{>h[=EW RTr|jBQq)|tj9SN\ON SRHQކ=vԬ,z!g"]狘aScV)ӏ܊N@9=3<Bۙ{bBįksTBF72tww|?݈_X~nIǔDxh8E}iki夯Ƙ|q^{9LȚ{2bJD#<fWRtM/[STkMFÜ柛 vIV_ۊ=>J"bF=i&\܃?Uih$5z1lIM?m<%7 jo4qqՓNspZ-}=|#4  #QWpT/=aۀ;<4[d <_kl\Ǩ`_ 6O܆Vkv@}ޜOezZIHWQSTڵF~Ky_T4tlg~轤A? ֎b\}M~zU#NW[f%w @282ڵܸ.tGUxs94oAW!nݢsDo n9jE_O)C]z>aX5>e .(0Twrl`6{Qi^}}eYVu#͊)Ѵ~ti1Q-?jmrU?;0?Acx?}M)z)n A(8g`RiAhP,>ČJ;iݑ 4%؛@êWe}QoyMo. mlF ] . v&1/.烾.]vb{ ˅i~E>~li0G<0sv)#CoG-GMCP\֟逘Z)֙rz^K^WP$wLU{hܦia儵e[ZnE3T-}/sĚJk=_~Lыν54<n 92k]ݫoe=zï}mO>5c/Lљ'DD&6͘{k]ɦ\y]c zuHse:Q Uajf8d-3f=iֳ%6/:?1+$vO/K)' U|zcTܥt-h^}9_3{"49ܰ yXfoQoELnrGyAlB}O:Romưm29)Oov{9B2ZJ,Tx6zصCʊw?7iY-;d^6j T}ڌoF6v/zƍ'IGԣ/n廫:նK`E{15+t;QI) >~`zu~$3t}ia4޳\(7bN>?yөSW~ld#rzumTZ?>s]R S?iѸZjRgrRcyJ_e״MP>sFUC},!yt# #gκXtU弙ե/c7J:3"9\G]X^&z%e7ǤG ϕA3 Z^Fǔ;-NF>yX1n#or,1biN6fx5-Q|mS a+U;Sg6oJSΆsm@a:{UŽk4w8+Ir"ѷv>z+CׂӯJ<[?ڄsm)j.8ݽv1gx ]魫܅3.|d߆WfeId6pr'&ks WT+_Xrau;͊D hoEPO)óC _;:ٺû]C#lqWgx=坤#o^:E :%ͷe;O5/P>ihe#YTUܑTD&μ%yG){g?Z"m8"91_?s/bO *ht\L9jP^x&[l൓2hY UJl}V$mk0:j4jkgyw}){6m{q M rcsB\vCچvhUp1үc:&f |=23#{#uh{eΆТw,&J(iffL-1o3S߸ #x~&WG'%Z3X4/ߓFK'}Lirxy/*̔޲q!xtj]{kKN]^\z+0bskc?.=v9K8Iu(<,+1ܻ/yJH^ۏMF.֘tc*,6S(V$/G9z|pGQ=ؔ9=@cL%cE@/fk*8G _2#n(՛y`0K,AF8IQ֟==᧴~p{39kׇ%!|W炆"EuZUB FNJm:MRt ]QôƳД ',I~[%w{C3,~;@QJNjv+!9wr= 6xtt'_q0hq鯨mIК B~o@M8n(?1|v;VGx9)UӴvT /zԀޙ]mP'#~5OM`ߎ~lϷ@CoG}m{:Ԝx//#vJ@W+Z-/KuMmur7s.b,k~.ֿI'Mx =:пC_?2Iez*{ N^ЧÎX"\zþ^Jֿ޾7 vK п?%ЛO"(ܣJ5%eAo!u7 vq:_ߠ:m 욬'nvzy_a'B(_jsBkӸ/T'k#ͤu>+}y<%mQ7"@: We@&7u!E__^e'2,c;$Hw;W}ɸ{q=ksz{:#v.{'E>\>ةLz"%!ω~`G{7C)-An盀 ޢ}bN'&n(pQ}T<{g:ck__q_R?}~WPɍ1^C+D?[utd˼-=[3Mבٿ.Xfkrץmۿ|d%}TV#+=۹`cuPY?i8_ Vlzۿ~;_ÐS7a7V_G~'Z9hE<ؿb#1귝__$dڰS;@܋9eװG|59 u4ۿN{v`uۿ> d7nα<®`-p {0/Fuq>umlu3_A6lؿ.׸/tF+ =nJn({a;W׌<}G;_7g7l:۵.Z?_/!ܞ_;wGm^D (n+C` @{@ؑkr76{xcؿntÛ po0W|. Hk_ؿ >ab{&\ߐ՗SkO{_&jo*Yz d;LE!0P(wSoA/6 &azO*}lZ&WlZ/ۿdCyOP8 iiP΅Y{Hs";H)8͡H_g|gJL4W &UJnnm7]sv^N^%M \P{o9޲C+K]8Pebt9J\.opc?rñn4psW G';o)80*v)9@r\{',Xng5;5y;Qx}6)z#pxI.u-(ZѹkPt 58jGNfw8w EtL:0-'ӫQ5bf33n]]_WGzGknưs sx|>iM#s&;hVR告ZoQ q3QwܛlɿR$,1K=?5ޫMK6:nU `ة ELi~0:4qaufz]cDozExJr_a\ifbٴ MM%]~h? 5 )fЄKf&_EyNaueԷz!CWtn1?: py[1r0UN'f~/0+{GucQ5+\g tfRLF߶/Ҕf='w%FtoC;ˠ]! ڶ3g ~]Nl$ jxT0J9n]@oMႳ5DM>q= ?n gӯutoUϺP\y#4ݗdFLWu>{z&vZ=&d;gՠUNF>'?mӎ࿓ڌᇋ/r1^07ȗAqOoD >g Tv۶zlW3r^_`kO8t]y&M~9!K>O-EUG|w]X|7o!}Y EpNS$ɼd{I˸LkWvi4Ybd#OxH ;e<1a+ r,Yp}mf~5\zD-4 3WC?? ~3X|}7&.syȠ!s9|9';\10b0Q[%!rkPlBv*by:xs&E4|ZZx}Pӗ"K|"7/~1CoL[Qez7eIz%K)P S>lO]Ê>l[uMK;bWBw.Mձ7Qxy)PrP rҽU4F+TNؽ9Anq_Z.w{d>LXF5+M+?W8+3Љ@ҿ~x^)߲){_Ѻ}P:FSFMN=iqMCGr=N3raGƭO!|Ei̎]xsVX*k su7;كtsOH7 >4%!~Cd=F~54VAs8z[?tY 3iZrPonRd΅F'dOa*W43~%{_ySSi3۟8oa91 G4;ӽkV|>69cߞFgXN%}7>=|I8e l?P=K/߿|(sMoX7۫):83:N7:L/wh=ζVag:>}5irϼVl:m\pd+2ъ6A]5g݂aH Aק[_׬>ݗ9PNGIkPS؏u>&1Z^4'|auNcbV{vwK=8{{k-Uߠ-i_7j:rz{u/ر1kpz_]j0لxyz&k MepP89j7cݗ"ǚ @t@;83򮽽cK3Џzujg[ow{#X~/7cXE sgFQAFO,[}G؅OF{kivbhRR 7gXuۭWӶښtSW_Smp~ s9{AUE:_<~}2 lC0NG`|GouKSύ_H~w>V$C D=e 4.XOb<#Fo#>YԳ]%7|7q=|þ߶IS8OG_Jq0<5\Md:UVN/RVsa|JMq,ޥRO_E}o=wAAQe #*l,7yƟ&ʓ>>Oy_rTc?aQdˉ>|.\z~ruO.coҼ~ވ ҋv44ij8,ס!# r2d!+C id#7W2\?u{=K!ZփW(N9p žj v[`O: \!~ȻD+$رNX?$C{ G烿D_gmN|!/~Hz?Ӂ=Q8 dL_ qɂ4O'ϣY?C|`1B.~>xn!8:C.糂Kchstq|yaz\mЯgO+!C?$C %E;p|^$w`(gxkCp{)k;ͱsH{bcٸ ;1-:G{K.C?: QB$iNy |=.\cH'y׀ ɂ_qӌ_!0\p5ZV>%$ۈ?[Q/ A/f4C.uTkK\wta?_+"'`7PGTD:kLL=~HП^_'0XW>ԄR|:i龁nRO;v_43p4'Ene% ;qы?zjp߅z'Qݵ_l[:Nuy}y(Ҿv$ 39QbA1C^IWg讧f,KgZMi@WQQ{.mWLCK ?zp:/iY{#6t_y"1>y7ω Enj ZNgmmajv'־! {Ѹ3g,S)|ʹ[h3Z4[98 yE )Ahsh$#wx5}hg5d?[4zǓdzs~eLf" ouG~vtg1vÄ]iJt'WRjw\5B Pz~V6 Z9; =qPO~f7Q4 kE\>e42 ?GqݚXEt`YYFPnUJ.@x%ª9Pހ#nqD9å%tP=#"=E@G a- 0r5u. frLCx]$ <pt~#O&\ɫ(3 [}K+TF]ޔV.ZwX-j}(_"c\t[m.XXv6þG;7!G\b7Jiy\1?)=y=$KĝMy-WVۿ_\^嫊l}}v!c|}S#Go$׿.9|}=]dv$YOz9:G3 װ/N]إO҆-++X_ ҩ'u5 v¿67 #*^_OOKؿ~댻X_g"7랄_OF>}㔗hߍ7F<$@1W\a==G)~X_7+2FnuIGDa}ݗY )a;_`}V#cK2mGF /gu.)p|~K>y"'DIi>׻X_ѿLH4k`}3>i8_Տ8H]!'n`}-_A}ܓ=\g19>g'3#ލ3K]m,ؽ'7[*Ҡa^uyC!eIn[~+a…7Xc>1lښ4h*Ҙ7l{n$?9M)0]Pb]9r9rxkt{>p^N3rƋA7"VlA>f>T[ؕNO|V(H ҡ7i罙ՠyN۲(WIBhKߎNgd7a9\*H =oN4N1U4^=x{ ?RL֪nHttwg:Z?Bh F0ljzu_s8|ijV4\fgWqvQ-՚KR*6F{#͞<H{oKmOlwv qhG'q"2B6?;ӠvWM '/oO֦dd7A65(hmʊa~~NT]Wͱ>1TrL,cBYb0* WJ\+q%ĕW\p*J\+q%ĕWJ|S]2E?__Aѯsϫ\K*-(e֩,_ ~Wv̟3RPPL[?K /&‹[Lxi֭7f,o⛙f.$7D,1DD!yHDHa$UDzF"=#HXg,3,~׫T#TGQ>/(?pQ~(?p8xU~_8W|+xREOW`%eQr\ZMH] =8r1\)c\ *c\r1Ư[1 zѯ\'_O>/lG߯MGt϶?]>%T¿"ߛO(|_o-o)WM h\eJJG=ml|)Wxc_'gQFO|/뜿l[e) 3h[mKe(?F>Q>ga; ~.J~_Lş uS>O?~Y9+987_Q>珬C~/](ǾwoRJK%~^'TxXq:**[֟Y=~{eY|JtL?]ߪqT?ӷ*?Um5DJ9+*G*)ӟߢ QևOS_{Q= irE?t%ɝopy\w~bcS9FL[DMSMSMSMS;9Ԁ7Z+ai(~W/Q)Q,mgYi~U?RUsG7.iۯ_|~RQx=Y{cߢ[g_5Ὸw?ݢ_%{H}^1|o/t''U@wb/NWsr]wuU~߽?߅9}_ ՟{B\"/r.YSi8B.K)pd' eϟX UFY?y>?U(Ye& 5QSa% I"x"ph9{yzs袴1w\oY-@O'?Wx"CO/Xe5jjǚ &!Q>GoJ(J(*J(J(*? *}J(¯[>Pd |#Co凊CEW *?TU"PO"TdL aHU+@8*h!uv pr4t99J ;U}l!Fzz999:xN\'SAWY@bN `'Wbzl NV$#-C(c)o '?'Glc^BI_)`@Du{1V?o-3 7PS qsEHyEPmFN?rp\9zYzU4LP[&ŻVPQ{U [J6ϭ%"\5'SMP/aY`Gg.~ށ>E%wQkx ZEs{ht{)#?p/&lI􅃬$haplo.stats/tests/testthat/test.haplo.cc.R0000644000176200001440000000415314672315243020316 0ustar liggesusers## Tests for haplo.cc context("Testing haplo.cc with and without covariates output") tmp <- Sys.setlocale("LC_ALL", "C") tmp <- Sys.getlocale() options(stringsAsFactors=FALSE) data(hla.demo) label <- c("DQB","DRB","B") y.bin <- 1*(hla.demo$resp.cat=="low") geno <- as.matrix(hla.demo[,c(17,18,21:24)]) seed <- c(17, 53, 1, 40, 37, 0, 62, 56, 5, 52, 12, 1) # cc.hla <- haplo.cc(y.bin, geno, miss.val=0,locus.label=label, # control=haplo.glm.control(haplo.min.count=8, em.c=haplo.em.control())) set.seed(seed) cc.hla.adj <- haplo.cc(y.bin, geno, x.adj=hla.demo[,c("male","age")], miss.val=0,locus.label=label, control=haplo.glm.control(haplo.min.count=8, em.c=haplo.em.control())) set.seed(seed) ntest <- 200 geno.test <- cbind(sample(1:2, size=ntest, replace=TRUE), sample(1:2, size=100, replace=TRUE), sample(2:3,size=ntest, replace=TRUE), sample(2:3, size=100, replace=TRUE), sample(2:4,size=ntest, replace=TRUE, prob=c(.5,.35,.15)), sample(2:4, size=100, replace=TRUE, prob=c(.5,.35,.15))) y.test <- sample(1:2,size=ntest, replace=TRUE,prob=c(.6, .4)) - 1 x.test <- cbind(rbinom(nrow(geno.test), 1, prob=.3), round(rnorm(nrow(geno.test), mean=50, sd=4))) locus.label <- c("A", "B", "C") set.seed(seed) cc.test <- haplo.cc(y.test, geno.test, locus.label=locus.label, ci.prob=.95, control=haplo.glm.control(haplo.min.count=4)) if(0) { saveRDS(cc.test, file="cc.test.rds") saveRDS(cc.hla.adj, file="cc.hla.adj.rds") } ########################################################################################################### #### Basic functionality ########################################################################################################### cc.hla.adj.save <- readRDS("cc.hla.adj.rds") cc.test.save <- readRDS("cc.test.rds") test_that("Data.frames from haplo.cc", { expect_equal(cc.hla.adj$cc.df, expected=cc.hla.adj.save$cc.df, tolerance=1e-3) expect_equal(cc.test$cc.df, expected=cc.test.save$cc.df, tolerance=1e-3) }) haplo.stats/tests/testthat/powercc.rds0000644000176200001440000000034214672315243017676 0ustar liggesusersb```f`fcb`f2=#Lt -,,2@V˙3Y ?IzL >$N ͚Z d d$e$C¥yX$ SiȠb`G;10 0>X4>Z#"Dɼ2Ae">Q K@+da $4 2haplo.stats/tests/testthat/test.haplo.glm.R0000644000176200001440000000410114672315243020501 0ustar liggesusers## Tests for haplo.glm anova context("Testing anova and haplo.glm") tmp <- Sys.setlocale("LC_ALL", "C") tmp <- Sys.getlocale() options(stringsAsFactor=FALSE) label <-c("DQB","DRB","B") data(hla.demo) y <- hla.demo$resp y.bin <- 1*(hla.demo$resp.cat=="low") geno <- as.matrix(hla.demo[,c(17,18,21:24)]) geno <- setupGeno(geno, miss.val=c(0,NA)) # geno now has an attribute 'unique.alleles' which must be passed to # haplo.glm as allele.lev=attributes(geno)$unique.alleles, see below my.data <- data.frame(geno=geno, age=hla.demo$age, male=hla.demo$male, y=y, y.bin=y.bin) seed <- c(17, 53, 1, 40, 37, 0, 62, 56, 5, 52, 12, 1) set.seed(seed) fit.hla.gaus.gender <- haplo.glm(y ~ male + geno, family = gaussian, na.action="na.geno.keep", data=my.data, locus.label=label, control = haplo.glm.control(haplo.min.count=10)) coeff.hla.gender <- summary(fit.hla.gaus.gender)$coefficients ##if(verbose) cat("gaussian with covariate, multiplicative\n") set.seed(seed) fit.hla.gaus.inter <- haplo.glm(y ~ male * geno, family = gaussian, na.action="na.geno.keep", data=my.data, locus.label=label, control = haplo.glm.control(haplo.min.count = 10)) coeff.hla.inter <- summary(fit.hla.gaus.inter)$coefficients #anova.hlagaus <- anova(fit.hla.gaus.gender, fit.hla.gaus.inter) if(0) { saveRDS(fit.hla.gaus.gender, "fit.gaus.gender.rds") saveRDS(fit.hla.gaus.inter, "fit.gaus.inter.rds") } ################################################################### #### Basic functionality ################################################################### fit.gender <- readRDS("fit.gaus.gender.rds") fit.inter <- readRDS("fit.gaus.inter.rds") #anova.inter <- anova(fit.gender, fit.inter) coeffgender <- summary(fit.gender)$coefficients coeffinter <- summary(fit.inter)$coefficients test_that("Basic haplo.glm anova and glm coefficients", { expect_equal(coeff.hla.gender, expected=coeffgender, tolerance=1e-3) expect_equal(coeff.hla.inter, expected=coeffinter, tolerance=1e-3) }) haplo.stats/tests/testthat/cc.test.rds0000644000176200001440000041031514672315243017604 0ustar liggesusers}XK.AA0cBs@%ksV(,FD$@P1PPD1gsϺ]=~igvS8H$R)WQ)"n2ڽnYPB84=(ͣw wG;1a1Jx*:bָT8T\soCy :xط/ZF-6ɽҲC}\\/'JL2zUelyU8AnN27wKDžx=7iZyǍˁɰ25a,g%n/k4z|c)EKCOMFIO^/SqU4$ |,StLhGN:hQ懇>n*:_Un?,F|{ƊJkk7G|p ]~l )Ë%(sVMOB&'wj_~*PvdB6:0Ĥztss{.NRz d8h$z߮UCSY=몃'l&}Y~eI{{\2ԥY}-LY =|{dj&w'Rdm7_!wCQ6{&ʔMHN#d<[hoc/?vfH4txGGv^0)fظ7U=] `ٹx>RՎRo]\ Ȭ f+ Vꌯ{l^~0KJJJ>U im|l z`ume^+9ƞp_`僯 .U[InkFNLoşF(.T)bb\~qos%%]:KIX4cVvpWWbgK?/On(ªD0y%8;UpϹƟf쿴J([&j8xzⲺ$jO uP͝,x5/gCYjnάS5c4JڔOڊ8K*s:mRP^aDZ9Me~8P舛@(-uXc{HT Q-{ΐXסYy:%jP!{bSslco/*֥+6e".P+C*}Y!;D2_g~AU/uXQ`)ڊ63V 1C/wB )..s3,cǣ.* \+G*v;\y5Q&N(׽]̻m}6ywL;7}za$mȇ{L#+aU3h,8>;jaզѺO< ,# wĘwĄwĔwČwĜw"C^6XLg񧷋SӔG6:󎬦酬%i"UVf3in9ؠWwh_S'2iuv3E:0TyOiJ YuQq7&k 㹽7D?ӹn6]ëZތ{iJ:ϴmGDyے ʔ|g+<]mrHѭ}Ϙj{-Hb>t9+w1&MUdy=^-F̷Pezk1'Wy.rz39CSZQJ3]կ m%S:zNVJ;K*Źc7*9N1Gz˹ǙB!!1Lяu& rEw+,Zb6\lZX]sx#fQ#] 0ol2/AKVh$ p>A~|1~8)w8߁1?7Ny;CKDnDWsꮝƛ*2.UK,DEҍ|_^S88 +oX g#kHt*Ǵ^@CZ\W xGxyG;X$ćCB|H !%>ćRCJ|H)!%>ć1aL|ć1aL|ć1aL|&ć aB|&ć aB|&ć)aJ|ć)aJ|ć)aJ|fćaF|fćaF|fć9aN|ć9aN|ć9aN|XćaA|XćaA|XC٨S'n׈ەpRnט5vM]3nלqތ8oF7#Λ͈fy3qތ8oΛ&I8oΛ&I8oΛ&I9oRΛ&I9oRΛ&I9oƜ7cΛ1͘fy3sތ9oƜ7cΛ ̈́fy3ἙpL8o&7Λ ̈́fy3弙rL9o7SΛ)͔fy3弙q8of73Λ͌fy3㼙q8o7sΛ9͜fy3缙s9o7sΛ͂fyYp,8o7 Λ %NK$H8-pZ"Di %NK$H8-pZ"Di %NK$H8-pZ"Di %NK$H8-pZ"Di %NK$H8-pZ"Di %NK$H8-pZ"Di %NK$H8-pZ"Di %NK$H8-pZ"Di %NK$H8-pZ"Di %NK$H8-pZ"Di %NK$H8-pZ"Di %NK$H8-pZ"Di %NK$H8-rZ"Di)%RNKH9-rZ"Di)%RNKH9-rZ"Di)%RNKH9-rZ"Di)%RNKH9-rZ"Di)%RNKH9-rZ"Di)%RNKH9-rZ"Di)%RNKH9-rZ"DioDeU`BPuίcp6N5EӭpCW 쾅rNAKE{ޮ2ÜƏq.o6^tmd՟' =y^ sy@C0#=(6(P;\nohW=Q5?-)))>ؽ-&uw-yNZH[> C/H3f Hby tiC3%S PqjOe,Gk,tF7ZݟwC7GoS" uo9zKd\p]{MtCG֡+NAy< {x?:GG%=xSTaY$ztw>~Mx{8]$y <"^Mv30dțhK^>[OJ?DrNzrǣud}G'=nZtOfEdo (`<[t̷J$ #^/So]z?/4|f7W*=;\KWy׾߷<5*c~LV-g^$aͼз9݋yңeg^evУ:E韯2uIb޾ݹ(=zYӥbfL-m;G{h29F0k}T3՞D0ü*4wdk>ч苣qxhle;b"<"|~N_潴ٸ< 2Q &E3>A)/o_<<7f^Zp2W}ڸ!mξeuL~MπK S~wAoܲj7LCQ?G=|d 2mL1Nd2K{͜?I(')qPҼ''//"Sz)|%~?[.u+-!?]":u -zФf\XFA4G6.<=~MVe4NB Ruמ.#oTCqu8b]kY ]L&< 3rY}_|+pIvKIq-J/] 3z t4ʔW< MSrms2^k!~>t>@mfڿ}t=xQJ>AqPTVn+mr[ޒ/E4"ᵶ_z1E^JZQ5q?%7pɾ`/Ur#o?f?_B1gQ[#׳Mw0Sc?&=O?mEeLO:\Qi2 "}=c۞ U͜t̡S&81׆?>dR~$Y+E;s>+a&Nf.euF1Z4b҂]?͜߼("qLO=qFAmу5Nd5\ߢpE*yyԴ/KU]ElQ~6 Pވ&u:o2d[/9s_uα^1c mk贸1>?(\%2v5\5s: kĦa{N~$j0nM.G0ǮE;QFg!Dcִ B{M\?l ϿX:[mlK{'>XĜnxt~ m0K[g0Y7?rÃRjCtwܘஓⴃƁs"~*gNjγF4wke VBrƨ)>H]&Y[vJRV]k|̓C)Wv9X7Қfjuu*^"s5M~\U~>#?,}ϰwMEQ*T/mNE7kwiѾ'Bۧ.k~|#iL7CHe\[m(yZҲQɔTv tGΛWE^Uei:J t,<:.W#%MF.VY7sgWmK}M{&5mG{{j-#Uu00{,Ysm1k"gh mjRhoޓZ{M7qװ$Y7oč |xQh.]Ǣ0M5~9!nC-^j9ǘud(˃I=8?x^  HCKnھ(QkY&x}kR62 [%l5Up&/rt5t叠Yǔ%AҎu^B}<1~O0ݏ5sڡNj,C1b=W"vvi.o44o Ex@8t4!!߁_þ)u'@A.ºԧP-6m+6W 7n88AB ŻF(p19zL5=<<ü#<ü#K8.x{WXvNI6[sºxkr 8\0N<)]CP=eUL/IإA~D!헎 #30NEI!5//B|}S~*K\_?t^ ܄p_7iUϓ-jNwC/z}us!q@kqQ]=po}FJ7!^@^`+2̆w [fab_rmJhf贔!A޶Fo05;T$e b揽rb&Ё1#a6s&bWw2g,ZѱLzR&i,g_}o :Ē<]VcQ&^gm9)&+8%&jK߻[X&tˮa^  )o\#'*ȸi{ c-2a'-TguL)mÄLxWɞrq&8=ٴnX/O5i5KAjfu?'Ə yءv}>fz#tfB)ZDOƗ8I>"Ex<3woW/C\NU3@AA.ºݴzԌY;ILcv{D.OQYw`Ɖ+#xWުDNpރb]1נ/800H́[Zޅ֥ OMDnޣ^zAxv !ޓX^.[5 zϡ@~D!T\>R:CII!5oEKO]~W޺A񇗗B7!h}-5tG/=^2UwC/]o'1:υxË~aS% F݉୯xqҺ0.-.Wz_ZwUtd7߱ZaLи硨qwk[{ۤ6"O0I)) Z^gL=<咙к^Ge }oiu׃^L1,qze2qCOK(s/fK_l˃>U~J'Z~z`Dz戀3hN#jɖKg`ҋ:c"q G"~.CP~QF _xWdV3?nLOj*g27eq^δ(8EhɵK~ '"nPuMjVvhնl!ۈYW;| R<2Iec54kf6[߮ B˴oK +n|80 oywEYn`O mhou  v#M[@⎮/ܸpۇmEm|9Ejf0ϊ>|nƥu]`ؽFn>.D@S޸7G >~N?5рOqKv%*/o%R4- |;v Vv$n 80ٚQ>§#h?Cn0?9"38Hs<1~O[_l׏bja/1hљkB< ݕטcyhι/5~tƗ8!p~| qO8hC~C_z/< :Ht)[("è: мhcТofS:ܕ}/4ا@ +/sP?iEL&o*ޜ`ܱ]k{'R_gwgw$ol\$|pRI/Deˆ a܀ƅß ? y!:IK=&Ts_>h=q2NX'GX [Aa}S~*`\_?Ǹ @+oVzlB?1:[O'E4^A\74.z1Y՜1u s[ǾW<$(݄/T-:W Ъq_E˺h>fumUIA}/~  Uwi"7's)nzkfFA"YMϘ"Uߨ"5PDONvVgGvڳ#jȈEoZ[տ9ώD5X4f9Z]B.Vا(ǁ1;bAkT<]VUvhϚ:&qL?S9}sU iE癳OkO'Zg[[%Fev[?jÎ5 Qd~FVJ~I>mJTߨ7![& _qlp>w>мO[~nhiVE뿽$ׅ5Ѹi8 SUZScŖFV_LW۳3^dUi'oޛ_3ytin;ZѓRq~3Ւovǜܥ`y巖bOzk|8z?FVƲE֠3kQPA };4S,P_~ #xb8omgXKaꩱ&Ot44N[|_?PʢU`AGAWi== ĉ  xG&K]xo&5hC+pxSz:Fo8 FzpMBvB$^@^@#^?*h].*2K>}|mvTq[&!L-1oՁ'/Ǡm/F}|2tJԲ>Cj N4w^[n2w֣vc>h:[ޡ bJ]+s;cnlC,b/<}9:1Uh5޼g J0|Qgmx _-54œ$r({kŶϫŽw?_ [`eB-_lwE׸ey4a7\LgIgg3'ZWY^eҜ-w3fկEaó1j5GӖiN@1;_?Z{MpsDNƐ/(vLJ.Qt oc#b3'c(x0ӈ\iuG** ^w/6#qq;C2~{Uܛ4y!=wmՎmMxue5ʹeai(I%ߐWeR`#yZ͹յUL~x)J߀;7 j1:4ߊ.ˌ\j9C<;3^u6m(NkK/{̪g#d'[^+@[k~bK|][E:e0'B.:OEJDˏS;ެ7͜0;BlW5kt9ޏ\tߘ.yfń7֚ɸVR62њQt.bu;޶Z}Ia{> ϷE}"ɣ/^Zl?<++ ;wA 7.0s^V9|zH|kf˓ 4zh=UtDQkYN5~>zٲ0zA(Vk6`ַ|9]fN= 7)%q'ɸt' -Щd8  .58a>1MYma1d؅n&\ض. xyH F恶ضihؐ];3Nۼ#7g"ZQJ-|1g!=OG>Jn i{IW~OIPxv?:n&Tլ4fGڏEc<3)U#xVh8H~|"Ex~!)w8 _1 t:g|ACXNabҜ5D k~D\Ԫ[0_vށ88AB<-KtZ3ӭZ߉`܉b]1Dg/g8H}<aޑzcpKDž#Og8HtR@ qWt 蛢~6IW?޺^OpKJ_iYګ|B(zuʂx:A/j}uBqx+Zl@g($  \z|M΄2aԹ[k@(W ;IIr,ZZyh+곟Ww>=@m=Ck&o1MCpkFEcݘ3Np刾TgZ'ZM~4[¤w[st qXZ|98nE&k˃uCMWg\#gH:Zo2'sQ59+tnrք٢y>q [7kΣE'Zv6 tq3̯ F'>W--2;oq~@=oUnyCDёlnÖ[ӽCmۦZپRw&S0ɥkZt 7h1;>j{4n cqCh~EF5nsn0K׼$BXV^O{w*e|8=$j~<]ݹ}N{zĽM]d^_zu_8e MsQvN.!c}]I;ʞ-ۿLt? i9}]G(gBy`' Ccmߦ'cз;7\Zm?SrJ*LNO7 Sȼc\gOM&m>)/죭%ufo 1m t߹6w1vv.Z#h g<&:/qvz\uO&RPC0׶^Z8ͺv\3M鏯Jkkq6JznsQIeRߞ=-JbѶ߯]|*X]$_,VrtvLsxik[~&k5jfAr~M+WS 35G>|p?ͳ~bDZټuMcNUi6%ۮMmnHfbdwI2}Zk`~\XkYyhowiu`;7d:31hC7\Mhk~JPnQ[ z?g;2NSo:o%Ztco-$3ZDőf3G>%~koi{9:0ÓY!Re>cwI~`nx~x({(iDf䆻q^jf^h/g:2kOLl|ٰ^=?p89wGTē\ \ ΀C˟GϣG>s4B'4'"jtG xv&t-O[2mgxH) &3O{OkϬ=yyНi?',eqK8h|i /'_woW_á^ < :::l~~YuYkz??mz< O7 )x8W ^WM*we'@]kNg/gwgwП,ՑtܳӘp0np 3]E^}j9'_>N<=@XgN ! |#gITѸ?t^ ' @+7uoyYޜLʬ+Dh:JH\7t[ӟp c}DW5W{EWGVbebui[3Zf6KshFޅ?ę1M_k QYϩcuضo9-t1ud#SQ|n.`[}[3]]zyWwBEs))ȸ Wqd_´Aӻlͤ,1h8&$I1ܟn:i:G_2:0y|3+'Jy`?0N7m/^W.KPUYTyu/<{߱.ڭVQmÏ2+Wx?jցwvjAa_+t^O=<?'[_bGaۻ$f+kET\K' -: iR78h|)  /x ~!)ߐW/A'@.Nn=^mԞ,BnW}>4eIsZ}G '_!|qcy 2yӢ:D ]k/$N?z&πwgwП9.-"fzɞq.q ƉWohvJм>Pjտx󋧏'~>tt"褠"Voo~Z?<]OpWbYy6} k3x:A//ZaEy.:Rlr E68d5GO֍nBBu|BZetu.yDmЬ&"ǣ Vv,p(d{΃[%X8hi=7;s^L1k?Mۣ5̢̘se혐τ|_S>VP`)wf'2C3Z֢υ-ЏW@[?ܺb#` :m~ s(3Z9*nx>w|/Zl5ѪK|dɌ_;x%:۝V7h%=;\k7)CR9Lre-yL5#hdFg}o q/ײַab2.҉hEhi5@?3-P7ƛij“:3 v6H Od\ "~`^ DOH=x@xutt-10[} opnch^瘥+^}اqp" +/rq׬%o@>RzL5{ gIacgwgwD?=w|\}R&Ųg<@p8g.wz TZ5ke<'GO|+G8AN ߊ[!)7O\_A}; OpZ_)Y:H7%sn6y E4Qz}B{oäRX]Bh$oi^ y:A#oLd3#ν^Zh w1\s/C̑l7H][픘TF7y %%O`32۫xv&~o꼬foZˤON{{혍җxgz %76-1+uEq)Wネc 3 ]5lPӯÆuab×In)Ox ewUc8t9$ ~_^jCT-ћЄuLwnۤѫI7o&ʞq{BJFȘ~8֘1!vJ8?e fxߟy& f,߃?kٽ-FзhNCYW76K$v658 yd\Яl nЦ'?A\o{Un0 u/nS+T=Ÿx`$ 7-9T<7.Ap¸ڼ;NC&woǴ㈒ju-x^ءLؕ5?'E#gk;ƳqDwDW)=5, `]G+'πwgwCVmZڜăŶ6&R'^a?3l] $U/S}iyO_>N~鸠>:It뤐H;G~~R7Y=xluExݢkGQy.^Ajvou!pTHyM@} ºE]hƿN?8qjT :iNhiz`Z`m\սoi "䩏[-Nqk_߀qvR[,~vP$&Mp즑GS۝cgZr;֩ N8`UhF^V.S}լe:)_eUߔiW}S".wmsbq}I~̏5pުyRWu%=[Rdڧ?\ܩq-϶Au=]sfV+ ):&\r%&leԬs?ߛ ܏̥S :N=~|hn鯯k {CN}\g5xlViD 1zC^hg"e -?jޗKWKUuuyQw|jN˶nwz!kwk6SZyG?rNYsz]0N,o|!o^'\j瑩]mhÌTGZ'*D]qo00?N7n~){S.]z M=샟RΗa(`]{mU.ºe%WZ> `^?\f?4uܵ5Ot𚎿,#w+90.'zt,I!7]VoD: L~'NHh}ܿ;zWQ{TݢuxBpox@{ޮSɪG B~+?wJ7:O>@p@#oTV";[MqUZ7mVo]'fۊc{eMmUVmjlSg[5i(|6mljj겭tVm ֐m֘mzlk6}5e[39Z%Z5ڰ-ڱ=:͐m։mFlM6c͔mfl3g: ۺ͒mVlClۺzz͚m6m6mC6m6m#6m6mc6m6m6m6mSf6[ٱ͞ml68͙m6m.lse6Oy͛m>le m&fm66ms@-m!lǶl[l[6{%l[ʶP-cr`Jbjm ٶml[ǶHE-m1l[϶ lȶMle[6-m l¶lƶDmgd.fe>%m?ےvmvmvmGvmvm)lKeö4-m'vmlbia[6β-mvmllĶl¶lƶllŶlö! mmOmm/mE<˶wl{϶lȶOl̶B}aW}c[۾~PH}1X)l/f_濘1b6lu1b/f_濘1b6l/f_濘1b6l濘1b6l/f_濘1b6l/66l/f_濘1b6l/f_濘ml/f_濘1b6l/f_濘1!lc_濘1b6l/f_濘1b6lOab6l/t[ś`_ѺO|wD;b;b;b;b;b;bAsB!//<_.H(,VE#/6TC2zo<;ժwC`-pjVM#t]b ?5w6/9q ӑR/s]vBl U{ڠ)Qr#EYO*SqU=l|g>”LKr-@jn6.qUwGg2ѯQ>6>FjhʲsΩ/b1lC5{LotŹF%.@ʼMYK(ڥM:Pn*RcT_7E|˜Qqc/,$F a4Ƅiî㑷| .& >rbuñX@~~?R a}G;W򹗯t'Vlxb4*S]:8KqG/2Fѱ:UAOLe:jWб/YAw+ua #K9hTN)'-hTj>tZ+(C/ow7oVLRsWLq*'C%,:aUZ^\޺m6R"^>Ԏ^x;vVqU[o,˩M3*|V`UŹtQb_mT^r)¥dМfIq͟׫ 4-M*)OW/"Dүȥ%]VSνVVMC*Y3oSG 2Á/(eꖊ7E8L )O"LhQF-G d,uaZRJ   .G[a`JcT+| G .S?vWy rqu$sPEI۾/Ƨ4~$c_*HA+/R "]cGoP@E?HKb?*E-ӟDmW~NY5(ݟrZq.a?7{\.cmར*M^UW⬪xoXvXEེǯ%⯈1jsR_ Α[lGb tVooj pU[SOb땊.G۟Y /TEM^ξx ۗ:+*ib> vsKu/{u){"4x(9?mTyX}#dG_YkuV_=CΞX SjUK55ܪ4xA-.jjqMWݘ[Ե֠TkTAk@5MTk**{c5/ZVڔj*hJ،K5?h]~,J5 q7JV֫T~ƭ/6T.Fjc+hqXA_m2n6Z=-oRoM-A[Ew܆VE+<~J` 6*=|G/殭ȾEI9vp_V-רc$&x`⯈~bQN۔砪A4*n+g,kRq;WܝʅnNyRwUyQPB_R>wѷuR K_fu^[sO,H1/wkmK6' ObRmlCqɭw}$ӒrbVkU6^nnLy xٱZMFDwtqmZ>f PFO"^NՑ)oJ`b)tΦu+OBJnCSoRY,#KBrp~+`+6.ڳ n@}*+6nFm%,]|]i99x9ȏ;{뻹s R~J8z9x.6veo UMFJ~>Uw!*{_jCh_{>?sFUY2 He|ے/翾Yokv[:O=[:&vK[!b*uw yNSlޝBJew+=?Gߣ[᭢͵N%_MXLh<U(KߎI3 w*}ɗִF ؖI<)c*?}wsW}*Bo]z䥎7W.k5iv]V\YE^h$,n Q^T4QkUEen( ˉ[:8Nslb!1p!k_Cq*PTJ@~X+5`_|+tCSg?JVpO?_9_,7*?KI){ۣWEjP7Ax_2ѪTt+VY/إ&~g{Nx̾X}^^Š6 ?b7DZdXhOf AFyj_u*6[Ԫ/!@1 g{ F4U1EeW J]z"*l%*ZW!˫̡ɕ_ͫ/ϱdxR^x}#믿 K)J#XAsߣ:R[z=Hs^ԒxފaDCsyʢ>@NR\RM+-٥_ {zsoet(6A Dos["CCnh~Ы2 Q*篓D$l?qB$8 ^ü1j=W gA}B U&=- M*FokHZWɊ=ҟfJÂdQs6ʟ!CEO|:ŽWߔR\ uptq-gOBqbM#ڱ୍9DW6%}\=*y*n*rCʻ܀*\?#bzB/~Tjߙ\GTqwoxEt:%_ XH \xæ|GE}~~˷QV|CJwLr>GM(Fw®Mt"U^y(?57߸)}dSwc;͋zX9Ƭ{LI}eWǥ?t>t*,c+{l)OGG˞7~/I5D9f1NAj>N7__[{ܩ[__ߏR]S eHk뗽VzF}Q ;˱CbnXNw!_X{>_V{s~yJ=Ox'Nu}iM˞'v_s/yn&k7(ۿxP5eCyyo~ :6ez.];램;T*+*+gtEW ]|AtA<~|ܞ~t+[ ?zmO=6܇Q~mq[@\Qq*+o2ܠ7Qq++;eWVqa?{? RO+oK?zET_T0^B]߈~f=\t]Z"/vd>P<]a$-1̴y,r̟EWΞedžo [4/pxu g]{Ϝ qm3V=U{.}HvKFal/qAOKV]c2R!?*2sXd^aa16z?i y#d?rPrH|-/#W4h~M4jCƗ8y/80Oyq||%>`$<ށ /4O~BҼ=a = ytx#_o:vMG4^ݡtB~]e~6N_>bxz(_PiqB/4n/MHx7j^yy)П&@$ćCB|H !!>ćRCJ|H)!%>ć0&>cØ0&>cØ0&>Ä0!>LÄ0!>LÄ0%>LSÔ0%>LSÔ0%>L3Ì0#>̈3Ì0#>̈3Ì0'>̉sÜ0'>̉sÜ0'>̉  >,  >, |(uqnWs&ܮ)ks7#Λ͈fy3qތ8oF7#ΛMyp$7 Myp$7 Mypޤ7)Myrޤ7)Myrޤ7)͘fy3sތ9oƜ7cΛ1͘fy3ἙpL8o&7Λ ̈́fy3ἙpL9o7SΛ)͔fy3弙rL9o73Λ͌fy3㼙q8of73Λ͜fy3缙s9o7sΛ9͜fyYp,8o7 Λ͂fyqZ"Di %NK$H8-pZ"Di %NK$H8-pZ"Di %NK$H8-pZ"Di %NK$H8-pZ"Di %NK$H8-pZ"Di %NK$H8-pZ"Di %NK$H8-pZ"Di %NK$H8-pZ"Di %NK$H8-pZ"Di %NK$H8-pZ"Di %NK$H8-pZ"Di %NK$H8-pZ"Di %RNKH9-rZ"Di)%RNKH9-rZ"Di)%RNKH9-rZ"Di)%RNKH9-rZ"Di)%RNKH9-rZ"Di)%RNKH9-rZ"Di)%RNKH9-rZ"Di)%RNKH9-Z}ܶ?V9A{o> >ZiG?ӳvݣ :dc(]oQfل бzjF Eg(ip(:b)CPf=B۫Lr垶y-0>v[΂XV뇱hCip~D3Dgo ~mhn $v$3"0Ztf?קN}ǧ.t(f4Rw^E%F.]9̠rNyxQc h3Scz| >OIpX^OK:[Kpʨa;TΒ3j9q6uN۔}hvF yA]ؙ߷]ݮ COJk䫮4CsLg> ^(kQEЊgj!m_Q;ND`>a~OվPղ. n>ZdCktHoEiykly4ޮ)HJƴ4̍ f+ļss: m{}to9?F_ёMjޥꃀhN}y87Sz\#?*m/wlj/e3TU:߄pFoӓ Ѕ6~< ΄~G~BіGn_{tB0 x#xb$oa~mۖ6{"=e8Kgqfõ/}y$AKVhO_O_/xJA >~wCXNaBgL{F-jY lq ~,_?z>ށ}:~'W_xƶ:q>:נa9zL5=<<ü#<ü#Ϫ<^{bh=qA}uII!5//B|}S8\?>uAB7!h}rCז{]2R^׿_ZOCJ|@^7z*o"7z)v+o[yޭK[ybF/n^v+o»7z)v+oRp')iKc~Yrü {.ɚ5ҡ  :W.^>xW~*DG=ETgk rJm]\R'J_#sjnQy:kkN:L$" Yʏ&UO?EŻ\e%~AӀk>/;tRrpwvӳ*қ% 6>`QЈWE>ʵknuD/sҎ{nSZ6ؒV1N K+4+.֓1jf"D<堸d 54=̽$ըɚ#K۳NE3&{u%6^g7 E/68})B]DQ\3{tӹ(SI].oG&i|=4jz8z{mYFUupʞZf#GN>T Qv֋ 7E0'cG}PF7=-Jgfyn98X_hv=&,F8^EGbO^k30thVW4oY'rtUO6`vRU@E](ù&QZvOЁEDIFO- 3>IF8y]C.v{8M+Qy#{9?vU&EteFRPoQ3(yiH(ikQzbe*]7]rfeNi:X9Ч rS]6adȷ7ȎjX6? m>vc({ ХXˮKr>]2'ni+tmr}6h?5aGIF-$hc뉟CL oG87wr(g >ǀ_~NwEGv^0fظ@Qpww1tfUHU;vK/D fVE<_yGL{OIIɧ DT/W,$,Jd1%|mzH,ӛe,U`IWpzi͕ RPK~ƿ%$x,i+;_+2_U _X\RF'D("GL0cbG(y]W)Q/S𥉉(|_3W+Q4KMUh}m7[5q<5KM_DKM_;uCe{YfbS 5谟mIUi>k聏,{>(U/uXQ`)ڊ63VgG5-8vqV|R."%i*<%>yk,cǣmZAb'_Qp$Ez߯{mJw7l 4gg]|ױw3+nVC5g>52i93Yfq"| w=4Zm wD;b;b;b;b;b;hpB!/XGOo)m;~TslT9(9N5Ӕ6ti9$ȱ3ڎw/%o)VyL5|`'[1jZ|?4rNWSbd5Mu/ݙZ{Zo˾b>O\&56Pgsۧ4Vg_'u7n#Kuy2{K>QVŪʸw˪ gv1c~Vng$Ɲa+w96mH[{f]M'5~V+5|9dz׳Uh:\Ic$ ¬~oĹ5fJ"7e|􌝬rSw-qITbs6zu!nTrx>Y;'Ӧg/"Țշ9Lqk=%o7x90aYV&}sLLB^#Z,x-J)T/d<ӏ A/3`vE=ḫ8\|bs3BBb4{4R7MM0^ 2WYVx@5vi#էG>ƌsYrݺQ/:t8n<1~s&Sl|mشNG2 Ga0d_LƗ8I>A~|"b>pS:$q_9b~nާ0wXA@NaݒF;6];7UdZ]Ym;F :(UZi&: |8?ݯ> /mwL x&jGEL;wg5C0nEnQzGb?*L $]/٭e4! N|=q\Lj.N и! >]?J;H?h@Rpz[}ڋzft_-O*>t %ļa%}E (݄xdkBU܈Ox<=<<πwr[ϓ^ z:MO9Z߅ ]%t~ī'x-4Bㆸ+_:~!oBE q85t^ ܄p7PxݢOy:Fox༿޳"tUt;&Z E򠂺@R?@5w:ܚ6ouw_lH*i9pL)tLW#Yd?UHحL[#bG2nd?)v+$SVHحLG2Wj#7/_|4\lh#?g4rF&oϭZ{]яg#V'@\JzhWI*0΍). ҟpBy>suЛ+zuZϼk_[zoX&|+ۖ3/ f^żJݲ3sqh;Q|Wuo1@o\,o s3p6 4evf#ǵ>܊yjOwU"[Qƿa?k;ymCƒf!ĩnW'8eJmy4+G˰3۠w~?3U{!c^LLow=9KֹkEO޼cOʛ{d$>\pzyI+8#zNCanгӅNj^x҆yG|kä̝=']d 228}W~̋3v1I|ׂy,A@sf ./3pg ߽a7zܿJpOd\ꅙ7f\QEol,n03 z \?5DzYmEL~,`d}2;zoIWyr+"8?' /^l\nnsNoߨ~YljעJ ꔗ7sϯe ʎI3zMro8w+>mܐ6gVT2v &gI?Bу)?Whwn\zɨl#x~>2D_l׏pT[&taTN2%f$w}|8(|i  O)=I~|_X.º =h}zHTh,z\ r#zmQ]}&2G '_!|}kO艷r:DGzL5, Nz.&utRIj~zFƒ,^F/R>}$$^Op8D.Ct`=I^^plϡ"C/ ިGOՠ8(Vn+mr[VnWoUi wXZ[/z]_%MU㨚ǟVdߋ l }ژPt³vۨ-̑@YuN'6 ]HSx"m'c(uZ…q1mfNq}P})kßxtbn2Wm)Sq?߬X"eyE90z'N3jZ-?1zsiꮋfo^8H&lg8A}'2ך \ڋaoH" <ê:Wzms2.]k.N8X7>=vv0_Mce~G*j NDӒxMDxm[L_;t(ZB*KQR=CfJߋOGI6ֳZבݤwٝF(پ􇖮"U'YrQ&7ʷ l3N{h넛CxKEfs9ھ̑Q*/Nm*?WB{=533%Gk_2m}U{qm <#xCxYZl@ViKbS)pdu$&/i24rrͺg[>l[:soݻ0ikw>U,miB[`Qꖞk\kX~T0^rUMFqZ6aXNJ>w(9`ۯz?03}} /:.v;Vw'Д #xv~=^dYwKѶgKsyy+4N'/'/ < |eM;1͌x::u->ejI!hS^ uZgm\о1ww`Ɓ W(7Bf-DI=;ގttcZ!/'韴]jq<߻²sMQܚ[_0nqO Z߅м}([/bzI2. 򋧏'Zit\Piq.N 鏠A}@蛢~ SQ__8h~R?&bYEOx}mQsv'/:Ah#ct ~O_5x+X7R E]x^ޠa6[h2kS؞ $ytK.0 3?lξdT9s0fъ{gs2)Mc<;{ ճ v?X(ߘ7lfͪgNޞ?aYUQ|~{{0t3Ku[F6 [V偎i=$hfs_9ę\sfgf~-j}薟b"Zؔ/#D=jFXNth]t1z7̤]nf^vb7Ϊ'BH "Z/#ОGah)wg&ڴ2=oKH7g]{/1Q4w_r|2]v^> qo0Oy) 8Qy@MKPkq <1o:cO]o&/` ǝ $MԖ'3!Y̦ux#hqL/U_ 2Tۆo7 0<1~O[<ݏ~7$0^*L*x@&@?z44oI '/ ~8)oiC~| tjFx::u-&ԣf̊'yNb[ :vyڔ:<t4N$^! Ż$=؅Vş&'r:t*Oi|pyxyGxyGoܲ..mx}"o"u< px 3]Ų2u٪xu򋧏'Jy|"2NR?N 鏠a|+_z}"77Ez? @+o;2񒉨zGs /:AzE[ E&QᷰOLOIL:gꙠ-Ծr>,E%>N{Kbgd+݈}ZzFQ{13,_rώgwug^deJh#T<Ï7;}75@vzVkO\:^y5[8 )s 7U0»"sqczP`SSlc'>(N/~n[f/6W 4xxV s6.ͮS,~}0 vp `!AQrÇ9|QWAsx#xBb;~S {qA,tX#2e@+w}4o /O?xJA >D;}y?ACXNaBF5iE{}3 П sx1O>? 'W_xI+,e5yL/Vtu*Ǵ^Cc8q<ü#<ü#ygS";쇓zHz!o~/[690.'^.] I^Z1"OzD֞=Q+EF(zr}}yv<&1j6f>ji+f0'X 'hxtQF>M_ @!w= pZSz䁝캰sD(|1PdŜ铝Cb PO.48Ϝ}}Z~:ײ|?KmB*6Z%? ,KfnVSQvi"#55ZRrcL]iUG%F V2qe(ca̾q}wCK-Z%.MYhJuК]+e6jb徂ݞ$O;yɣKKԈu t wHܑ7 |>.=/{uc^K04ڶ4FW7-YvZKy!qo7G >~N?mx&37մEf̫9/-闗]E^r?03bik^/^OݝͼUݡ"`KGyKh;^ v\LPuةxfO*n'r6|ĂضcrPBpQcx/18@~QFJ;dWI=Wl'v/{!-{G9,CܫtYEeͻ5 1D[ ]hvtm[5o7ijV/PQ-S KGI* Lڄ.?0/7.ᑂ'/}3?"3_EQV?{NtV^Z)4.F9}FL2+ƙ›᧲|x#h_ktx,f߱-E_<?-_bGAwk:Zҩ(lFq/,[MtF5 6</[q|"Ex~!)w$1_[ԞRc'ttzII}-^~|iPA =Z<t4N$^!|Sfh1] @]k/$N/3;3;Jx`|k@+}6ƍq N<? y!@K~'Y99'/Z'Zi>qA}u"IA7BVoo~$SQ_5I}?oέu?%gSUuƃMQ}G5lI9/`Wց]vVpqXfRQ>qvVoFqZ[z%cV='>x7w_ZS'ck_ -*Y~.9rxx*Wz%Z~T̜fi$ia0egL\~䢥,?tY 3-&ּOƵ] ֔4z?wiQjK=' mmx.ZoN}ղ(f Y_iqJϿqрS2O zC[7[lX}4\._C-7# _r;LGH˖ R7nFZCK?23Dwi@I/;1eMƥ;d\oN ǙL+~PpCyэGoj!C.tp^6@4Ƕv?x^HS޸7G >~N720Ķ}LkOFdžvڙltv 49ъZW꿜d}mčq%81oOz?QbtfP`LGvfN(Ǿz#xbO0`dzס_w37f1;~(2ٝ1O0U_/BD /  qO8(NK3=CºDt <&Zhu_k|&UVE(߂MƁ @hYզКw?B)-$)ʌ8h_NٗiTh. i_i9\Θ.-{=s}sgƙ퍾cv< yU < /gwgwoUo8M*P: @8b9$6ܣHK'y"sOпH~Dv"Kyx$ -Ie7QB񓈯3>n,~I+ɿof\n Į^U|]S'HEE4 8&l!~Ɩ b]Pd~%!!xp?[/`\ PP+۟ԧ7<,^v?)h%ʛ$v2L(8n=2?Kye+yu׳"Ybn/=AuXf?=и i{o㽩MhAZ@lC>L20v2\\Be[w  w c:tvѯ GAy̼x;5T>qAeS:b3>X_>;HV{=qWI97 ]S:yUӣ Fo h~ù-pȝKݳb/=G9A5c`׻n&w3s,R*g0JQJT@[Wg n/l,hXjݮ֦Ι}yG-dch@U7ӨKi3yq <{l>{5>_^g O@YWz#{#}6{uT}o.07e ֌N.H`h*iؼn >m_S]-+IjudJsls5rTY4I[Su M([?Y†-!!{"a{BE!P}Dguft`݂5M+64rf?iN ؗM߀5Nށ oGȣWI>&= /gwgwojw@ '7 *vh_GvvAv"/gh\$wxxi*eWp ɏN GgyB^6~e}@>Djwxdō{9Mrbg$(lS\̣:NwLotz˅w[PA{T.w C㤎Y9iE7oTLdю߭|TQ=G/jz XvgS;6'uītn>wȄ5ǝtoJhc7`U`A a}";nHz̡[{s}K6FB[ =JF$hYNsSJԚKն4C roQ9,Kl^GNnp}|1Y1P ɆO ܨ蠵)ݥ6mTx8l43g^;0z牆>Ia:tM#.F."XZ6''[p~8\NSNb 2ǙZqQ{-f+y%q6OOؿ?ACx@8Ӄ;oZ̽z>;ȃ/!BEm}ըQjӁG7BV7.]@71 ; -}Y?gmbB%5/]x(UIfx/qqqqS1}qx̜ yөhN>Ѽ]xCwx(.2-c/w$α?A"IIZPnf.TYU0AbAYcTS3,7 Qnٲe'R (v V/zA%ZSzYgUjƶ}T@shh:z98u\c SnN/`mv>= q!du `bLeOG=qZ޻&MNI 9A^PnԂS`ubF]ͨԅG,ঢF$M34 fwt聩.G'_uAM8i Z4r}, RfC(נ-.?/:}z:xK'Ȯ gyX"?l㧟0rp52==ߢq%x_۪bbLkgSs\ni_D /d_K$pJ!w^~>f|fWACO!?] b{D~ ~}z"Oڑa'_6C$ez-:EoT0 p)G63ss_Ѽ] wXm]?leʟp ?B;!) G1A y$+$%o`S_a|5;>H Kl76;*ƿofkO87nr浙b=f=+%ǻJ |6tFBDZH[ C36[5_ Ι+-he<8\X|MX&{BsJV.2urwK):yT?+lyRj^}Ň'e2eB.HT;Nk6qp͛8 BAe5͆~@WqӚm~VzzZxmf7ohWdgde@1aEfwjBy/MQN? MCgZɤ)7ouq R]3g+ ?o:PzÑͨ|m*|y%p:OOؿ?aBExr$ޑCGxExO; !K ouStrAxt{KGvZ*sOOځ֗;,Rd7~C/M~GģW >&=  gEY;/-3;3;,vc^$'ʡTE:7 X" ;[<`ēD4۷IcE#V]/x"IVa#$% oD3O_Q|;$>~ۍmI~%,bWӇ_[$O8JG0~Ά1BՆ m9d~E~K&5[|@o!?@ʝ'Pf3=[F2 $UuA u䊫l7*Y^HolWhg{_Ek֤=6<*_'ϟFuN 9tC'oy#wF攝*o:ug| W4k+y-""5cF+z۾_d1̯#"y%>yA~H|_ |ڤģS\۫ܞlA}o?eGˇv5[({T](4дMq]1HIXv08i~0"nu^iC 鿧,XUkPl/4Nڎ gKsp{Uђf+uf.KͻYjNM[ ~9+1u~RNfoSw-vH}lȞ]v̬f3 M,?i[iX~hŚ+=$lW+4Lކѻ?7j!l3EXo}M huEz5~4 zgY^m(yWȌ=FwnFe7'm]Nvcu2_,+uAz`Ki;+6/#l'h7f}ἉҦ\_~E*0/J`wg״ani: D[4=q︮~f.yzݾOm|uR6QftOMlngQd?lOh?lOZjq8؞ hB~*!cڥcӀGiӮo]l}pfGOп?aBCDrbxۣs s'a@ܥ4 }!w%Sbx*ӧ=Kڰ7;J+Hob\W~pĦӳUӜ_wu1 5Q̫5{'4ݛb!!Aav\4I20fW^: oH@8"9$uqzasOȿH~Dv"Kyb@:S4 ŭ2TUU;zxxy8xe=}<9R2Tn[i\4v0]PupۋP&%i Z}6TZʹp%aKʪN@*`pܑcwc cq/hI&GP  AW"﨓5F(WNtnCd^]] SL|-%?׬<+jR.)u˅~pG𰱫FzK3FWP@t@Fo og ]퀆5 6p r֘"<DK@hKp?ÏTS/K9lPyZB1{<S`l©~ݗNYs#b߀K=I*5ٷʱ|n>_ ޻%]~5?KR^R|cIy*&f89x{jxxy:hxIwO@7 _.n,,U̲_#7~]%r>Ij©r kBAZO9jF5Kq~mկפO]3!޿y]lRV5ff$T@Y(ʎ5unS}s6zy_11}w8ƕzbO_X Ө~ rկ͸W 8^umMNݰ߱z!bcO@5VZJ?ԧNaG_c8_KEW-| ZH6UO~bOFлQ5ͧz>O{N_GO-I4^MTc4N8u &K?>wj)gǪ⧜h\8N7t vERc-t,+:e=Օ?ڣʷ xX8F0/)=Vf`Οf‘F63Puc7 FjVؠjrhܦcctܼvzUAddTfx,;sBjk¬FdGc!:s2/(OS3Ҹ}ZFݫkW:W1|xwBw,G*AσҞ=7Uu@n2Az6Ik޵P=㩋^t<w=[#`&(v1 9 =kºa>-Nu.ӮݜV0PܞBp_oGwD]kBYEĥݪ_}w LrG\3.o*Oc$hz 7)˼>$1uy2x]:u8;&qP8zx`k:"{I -Z_<_#v2׶+9Ҿbf1q*w^1~ b !d1'_Hl7,%qx9!+c =x i{ӝXK0ՖI|y91~gö.x(0触Es1"I Gg<֟mHo +?""#☘FLNeY.osHH!Mk~H br`Qܵڌm-2y]Z0ݗ#|OBctN* wuO \#E[DqP\!E?qѮO\ٓno-nqKq q 2xXa<,e 2Xc|,e >2X2 =,C2 =,C2 },C2 },C2 },C02 ,02 ,02 C,02 C,02 C,02 #,02 #,02 c,02 c,02 c,ɐݛi2M3M=4 !4b4]F.#MHe2ti4]F.#H1x4#H1x4#H14>#H34>#H34>#MHc1iz4=F#MHg3i4}F>#MHg3 i4F#̀fH3`0 i4CF!#͐fH3d2 i4CF!#͈fH3b1ҌiF4#F#͈fH3f3Ҍiƌ4cF1#͘fH3f1\cp %%|K .3\gp >%|K .3\gp >%|K .3\gp >%|K .3\gp >%|K .3\gp >%|K .3\gp >%|K .\<\s޻79}'DkEO;J6<]}p΅5p\ǘ}r C +ԇ+ G n4O \z}X˭(U͑o:c:hxI=L'^rWҧW93B iM˩>i&+ɤ#wmh4N+@tJi{ܓRqnOtwS{ѮeK])-$vi mrTZ3MxU=)HG[Ap`{ڍ]ޓbN Ѯ3 Ň \qaf,ً7o+ gM\zޠ;%6 ߇fx[;` 8>¸b랧t7Ȗ{\z_׹cdf^߾(ȟzUӰۧ  @x>G 81D]}mTl<_9p]7n0Dxh>xy< U0]TIc Ua&Oϵ7+3ƽcuҼ.ݗm?;:`~؞~؞oq~8Gu^v{pCESY>&L6k_$6Ҿ$n '_X.ԃ;o?"y 8o0t #:=$ Cb9ԟi'/}Mm8B"^%k/HO( AaAd=wW\Wz7l ve]i0_GFvvv"O!- "^nI(B ȟ#ɇ\R/IA$/[6!~?ׁby҃/#فW!L7*,X8vLbxi2?Bqs6ܐz ?~0iϐvWb_e-'xD JVRJ(UYYYYYYYYYC)Mko(*m>uzNy:OڎS [WmGV/_~=>uS-mu}$_~uoǩCm]=׿Sl_oT9_@ũnKԬWe^YE/Q^fD/zU6_5%jpy -|U2'g)s?dm[:Ț:/0K[aTΥxO@ؔrvp]:2~UCsȝЫ^+5 4l]_'> T| V>&:;X9Q^'GTT_iKs8]c_OwɿiIoʾq”oQhyd#K-TzEYsjYSF2Ɖ\s֨Yl7G>pf7?m`F>)=0mbu=Om#O68[3$nɇbڥ'9:-Ius'%gZYdmQ֯mhSt-\C44ԑ9Yf 95j~,zVmtYQo,~L>~햝a{:auHybmٱu.7|>7 0hotXb¹W/BރCZ-G^so}i;}5͏ϙ(ƹ 69mܾ^y7y(6UZlusZY)S~|EsJWz<,yYnLmJ퀇 o#nfzzOliكU씚7fy1zޏcִtk+=\M|3~9p,'i^m.5YKlTϢ?,_0~w;\߻j::e?K.=QL񃐜Kw:c"Ю ; kί6mlS˹}?y89RG]K}SҬ ˞+{tO}JO _߇gNR!㷦t__~ߒe^qNs;Ft]so֢[(rrk*%egtpZ8k\f})9KGJ%}mVwO+jr5ʟggby3^|du4g*aw.vilz?m쮁O݈22bugžۣ[|w{ѢG.T(9ٰ V.}7SƒAe.)<ɖ[{\ôUʬEV#s'Ⱥl:gœX ,'AZbk{_]nʤä:j8煷8Ta nlvͣ/{o;V9&p+>2f(U\ݵeSkab6zޯˊLir^QRS Hp:wkV;[]4ۦx{J֛[Jodp˭}\lfx!S>PFg}{ 4'MLT7u@rP.uc^D^Xuq\e2{r`h>:)7b׿_f{IbOti>9>rZUӿmf[m8uHQ*~E3oR({ۮ-,xaj߬=οo#tJqJE; :p\Ye+0n7g=ɛJCWVv{6Ss;R/9ư#]oÿq;ՎTq?.+}3&ٜvt8gmCՑt-wj\~״<'=oNTΙkJ3Ϲ]{0CBݯFy;eĻ 9ՐhF}8` ?l0Akhnc՘+ggyo7\3߯k~Jp}2X^rAL^/lԶYblms6|69Əϸ+һܩO VK?쵺WӞ/Nb'F+nԀ B~aҠ9'J咔F}ycl#$f]q˥k&:o&iisD!O`[f7=]ϵkaU/h!摩[42͝z=myWrĩty&Jǽ5֧݋7$v5{YIݮR3iA[gقj a C;?P]uRi$~A}Ƒzб<]zI'fw9C9O[h=$^H=Q5 r ;Z2/lG '#p6Gbǩ^4V~Aُ<&I$φ %!aK7r>GI8f vcǪ/GyR/$ \#恏QMM]I}$9 %a$!#>2j9կD]qsk'Ɨ_jXy$"L΋S<sgԟ+%A [Ga[W@K z _אp?)?|;H.'zjH H8I\oK\'LܧBI?|]NE[H9Or|r<X%'%⟜/O"_X9/q,ޒLC%!>t]d<#PIK'#I3_!?6crlv'qA\gOUcRl8&%OR~lJxB} ? $1i$ԋ$?iwtAiҎlrօCB<%/iI>$S53lx%׿ƶ.A'$=%Cc_[m'QK© I$Lx$$6.&NJUS%~A7Eחi پ8sZ}&Ukbf~4f)?=<,5Ns(n`S_;zȚnfZMsԪU_Mo1k*b2x4fcV{t _ɐs%gbp]@̠N|װA:s>BH?aȁQz[uyJ\?tn kӵIf:wִ|swo;Y|:0+ {OWJ]IZk\xZ?h}zV>ۼ>$Qx$K j̲ˇ8j^iK+uj;~{_gk)'$qnH/Ѷ~pW?yfBҊm|oYԹ_gAڗ-u Q7 i/8h\$G ,-)^8GK]H>$zHA/"d㟺&[-IW2&AKh\6;pnqha{wFS1}$/s6HOʄ?w?+MM˯$'yk| k2I?Z?UX>ΨI,YXĂH~'`'D5KԬI,a'P'DObTme-2[SV7ۖ ~ &PC ;xzH???sEgsQ\Ԭ65EgsQ\Ԭ65EgsQ鳹 RM Ϯ)К;o&zF?ȫ6t֚7zAհCh~XSkݻ %??S#_tvudt |FGuO7>+W#:]X]|(9;v醱S3"rNȅ3#' 6_x` wWcmn61vFucsK%4ۀǷܴTU{@۰=K39^;uzӧ7K㲛N1rWAWmjn]kz]rLug+0m >+[޽|ZGm{_4bmz=?ȾH_E3WLǬ2VpG;58_@z/lh֗(jQDT5E>x:]ig낋4f|vwEKCo/'ohsAJj'ʧkoszp%WzMO:l;iH^};(Pir2s֏A g~4eN]*i}+qYVǖ-}/ wDw +|"{PGhY_Ӏz>^.ݮ麅KR/o"5eݰJ:jr"Olcbz˼ck{;r;Xдܾ?o@ f^}~ Up퀚CKCe} rF2cIqO:} 'ҕv=H*hn@k6WfRIWt,X5.]jc5Kp`Mk3//Wbkp{pyeCi  0j6qK E'C'~ Ώ3Koyb# ~.ܽbW::X|t_'>fzP4jIl\q(3~}Nn;}cq凯NE嗥ڞn.u_ɰԑN~R/fK&sWxw!/:ccIT!V1o.aˊӻ_^rl Ͼh!a~@ t85UΣ^pDɱ/zC&P i}9Mt5.%|:G&7:rAQvAו{/qMoۥs.ڂqA/3~}=:7yh4PB4)U[ Q3ȞO}2.[˦ X)P>I}bY?x1!~Mpl=``3 vL}r u-:\;Xcz z^c(վsAc88?p< Ŀ ? CExEf;yf} D xv ~I[Ab}֫L/ msNB?P>3cP@ 7_d_>qgv#9}`cGߕ}4Do1꡹`}׮Dw-=h Zc3#:80DwPcQ|/30~}߼6뒞`1 h;6orgV.b bv<=KNV!`ݼE;Y|(DwP1o(^ E|//7u΀kvn?[75-slͺROC(_G/'Q~?xa~@cj4A|SQs["uv O(XIy=_|(wp1o(^ |//șş/+H8j)$nQcK7C {Z8z?@HCݑ&~~C(E$PQ|/3~}MxNg "[ O&~~CC((?Cp< Ŀ ? x@ ?Y:W 8V'RY-R.)-/R}z?`Lu(@QNS7/0i'uF5gfQF|4nX;gun\#'C;d S+F5֦, PcehsG%YJj\o3m J{EΟ2{k"}+=l655tngRTz#N~'q xCɍ] =Xz]P pII?@ /TM7seuvk :gGYL0hXfgJõvޝv;>z콺uXؿϥ^ü/J}gG||9o=Ig+piG=A%~9 ~zth.gjVX+c+*Ot~7ǎvRWLnksn\|Mi)@0,dS`mT/ $b%movN]J (Qh;.~L?Ӧ^"*{HW*໫wf ςRgxK[55\!Tpq)2U5OwpNG(E37歶+)rSn }q7[6e{tRh ۮé3Sz3,ؙݻҫDvf km gȾA +4Xys*d0Q˪6zgn54C9wq,dr՟J )'?䍧$-խ+{>L0 b{=-NR;5ItUyÔս57NTƽ|:["3<.ھ{4kZƤa@&HיִaQdoҊ.^S@N}AA /pp7"Z_V"6{/0q鼥]Яa5EԘO.Wt>"̞^=hFm5{52QS۷n 8c/.]D׬5!*M]wd DxQiߟ/V{2畠ݛQ:3cn1v2}t`v|CRSV:Z=э'x枓` ef/XnяWo厎Wd} zMnI6ҩ'*Li(^Ĉh)7%s~a9}W;`WPb`Xm4oHf잁Xx赉(G?+.Z91]Xt+MFl}_ecP&&)ynaZCw(}1]I\ ӄN*4Igũ۾cggZtOtIδjML/ 5X=4\9vжǛ}Ytoko?zvTUWY\?").Mc(^moL%C_)o"< RiUwZx$ĭ)wͲQN]vU7JE۲ͨNav{pv6QN/(Pڍ5; sEf?W{s{i UBۦ][s GEQ0Ee<~qY2V/:nѩ.+E|T[QE5_so S;~?A(3IPΗEfH2{d^8jpv!gJ͓40{zmeVW){'=-zqb`;/:嬘 a~VĿVd޵^ (iڵ?QW_6+-+0 ޜWJ5sպo^ ?d<Q>&ϖa(ŷ#RĿzleJ~8e&򷮻M-ۏr8G|}f9vknZ%<}UONZ:W⪴ F}6KKw6oV;4V̴Ҹ}VQ7vS=Y哾l|jDgQ`JŷE{ͲDxCD- JF({覫9Az7|% ]cUXm1%R3?tϴz~]_XS.7'gt;6Bv-­ XĿ*iYSwF[q E,E=g!wz>оm~Ifn*0[Qڭ`E뷺k}zKӞwUOϕz P(L{R7St2ٮ_K;[[Qx_ɿRǎrYW,$IX+#UAo跤ȑc_*kWzj{o&fW^\4سdU>ٚV>_kQb'Sۊד*/W; Ue*q-hQX`jhm~">*C/Sso& [Ua)"}K٣L5ZcJ)^yzZWԥ*5=]|Q(_A|SNl_|nCpgQ<$o?8.=v^lRC?xiU>*񰿁ȾD,^[qqʿ--[y緣ECۆ/ԛUIXQ~ٷ2IuX?܌һkCc*`{?l l~C7` -3̧0>z[+f|voJ>Ұ,DA_~"<,sw;̖ WF' yYyUx^]{;vxyz芝ቝዝ;/v@쌡#3+)HEe|uwœZ۵jgkI6'Iǿ.;~6Yc:WVNm!6|;yx >>Qj_qu~]sڌHmdW]Y랺_:u.=~7j,]S>U縿J<~r߉-.N.ށ(yQw prD']=]u;x ĵ i(YG 'JKxzx88{8q]{8x;vIwq]ƃκB3\<ܱBʾ>:O*:١S¡I{3'uh1 i(:: F*89;h>PG'/i(:@qwg3gt<=hF:.^%8xyxWʯ24fUGN{ ' ꃗiM_Ks@*Tn9avC֫|+fpWu\ֵCE$IzO/m oBm tBN4}]<]tJpXyNHJtRYOuj֨Yi~D Wc%7x$߻ĪS%k>C'{N=y᭝S܊5Qf0Y xlx+0뛯1t@]yztxMi#;/7DiXr-JAGEJf{=7mt9(lhnq!uyN'Nn+rwYeL{io5ARS~`O[㣞A| lJ[㦌937M+#CW 5:l=v?@ΘM/Wv=Tp \e5qvsAd]= ~JCO\6{X{+֣;=7b[ <}V9({"s1°'c@isȁG7r#g*u9 Q>/ ʼnU^VMDr mͺ_g.+K](P;~&W{Pny$%-Jر`KJANAW8w(>f3s]]_%W<t8@Sj:U,)Us#("T_joJ so(RQ&MW"A8dI E2v1@Pp˧Jv|,wπ.}oBW *+֯9U4I/wSmͨom:"׃ؾ~dqJ^ШU[VԐ3mYsXwrMG$wr?\R(PnOZo+[46}"ͽXwꃙa~řGv4poȦvuS{Q߲nԾ4m!Ĥm*~?ۭ,y5K[4v'^yٽee~FSk:doUS%kX/~-Yrׇ&y}=zuU}=l9ꓧ˘VN~s wZJzLHW6]uQ?Lh9(y1~Ҝ'}R-3uvCbReʢl&qqAZ_♱Qc76w˩/?2:z*H}qy[tΤaV;uvEvU8PEиoTHax{szlA2_Z_4xs S~5hB}PVaΆ'1:қ[tpy%q6OOȿ?!xz zx /63X38;ȿb|M؁/}U-W9 ~N 菘G!|L5YN7gB  /t@ =PFcq׵\uASk'@yc;`$@Džrk<`Yēdk٥I#BCd'q>$z(30a^D2XeazXeazXecX>ecX>ecXae`Xae`XaebX!aebX!aebXaeaFXaeaFXaecX1aecX1aec?wt{fL4LSi3Mi4&#MHe2ti4]F.#MH1x4#H1x4#H1x4>#H34>#H34>#Hc1iz4=F#MHc1i4}F>#MHg3i4F#̀fH3`0 i4F#͐fH3d2 i4CF!#͐fH3b1ҌiF4#F#͈fH3b1Ҍiƌ4cF1#͘fH3f3Ҍi .1\cp %%|K .3\gp >%|K .3\gp >%|K .3\gp >%|K .3\gp >%|K .3\gp >%|K .3\gp >%|K .3\gp >%|K4"JRWqWD@/2.?wW߾[i 'n56P` pLGׁͧ^(sܦ;䤵ELlөx$)0(#..@U:9Nzx7U^wS z3yǩ,>ᱽ}) NSPXأ 3p8Gabֱﳰt-.5f۠x sMlY]uuSjzW7e^69\ :]^Ƽw^u= TgGO,{ =h]9c@Ѭ6C5@mK /Xo4<{.v4#z,Xǽn ]=v1$9mMa vuEоo$1v_*?lM7Q Ϥ? [h6"GG(y%I}\))W п#""< D8@C<ȆcO$8AnXK'dw;C6!GxAz"?@  Ӥף}z#A|T[&Os$a[d<IGh'_(>OP/Lzvq xfeRmt#5 ꌯ3/i=ٱzsoNK #TIvjsS@4q2>]'c[GڞYUE\3qnŕفs2t@G%*'g#g4XG07qTse2[ 8anJ\R^F> t] 5nWix^wwzOo_n` `C{";K:Qo4s\ԎhQ\| x3}MwqKx i;#?wfn,ӯ)w#Z{3Opm?M`}n\ɞmZA4_tb0*ZNT[22A%M_[?#8೛^9Tnw¸8x@@vBvK5v޽F7S*{Fi*0>խKkGSzkKg >nޔ>vP9lh][~sLB6>(se#nΞm[z<ҷC|;&\&^_8X?rG o뷥2?D-9CeUhX:5K]:5I> !0tTy%q:OOȿ?!x`'\gؿ#b"|?߸> 3ہV?@4[\_Ӝb}"; @;-/0q̃X $ag)sa@II^0> cOۼޒS,xC K@"g6˓e{4 q"xȏ@)S̯~Ί.(nEl gWd~M/[|@(lu:5tV@! 27$|tIN}]_u}]_u}]_Z=W&iG/ۧ7Z5H׎~ÿ>I:9: 8 v߼P*rq@_bomԉ7 Q*&T4 e*Wl+u?O=B(}LVV}-$Hu~<W'5ڳgreMQNN~Azé]:u$ؓ2M<9SeShRˉ勯7?9.pN#u ~ZD{q"%vtΤS*KQ/TzJݜSsdITyQSߗ&!c:|$vRr@-{r꼑>O'ܸ]2⿦F}XȵC=/QќvmM50aSNpkJ;E}IV+,ܨrE/cvw7ػ6CDdpәvjyiqrʬ{Lh n/ >F$79:$O=ț Y:4Ni]ݛ61U`i8^*$^~48ThsKc[?{};s$;kBTēb,pumѴ p}|oZ1u\<2vp(4s/Ot6P;#}?u P o5^۞MvHŹ1!GdKFw}GiyˬAſ~`*6בּVaǀaM厣^(>ښs}8Yg?+[9+{ J,jt%3K@|Öf, N-6W᭔Ct~#:}; P[݌O>^{M-V͞ڲKvTo5Ob;$-}l6Ѧ@rԜG͟Kky(?6JYZm?bȧyTcAR~2'4j=Mc:G5HoPbL- ۯd mNkǼ=-M~4WMSrC'H_!V:NrdX~lϲOS1WKuW[w?&KR7e2qٌE Ԛ7+? Kt.pf5*)|dI|@vvHxeu 8G.e#a{Ba{"!tlϭ$**fIWeRS7 b:1i_l / bL7wW_(90?"D<y -*镴ʧw8Mw4(8uub|''@ ˆ#6}Wg{;~H]qN#*$_#xa 3;3;k趈+08MJjӠ`͖c3W.Nbgh\(Gq\/ӖGkQ@%ƏN Ggmk=}"zm+6LܽqOTQ ϔ v 522.aX^kG*#e_{odyc;/ n\[zX6|4Xc)b*]M㮻6 jyW>Il%-0sjLFn5X]zH&8ddu4-s g ~ndS2=s8ҾnY '_ .?A!=NI=H#Fn+#`A<y -.m`~otq`WùSzU/;4>;!}Yˢ/uTJc,枽A~!b^%k/XO8 AaAayxAc>ww2A$f/иH,m]0O,\ZQ(sD!) G1D$ [~ˊ7oyOQ| 㫕Xށ Anv _7y+->ֽ\'HEi2?Bqs6ܐvA~ uX,KK2My  2|[t ]y~JyOh^4X 8[:چ\$OWyYpԕ?#Z!L?4c̛o –Ȝ ɾ-bfk(陁ui9^0O1 ^8;oj4Y#n;g@f6;j_NGPg4}ۍ9D0a ';@hiG1GyǺ :dq;mALsgL;mԅ'Zpi2 bùQݬ}p(y-F&X)ΏK%1?^m߁+3R9^,uCqjR? Ks…E_A~C#Yn((nyl 10jQgydw;&6Ҿ$n '_H.ԃ;ok-]8C&= /gwgwo8~O DMz&(Lyt: @8b9$6#~ ټՁΑ?!"ىCR.$Ϡy"^Dji)ܝGʆq$(Ƭ2=q7xMwrU##Wߞj[)kv:ʟ\M77g(ݟC@nmLSLJdfP}b9h]7bB8 /9ޮ3&d6>겾ԲLjoI&`͆Yxݑ]1/}6;PXW?:xjZGN//G6!D9z _mRʴsC%[W!V/3`޳>byi1pC~2>d~%&l d<":3>`ᶜ[9eRYN򨽊֟O,j rֱϹoziv:՚;;o͟k`C^z4.vq{E3wAEAEEEDAT;@N Q &Mvذb{`W, bWWqcߟ}l6Lf>-䶁\r,u|LNDہúy Hkw'Dҫ}IgM;P5Sssj1<*X楾J613tr"$8z=%o,0~ŝWDUO\ \|2Nl0@ײkM:3kKC݈%q{mv+p 6vG6)DFݴ[8iz럏jP@$HN~z7#1۬;o1Ku>FmV.^NA,3I`њ޶~f2wE)-tڜ6x؂KsFyLD&ך;ˢ(wdȾ 5.nz˄/rwr&3ʼ:LUDM7%2g57Ė~Ѹ S|Pr v*6.d7 큲'7j]0;R^o^=̚8k&U7?JPHߢEtvbtֿ?Vc/=9X>k*:ڎ|^ȗr\ƁWn /OQvEr ;oB{ 3gSv C(EgiGv?&VݲS{i ,?g|bx'$/2 ƿ)zpcxM,g;ΠQ~.RCN[|+S9ĂY;o6=t3u'qcx ҥδ0=ZnUx1G^9Oпp|DzG1)E 'qHni-Q&\?(}`#~0.i뚚 eYҢۺb8/-`Znp _|K[4@⪨J,>C8&%/@E\HPX|%/mF\h~CK#fjxzXAEZA0g_%y9jKZ{_f*mWw)N例ra]|w" }@Q!ą/?xֵ_{43)vO^Wgz-Xw<sͯߏ#r=ZljI^wc -IPÞ`V1/`ǽ̈T;c{83mۆ6`^Fgk4.4ze! n Y-{?Wu<DJ|:'.iǂ^S.x5)k.-|r;c`rG Jv a=d(\|woviT?lyf]w6q[kpĕ;vK;Hq>|nx5kIAi}ϝzGɽ]DžSr/5]օcހ4Π_gr]sq.t`ᒭok@\ELjޡ^)h6vsb@l+<ߚ%2)'Oh~N;J=9^m6>/lqqȟ!BE@vˁ;o^R=Pvq%S~=ٞ: [wґ81Sˏ# e7bwj`옻݆tp#Q Wq<{h/HN eg(s});@vfgȸto`]RY+ߎsOȿp|DzPp =N'RWo pA\_?>p=0|_hovK<}{Xï}1ypE4c3 .7k2o.L+ Ȯz7jK%һf& mk 8qǡlpߞ_u/X~`x?5t kr%cf8LX`s8kc4}txC3}/4 Cg;"ylzdr'7xK^*D'uq~DصrkRv+W9{8fZY\ώw')n>lpҥl"%[#@zmNhK2,;vaeQz ۃ`j\/- ˊG0_%'bnȤV:]P;g2yJs; V@6<|>L̘wY|nED͎}Mc;Y7hZ#>О& Q?p` 9:0݉#nچ>|ًr3sV>Opmu_R=y)wwQTZ<1rצQrH 8#5~n}{[#Wwv]8C"n/AMɓ7r]9T[yB@kSJh^p;+ڽ#6.dȎ=PD /58蚳fck"1-\E8"9jeƘ >m=m;r Jaۿ'>q2z/`5J)=T@½>>R 鈵;3H)g4bI>-3Xԛ/oƁ[qB /= Ar@;wߑRXً쀲;.!BEl~ӸG[5'b5/ #?nRvɏALO2A^sxMDz %x%p& p4WΜ?ɳYJX%&kx] #fF٤؎_j]OkHn%ǣ.~*aV<c!|Y;ʴ;F]x~QZ\U?^8pOga'%#"=#s;1a?7{-4uwC"!}"Q~既J69 RǼ;YٳwVk:8llF/qqȟA %@v!fȿ#{E`;!; !Kn}]5!Eݒ~4~~4BƇ%opz鉲_&2k9=t}~u ?Bpc )Bɉ l韁! jOpzͣM̉?'X}b:7 ԓzH;z4/n{Ùoj/1|zC/&Zp6E4n[{C)\_Sj%w 90G WSzcb nū#_ Y2el1_8N :9rP AG.57:OpT܈&i}@q.no0ި_sԭ5Now=^vmK;H`삆!kF5^;̼w_!^k]ބ-rӈi^)k]m=. 4˳uծ 8Ͻ,P.hTgNu`=xstDǶf\ږy1}Yt#z]Lاp0(Xifȶļ{{,|-+#: Pu5O|A b(;ȿ`J׷vĔ٣ "^ Ss4[ў8+C ew?EDH7:+ $8$0~-1z`T?v6ǻ$ i;T'-s^{ ؀Ŭ/+~W86A$"|gVTDx^ ܋uvH 3\mdqZǯfLfF77%ͻs(ʖ-:46}+盈(iظ!;@4n߹yw.@Bӆy fl7rV0c)]nsP@< R#PM>c_Ԟ\ǐ(}B!}I't9/Ek'FgbwUȩgFtvhyb-8?Q/_d/%S\ޑCG엲)#Pvq% nU.{ɭv o.y+%~<.w>.?LOLe#i94>R8(U q  ozA ~wQv{7>$.: @IlEw ?Nb]΋O'_8>RzC*˅G1ADqW~do߄gZ?WɁf?_248b.<ĕAc_[8Nu:9݈֞q޺8EQ%b9_)q5!B~p_0{CƿL{p"픾qNcwI>݉#geLSqĉ^Zg]!GF 9/'Sgm><3"bt m֬\5qD[>&RZ};%s޻9AfwMf8Ǩ!gv'x/$R$xX$k9 z=e]iZ&8RQ2U 8(ہǣD"DvY4v'Nׁpqk*wQN,3nM9pN謥f/G, LwNziAZ21EP?b v s,̌(V@ѩ^!/۟M9tZnI~!{{8ݵh4k&:xp$5..N%'iXƳS@54Hߔ<-lpu5pLW[G*#o, ?8[y,Vl\n!{@A ꍚ4^K!D?m?:tGn)I/鳊ܔ^)Stw ?sG8ѫ:[C 'zv<_Dk'F'f];.I #v$vuw/`]ᔍKƁWnƉ 'ʿ] D@vˁ;o^R~}凧? ;@vļчpSÍ^k=0',8kq[}FkL~LbzBdG mO+1IDyP;HG)\X B{`uv2.Dv쎲3hwTǞ$mZGv0s#\G< j> /AߙyA8Y}ܴ8+RΑ?! C/.Zqp$0W~do*Q;(aۏa/ ~L!1۪<"5aa~d7bx>U%ؾ`\75J?+7]3Ը nQ~|= Wn9:߯Wefztd.vsNJ{izXn.Ks'д[7iK׍%rH4dy'Ev1z#:YW7<7i,㋆eanL*kDs~zzuSٟnG^^uGj̗`WuY535kXr?9+uKGʲWӳ]*啓շuv:_J9ߪp %FzSgLZrZd=e˵čsNtuլ׏>=4˥׆:[a􉳝]nG\[ڵ绱biRҮYǼ;(=_?b[zGSݴO}nn[ioGk޸qd]ϥ4s>5HO}ytf`T7l;yh)}#ybsߍwFg\, +#>h^ݘs;-#6.d7Ў({A ꍞ_8n^ V/ZjwY}/5pͿdGfмۖ-LyzEzkUǵB|}urya# 3k^׎"QNO#85X;1ͳuMkbx, 9d7eΐ!;vGǀS;}V# x E|p|g\Z+DG?O'_8>"=xqR8 q Ǎ䖂b~`oU^?[jxA3n p|Qf]v14۟!R4<>똘3؍^Ol_9;N;W8 1ܤ< j]#Pb)ȑb,\UX(ֳ>V\ dR'S]WA ɤ@&E25 ԐLȤ"YA1@zM ʠIdjAd"S+2&S2i-ڑ=tԁLdH&=2u"Sg2ɀL]dHdFd2"S2ɄL2qdJ&32ɂLd"5zɆLd# LdO&297/?4L4L4LdJ&2 #+ɍL#4LNd 2%82''M&2ɏL S &i"L2)LN2E)LdL2Œ)LS4L4LdJ 2$,2&2%<2ǚOdZHEdZL%dZJ$2-#r2 S2ViVi ֒)LȴLȴLȔJ42m&2i+i;vi'vi7i/i? 0(8N$N42ȔI,2d tLȔC\2'2]$%2]&2]%52]'Sn&n6tLwtLLLLOT@B2=#SLLoL%d*!S)>3+;~'~7/KBgL!M?6l٤Ig&M?[Ig6l٤Ig&M?6l٤Ig&C&٤Ig&M?6l٤Ig&M?1Hg&M?6l٤Ig&M?6l<2&M?6l٤Ig&M?6l٤D?6l٤Ig&M?6l٤IgO&٤Ig&6 o*0YŠHooXdX7$?(D#V111BB"ըpp_8Њ.U/ `Xfd `Q~lGtuAt[P2F /{Dsu盇~%;Zo J&ioJ4|{;?3c@PC/ض[.rp &ÒBgDXVNC#|dhbP@W`HhpgVɒS Gզ\HZBpma*i/ }:HӜE$5֧BDÙ,[F"R&Bx-z.K 'r#]i+h|9 =$B. ;$oLXoDD`hHD؜(9A9+PΊ$:W,za.P0yخAe+U5,(+a?s6lT. zqC}": [Bh}1 !^ PL+CZ4  BwAx/՛\Bamsئ%̵`.!}{H3|YSD"YlvloϮܾ~]uc|1~]ŪUdx{, ,'d\UMpJ 2(W_oȪRe,̍XUJ$Œ:o2ɤZD\&}]GfW B*U?pl:U/- =i1"Lr"HBѹL E Qc(,I5H"HR;{'+ Db O< P98ѴD)5P.R%#g:ф"Bk4*K(NCT&% S.>DI=L%R)wKH9F~tl.LX ODmPҜT5L}0Gf$K%*ӔT/F;.R3n R:.Rz6\YUذ.΢q/4\'2W=  I 1 1яh$G;4(*8D'32<0FgroND'0B'$H'"ۛ߈ jKt30(\Q-z(KAL!z.ѳvV{PpTNŮ Ta ٣ }lG䞠~oª|= SO)$>#/Ǫ>v_{HLkؽ8hVql8NtÆzߡbAWht?"ϒ~% (S"P?et]kĢ*Lj1Q'vme=gMzڪ%3E ggl e3<mTEx ^77\o*KY^S%<o%"z(a1jq:Kr ZBvϯ4Oņw%ɕ o9;÷.c!.\Nx]ѹ&'|[]>D&j_pй`YqUǢ}5zΪmt-TH@MX{o Fl3l.ھgX m&\bf9%ک#앲_d?);@vpɎq{Hz]"@x!Aɉ/!;CvGa[f< Px$+N Ӽ@|Cuv._8>B=!4NdȮiHn)+&??oL%w 9yU/SzcZ:/&zd'%PDzvdbh(66b}h'66{31J&TCTɔ*Q%sdA,ŃCP<8ŃCP<8ŃCP<.ŃKR<.ŃKR<.ÔaJ0xR\*3 LrOZSo86y?9տ -pi‘O+ y<GtS|\;?u9 v\Ljgp\;}GmWi5,lKѽ9d޻ pӼ`E=_,|'T᯺ ҜZlޯkkGѽ|pH=oPr_/ٹc`˽DIh#ïgn +WDLniS9zhf? Wk'wT*>qB~| 9 ;Dž솲#=P!xpz}-&iwv~~Fp`u@6&FɍLٽYh#- .[|` h>O?Jߢtv8 l6])3riVm-8~@b-8?!B h_(S\ޑ#GOd"D-p|kO/ vw:epluJa=? w>.?\OH^&2ɛ6lpQk.4@#E1 9;ΠQ/)Xya;|ipøyg73Jjwau4nJ/POq@v">83L[/m7) h!fȟ#8_\.>8I'"qe7o3 }$n~I8 vCEͿC+/_[8N#;#~d7϶{x۩bW8n"y'7oԿBR/_Jտ_J /RbK)aXRJX)%,ֿ_J _J/=>>>YCGDTcG18~U=~o'^V:2NYLJ*S}-lʣztj*OuU[o饮_=j#QS9\=jKשڃj*_*N]0o!"UC/XXWEC/XKXKXKXЫX,%,%,?`y ,8*v/]-} ]t$ȯTKKP6wW .l;l;\X# &J[)$*7/aHgdx`ɔ,<)B%B!X^H`y1/era &Yn\.L~MKt udWfݧ9:wtt 碎RqͮwgƋsʴyDQ e?}w`gZ6!3jCfwRL*0G}R>_;¾S /*o?}\%N#sﲪ[1ъvN j?pj]Y}U5XYY;U:K8[ 1䐉/j+MSM;3\D=C;'LVLtPm;/S;33b׍zlWe6 ͹-e0%-s[|kS~W[ /u|t_,ք![Sn?q:3t^/LH;?|PF [=mӎ=*S/|Lmsњ[?j=SnM?.r|9Ne-F?p,9i;& )lzy1v+IS(ms\qec#_3FXٴ1Ϗ~q厉#vzCQSztU~.[>!F7޸(O+U^}uqDC>O4:yua?ى[_kY'K6oR>D%huި7^7ϫfvɝcvk_LqzG|L8q^8c;[.wH]/g`9)z{qKZ+~o|efezRtC ϫmNr+\xw nw8Rueb wwXӲyQ/;t}uj6WX;' jqHY#ՖѼ^Mo8sܝ};o~t%T_zƒ+]]|}u<ַΟiwYqMv~rbL~'m>&K=qIcj͝=4s puz,z[ϼ!Aw䷼Ufjl|xz-ڻ-XmC%%#HNs#zk:G^D(-ڡ炼`^q6Ygؗt |T>.w9JY=sU}k\Ue>9WM7*X{\;:;\Y䢦g\Y^2uBf qbkŻyKZ1Yeg )^ЧDuIZVu^fqħ<7t wr] % ' j*eOɩW՝21nك͉t*S{N" o ,+^ׯ#9UvSnC{ui󭝿_zظp!g#$ ĩOg_0PL?u֡Q[Yz}Z%6兜٣:8WAэZ--j2\1{%3L-p?>2u(fyIg[.<筳K̘'m4qu>{wuMiǭN.x ּ#7okUwؼwKܫ$X"~7{u(_­'/-nF[IxFI#6#qbGŜOX[M1}|͚yUv%gj,R}:>s{6Phu[en-v7AMn3ry_Smju'4k4;~#.]&qlkFy*zNUiPwQ`HoxQho8<#"蟀R  !a$ E#CPcIR 6C"ѝb`,,O}y?x|Cjl8珏SGr;1yemɏ .'j%/g*î3ңyqz1HXszi*#wx;~'6Gl?}Hi/P;)tt*oxdGiv̄/Rpzch(/KJ=.d_OpAכ4HsD %e#aY3DujϪ^]3?F_":+g|\z`jϪܞ.?JA84bqȁou)q>0gkx܁wƮ#8#,) b׵X?uL~]I :u\.\Ҟ#~8q8=u\Υ?>^>xڳ`?x -\3n/>iuirYzO܎L~8q2s:S?iWq>801NǗM]vLJy~!Bk`R˅w;^]G&>L`9>Ni7u\0q^.1͋t~ISS{YWW<:X.Na#2Cp_iv+뺬c[X5Por+C5 o/ԟ8nkt<m|'gb8s9yO.vxj_c֟aTCx3)'a NeKmwrEzq]@NI\p9ƴQ&™s,AvN^nw߶YC W59Wo繳a3Cibý5w<"o*aQ=T3wd8ird3H_ۧqϙƉq HT7wd~e?&; ivR]jL)ohwkjx 3dwL Uj%(iEYw[zŪKU(vj$qGI;:V]uǪK2$)qHIGJIWRջPVΔ]e\XXTqK`2%X4FBbqMo2kA'c;x2nX4X4Xhue,rQ(ޢᎣ7e,JޝqR{2-QdTBe,J,h.(ycUƢ&Eɻ2(JU򖯒weyOXa%X4X f%5˼,nQ+iZlZX!+wҷ]K_ťh34TU q]@]MTvӏR|%<X(YJ?Rj2ͨ$G3xuێg%.d7Ȏ=P!CW~,=LciW7zp&,PHb1~^اe{ނsO?Jܑ_0Y>p\Zwڳ:v8K-8?QUO)ǁ"9(7wd~e?CN!ze1yp]ffFoxٷsRˏדv$沈D󫑊5o̧(UqUΠQv펱+]:n~{s/z U7 /D@V^v 4xBpAN2Ouqi__7f~e҃ݿ~ Dp~7i&&4q~d7bs@c9b48nxGRB))3x.TE`Xҟ7,XSbO ?<%(*_) /*m(ĠrgH P[Q`ٶ$@|<#==}-YbXo.,ߛ bXo.,ߛ b\\S㸂s+;f:/^-Zݓ_+:js*(m/(F386XŮcIʀ.&<Ҳ=pof[~b͍r˓{η\Z6䨷zД:|J~W^Ѡ܈%j-Ra38(R ߡ(.1o\!;x#'}(yuYûO4:<ko[~=O5~C{?lekh mkpnR8ו8YyrFOH{O៛xboͿj@hc/xv|i#Nhpۨ2֎o`uɓS*>2vdU >}ɰ|/kϿ&'G\!zXe*/{lVk2/%o='-Ut.YTw{>p zf&V@Ү`m%3m#=B\ui.$@Kd2_}غ iw-|ZlW{SA0+:Soz2{ʟ ^ԵgߦY yY=.nL/_(/OϣMx tAI[l_ 'U,RCG^L=~VfTw3]so7x _miUsڶf֬͗s UgW8-֝mS~[~k V ?:r,$׬t?"_(/ AA^k)=?^ ,6ػaO2{3YVfm;遫uTw4`Zmo*?g ͼy_%+*KGo*<;Joĝ9kQSb ߿ Bf؂E_y@CicnOS ~1`̏=`%3 |St߈W6wή;g|J?Gm)v}oװpVkaV5\0) > C保=5?ڐ5_n=ê5{_g(C4sӧ _&:Aӈ )JV?>IÐ7w] !|@/e_h٧K7>o?ety%ڎ[()?+qQax~,6;cifRWPO'՟h}C_g!E]*mn,˿x9II7'8 li{a}a2[8OC,1=Ѹޭ9?MfkͰkVw$?oh@ 7d~Cgyn۾oQ}o빽澈MJ_BK]&3?!dKc^jyn{kx"Ln[FgVoՉty^}?һwPcj}_ >@C闒7ZH4o ]6}nְyi~+oh]1#ex D^տ+?׷3ZFA|@_$oPm430/wΰ38vt޾l~K2isER/gU(Dh}C_g!ɻWfݹ礞]>0cƼd#VG-yY^r.~{yɊ^^ءAT Ixz,\ߨ/3(E=>)WMy)[]{ĵqy FxtK~j{Gxſ(DwP@p}C_g(Cɛ9Q.o7n-t, W;@:Q<3*ށZ Q /_$n$3&RC6%y-v! /JGCTIxz7^ 7d~G~i^ڡv֬B^Zm^{&YПC(IQz7^P 7d~\r\&vid2|4ߤ@:Q<3h} > C{)UšctIݿ!xA(Ia|?P1\z3(K[8pxBlI ?&Yxc9AjǷ}ͦt-&nf&dBܞSuĥ5m'<9QD6ϰQz{Bg 'ks|65au gY*ڙ &4WYD=Z QU$Ln59k~{x~)|:h?DW +%~ɗS ;[v#=-Yyx`O_Qq뤲HOp&zJ~j2u }7Qx5|nטE+ `2z<ɝp~wghBFBǯ>v1 v=ss;p]TW)Uxϫ3?#z 9TߟS*5=;opFxlk5d+^5\qg?g!-jui31QaYx[xu4^٩ 4N 8hgUQ>Vf}0؝2:uZN˫D=W>m<R >ە=B{HLByߪ~އ>^pϾ|Z@ #nklXp{5]&KVE+̾8n-uyrSIv]t2g`k`K^<Iر~nGX~lk&1nǹ=ѣ(FGb.l~Ux Ipla= \yPpYV/w M>rpZ"t_=̈́Qs۫ ?cscxߠ-Nfۗ?xyq̨Ұ,@Z9JaҨ՗ _AB{TByϿ7"N.'^Shd(LG 3;]qNoXƩF7V꿝 t8;=$aG~f; (D)Lّ's{Ut}NYj,sbL3œ5إ/@;G4)Exb{Vۈ1BOh15W(o+ os kpqbUZ%66봉ֹG־75lz5S8e7p{d~ Y*h+XaN#lѱѿsp0n悞]rH{P ׋. B]Yg4 kg2G`s6ЭB[_ŷ58v뾙cfٿMS~vjTbٰG_AO.rb(?*m`/byG?lxC1Tq-FNJ?|%T"\ߺk0! "7U{&mU!o?A * -2Y4s3\<;&9#v4IVoEx*$L7ղ;z#_h} * ֭CrNr!߻DgLݟݎj||#]}mWk3_uGCx[s7o""fX__WXfmJX/:n2_%BeD)mcN*շ?Y[KII f%Zy[">*8ߩq?g NCNJmLzأb}k9üb0Mw <0XAUar۶Vt~ R(/0TRcFViF'!ݲҺ5-Bwv#x1~j(ɏиtUsnU!5C}WSK#Ua;7WAB^sc5ɐ!/P3-=K4odغݍ7en +lK+/j&V;7 LmaIQ%D"QUᾰR13D G+zb*zb&zb.zb!zb)zkPqUUTӈLVŁ6kb#-)]#)|UG?uзZI-u[mkim`[&@!'|~ls )}?WE1(D8qS1Ntx;iau|r14g:jwYkKT\^e_ݣ:.YQWW]uNdWS9W_WqJm킉40NObdI0(eHl eYVZuiuLu \tctҿ:$s9xCu줺sɤ#Y*CuUwΫWV?dxUU_[WUeGYmWֲ,T/mV:Som'Z݃ WАUڬՑ.ZWS>:Wc*^mrWm# uAաQ8.V⨎Lte=s_V״k³&SyeK\YJwYbģΥ~kfULv$`NGU )T_2&sԾ:YVUL[[}ڮ.2/5ŋ5uq֥OT*>juiՍ e[XD8e^W}ӷ_?Ԥub-˿_tkO~R%SչWZ۪l8-U&0եΫU/kbx2bL]]yd^TݱkCmk8}Td"aStX$7]O wb 0hM6ndm6hM6^dm5-5E%.9jR9jR9jR9jwR9jkR9j_R9jSR9jGR9j;Ryz/RETC}|=#cX7%cNJG&qUpP+D㠺`>&<\;AzD!iLGBi%%HcS F)Gy ,ȠV  CGچ쳇gW{N,➓VpQt<%T\̻s]Q">QAB/02(3(ʗc~T' ,({LDApgp`=zzGS[Fzx=F-$*(HVHɾ@jaၡF+U|P7J@zD ټBB|5KZ_W&-GQLWC~p QR2bd8bˆdi,~IzE\Y&t~⣮xAT5T ?X/Iez^A|.9(f?._Ayνēkǩ't>yw-vh}๭%~6ic&|{U|)mF|Ů69N87<\6(0h2lv㣯; LJE}bM@ڞC@cnI"NW7wT+s-`݌Oǭ|}`Ɠ'z#Ko;hk81 qÚGtv:#KӋgY}(nnA*H3eyWDk`oZ#{-S{cMAw߆qf/-&/(Nz NRwP."޾]/m bʧ'Ě^oj??|Opx-ƁwtUgvt[`ROp!eV>n G++YUP/TGiq?ϰüC úGTctgVmZn85%qr[47n!QVc9g BHP+/:T+Ш0#ШHR\M%@l}b UZؘ؆ MKHO I7 Q^ p۫U,Ze$uwIF !BG~ "tDhP#B[!QhBG !:"D:"4ChBGZ"TEV2: tTt P>֘.H/&BuBN@4lld.T?K%$l(RY(>+an/Lm(kšĄ* ?&uA/'Oc5.TP0DS0B W(BA PFчAD M(B P1T EE0YSSK:Kҏ%C6TVVWFQ$D|. Z?Zd@r ?$(7=@O{ʅIPV!sUXV+&Aq0 MOà)̛@Gra5ʅIP,&A:- [ǧV* JvUPQ`Xfk"_KQ^@tX&REQhZR@{TJdlΕ P/Ę\`"<|(QAԯ O UքNt<ᡓ#}8 K|j,k8!gJR`dpU\|dpXI.)xEJLQ^X xv"U/-)YkJzu&ΙVY3]Q]W~WϙzvUۃij`wԊk+OC`̲VTT~ #'>hH+lxI̤i2ɢO&=1P8ze2c:dy'Ť9 sԗ1qX-s/;U2 }4Ή9 .zh4ڠ{_?h~F 6շ+_U3ȝUSaAڍ3uCN򯶻zn4մS(1cȕ N3sd1K߶] 1EZ<3#VyݨǦ~UZ߱i'+ۜr^1s}Q?1Gŷ>nz[gΗ>AbMru09C5p;猴w u{gՃ=6Hأ;Kbh>s^3uo">whMtXbRZCa BǦso; Ҷ?]6;6b=Smt폕M0GW8rok7u0'KW )ͅ~V3y.5^^W&pkxw5-.2C۷k,^{lw5s|.n`یQ5qkZmyUfs8׼7Ig^Iu8;Q].o's oˠ箹JÎؖ͘5yQg3N66yVs rY"o*g~nx yNs\1}:x\W2%)] |ua_6۷eޙؔ!}ٻ8d''f~Spjn=櫖ܹM3! W \Od}iA~[efp?Fv͇Ѣۢն>4 ]8Q2qta?=9rsl^@tѢz. 5gic~qߏ}9MGNs/Ny~Jn8WշF5._YsetŃ{N5? bOp;)?}n!C|4ҩ+5۬o}p֮24{;nŇ/hj޴^ƚo:oW fZ\^Gn>8~Ym۵-G&(HtkFy N5}ѝ3}QXo-1|p \-o2/׾fÛ}^EЃnWs}ok&ev;8Yh;ymJ nZ_ힺ{aW^]vvyM#S]MzehkyZ>y3[Zl͵ɸ3Ks3zX)˕E.jjxV{%_'$+hr+V[?4(~QO_v} ^NTםԨޟhU%m&G|wA|C} rG.gߵ8\p brq^muX,=ߺlߜ)M'>K돽$h])2&n~:Lߛ ]ul76Լ޾g_f:_9;7q6ϙIK BZ̍/xt ^w~pL@mşKUqa[]^ș=szEm(诵N&io_23t+ ==#SOit2Γ{:,ČI_҆IY續}]Wޔ{뤸좯/oI:>rSxYE~{pĽJێ5!ό|Y%z28P?/ fauЛďg4b=R'n}oA[9h^{uq.ڬ^mg]rxzr-շmըQg_V5 ϙ>v_%3x{q߲+M|bذ)=ֹ>Ό8r\Eج7fuT)]{/wF^wd-9W~nzi1>lkz=mX}_)yMw <}9MFoOMJƟƾ=IVng pOƯ8#'N=V[k8[~bOMkg?⒏ڋؕ oW&{l~_oYQ`HoxQho8<#Ș:}[BHDox`(j-IHjgOhQDg8N1(2<Fo<"Q{hp쨁͐_#ag7DZǿCKF{ QCЇM& ~?"rjHbd7Hh~j4~-)"_WC!Qy?cM 0SX^H`y1/yM4Om4{&5WwV[[[[[[[[[[[֭LRG6Z[^|cJoaw?Sb1`x>C3 yXPo(l?4a;C~.0nl7,U箰+r8? =7'`9r>ŐrHw7,WG(suw~h<a?r߃_u>Őea9!`q8x}|<7^0OTʹ' !?OCg*Cg!/C^<,P/ *{rϛ吏w2|`93P.TP_C<2PN߂ʹ u7!_T,| *,\!_XXT   H?@:*gRq:Q Sq6^r{(q6:Gq:^Ou1:x?ɅHq91T?toC0\Rډϐ'NG9ԑNL^Y۞ˉkI (EzfGLtp??V\^}!8}CJ{HS4|#3>Jc&|5C;FyYRq&J}:6ޤG#:^H-)$6PΪ| 'kWT{VRi1Y)F~x\! p=bUgS{VtpuEW V/-0yy)ru]GJY(~Fw/'|Hy4KJ{)um:3O_;Gq®v ׷>N>NO;oisO,^,>$/~C ;oiۇ4?NjCZ?t]zAVޥ#i3_!?4s|Lz\OձsLvzSR_=P3؟T6JC mE?Q&k7׻x]C{r {rڑڋXNp {{[i;MO?.9Q)8c;)mBzrxa@㸊Rm疍k!Q߮tU FQ gy.PW3]vXnY(_vs@NY`U Deg1('ߊo^b;c厒#&!ӌN~;_N5^Kx5vN' *AucPKp\lS|v^9Bve@=T^MArZ4V{%pg,vY}Z-xy~1; Q)Mox;ǥx.=mPa玓:\2_/|//Lޑ#GWVC8p ­WPuofnnqہ}?7*p=jL^*K4^|\? "\kY eg^ܥ7'_q#= =At1;`Xdoi%nȟI 8_\.Tp$T7)Y _?;qcL]&=+)@t xwfbH_z)Lv#m]}L!68?:-_I&z$e@eQկ$GkܑNݼeL/^KP+IGd}"Hկ8~Q 꿈e^T_҃~GK~ NkgՒ?K~95| hW\hJ~*Y*Q<%?d| )ѣR2J~(iGJy(_ Uz~GM".r)]4tт.ZE%K84ph,X¡Cc %K84ph,X¡Cc %K84ph,X¡Cc %K84ph,X¡Cc %K84ph,X¡Cc %K84ph,X¡Cc %K84ph,X¡Cc %K84ph,X¡Cc %K84ph,X¡Cc %K84ph,X¡Cc %K84ph,X¡Cc %K4pi,X¥Kc .%\K4pi,X¥Kc .%\K4pi,X¥Kc .%\K4pi,X¥Kc .%\K4pi,X¥Kc .%\K4pi,X¥Kc .%\K4pi,X¥Kc .%\K4pi,X%DKJ~+. !>1f"RF5VnBm d#7xFz{ [ߛߛߛͅ{sa\X7ͅ{sa\X7ͅ{sa轹O4u՚U^Q^Q<?gp}ql&[B]@I]Lx);e{Ƿx'9Ćϛ'olQo)uow^ :FNvP겆w ity X߼zj~ذ zڀ*KpN)+qzש6h<68؟młߚՀ$/_8Wy6w5UߵlVg`Am=^o1|~p5tL{U_t | i2E%G(RQep''=T|dnȜ>vA|a'r)f_(מMRO">BxTXc%^ؤyʙ(._S"\ruH0Tד}hje._Js{NZL\$ǩ:|i R rM:1]cbJf(Fz>j\[IL;ube Ruo/Z؀X`^EWZud?k9`M:,z>\ݘ_dHP^ޟG/{;?&|肒v7\lOj X&u#J5((zxyp̨df+ n|fɵmwewY/jVwq o[;ۀ+׎4>AtXH Y6FEF/JP^^!nnRzpQYaW$v5}rU4Oooy?5K"WU䫛Ux3_wk.;7r> /n3lpfcNZgvQkvb{JgmOXm]w&g=~R J;NaЭ|JE&k`PS!|@/;{j !kxXv)ػe|| 'LP&$ k*)_Sce'>^ܟN2 6/f>]t%c8ߠR u85A)pf=yDΊ_O){x7·dUm(tܐt~[,5P-Jj_Xm.Kv/6~|_Wyz^U1kD>P/i`O"Mu|)-VWS-|S~|$y,܋!/_ˮ.57"b~OcW_&̰~VRj!x۬}OEo|3~\3~Jl?QR[V<<Æ 7YlkwǬ|?c /YN Ck2_Uݶ 7X,-rl2-u9olO\-q>$}ne(W:q럆Ybj{bq[s2O [9[ޛ7,ԛaנխI(~@1Zzo~= "yy\仍}ߢdt=s{}KߗL~g~oCȖ<Ǽ&R7E,܎\Ϭ ;ު&&滽~w !|/%oƵh/am{3<#oݬa'V4юíϻbxG CK/wͺsI=9|8`(o}ǰ%6y-F:?筎Z<];$1ѽC1Ɠ(>CXQ_gQw%P8smZC%WaE3$tl Rc a![ҭZʦ%t)]kۦQԢ MN3I||^^}y>3Sn.+4&T.5~ՅéV#=?2) 5Ż,vr%vA#$g ȟ! 7H|ܟS̹|8m,>Ԅ1g7PM'w-_ /“ ?x,ox/g /$_AX+PwM9-&9Q6fW@4uEx~ "~O{49k%WEMz5FAχP~:¿W82a VwfQjikh!Xj\N~n_6RK4J\ (]ު[cv?kNٻq^h(a%.eý.k XI?T^+_ }0kZ~Ax9kKaTF8xB3(i58ݺ:M hCο} #AvO`-Iz k1 la7ɍ59},ȧI׀>nQ==:/VNޔVއY/3Qa|VNlǺ0dx4֩h3(7p~͎5 y/;€%Y sl 8G(fd>~O,}Sߗ1aeԭo?Qfqnhl$,X5+*|*UHP֧VV }gެBǾ[},3+L5sNp}#gseS71\}ƽp@}m[ǞQW5rE7uC1vB?wb?SHEos9Y+7y.=Q6X,jЩcu7ʭbc;U[- ꯳ԇW$(`5߷w2!rugG$sB'lڥNB:?%_=!(Zzr&!e`sg_u@jcV*A}0ÿݟ ySn56o?]bcyкb0E0nj|hozMP|QcP2'̦ I^ 2ҔAӀCTl#56j-&?OHô>z)BZ7?Ub@?h6 Oibe"w&c]aH vE`5}|;IwHꯍԇP&_p=f6+xx'v.@v^`R3dO7yh6}S`3iҴYϕtMl K$zm뜕S5,5:^Ѡϻ0ώ! A}3|}t!9CAփr'S/c%/sޏgRPHXP>p8Y wکyNccQe7#Oi#g&q0^c z9ؼ\%Lr9>

u\}d~*݅cdc]lQǜ-3e^#7&oYv ,r-DfN5zwHlzxa__m갆X_0>UgBMP/A*ڻ5/E>OoST*﵍u|H" ,BwqV.(h4 \:1t4Os`ֈ|=1Wcb3R]h`.p> /N۶rk僕160x|O/R R?D!yI>؏SQLc$ƕr%r 9{aöQX}A!gL^QM|^!GS\YR.3(6ꬦn-WW֕Gnh ]^8&xBUx<ǷUɑxl@64,k޺;eB\å{OʟMA~ ͎^K9Y{$MRmSGL-dـ^^)Z`=ޯO7û0u{x*>=%oBk-jH(7[ߕx17n#Ϧo-[uII{k_/)RJMk%!Nk4e|uKnoSP\Iwg'{aZy1ں5Qg(ڔjI~m xgi0fNjf,w?/R<@D;vCX(_V//5P⦐08{r^cWݔ+?4+ 5$2wzW9J$@<ٶ8)Y?xh\؇wDo0=ףxN6.ULWn6)K1aWv ҰhEtٴ&mq<.ǿ,qƷz/5oʼn0P4ho AP9> WQDL}ƌYD1kzY3I)-.; m9<8 B<g}kxgH?Qx|+z9Ƌ4[?[L ->v{W{n`"ŔƠ#ia3ijF/C`>/B_'Ǔ q|veTZ+atOg^ocՠۛh>p}8ks Mx᧹>.K7G^[V̇~8^?Ŀ3 dx3΄f, \ma0^WBlC`hosH`Q}v~=̌hx~'S3՞liW?GA d uvV8~8g9koR ֘ūW4 ll<FO(u' rbrBCVүү_P1A#]j 1_/z,/zЯ)8 ~_p1uclYyEƏ9e|SkR+|G)R'Th ~Qҩ}*J|Y;u|ȶz l XMؖ" T&ܩmO#j(He]E+~ c"$тp8_-8mKo#ꧬڶ%_ҟHRvIwM%Wr/.IQKZ㔤@t=IV쫳pz!j7Iqȧ~NJ-9Esw?4#y&2VwٶOTu_{ghou:OԚ|q v^G {dDt>QO;g.Q;u'/Kx"HTw>g{DtSK5*.A%5 MYUV#23 }{GޒjqY_\g iq,抻Ӳ qlNV@DΒٶMKꃿ%Z}ddIGEf⶟mH ⚶sDKd${J;ޫ(Z;]!Yw"PDR#.Ib#/=0$:NI$F$ (K_ZYqC{ +-!Gg8$^Vsę++K_;H2_,ټt|Y+):Nd>d;+ gvIbHÈ.j# S'%A۴ bG"$L^De()_lE}I6:D#7Wl,=/ !XYܯ$;F\dE$D0_+*~"qB8Ft-.?Dދ{>Y q"KڎJ⎯IbS$I⣾3u?,0ѽIĝ'uFd?Y+"K#?`9a0JHCSZ+i~&+L) J7CRO$7e)Iho(;~<(u&vZ}gзpwe133/|mUwOvv^v^8 $$TnJmPM*IB5I& Քl|q ʔ j J * ʑ*|E/Dn0 ?'ȏau\ֺYKU8pK@e29/.e?-V'h?_TE`a }vn{6Y }b`E;}JL)CUT`_ylGֶ*`?I7UYullcW.""-֜l)ˆѷj tj~ 裳^^L: BEdz|Q3(iB fpL<]0PXK J^4?/=},cax2Alĭ'#IcQ~h}}ڼWd6C+RG?}ީeN5w,٬Ǜx`\`ȴY6EGRe?yQ[vfb I_ֈA2:u{L8R~xۅCpa)xeTgpd7gb$';>"'uU$8j{!8м.WZy7 vhP7=uCgծdЖl7/hQ ~@[K jSF#oaڇoik‘f9L'Cḏr~uuow<>`qSq~q[m;`ߦCW3c"w! M zG?)y`d 6H`$z#׵e߂o;z ~tu^R|KLb >K)7,(W^i{tրon:x6>uy:'PCgnavw/n2n֠hGЗZ&Hۅ NHf/בۚi| s.}W9Ek%o!ޓmC-=0 73*0ri tpS1kcWր.uE>NMctҦx-Z1 [i6:>)\6@bA=`Pր:Y00)VD_-|nпP_0h%yʮ!Kivt?1IYR Iހ݉{E< 8M`=yi/!%-ՠ'+KAt5nx >vx^G )QqMZD{ɇ5., /!僼GSa k `g+C-2$ֺ%VoUGi9:^K2aW/߶ ,HyPP8Z$ĴR9Tb NI/ia[zy!P^Br)6yN,bsącôfvbK-.j\_r796nF>;nMwxY2#D 3x'k#vo?N'>);|N 2X&ԣG6;(x`0Ly/>j/9v.o4.63BIitI2t\EN,ʬeÊlÓVSA_l)M"=~wY`b.Q"8`uyIJK@,h|b1w?KIb8n/gUD='2z'Q$ѓzDO( dbQ 2AF1( bPP JA1((@d`((!b((!b((!bb(!bb(!b(8!b(8!b(8!bH(!bH(C+!bH($!bH($!bHR(!bHR(!bHR(3(B.˴xq@`銸M`3D#Q'C}N|:ɸ<=* UAK\?eW3S}C );YtD}5ݎ2]G|p?h? LveN=p/~տ rt2޼13y|n~'!yjFZw!gp|9N<`V_>g(3aq VB}߭Pnw+ǿ[> V߭o;l(;-<_^=mv9;eO*F*Uϻޯ0d>OP~]bB lUi3;AԴ9`c9XࣻWʳT{+ +~cst-_~6p`;t| ndT+=\^4+m[ 8۠ ڶHy5ԫ<ΩֿO^m>}<4/ו s>}^|vs+"^!}eL;y97: ,T0:Ȼr^( 8|hc 8je,Aʅfy־zMXd;γ~+ Yhtt;s} _iq9kDlOOfo;ɋ~aqQMuP ~x[cJqq^ ?O[=v|SvÚU `_enBᕑڱc{`׺p2`=WCZuUKq7,J6w^8$Ѡe+S;j4 ڶ|}qYhI(P3JNHW=ū4\sTÏ*8ݧUKr]<8iuI3n7hbUyfl5[86<$v{r=egݰ7h;l7wՆw&X;l̓HyUI'ZVE"wѭ٧O){w>69K߫#;׈6_Uwv?оw{"hwzy+dM SgFDcI ע-6?I=ȾpdF&y5|^jyg!8?2بԬZ2 ?`5@kcl?VE·}.aNw ֭|9 ?Ra](G'ՒYdMy .q9CQREYI=|ti7筠B9ʓϬ[%i>A{znvy(޶\<.ȵw(蛻y`(vx{fʞLk{+xާmVf=C!+]wyWA;`؃#`du2io':Pt185VLQ7Fu K:CÛwO.˾pV]9K+{HO})7ރoB?_T;ӚE|EC/-ݘ~׹ʗ[W[#Hp.X􇾴e\UMھfP?g=T|Z!fW亮'خ%< HO}sb84Yq=QnpوS^ u]!~+x}yy,+gq=xۯBQĥ {|2)mQg;8wi)-zNL%-N??gXg|>58ߋt4l3Xx'*xVfrPOZ0'>Փ pO-qlYeW.cfmCO=UAۓeLYϔi_?ynov-i[ '/=OS#p\zηنJf3WL_|4_%d=1364ze >{[\d`z?T|ڂQpU?s%͵bXidIc ?TR{&vMW'(D}cȑEqUaR+fx`$nS7ѮcoU mnc:9- |qJw~s;|sO!Lӂi ^<֗'$ZOow%GM./aȑ'7JD6ȹF Wy*X}]z>2uluzŦ|򬻓,L,9/]j-0U& m]9>Pe=/P8hv-n)o}+vjhgcG>[ÞcZmC{<~; *bWIyL~gge///wcg:m]}}m;?Ci3Z9Osr^@qnHpj njk*̧ }έ7xp6lÍS6.x;hnI^%3kHM} kJfzLZ jbfG;ZaGm䶴gjD%0G@u{/̒1p,]ۿdb*huu7!˳ז͵Z J;L]TY怳(Šc%50fDW]fKFRq(5Kޗ" R\XCsFy6>jk~-2N]jhv` IZܤr0P_oMr'GpڧZ`{[[#Q 3|r[9 L07pG4Ǭ; Rv(%il?.а(c@ݖU6 9NV+_E A=s4R? [%exq\RiCOݲ~yj? 7Y0/ѓWxh͑˸?-p.aKfb7 * aAh~ U\Lxs-Վbg;CŷӪ.u ]ܤ OO-?>Wlc@ O]-c .k;||<-nxT2jd}pwE$W{&c0pQv9Q4TzVH$Caلf9TѦӁ@M>t<&EmYUGF͖%r| T|)x?2#'suǹdm fWݬwJd_'ks@0˽a7g}yVs; |7)/)jffueꟙ{@| /أzyz2l*<|>YL-ݿYv4Ofm`?2"1=9H"81k0O=]ݛ~x/_O~Q\?_ڲe H^*r{\g.(оcd^T<*.x 䆾u!N 57"{ޮf~3փ߾.ƽ,6za_g/M>8nsSi(Oo9 ˜4q>ӓ7 #:>P΋ -|Bޕa<^Dׇիgyn7J? ѧo ⴠSeXg|>58?gZ6pCX^G?Qatλώm38tgKd/ƷaKN-`Qrj Fo_{Uy_pARrϑ?^L{[P<~-{%7{ 8y=<|b9#*\FqvEo_Ų%py7޹,<۰QXN|ޣmZh]7pAVvxxk:]*Hy&8oTV1|Px_$rRe2}(;RaFxgQ<4?ܴ&0oЕ"qfvzr>A,A(tЙ! J*j`~عw8y0ϲv r# ɢ<1Hw [w 7 ϭ֞Iݝ6 / }2gvAnL\f7a/3G}l(к[ps?'=t1^k8!FA։Dэy" =*.$|_:w*H/iKӧ3o*Tp.n딮sϙp2 gB|n5;T0{#o<q|sQW{>/s& |o{S(O_S+iTm:HiM:dxC]:/e:ko0ާGhMpT_>B\@ JvAm 2 +L'\G+qhgM条7O\xJ._W2pO7V@adžV<ouf.5=Y'\9|5ٍ+ Qcrq41M{3̛YW7_q[.ev zC6.3pN~0쁶KbP+dY;w-& y8+~Ļrn;J3}viŋE?Inyފ(&xȯGFڀ!/+'"Gt@Rhz̸p^iIDhxhꡫbCYm|9{8r,QWwqnn~Hy'wۥ-sK_ςZ3߃&pǵOnwLJ/v+P{YPT^f`l5|Yv!nɧP_=]z*ܑʞѾygC-+O9Zw΂jCclJCM7cPgs-ri< :Uj j>*u2̬pO:Z-͕f:}.×֖~=˲Iu<"Җ  y 9MZU:Ը{eu}\&Ǜº7hֹ-wViv@MerPiC.h[z qnD˶~Yqh>;Ζ_˅j w<&CfN<8R  ;[TɁf ܽvpG͹6U6h{:VL3H;9o; MBye w2Zvw6[>Gz lv$g%b?L(S 3,>t [p@-ax9r]F}ş[5{ov\Où)SaM:'V2oAN;ˤֺeKŗ3t/Fmtzф YyO9?Gи*<'FHJq{M/8U_4۶7&/F`Q1~8`p=^uu5;!T}2ø郁Ϋ\QjO޺C{xٛ_kYQF!ejr8z0?Ȱ|j>p4-Ͻ5Oow?ߧUSx?@}Iw9) i~tσ\xLewOUCW˃Be|D[ĥ@{9Cyd`|#ۢ?1010| soO"׶7ޤQ9<&x,%9!y=olb@9~Ӏ l@qݕ%/6c#ek> -B'r-j&i\?2 ׸@A` mw5mg t$L=7{;}}(4+oe Xkt}fY*eXwƤ#Ȼ핗ò5Z 3&r~ofL_AC;)_Gv ͳs薭/{Rk صu#C9Yׁ©K.!-; Y~,S-|YG9YkgC$uz>qԼ}`vĩqY~ZQ^Wn0k4տȍ {M65˝h7 ;\_NX {jWOͧ܈Pt7O:q<Οgt޷ sXt3#*:|zgKtlM{r%V_Gdo1P#oS6wCTU6AWV5/T^i{-S܌~]1H[ἤg7D؁KLY>.zSS-|\a[xQrU@A_smlIlN3_' MBYU=P0 WV/kdwPmؐBIga߯ޮ+$cjs9GsW OjϹwxzG9 # ;G"7m/4k`nxJg@j{|z<*@v`8;eA7 9snv^ [jq z߯ȶ,s2>}R`4l}.0R JV[_ՖIX!R`ȧj\8 ,mfm;aqG}5U>lN87%:䕽4d0]}Zȴt:$+ *#zMJlk/V7V; w̤ ?0Vy|[JuCv鄞x 5,{ ئ-?37Fo[Znj[DEC8ü =rTOnw}NwNqFz p,;G·VeVHm[YK)."ܮK>[wwN yϲp M ރ]:2~1n59|ū[;4N|է~f] `w~Ou=&$ BӁRɣM-"Պ$n$lqoz5hEyBs:{S(M=䞟H0aϭd|.\ׇNg!NeαѸۊۏ.(EPv\W NuŐ.S8t_BKOgCZkj-G>ݏ8U_;J~(;% xoX/M̊g~߶ J5no={:/>#[7VÁuNpkV /ȁhsRXS܌{rFpkVoS+"VBq<bDBs5o$Rv$Ep~rq[ny~q=oU܎`OoGopۆӪ?sLSl, ?gX>9dl|Lf+dVcp+ =_;Nӂq9DbҖL2jfrAp0(\ "W{ǐjK+AF섎E1LA9^K.[td~=pvs`9o۳KVU '8.x{j)S[m9p[>lV#Ǜ6e|{9s7uqwe,'Bt*'5 7]jˬ-KxB%#륱cxo۹ڽ]vh"gx`ڰp~d7`.-pR*:ش]xVӍgwdSO2</7??`vFr3;6ʱdTyQa^Eu&G] _'Cexir\2] @m岟zAXZ%x_}k}/a'ZF8!Qnh_íG/*%I<9 C Yw"cw) l8vl;(Y?7`@t4d|dsj^o[Zܦ>L_9:~̹|>SG'&;Y NG;,0&U~٪>a㽗{Au4!U@y 5xzc;?EXz H6T٩5tEW*6[`H5r H-_ocTIJ6qk\8g(dXu*]OaY^h+ SՀ0iZ=3y;+|4kUm!{gVUV/.I(Y4n]y8OqT2H&Rlp{|z{ZQ5*Vx,jX䪽{of9+wp=v9S`veVYu4/!Qݗo[̻J cI$j`PyCV>puxW$LszgVgo"%}>2`7l2Ӫ/h'ù%v{a"tOB϶@w/_yg7Kڑn,}|lu^dui|`7GSاC\h`w.9x~!<9}  b{>_]bW|g?~|ޤM \i_b:w` c` V'<Մ)0e<ǸѓR&Х_ojDWLp5z=Eg F@TšU(x8pn-=48 %-NσKLsMy[Kwm '.F~U-oиY,q\hr=έ~ӻ"NտAyeXHɋ M mKCa Qe[]Ǧw#N1.oH!K7yYi}gIQmB Z'\濐75gc ϧ3iy^G~y[ocgū…'`MӜud_6W)S uRMFct:t?dz+4Pn.

&ĊH}ENR'4x)m3C8ȝ$0e*yQe[g'gG=8iU8q);dҘHZ/H!RDR1M%Qo\Sv ]rדgp.jE&+)DSF\OM(u|9*t!!QLTNg} 2SRJI>`h/u7prbۜTY >6 @GMq"iQ:OLB*Ό*O&hq aFG gnut)觭%h\ovkd?ŤVf)pLǻ*O$f@ dpku7Lq),Nf!}EUET?+Pfg|pl МHi INea8n7C&$tTOZeMO,ETڀ_-a1nt\tl՜=x[hW]R=$'2U{w!wQzL4w6H,Kn W3%{ͬ# PKOn#sIxZ!Df^r"ɩo4m4&yjFv!._ F4}(_4jJ?:Ox}'*~hoR zj e6+qG}BhCSkU0- *%D=Wv.IvUݖ_ِ%EzףM|'x ~v9^M"Lv!x6xhfM7n`)ݮ=Ҟ\H  WəP1KDotnC ="{)<y~++CYVVf8,*Jj}8?XD ;~ 1} g r\Jf闱l_!e]]YDw?1xNS 8 G,l19CLo^H#Bv#U6?g]ؾ#Fg_{;UtyG(4hq*G*={"T;4 \ $ֆ CiCc&O߫O(ۧ^c>e4c)!w'TzThlylqQ A"1-MJ¾:#Y[bx-i fPPktF( UQ3fdHr9 R`& ak-)ft.;~Zri1-jyT1y+`%IG Qc6XS9+UMlMHQ8KT6m􊊳 ?"4cꩃ _PϪ}>Kj+:BE=QWd[W'|4y~-1!aK'brp3$*/eߎj9VI_sfCrf&_H̵!U>=Ngl v(ThP|aC)\;޼.\Bw >WA,(93y%|{S .[^s' SqT=p.M~ҾeټޒӹvsMn^`CЯ եwAravxP"^'*AV. c3BI${'-U؂n|~NSr ᆰ}Do/= lshSmg[ By!v1y&&J+u{?X4gXj}|>9DNF[}2L9pCY1F%[bxA i3'wMWۍJ84FY Ƣ7biRK[QXtuuXv OGŚF /fw#Q*qdIpؑAמEz]B(9VB" 5O!/~';ㅗ+QÓ)nlNϔ8/;!+m y[;_ È9$$ͩhnZ 5!uV=a`e7fc_ Vb2-9Ȥpc-lkFM$i˪[A9!LMCk[O3u693>;8Yo0>6xjkAqӴ2L8jw5@86擿uضIExw1ㆿ8-Ec~û!.DkArʲ96t.S-JZ^g2S =uyl}/{@X/"Sxj'&Λ洴R)T#嶘^K@fCcG/;&Ls`6lKi*Iri>N~7$Pi'ԦCQW$>{nI=u:7e3}R*&EFJ%EQRєG#Dcnώa*/8]R'K"ŚV%-zZ3{^%X(Ǹx^P_BxIzk08Mta'C=U~΂|'TTv<[#A3ߵ!]J: 1ngKC&2/S y8+29Ƣ>O¶YiTxO|phȶdDեa0mDͮ,OT12l.]-L܊Z5$T4!)%xEӴffV6p9h I[sXд~B<W97?%I]  ք27çz.J¯rXƱg}b 7_0tgbmLqQ lPD]Pe5 =z7!c&@Bh{'Uʕқk\~ӳyq9TEu@Q&ƥ|)==j=EO `&zR޼mV~!W[+->?T7ކX?瓰e8U< ث;,qU21W8Pyu|_ &DFo7c:߮Ƨx%Mqni& `BA_xA%7&(;ϭ8'Z]v~TTY\iҩfd0*iE D}cR+*B+9zWRj>L M~AKa##q<<aړ.md%7)6|.`GM(% x7!*Pu,07}-z2M紶 fzg}aU܆iY0 rkr@Μ~7WtB?~Η1ʎ,LCASpЋQ0BJ±_q @?"<@4hOcd\!+&QGl 92$-zmU-UZwAk09>h%ḣݱ/Yb{$[J'M辠u_;_ -b+ht$B`.Gx|>} NY*T'mURxN VWVM{Ṕ_b# mV^WX+{޶;1G=-~QI"j¼tN M *sdѩI L_QV6rG# ZHHZGĘyVXvqޞXEj֔kO ,Ö' $;t2$`2A,) `aQ-NN=̼3RA{pv].wUIMg*9oō){ endstream endobj 663 0 obj << /Type /FontDescriptor /FontName /EGJZVV+CMBX12 /Flags 4 /FontBBox [-53 -251 1139 750] /Ascent 694 /CapHeight 686 /Descent -194 /ItalicAngle 0 /StemV 109 /XHeight 444 /CharSet (/A/B/C/D/E/F/G/H/I/L/M/N/O/P/Q/R/S/T/U/W/a/b/c/colon/comma/d/e/eight/f/ff/fi/five/four/g/h/hyphen/i/j/k/l/m/n/nine/o/one/p/parenleft/parenright/period/q/r/s/seven/six/t/three/two/u/v/w/x/y/z/zero) /FontFile 662 0 R >> endobj 664 0 obj << /Length1 814 /Length2 1281 /Length3 0 /Length 1847 /Filter /FlateDecode >> stream xڭ{<dz"IA=ws!P1\&Qc晙faK&w(vvdlM:ҨaM{۪ghZy=<ޯgn֓΍0bùQ8,bQ<@\؇ qx3' & ,-LN'A4* SQΠQ. $;–N0A  @&에0 8}lDWBK΅Id\eAr&S9KsN@?\Ny@0H#\0H*!'dc AB !4r+!-#CZe1 ޤ?.kje>{ F'~'2kS_);<7C0 [_P琫8\j̴C3bnjl!3Mskpd;fsD[.** EsxJbmPG~Ю&ݿh0_vEDNx`W_{NHr?.D٩&{i#02m}M2Icv|O%s.11>6Jo䔝^GdSWC?~+wܒ5XX'ʊ*Yt$cx;} )7ԉf&$au[C2"QG-3o$ƝȚM]XT %~-[}rY/jBɀH:rڽBW!^P@798n?-ciɇi7_4rm+ŨDs]Z,=ˀ;Z 3顯Pa=c}YL<_Cǵ0Q:JߓC} }XIA\>Mir|ChnOr:hvh[cTHAM0&oCc.ȷY8]fN0uc<*>5[eiba({==.|"𩵸}< 1`mY6,}/:>#؄sP 8M<|6Aii_}q~ITM=U9Xg El iu֑*#˭s ʚW zܔDد#h-wc"f)qӀPqV`mʃΘ|W3w𛏢^.:\|AZK/Y>ZXe-tCX|΀f] ?>ɟz!`uŗ8,c U0 endstream endobj 665 0 obj << /Type /FontDescriptor /FontName /IOIZSJ+CMEX10 /Flags 4 /FontBBox [-24 -2960 1454 772] /Ascent 40 /CapHeight 0 /Descent -600 /ItalicAngle 0 /StemV 47 /XHeight 431 /CharSet (/bracketleftbigg/bracketrightbigg/summationdisplay) /FontFile 664 0 R >> endobj 666 0 obj << /Length1 1263 /Length2 7882 /Length3 0 /Length 8645 /Filter /FlateDecode >> stream xڭu\T]۰--]1tK7H0 1twII HwwH %- HHH;ϭ}:{Ե%-7P[ _sqa22J;``(D p ]@&#@ IH:faafЂZA0O=@;\ Ȓ` A`&?N +(@-]7rvKd%-{O% S wC뿋qW5sf`{upt*PK3SuA#:wTffXۃܼ\3vyYa6+3{п $]f`L/saxC...nx"W5,j X|3gg3OL&X< 1' w`ug] K@p*N?$Tp!x? 4C!n8ـ|Dw yA~x3Rn6!!?/pw?:AsBB:/9yTxiGyZW˜dpU_Wu U7[z&:{FV:C܍ye&bN&q&).%=0.Z'8|$~ S!5Mŀe3A~f~Wti5v֯2Dƃ-o3CHĈ%6K=6>|7B;)oPv)b9Y_BT0|]Q?8D*Rۇ]#ծT4T#L)ǧ\UsЅAgI ]P|wI°[:ieLKfNb#H:d*hg?!B~m1cF..p hS*7e֣t}I6\?Sj`vga[$V<<,̫x+,fJ^Ѳo;m>zv[xD`xjQ[|!3;wMŹx>w!VeL Sa[ 1Yj&{XLP<"я <]fMGqАH/? tDb7]4D:Ta#~2hZx9Q907A'(b*ץ[glMGaD'Wb|شX ѕtyS7 (;d߭4wj_wOxglKO? /R84s:ӟ T5zr^wg' &ϰbc Q2,=$rpǂl U=rK*MJJU͐b>BC:{҄@_1,;E= 4/3szˤE3oH)GwAd1hWіr]%Dsb2N͓,%8˴0\ rzC [ 'QbSצIJQ(efθuk&P"sx LdNg@dے\?G0aQ ]m |H:4˄21oןjL:ĿLg=|<]\_y2MB)HقOlqx gHX*]l_sNiz-!Fw5`%r=ɵRLP/͠j-嫡O 2; je\ݻ.>""HȞ=e yh䇟 G;`c,o-îevkhN)1% g+dbܗz6Ȟę{Rbj2H^صc[HdP\\ǍabwpŨSq2쇺+wgqh22 ?s`qS?HG~k PR( }][U: ,q'ևQ1A q<WyZDj𭶯t}EfLl?Ly+䗨8.ʛp͘~wGŪgne%T̑ /BvvFnE< ipTYzA+⤀j.RN{tDWho&nDV)8^yxV j7CLGJ5Jf )B4egjNgŒtޅV)6.HرMkJʲS)D9^ yvƉxY5*i=57_*Dm2dwwǁ7*trYȪiL7eSBϳ`fəA${]A$$HIʣ"lYe/qjӱH0$K+,$5`j9J`)ڇ`12߿s3OݦnyM#,/k 0cIE8*?ꧡ`KVeһxpc{kgg֗Ofw(dp!HQ݇صQ(X[FInE][ȷvW#\ HHi*Vώ^i|r5=9xx Fͪ02@.ׁuiB/OY2'_>bZ#F}J;B$? {;"=e#0k 4?ѺW; sSDu5M;'KHdt;[Q,!d-x_|6;Ii7 9M+Ǡ1f! n+sÀQa]9=vr$ Q"EDŤe /һ~/5iw_c+ *NԶen6I琦 zP]k,@0t[S;lvHK zU  j6K.E 5ߘgK?KzT6A d=}u-1dJ vk? G90 lu؏>evo{arrSVa{}jZ@g@9蘿0r57D䩁v|O"]&_- j ~2ؾLz`9qŘdDcoO9*cno"pK e>( SbT4 ͡)+_`\8Ĩ|R@q!r{*_s? 2c$mΪ{WZӋK 3Y?mEDi]Zs Ԇgq^а5K7A!p tiR\G{1f@u0xD6yKł"Y<#cCѯdL'{Q`u}z'Y.'Waϒ m9P-!Υ~w>Vy 񜅚ZYg Ϥ'IxHԍx<A'~ݠȟ TOXȟysce.쾧$X;ЋYCyRՐگdrVY,-{ד=R!e?k #p.MNUgSFǬi7ȪS3D^vT#NTёH JVkǑrA9Y~BDLt׬"3ݍE9xlҔC!iZnmߤmA53)FCβ=!īѷ/%`z# V (=_V_oQhŕGcٿbӶ.(|*XfӈiiOks5ms+pE7.2.0f{ўѦ奈/GU̿k`*=E&LI/gg _ PmwybPOeH?=U O~3)^ EJt[Ȫ!u.q4q"L?dԗ`Cl@=j[J:4k6iyF SR)vCo޺)I\+zb>Bs3߆Sn簡ѵBhŢ"j|kf Ј͇ڈdqԽGD}F-C{Ej߅,;#ƲF̽zإ/p\%h^\x[ 7˓]`?;rĵ͘'xD1%( ~}K/+4͞1p8ɷ?߸Q^SO~UUP=:8Ik1i-RXTBlȎͮ1ACN?dsR*CJ#F3~ߦ~W_t3m +Ӄ;`srtCMVwFN1.LRdӏLk|)3+JJߙ6QUgm ^Q#lRAH3 By)eE&3J'"oU܌ggWV?c6}V,TZS=ߒ\J9/(Hy#{|Q:}k,=7zcw6 j(h G`|ǶQ׬EPct쪦lwe/m1&/,i}?ZU][r3M*Pӣ]#7s qfeLɲ+y+Eb?xS"%ݸӞ tکafz Hءau|H6BK{[rMU\kUd&lzLJ"&0ȃ{#oqƯ܌ssLzGM0'Ӵ5sMTH-G:Ŀ\i'g3m&(1|VJze".X\!lSf6ZM!1sVr,-pо!G\Gf;XP`ڼ8i`Xi4Hږ̽IXye?78/^1]&Jښg$hI&56B.: eħ늳WMͳۍAV+JdOEY[ȨȯR6X ajoF\D^b B4F&ɒOӃ4IAӟܷwwDc$X?WENdwAzTe?&tlhKl8#82gZt+Bskwiy)Xb̼e*c%a |c,dIJR4TLw||sSR٩ ®..W`w^\6l}GPYB% aC<-܌o/Q}ׯ\)B Ȉ.#9*'S"5ɂuq%@9/wю2$j74һ1SySw)9_r}j!9,̋ʚLKC#*KA!XI답""yrl;UX &w[pY@P`t|iWYB⯘~q:law]镸%$f~qxqS6F-R@kSٌf`.d9Cr[|{ΧGY @ʍIueffP7VZ`HNo4c ^nߎ`q| +*8o>fR:^[,7`>B": endstream endobj 667 0 obj << /Type /FontDescriptor /FontName /RKLCMA+CMMI10 /Flags 4 /FontBBox [-32 -250 1048 750] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle -14 /StemV 72 /XHeight 431 /CharSet (/C/H/K/N/O/P/R/T/a/b/c/chi/comma/e/f/g/greater/h/i/j/k/l/less/m/n/o/p/period/r/s/t/u/v/x/y) /FontFile 666 0 R >> endobj 668 0 obj << /Length1 745 /Length2 1242 /Length3 0 /Length 1770 /Filter /FlateDecode >> stream xڭyXSWي"Ka { Űo ܒ -`D#"+"J)Ѣ֡HYĚ H6#eXN3y?wsH0w8R܁7H%L 0G0ԇD@2ݝJq(EK$mVE&OyJ "1"GrA0?   ÉJpZE D0 Sޏ`@ Hk6@ a(W 8)O,~B.7[_ /c6+x)B&|tt/ C~&ra@qv$;#?$XI l^(DSD4+.0îXlţD)0 )^)ʈHGv$)J{_w/ MT `lh( (g8C br P 0>aU)dpBV{ 88PiJnFG((x_' `8b6v]<6Sŗv>s[O= X^֪["+^C|H_Zm^mL.1FnF%*n+b";D̗~}ʋ\Ԥr]lu zE}a۞Е[{:ɿ﯌.W;)_X?+ ln80zsnhS3q&1?6ef Cl3_^kCoOZϭ5؆y;q9xg'JMʘSR*gKuN2썤yf&&foզR/q0-l$v`OJc]0YPڋfӤFvEU (rޔaBEQ`gaYTGp˕ԛJWUIE|=:&ݼ [uw8rJ_#+dʋ;|jWݳw? h kāE?2to]6MzV<*˛ :~um\ď:UuQݿps'ū=q'$#Rmeu⛝F! rC:5;bRlj[Vw}/f5-KZlWJd3ByDֽLQmoIuc?l!O=^1\^#*ϸෲv㧱$=?_%Օgt9cg1[*#-hSlWwf iC\w6,#\?GRp8"+y6gGMS{Q"҇[|ڣrz ˯r䲏URxrMR endstream endobj 669 0 obj << /Type /FontDescriptor /FontName /RVPZIX+CMMI5 /Flags 4 /FontBBox [37 -250 1349 750] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle -14 /StemV 90 /XHeight 431 /CharSet (/i) /FontFile 668 0 R >> endobj 670 0 obj << /Length1 950 /Length2 4047 /Length3 0 /Length 4664 /Filter /FlateDecode >> stream xڭeXƥ$M#%030C("5J5"!)]"HJt4}g{zV}rAQ.[($FD\T\04ԕG11*^^ 4 ` L$ & -Ix ' 4j04F`̃#s`E50`hTJ\!vtEޞI^So$D`(̕ d"#xo[A4wC(( w5oo0(Y] ! `q- j@W0 ;CB0>@65 ^ X`=a?ſY& D ?'ݥp@BZ`,AJBZH( D(  &pE~mUV &š@s{(  r R8A  HPF)HpJ~݈:/@ 'J27 Cb~?yVîpC`QD1=2 C;8[)4h!gFQEә!dB^w%QQi*\IJ$]P7HBn`q<:%MV"IG:L k=Lata0DNOMdeೆWK%" 'm[v>%+` ?Jv)$Oej}_Y+'kxҒ+?7wnleȊI,Ib1uhN$⹲⟑v3ड़BIv49x1SѲ8Ȥ\ٙK`.lg0tXK9BwԐƟ<7q=v#|'&D-VS ӾzЬRס)F9<(|sыo!zu(o8=L"1 ̇ #o7ž|qR)G|o)D?[M'mzhe.նGmxV>zL)O '~{9/ fʰZô)xRN+pf-G! qvcCʋKOb"S"zʧߘ0=TL,)(*aRT=-;džIKnUm} cDiWȅlI{;&2ɮafR,Běy L0@qOӍu&3ۼ0 ,d~B_格܎%V[][[xEʞHF%ZyU> (RzkXMCGݬR XԊZ/u 釱ՓCVW?ۻ;M3DnE r=pnU$Vtuû񬙯b I\(7Vj{$5fc_FI8iUnf<oLݎiS1Q%e;1E:vf^er瞞<ͤ}]ZIֲwbED~p|Ɣ!>Ω^;Rj2ϧh# r~.YǜQ"kv}_8; 0"ՋX]78 {5{zj1McIɴ2}T]f ^xW*ΞbWC_vG/" r0>Yod=j!GpHkNzk4(}eO2 y;wxV+Yqk_VI:^Ύ>q/@ꐐo.i}T[5t\ZG/ҙ3U&DHMoU%$$N(<HkW\7=0`sqAh}+ .Mt =IK_8]P1uxǗprhF=Kg5+A@OidZ£ jT{{] (Z6T!7$ T ޺XI)%PDDwٛOgx*isj.'􎾏eu/,sjkd?^њ" UpOv;x䏼7wGb]E;a͹3NLL~L7"7# {VrMjjsMnibg ^;p/Uc )ziN0dseQRҗBJu6Hf~C!{{܏bv -c-E’N_z*5Ԝ)ζvƯgsNˎC~똄o XT I[I6U-)tC(c-)īfx;d.f7] Fh1dB׌DKөOYѐG1kl}ܖrdD^bĘQBdm/u~EV8pU(3RT+fW_w.`_ CD5Ƅܳ#(2|gf9ݤ^,0HZ~׸]W6OL֤N4Fu4 4hǏ[ԯh2Z-2sԗe*x%111VRsyęeoU#-3>׉Ʈ>v8>{jX;Mq8W5*NusW8p@ꯓ&?, &T# ׄI`k,p5&pצ!z=V/> endobj 672 0 obj << /Length1 2102 /Length2 15950 /Length3 0 /Length 17077 /Filter /FlateDecode >> stream xڬstܶIcضƶvc۶mNض6ysidd\5Z{+ 821ret B0&N6"N&\FNN&_.V.V&RB'v @3@ɝ heP'hhbbL00rY#Io.88~PK&%S;^ɧ?dbVVQϲ8Z9;8dlMlɿɘ[8[UI'+ #A3+ÿMbn&NFS+GMlKg5y 'ewd_?`bl/~?Dml-lLlwIOFS0=g'S[ ob !vЋ!N@/?7@/XRS}jCZdЧǧ?E}jQCZЧ?E}jQCZЧ?E?E}>0ON?ύ:}3q21ˋ?ߵ,|7~&3kaabm"Og?>U`g lt0 YA?de]Td'9?Ut0 ?MlUsK|-{kkk3vJ6ֆ|Q(ZbgM=oO v&F&6fag,=rvϱT`ldblh_eY,ʜf״?[,gJ|L\gܦ_?w,g{L:mtr+3_9hS_3/L~㏸L&. BBnL ?0s8li9[=OCdbfblkd\#Z0[N,d+л3تx\ڞj^" 1KaJ>6uE0ݣ G6]1 yXn~s,Qp(z,OBDrO˥/#]],J%{=3"R}Y(KȆ+Rb!.X QCDp8{ ry 9ez}seX^TH^6C arG;ʃvup&;9&qP*Ӵ9ӯR"=@i Y "n-G=q#ܚ j!SGƙIhb7Vuzz9M.0U`$oʍ@jaUt'H*-0aȷşt0.Օ^@Y-ۤ 1]QgEdܢNӼEc̰= `ߊa|ߚ旚wst:[7hjJ؅iOB9E͘utW4|?}g-!_̅C2)K9SK,%/zn 7g.e!qcUs"iq` ~L$,ϳ 3 ݛ:#a-VmKqRA#QF6ɴiOH3̷ێT#!It+:V\\u̾{!Z18I<* u2m6J,>td:\]p0pօHpĕљO-Ra>صV^ߏ+]*;W&‘WvY^(3mˍFԐw-3`d&x_*{5Ig0/RNksgvwճXXi3gKT5V*x5D1PBW_t=V[s.L~_vփ@״ҬukWg -c Z@Oؖ yrmݑ4sCr5`8M*NcϥuY[d#-%f dMFPĔ I 3%?AA);=l3%9'>YsNАB}ahɡ[]fuq3 Ӄ/ti  ZV}Ba<'JoN`p&j^(lcrvl.#/OHM?<by|F:R6*e錶DTh9 bM$⮙/v=I|)n49] );/%`Bbh`yl'vSMgV9l;c(9ު0 Smަe+K 0i[%(blÍ}]&|xL {ڄxIq;эmaKSe Mk"]@:m|~qZ+0ƽ(A;4E5bիNlȗ*+ufR륀!0buY $_:=]B0:z/U¾Cp1M{֏2~ 8P9qDυ^oUio:߁% /TBLt!fKیzxfgj .IE3R|#tcL/Ѡ9щ!A\T(?GDNa IJ^Z?XQG3=njaHV$'&`>f X{r!h1y4T/.}_s_!4/ՋI{9+}ƨEfV 6%ޓ&xu?oYJkC$w-z9ۃO5MDgt㞅o/.~qO&Dy?ٴMem/AMTe3K榸Erч:<+q4]i@j}Cz-me;^;L/XGښ<,7I7vݺ#eB27WLv녎45Ch_ą0 w#wݧǒҦr^n*v^ɁOɝDnB^GK%ڻI \U Y"ӗof.L^VL,;;UA /v%Ut#UN@`,ꞑel_&-]TBV%; KBS "Xt2I-2v>٭AMqlWPf<wV:j@v{7lNľ1J%XY.1 \;֔~'ōy~TO )ZqM.8x ؘ_4$eQ[ L̩>eO7 h64JW)9xV[#:V|pkZ|LKAt&Y=O#xd:Ws1"a3q_|*Pb|!- t4UZߤ41ʼny]R7,]|Kx9#XJ㰱?SgEPrC3&'Be5J>-:.1P0Z9YWW GӖnEKs \dfL!\0-bxEUknKH4_L/=lߵk$F LX|oġ) XV(;=ECjEjlŋvE5SQ; n]~ TA2*lXsb\`i  uMy`M)@Lqd`G b1 q R$;|~-4zvs}F Yu||kJ=NΡ2 3]S1[X!9uX|ܐPBr _yk'778 iv^Sp]Aӻu-Ҭ:»0F,LtSEeTx#rxH´5`{~ۉ"%Zp{Gj|j~dZWB`%i@*; C`T,yIr쮟}3Œi6({6F.ˑW&\Q> hvX - ,[֯lW5hx d TJȲW;:Tg`R(LJ3̇'k\tP8*O Hc^NxÈeI =}ݥ`\qh\TŜp^SRjdUiS4xX'}0jz=!H3T^; (?٥Cl~m60E6}TE黛tZͮ(tQu eNeҮ UuzUmxIܪ~<|sDJO _pleGv؃H"R0$MY>Z r/2SaoWTb~eJï5mk{V8;z&~Ɉ4r*GpbAS3&,Aa]xi/Zk˶ਛr𦡈lG|m(m>GofxB*7O)L}!ǛSYzcï+L둯H}_֥ )'QnzóD5Ѧ~|7MY2>sw^ѫ&6e]%^3(jғ*9@Vʤ %T!2)DdJ;Axz^&Zo^bq2[C3WXA7[Džchf-Kq9Q/vD{cM>-vr v;<ÿ3ׂ2scJA>7:SꬌWèx%OE -S .l_G$w3[J _fNIW"bٴ"Y[,*6fm C6 "@pقM7eC<ᚨg_ [iwy?!( "e[ENhK=L Q+6&a>д"iTO hS_Y~h%v! q)ѽmc޿b2P5􅆪<,᥺(:NGzjKz(ΛLt1K+= ́HPz/ U]65%uS|m;N>Mɓ5ba*Bvݻ'nDGD NCUD(2IИ,/1*YS#jwy$le# ֡rs }iۦDž yily)\DZc¬楸ե}nu_d_:nnQ:qr+k}:#zR;jl%>| C͗8~<j"/SWcD_o4s&'Тq/k35ء,n.mwf=s&P7Ďz6HDoS M3ȫAnPg5W. ʂ]⟑WߴoN BQ M:|qoY9AJR@ۆEEe{mpy=r61݇`T{&$To|Ik{"ҳ~+i.X TWw AkyH+~0<3;#R*E}5 ˑm1퀉2umRUkH$聢UzY]v>ƩpEr]>&e::u2sI!!En sqX~q0f3γ*qԏ $ݤIl ebtr_HkY_߮II%ONtP|4h2䳺C~@{6ɺJ|e`WhpXazAp\XNK-",ȫ8= eÃv{ߺ3\.Ytxt1V,]MMrJϰNC=|],. U 9&oC2zM]#ﯜi {GGHvb$zXhV?`ܫ~<֟tϯñԁ'+mPPNxlكnS2Vظ ~΍Eu?|y3xjSJxLZ(ƬF ;eSK ګRݫMAⅯx/`=`#I>oI莌^3PImW`BD\7Uu!Qg&1.TԵ$a]ѿw~|ٿt=p- Y˛}as?])oa}}MƜu/q /SLcpd\QAGEc6v|;it&aT"t]vY!Պ1 C3V6XGKeim,ew\!)K m9+3)LY-fQ/RE|*Y%1C|IZ)v\VNXjdӈÊv0|uJtHSmuiqRl΂POTbU 8Sc8F5_w>4yl}`&Pm3`P$F>h&Ζ@+~zUᜮ\YfLYCt i\T3 /zȐJlDrQ,BrddzMBpT&[lAX!G}7)N@J<0R3}a L%sg6U. uTH.!jXՄ'F2W/zba/lB_@.*b'S&&Ay *Zmu \)3Q`rtbzMt鵠@@ٗglUT_Io4uy3Y -;VC͆W*xW:(_E9{cJ!uʾ{G];x)v]̲ 峠4&QBgT󬎁:mT86g,/ߓ67կGYg9Uz/aA^FB'qqț9oϩ,XLL5*^lqۗ TD}mhOgarP"%?c<72C902MՑu:Ys<2f4|N"Yi*&a0N5+ DE_58ka\+sBKʉ,7("j-O'3Ri?x'Sk0s i H _O$q.:,Ʀ+/Mx mG_" $sHl]ڄX!y:v!%ZijSϒT_DSu.g\qߊߡ< V]E#y Th/`#LE$ʙ]J/#nD a)W\4x;Kl/nS3q6(|)uQzɝ 67szc?HsofWF^@!{-”aJg /ʙvÁ84)6J}`:E79MQLշh py8n#PaXl*.m!]#'2#RҾ84Z [T5!Po5>}?ꨄnyQQ+F{Fc+NGCs\2XAώVe̹BOIBk'\ sa.-`0T񪁒aq %rkIX JD q K"$(h>xT9w7 * HدI7WgR:h+oUY8qw;̧#xm#td,%T[ +` Ba7}Ž#3:VgzdZ~fEἱe)}331a(܊)X/vuh68L3ݵBBtI 1|ȸJ(y2 ub~l1PZYcSN)Cӷ[`\psZi)U!rO.L}~U! q s=_ yOf o@m6{3~ 7{aY`MkO:SQ_(Y^gr}mM[GئҪ+IDo*TD,:;Fol~m!mĘ{e>u XͳC4 rwm*$P(ZxFQJD t˵?ZY} 5,%}g7OQNd9Yd }428$w3NexaE [=ۄήY 2ޫ~nb+ ns)Խf,ğ('#Y. gGas7-e^K53fg/=n W u-M )Sh3ɸ2Q֓h 4fuGFNk/'y@[%ؿ`lyl*;9H/׿s70Fm҈N,GoPP4ۈ"6_3o~Mx?,b)% ĭPWW4DޕI ¸a[uT8x!O.Ue#ԑb|kf4hE=8X@YOy`8ƨr$F4t0CoFvN @]GU^-rVF6}mІ35x=9A[D#vէԱ`*JENeٳ\IM,ҏy}`#O1=\'Y*vBnkgZtn\>rE3I0Q?bW mjm#3n:aKnRB/Ft:%.OaϽ'm:M>2&qJh|ަ>^{1'a`a7]'Z!HSnQ1RM*@r?ҌE{ ˶N!2\vSхBJB''swX+憽L<7jNCƼΞzK5{ZZ4 yfE.HN/Q֞3aQYRp( K*$D. K;NdgoSXNI~>_ޑE{>BPjNaɱǍQ;5nkk\"֙R!Zu\^qgzwhu:nP!'^u罼\`ט:NOEq8G!Kn-I2J8,\SV"z*o L|)x_,91lh\-'{f{Yi܂Z*iPp2B!C+m2,xWnW;1Cx:}c.FY>u;A#ʵ-e6ф,Wφ>}kd #~H7j@HֺQgV\0tCqt$d.2&85k;!̍->Wݛ\n+LhAxR7xHzhsחЭ9n3:g3_*Q(ְj=Aa KV*pG^dBxP(ޡM[x8"v~,_ oM4h+E[(ɢJJvSZ5fY /Fh&Cw-x~gB*U82p88Y C1d R8dE_iZ~$2Rj*[40@=9aJi=RJ+xAe˫Uj$G, >閭iF|Ynǟr5(֯kxHH۽OIJ˿Ob-M]SF199763#E /gPҳRo=c?I f+#gP!!Lu)$˧0&S`awY|6Wׁ8WT?YTmz4ϬɔMn_x,HHExM#>\qc_jEE2jht@`PeiÕ'&m9"et'2gqTSY'}ؗE2üYݺpՏ5}4qyU·~`TX5#i8[8s4r !ܳC.y5wq% מނ4=0GrӰڇL'Rw$r/^Ө2;\xxghwN2ӧ8/rfտD߿H:tʝod[ ~\e=o,ZYF ZTJV4mb" %U*Y=0`F ċo;5&IsIL)=c(ؔH4/6DRAɝ*Ï# &n=e\v<=)*m AGiY#2&"uKj#˅.$3_IQRnK"yrzN0]\çHI=Bf}{^'S7$T%d= ._y{*qOm12GZ^d .>#5l"^kt;A$sþq6Ԟw)Qrr At,K٭s 7M=1 6cq՗ "=MPiֶ/q;hZnk:u ^ u]ЯCÅ k 8wֲ,s[֚^Wz,J($Ju+A41:0Wp!rqzOtT ۾]igwP\ ڃAʚ +SEfporoXɹy\NcÄZ|[i^sh[^v:.c]#jHeݳwKG NmnN/ D8ɣ {[Zz̺ږ AC(r9rcU54Kxinhʘ/Aa^lg_[z].1jryFܟWyb] BpxA<9CVfjd`V,+7j*{"4.%%](nY Xy}A)ӗwO{ 5;C(5PXˍ³BVK x !羈ںJHD;>\ )K8ՋbxuY;/xC/;Qf|Y3uݗϝM #hI].]NEK9-Сp~jy ~0mF#"5ruk&; ט1 GS)U+*2>PQԽP_t2v`0P&᮵UJekn.[+<{p!C,sWd Enr\1L̀uaO2JHk"qhl$#ljq{ p6W& wVWjklҁ^FNAU(@r=~@yS; tyxd]@Yl/`,rPm2xmK]3Ag3aeIoiB&BJ}̽kLFՆyko WS 1Pfo̘(<53eG"؃'DOIu¼c"ڪA䢃px7ˣuա}6GmtI(ɔ4'C""@n7Xl y=}>*i2#˾TQPǵ }';*H81Cѩ{ *f?k(|WK? ͥ^4M[!87Ƶdt@OSA bq{ G5`Є{(s61R.Bu|̈g. E*$ QF*hY+V8$PE'ƚB -&'eP3-@= Z;t4J j)̇2vNKmenUZ[A^cE|FbT0JW^%|O&u|#{>193ꖷߍ86ˉXe`O,j4ՁRUnP̩>!=ӼXn}!lkHB/=:K{䏺YV+E5W+Dƚ3eO K4Z2KsxDݶX] uϱt1%:?(0Kk )ձ#BY6g0(/tnyLrp0 0w«M?T Պ֓(2D9Bx45.<QDu2 t#%}Ǟ1=i6e1$,`Mha=<> JD5g^lSMr5opwn۾EJifJF ` Z))sNJSa*o =VTo'I#}8*92x܈U^8I38f%ڐpy|ܨk<| 7@ܠV lg0 JƷ8x5?iVi+xqYM2|2`$H 4)!]1ۤ&fB\,rЖ` G5IYW `Z @mga.DVJή*]߹x$:f7= DKyXYlwi!^[kոhD͍ endstream endobj 673 0 obj << /Type /FontDescriptor /FontName /GARWPH+CMR10 /Flags 4 /FontBBox [-251 -250 1009 969] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle 0 /StemV 69 /XHeight 431 /CharSet (/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/a/acute/at/b/bracketleft/bracketright/c/colon/comma/d/e/eight/equal/f/ff/ffi/fi/five/fl/four/g/h/hyphen/i/j/k/l/m/n/nine/numbersign/o/one/p/parenleft/parenright/percent/period/plus/q/quotedblleft/quotedblright/quoteright/r/s/semicolon/seven/six/slash/t/three/two/u/v/w/x/y/z/zero) /FontFile 672 0 R >> endobj 674 0 obj << /Length1 1281 /Length2 6803 /Length3 0 /Length 7579 /Filter /FlateDecode >> stream xڭu\ #m.ii Pr KnD@K@Pi)Ig}>k}y\ɪ/g` Wv@C @M] "&T@-\lP.p D\s  X艶Ax*Ѷ0 P̀Y z0[P ԅ;np+"he sZmlQD,[:Gr1ܘ<@LD+h&i9`$?BpeW$Rm-mj:XѨ.5Mnejߪ&Alm=Vڶ.0 {};HKC=ߚ-屧S*!;h[S b>f_^J(- s Eh'd`H ڢ@&0Hibh&uAr-C@o%QA H7 Aj ӧ0}ZM) &L sZ@IKBwoX blEao]/Gb'DF{&8;Z~<1e anO#FtƜ2foq`j!w !@q110\h8M[bN9$'ׅP-Ż-oSGxldaj7Tdx,>:CʻNq)no hz;n7Mc?_(yeߕ׽ͭx`[M[Z~hp5U"ũ$L(tU­C ?~whv<#N~v}\)M jxr1eDXDF DŤ54^BRP"J&2dp(p2j5rK[7 ]z5 %MQt`_XT/=^z'%ARsƟJq47 <7_THsBR=kSX/CGF-&jmNs2Ƀ=̎=N+ &OFL4M{=4<9evb|d,K׸bef9{r%zlFNQ]z1FM$4/(cw* a`rԾ*9{`3NDP-N/aj+Z$;1TN 3 @w-=hn靇s@/"!;Ͷ;bp>OuW>MHO6PJ3줽޴NU@'X,} d#/ݢ Jÿp,%#qX`i Ciwy?LjRh%:&zbeѠ RS>&GBUxR/7u"r\`Kז%4a奿(х`L^@v֠@!M]=F/CCBmtB|Hሚ~\Ǥng*EtKUٕq:k5~њNi9f`=Epgjg!ڀA#?fp'd{X yF>,L5Crn*mmbW@&p t,F| !Z"OXgx+fgQh4z~LU~CČ~K%k_Š;HVD>]FA X x~͗~r54sZӎrP>=ѴH U) 7x3%Q2os5WB`O9N@zbRͪŵojؚMF jCĝm`Mj1}YQ6(eXU{?Sg˲R`J: -7FRbQpnmEd: K&+Q'FMY_GƱ:3ԭNq>W SI?]?RjAAjdUfx$y籱iGs%ԺH'Q6< 5AyM}xCG{uӧ/~}r=L?bB e*pbѴhS"Yyĥ5A.569 zYOCꕤXǽ]&jt4& <@b)4F j&jwXQ [#N4Ex}#Hxyt^9]RG^dBI!6RFN4V *w.cj$+7N#5?Jҿʍ :o<֔ʵq 4fs{lڌ"d5~i?߾"!py Kr55-N] a{ Oo,EQC`5>ծb38 6 l2s ͎*bKlj-N<X&03NZ\bm]Cr p,ZV ]0S-c?Š> +_8;^%9k6[B&A }EP>QWE}뙂r˕z-|\ Eq'ηXcGsƙwb>{km9X4rՐ C<ڶ=;usjw-7b>juk_Rq\r;ƭ%w'ĵ6+ᠡזؗm B߁y=Lu[& cb5}cۉ ?M k3=jWjkV4٢[=  _ v8d&ca4(!AgƁ7' ߐ Rxr Z5 ; nWnMvdH|asAL q}^b3;L˖\ VϸM0QEbu_flq,Nz9DZQ)ˌ_.LgK9apqiUG6YxsR9J>2 ; cin'5ja9{|,PXQ7"}'hy)lX>;CLՍ$YbtA>፩49'ۗL\ 0#V2̝㠟Ɉ.oqY3\9Z$RT|ѱ:{y.`,Wo6>:PěfG׊-2~9]s:5oؽ[׶MQڐe'}:OQ=!햲cbD7tsqDILsCY]?V^t),p8)( &PCw^g J?Y(]2G& PvcC5TyTQl74$e ?לI&0hVA.}tv)o dvh 9(n@9zP,ڀ͌7 'Kha8>s.eՍSWaej ʅYD)vՋhhgU} U&#z9Lj98wv~L峥Q 9t:GXG]qrKß^kGn֐)Q(UXT0qd\-ﷷ!Jvâ b~]sդ`4cM@F5DĮ#Ȧ-VubTޭ[ɮs)_S/p3,EuYf띕.Bٵ'SG"G/ Z5mHc;?PIAJŗKjF=enR"fxbReԙ?}GP7JD=|ZQ.7)/PҤ\ykpw 7>nX},֌^_~JY6;C-;L1roHAzEB$ Si+<{sbLN(0*Lz ߣ1V&h0]> ҟ=romE9Ojʝ}]cb1bK[7i$kyZ#OY*CdI qN]'Gp; SswpRvO4BA OzN*WCש|\Ѣc(KF孓)Vw٫u_^"&i{YHJVH}MLHT@{ӀyB :5[աoe bAvrnbJUZZ,$jU4 ՎƋfGa'ňN4]`%-έ[U,}D~ [^"ʪ3C?b[D^'rk걑m3[} >Ka]Q09 0(z>ÅCac_?K4]-}Z*B}n1&^}HI'~S[x)GS޿H,dK !5 Zփ׬arWtӉ̵ś$%VדHZЉ\E߮:9lr$5uaA~0I.u?3OE+|+nGt+{|O4[1<Qibt'uZ^a>NLn7 #➯9M aӭ|26Ie0*YB-"d:w3؈HMԉ>*6(JH]=ef%nz9zΣH/0Ƽ/8Xd?w7Ug<|{vBi"X+Fe*-Ҧ 5![m e`2MO-{wwM?"jChV?Su-ߕK؝$0_?uʳ3L+}EdXM+l]ٿH4s1\@@,$?=5@>(`!IAag(:Jx O N:zW%_<2ffxDzNtYCG7墍~y:_֯6!X7.n.VKت?]rJY(R(Djm-yS|5ptԙ˴O u閯35Ty'?0I@My\uc* ʩ:&/Y1 s>]T6ZMK:dWU.'"BF ۆtn՜O}pAGW9S܉U+541=y;ǥ)G/1\3VYi4` GQаnpn?n\f2[ &##Jktϻ۲Tcɦ$>&Ib(I*܃v ]̒#_JB$Ob̅2_OxCOl兆M!Wf}`/ N[>b 'J H9իoE[ie8n+)#GF/B""oYSo%f:1]0m],p,cq\w!W.{jgb"tqa<4%Rn&\τFwNbV"$?޶S P6IDj;j1 9#7dқǪjyVDuaKw^S B{㽗^%qs*bS)&.cbҷ8(]M^y;GB6ŕs]:Ă"óF$ΖU-(i1qv-m5<+BeKMɬP1>ZOSZ,[S)ny'Azy3_e܉i-ge6<?Phl}o1mۗ "Q40VkM]g>b*O:A@P@G%əSZ;vϲ+O3~Tɿ]Wv-ٵgBwΒ,k+46QY;YJLe!`@E~˵ \MF_} endstream endobj 675 0 obj << /Type /FontDescriptor /FontName /NDGZGS+CMR12 /Flags 4 /FontBBox [-34 -251 988 750] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle 0 /StemV 65 /XHeight 431 /CharSet (/A/C/D/H/J/M/N/P/R/S/U/a/c/comma/d/e/f/five/four/h/i/l/n/nine/o/one/p/period/r/s/six/t/two/v/w/y/zero) /FontFile 674 0 R >> endobj 676 0 obj << /Length1 1229 /Length2 6071 /Length3 0 /Length 6813 /Filter /FlateDecode >> stream xڭeXZװA:D`:$KI`:$ii$$[B$9y~{׾׎ASG4) <`X( A|x,,r03x qbb`%c!=V@v9D2v0G9T8[5!@9Ԇ9]aP ͝f0K8/g $P0?C0G'-D+B[ fǫDC .Igb3M 3g-\ai ;)aPMb;C@[o+jk(iqsiBg]73zw@#>ZKa !$ 8:B<7MB@O0܁0w0/tFOht82&~ o& ڿ$M@^߄Ч M@^$5|? h9?(}@v@h (E"Ca[(< G?M}8>E ]D7uh^XYY'_(&(]=8[a 8`0sHs@뤚B"N YڷU-cMSy*>ӻ]87zi (x6yft=gT55{Ƴ 5Nv04F t?d;h5rԚ(,j<$UA(١0T0d΍]Pu:Cd ɯ컙7&2Qx{8Xsh+ كI,9UF%p+hq d407yY問9FS9aZ]Re_k=6TxeHLDx/0%]T}~3&3hm6q ($'S1`;}VF}Eo1їEkq O˔y2K#}Yz4:8Ǥ^ʛ*9Y}8Zg[]?p@TƉO8ET6zZw!m&D_}k}8(ߖ3g =wÔuQ€8x)J(NjIBֲ(ҼXUOG7L?<&]xpE!ANJc{tĹ"i$ O^SJN@Xtw =W[Tߐ$@(Yxj.>BuTT^D0 $slF4;ה.U{O ՆF 8݄ M8[ĉ1E.Bs0H9_X񎍫 Դbyz`ZB bU%B X2C(}U&(y3E΢W/ukM);^s]vA'559bj,VS']r @XA@+ ٖZjy#U_Zs:JJ`~mZoNK$KBzvuӼ QTymrYі—Uz:>-W"&&P?.Wܟ|AvB!z۠JE ZB;p_':!T۴tWЁE:(Ma\@Tjmc?ř+y"Q "˛6ٮ9xZrڢDZGI ֔Ń>|:o{6u%O>v+m/T 69)\!2bPTU(Fn (j&3 tNŘAnrs0euŜ~A|{ya%' \_:'T:j 8J>MX˓3^hnBǝzwo DqIK(S UBFO)k6i4u$ tً%b٬1I x*W'$y?ʴZ]2AEoEI;n@Bk#S"+Nq)Nj%Ɗ W&թ4K5)ZPSX + 'A%'[R{6g} ͽwR{ D ^Aǀ$Xi ЧLddEinxnzbMrs50f5n<"P50 Ϯ~cљcGR凮Ȧu 2E SaZ[3ݍ.N{hp)/1*uobݫTseKvb;nm/\<9 qDf2,0)>i9\_9G}XmV+FӺH8CD=T] Cj>‚[;i/4^V,#љ|'[S%i-dze -$_ͫ0a7/*z;ĵYYO OZ-vd~9۪ꗱZ{וӬ7_g'hh}"8,};ϧA'[Q3czEQ4xtyܲhBQ3G!2 CADpW~g?n~Pvl ݢ6ҰA ?;"Oe436'=^DB.VXR6[9txĔ`3`ܵ|.͔H */IUr19hYD}Rt%=a+X'w c}iQ/>bjGyR"]4l&d1$_bBG~jSJT.{_:߃S, 2QkcTߑhU@I&'oၛΕ~FV% Vh* ct2NH "bxȻjrA6$77D֍7OV}ĭIUk,wwqưt*N?k(!M% kw\U-&UWTVDWZL7Hz\-/U!w6fnA7 3X 0" *儫5~ODs4٬k̗Nm]1Yv\O2HhT0 QTQqf<9}@o$h 2 WˣJy+y44̈́ڪ;K6|h@+z*qp*fgC1N%m`6B6ɯZbP%΍ʙ@s1fbsSO6j+s4e޿T+KRYoUeNBA^:(fB KΧʿwDx(Hm.gP)xNU<*5W7t#ep0n܂%6V꿖|iņG=puf m}-ʓ&OH[V/[բ'$ȹf|W푹7ZjnXF4WY;6bSesY1x)y\F|Z6Z}>)qMҍ̓ca6^ *ϔ2#Rdot62YlwN-#.E;ʑaO^l6~(5‚nӉF6G3CIj,2g~S*L|Y5`D͆SvVKhۛ!@Ge1 qۅF8C ^a1ɫ9F_ -(-'ƢvZk7lVewF?ADgj _V~E]>_dzlؤdu^i(k1BFJ!\~50prG%߮>M,ǴN-0 }XM#>~DbVTc-l@0~ƞAmŗw$u4|pb:?ވ~~HF)tjIJ)n:`K* `CzG;A =Ӻřu" ~)Y&BL 2m$H@+0dc D@sӞ`(_xt5~V̗_wwP16Ԗz}}1kuᦱ*G4+O̞>1 \EP-t\J'itAhIՌŽX } (QE >J tU-Iغb:|G6xT8='l]Qm/t1- YՍ5)?I\DS0}@fN;sc$R 5.`X3"(W |Q2D5O&xG9'P]w@Ms%1 tB?ok^RXǫW7cQu*I"OK^Νze0YVW)q}*_{ac{/:1.>Yΐ1ErťM3(:k`s)V Й7*g6uaaˍZPܐ@pϦME[ǎ6L.\3!!W`|=dluE:Mcd5ZV&[;,ɵy(i|JJR$m&ZeD=?:;xH5s v6&e> |4_dXcԻ畸7,ȅ6 C2D ݑ T@J Ӵx1%J'ƉoNLZ (p{S}$殌diKh'ꑶ}~.\$ R~8F]dlM jߏ!.hZҔ^UHCiÂ]bRuH'_Ź45K$?tUj6'QZ \, IHVܢ<zc0>{#}}רQewA^@E*lKf~_ڃ߫Y,'-p9|#Xs&HlA4.0sasU&- _-)؂yAe2&[t"E}ϊ&H]g\m[' Hk|\@ endstream endobj 677 0 obj << /Type /FontDescriptor /FontName /RNQAHQ+CMR17 /Flags 4 /FontBBox [-33 -250 945 749] /Ascent 694 /CapHeight 683 /Descent -195 /ItalicAngle 0 /StemV 53 /XHeight 430 /CharSet (/A/H/L/M/P/S/W/a/b/c/d/e/f/g/h/i/k/l/m/n/o/one/p/parenleft/parenright/period/r/s/seven/t/u/v/y) /FontFile 676 0 R >> endobj 678 0 obj << /Length1 883 /Length2 2145 /Length3 0 /Length 2742 /Filter /FlateDecode >> stream xڭRy8{A"Y^[ lv&BQĘy1Әa`RLO28-$e9v&N~s?*Nu, ToЖJ t&!ЅC44i NR 06F _ &(c$XS4Yk~% Qkqd0OL]L\N.`H   t%R z_S|7 iA|SoR[$P)d&@} zT[ 2UuqD2>?Ai(?S]o@sמ#_2A [b(Hp"~n 6,9:akor)#̀Dr7jď18ׅ|"S6<@Ah8&JCD  P_=] +9 Pia =0o H@χʠ=*Q A7-`&3~yt?COG1NojeE A:H$DC3h|'!PMYcrmn=Hr,i,@j+rꮠ g{lF&=Y ✮څ]80'Tg%k/pXWn[󭳙N}GElj<\xe`吏ƞFHơcGCRF{I# Z֕[W?Tv֤f Y;.V\_Ư>B N(o+=C{> oy4jcu.Xx&.*ˀ_skc;WҊ򞬨cۈE5b!ܯȵk\9OJ1R^훶Xg#clb^ f~t :Ė?<vAm:w51Rpm}Դ&,} d G?S)cLs͞'DNAI[gL˘/uGJؿ0#Z=tk=u\n?g);YGDr{gu8%u魚%Gu)FTܶ-:*XǑ9rW"Aٹ{w<3&psmG Ôf'.ВwҟېQVh,S?' k3q{5^ɍTrw\X<`YR|)j EO6dgђi稛ÇSc<5}waiTu海9>HZcH's(e[ ПRzXV쭆(qx0r(ŦCATύ !gPx/gMܹ2PXc34,QX隔ē)[ff?,2To JYˮpWwwK c!w[*''gd-֢=؛,8F0QP5^,kR_MpKJ\.mU7{i4"ү| X{qs_.1C^@f=GGp=xRU=b/&T˕.t+3sѠ8`_U׷6-b㖢G$ᓋyMX1ؗjgƽ =c*(/U4fg7ePuVêm]R.r.\´LףFfC?O F=SOvwbr*li Ę{0uެaC;HLb{s>g_˝Iss ͣfn [iT.gDB`ۗ/H1Ë~(TK< t^BzEx26=MSiKG~G90HmO%^dk1rއ];9KVswb Ȁ>YZWV_OLŋ3'ݖ9VU5B[[H.gLMF gl0\x~QQ{ pWkoc~O=1h5ꡠwhBe>㿎LH endstream endobj 679 0 obj << /Type /FontDescriptor /FontName /MWPXYH+CMR7 /Flags 4 /FontBBox [-27 -250 1122 750] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle 0 /StemV 79 /XHeight 431 /CharSet (/equal/four/one/parenleft/parenright/plus/three/two/zero) /FontFile 678 0 R >> endobj 680 0 obj << /Length1 932 /Length2 3178 /Length3 0 /Length 3789 /Filter /FlateDecode >> stream xڭy<})SLٗRl3c[/+B2f,,H5#Y.kȒRB}==>}~uΑvpVAs"S&NL 5!ad,`$ct @P|5(jb # &iBƐ["C"Y˚-Z8, Aa_!l96 vQ~`-B6X5џ/gC†PU(.dEDc sЄH IM%1a&J OH>D2 ~\Mo P`Cm u_![jH .5ՃCQoVr_ߋ06&QQ*j@&($@uu>X10 <:DDgVD1 AƾR*7I R|YV-7 |!±|BPJttvx>l[s?jr*8lYz4wA-!-cZٸcԥ 5.N dqMFG_QDl1ooz|7rOz8?dBT"#zm=:İOZ.%0OOGj v̉T`$);2{7dԍJP/X(qХpAAds^k<:"b~ηޤ1Pu ZX n\>E<[ m;8kt}%{#Ɗ:ӗI֔>wyjwQ :0VZEidEceH=,RϲY_ 3o֨LG~ڈaȴ78Tޕ;z y|n[hы5O$rŷ#G|cv<1̢>6-lMٿ3 5:o n20kLۈZ-"|njgV%CX)`P~Qͻrg${3_}p8V M0g{t|irϓ=w;/l7vջnTlG(,&F-tھX:9bS9RfФT}KٵZ#<%vsbܸ'!Bь!%j̱]s\B *6E7ӝ1.} 6'v(hK c SE` hT&Pi+cvpjQ\mH^٪"5c},Ѩ2>[8ս7'+LN>9Lǐ,3"mM2\~\llanQZk-t9lqv䨶oٷbuT*UDWJ?D;R-oݨeZLOՇJI7,۩FXLHmӇMQiw? ezv܇x Q]6YR4n=qj GHFWug ύڱl G(,2Г>S>xvL/g\JivEm2%x4)ʎ/H1KZ^~[-ҁc@~9O;MQc$Xes=`bP^gp=akd:%!,CF'gZ@.'T7JECoK>$6I&d -xnnt7,g-ɻe1uۃ&pf}HYHϝmlsmzˡP,vI 5rnP+]֞a%o^R=םӫ)Nq +O2cdip9 uug' S< =giಊLi6?oHs{>FwN;gun[0u[zWf*!5H:E8wl?r7˙v;_çw=OPP,Fo<$tg6[*)~$ݡ('Q̎|`d-VӚzDm0푺K3?ola&+Mn*|4_x; I ilrTO]*Fk}R?v^aRxH'7Ets-98{L{C>_j*кp߁uXS\%Hɡb93nL}iyLMXʫUCc;]<#d%VA gbP4%9A[L<ڷGf x9B ZyS0 bN 0J>1{Ż'#Ǎɍ_@}͞_8,GFXL5?>ךhK|kvU3ǭCd'ݛV42;?- QSHYQ;#u鑧i'e`{dpNܵⵈvlXj;7*o!t_ob$f ]\|S~f e|~E簟v,_<%GϺpO@sflp>$@A\p.YAMN}Am//Y[g~]!#~]XϙZBE{vk iDkJ;Ω.L(?{6_MV{־W*n->Ye%1Ԓxmh̓>JC=~zؕbS z>_ZNI9`dY}Etjx]% 1ܕH endstream endobj 681 0 obj << /Type /FontDescriptor /FontName /KBSRMA+CMR8 /Flags 4 /FontBBox [-36 -250 1070 750] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle 0 /StemV 76 /XHeight 431 /CharSet (/a/at/d/e/i/l/m/n/o/period/s/u/w/y) /FontFile 680 0 R >> endobj 682 0 obj << /Length1 1758 /Length2 12671 /Length3 0 /Length 13658 /Filter /FlateDecode >> stream xڭUTܲ;AKpN8wwwp{%kg OUͪfVP4ĀNtLL²2LLpC' XٌD, `afDL%LO ЖX`КXhlpFO,hmM Gb%#`BDlbaDl0cG)fgu?DS}&hFl0c~|(CM.lm-ghOMXXXhpX8_5f G1 79#_v1`PT˩`ha@'_?f`FH߿tO1Q[cǵ`c'6tp0q?>؃F pP@o t8B1/bS?Keg#fob'fC Aq381b&fCdG?QA?qN3(!Vb?у1X?:~ G?!G+!1; G&@kkC">:?dq|0!?h l, l?aw3~`~L/?caq/m#0q$3tZLX'?vc601,zt2w ,\~/ו8~~ L.!!;31󇦏s1zW~/Z|<nehh\-??8p3>dmޡiJ@xjiQ|&]`b QsC!hu:7]DGl8{&3`h׮bnӥJ戉#,tig | ^2nvL@p3vT\)IC[]- Hf5ǔaEH2K2|e~\14˺̌d\Ly/X ϖ^o:Qkr'WNkT)B bwCCӴ.=T{@4V%p*4dLI26.J3]5_ )W9)Z/h$A>H&,#3vӏ'7+4mΆ]}6dHE4^xKR' EYsorPZĞ@to-g뙨qFy!V/p.Ƣyܓ]s;)7xwnó!DV:ܿLp=;|bSWwsP GR-'(P::Ψ~ް3AڂʲnƙQX%¥-]-;ox41 @CF1m}I 9wհo`l-YUo ~: H>n/O*)K=Kv jN,Hͨ^rxi_ o9K WL$K]vc1e=F#?1)K~`Ʈ?=P-uAk*U\XnD xR 1 Њ6b}PX^M?Z b]UG} RNtk>hǠ"()05_hePIkrzB7%5Ϯr7gդ>6qCA.+O% (G;Y(&S%JyHaq#EĬ5< <vzZގe 7y,}WVf@ RaY{/F6|Y3r~u@;D-nӨ64+e+cጕzŶg,˦C&I1+.yW0Z4ΥT8BYZYȯvJ+H`,>a`hơZO[c蕔 a bhaOAh 7'Q=I{_S 6 !uɸT4W$/Z[RoP(J_fֈNlA7(Li_b{D,v՗Z ochc Z>bɕNx|b]f-7U8K>roň u{kKx`!fa">Z0ԫCN5+dCO=-~Lt9$Y2Wdޮ~ݑ֒\Wޱn HY`eFyGr:.?LvW KP; Ckp#?B';XAB`K %= [~^E&y+PPɯlFoa@L'y)=$Rs>2kka!p =k ZwxB${#b3G7z  5 680ɗ@4] ^a3TEV)s(Ja CBx">b^TJ+nPꭵ04T5;''5n W=jYH28W] Dc4mjڤrYJwS)1~-"wXdnDY+jk%5+K̙㖰ِ}]˯',%: f)ѻ|8%-=OQ?`,e]v7yPRlw*b(~ں TeOfFd+Ȥfmleم(Oo$qd`v$8ղ@MQ"3m`Fq`I73yݶ/ygC= P\I^YY8H,*! 5VXڗ,C pL/QZ\ُ%v`5=S=v.h 8n+qCf" T4iF z=VkEuk ":M E[ٝaqی[fR~~p_ ʡrW%c;vc,1,J0vD;q"8 _1 '< i( rWKPBC IB(+p1jFhS۱`^=,PZJttФGƅ5#af6oKd!RrGBHA_Wewݟc8)SGX8^Ó| ܁_Sc;! ՖYs[US )^aU?@ZHjWP\\]1Y.3LRUQ~Ȋ} DU/~vvrdaqƟ鯊[^}4^50j. "b4C~hCeg^^)> bl-DưY #ĪO z> u紓іIF̯^RLdN@>CKCշ~Vr @\u^4QAZocC3E;x%({`b)(;O /-{*j)J_Wv[iQ!^]MNRLc00\)}Ϋј]j73Vʩ;4C)*/-8% wtQJ>!q 5\FЛ>O-l8]שH* Nr_nmX 2lL =®ٿ9vTU>[ xӡޡm€dySt @j1MW&qphH."/.8beTmd.ڟH\$4Uv1뿀e'Ũ UF55ݫs#K`˯hAפ*vVJ@b|qDuaRҾ=/" E[$;E"=;y:x{1|^ou&,dIɚ bl˭:dLP3n24Vg/1܈wLnbJ|GrZ0T`=982ġqZf` 6\'~8i+y{OI`ߎ{ N$AP TI檇{tj=JV6ġ713Iwf oS6$ vu8i+R,N0FG,AݙWy%7THEkLmDXH/f*TQeݑ.lmoMv-Wc^alhKSKUw5.rd*\VvA/ռt!eoD |p0~>FMY0+u:oeG"Fy:Cc)'M`eG$Wܬ}y|]NYɻK;>C?CjX55bbtgeDNaxE8_86XaоX^c]jLĴikű!"o~MRIKnU޲FK*D i.؇q1tq})bbƷթkgΉ4ylhso;)Idc;gTNf7/Gj5\[ VA t7_pl љ{i0XDO"pp^!iPx&a^(gJ)3DZ~wwlemhtwۭ,d0{ i]H}NC!{@&]+c*N[s]%LqH:8ݝkr5O~9\˕)5ֶL]Qd/1ќwߒnAYTwFB[L|!f务ZsPZrF^yWSМUu_DUZx^~o1v:pk;zmIh l6E9uAѓhm$_a(!:7Y$%Sz(dbLsV+ ~WlHGy<|sp\Jyt+Pw_*(Nvo׽RKDSن7Fք&\O:lXsKrJbLpo#PˆSG=HMyet?<CEV$!X?EZ[ c f8uB_t_#DSʶC@sbyY~5p29$)uѕ- 9nl[E.Lgjl!R^ 5 ,r ݖ1< Y`J*m+*K Byt<ߑ 'b":٨ؿU$d[) kͣ1Q{^sv4)ۀ933ƛG9h`=YbJyX |V@\!O BXE:3cZ3O|O~NP&7=y <" P=]&oV==4Ddt9K乌o!)$:Ȫ.v:C7KaG_Dtz;䩘w(dATV-4%N5P*w(DŽ拍rp `nspuQOZ)Ddꗔ5:p x7Q6*/ԅF p]J!ţ)W#T@~7t0d^ KXElB=p!upC.hiVVh}3F/E= Z͈1,By{VZι}p{x,p1s/3ʨ9:rmO5wEZ){[tsMMCti亄ęx[&v bQ[sdr/|I7_Ap+ӝkNE;^?q [l$ Ԕnm+-q-̸`R.:YI2y8uU${Ikj0șȧ^kA^&DLdL屪OoY{i"O\žWi!>y-Hpl@4=z+R㓕^W=欶kSfי(JS2ͻفK "Mb'sP%Q|kG=iODoŚQ\N8գۊ+:"wM rLa\0FlPAJָ<"68W}o.[ 0{g4[ʪJa?#9` K& #MO:O؏S$˷z9׶Ps1!N۾A|[ @-MmgLUThv"WE1CZҩ;;a-Ip0i!,9#).8*)2!6C >PuI,Z%U*) T?= WM9n![)pUtitEbEl\rW z |u2b $E@$>e3kDGxG]~z8⒈ȚT}5,F_M5 g+}Ճ)C=rB^9+{lRSlR"-ӆ[:zmGW&W3BxT+F%bFˮL&;w g =?6#)5  .E}sUӫrvӕ~fQ&Yu)/;t'_lSi)'/%T?3FCGdqpNRj↰[n#xy`0-K g`$$[S`];f] -pA-4-djsi? 1h44:*#H9HPIAiF,!^87e8ȌɫVj*WwݜUWøz G-5k(EoͬO^}.xM5n)65ye.o;3PBDG$GU"UrTZr+%[O*L$u`>R!f_ϧOHp*rqs]p |ƈWu`g+FdΖUZ_f5@G?#X5L5ɒ;$*!vޚ|N)rź2$WHIj wk'eӏ]A䔦$`Q9,BKsMi0rK\U~3H'wg|5JY62LN.UtJ_þ\ £a*`V'ɮѝ!I4F{RL a#Nvhi @ձƦLTE[)7%̩5i ~sq[5hSr9: EP ¦:m>=%-"fy*xK@dm3m8R7؟ltꊯ3YT% v@bh$rPbJַ/?;]6_Su$Y\Z~.ܞ^i>Ekj] [C`ژg$M̸ʮhXP(wGvoʙᬟ54bʏb m]ǂRٛ&N ݄VB^6?w8f3ID1t2q/'2"bIldC'Qw6X.01C{l. Lvo2*7V&z ؆s{u ~)VGqf֦,^ iuTC\_WoNZHS)#[5yc}O~PE/ b˕qXMQވJsXuoQU8zmFy_'[ UO -Ag-+ԙ;| C$ cQ(gƯ顲9,W\H3]\4,gqv0*]HAC$d:x_"26?}iY/` hy`j 󙊎t47GB}oGO5] '9u=-b "+ PK6YZtu3h"l fy-9IOiz&GDZ 5ACQ]x,5|ZZ 6uYiA'8ؕtH_,`'Q%Jud$*83Aq/P4q/~y'bPT&ybP ad 4^ ] zL˂Uk4o=jhR1iI0CT圈0kwPla6wOߵ XE''Pbِ *%xDhz巽%~t^٨$jq:XXL8~/"xcDan!XiC4<s%aXnyJ},5% wⰭTԨ:/2!"i.ITgz+jf;ͤr#h.b!"Yn;:=nҫe%%g$Ġ?6@I ]JGt6.s(cujaiKʰ A_~Ɩ'\^_ayݗ sBuaq ♒8D+RQh'86 s}c#E!4*,ơ]9ζV V"cGd)KmD! hYb,ٽ\mnuФ3#N0dpCy+AlFMY;nwahƞ$3hZ}YY3y(m믋}Ǭib}QN x )oa4RBă <':xtjdz!hxnY,) X@W<ɉw05\vԕn(kLU%=-O?@I@?/] u9tJ ˁ!6H<ƩL[G/IgMS;F ]p׏j5 7x%gZc;v{6z4~SURZgA`mHnL"V8>xgW@ICs%mxc_d:?]&{u;3UtTeZD'"fq m5q~[ph$4^9 RL''Z %Ii_Fz7";I)^Đ`:\T'-G;iԀPQ*)#nzc&3>[GlΏ#x[߯"ܗ[7{)')!%rhu?$NW? ll|V #?0o#1M8˸Sk8hzHA Ϊo>NS[y/6o<@2zRfJΓtPA+T2rZ >2r~B`OǤeH7j=hI <˄)w _i8 = U/=/u(F{+{m(JA ThRg+lB/50Uΐy^W Iǒșᅥn#l/<3eBPM3/v*.Bpқu -}It;*`nYZWkiJyJF7DJNHAV55{^B4hA;e}o; I| čÙS:nH;Ku*á7wQ\I*䥔nZZf"ă~E%g_6qoiY$ٞ>MwF>6j+;ރM\ȻY.] ag'x[9IMF3];0W$F熟TzXWk53A0?y$@t6a=f{GŗUUv㨀G3rHh|g'='ƥfZǿ[ ,J7%C O>N"bxR z]yrBFrf]f{[{_K1-_2nz)~h!܈>* 3ڧ +Gtص Ob1YDKPq'!Ue| 'aW;g~n0۵{}3ێp`*d3}+c v,ׄ͞pu7Gw> X# *Rjci.ʼHi"ّiO6pgf7pyaS}r8DUOZǻ &ôgu=%4m}MN?g f,~ (?H4v7/b J P_n=Zy{]D ]htQ}G$=">ľ{[Ht|P";`9Y [9O<~QzҺ'"KI~'lgn<b endstream endobj 683 0 obj << /Type /FontDescriptor /FontName /PACYYT+CMSL10 /Flags 4 /FontBBox [-62 -250 1123 750] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle -9 /StemV 79 /XHeight 431 /CharSet (/A/B/C/D/E/F/G/H/L/M/N/R/S/T/U/a/asterisk/b/c/colon/d/dollar/e/equal/f/ff/ffi/fi/five/g/h/hyphen/i/j/k/l/m/n/nine/o/one/p/parenleft/parenright/period/q/quotedblleft/quotedblright/quoteright/r/s/seven/six/slash/t/three/two/u/v/w/x/y/z/zero) /FontFile 682 0 R >> endobj 684 0 obj << /Length1 1075 /Length2 5117 /Length3 0 /Length 5790 /Filter /FlateDecode >> stream xڭe\Tݷi$KΡ%%aFBDRDZJ;/{:l6ȧ0$M$( @1'" q#J74$%Ȼ qiQ!iQ1'@썂ٻ+$wPÜ0w@!$s;:: ЇP0Ab`b_F[$@_6\1RIFplHL.Cꟗ;:jCw>  #m`(?CalNUw8¡;G@@JPT_pWFB]aa`[iԅn0ѿ7cj{̅@@7$SF@6pf, M |@8yaS?-EWS%@_K ' o%hbN@a@Q$b: L^ɋ1y^1CQq1*?b.p1q1 FoƘy; H/L@}0@BLBQ(-30 JEBe%} W*qeN o LܜA}f{@B ^HY c"c "J5 ؅n>l%wJXE.9۝8h+ZI|`؎:wC$p,'[dio"n'ha) 0=sҷ; SǏ/GJV;hB-tz#Lrg0Q;Qt(w*iV,W a6s)2M&5p8 EM`5aǑ4wl[-:}/^*TQN_}[okĢe9cVPhA9΂a^ѤowzUm'TuH-Sӂ ʊϵ_Wy U"{YQF> |-O»|gMM @ ^Uܯ? [KmL"9qtīi"QSGfºFz `(CSDkʹ{KJ+I>;Q}8_ WgHv[2ؒތeezD*z:,uB u1YVd/i(Of̛Du_dPX>IЬ)^sv=4p'߼ŧp)sO-grje`n!$r)>Sd[3?yWf^tڏhDOx\@^HWru~&+wè檩[T-eo|[y>1t""6PXK-|_4mzyp7(xйX:$VOx@'-Lg(G )$|Ѥ/_HxqC.2붤bohO.;%izL i@{P>70){%E$#ykv fF.2X5}ӗxb _ +>2t1}ܦ^R'&be^wl#/=G=X W-7Fʅk^0ԻagA5f rcEsx:wnt3e&4Z<'mø#gg67i-[ms7 @g ':W) |KyGdRuE #|Z\4{DOĭy~EXMj0*[VhiM^jvN(v*#s叛!ݬZasf sKM۔z'9˶[{P:CZăaeyjzdÑ(ɚkNl{Lܜi;UШ,~i!‹%TrS{{<7c~_NM,w6za fO() Εǻp:Vӱ 8O~u%7VM-~v72SM&vqVRY 4[KSyLrJ舭!M*?˼HmQafe's1j{7<Ԕe=M'\Hҋ7?H~&M6xzbb׃ BqhUn;4SaZS"m\#I/u˺J(F#e?8|V#G-M9l|ԟ1?3C P0Q(q.mEidXud8|ږ]}%)5oM+gM4޳C1P|FV+f !Kf쮻g %w`u%Xf[?XzVh'?yw PZ לd]<4z6|9,uѲ Wlc^X{2/ۀIS:N) k~ʭ 8KXF8R!O?=ÍVV, hbϙ,\zqH#ɕ1]TuZ4HL5<WZ̡B=J-=|Z[(Ixъ}n4@^"HM}sG 0z-Egl21S8M95`si: r @5go‘m׵HSkg|nxo'.Lr[ -i+ͧ,(-_1Ako1l  nh"D";jd}E_`)>Vn|s/^Nm%-H 禌e^w䥂KBNڱFKʀo|<0jH{i\0"DFA-G'GEy\aGc0_oeW&MyGD78y5BFJJ/Q^Zw{" E_zT'Ґ?A7y4C^Qxe΃ŽmN`t1LP/ףu*-Чt txJ,>μ i/7$ILj;3,7VO-c>W2ZO^ \x5^cO!pW'w&}~ER༴U?!2Ud^ƽuݰ55NK`3d+Bɖ`Vx4D$Iu냀(:Zҍ4w_*}"mPtɜ"9i0(X/eJ]DLv^ {/sR]d  rڋ7[Kٜǩج!R(ܗR" T>zh V{^b6$Vw^Q)d,4:|>fq'%Lfb/Ku|BI:9y]8fq$,YfPaqpLoA V82ƛEek7G4B":~Hx۠,TJCO‘r]?,omJG\w}^_,4~T8 9[.Y[HR$?3?Ese4oJBV|{^ONg]Oo?D@MtDlM@96_csno\إğF}kyg2=~LՓN͊ C񵌙(,$r[8 !nN-gBm5buIz5ivj2ZUFֵݫ] cX,yiISA!n@[wvR8zLNFIJ8>]Oeb@Cx_H/wRm`1Fzu;aIw_糴-ٜWk}+c2jv> bI/(~xK9}|T3pldAŹ$m`?/- 7H@3es2t *9',J27껿CKG94iP:khs~7K/ZKP_Uܥ[_2Io(d&$}ls귰jՑs& b?߭wغ!=o] F*J.lCBW,="a$H :Fn5)q;ßyb?q@^J"\C&XE^ ~ȍX4k^_CZOl1)_x-kj&ufdB"aUD*W㧏bkAg-_Ox/@me3<$款6еXzQ jQSvpW.c~NXe9q"!d| DogP} <|] endstream endobj 685 0 obj << /Type /FontDescriptor /FontName /LPENKS+CMSL12 /Flags 4 /FontBBox [-56 -251 1102 750] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle -9 /StemV 72 /XHeight 431 /CharSet (/G/a/c/d/e/f/g/h/i/l/m/n/o/p/period/q/r/s/t/u/v/w/y) /FontFile 684 0 R >> endobj 686 0 obj << /Length1 1930 /Length2 11899 /Length3 0 /Length 12986 /Filter /FlateDecode >> stream xڭeX[5Lpw'5@c;!hpwNpN%3!3?jZUw4*L3 ++hhY@fVTqg+ a yyQ7+`GCV֮:q g@danjPA^Q;;?'\j ;ȂX]f +*?d,!-rvAE- v^ %**CM.fgdjOaj+9;Pm),n+jj6ux9cH=A*`Wsk ڽR"*).%[`h}VfVV 4Nbv N.*@';X< Odf+?%rqBuc n H ^俈"`}APeP|APeP@T^AX^OqX4^Zbء n XlP.`+3]l_BS H3gSs[?_b'49bo mˋXvV _P/wH;Ahm/Gr- qbg{j~:k/Gk_P/Uj/m΋b.h@..B vxJforKt/@^DCsB:B u|qC9MAkQC !/6"PӋHh fZj3ZK.sB]_Rh+\L]J"uz@:/_ z/MvE47?Tx0A2C17t)q8s7gh]+-yQ!!6)_J%  kBw..Spx){#oVS`*`"k^&R&2=‡1CDb&MgvcЍF1{0x>j͛xX$9{8QT>< |m(RPd_[0KH ɅTx Ir<#d;Ԩ 'VZXK*p)jB63-9*ݨ˴1)m%<MT3W,2ܜumJ Y=LMLJ}bihB>}dRo ;=lAq}7aQe\AЕ;.&ña-kWX5QrME18Ŕ斡9_0574\_/ߩXYO RGєXUsog~RԙZc7$3$f`.,sݬCapYSˌv]eonߴnά;(Vlx D# GKqMT,· F9&[rN{]K2ql(u*Rol[HKC'Ir?w5ˈu[4I }u!X猆㾱JuN߸̌W$#@b*ޚ؃ 'b (֭6;D[w %0;m~Vn"WڌؽS%VEc!S{61dᡧ|`hcokMŭH1I@zwL-k/56|fn[ DW!wLOl[r~e”-~w,x+=4[WlQQSmfwl>ZvHpe!p2 9C|,-@<+qltjG%f[Ħu$^v1 1V)šc~o)̶Zi^Ҡqv9f>.) \%sI(3̿1AL|dLq}-eѸZ7"EE؅sT3\%YEJBf3)8c+K IK:8ܜyjÍmwx'ޟ>>!T" ~Yp ^Z {+yDRE9TiLewyV$E4cuL ]9t;e"?әXm ̠!0aL86f^~@`N F.`"tkd1qxslaA̶fs<6 ~3 ëuBTJ *kiCxIRGG N91BoPzE9&:P-=ok?W3ԟ=曷;33@8|!1,_jmDINʹȩ'8ޱ"1P…3vnJgAooG޺U')=LU,=Fg$&Blz Ar׊lxw՞@@1*Z=CU.k>u~s bV1ڞgՑ>oӃ8 W-Lv}~WF?:hHBJyĮg8-OWτ杻mHy~G3bEjdsٕ-FRaIt!/`u!8پ^ټV ⤮?J*vpzDk$pX='5{n:Ўc꠰obO6Jo6V، 6L'XkXWhLD# ﲊUSXaU1*(yEDD_3|s"fr_ &m|EX5HLi;wQ_h NmZڍB)YZZnI!|cNxtr$dO>99(t@dw@Q+oW%l+6冸uL\54<.U5`?*ACǠ*Ur˂M䍘?V~<<9Cλӄ|S~=wSkq?ðs-o&^yblDT>ٳ*0γȪmF8'ޚ 6eUFLdTS(FjB+'?+}Ɯ׊(qGizH}AϾ}n/f,Ci@APR]S3לz* .B \o,Aݤ!ƌPMZ@f={w<+% Advg:.nǓamMG뫲OwL![cR-sF B${Uho߉x s2Ӭ(e"[Hp,ao>mp&%Bѡ>遡OCRZ^XtQg{Qf-D-@P(ui:]>gu)Hcރ;i8G:%xV^J'9SXamikaL66 at%hLy^/sKJvZR&@ `_4Leֹez,fF(Kx:,pUtrߟtK$(bb(Ag21'w Ƈ{c^p4lWCV)Vl8hnL[^R 7=>ֽ9Ic̙^*1}r`n_'||Gpi xu+; L+d(cMs_^rLəT&oq4q,= KW֩,RwbCυs+,¡X ]  Uh^MRwGh)L)R5"r(Ol ~QKP]?n_Wf·y $$[~NF@{Li\GO-E6 oAK2s3k;&.=, į}#^9ⷀa ABT|_eOzQ$ݵ}7B!SQ H0* Sh}Z*z#(;9\T `27tK{۩}෶V/;7usEwuJ1f#[>D0\#2yD,8D;&8~vfbkD`O`] ƿ3qb8E'6u:!~zßFX>#/y.p)-y>dt &ۙ+\701[@`OzװKoҸJž]Ф[[ݴܖb}KJ ^_]2.Α4@Pi2ϴz/}*xb#=fةTHUu4 eb9{Оܓ#cѹ#=:H 8yzg\W2H[9+kGi<s푟rȲ;ٖ%yAwUr$iwF` ea9}Fa3Kœ86ZeL V[Olѫ_wq0AqRF|O:-2'r=.LKPn #w4 Bo9_4);3vy!%0rĈOOg(qYiva0bTv'&`-F>;hpxWmǡ$&=r#> g6]ڞc QQNמ֣y_H& ca{^WX'U wffBecdui.z Z0;+w-eq$FZRy*d. q狂֍&4ċ* c~Fr |Dں%v 9)|JmXuzr V2ϖ)uʐy7#ǯ|>ffU@wzzAZ4%-[wsW[҂Wy+f@Z߬C`ߴ39d53usĻ%x%JjN1 㼅4nÚ&n7a{#ȵ5-!}i-?sT.oF"תn~y i!-*QMIҝW͵UJKX&M? E.h5Tc3:`KV{3e!zM71zE}@8{j\NC[oq)1~#jN]6J]%ӖjMgwTIϰhI+VFjݲ-~XjΙ3V*[) v'\sMn)Q N'A crW:x[C799ntS5s&q:ŕw<]H:4(#$Ћs9ĽJ~w'IS5R$6ǃ]Dôf7Ǐҍ~I={E/G;ϟzg"K֦̙Y;3|[w1ܯ]N1gN=Ϯ3$EO1զ$SY"nJqkM;CP-d8՛}WsgMTY*N;mf82iu3T6V1St1W6 >'D8soMqݛdR59M/9?i5[=FuȯTz&{biS"v2VѾ|BMYwgTUk瘣 ]UFGGmk#'95=us*+Ic)=oN}\HiF t }W(a9{]tnnɲ)< ƌW'_X֖M՜z|PhUj曫y^$٩hBi$*0Ft۱%@HD.;EѾ'A,-a!)D¾D|4yb}qT'I}BUMD|w5E^-w #pЯ[B4_Cd넷LssMyGS֓0S(|VHC T]To}h7wR쑳U_Xg\ַ YPI>g1vP"}D^yF[JTheTc#t6]V"o<JMv YVdOTy8Fq,;RSS6,̸^i%k{ k?ZN_=%) +lZ%Qx V$3IzS :1Br r~ĶYD'O m f6DXyրk׸j+Z,G8ryG'{ ŕ7Gxߌ|u) K晰8|:m3"Ti=P_M.2OdXV+vԶ`ddIBB)yx.sik\dCA#>ԽGRwru/ڴ&2P͈^XqMe2×xSAHLئ E]_0u>( W;j:f ^VZ L!GF+ naԧBl)9G#pl̥ϟ{ !'W9H_*OT5v:5cCqMwS0T.D6 ~ Y%fLa7}8IQɿAp4r))M#O,N ' Hx W($ BdO<C8- +y0&"˄zRt+ѥ|ނ_vӟ!q[yBJ@S_a$@&_BwD*p1fvCȏ:Ea# 7BA7f0_wxB;a:=W۪5uɒG:R#4}9m6wekh{NjU)v6CEcn n;3OW:2 ^#+,W sIúhx}OAp,L::DNt HspOs(ZPXVO+/ϫzmſW% r9^/.boÍ3lA6u*3l0`z1"ioҐĠDXq&'6Hy}b3xzyܻbOmIȮjk~-oqu{Rzn\*yq'`Rܻ"zvaǜͣ$ؖ!\V@ Rq~ cL R!I%\i}b4ǞN֋k:;aMڹaV?&DX9~ٜt {D)YnoO4/j5#K9?jPc"t//N6c,S[˱_]kYnK 66q{ϖVAM^ul3>7)p6im/X7$3j3JY|чlto-&Qe{1Rf[)¥{؃I8! nP%ԖŠmQh;X1<20Hluu v-81NÁo)Lm,|UIA~NC|zGCզ_9q;OhLg%a89KԵ$t> 2pot$ZL۞9x%5KhUSp7̒tL4 QuW̒  x2,'}~K* P7EPVt)2퐮8gc@]'7Ҍ;03]twG0MIa0G0[L4OQ>]0YGk8]zuY@x\#cF?oZ/H&3Ǘ%#HbW:|WP:gQQ4,qt~"l32¢M1Goh}Ξ[ONnjW4WϣGcL.;8D5ϑ5Ab *2Ş#FsZN־}ikmGhCcd߾ROc35H Y$J0 #rx%NNُQ! g3kԢ)6C+RV6T.t<]ϳZq,G])BUF1o-VtΞ2xG5f}ORGݓa"YD ͰycJsAC#.IPz( |ly+f RXV9% 8Gexej"f}f'׼hXuS}՗ {6X݄&N5lC칼|~\Cǟr)8xi]tVy<(lCzv+*o1}[u\a&K^Q|i9>c0k6equ]٪X5(^[ /m,HB쨑ǟоL`!DrY*Ѹ{jaTW󍷁9EqK_j5d?ߜ&o_d[Z(xr\n= 1[z{`L:dƘ+ɗs]Y\Y3 { 45{PD\c~}f#LGvesL3EIeߍ$K p A _cEoH1ً{n;}οv!Q~4 endstream endobj 687 0 obj << /Type /FontDescriptor /FontName /AECFGX+CMSLTT10 /Flags 4 /FontBBox [-20 -233 617 696] /Ascent 611 /CapHeight 611 /Descent -222 /ItalicAngle -9 /StemV 69 /XHeight 431 /CharSet (/A/B/C/D/E/F/G/I/L/M/N/O/P/Q/R/S/T/U/a/ampersand/asciitilde/asterisk/b/bracketleft/bracketright/c/colon/comma/d/dollar/e/eight/equal/f/five/four/g/greater/h/hyphen/i/j/k/l/less/m/n/nine/numbersign/o/one/p/parenleft/parenright/period/plus/q/quotedbl/r/s/seven/six/slash/t/three/two/u/v/w/x/y/z/zero) /FontFile 686 0 R >> endobj 688 0 obj << /Length1 830 /Length2 1208 /Length3 0 /Length 1785 /Filter /FlateDecode >> stream xڭ{TgƻpصE@F $CwHt @2dŊ\E@8K\%B]D^/ܱt,w3>~dC6!n" 7HdpTB8b , [Y$2E({YU5,D(#BbEp9p @Q.!<#V$D"aGĀFzk Qp}( w T\> $Ț`z"5+m^ךl/Q@ýVDJbTЩt:H_c\b֯}"8+{kE…vGl[2I#l&(#wzFnnh M_)ͦ3JMQDfq?uRK@WkR-;ѽ{G3Y7o+>P=н1|ۨ PǢdQ.UqyO?+{ojv.OϚ|$Cp4mihS\s74eS +*+izًk9O(P"1td)CK|^\Nc0+70`h Ok@% >㓴ʜç9纘NqN_Wxz<2fjýșe}ug_ǣco]9V:`г?٫vsOSCc9{c_|YVmXPZpixGcFw[.2W ,#Q4݁MV^Tn,~O\&fC-z5kHMz}-/8dOl& endstream endobj 689 0 obj << /Type /FontDescriptor /FontName /DBFDCP+CMSY10 /Flags 4 /FontBBox [-29 -960 1116 775] /Ascent 750 /CapHeight 683 /Descent -194 /ItalicAngle -14 /StemV 85 /XHeight 431 /CharSet (/asteriskmath/divide/minus/multiply/similar) /FontFile 688 0 R >> endobj 690 0 obj << /Length1 751 /Length2 733 /Length3 0 /Length 1257 /Filter /FlateDecode >> stream xSU uLOJu+53Rp 4S03RUu.JM,sI,IR04Tp,MW04U002226RUp/,L(Qp)2WpM-LNSM,HZRQZZTeh\ǥrg^Z9D8&UZT tБ @'T*qJB7ܭ4'/1d<(0s3s* s JKR|SRЕB曚Y.Y옗khg`l ,vˬHM ,IPHK)N楠;z`軇xkCb,WRY`P "0*ʬP6300*B+.׼̼t#S3ĢJ.QF Ն y) @(CV!-  ,IH 3NNպ& & F f(KRJ"0~Z&0SS+Rn^Onɚme X9X&u3SjM*,y־% mHx֮"&4׻,^5+Åa3>_xV/'x楼pZkBZAo`(&^y?ҊoO^~ש&x,o:e} ;yVђ T~x̝4lWg%?.qp>$oW>hJ;Ǻ' DG2O^k$[Ĭe C6WP,~ٸ~ゟ;ͳgdxMPđ:o)]؊^Ujn:u{2wGٹޡiNʓn艜Z\=kGNs| d |ິ _l{ݷ^xBYZ잋gqxTD5o\k;YCs(TTyN AU+Ke ڵ=\q_Pܕz2Z[N58?Hy.;֬7sU/.̙{'l>W`OO<3 ʥwlKUQ_Y~X*A@NL-Rw\>e%=;l5=_ҰiNK,LnG r^P'iXh--XͲ +z3Z endstream endobj 691 0 obj << /Type /FontDescriptor /FontName /GUOWTK+CMSY6 /Flags 4 /FontBBox [-4 -948 1329 786] /Ascent 750 /CapHeight 683 /Descent -194 /ItalicAngle -14 /StemV 93 /XHeight 431 /CharSet (/asteriskmath) /FontFile 690 0 R >> endobj 692 0 obj << /Length1 765 /Length2 746 /Length3 0 /Length 1275 /Filter /FlateDecode >> stream xڭRPG-PFl#1pB! QGn&wrqŒH DPPц (іiE TTEj8;~oRp**( E4EDONC!(r)hFE@fTDh1-sx@Nl4`@IiB c2 @Mi  3j 3X ͐ q' Hz]IS[!mfM`$q4ua΂ ]]!DcF`W@M !MNIo',Ʃ VF (L2Ifa`@p$> ބ rYNp* d  Dٌh ֋ez8eVp$`48"X"v$ZYB`tq=i1 @C.SV{( C$(@1FwG4$lZMicr/"΄i鏝z|zfߡT 35#OmrmLlѿ iA죧+kSeKۮ F-k?)=8/*>f9*iՎݞ>Vh\ig}nsl}V)7{6ti`egÑgkmjU7Rwafoy{~P{?s¢Q)}3?ˇg98Ce1HBG(ƫuA')0~%;R4tޕNǽR"> Λ t:w[Ft۪Z_m˺\43ypR͟<(X6gI mn ֮{쒮;yѕSQ:.xzDc- =Px!#yNƹR (%mh4nWkˢY<_u~ku/E7ܠgaV?mF%>z߹LBH1/w{) G3kZWҽi7QMQ vL^6_n;R!G9@S/{VےKuo> endobj 694 0 obj << /Length1 752 /Length2 713 /Length3 0 /Length 1233 /Filter /FlateDecode >> stream xڭ}PGƋ2$VQXieҢ.!DPFA-~wp܅ˁI-TZD[-Zu P5V` q:Ͻ(\z ul&"dZ FR2yF_\F iAPȭW_Fݵit@*`µ`= HfDL,wpd-C f"MiLR"͟ E2\_ B?#0b ɫZKr1Bh8nNsh)w>m>rå>:$K:o{v]ʝ9msں,0G^''nלM_;-=:woϜ~Ka  t'ώ5{KTε!OknibS7xڑubG}lE@ɏ+ Gֻ9}^v+IWGwEeC0O%@]<=`n.oҸ9EYa9-"c|}u Z\4tf&]]oOPο& ʣˆ`/#Z/oYމbYfgaH^2 ^[3ϫg)ejkץ_ڍyNӃ|- |3V( .: ҽEm>~~~NB]l\P0^f{͡2ȣ1嶇.D=Vh7ibM&OTWȶ'7:9v_sҕϯ8\Itr6Mˣmiz}:iܧ97RCl!ᙂy/q7R1ҝdD.^ji=l^0*Vg_hyKHSshB rkw&X657S1ZVyC=Xw!A Xb> endobj 696 0 obj << /Length1 1252 /Length2 8296 /Length3 0 /Length 9045 /Filter /FlateDecode >> stream xڭu\گAɡ;$fF in[P.n!$}}=?k{5z0ШjKٛ@d\\@)%My.N '$A ;[C߀!@.!!n +/`J;x,,LR*JA`V`(P l {l ԰78{p%lmZT8A`3h@r=lSӓMf=h1 O.?{s[[eݿS<*\!0w)A̬\{Vlke*ٹx98y=n$c1Sr6m CfmԿ<@ rdXhT[A5= @?0~je§>W4 ja0%z"> jqBܟAP{%a+?$?$ ?$I ? ! H>=%CO JHR >=P z23>'w_d>%YO m'eۿ>9>OtGz)I/|Z>Of)/|WWR݋/ ~UiA?<݀esKCL s"AI !žҹ%N)A#u)"+"3qM^0U)nb9̜oA{K<7EȜzbzhٷn-F֓tȕorȎ"=-`$m' 3[&@Vco H R/ ~/u/O,aEf*=MGdv7_pP/d=Vp Ω+c :RZOY#|KfK58 &f.@uKr;^̡C ۿ< ?78*|cƼhol\v79z&{0{ 2ߜ7ė#EcIWt$d)n <1/\nMʟ1RMI{~Ë́S*=i7I;p g'mV`_KM3JJ7wȜJXs}OAk9 kNוA}l>&g|P/ ^^-—/4)Zk3fx0>|,}YxP1$@1ly&-GS6ȠO13x"PV}xCԙ2nTWgPZ9*SE νPfg\1L0P8pj 5o5T`ϸNŤֻV}p|@0."f+` VnApcoB$ ^/{{p+#Mh'SSˊ>wD~ $^s{쉈lٝ'?-HbbIUX6"@NչՂsƹ{޴0 ?Q]?:^L"XPg`Uu}гTIj2xS\đ_h60U:3pki5\{Ɩ+Nr@$s<IA`\ܕ5HLƇӦ6jB=nteE8 gނ<Sq0KԵY iWy7K;nNcnB"L5wfMpu~s86.eX]|/W$|֘!ܨj76$i9NR:pht1N\W;j/b(FzLlKƗV^h<*`W5pB橥q,.s,U QRk4,Y$i{{/enԫA6_V#+<;m8Z q_?$oUOEuhF BUZ7]$Pb_Z#Ot68whG'IL&VSpaټG JQ([DI9޵^P)bXi͟xR ظGlVDPWwxִ ',>5| ;Wx\<Za/7Ն2cPtG:7=ڔVɢ,U1KT>jϩbРH{Y>uEX~ ɸU+zZʬ3Q<'VF3q;ZUfQHb%>ףumN<9{92̫o_wj߈O.!C[c:)WFkGeVibX^C35qc}ojݳ7:5vcY|;'SJQ D 瓊K#)Ib巏klrYu:PvG#qP _8o4x68?QiFpt b3eh@!G5eP=Oom<`)&ѻQ^XC ;d9eL}#=9$.4:hxTrb?_;o˶Kjدmn+ȈGd`^ [z /yʻpTnM_ EKzre!f9VtVFgS̀E+ø!o"mlƳ^53,n+49RKMUvQK~C۳VKD_BV̯$ /n)X. ׈D Hm|i]%ƗZ#? hl5 K2Nhc;4,6!)Nw < \n7{ѝnڊTo &LCSa_)y3ݐb%ԉlHή8q6ݿDj洍DJ[v}mc6RFbg'6ڥܯZTx~q`ɜy<{8V" TCcX~D t]—j -^#m{F ]6WYy2I1Sn՞VP]݅8"JCul<9ooӍ]Svik{3[zUL4MN<{YUuqL? `yomX~VĤM$O \&3=M0tȵ,>#XOIG7奄&k(E|*R"ۆP|&;,Z,$āc>H'SxB"Gj@nzO!eI/0ns:]X{l&87jlF~[Cq 1~KS>},%ՇG$qtɥg70h6^2Q12B|ŐxvubU)+}ub78W^}`]pր\Y313Yc-4қ4Sȹ5p4vr !/&{@~|;J ֺDg/WV52IlS;$Z:٫$r`aBCV<ⅸ TĂ1n;[* bR֡ D ;n%MEbd ÚA87Ycꆂxf`*Zpm͖-k "RdSbvT;eS3.򸁼w'O)DЉ&mD`gOd1P\M {^]G,;~-/ߏJέ5E//פP mBPs;_ Z.꤇6ZHM\5{i\IR57\J#g,F˩95˚X}r1\Yo'b4`1+SgpF1>v[x>Ҋ2i\ȉ Ӗ7Cq8 >{{PK@Bc¸+>Vyu2VJ=ۇ*̩oɷ+:0_)uRȋv.-qG) q⽺D8.+8=bp5\GXk'"s> rkc2]Ol-6FSkieZ~) e(S"ii8̟:S)( #/'m3C;H>hF_M0*JWI`G(8:.L2bת5]F7&LjPE,NAyxt@"wB\z!4 ʰ-Jݢޠam-TDsXʦWH[9d}c|=vvyU(U1D> _]o*T#Gچ4h}{%3^g܏arvr8;(Rp5~qq6wf&l#EDf}_٬ B`~"1DRx'ROD}:I3DRj;A09݅q;6ry.s\\qcO._=@JFeJ$XGŸ1xUJey*c,g Y7z߲ނTLvt)6% N*eq_;;w'ƀizz'|Q_oQB:֠C79?c'"@r:+1wE~ Bί0:{3*a }}ҢClYNNTړ&`@3nwݪ#c~ 1}Yn2dޅF"cEzWѶ0wڨX|FH*QcY I-nXY4 %ǿҥa0Xs~_;ԸRetm:0ɗd{ت;")s(ht=ܙ;?%}< D:.y zT`ETc l&Tc.PIJys_qZ[mpv`r9YHѾn:?gCQLa=g#80Ҽ7@f?ս(,L5hrH.|.G$y4SuWMtaVCo Ryܒ`GQe}%歹OpėI2Pݎ=WY-u?+ʴв,|:l$'%Glk_мCRhbRKCJ YolIcRQŽ_պ̅@.oq^_Ҁ)H1K|"sqk oyC>|)л%FYZg!TmWc*wudko-_˹}цk)Qʁ6ghN>$"U+z-~Y>66EXu- ,lO:a5{ldxo061 r)QVY 'bB"h<=Fb.~c(+Km}x]鿉^=.58#oNl̤!ދ*sqQV}x(q^3fZRfQnm\OuW], b". q18xF6𪓂J1ՓZʚ$QYc`aDlzOs(h~C_&bqX, e&.>{o(VX 7nfa q?J۵&6O|~CI//^>S~|rÛTE 6OISUgPAr jxUZM-D}v6REDN+:| O1Ǭ:AY`` LB ہ3NgQ+j_ɳF:TT&9btFPпaxOya80)SgS(zVbƪ v}!+'DQ<(T$* OӔEo+eUZdoK=@kFn!<Ұ]P^4 K? \c;MxӲ9]J ƌtYCHƖ)RݺbW<^2/09uJQqԺL8~-P]Qrˠjkvz"ݚ!EHP)jT)"קTuYW: `iM֏65Ө2 +abT$k$kʉ`&?IY;w[EeN yۃ131a{*)}ޖ&ۈ\vT[|MVVp2՟|+$5x:i9\}yy,;`ᬽBg4g)ճPcdڇbz6+MK`[:ːWuC u֐ԆK57G{@3Ls?K*|Luvo ѴJ`)4N--Ҙ_-i#j?(qYցdpx!4ᛄv*p/5_ Lyٽy +{8S-|,-øK$g_ (#N$&Wl`!SvS%wP0-]PG=]`ѵhwp<&r!w? /)k0XE3O0)Qf;Cɀ%]#F-G஛{Vͪ)@!*nWxت9)s+(;:HD]<ӾyxpTS ɦu1Tf/J.8+'Z>x}:, 5%{TEFQZ G:4{Ҧj]CLL M?-B endstream endobj 697 0 obj << /Type /FontDescriptor /FontName /JHSWJF+CMTI10 /Flags 4 /FontBBox [-163 -250 1146 969] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle -14 /StemV 68 /XHeight 431 /CharSet (/A/B/C/E/G/H/I/J/L/M/N/R/S/a/c/comma/d/e/f/g/i/k/l/m/n/o/p/period/r/s/t/u/v/y/z) /FontFile 696 0 R >> endobj 698 0 obj << /Length1 2020 /Length2 12850 /Length3 0 /Length 13964 /Filter /FlateDecode >> stream xڭUT\ݶ5NN] pww}&U=TcZQ)2 %lANLllQy556V3+$f6V~Nv jk`af' lt06 ́6ƆU[c 3@O#@tp0#L,F@3 ?AMtpK&,d0"(؂ـ`-% m)I?~C ksv:mM 8yJ;Z[ ̬,%,M,N <)`Uf˩dhrRsO0x<_Aƶ& 3;7 || `2~0l)L<Hl "߈ XD/E XxX,o ",Ro"|ro'| o̧ SzC`>7SyC`>7 `Q{CXitX8|`CGc c cgHco[<'?fApz+nTpM#C77g#Cc+5u+Lp .05,,66 _0:-c7ibkmX6ey#To RC1}KejxܶsC*f\C^9Wf+ G<k_~>`yYC}SN/7#77_det0 m Y;bV<>{g['_b[1xoACWpG& ܁M;ur+܍_ xnQp_d<no S݁""_1q9a0cg~Z_@W1✭Ćb/XzH(ڮvdhHY{Ҕwh{{τ!m?%}f_\ Rܛ Rv6ܜpA*Ni_ g+ъïAtuphIX} SH/ ZuňY BhbXmszEȊ}` .8a1( wj(;"t{srS by ш'-$)| 1xc<#twVBqRO :y4EueI1Ok4 l0^u+xQAhbUrtE#HĖ;޹>z"J#>D X5Qχ.9DbEOv`MY'ɜVh؁Y2%ú'v@z1Qޝ =pЇ.MچcǹE4z׭Wm3D` SA0il<|3kczaSC+NK>zt!xxTIZnvE)v2[r-riޛņ=^ZUFEo'"i{](9yGE.G%wlnY\]gd)<;r4C bF[fSm3Px>%zNaTHc4ⲝ#QiA*n.8.߯nt\Ujk XR9v jpdQ 8dx9MBd. ryRxKZ+W7:ͥ>`6&3:lR! -9uuc7L UB xh;.P83kR';t85*Ƕ/ܷPŇLgsvJ蜞2`e4Rf>=}kK՟2v%iVҵ wV7b&@n*f]:4G 9'nLiV_u8ŔeZzYP=:޽>ZZ.L;vo'X6CjFmi ݁^t#pCyQ!},(4|£kąrbr.LNxڶِejH!5I0;*,<+%jc1K+kyzF9vf.X$5ȍz-hNk1Ӡ5ہ/ҼI!5fzr5o~Sikwk3(MBM@me7]htwvAha>P%SoռGV8#S&C5y-_h'fQjln P›! $3I+ Czײp]I ,z@w&)2ԗx8-~VtA#PMkM\ C< J A}I-mK72y,k~)K*iRG)՗.Slt&˿:3Ň(6:k/c뭹ӧ Bu?\bHᾗح“8EJZ OKqRhHkL%'pxzJN,shutQWv{:S܌3P&Gniv4~=JR^qFw=y=;8 q`!GjAR{+;UH,tg^ݣz=5[RnR1]H]@7!cL2lW/VylLJ?N_Mn=Xb>z1qIh mXXgX `qc}/lΈ΀$gN7,uȋ-tR<*;be y 4t;BHnbʹK֚Ey_w7єђfCM}g*>q0j߮4;mnVAN*̕~^< u8[bKoT6W>_HQܣW^_7@@ޚqIjfGxz; N{>Pq!BwnvhX }>,ux\&Y+c^+ GfӽC 7cqhd28DIF|@&]s,ECk]̎_n3B, }" AI޸2hNDME|o$ la@e-X9ˮO{=u<{b,0`9#sh-JUi KێvbRtOE*%/2kp@@;\t@³tbM՘jJ~DfvScXj/ [;ܯchOIi+ߝ ɺ劥rϐ |Z ŚG obFtCo]1SqV}//KUq|@dFZx}y BK=<˂[&ghC)8%W7D qi}*Mo]UQOnϮW4ow@=J0)j\grCx;1<Ǧ?¯ݾJ8+O*GUɽa9:@'~Zxɉpy3(iu%fyLx;jj}POʁ;6 Şh1fҚi<=KV˨C"v) >fk ^~7{HM=.#$TM3Sj;}z/љ&g>y{VWǽ`;˅OR4LTtS1* OmgirĈ'w(3A $[ʫ@,_W&O7O _Ƙ8 t1Yd6{ ?c_MgrrV z\Sx}<\(̓1(a8~P4Ŀ-6$G;T6nF@{]XJ6"]Q2+e!1 S#&Yp6Px-3wS6,YLH]EmE|/ {bˇNNC[BgGKWs~^Gbt5+JKGQƲٗ' V݊;y8ꁓ;g)'3|mgUAN"\T]Y*;J-. _>s2oU18 ķ덈yLW`aQ\Jm.JJ~P,FAC? 4$1z*]'LLobWE hm"CxX6($3jHnB[Hg<"JGGa3{梅XsY`}z58Tg|s-Y~?E%qyaB%JS >)|zrbP:/pNB砬GřW<)kb9.Y2=-< )wR 2~(ΉxWuӬCi`:gpp5%m]ۚ4N۴(`d8q5ަπSX[Ԓw,Ser}m~|{_1nx=Z qHXi؊ciyߓ9v} ړ;A9WXu=3QAņ#{"7M yEWxw < YT'9|02fY)"tW _eށQܨNb'5E۲AIÒSnD?r9S}X;NR{EWN7 ;&BduxG1Ic]{an*h_ M %'|\H[~ ?ސ$A`PRu GxCwvG2D˙Thjc[m#߹B(4KAVuSSٗ:?WB>>Q|fZh|ɛؼ挑QeEFQG(D_,^ήKaN탕NRF`Ϲvc WdCB{[08hW~N5@enOÛ \rXJɜMAʎcbɤ[zP ?YtHW6fـ)ͮ;/iSֽƁ nٞ_ZOkHw\8);|@z^Xh2ٗc"%6 <6k0؁̀,04Sv62|!YJFʉӍg:O * k!%?YC)Yң#vr͂m(6k4:w:#?;W=olsV ˍ.ȕoV5*0\z(o~9ԟDk&xg{1V!t?S#%ICN>_ůy R{ +{ 8?ìGC;e.k)~DS3vِõy P.r™)`mk49.f/a5Ǎ4 C.='  >hTs9! 5'Z 7s0 G|q=@OH|uJGF'b.%ljd|,GkCN^W`'oo5{An ?[T (9R^VxAQ'\jlL24+)^qS+\D( $Ѝۍ\Dtw۩qwkuVǎs\4Ǘ?CS|..,͹{7|j3uԛGU^rT O$֗ZObj|;g_\Fꏶk՞Izڽ| *&w=QN27*V:jjT}{*tYfeŗq” Tm be- RX兯 : CU*lRd/؞P.!͊' 25gq5.sRET'_U#DҶlx]>KbԱ BAir^ą5GI}P@'9|f*T#ƾ~da<c@;^c$#Z tdLF yYJZɩbojRd]GMuu.iU (]e J_!?h81|_΃]&z_ݬlm8;6ӎ]@7%X(Q3;$~ucd+۽M&G u(7VIS凤QmaC5(APuBSG8D`dΨL} Zko($^2T.]-I$Kܠt%U|!/})7A#Sp]nVT yHlU㐬u騸Z;6׵ќK>,B޲W~NC%:<_z&0J֟x\$4Tpͮ SLlA4‘h` \t;|,94q\N.}Wf[(XINw,F1)sbvǏG? zq. /cEI#/Nm-uԨtۛkKw\.g]a=~ٲHV܄F92o6w +/ 5lteB:rLby6|43j$vPᏗ'$S|[ɾ\6{/YT'GlSzf,KzUL=;s?tUF>ȁO`y"GPvbڿ.l}zk;[(,xJ'ij8c(mx,[` c7ҥNTAݭĉ$w^B&61'qaU7 ޽XaFQ$'zG-s˽#N $ħ=itnuD?cN?՝(Dqg3"Iz:pxB:VOg&|Gy0f$5Z\Lο>l٪XLah?q^VpxfU:!FmHU+O\_)sסf1w5YMp%D44q0_N5/Y@㢧El:.l/3cQ 9'tfY=ˬ5;Gy#)fE|Ĉ8,i91]rDX;EYMM RnO,~GA^=A6D,G JЕSv$WOKujuاn8|eS%@4juaa祝on=G1$ɐF{,WlvX0.ޤj !n|ms*A#4D|&QuÆ;jC*RYhoDh,nYrU!TYou7O -5*uig:nJKS>)"lCE"Rڰ_;-C1ǬKp0\1j{'?Ϫ;-9d 1ܘz\V!B:-%uq3ɶ^"ygQ'XW v#{% VB]M [#ٖ‡h}Ikk?Xy6h]r9BmNmaZ$l 7[j{Gݮ.IAE‡tgX7WYVَ>KAj[ws9r3۹^hO(_ >VؖAE~4 7$tPD9oqXLqAw0ccdAt9QLJM+U~ %)|iɳq:6{OSrfp~viИV`8|ӢGugƋPqV|pwg( ;Ș,Caz v'16@LY6^Lr:lR*]"K&7qϺ~dD YWM[aUi"EeRV!Lȵ yZ*X95Y pY SEܵ?fsٻ:)>ݴxQSN_Äv0_ [m[pNVyPsFHw` Lj <Px_E[`(-,*> 7f hu$F{8lw4qz?aY;F ՝(gp+#jERIU+L=^hr ?hztG,Ki0l>Llu1-p?+Xt$4ۜ-F&XeY`6ԟe5 -WpjLUhU=}qj'}-LMZnnkV *sә_NڏzR|:t?g5F+ 2c 1~uo#)E%p {L Rhi ֡f}~M[s OF? xUOL_Ւ9F"?YK+1bCsbVR*J(Pp{q$q@7fl?bt4{CErD )n:rL'$*Ic0X37Bȸ-t`!H~h{V5xt#;gmu 4bF b>`e6xj@݆1rY1zfLi{Μ[7е.1PuNqc*Tׇ,0=s9߳TQ⼳Q!iZdu4>@ Lp"K:>ɸb;2B GNbP jzZFCq21PC"Ϙ4)l3\mBNr}ΐ"Z~N=w[HAKK+BBג nx#s\ R$-sBpg|C;l6湈ڤrdHb'{!玚$p(+~]g-e{'$ǡPi]^)VF΢=>#_ dǩ~嫉u?|eXRҢ)E۴8KPrU*H;^U1^W#9xT>¯SsE 7qGLdLr/qFci/'_|Ś7:Jϥd-T VVuRw%< eJ^ f#K ,yDuj-( WdX2Nцe<u쯕)xY?" :M[gZ0X|绘p0ܹ B? ٱ1~.NQ 9<_^"3ߊ)'DWULN5e7 4Rn=9CkYAtr\#<.Hk_}ϫ?(uwor9V^F{f)jDA}fL$:/z5ՉՎؔ[N8 u )Y;XRnLL~s ͛+9x򴇚3uߐJVy~ꤒ/p 7{~c3+He܊!rR!;V8|{nQF 4{B-L#>2'Zd1 &I4, ʖR"W8@+ʼn2\S&ail/ a 0qQqm ҡǣ&絣IzUOTE_ɞ>V˳xKQ۳yi'Owy{Y|VcaI ,Ï/}Ϛ$O W;5+UQ0XKR2,53}2mw}]|Ti"'ʭS7 ABRyHJrfIpg\^41%[ o6U-m݃\ǁfw|͒2-jġ+2hӑ B y˾ Fm(;sΞՃ>MBێM~ >}e!f%~ru̯L&6Ռ`>Q%;Y2暉0,TۋzEabnKY<'bxq 1=:J rȣ)X2)R$2+-?dNE5F ˎ^FHW͵HZՕz)3 A s_GOߐFYѓ>{B}nDVTm5<ʖD"v+XR9e}t ֙ cmbv#(~I^i26¾-?> >V +]A J'scPx~*JfcmkGv$;>pZœc꩟]'`2əcjg,̯%fWRiD0BIggT0$+ϤD9.x'_6pIJ!MZ@`S})"X_3 '}dLOP|Cu-*YP~ ~2je129K]s:!3;k׏.y͙4WHQRG{Ra9;T pԄO' ` L v5]0ŞOBR Ԟ-"&ӕ%F%GvwOO-jVP7@ h4+s^Y l7x vV{HWC)W m21WSYI146$2"x>Û0zhu!\/dF n 6GbkRs]B6RT|Xnwng.*-ܟ6uN_psK|)4( 9ơD~% Pxk_ ZsKL5&`yfy}wt yuIZl.b~wdK+I*gab|_RAd@.d\֍o]CiMىeOZ]*?؟l endstream endobj 699 0 obj << /Type /FontDescriptor /FontName /BHKSWA+CMTT10 /Flags 4 /FontBBox [-4 -235 731 800] /Ascent 611 /CapHeight 611 /Descent -222 /ItalicAngle 0 /StemV 69 /XHeight 431 /CharSet (/A/B/C/D/E/F/G/H/I/L/M/N/O/P/Q/R/S/T/U/V/Y/Z/a/acute/asciicircum/asciitilde/asterisk/b/bar/bracketleft/bracketright/breve/c/colon/comma/d/dieresis/dollar/e/eight/equal/f/five/four/g/greater/h/hyphen/i/j/k/l/less/m/n/nine/o/one/p/parenleft/parenright/percent/period/plus/q/quotedbl/r/s/seven/six/t/three/two/u/v/w/x/y/zero) /FontFile 698 0 R >> endobj 302 0 obj << /Type /Font /Subtype /Type1 /BaseFont /VSIHWP+CMBX10 /FontDescriptor 661 0 R /FirstChar 11 /LastChar 122 /Widths 652 0 R >> endobj 243 0 obj << /Type /Font /Subtype /Type1 /BaseFont /EGJZVV+CMBX12 /FontDescriptor 663 0 R /FirstChar 11 /LastChar 122 /Widths 659 0 R >> endobj 627 0 obj << /Type /Font /Subtype /Type1 /BaseFont /IOIZSJ+CMEX10 /FontDescriptor 665 0 R /FirstChar 20 /LastChar 88 /Widths 635 0 R >> endobj 337 0 obj << /Type /Font /Subtype /Type1 /BaseFont /RKLCMA+CMMI10 /FontDescriptor 667 0 R /FirstChar 31 /LastChar 121 /Widths 643 0 R >> endobj 621 0 obj << /Type /Font /Subtype /Type1 /BaseFont /RVPZIX+CMMI5 /FontDescriptor 669 0 R /FirstChar 105 /LastChar 105 /Widths 636 0 R >> endobj 432 0 obj << /Type /Font /Subtype /Type1 /BaseFont /YXSCSL+CMMI7 /FontDescriptor 671 0 R /FirstChar 78 /LastChar 120 /Widths 638 0 R >> endobj 249 0 obj << /Type /Font /Subtype /Type1 /BaseFont /GARWPH+CMR10 /FontDescriptor 673 0 R /FirstChar 11 /LastChar 122 /Widths 653 0 R >> endobj 245 0 obj << /Type /Font /Subtype /Type1 /BaseFont /NDGZGS+CMR12 /FontDescriptor 675 0 R /FirstChar 44 /LastChar 121 /Widths 657 0 R >> endobj 244 0 obj << /Type /Font /Subtype /Type1 /BaseFont /RNQAHQ+CMR17 /FontDescriptor 677 0 R /FirstChar 40 /LastChar 121 /Widths 658 0 R >> endobj 375 0 obj << /Type /Font /Subtype /Type1 /BaseFont /MWPXYH+CMR7 /FontDescriptor 679 0 R /FirstChar 40 /LastChar 61 /Widths 639 0 R >> endobj 248 0 obj << /Type /Font /Subtype /Type1 /BaseFont /KBSRMA+CMR8 /FontDescriptor 681 0 R /FirstChar 46 /LastChar 121 /Widths 654 0 R >> endobj 303 0 obj << /Type /Font /Subtype /Type1 /BaseFont /PACYYT+CMSL10 /FontDescriptor 683 0 R /FirstChar 11 /LastChar 122 /Widths 651 0 R >> endobj 338 0 obj << /Type /Font /Subtype /Type1 /BaseFont /LPENKS+CMSL12 /FontDescriptor 685 0 R /FirstChar 46 /LastChar 121 /Widths 642 0 R >> endobj 331 0 obj << /Type /Font /Subtype /Type1 /BaseFont /AECFGX+CMSLTT10 /FontDescriptor 687 0 R /FirstChar 34 /LastChar 126 /Widths 645 0 R >> endobj 366 0 obj << /Type /Font /Subtype /Type1 /BaseFont /DBFDCP+CMSY10 /FontDescriptor 689 0 R /FirstChar 0 /LastChar 24 /Widths 640 0 R >> endobj 247 0 obj << /Type /Font /Subtype /Type1 /BaseFont /GUOWTK+CMSY6 /FontDescriptor 691 0 R /FirstChar 3 /LastChar 3 /Widths 655 0 R >> endobj 433 0 obj << /Type /Font /Subtype /Type1 /BaseFont /KAIGWU+CMSY7 /FontDescriptor 693 0 R /FirstChar 0 /LastChar 2 /Widths 637 0 R >> endobj 246 0 obj << /Type /Font /Subtype /Type1 /BaseFont /FRNIHB+CMSY8 /FontDescriptor 695 0 R /FirstChar 3 /LastChar 3 /Widths 656 0 R >> endobj 350 0 obj << /Type /Font /Subtype /Type1 /BaseFont /JHSWJF+CMTI10 /FontDescriptor 697 0 R /FirstChar 44 /LastChar 122 /Widths 641 0 R >> endobj 332 0 obj << /Type /Font /Subtype /Type1 /BaseFont /BHKSWA+CMTT10 /FontDescriptor 699 0 R /FirstChar 19 /LastChar 127 /Widths 644 0 R >> endobj 250 0 obj << /Type /Pages /Count 6 /Parent 700 0 R /Kids [238 0 R 298 0 R 317 0 R 323 0 R 328 0 R 334 0 R] >> endobj 344 0 obj << /Type /Pages /Count 6 /Parent 700 0 R /Kids [341 0 R 347 0 R 353 0 R 358 0 R 363 0 R 371 0 R] >> endobj 383 0 obj << /Type /Pages /Count 6 /Parent 700 0 R /Kids [380 0 R 386 0 R 392 0 R 396 0 R 401 0 R 407 0 R] >> endobj 417 0 obj << /Type /Pages /Count 6 /Parent 700 0 R /Kids [414 0 R 420 0 R 429 0 R 435 0 R 440 0 R 447 0 R] >> endobj 456 0 obj << /Type /Pages /Count 6 /Parent 700 0 R /Kids [453 0 R 459 0 R 464 0 R 469 0 R 477 0 R 485 0 R] >> endobj 492 0 obj << /Type /Pages /Count 6 /Parent 700 0 R /Kids [489 0 R 496 0 R 501 0 R 505 0 R 509 0 R 513 0 R] >> endobj 521 0 obj << /Type /Pages /Count 6 /Parent 701 0 R /Kids [518 0 R 524 0 R 529 0 R 534 0 R 538 0 R 545 0 R] >> endobj 554 0 obj << /Type /Pages /Count 6 /Parent 701 0 R /Kids [551 0 R 562 0 R 571 0 R 578 0 R 584 0 R 590 0 R] >> endobj 606 0 obj << /Type /Pages /Count 6 /Parent 701 0 R /Kids [603 0 R 610 0 R 614 0 R 618 0 R 623 0 R 631 0 R] >> endobj 700 0 obj << /Type /Pages /Count 36 /Parent 702 0 R /Kids [250 0 R 344 0 R 383 0 R 417 0 R 456 0 R 492 0 R] >> endobj 701 0 obj << /Type /Pages /Count 18 /Parent 702 0 R /Kids [521 0 R 554 0 R 606 0 R] >> endobj 702 0 obj << /Type /Pages /Count 54 /Kids [700 0 R 701 0 R] >> endobj 703 0 obj << /Type /Outlines /First 7 0 R /Last 235 0 R /Count 11 >> endobj 235 0 obj << /Title 236 0 R /A 233 0 R /Parent 703 0 R /Prev 231 0 R >> endobj 231 0 obj << /Title 232 0 R /A 229 0 R /Parent 703 0 R /Prev 227 0 R /Next 235 0 R >> endobj 227 0 obj << /Title 228 0 R /A 225 0 R /Parent 703 0 R /Prev 191 0 R /Next 231 0 R >> endobj 223 0 obj << /Title 224 0 R /A 221 0 R /Parent 191 0 R /Prev 215 0 R >> endobj 219 0 obj << /Title 220 0 R /A 217 0 R /Parent 215 0 R >> endobj 215 0 obj << /Title 216 0 R /A 213 0 R /Parent 191 0 R /Prev 211 0 R /Next 223 0 R /First 219 0 R /Last 219 0 R /Count -1 >> endobj 211 0 obj << /Title 212 0 R /A 209 0 R /Parent 191 0 R /Prev 203 0 R /Next 215 0 R >> endobj 207 0 obj << /Title 208 0 R /A 205 0 R /Parent 203 0 R >> endobj 203 0 obj << /Title 204 0 R /A 201 0 R /Parent 191 0 R /Prev 199 0 R /Next 211 0 R /First 207 0 R /Last 207 0 R /Count -1 >> endobj 199 0 obj << /Title 200 0 R /A 197 0 R /Parent 191 0 R /Prev 195 0 R /Next 203 0 R >> endobj 195 0 obj << /Title 196 0 R /A 193 0 R /Parent 191 0 R /Next 199 0 R >> endobj 191 0 obj << /Title 192 0 R /A 189 0 R /Parent 703 0 R /Prev 171 0 R /Next 227 0 R /First 195 0 R /Last 223 0 R /Count -6 >> endobj 187 0 obj << /Title 188 0 R /A 185 0 R /Parent 171 0 R /Prev 183 0 R >> endobj 183 0 obj << /Title 184 0 R /A 181 0 R /Parent 171 0 R /Prev 179 0 R /Next 187 0 R >> endobj 179 0 obj << /Title 180 0 R /A 177 0 R /Parent 171 0 R /Prev 175 0 R /Next 183 0 R >> endobj 175 0 obj << /Title 176 0 R /A 173 0 R /Parent 171 0 R /Next 179 0 R >> endobj 171 0 obj << /Title 172 0 R /A 169 0 R /Parent 703 0 R /Prev 119 0 R /Next 191 0 R /First 175 0 R /Last 187 0 R /Count -4 >> endobj 167 0 obj << /Title 168 0 R /A 165 0 R /Parent 151 0 R /Prev 163 0 R >> endobj 163 0 obj << /Title 164 0 R /A 161 0 R /Parent 151 0 R /Prev 159 0 R /Next 167 0 R >> endobj 159 0 obj << /Title 160 0 R /A 157 0 R /Parent 151 0 R /Prev 155 0 R /Next 163 0 R >> endobj 155 0 obj << /Title 156 0 R /A 153 0 R /Parent 151 0 R /Next 159 0 R >> endobj 151 0 obj << /Title 152 0 R /A 149 0 R /Parent 119 0 R /Prev 143 0 R /First 155 0 R /Last 167 0 R /Count -4 >> endobj 147 0 obj << /Title 148 0 R /A 145 0 R /Parent 143 0 R >> endobj 143 0 obj << /Title 144 0 R /A 141 0 R /Parent 119 0 R /Prev 139 0 R /Next 151 0 R /First 147 0 R /Last 147 0 R /Count -1 >> endobj 139 0 obj << /Title 140 0 R /A 137 0 R /Parent 119 0 R /Prev 135 0 R /Next 143 0 R >> endobj 135 0 obj << /Title 136 0 R /A 133 0 R /Parent 119 0 R /Prev 131 0 R /Next 139 0 R >> endobj 131 0 obj << /Title 132 0 R /A 129 0 R /Parent 119 0 R /Prev 127 0 R /Next 135 0 R >> endobj 127 0 obj << /Title 128 0 R /A 125 0 R /Parent 119 0 R /Prev 123 0 R /Next 131 0 R >> endobj 123 0 obj << /Title 124 0 R /A 121 0 R /Parent 119 0 R /Next 127 0 R >> endobj 119 0 obj << /Title 120 0 R /A 117 0 R /Parent 703 0 R /Prev 79 0 R /Next 171 0 R /First 123 0 R /Last 151 0 R /Count -7 >> endobj 115 0 obj << /Title 116 0 R /A 113 0 R /Parent 79 0 R /Prev 111 0 R >> endobj 111 0 obj << /Title 112 0 R /A 109 0 R /Parent 79 0 R /Prev 107 0 R /Next 115 0 R >> endobj 107 0 obj << /Title 108 0 R /A 105 0 R /Parent 79 0 R /Prev 103 0 R /Next 111 0 R >> endobj 103 0 obj << /Title 104 0 R /A 101 0 R /Parent 79 0 R /Prev 99 0 R /Next 107 0 R >> endobj 99 0 obj << /Title 100 0 R /A 97 0 R /Parent 79 0 R /Prev 95 0 R /Next 103 0 R >> endobj 95 0 obj << /Title 96 0 R /A 93 0 R /Parent 79 0 R /Prev 91 0 R /Next 99 0 R >> endobj 91 0 obj << /Title 92 0 R /A 89 0 R /Parent 79 0 R /Prev 87 0 R /Next 95 0 R >> endobj 87 0 obj << /Title 88 0 R /A 85 0 R /Parent 79 0 R /Prev 83 0 R /Next 91 0 R >> endobj 83 0 obj << /Title 84 0 R /A 81 0 R /Parent 79 0 R /Next 87 0 R >> endobj 79 0 obj << /Title 80 0 R /A 77 0 R /Parent 703 0 R /Prev 67 0 R /Next 119 0 R /First 83 0 R /Last 115 0 R /Count -9 >> endobj 75 0 obj << /Title 76 0 R /A 73 0 R /Parent 67 0 R /Prev 71 0 R >> endobj 71 0 obj << /Title 72 0 R /A 69 0 R /Parent 67 0 R /Next 75 0 R >> endobj 67 0 obj << /Title 68 0 R /A 65 0 R /Parent 703 0 R /Prev 43 0 R /Next 79 0 R /First 71 0 R /Last 75 0 R /Count -2 >> endobj 63 0 obj << /Title 64 0 R /A 61 0 R /Parent 43 0 R /Prev 59 0 R >> endobj 59 0 obj << /Title 60 0 R /A 57 0 R /Parent 43 0 R /Prev 55 0 R /Next 63 0 R >> endobj 55 0 obj << /Title 56 0 R /A 53 0 R /Parent 43 0 R /Prev 51 0 R /Next 59 0 R >> endobj 51 0 obj << /Title 52 0 R /A 49 0 R /Parent 43 0 R /Prev 47 0 R /Next 55 0 R >> endobj 47 0 obj << /Title 48 0 R /A 45 0 R /Parent 43 0 R /Next 51 0 R >> endobj 43 0 obj << /Title 44 0 R /A 41 0 R /Parent 703 0 R /Prev 23 0 R /Next 67 0 R /First 47 0 R /Last 63 0 R /Count -5 >> endobj 39 0 obj << /Title 40 0 R /A 37 0 R /Parent 23 0 R /Prev 35 0 R >> endobj 35 0 obj << /Title 36 0 R /A 33 0 R /Parent 23 0 R /Prev 31 0 R /Next 39 0 R >> endobj 31 0 obj << /Title 32 0 R /A 29 0 R /Parent 23 0 R /Prev 27 0 R /Next 35 0 R >> endobj 27 0 obj << /Title 28 0 R /A 25 0 R /Parent 23 0 R /Next 31 0 R >> endobj 23 0 obj << /Title 24 0 R /A 21 0 R /Parent 703 0 R /Prev 7 0 R /Next 43 0 R /First 27 0 R /Last 39 0 R /Count -4 >> endobj 19 0 obj << /Title 20 0 R /A 17 0 R /Parent 7 0 R /Prev 15 0 R >> endobj 15 0 obj << /Title 16 0 R /A 13 0 R /Parent 7 0 R /Prev 11 0 R /Next 19 0 R >> endobj 11 0 obj << /Title 12 0 R /A 9 0 R /Parent 7 0 R /Next 15 0 R >> endobj 7 0 obj << /Title 8 0 R /A 5 0 R /Parent 703 0 R /Next 23 0 R /First 11 0 R /Last 19 0 R /Count -3 >> endobj 704 0 obj << /Names [(Doc-Start) 242 0 R (appendix.A) 234 0 R (cite.Besag\040and\040Clifford\0401991) 443 0 R (cite.Cheng2005) 565 0 R (cite.Clayton) 351 0 R (cite.Epstein\040and\040Satten\0402003) 482 0 R] /Limits [(Doc-Start) (cite.Epstein\040and\040Satten\0402003)] >> endobj 705 0 obj << /Names [(cite.Harrell) 410 0 R (cite.Lake\040et\040al.\0402003) 450 0 R (cite.LinZeng) 608 0 R (cite.Mantel) 576 0 R (cite.McCullaghNelder) 527 0 R (cite.Schaid\0402005) 376 0 R] /Limits [(cite.Harrell) (cite.Schaid\0402005)] >> endobj 706 0 obj << /Names [(cite.Schaid\040et\040al.\0402002) 377 0 R (cite.Stram\040et\040al.\0402003) 481 0 R (cite.XieStram) 607 0 R (cite.Yu) 575 0 R (cite.Zaykin) 378 0 R (equation.1) 626 0 R] /Limits [(cite.Schaid\040et\040al.\0402002) (equation.1)] >> endobj 707 0 obj << /Names [(equation.2) 628 0 R (equation.3) 629 0 R (figure.1) 418 0 R (figure.2) 549 0 R (figure.3) 588 0 R (page.1) 241 0 R] /Limits [(equation.2) (page.1)] >> endobj 708 0 obj << /Names [(page.10) 360 0 R (page.11) 365 0 R (page.12) 373 0 R (page.13) 382 0 R (page.14) 388 0 R (page.15) 394 0 R] /Limits [(page.10) (page.15)] >> endobj 709 0 obj << /Names [(page.16) 398 0 R (page.17) 403 0 R (page.18) 409 0 R (page.19) 416 0 R (page.2) 300 0 R (page.20) 422 0 R] /Limits [(page.16) (page.20)] >> endobj 710 0 obj << /Names [(page.21) 431 0 R (page.22) 437 0 R (page.23) 442 0 R (page.24) 449 0 R (page.25) 455 0 R (page.26) 461 0 R] /Limits [(page.21) (page.26)] >> endobj 711 0 obj << /Names [(page.27) 466 0 R (page.28) 471 0 R (page.29) 479 0 R (page.3) 319 0 R (page.30) 487 0 R (page.31) 491 0 R] /Limits [(page.27) (page.31)] >> endobj 712 0 obj << /Names [(page.32) 498 0 R (page.33) 503 0 R (page.34) 507 0 R (page.35) 511 0 R (page.36) 515 0 R (page.37) 520 0 R] /Limits [(page.32) (page.37)] >> endobj 713 0 obj << /Names [(page.38) 526 0 R (page.39) 531 0 R (page.4) 325 0 R (page.40) 536 0 R (page.41) 540 0 R (page.42) 547 0 R] /Limits [(page.38) (page.42)] >> endobj 714 0 obj << /Names [(page.43) 553 0 R (page.44) 564 0 R (page.45) 573 0 R (page.46) 580 0 R (page.47) 586 0 R (page.48) 592 0 R] /Limits [(page.43) (page.48)] >> endobj 715 0 obj << /Names [(page.49) 605 0 R (page.5) 330 0 R (page.50) 612 0 R (page.51) 616 0 R (page.52) 620 0 R (page.53) 625 0 R] /Limits [(page.49) (page.53)] >> endobj 716 0 obj << /Names [(page.54) 633 0 R (page.6) 336 0 R (page.7) 343 0 R (page.8) 349 0 R (page.9) 355 0 R (section*.1) 301 0 R] /Limits [(page.54) (section*.1)] >> endobj 717 0 obj << /Names [(section*.10) 516 0 R (section*.11) 532 0 R (section*.12) 541 0 R (section*.13) 548 0 R (section*.14) 574 0 R (section*.15) 587 0 R] /Limits [(section*.10) (section*.15)] >> endobj 718 0 obj << /Names [(section*.16) 634 0 R (section*.2) 356 0 R (section*.3) 361 0 R (section*.4) 374 0 R (section*.5) 399 0 R (section*.6) 462 0 R] /Limits [(section*.16) (section*.6)] >> endobj 719 0 obj << /Names [(section*.7) 472 0 R (section*.8) 480 0 R (section*.9) 499 0 R (section.1) 6 0 R (section.10) 230 0 R (section.2) 22 0 R] /Limits [(section*.7) (section.2)] >> endobj 720 0 obj << /Names [(section.3) 42 0 R (section.4) 66 0 R (section.5) 78 0 R (section.6) 118 0 R (section.7) 170 0 R (section.8) 190 0 R] /Limits [(section.3) (section.8)] >> endobj 721 0 obj << /Names [(section.9) 226 0 R (subsection.1.1) 10 0 R (subsection.1.2) 14 0 R (subsection.1.3) 18 0 R (subsection.2.1) 26 0 R (subsection.2.2) 30 0 R] /Limits [(section.9) (subsection.2.2)] >> endobj 722 0 obj << /Names [(subsection.2.3) 34 0 R (subsection.2.4) 38 0 R (subsection.3.1) 46 0 R (subsection.3.2) 50 0 R (subsection.3.3) 54 0 R (subsection.3.4) 58 0 R] /Limits [(subsection.2.3) (subsection.3.4)] >> endobj 723 0 obj << /Names [(subsection.3.5) 62 0 R (subsection.4.1) 70 0 R (subsection.4.2) 74 0 R (subsection.5.1) 82 0 R (subsection.5.2) 86 0 R (subsection.5.3) 90 0 R] /Limits [(subsection.3.5) (subsection.5.3)] >> endobj 724 0 obj << /Names [(subsection.5.4) 94 0 R (subsection.5.5) 98 0 R (subsection.5.6) 102 0 R (subsection.5.7) 106 0 R (subsection.5.8) 110 0 R (subsection.5.9) 114 0 R] /Limits [(subsection.5.4) (subsection.5.9)] >> endobj 725 0 obj << /Names [(subsection.6.1) 122 0 R (subsection.6.2) 126 0 R (subsection.6.3) 130 0 R (subsection.6.4) 134 0 R (subsection.6.5) 138 0 R (subsection.6.6) 142 0 R] /Limits [(subsection.6.1) (subsection.6.6)] >> endobj 726 0 obj << /Names [(subsection.6.7) 150 0 R (subsection.7.1) 174 0 R (subsection.7.2) 178 0 R (subsection.7.3) 182 0 R (subsection.7.4) 186 0 R (subsection.8.1) 194 0 R] /Limits [(subsection.6.7) (subsection.8.1)] >> endobj 727 0 obj << /Names [(subsection.8.2) 198 0 R (subsection.8.3) 202 0 R (subsection.8.4) 210 0 R (subsection.8.5) 214 0 R (subsection.8.6) 222 0 R (subsubsection.6.6.1) 146 0 R] /Limits [(subsection.8.2) (subsubsection.6.6.1)] >> endobj 728 0 obj << /Names [(subsubsection.6.7.1) 154 0 R (subsubsection.6.7.2) 158 0 R (subsubsection.6.7.3) 162 0 R (subsubsection.6.7.4) 166 0 R (subsubsection.8.3.1) 206 0 R (subsubsection.8.5.1) 218 0 R] /Limits [(subsubsection.6.7.1) (subsubsection.8.5.1)] >> endobj 729 0 obj << /Kids [704 0 R 705 0 R 706 0 R 707 0 R 708 0 R 709 0 R] /Limits [(Doc-Start) (page.20)] >> endobj 730 0 obj << /Kids [710 0 R 711 0 R 712 0 R 713 0 R 714 0 R 715 0 R] /Limits [(page.21) (page.53)] >> endobj 731 0 obj << /Kids [716 0 R 717 0 R 718 0 R 719 0 R 720 0 R 721 0 R] /Limits [(page.54) (subsection.2.2)] >> endobj 732 0 obj << /Kids [722 0 R 723 0 R 724 0 R 725 0 R 726 0 R 727 0 R] /Limits [(subsection.2.3) (subsubsection.6.6.1)] >> endobj 733 0 obj << /Kids [728 0 R] /Limits [(subsubsection.6.7.1) (subsubsection.8.5.1)] >> endobj 734 0 obj << /Kids [729 0 R 730 0 R 731 0 R 732 0 R 733 0 R] /Limits [(Doc-Start) (subsubsection.8.5.1)] >> endobj 735 0 obj << /Dests 734 0 R >> endobj 736 0 obj << /Type /Catalog /Pages 702 0 R /Outlines 703 0 R /Names 735 0 R /PageMode/UseOutlines /OpenAction 237 0 R >> endobj 737 0 obj << /Author()/Title()/Subject()/Creator(LaTeX with hyperref package)/Producer(pdfTeX-1.40.3)/Keywords() /CreationDate (D:20160405151715-05'00') /ModDate (D:20160405151715-05'00') /Trapped /False /PTEX.Fullbanner (This is pdfTeX using libpoppler, Version 3.141592-1.40.3-2.2 (Web2C 7.5.6) kpathsea version 3.5.6) >> endobj xref 0 738 0000000001 65535 f 0000000002 00000 f 0000000003 00000 f 0000000004 00000 f 0000000000 00000 f 0000000015 00000 n 0000024407 00000 n 0000350392 00000 n 0000000060 00000 n 0000000090 00000 n 0000024458 00000 n 0000350320 00000 n 0000000140 00000 n 0000000166 00000 n 0000024514 00000 n 0000350234 00000 n 0000000217 00000 n 0000000269 00000 n 0000024570 00000 n 0000350161 00000 n 0000000320 00000 n 0000000347 00000 n 0000026822 00000 n 0000350037 00000 n 0000000393 00000 n 0000000422 00000 n 0000026877 00000 n 0000349963 00000 n 0000000473 00000 n 0000000504 00000 n 0000030919 00000 n 0000349876 00000 n 0000000555 00000 n 0000000600 00000 n 0000030975 00000 n 0000349789 00000 n 0000000651 00000 n 0000000703 00000 n 0000038034 00000 n 0000349715 00000 n 0000000754 00000 n 0000000809 00000 n 0000038086 00000 n 0000349590 00000 n 0000000855 00000 n 0000000914 00000 n 0000038142 00000 n 0000349516 00000 n 0000000965 00000 n 0000000993 00000 n 0000038198 00000 n 0000349429 00000 n 0000001044 00000 n 0000001077 00000 n 0000040407 00000 n 0000349342 00000 n 0000001128 00000 n 0000001161 00000 n 0000043692 00000 n 0000349255 00000 n 0000001212 00000 n 0000001263 00000 n 0000047621 00000 n 0000349181 00000 n 0000001314 00000 n 0000001371 00000 n 0000051670 00000 n 0000349056 00000 n 0000001417 00000 n 0000001491 00000 n 0000051725 00000 n 0000348982 00000 n 0000001542 00000 n 0000001596 00000 n 0000056238 00000 n 0000348908 00000 n 0000001647 00000 n 0000001703 00000 n 0000059451 00000 n 0000348781 00000 n 0000001749 00000 n 0000001803 00000 n 0000059507 00000 n 0000348707 00000 n 0000001854 00000 n 0000001900 00000 n 0000062373 00000 n 0000348620 00000 n 0000001951 00000 n 0000001991 00000 n 0000064264 00000 n 0000348533 00000 n 0000002042 00000 n 0000002083 00000 n 0000067110 00000 n 0000348446 00000 n 0000002134 00000 n 0000002194 00000 n 0000068861 00000 n 0000348357 00000 n 0000002245 00000 n 0000002291 00000 n 0000077976 00000 n 0000348266 00000 n 0000002343 00000 n 0000002387 00000 n 0000078029 00000 n 0000348174 00000 n 0000002439 00000 n 0000002511 00000 n 0000081002 00000 n 0000348082 00000 n 0000002563 00000 n 0000002610 00000 n 0000081059 00000 n 0000348004 00000 n 0000002662 00000 n 0000002702 00000 n 0000088963 00000 n 0000347873 00000 n 0000002749 00000 n 0000002798 00000 n 0000089020 00000 n 0000347794 00000 n 0000002850 00000 n 0000002907 00000 n 0000089077 00000 n 0000347701 00000 n 0000002959 00000 n 0000003018 00000 n 0000092058 00000 n 0000347608 00000 n 0000003070 00000 n 0000003106 00000 n 0000092115 00000 n 0000347515 00000 n 0000003158 00000 n 0000003214 00000 n 0000097550 00000 n 0000347422 00000 n 0000003266 00000 n 0000003328 00000 n 0000099893 00000 n 0000347290 00000 n 0000003380 00000 n 0000003432 00000 n 0000103937 00000 n 0000347225 00000 n 0000003489 00000 n 0000003559 00000 n 0000103994 00000 n 0000347107 00000 n 0000003611 00000 n 0000003650 00000 n 0000107124 00000 n 0000347028 00000 n 0000003707 00000 n 0000003767 00000 n 0000109344 00000 n 0000346935 00000 n 0000003824 00000 n 0000003881 00000 n 0000112647 00000 n 0000346842 00000 n 0000003938 00000 n 0000004005 00000 n 0000119259 00000 n 0000346763 00000 n 0000004062 00000 n 0000004117 00000 n 0000122596 00000 n 0000346631 00000 n 0000004164 00000 n 0000004214 00000 n 0000122653 00000 n 0000346552 00000 n 0000004266 00000 n 0000004299 00000 n 0000122710 00000 n 0000346459 00000 n 0000004351 00000 n 0000004380 00000 n 0000122767 00000 n 0000346366 00000 n 0000004432 00000 n 0000004456 00000 n 0000125675 00000 n 0000346287 00000 n 0000004508 00000 n 0000004554 00000 n 0000132046 00000 n 0000346155 00000 n 0000004601 00000 n 0000004642 00000 n 0000132103 00000 n 0000346076 00000 n 0000004694 00000 n 0000004764 00000 n 0000132217 00000 n 0000345983 00000 n 0000004816 00000 n 0000004882 00000 n 0000140355 00000 n 0000345851 00000 n 0000004934 00000 n 0000005002 00000 n 0000140469 00000 n 0000345786 00000 n 0000005059 00000 n 0000005114 00000 n 0000149110 00000 n 0000345693 00000 n 0000005166 00000 n 0000005245 00000 n 0000153512 00000 n 0000345561 00000 n 0000005297 00000 n 0000005359 00000 n 0000158148 00000 n 0000345496 00000 n 0000005416 00000 n 0000005460 00000 n 0000167589 00000 n 0000345417 00000 n 0000005512 00000 n 0000005580 00000 n 0000171425 00000 n 0000345324 00000 n 0000005627 00000 n 0000005667 00000 n 0000171478 00000 n 0000345231 00000 n 0000005715 00000 n 0000005751 00000 n 0000176103 00000 n 0000345152 00000 n 0000005799 00000 n 0000005887 00000 n 0000006632 00000 n 0000006850 00000 n 0000005939 00000 n 0000006744 00000 n 0000006797 00000 n 0000341027 00000 n 0000342031 00000 n 0000341888 00000 n 0000343313 00000 n 0000343033 00000 n 0000342315 00000 n 0000341745 00000 n 0000343741 00000 n 0000009593 00000 n 0000009743 00000 n 0000009899 00000 n 0000010054 00000 n 0000010210 00000 n 0000010361 00000 n 0000010517 00000 n 0000010673 00000 n 0000010828 00000 n 0000010984 00000 n 0000011135 00000 n 0000011291 00000 n 0000011446 00000 n 0000011602 00000 n 0000011758 00000 n 0000011913 00000 n 0000012064 00000 n 0000012219 00000 n 0000012374 00000 n 0000012525 00000 n 0000012681 00000 n 0000012837 00000 n 0000012993 00000 n 0000013148 00000 n 0000013303 00000 n 0000013459 00000 n 0000013613 00000 n 0000013769 00000 n 0000013923 00000 n 0000014074 00000 n 0000014230 00000 n 0000014386 00000 n 0000014542 00000 n 0000014698 00000 n 0000014854 00000 n 0000015010 00000 n 0000015172 00000 n 0000015328 00000 n 0000015489 00000 n 0000015650 00000 n 0000015811 00000 n 0000017637 00000 n 0000017787 00000 n 0000017943 00000 n 0000018099 00000 n 0000018255 00000 n 0000016081 00000 n 0000009141 00000 n 0000006999 00000 n 0000015971 00000 n 0000016024 00000 n 0000340883 00000 n 0000342457 00000 n 0000018411 00000 n 0000018561 00000 n 0000018717 00000 n 0000018872 00000 n 0000019028 00000 n 0000019190 00000 n 0000019346 00000 n 0000019501 00000 n 0000019663 00000 n 0000019819 00000 n 0000019969 00000 n 0000020121 00000 n 0000020326 00000 n 0000017377 00000 n 0000016191 00000 n 0000020273 00000 n 0000024051 00000 n 0000024203 00000 n 0000024626 00000 n 0000023911 00000 n 0000020423 00000 n 0000024354 00000 n 0000187646 00000 n 0000026933 00000 n 0000026657 00000 n 0000024736 00000 n 0000026769 00000 n 0000342745 00000 n 0000343597 00000 n 0000031031 00000 n 0000030754 00000 n 0000027056 00000 n 0000030866 00000 n 0000341314 00000 n 0000342601 00000 n 0000037666 00000 n 0000033784 00000 n 0000033619 00000 n 0000031206 00000 n 0000033731 00000 n 0000343858 00000 n 0000037827 00000 n 0000038254 00000 n 0000037526 00000 n 0000033894 00000 n 0000037981 00000 n 0000343453 00000 n 0000182937 00000 n 0000040463 00000 n 0000040185 00000 n 0000038416 00000 n 0000040297 00000 n 0000040350 00000 n 0000043748 00000 n 0000043474 00000 n 0000040586 00000 n 0000043586 00000 n 0000043639 00000 n 0000047677 00000 n 0000047456 00000 n 0000043910 00000 n 0000047568 00000 n 0000342891 00000 n 0000051071 00000 n 0000051231 00000 n 0000051406 00000 n 0000051781 00000 n 0000050923 00000 n 0000047852 00000 n 0000051560 00000 n 0000051613 00000 n 0000342174 00000 n 0000182993 00000 n 0000183050 00000 n 0000183107 00000 n 0000053939 00000 n 0000053774 00000 n 0000051942 00000 n 0000053886 00000 n 0000343975 00000 n 0000056028 00000 n 0000056294 00000 n 0000055896 00000 n 0000054074 00000 n 0000056185 00000 n 0000059066 00000 n 0000059241 00000 n 0000059563 00000 n 0000058926 00000 n 0000056443 00000 n 0000059398 00000 n 0000062429 00000 n 0000062151 00000 n 0000059699 00000 n 0000062263 00000 n 0000062316 00000 n 0000064320 00000 n 0000064099 00000 n 0000062590 00000 n 0000064211 00000 n 0000066903 00000 n 0000068506 00000 n 0000067166 00000 n 0000066771 00000 n 0000064443 00000 n 0000067057 00000 n 0000183164 00000 n 0000068657 00000 n 0000069849 00000 n 0000068913 00000 n 0000068366 00000 n 0000067289 00000 n 0000068808 00000 n 0000344092 00000 n 0000074121 00000 n 0000074183 00000 n 0000069737 00000 n 0000069010 00000 n 0000074068 00000 n 0000070846 00000 n 0000070990 00000 n 0000071090 00000 n 0000071127 00000 n 0000071370 00000 n 0000078086 00000 n 0000077811 00000 n 0000074295 00000 n 0000077923 00000 n 0000341602 00000 n 0000343173 00000 n 0000081116 00000 n 0000080837 00000 n 0000078286 00000 n 0000080949 00000 n 0000084276 00000 n 0000084509 00000 n 0000084144 00000 n 0000081239 00000 n 0000084456 00000 n 0000183220 00000 n 0000088585 00000 n 0000088758 00000 n 0000089134 00000 n 0000088445 00000 n 0000084631 00000 n 0000088910 00000 n 0000183277 00000 n 0000091843 00000 n 0000092172 00000 n 0000091711 00000 n 0000089270 00000 n 0000092005 00000 n 0000344209 00000 n 0000097337 00000 n 0000094924 00000 n 0000094702 00000 n 0000092308 00000 n 0000094814 00000 n 0000094867 00000 n 0000097607 00000 n 0000097205 00000 n 0000095034 00000 n 0000097497 00000 n 0000099626 00000 n 0000099950 00000 n 0000099494 00000 n 0000097743 00000 n 0000099783 00000 n 0000099836 00000 n 0000103300 00000 n 0000103474 00000 n 0000103648 00000 n 0000104051 00000 n 0000103152 00000 n 0000100073 00000 n 0000103828 00000 n 0000103881 00000 n 0000183334 00000 n 0000183391 00000 n 0000106914 00000 n 0000107177 00000 n 0000106782 00000 n 0000104174 00000 n 0000107071 00000 n 0000109401 00000 n 0000109179 00000 n 0000107326 00000 n 0000109291 00000 n 0000344326 00000 n 0000112225 00000 n 0000112381 00000 n 0000112704 00000 n 0000112085 00000 n 0000109524 00000 n 0000112537 00000 n 0000112590 00000 n 0000114980 00000 n 0000114815 00000 n 0000112827 00000 n 0000114927 00000 n 0000116754 00000 n 0000116589 00000 n 0000115090 00000 n 0000116701 00000 n 0000119316 00000 n 0000119094 00000 n 0000116864 00000 n 0000119206 00000 n 0000122824 00000 n 0000122374 00000 n 0000119452 00000 n 0000122486 00000 n 0000122539 00000 n 0000125732 00000 n 0000125510 00000 n 0000122947 00000 n 0000125622 00000 n 0000344443 00000 n 0000128309 00000 n 0000128524 00000 n 0000128177 00000 n 0000125855 00000 n 0000128471 00000 n 0000183448 00000 n 0000132273 00000 n 0000131881 00000 n 0000128672 00000 n 0000131993 00000 n 0000132160 00000 n 0000134182 00000 n 0000134017 00000 n 0000132434 00000 n 0000134129 00000 n 0000136260 00000 n 0000136038 00000 n 0000134279 00000 n 0000136150 00000 n 0000136203 00000 n 0000140152 00000 n 0000141271 00000 n 0000140526 00000 n 0000140020 00000 n 0000136409 00000 n 0000140302 00000 n 0000140412 00000 n 0000145493 00000 n 0000145553 00000 n 0000141159 00000 n 0000140726 00000 n 0000145440 00000 n 0000344560 00000 n 0000142218 00000 n 0000142362 00000 n 0000142462 00000 n 0000142499 00000 n 0000142742 00000 n 0000148900 00000 n 0000149163 00000 n 0000148768 00000 n 0000145665 00000 n 0000149057 00000 n 0000183505 00000 n 0000152789 00000 n 0000152946 00000 n 0000153094 00000 n 0000153246 00000 n 0000153569 00000 n 0000152633 00000 n 0000149325 00000 n 0000153403 00000 n 0000153456 00000 n 0000183562 00000 n 0000183619 00000 n 0000155026 00000 n 0000154861 00000 n 0000153756 00000 n 0000154973 00000 n 0000157888 00000 n 0000158945 00000 n 0000158205 00000 n 0000157756 00000 n 0000155110 00000 n 0000158038 00000 n 0000158091 00000 n 0000163603 00000 n 0000163664 00000 n 0000158833 00000 n 0000158353 00000 n 0000163550 00000 n 0000160243 00000 n 0000160387 00000 n 0000160472 00000 n 0000160572 00000 n 0000160609 00000 n 0000160852 00000 n 0000167073 00000 n 0000167227 00000 n 0000167381 00000 n 0000167642 00000 n 0000166925 00000 n 0000163776 00000 n 0000167536 00000 n 0000344677 00000 n 0000183676 00000 n 0000183733 00000 n 0000169400 00000 n 0000169235 00000 n 0000167804 00000 n 0000169347 00000 n 0000171535 00000 n 0000171260 00000 n 0000169497 00000 n 0000171372 00000 n 0000176160 00000 n 0000175938 00000 n 0000171632 00000 n 0000176050 00000 n 0000341458 00000 n 0000179778 00000 n 0000179428 00000 n 0000176333 00000 n 0000179540 00000 n 0000179593 00000 n 0000341171 00000 n 0000179654 00000 n 0000179716 00000 n 0000183790 00000 n 0000182715 00000 n 0000179925 00000 n 0000182827 00000 n 0000182880 00000 n 0000183900 00000 n 0000184326 00000 n 0000184351 00000 n 0000184388 00000 n 0000184667 00000 n 0000184814 00000 n 0000184974 00000 n 0000185449 00000 n 0000185869 00000 n 0000186390 00000 n 0000186845 00000 n 0000187236 00000 n 0000187416 00000 n 0000187894 00000 n 0000188118 00000 n 0000188199 00000 n 0000188249 00000 n 0000188874 00000 n 0000189513 00000 n 0000190136 00000 n 0000190610 00000 n 0000190635 00000 n 0000190660 00000 n 0000191090 00000 n 0000191597 00000 n 0000192244 00000 n 0000204548 00000 n 0000204948 00000 n 0000216616 00000 n 0000217030 00000 n 0000218996 00000 n 0000219262 00000 n 0000228027 00000 n 0000228337 00000 n 0000230226 00000 n 0000230446 00000 n 0000235229 00000 n 0000235476 00000 n 0000252674 00000 n 0000253224 00000 n 0000260923 00000 n 0000261240 00000 n 0000268173 00000 n 0000268483 00000 n 0000271343 00000 n 0000271615 00000 n 0000275523 00000 n 0000275773 00000 n 0000289552 00000 n 0000290009 00000 n 0000295919 00000 n 0000296189 00000 n 0000309296 00000 n 0000309813 00000 n 0000311717 00000 n 0000311980 00000 n 0000313355 00000 n 0000313586 00000 n 0000314979 00000 n 0000315213 00000 n 0000316564 00000 n 0000316796 00000 n 0000325961 00000 n 0000326261 00000 n 0000340346 00000 n 0000344794 00000 n 0000344912 00000 n 0000345006 00000 n 0000345076 00000 n 0000350501 00000 n 0000350780 00000 n 0000351029 00000 n 0000351289 00000 n 0000351469 00000 n 0000351639 00000 n 0000351808 00000 n 0000351978 00000 n 0000352147 00000 n 0000352317 00000 n 0000352486 00000 n 0000352656 00000 n 0000352825 00000 n 0000352997 00000 n 0000353199 00000 n 0000353395 00000 n 0000353583 00000 n 0000353766 00000 n 0000353977 00000 n 0000354197 00000 n 0000354417 00000 n 0000354641 00000 n 0000354867 00000 n 0000355093 00000 n 0000355329 00000 n 0000355595 00000 n 0000355706 00000 n 0000355815 00000 n 0000355931 00000 n 0000356059 00000 n 0000356152 00000 n 0000356267 00000 n 0000356305 00000 n 0000356433 00000 n trailer << /Size 738 /Root 736 0 R /Info 737 0 R /ID [ ] >> startxref 356764 %%EOF haplo.stats/data/0000755000176200001440000000000014673025507013434 5ustar liggesusershaplo.stats/data/seqhap.pos.tab.gz0000644000176200001440000000013514673025507016623 0ustar liggesusers- 0 Cs5(8T-thz v6 jRTh :Ew=J/Z9 s9uhaplo.stats/data/hapPower.demo.tab.gz0000644000176200001440000000035514673025507017256 0ustar liggesusers]Kj1 DcBB=n{b\%W PC-8>?~@'T8Q@MjV@ai]Ӹ{U3ӯ/Ƿ_~_33?ϔw@sx<_;y_տ\^s~M;_ϯ~՟oP@gAi+ooqO׀æ/h>%|? JJޕje-Yz$Ĺ*#]y\WRW'ӛ!v!C^j+1囕$Iwוhͦ~1-?Jj y$!*l-^OT օ贌@ IVaPJ<Ȕ kݲցnI1}*i! Tc}ؼ$,7 W#OP L>kKOBQlS#jtBMR؊GwTc)AO:yKJ^wLw|n\_if_ORh1dȂ^]wޮ) yd^ݢe-gW(X 6cW\KE*1m_ " ½T${cO]ߓk9_D5Тt@8m:0'P~6x_1̈hEd%1oh}9 F[v} !{+&|$w$ĒƘÉRTc ;!l$Г0.]!–^Hvj/l'#=b =˽I#LcHB"G8VLno JNahzc&k՟r#* P&̻reI2dt! Q0c`1@փ!15< 9zs}p_zB0䔅K}:{ݐUȄ ړ NmvtywpMWټ\$aIP=?uESExxF ;/4@+$!ښv%lJNTC%bLF5d}Đcʳ1mb+hd`"$`sߪ-!Jx LCCP"e~?pQY#x*vo,0xi'9,-芁WOcclfp֎N8HKr*VM,[E9q#"ÜGB*d4Ry@uk"AeP/- !T @uZhfCPb* @<mgF@YgMa3FQlO6 ~VIgmMͺy=E"BͲШfjq5#1dRc@-/|ŏ F֞-rǑ&T0>u"O}5JN=ְJZ_yO\Kp^֌XE+V216e4M-gZ_N"p@C ɽ aFȕZE'p=] "K4CCjΔH WoYEW^\Yذ[ ޢuTb'F{/RMl)hޫ^}+z88f6knlI16g=;GK|c8G::cc# TxV[DjGx"48u*/lrfu;WY WDb8zxϟze[R0] PSE54nDWKK*5WfU!I(M a |ڪdX2wsyl˫^Wj)v@{d4آGTao%9IVm>ST\|!G-!N)͕X^Re2szV H|caD2EXQb#i9*i^[$ 5pL 7lJJyhHa0|]AKf諾dRn2 a d漎JfL-,x,ڍ5,5gș@"ܡUgX8,A﬊xibT,Xn/8rZSI>Xa _;zQ񙭉~!9dAJ8gqۮX)>). s`0׹] ~lB"ROBT찞MDɯ5/>A|o_YjCݱ4s<+v=8zG`ajb] ^ {v p rσx>ϵuk9ͩg f}dEq鐯9X6uFDS7ׂ6e=b2)kևڞ#'vȩe &p=n}R;;J0#! -L-bi?0@Jw4yU0T܆-q!?MF2)mP,c8JS1B#o2?uNJ慔eBe(vr뼊M[ *6Wׁ02Q-aJLz X>Z8~RklRZ*m@+ L vY-=~,K"~'kB9H^L+;hh{ fJ ]SR8IQCHㆫQϠuCh$~Ñ\uWhaplo.stats/data/seqhap.dat.tab.gz0000644000176200001440000001374414673025507016604 0ustar liggesusers]I4]<4^+TQve IOW8 OOOOTOTOOO^|?|?;>1?O<\+; 4 ) > ;-KFW6ϧaMX%tku-_tI~`5<=akP3S^ҽXj|޹eYtPëpLѾ;$iw .©|^eϔQj[B,o+"`Fܿ‰Wg!՘407痖p6Y:TiJjIO/p?/82{p8 ԙݿ)f딸!nJ Rl+Өe%',ݗ_@K˯_,m|}G菪.Bd/ͅ\O" %V!mοxS#vNg*ĵ(-[-f5;ㇼ}ɠ9<\cՋ_x͓=oԞ+~{q~bƛiHSuī="I>aQ>1]LzX 1LJչ~J=C5%߹?cZ,oN}hj?7v g?SRVٜf̿xzdOWG~u{W{Y~xD4pwosO( p#K>gͅG G.Ds Gw8Wo`/Gm]UB\B_~ y:?T'eJ?WvWS||ߟ>~ŇQj}ҶgT2@"y]՞)We~G/Ώ4O7 ;_ }~5=0s5I?/֟b L'九,+2U2 zjYy,{>u7+m<{p~e|POۋ/F\X_>oxi-acA)|U|=v9r+e xDr@ϙUdϜO,~a][AuοU7 {Mm˱㧉[As5yj?-IH{"q>h7UiY<4׋g+%*'H5>W+u;ݹ?¿'^?sm |ܣ;JaA?/#_-0hnV}2|?2'uf,?^ߙ6#I?dO|G{LC@M.|ÈqwKgۇ3'a|_98cG׿Dϥ_Ή^_D|7So1ׯ|_t>Q5xmw?6b*YnQx\#9_$z,~RW:E$jij})z s}.ٽ|a'_ެoO9A'D_L}X6/> J4X?$kR%a+`ڐ|3߬O kxϺj=2^wA_fy*_o򃯿=rOVת~EbvA~xI뿚ڳBڽ?7~k} |_FG}~_ik湁Wnj"79G\ڱOܼ듗UW߉ʰ(kxث_!XH>8gvMFo:]o$?Cg+>3kGЃW|R)_7xȢrۏR|5R79^+gq2k|Ӛ?)NO"x(l}@1E'"/j·{^ԟ-?TaׁgGb}8{Egg~POg_W_sU-$f7x33{G2WĿ~ /ۊC4>8/ߞ8_XG?:>O>q_Ns(ʎX?[s>tmߍo _1wQY_ȏa>~3ϟ?nau{l'}Z>K'5No2D4{~xسϣO>ڇgg*_Ph<,I+vۇI&oK| ?wK}Nђmx̿LYd}ܞyϞg 2^|3ǘ>F:Ϙ˛_!5 9S*S'Wzه|Gbȿ\%+}؇l~<ퟏ EJw?d?אָr?g?(9^xb}Co&m·w'A񚗟Ϳ2 yQW)S?1( |W]aR|P%\xyA׃!-CE#ÊT8* n^~ǿ\s>hO(Bod=g?hş-reK~ƛA㳕r>S} "QU~6c5~Ԟ692 >R}@b{8a $x 4MmW2 Hv|ׅy3{n7Ͽ{ۧ93Kb>&mjՍ|p's}xXb ?o4+{ .W:P>Oo@#ǎAΏ@Hg_<WW- Ճ7EWX9W姁Gv< W-ׯx'x߰G||o l]C [ϡ|6Ww< WpJz ?/ |Az~r?@\`EQ'-~|o4ʿGI*G4'>~%Gl0s|Cb-DIh+G,& Tz@4<$?I+?hKg=|QCk2-i+6J+Z'5ޓOr4~rx=V>jև[ooY|GWGt?s)'XX*_xTΏpΈ _o_|]3yϿ*g=_.}H}}eϺu _i+Wc')|ž?ֶ7V^O^<ޚX?/KloO㳑z~idm͉GskWH|;ϗGX3a / rw_IK1[|?ץOo)9WMᅭnߕxJzړva;)V~?kcշ듧>w?uv?#y ;|ۓ/ΏaI+<[_Li'pxY7b}1(³xt~$NNjƟw~6KF;/<mϷJ?e3ނ~h<¤Ws@|? sZ§ϟfK+ KgA=ԟwC]}w9_( H_ml8d:7 |*_#'o$m~ ?k|joy~x_c_~Kz6υ{&/(o`Qsڧ)}^~(~嶑V:}o~?!̋:?BxO^Z}YeoVKe]V*Pkr>g^gǺ?hG ߶/4U| WW͹m|~w*_f // for NULL #include /* How was this made? JPS 4/2018 Within the top level of the package source: tools::package_native_routine_registration_skeleton(".") ## or if in different directory, give package source dir path Then copy all text results to packagename_init.c Then add to NAMESPACE file: useDynLib(packagename, .registration=TRUE) */ /* FIXME: Check these declarations against the C/Fortran source code. */ /* .C calls */ extern void checkIntMax(void *); extern void groupsum(void *, void *, void *, void *, void *); extern void haplo_em_pin(void *, void *, void *, void *, void *, void *, void *, void *, void *, void *, void *, void *, void *, void *, void *, void *, void *, void *, void *, void *, void *); extern void haplo_em_ret_info(void *, void *, void *, void *, void *, void *, void *, void *, void *, void *); extern void haplo_free_memory(void); extern void louis_info(void *, void *, void *, void *, void *, void *, void *, void *, void *, void *, void *, void *, void *, void *, void *); extern void seqhapC(void *, void *, void *, void *, void *, void *, void *, void *, void *, void *, void *, void *, void *, void *, void *, void *, void *, void *, void *, void *, void *, void *, void *, void *, void *, void *, void *, void *, void *, void *, void *); static const R_CMethodDef CEntries[] = { {"checkIntMax", (DL_FUNC) &checkIntMax, 1}, {"groupsum", (DL_FUNC) &groupsum, 5}, {"haplo_em_pin", (DL_FUNC) &haplo_em_pin, 21}, {"haplo_em_ret_info", (DL_FUNC) &haplo_em_ret_info, 10}, {"haplo_free_memory", (DL_FUNC) &haplo_free_memory, 0}, {"louis_info", (DL_FUNC) &louis_info, 15}, {"seqhapC", (DL_FUNC) &seqhapC, 31}, {NULL, NULL, 0} }; void R_init_haplo_stats(DllInfo *dll) { R_registerRoutines(dll, CEntries, NULL, NULL, NULL); R_useDynamicSymbols(dll, FALSE); } haplo.stats/src/haplo_em_pin.c0000644000176200001440000010227614673023660016116 0ustar liggesusers/* $Author: sinnwell $ */ /* $Date: 2013/01/14 19:10:42 $ *License: * *Copyright 2003 Mayo Foundation for Medical Education and Research. * *This program is free software; you can redistribute it and/or modify it under the terms of *the GNU General Public License as published by the Free Software Foundation; either *version 2 of the License, or (at your option) any later version. * *This program is distributed in the hope that it will be useful, but WITHOUT ANY *WARRANTY; without even the implied warranty of MERCHANTABILITY or *FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for *more details. * *You should have received a copy of the GNU General Public License along with this *program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, *Boston, MA 02111-1307 USA * *For other licensing arrangements, please contact Daniel J. Schaid. * *Daniel J. Schaid, Ph.D. *Division of Biostatistics *Harwick Building Room 775 *Mayo Clinic *200 First St., SW *Rochester, MN 55905 * *phone: 507-284-0639 *fax: 507-284-9542 *email: schaid@@@@mayo.edu */ #include #include #include #include #include #include #include #include #include "haplo_em_pin.h" /* Progressive insertion of loci into haplotypes with EM algorithm */ /*************** Global vars ******************************************************/ static int n_loci, *loci_used; /* used for qsort functions */ static HAP **ret_hap_list; /* stored for later return to S+ */ static HAPUNIQUE **ret_u_hap_list; static int ret_n_hap, ret_n_u_hap, ret_max_haps; /**********************************************************************************/ void haplo_em_pin( int *S_n_loci, /* number of loci */ int *n_subject, /* number of subjects */ double *weight, /* weight per subject */ int *geno_vec, /* vector of genotypes, col-major from */ /* n_subject x 2*n_loci matrix */ int *n_alleles, /* vector of number alleles per locus, */ /* length=n_loci */ int *max_haps, /* number of maximum haplotypes over all subjects */ /* - CRITICAL for memory alloc */ int *max_iter, /* max num. iters for each EM loop */ int *loci_insert_order, /* vector for order of insert of loci for */ /* progressive insertion; length = n_loci */ double *min_prior, /* trim haplo's with prior < min_prior */ double *min_posterior, /* trim subject's pair of haplos if */ /* post < min_posterior */ double *tol, /* convergence tolerance for change in lnlike in */ /* EM loop */ int *insert_batch_size, /* number of loci to insert in a batch before */ /* each EM loop; order of inserted */ /* loci determined by loci_insert_order */ int *converge, /* convergence indicator for EM */ double *S_lnlike, /* lnlike from final EM */ int *S_n_u_hap, /* number of unique haplotypes */ int *n_hap_pairs, /* total number of pairs of haplotypes over all */ /* subjects */ int *random_start, /* indicator of random posteriors should be */ /* generated at the start of each EM loop. */ /* 1 = Yes, 0 = No */ int *iseed1, /* seeds for AS183 random unif */ int *iseed2, int *iseed3, int *verbose) /* indicator if verbose pringing during run, */ /* for debugging. verbose=0 means no printing */ /* verbose=1 means lots of printing to screen */ { int i, j, k, iter, n_iter, insert_loc; int is, ie, n_batch; int n_u_hap, n_hap, n_trim, pair_id, len_hap_list, indx1, indx2; int **geno; double lnlike, lnlike_old; double *prior; HAP **hap_list; /* List of all haplotypes = array of pointers to hap structs */ HAPUNIQUE **u_hap_list; /* List of unique haplotypes */ /* convert from S vecs to C structures */ n_loci = *S_n_loci; geno = int_vec_to_mat(geno_vec, *n_subject, 2*n_loci); if(*verbose){ REprintf("geno matrix:\n"); for(i=0;i< *n_subject;i++){ for (j=0; j< (2*n_loci); j++) { REprintf("%i ",geno[i][j]); } REprintf("\n"); } } prior = (double *) R_Calloc(*max_haps, double); if(prior==NULL){ errmsg("could not alloc mem for prior"); } /* array to keep track of loci used at any point in time */ loci_used = (int *) R_Calloc(n_loci, int); if(loci_used==NULL){ errmsg("could not alloc mem for loci_used"); } /* array of pointers to haplo information */ hap_list = (HAP **) R_Calloc(*max_haps, HAP* ); if(hap_list==NULL){ errmsg("could not alloc mem for hap_list"); } /* put geno data into haplo list */ pair_id = - 1; n_hap=0; for(i=0;i< *n_subject;i++){ pair_id++; indx1 = n_hap; n_hap++; indx2 = n_hap; n_hap++; hap_list[indx1] = new_hap(i, pair_id, weight[i], 0.0, 1.0); hap_list[indx2] = new_hap(i, pair_id, weight[i], 0.0, 1.0); k=0; for (j=0; j< n_loci; j++) { (hap_list[indx1])->loci[j] = geno[i][k++]; (hap_list[indx2])->loci[j] = geno[i][k++]; } } /* set seed for random unif generator, if needed */ if(*random_start){ ranAS183_seed(*iseed1, *iseed2, *iseed3); } /* begin haplotype algorithm */ if(*verbose){ REprintf("min_posterior = %8.5f\n",*min_posterior); REprintf("min_prior = %8.5f\n",*min_prior); REprintf("loci_insert_order = "); for(i=0;iid = id; result->pair_id = pair_id; result->wt = wt; result->post = post; result->keep = 1; loc = (int *) R_Calloc(n_loci, int); if (!loc) { errmsg("could not alloc mem for new hap"); R_Free(result); } result->loci = loc; return result; } /***************************************************************************/ static void write_hap_list(HAP** so, int n_hap){ int i,j; REprintf("subID wt hapPairID hapCode keep"); for(i=0;iid, so[i]->wt, so[i]->pair_id,so[i]->code,so[i]->keep); for(j=0;jloci[j]); } REprintf(" %6.4f", so[i]->post); REprintf("\n"); } } /***********************************************************************************/ static void write_unique_hap_list(HAPUNIQUE** so, int n_hap){ int i,j; REprintf("hapCode keep"); for(i=0;icode,so[i]->keep); for(j=0;jloci[j]); } REprintf(" %6.4f", so[i]->prior); REprintf("\n"); } } /****************************************************************************/ static void write_prior(int n, double *prior){ int i; REprintf("hapCode prior\n"); for(i=0;iloci; loc2 = two->loci; for (i=0; ia2) return +1; } return 0; } /***********************************************************************************/ static int CDECL cmp_hap_code(const void *to_one, const void *to_two){ HAP *one, *two; one = * (HAP **) to_one; two = * (HAP **) to_two; if((one->code) < (two->code)) return -1; if((one->code) > (two->code)) return 1; return 0; } /***********************************************************************************/ static int CDECL cmp_subId_hapPairId(const void *to_one, const void *to_two){ /* Using this comparision function with qsort results in a sort first on subj id, then on hap pair_id */ HAP *one, *two; one = * (HAP **) to_one; two = * (HAP **) to_two; if((one->id) < (two->id)) return -1; if((one->id) > (two->id)) return 1; if( (one->pair_id) < (two->pair_id)) return -1; if( (one->pair_id) > (two->pair_id)) return 1; return 0; } /***********************************************************************************/ static void unique_haps(int n_hap, HAP **hap_list, HAPUNIQUE **u_hap_list, double *prior) { /* assumes hap_list is sorted by either haplotype (cmp_hap) or haplotype code (cmp_trim) */ HAP **hs, **he, **h; hs = hap_list; he = hap_list + n_hap; while (hs < he) { h = hs; do { h++; } while ( (hcode == (*h)->code) ); *u_hap_list++ = copy_hap_unique(*hs, prior); hs = h; } } /***********************************************************************************/ static HAPUNIQUE* copy_hap_unique(HAP *old, double *prior) { HAPUNIQUE *result; int i; result = (HAPUNIQUE *) R_Calloc(1, HAPUNIQUE); if (result) { result->code = old->code; result->prior = prior[old->code]; result->keep = old->keep; result->loci = (int *) R_Calloc(n_loci, int); if (result->loci==NULL) { errmsg("could not alloc mem for copy_hap_unique"); R_Free(result); } for (i=0; iloci[i] = old->loci[i]; } return result; } /***********************************************************************************/ static int code_haps(int n_hap, HAP **hap_list) { /* assumes hap_list is sorted by either haplotype (cmp_hap) or haplotype code (cmp_trim) */ HAP **hs, **he, **h; int res = 0; hs = hap_list; he = hap_list + n_hap; while (hs < he) { h = hs; do { (*h)->code = res; h++; } while ((hcode == (*h)->code) ); res++; hs = h; } return res; } /***********************************************************************************/ static int hap_enum(HAP ***hap_list_ptr, double **prior_ptr, int *max_haps, int *n_alleles, int insert_loc, int n_hap, int *pair_id_ptr){ int i,j, a_poss,a1_poss,a2_poss, a1, a2,a1_new,a2_new; int n_al, n_miss; HAP *h1, *h2, *h1_new, *h2_new; j = n_hap - 1; loci_used[insert_loc] = 1; for(i=0;i<(n_hap-1);i+=2){ h1 = (*hap_list_ptr)[i]; h2 = (*hap_list_ptr)[i+1]; a1 = h1->loci[insert_loc]; a2 = h2->loci[insert_loc]; /* fill in missing allele values */ n_al = n_alleles[insert_loc]; n_miss = 0; if(a1==0) n_miss ++; if(a2==0) n_miss ++; switch(n_miss){ case 0: if((a1!=a2) && (num_het(h1,h2) > 1) ){ /* note that nhet = number of het loci that are currently in use, including new insert locus. Only need to consider reciprocal haplotype allele insertion if het at current insert locus, and total num of hets across all used loci > 1 */ insert_new_hap_pair(hap_list_ptr, prior_ptr, max_haps, insert_loc, h1, h2, a2, a1, pair_id_ptr, &j); } break; case 1: /* over-write haps for first possible alleles, to fill in one possible haplotype pair, and expand if needed */ if(a1==0){ a1_new = 1; a2_new = a2; } else { a1_new = a1; a2_new = 1; } h1 ->loci[insert_loc] = a1_new; h2 ->loci[insert_loc] = a2_new; (*hap_list_ptr)[i] = h1; (*hap_list_ptr)[i+1] = h2; if((a1_new!=a2_new) && (num_het(h1,h2) > 1) ){ insert_new_hap_pair(hap_list_ptr, prior_ptr, max_haps, insert_loc, h1, h2, a2_new, a1_new, pair_id_ptr, &j); } /* now consider all other values of missing allele */ for(a_poss=2;a_poss<=n_al;a_poss++){ if(a1==0){ a1_new = a_poss; a2_new = a2; } else { a1_new = a1; a2_new = a_poss; } insert_new_hap_pair(hap_list_ptr, prior_ptr, max_haps, insert_loc, h1, h2, a1_new, a2_new, pair_id_ptr, &j); /* pull out the newly inserted hap pair, to be used to determine number of heterozous sites, to determine whether new hap pair needs to be inserted */ h1_new = (*hap_list_ptr)[j-1]; h2_new = (*hap_list_ptr)[j]; if((a1_new!=a2_new) && (num_het(h1_new,h2_new) > 1) ){ insert_new_hap_pair(hap_list_ptr, prior_ptr, max_haps, insert_loc, h1, h2, a2_new, a1_new, pair_id_ptr, &j); } } break; case 2: /* over-write haps for first possible alleles, to fill in one possible haplotype pair, and expand if needed */ h1 ->loci[insert_loc] = 1; h2 ->loci[insert_loc] = 1; (*hap_list_ptr)[i] = h1; (*hap_list_ptr)[i+1] = h2; for(a1_poss=1;a1_poss<=n_al;a1_poss++){ for(a2_poss=a1_poss; a2_poss<=n_al;a2_poss++){ if( (a1_poss==1) && (a2_poss==1) ) continue; /* did this case above */ a1_new = a1_poss; a2_new = a2_poss; insert_new_hap_pair(hap_list_ptr, prior_ptr, max_haps, insert_loc, h1, h2, a1_new, a2_new, pair_id_ptr, &j); h1_new = (*hap_list_ptr)[j-1]; h2_new = (*hap_list_ptr)[j]; if((a1_new!=a2_new) && (num_het(h1_new,h2_new) > 1) ){ insert_new_hap_pair(hap_list_ptr, prior_ptr, max_haps, insert_loc, h1, h2, a2_new, a1_new, pair_id_ptr, &j); } } } break; default: errmsg("error for number missing alleles"); } } return (j + 1); /* return value is new number of haplos after all expanded */ } /***********************************************************************************/ static HAP* copy_hap(HAP *old) { HAP *result; int i; result = (HAP *) R_Calloc(1, HAP); if (result) { result->id = old->id; result->pair_id = old->pair_id; result->wt = old->wt; result->post = old->post; result->code = old->code; result->keep = old->keep; result->loci = (int *) R_Calloc(n_loci, int); if (result->loci==NULL) { errmsg("could not alloc mem for copy_hap"); R_Free(result); } for (i=0; iloci[i] = old->loci[i]; } return result; } /***********************************************************************************/ static int num_het(HAP* h1, HAP* h2){ int i, nhet; nhet = 0; for(i=0;iloci[i]!=h2->loci[i]) ) nhet++; } return nhet; } /***********************************************************************************/ static void hap_prior(int n_hap, HAP** hap_list, double *prior, int n_u_hap, double min_prior) { double total, a; int i; for(i=0; ipost * hap_list[i]->wt * hap_list[i]->keep; total += a; prior[hap_list[i]->code] += a; } for(i=0;iwt; subtotal = 0.0; n_trim = 0; /* numerator of post prob */ do { id = (*h)->id; h2 = h+1; gp = prior[(*h)->code] * prior[(*h2)->code] ; if ((*h)->code != (*h2)->code) gp *= 2.0; subtotal += gp; (*h)->post = (*h2)->post = gp; h = h2+1; } while ((hid)==id)); hn = h; if(subtotal > 0.0){ /* check if need to trim by post */ for (h=hs; hpost/subtotal < min_posterior) ? 0 : 1; if(keep==0){ /* trim pair of haps */ n_trim +=2; subtotal -= (*h)->post ; (*h)->post = 0.0; (*h)->keep = 0; (*(h+1))->post = 0.0; (*(h+1))->keep = 0; } } /* rescale if new subtotal > 0.0 */ if(subtotal > 0.0){ for (h=hs; hpost = (*h)->post/subtotal; } } /* zero post and trim all if new subtotal <= 0.0 */ else { for (h=hs; hpost =0.0; (*h)->keep = 0; } } } /* if original subtotal <= 0, zero post and trim all */ else { for (h=hs; hpost = 0.0; (*h)->keep = 0; } } (*lnlike) += (subtotal > 0.0) ? tmp_wt * log(subtotal) : 0.0; total_trim += n_trim; hs = hn; } return total_trim; } /*********************************************************************************/ static void set_posterior(int n_hap, HAP **hap_list, int *random_start){ HAP **hs, **he, **hn, **h, **h1, **h2; double u, subtotal, post; int id; hs = hap_list; he = hap_list + n_hap; /* fill numertators of post */ if(! (*random_start) ) { while(hs < he){ h1=hs; hs++; h2=hs; (*h1)->post = (*h2)->post = 1.0; hs++; } } else { while(hs < he){ u = ranAS183(); h1=hs; hs++; h2=hs; (*h1)->post = (*h2)->post = u; hs++; } } /* standardize so post sums to 1 per subject */ hs = hap_list; he = hap_list + n_hap; while(hs < he){ subtotal = 0.0; h = hs; do { id = (*h)->id; subtotal += (*h)->post; h += 2; } while ( (hid == id ) ); hn = h; /* new end for a subject */ for(h = hs; h < hn; h+=2){ post = (*h)->post/subtotal; (*h)->post = post; (*(h+1))->post = post; } hs = hn; /* new begin for next subject */ } return ; } /*********************************************************************************/ static int **int_matrix(int nrow, int ncol){ /* allocate int matrix with subscript range m[0 ..(nrow-1)][0..(ncol-1)] */ int i; int **m; /* allocate pointers to rows */ m=(int **) R_Calloc(nrow, int *); if (!m) errmsg("mem alloc failure 1 in int_matrix"); /* allocate vec of memory for each row */ for(i=0;iprior; u_hap_code[i] = ret_u_hap_list[i]->code; for(j=0;j<*S_n_loci;j++){ k++; u_hap[k] = ret_u_hap_list[i]->loci[j]; } } h = ret_hap_list; for(i=0; i<*n_pairs; i++){ subj_id[i] = (*h)->id; post[i] = (*h)->post; hap1_code[i] = (*h)->code; h++; hap2_code[i] = (*h)->code; h++; } return; } /***********************************************************************************/ void haplo_free_memory(void){ /* free memory saved for returned info */ int i; for(i=0;iloci != NULL) R_Free( ret_hap_list[i]->loci ); R_Free( ret_hap_list[i]); } } R_Free(ret_hap_list); ret_hap_list = NULL; for(i=0;iloci != NULL) R_Free( ret_u_hap_list[i]->loci ); R_Free( ret_u_hap_list[i] ); } } R_Free(ret_u_hap_list); ret_u_hap_list = NULL; return; } /***********************************************************************************/ /* Algorithm AS 183 Appl. Statist. (1982) vol.31, no.2 Returns a pseudo-random number rectangularly distributed between 0 and 1. The cycle length is 6.95E+12 (See page 123 of Applied Statistics (1984) vol.33), not as claimed in the original article. ix, iy and iz should be set to integer values between 1 and 30000 before the first entry. To do this, first call ranAS183_seed(iseed1,iseed2,iseed3), where iseed# are 3 int seeds between 1 and 30000. The 3 seeds are saved, but ix,iy,iz can change. NOTE: Feb 23, 2007 DJS changed long to int Translated from fortran to C. */ static int ix, iy, iz; static int ranAS183_seed(int iseed1, int iseed2, int iseed3) { int error; error=1; if( ( (iseed1 >=1) && (iseed1 <=30000)) && ( (iseed2 >=1) && (iseed2 <=30000) ) && ( (iseed3 >=1) && (iseed3 <=30000) )) error=0; if(error) return (error); ix = iseed1; iy = iseed2; iz = iseed3; return (error); } /***********************************************************************************/ static double ranAS183(void) { double u; ix = (171*ix) % 30269; iy = (172*iy) % 30307; iz = (170*iz) % 30323; u = (double)ix/30269.0 + (double)iy/30307.0 + (double)iz/30323.0; return ( u - (int) u ); } /***********************************************************************************/ static void errmsg(char *string){ /* Function to emulate "stop" of S+ - see page 134, S Programing, by Venables and Ripley */ /* PROBLEM "%s", string RECOVER(NULL_ENTRY); Replace with call to Rf_error for R 4.1.x */ Rf_error(string, "%s"); } /***********************************************************************************/ static void divideKeep(HAP **hap_list, int n, int *nReturn) { int i,j; HAP *temp; int nValid = 0; i = -1; for(j = i+1; jkeep !=0){ i++; temp = hap_list[i]; hap_list[i] = hap_list[j]; hap_list[j] = temp; } } for(i = 0; ikeep == 0) continue; nValid++; } *nReturn = nValid; return; } /***********************************************************************************/ static void add_more_memory(HAP ***hap_list, double **prior,int *max_haps){ /* check that max_haps will not exceed max limit for an int on a 32-bit processor */ if(*max_haps == INT_MAX) { errmsg("cannot increase max_haps, already at max limit"); } if((*max_haps) > INT_MAX/2) { *max_haps = INT_MAX; } else { *max_haps = 2 * (*max_haps); } *prior = (double *) R_Realloc(*prior, *max_haps, double); if(prior==NULL){ errmsg("could not realloc mem for prior"); } *hap_list = (HAP **) R_Realloc(*hap_list, *max_haps, HAP* ); if(hap_list==NULL){ errmsg("could not realloc mem for hap_list"); } return; } /***********************************************************************************/ static void insert_new_hap_pair(HAP ***hap_list_ptr, double **prior_ptr, int *max_haps, int insert_loc, HAP *h1_old, HAP *h2_old, int a1_new, int a2_new, int *pair_id_ptr, int *j){ loci_used[insert_loc] = 1; if( ((*j)+2) >= (*max_haps) ){ add_more_memory(hap_list_ptr, prior_ptr, max_haps); } /* update pair id, to be used for both haplotypes */ (*pair_id_ptr) ++; /* By using divideKeep, the number of haploytpes (nhap) is reduced to only those with keep=1, but the memory for those with keep=0 is still in place. So, when adding new haplotypes to the 'end' of the list, nhap gives a count that is shorter than the true length. If where we are adding a haplotype in a list is not NULL, then simply over write existing memory with old haplotype data, and then update this old info with new alleles at insterted locus position, as well a pair_id. If where we are adding points to NULL, then need to copy old haplotype info (while allocating memory), then update inserted allele and pair_id. */ /* First haplotype */ (*j)++; if( (*hap_list_ptr)[*j] !=NULL) { overwrite_hap((*hap_list_ptr)[*j], h1_old); } else { (*hap_list_ptr)[*j] = copy_hap(h1_old); } (*hap_list_ptr)[*j]->loci[insert_loc] = a1_new; (*hap_list_ptr)[*j]->pair_id = (*pair_id_ptr); /* Second haplotype */ (*j)++; if( (*hap_list_ptr)[*j] !=NULL) { overwrite_hap((*hap_list_ptr)[*j], h2_old); } else { (*hap_list_ptr)[*j] = copy_hap(h2_old); } (*hap_list_ptr)[*j]->loci[insert_loc] = a2_new; (*hap_list_ptr)[*j]->pair_id = (*pair_id_ptr); } /***********************************************************************************/ static void overwrite_hap(HAP *new, HAP *old) { int i; new->id = old->id; new->pair_id = old->pair_id; new->wt = old->wt; new->post = old->post; new->code = old->code; new->keep = old->keep; if(new->loci == NULL){ new->loci = (int *) R_Calloc(n_loci, int); } if(new->loci == NULL) { errmsg("could not alloc mem for overwrite_hap"); } for (i=0; iloci[i] = old->loci[i]; } } /***********************************************************************************/ void checkIntMax(int *intMax) { *intMax = INT_MAX; return ; } haplo.stats/src/louis_info.c0000644000176200001440000003026114672354244015630 0ustar liggesusers/* $Author: schaid $ */ /* $Date: 2007/02/27 20:18:43 $ */ /* $Header: /projects/genetics/cvs/cvsroot/haplo.stats/src/louis_info.c,v 1.8 2007/02/27 20:18:43 schaid Exp $ */ /* $Locker: $ */ /* * $Log: louis_info.c,v $ * Revision 1.8 2007/02/27 20:18:43 schaid * changed long to int * * Revision 1.7 2004/02/02 17:08:41 schaid * removed some dead code * * Revision 1.6 2004/01/23 15:11:54 schaid * added parens for explicit precedence * * Revision 1.5 2003/10/09 16:55:56 schaid * added errmsg function * * Revision 1.4 2003/10/09 14:00:16 sinnwell * fix $Log keyword commenting * * Revision 1.3 2003/10/07 21:30:17 schaid * changed from Salloc to Calloc and Free (trying to be R compatible) * * Revision 1.2 2003/10/02 21:52:21 sinnwell * included S2R.h for portability to R. * * Revision 1.1 2003/09/16 16:02:31 schaid * Initial revision * */ #include #include #include #include #include #include static double **double_vec_to_mat(double *Yvec, int nrow, int ncol); static double **double_matrix(int nrow, int ncol); static double *double_vec(int n); static void errmsg(char *string); /* Louis Information matrix for GLM regression coefficients and estimated haplotype frequencies by EM algorithm */ void louis_info( int *len_tot, /* total length of: indx_subj, resid, vfunc, wt, h1, h2 */ int *indx_subj, /* vec of subj indices */ double *resid, /* vec of standardized residuals */ double *vfunc, /* vec of var function */ double *wt, /* vec of weights */ double *xvec, /* vec of xmatrix, col-major order (len=len_tot * ncov) */ int *ncov, /* number of glm covariates */ int *h1, /* vec of haplo index code for subjects' first haplo */ int *h2, /* vec of haplo index code for subjects' second haplo */ int *hap_base, /* scalar baseline haplotype index */ int *nhap, /* number of haplotypes (including base) = len hap_freq */ double *hap_freq, /* vec of haplo frequencies */ double *info11, /* infor matrix of GLM coefs, as vector col-major */ double *info12, /* info matrix of GLM coef, hap freq, in vec col-major */ double *info22) /* info matrix of hap freqs, in vec col-major */ { double **amat, **bmat, **cmat, **abmat, **x; double *tempvec1, *tempvec2; double t1, t2, t3, t4, baseFrqSqr; int i, r, r2, c, c1, c2, h, indx_start, indx_end, subj_id, nh, size_max; /* set up working vectors and matrices */ nh = *nhap - 1; size_max = nh > *ncov ? nh : *ncov; tempvec1 = double_vec(size_max); tempvec2 = double_vec(size_max); amat = double_matrix(size_max, size_max); bmat = double_matrix(size_max, size_max); abmat = double_matrix(size_max, size_max); cmat = double_matrix(size_max, size_max); /* design matrix, converted from S vec to matrix */ x = double_vec_to_mat(xvec, *len_tot, *ncov); /******************** compute info 11 *********************************************/ /* zero-out working arrays */ for(r=0;r<*ncov;r++){ for(c=0;c<*ncov;c++){ abmat[r][c] = 0.0; cmat[r][c] = 0.0; } } indx_start = 0; indx_end = *len_tot; while (indx_start < indx_end) { i = indx_start; subj_id = indx_subj[i]; /* zero-out working vec */ for(r=0;r< *ncov;r++) tempvec1[r] = 0.0; /* loop for each subject */ do { t1 = vfunc[i] - resid[i]*resid[i]; t2 = wt[i] * resid[i]; for(r=0;r< *ncov; r++){ for(c=0;c< *ncov; c++){ abmat[r][c]+= t1*wt[i] * x[i][r] * x[i][c]; } tempvec1[r]+= t2*x[i][r]; } i++; } while ( (i base. */ if( (h1[i]!= (*hap_base)) && (h2[i]!=(*hap_base) ) ){ /* both haps != base */ if(h1[i]==h2[i]){ c = h1[i] < *hap_base ? h1[i] : (h1[i]-1); t2 = 2.0/hap_freq[h1[i]]; tempvec2[c] += wt[i] * t2; for(r=0;r<*ncov;r++){ bmat[r][c] += t1 * x[i][r] * t2; } } else { c1 = h1[i] < *hap_base ? h1[i] : (h1[i]-1); t2 = 1.0/hap_freq[h1[i]]; tempvec2[c1] += wt[i] * t2; c2 = h2[i] < *hap_base ? h2[i] : (h2[i]-1); t3 = 1.0/hap_freq[h2[i]]; tempvec2[c2] += wt[i] * t3; for(r=0;r<*ncov;r++){ bmat[r][c1] += t1 * x[i][r] * t2; bmat[r][c2] += t1 * x[i][r] * t3; } } } else if ( (h1[i]== (*hap_base)) && (h2[i]==(*hap_base)) ){ /* both haps = base */ t2 = -2.0/hap_freq[*hap_base]; for(c=0;c #include #include #include /*ranAS183_seed reads three random seeds*/ static int ranAS183_seed(int, int, int); /*ranAS183 generates random values*/ static double ranAS183(void); /*redefine haplotype memberships for a subset of SNPs from a set of SNPs*/ static int creatsubhap(void); /*calculate the chi^2 statistics for a 2-by-h table*/ static double chisq2h(int *); /*calculate a Mantel-Haenszel statistic*/ static double mantel(int *); /*calculate r^2 for two give SNPs*/ static double r2test(int, int); /*search for the list SNPs that should be combined to a given SNP*/ static double combine(int *, int, int); /*permute disease status*/ static void permute(int *, double *, int *); /*calculate the P-value for a chi^2 statistic with given degrees of freedom*/ static double pchisq(double, double); static int *subjid, *hap1code, *hap2code, *disease, *newhap1code, *newhap2code, *inlist, inlist_length; /*inlist is the list of SNPs to be combined to a given SNP*/ /*inlist_length is the number of SNPs combined to a given SNP*/ static int **haplist; static double *post, *pos; /*posterior probabilities and SNPs' physical positions*/ static int *newhap1codesingle, *newhap2codesingle; static double r2_threshold, mh_threshold, haplo_freq_min, p_threshold; /*parameters*/ static int nsnp, nhap, nsub, npost, newnhap, flag, hap_df; void seqhapC( int *nsnp_c, /*number of SNPs*/ int *nsub_c, /*number of subjects*/ int *npost_c, /*length of posterior probabilities*/ int *nhap_c, /*number of distinguishing haplotypes*/ int *subjid_c, /*subject ID*/ int *hap_c, /*a int vectors converted from the haplotype matrix*/ int *hap1_c, /*index for the first haplotype for each posterior*/ int *hap2_c, /*index for the second haplotype for each posterior*/ int *disease_c, /*disease status*/ double *post_c, /*posterior probabilities*/ double *pos_c, /*SNPs' physical positions*/ int *seed_c, /*random seeds*/ int *nperm_c, /*number of permutations to calculate P-values*/ int *min_perm_c, /* min number permutations in Besag/Clifford approach */ int *max_perm_c, /* max number permutations in Besag/Clifford approach */ double *p_threshold_c, /* perm p-value threshold */ double *lamda_c, /*threshold for the MH test*/ double *r2_threshold_c, /*threshold to ignore one marker when two are in high r^2*/ double *haplo_freq_min_c, /*the minimum haplotype frequency that should used*/ int *inlist_c, /*the list of SNPs combined to a given SNP*/ int *hap_df_c, /*the d.f. of the sequential haplotype test*/ double *hap_chi_c, /*the chi^2 statistic of the sequential hapltoype test*/ double *hap_p_point_c, /*pointwise P-values of the sequential haplotype test based on permutations*/ double *hap_p_region_c, /*the regional P-value of the sequential haplotype test based on permutations*/ int *sum_df_c, /*the d.f. of the sequential summary test*/ double *sum_chi_c, /*the chi^2 statistic of the sequential summary test*/ double *sum_p_point_c, /*pointwise P-values of the sequential summary test based on permutations*/ double *sum_p_region_c, /*the regional P-value of the sequential summary test based on permutations */ double *chi_chi_c, /*the chi^2 statistic of the single-SNP test*/ double *chi_p_point_c, /*pointwise P-values of the single-SNP test based on permutations*/ double *chi_p_region_c /*the regional P-value of the single-SNP test based on permutations*/ ) { /*read data passed from S*/ nsnp = *nsnp_c; r2_threshold = *r2_threshold_c; mh_threshold = *lamda_c; p_threshold = *p_threshold_c; int N_PERM = *nperm_c; int MIN_PERM = *min_perm_c; int MAX_PERM = *max_perm_c; nsub = *nsub_c; npost = *npost_c; nhap = *nhap_c; haplo_freq_min = *haplo_freq_min_c; int si, i, j, k; double chi_stat0i[nsnp], chi_max=0, chi_max0=0, chi_pi[nsnp], chi_p=0, hap_stat0i[nsnp], hap_min=1, hap_min0=1, hap_pi[nsnp], hap_p=0, sum_stat0i[nsnp], sum_min=1, sum_min0=1, sum_pi[nsnp], sum_p=0; for(i=0; i=0) ) { sum_stat0i[si]=sum_stat0i[si] + combine(disease, si, k); k++; }/*search for the list of SNPs to be combined to SNP si and update the summary statistic*/ if(inlist_length==1) {hap_stat0i[si]=chi_stat0i[si]; hap_df=1;} else hap_stat0i[si] = chisq2h(disease); /*update the haplotype statistic*/ /*save for Splus*/ for(i=0; ichi_max0) chi_max0=chi_stat0i[si]; /*update the maximum*/ if(hap_stat0i[si]=0) ) { sum_tmp=sum_tmp + combine(perm_disease, si, k); k++; } doublek = inlist_length; sum_tmp = pchisq(doublek/2, sum_tmp/2); if(inlist_length==1) {hap_tmp=chi_tmp; hap_df=1;} else hap_tmp = chisq2h(perm_disease); doublek = hap_df; hap_tmp = pchisq(doublek/2, hap_tmp/2); /*global*/ if(chi_tmp > chi_max) chi_max=chi_tmp; if(hap_tmp < hap_min) hap_min=hap_tmp; if(sum_tmp < sum_min) sum_min=sum_tmp; /*pointwise*/ if(chi_tmp > chi_stat0i[si]) chi_pi[si]++; if(hap_tmp < hap_stat0i[si]) hap_pi[si]++; if(sum_tmp < sum_stat0i[si]) sum_pi[si]++; } /*global*/ if(chi_max > chi_max0) chi_p++; if(hap_min < hap_min0) hap_p++; if(sum_min < sum_min0) sum_p++; /* } old for() stop */ if( N_PERM >= MIN_PERM ) { /* added by JPS: apply Besag and Clifford permutation p-values rules to region p-values */ h_region = 1/((p_threshold * p_threshold) + 1/N_PERM); if( ((h_region <= hap_p) & (h_region <= chi_p) & (h_region <= sum_p)) | (N_PERM == MAX_PERM) ) { doneperm = 1; } } } /*global P-values based on permutation*/ *chi_p_region_c = chi_p/N_PERM; *hap_p_region_c = hap_p/N_PERM; *sum_p_region_c = sum_p/N_PERM; *nperm_c = N_PERM; /*pointwisw P-vlaues based on permutation*/ for(si=0; si= 0) && ((si + k) < nsnp)) { if(pos[si] - pos[si-k] > pos[si+k] - pos[si]) { /*check si+k*/ flagr=1; if(r2test(si, si+k)=", keep growing on the right direction, but do not add si+k to inlist*/ for(j=0; j mh_threshold) { mh_sum=mh_sum + mh_tmp; inlist_length++; inlist[inlist_length-1]=si+k; newnhap=creatsubhap(); } else flagr=0; } /*if r2>r2_threshold, do NOT add si+k into inlist, but continue search; if r2mh_threshold, add si+k into inlist; if r2=", keep growing on the left direction, but do not add si-k to inlist*/ for(j=0; j mh_threshold) { mh_sum=mh_sum + mh_tmp; inlist_length++; inlist[inlist_length-1]=si-k; newnhap=creatsubhap(); } else flagl=0; } if(flagl!=1 && flagr!=1) flag=0; /* if either direction is kept for growing, stop*/ } else { /*check si-k*/ flagl=1; if(r2test(si,si-k)mh_threshold) { mh_sum=mh_sum + mh_tmp; inlist_length++; inlist[inlist_length-1]=si-k; newnhap=creatsubhap(); } else flagl=0; } /*check si+k */ flagr=1; if(r2test(si, si+k)mh_threshold){ mh_sum=mh_sum + mh_tmp; inlist_length++; inlist[inlist_length-1]=si+k; newnhap=creatsubhap(); } else flagr=0; } if(flagl!=1 && flagr!=1) flag=0;/*if neither direction is kept for growing, stop*/ } if(si-k<0 && si+kmh_threshold){ mh_sum=mh_sum + mh_tmp; inlist_length++; inlist[inlist_length-1]=si+k; newnhap=creatsubhap();} else flagr=0; } if(flagr!=1) flag=0; } if(si+k>=nsnp && si-k>0) { /*check si-k*/ flagl=1; if(r2test(si, si-k)mh_threshold){ mh_sum=mh_sum + mh_tmp; inlist_length++; inlist[inlist_length-1]=si-k; newnhap=creatsubhap();} else flagl=0; } if(flagl!=1) flag=0; } } return(mh_sum); } /*permute disease status*/ static void permute(int *nondup_disease, double *perm_rand, int *perm_disease) { int i, j, tmpint, perm_order[nsub]; double tmp; for(i=0; i0.5 && n1plus[i]>0.5 && nplus0[i]>0.5 && nplus1[i]>0.5) /*a stratum is ignored if a stratum has counts <=2*/ { num = num + n00[i] - n0plus[i] * nplus0[i]/ntotal[i]; denom = denom + n0plus[i]*n1plus[i]*nplus0[i]*nplus1[i]/ (ntotal[i]*ntotal[i]*(ntotal[i]-1)); } else { if(maxcount < ntotal[i]) maxcount = ntotal[i]; }/*the else expression is not necessary and can be removed. It was used in an early version with an additional parameter.*/ n = n + ntotal[i]; } if(denom==0) return(denom); mh_stat = pow(num,2)/denom; return(mh_stat); } /*the chisq2h function calculates the chisquare statistic for a 2-by-h table */ static double chisq2h(int *d) { double n0[newnhap], n1[newnhap], n0sum=0, n1sum=0, nhapsum[newnhap]; double en0[newnhap], en1[newnhap], ntotal=0, chi2h_stat=0; int i; /*initialize*/ for(i=0; ihaplo_freq_min*ntotal) { trunhapsum[ntrunhap]=nhapsum[i]; trunn0[ntrunhap] = n0[i]; trunn1[ntrunhap] = n1[i]; ntrunhap++; } else { n0sum = n0sum - n0[i]; n1sum = n1sum - n1[i]; } } ntotal = n0sum + n1sum; for(i=0; i ITMAX) nrerror("a too large, ITMAX too small in gcf"); */ *gammcf=exp(-x+a*log(x)-(*gln))*h; } #undef ITMAX #undef EPS #undef FPMIN /* (C) Copr. 1986-92 Numerical Recipes Software 3#Q)$. */ #define ITMAX 100 #define EPS 3.0e-7 void gser (double *gamser, double a, double x, double *gln) { double gammln(double xx); int n; double sum,del,ap; *gln=gammln(a); if (x <= 0.0) { *gamser=0.0; return; } else { ap=a; del=sum=1.0/a; for (n=1;n<=ITMAX;n++) { ++ap; del *= x/ap; sum += del; if (fabs(del) < fabs(sum)*EPS) { *gamser=sum*exp(-x+a*log(x)-(*gln)); return; } } return; } } #undef ITMAX #undef EPS /* (C) Copr. 1986-92 Numerical Recipes Software 3#Q)$. */ static int ix, iy, iz; static int ranAS183_seed(int iseed1, int iseed2, int iseed3) { int error; error=1; if( ( (iseed1 >=1) && (iseed1 <=30000)) && ( (iseed2 >=1) && (iseed2 <=30000) ) && ( (iseed3 >=1) && (iseed3 <=30000) )) error=0; if(error) return (error); ix = iseed1; iy = iseed2; iz = iseed3; return (error); } /***********************************************************************************/ static double ranAS183(void) { double u; ix = (171*ix) % 30269; iy = (172*iy) % 30307; iz = (170*iz) % 30323; u = (double)ix/30269.0 + (double)iy/30307.0 + (double)iz/30323.0; return ( u - (int) u ); } haplo.stats/src/groupsum.c0000644000176200001440000000310514672315242015333 0ustar liggesusers/* $Author: sinnwell $ */ /* $Date: 2003/10/07 21:21:27 $ */ /* $Header: /projects/genetics/cvs/cvsroot/haplo.stats/src/groupsum.c,v 1.2 2003/10/07 21:21:27 sinnwell Exp $ */ /* $Locker: $ */ /* * $Log: groupsum.c,v $ * Revision 1.2 2003/10/07 21:21:27 sinnwell * fix $Log keyword comments * * Revision 1.1 2003/09/16 16:00:44 schaid * Initial revision * */ #include #include /* groupsum Function Arguments: x: double pointer to an array. The values of x will be summed over a 'group' indicator provided by indx indx: integer pointer on an array. It is assumed that this indx array as sequential integer values. This is imporant, becuase the values in indx are used as array indices when summing over values of x. n: integer pointer to scalar. n = length of x and indx. grouptot: double pointer to array, which is the length of ngroup. ngroup: integer pointer to scalar; ngroup = length of grouptot. The values of x are summed according to the group indx, and total sums are stored in array grouptot. So, the ith element of grouptot is the total of x's that have indx=(i+1), because we use the zero-offset in C. Note that the error checking must be done is Splus, because this C code is intended to simly sum, for speed. */ void groupsum( double *x, int *indx, int *n, double *grouptot, int *ngroup ) { int i; for(i=0; i<*ngroup; i++) grouptot[i]=0.0; for (i=0; i<*n; i++){ grouptot[indx[i]-1] += x[i]; } return; } haplo.stats/NAMESPACE0000755000176200001440000000402314672315242013741 0ustar liggesusersuseDynLib(haplo.stats, .registration=TRUE) importFrom("graphics", "axis", "lines", "locator", "plot", "points", "text") importFrom("methods", "existsFunction", "setOldClass") importFrom("stats", "anova", "binomial", "dnorm", "dpois", "formula", "gaussian", "glm", "glm.control", "model.extract", "model.matrix", "model.offset", "model.response", "model.weights", "na.omit", "pchisq", "pf", "pt", "qchisq", "qf", "qnorm", "residuals.glm", "runif", "stat.anova", "uniroot", "var", "weights") import(rms, arsenal) export(haplo.em, summary.haplo.em, print.haplo.em, haplo.em.control) export(haplo.score, print.haplo.score, plot.haplo.score, locator.haplo, score.sim.control, haplo.score.glm, haplo.score.podds) export(haplo.score.merge, haplo.group, print.haplo.score.merge, print.haplo.group) export(haplo.cc, print.haplo.cc) export(haplo.score.slide, print.haplo.score.slide, plot.haplo.score.slide) export(haplo.glm, summary.haplo.glm, print.haplo.glm, haplo.glm.control) export(haplo.binomial, residuals.haplo.glm, fitted.haplo.glm, vcov.haplo.glm, anova.haplo.glm) export(seqhap, plot.seqhap, print.seqhap) export(haplo.scan, print.haplo.scan, haplo.scan.obs, haplo.scan.sim, haplo.chistat) export(haplo.power.qt, haplo.power.qt.ncp, find.haplo.beta.qt) export(haplo.power.cc, haplo.power.cc.ncp) export(haplo.design, setupGeno, summaryGeno, na.geno.keep, geno1to2, Ginv, printBanner, geno.count.pairs, get.hapPair, locus) S3method(print, haplo.em) S3method(summary, haplo.em) S3method(print, haplo.score) S3method(plot, haplo.score) S3method(print, haplo.group) S3method(print, haplo.score.merge) S3method(print, haplo.glm) S3method(summary, haplo.glm) S3method(residuals, haplo.glm) S3method(fitted, haplo.glm) S3method(anova, haplo.glm) S3method(vcov, haplo.glm) S3method(print, summary.haplo.glm) S3method(print, haplo.cc) S3method(print, haplo.score.slide) S3method(plot, haplo.score.slide) S3method(print, seqhap) S3method(plot, seqhap) S3method(print, haplo.scan) haplo.stats/inst/0000755000176200001440000000000014672315242013475 5ustar liggesusershaplo.stats/inst/doc/0000755000176200001440000000000014673025506014244 5ustar liggesusershaplo.stats/inst/doc/LICENSE.mayo0000644000176200001440000000200014672315242016203 0ustar liggesusersLicense: Copyright 2003 Mayo Foundation for Medical Education and Research. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA For other licensing arrangements, please contact Daniel J. Schaid. Daniel J. Schaid, Ph.D. Division of Biostatistics Harwick Building Room 775 Mayo Clinic 200 First St., SW Rochester, MN 55905 phone: 507-284-0639 fax: 507-284-9542 email: schaid@mayo.edu haplo.stats/inst/doc/GPL.txt0000644000176200001440000003545114672315242015435 0ustar liggesusers GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS haplo.stats/inst/doc/manualHaploStats.rnwsave0000644000176200001440000027006214672315242021140 0ustar liggesusers%\VignetteIndexEntry{haplo.stats} %\VignetteKeywords{haplotype, score, glm} %\VignetteDepends{haplo.stats} %\VignettePackage{haplo.stats} \RequirePackage[T1]{fontenc} \RequirePackage{graphicx,ae,fancyvrb} \IfFileExists{upquote.sty}{\RequirePackage{upquote}}{} \setkeys{Gin}{width=0.9\textwidth} \DefineVerbatimEnvironment{Sinput}{Verbatim}{fontfamily=courier, fontshape=sl, fontseries=b, xleftmargin=.25cm} \DefineVerbatimEnvironment{Soutput}{Verbatim}{fontfamily=courier, fontshape=sl, xleftmargin=.5cm} \documentclass[10pt]{article} \def\version{version 1.6.0} \def\Rversion{version 3.0.1} \def\package{{\sl haplo.stats}} \def\Explain{\paragraph{\large {\bf Explanation of Results \vspace{.1in}} \\}} \usepackage{Sweave} \usepackage{fullpage} \usepackage{hyperref} %\textwidth 6.5in %\oddsidemargin 0in %\evensidemargin 0in %\textheight 7.7in \title{{\bf Haplo Stats} \\ (\version) \vspace{.25in}\\ Statistical Methods for Haplotypes When Linkage Phase is Ambiguous \vspace{1.5in}\\ } \author{Jason P. Sinnwell\thanks{sinnwell@mayo.edu} and Daniel J. Schaid \\ Mayo Clinic Division of Health Sciences Research\\Rochester MN USA 55904 \vspace{.25in} \\} \date{{\today} \vspace{2in}} \begin{document} \maketitle \pagebreak \tableofcontents \pagebreak \section{Introduction} Haplo Stats is a suite of R routines for the analysis of indirectly measured haplotypes. The statistical methods assume that all subjects are unrelated and that haplotypes are ambiguous (due to unknown linkage phase of the genetic markers), while also allowing for missing alleles. The user-level functions in Haplo Stats are: \begin{itemize} \item{{\sl haplo.em:}\ \ for the estimation of haplotype frequencies and posterior probabilities of haplotype pairs for each subject, conditional on the observed marker data} \item{{\sl haplo.glm:}\ \ generalized linear models for the regression of a trait on haplotypes, with the option of including covariates and interactions} \item{{\sl haplo.score:}\ \ score statistics to test associations between haplotypes and a variety of traits, including binary, ordinal, quantitative, and Poisson} \item{{\sl haplo.score.slide:} \ \ haplo.score computed on sub-haplotypes of a larger region} \item{{\sl seqhap:}\ \ sequentially scan markers in enlarging a haplotype for association with a trait} \item{{\sl haplo.cc:} \ \ run a combined analysis for haplotype frequencies, scores, and regression results for a case-control study} \item{{\sl haplo.power.qt/haplo.power.cc:}\ \ power or sample size calculatins for quantitative or binary trait} \item{{\sl haplo.scan:}\ \ search for a trait locus for all sizes of sub-haplotypes within a fixed maximum window width for all markers in a region} \item{{\sl haplo.design:} \ \ create a design matrix for haplotype effects} \end{itemize} \noindent This manual explains the basic and advanced usage of these routines, with guidelines for running the analyses and interpreting results. We provide many of these details in the function help pages, which are accessed within an R session using {\sl help(haplo.em)}, for example. We also provide brief examples in the help files, which can be run in the R session with {\sl example(haplo.em)}. \subsection{Updates} The last major update to Haplo Stats included updates to {\sl haplo.glm} in section~\ref{hapGLM} and new methods written for it that resemble glm class methods. These methods include residuals, fitted.values, vcov, and anova, and they are detailed in section~\ref{glmMethods}. For full history of updates see the NEWS file, or type {\sl news(package=''haplo.stats'')} in the R command prompt. \subsection{Operating System and Installation} Haplo Stats \version\ is written for R (\Rversion). It has been uploaded to the Comprehensive R Archive Network (CRAN), and is made available on various operating systems through CRAN. Package installation within R is made simple from within R using {\sl install.packages(``haplo.stats'')}, but other procedures for installing R packages can be found at the R project website (http://www.r-project.org). \subsection{R Basics} For users who are new to the R environment, we demonstrate some basic concepts. In the following example we create a vector of character alleles and use the {\sl table} function to get allele counts. We first show how to save the results of {\sl table(snp)} into an R session variable, {\sl tab}. We show that {\sl tab} is an object of the {\sl table} class, and use the print and summary methods that are defined for {\sl table} objects. Note that when you enter just {\sl tab} or {\sl table(snp)} at the prompt, the print method is invoked. <>= snp <- c("A", "T", "T", "A", "A", "T", "T") tab <- table(snp) tab class(tab) print.table(tab) summary(tab) @ \noindent The routines in \package\ are computationally intensive and return lots of information in the returned object. Therefore, we assign classes to the returned objects and provide various methods for each of them. \section{Data Setup} We first show some typical steps when you first load a package and look for details on a function of interest. In the sample code below, we load \package, check which functions are available in the package, view a help file, and run the example that is within the help file. <>= # load the library, load and preview at demo dataset library(haplo.stats) ls(name="package:haplo.stats") help(haplo.em) example(haplo.em) @ <>= options(width=90) rm(list=ls()) require(haplo.stats) #library(haplo.stats, lib.loc="~/Rlib") @ \subsection{Example Data} The \package\ package contains three example data sets. The primary data set used in this manual is named {\sl (hla.demo)}, which contains 11 loci from the HLA region on chromosome 6, with covariates, qualitative, and quantitative responses. Within {\sl /haplo.stats/data/hla.demo.tab} the data is stored in tab-delimited format. Typically data stored in this format can be read in using {\sl read.table()}. Since the data is provided in the package, we load the data in R using {\sl data()} and view the names of the columns. Then to make the columns of {\sl hla.demo} accessible without typing it each time, we attach it to the current session. <>= # load and preview demo dataset stored in ~/haplo.stats/data/hla.demo.tab data(hla.demo) names(hla.demo) # attach hla.demo to make columns available in the session attach(hla.demo) @ The column names of {\sl hla.demo} are shown above. They are defined as follows: \begin{itemize} \item{\bf resp:\ }{quantitative antibody response to measles vaccination} \item{\bf resp.cat:\ }{a factor with levels "low", "normal", "high", for categorical antibody response} \item{\bf male:\ }{gender code with {\sl 1="male"}, {\sl 0="female"}} \item{\bf age:\ }{age (in months) at immunization} \end{itemize} \noindent The remaining columns are genotypes for 11 HLA loci, with a prefix name (e.g., "DQB") and a suffix for each of two alleles (".a1" and ".a2"). The variables in {\sl hla.demo}\ can be accessed by typing {\sl hla.demo\$}\ before their names, such as {\sl hla.demo\$resp}. Alternatively, it is easier for these examples to attach {\sl hla.demo}, (as shown above with {\sl attach()}) so the variables can be accessed by simply typing their names. \subsection{Creating a Genotype Matrix} Many of the functions require a matrix of genotypes, denoted below as {\sl geno}. This matrix is arranged such that each locus has a pair of adjacent columns of alleles, and the order of columns corresponds to the order of loci on a chromosome. If there are K loci, then the number of columns of {\sl geno} is $2K$. Rows represent the alleles for each subject. For example, if there are three loci, in the order A-B-C, then the 6 columns of {\sl geno} would be arranged as A.a1, A.a2, B.a1, B.a2, C.a1, C.a2. For illustration, three of the loci in {\sl hla.demo} will be used to demonstrate some of the functions. Create a separate data frame for 3 of the loci, and call this {\sl geno}. Then create a vector of labels for the loci. <>= geno <- hla.demo[,c(17,18,21:24)] label <-c("DQB","DRB","B") @ \noindent The {\sl hla.demo} data already had alleles in two columns for each locus. For many SNP datasets, the data is in a one column format, giving the count of the minor allele. To assist in converting this format to two columns, a function named {\sl geno1to2} has been added to the package. See its help file for more details. \subsection{Preview Missing Data: {\sl summaryGeno}} Before performing a haplotype analysis, the user will want to assess missing genotype data to determine the completeness of the data. If many genotypes are missing, the functions may take a long time to compute results, or even run out of memory. For these reasons, the user may want to remove some of the subjects with a lot of missing data. This step can be guided by using the {\sl summaryGeno}\ function, which checks for missing allele information and counts the number of potential haplotype pairs that are consistent with the observed data (see the Appendix for a description of this counting scheme). The codes for missing alleles are defined by the parameter {\sl miss.val}, a vector to define all possible missing value codes. Below, the result is saved in {\sl geno.desc}, which is a data frame, so individual rows may be printed. Here we show the results for subjects 1-10, 80-85, and 135-140, some of which have missing alleles. <>= geno.desc <- summaryGeno(geno, miss.val=c(0,NA)) print(geno.desc[c(1:10,80:85,135:140),]) @ \noindent The columns with {\sl 'loc miss-'} illustrate the number of loci missing either 0, 1, or 2 alleles, and the last column, {\sl num\_enum\_rows}, illustrates the number of haplotype pairs that are consistent with the observed data. In the example above, subjects indexed by rows 81 and 137 have missing alleles. Subject \#81 has one locus missing two alleles, while subject \#137 has two loci missing two alleles. As indicated by {\sl num\_enum\_rows}, subject \#81 has 1,800 potential haplotype pairs, while subject \#137 has nearly 130,000. The 130,000 haplotype pairs is considered a large number, but {\sl haplo.em}, {\sl haplo.score}, and {\sl haplo.glm} complete in roughly 3-6 minutes (depending on system limits or control parameter settings). If person \#137 were removed, the methods would take less than half that time. It is preferred to keep people if they provide information to the analysis, given that run time and memory usage are not too much of a burden. When a person has no genotype information, they do not provide information to any of the methods in \package. Furthermore, they cause a much longer run time. Below, using the {\sl table} function on the third column of {\sl geno.desc}, we can tabulate how many people are missing two alleles at any at of the three loci. If there were people missing two alleles at all three loci, they should be removed. The second command below shows how to make an index of which people to remove from {\sl hla.demo} because they are missing all their alleles. <>= # find if there are any people missing all alleles table(geno.desc[,3]) @ <>= ## create an index of people missing all alleles miss.all <- which(geno.desc[,3]==3) # use index to subset hla.demo hla.demo.updated <- hla.demo[-miss.all,] @ \subsection{Random Numbers and Setting Seed \label{seed} } Random numbers are used in several of the functions (e.g., to determine random starting frequencies within {\sl haplo.em}, and to compute permutation p-values in {\sl haplo.score}). To reproduce calculations involving random numbers, we use {\sl set.seed()} before any function that uses random numbers. Section \ref{glmBaseline} shows one example of setting the seed for {\sl haplo.glm}. We illustrate setting the seed below. <>= # this is how to set the seed for reproducing results where haplo.em is # involved, and also if simulations are run. In practice, don't reset seed. seed <- c(17, 53, 1, 40, 37, 0, 62, 56, 5, 52, 12, 1) set.seed(seed) @ \section{Haplotype Frequency Estimation: {\sl haplo.em}} \subsection{Algorithm} For genetic markers measured on unrelated subjects, with linkage phase unknown, {\sl haplo.em} computes maximum likelihood estimates of haplotype probabilities. Because there may be more than one pair of haplotypes that are consistent with the observed marker phenotypes, posterior probabilities of haplotype pairs for each subject are also computed. Unlike the usual EM which attempts to enumerate all possible haplotype pairs before iterating over the EM steps, our {\em progressive insertion} algorithm progressively inserts batches of loci into haplotypes of growing lengths, runs the EM steps, trims off pairs of haplotypes per subject when the posterior probability of the pair is below a specified threshold, and then continues these insertion, EM, and trimming steps until all loci are inserted into the haplotype. The user can choose the batch size. If the batch size is chosen to be all loci, and the threshold for trimming is set to 0, then this reduces to the usual EM algorithm. The basis of this progressive insertion algorithm is from the "snphap" software by David Clayton\cite{Clayton}. Although some of the features and control parameters of {\sl haplo.em} are modeled after {\sl snphap}, there are substantial differences, such as extension to allow for more than two alleles per locus, and some other nuances on how the algorithm is implemented. \subsection{Example Usage \label{hapEM}} We use {\sl haplo.em} on {\sl geno} for the 3 loci defined above and save the result in an object named {\sl save.em}, which has the {\sl haplo.em} class. The print method would normally print all 178 haplotypes from {\sl save.em}, but to keep the results short for this manual, we give a quick glance of the output by using the option {\sl nlines=10}, which prints only the first 10 haplotypes of the full results. The {\sl nlines} parameter has been employed in some of Haplo Stats' print methods for when there are many haplotypes. In practice, it is best to exclude this parameter so that the default will print all results. <>= set.seed(seed) @ <>= save.em <- haplo.em(geno=geno, locus.label=label, miss.val=c(0,NA)) names(save.em) print(save.em, nlines=10) @ \Explain The print methods shows the haplotypes and their estimated frequencies, followed by the final log-likelihood statistic and the {\sl lr stat for no LD}, which is the likelihood ratio test statistic contrasting the {\sl lnlike} for the estimated haplotype frequencies versus the {\sl lnlike} under the null assuming that alleles from all loci are in linkage equilibrium. We note that the trimming by the progressive insertion algorithm can invalidate the {\sl lr stat} and the degrees of freedom ({\sl df}).\\ \subsection{Summary Method} The {\sl summary} method for a {\sl haplo.em} object on {\sl save.em} shows the list of haplotypes per subject, and their posterior probabilities: <>= summary(save.em, nlines=7) @ \Explain The first part of the {\sl summary} output lists the subject id (row number of input {\sl geno} matrix), the codes for the haplotypes of each pair, and the posterior probabilities of the haplotype pairs. The second part gives a table of the maximum number of pairs of haplotypes per subject, versus the number of pairs used in the final posterior probabilities. The haplotype codes remove the clutter of illustrating all the alleles of the haplotypes, but may not be as informative as the actual haplotypes themselves. To see the actual haplotypes, use the {\sl show.haplo=TRUE} option, as in the following example. <>= # show full haplotypes, instead of codes summary(save.em, show.haplo=TRUE, nlines=7) @ \subsection{Control Parameters for {\sl haplo.em} \label{emControl}} A set of control parameters can be passed together to {\sl haplo.em} as the ``{\sl control}" argument. This is a list of parameters that control the EM algorithm based on progressive insertion of loci. The default values are set by a function called {\sl haplo.em.control} (see {\sl help(haplo.em.control)} for a complete description). Although the user can accept the default values, there are times when control parameters may need to be adjusted. These parameters are defined as: \begin{itemize} \item{} {\bf insert.batch.size:\ } Number of loci to be inserted in a single batch. \item{} {\bf min.posterior:\ } Minimum posterior probability of haplotype pair, conditional on observed marker genotypes. Posteriors below this minimum value will have their pair of haplotypes "trimmed" off the list of possible pairs. \item{}{\bf max.iter:\ } Maximum number of iterations allowed for the EM algorithm before it stops and prints an error. \item{}{\bf n.try:\ } Number of times to try to maximize the {\sl lnlike} by the EM algorithm. The first try will use, as initial starting values for the posteriors, either equal values or uniform random variables, as determined by {\sl random.start}. All subsequent tries will use uniform random values as initial starting values for the posterior probabilities. \item{}{\bf max.haps.limit:\ } Maximum number of haplotypes for the input genotypes. Within haplo.em, the first step is to try to allocate the sum of the result of geno.count.pairs(), if that exceeds max.haps.limit, start by allocating max.haps.limit. If that is exceeded in the progressive-insertions steps, the C function doubles the memory until it can longer request more. \end{itemize} One reason to adjust control parameters is for finding the global maximum of the log-likelihood. It can be difficult in particular for small sample sizes and many possible haplotypes. Different maximizations of the log-likelihood may result in different results from {\sl haplo.em}, {\sl haplo.score}, or {\sl haplo.glm} when rerunning the analyses. The algorithm uses multiple attempts to maximize the log-likelihood, starting each attempt with random starting values. To increase the chance of finding the global maximum of the log-likelihood, the user can increase the number of attempts ({\sl n.try}), increase the batch size ({\sl insert.batch.size}), or decrease the trimming threshold for posterior probabilities ({\sl min.posterior}). Another reason to adjust control parameters is when the algorithm runs out of memory because there are too many haplotypes. If {\sl max.haps.limit} is exceeded when a batch of markers is added, the algorithm requests twice as much memory until it runs out. One option is to set {\sl max.haps.limit} to a different value, either to make {\sl haplo.em} request more memory initially, or to request more memory in smaller chunks. Another solution is to make the algorithm trim the number of haplotypes more aggressively by decreasing {\sl insert.batch.size} or increasing {\sl min.posterior}. Any changes to these parameters should be made with caution, and not drastically different from the default values. For instance, the default for {\sl min.posterior} used to be $1e-7$, and in some rare circumstances with many markers in only moderate linkage disequilibrium, some subjects had all their possible haplotype pairs trimmed. The default is now set at $1e-9$, and we recommend not increasing {\sl min.posterior} much greater than $1e-7$. The example below gives the command for increasing the number of tries to $20$, and the batch size to $2$, since not much more can be done for three markers. <>= # demonstrate only the syntax of control parameters save.em.try20 <- haplo.em(geno=geno, locus.label=label, miss.val=c(0, NA), control = haplo.em.control(n.try = 20, insert.batch.size=2)) @ \subsection{Haplotype Frequencies by Group Subsets} To compute the haplotype frequencies for each level of a grouping variable, use the function {\sl haplo.group}. The following example illustrates the use of a binomial response based on {\sl resp.cat}, {\sl y.bin}, that splits the subjects into two groups. <>= set.seed(seed) @ <>= ## run haplo.em on sub-groups ## create ordinal and binary variables y.bin <- 1*(resp.cat=="low") group.bin <- haplo.group(y.bin, geno, locus.label=label, miss.val=0) print(group.bin, nlines=15) @ \Explain The {\sl group.bin} object can be very large, depending on the number of possible haplotypes, so only a portion of the output is illustrated above (limited again by {\sl nlines}). The first section gives a short summary of how many subjects appear in each of the groups. The second section is a table with the following columns: \begin{itemize} \item The first column gives row numbers. \item The next columns (3 in this example) illustrate the alleles of the haplotypes. \item {\sl Total} are the estimated haplotype frequencies for the entire data set. \item The last columns are the estimated haplotype frequencies for the subjects in the levels of the group variable ({\sl y.bin=0} and {\sl y.bin=1} in this example). Note that some haplotype frequencies have an {\sl NA}, which appears when the haplotypes do not occur in the subgroups. \end{itemize} \section{Power and Sample Size for Haplotype Association Studies\label{hapPower}} It is known that using haplotypes has greater power than single-markers to detect genetic association in some circumstances. There is little guidance, however, in determining sample size and power under different circumstances, some of which include: marker type, dominance, and effect size. The \package\ package now includes functions to calculate sample size and power for haplotype association studies, which is flexible to handle these multiple circumstances. Based on work in Schaid 2005\cite{Schaid 2005}, we can take a set of haplotypes with their population frequencies, assign a risk to a subset of the haplotypes, then determine either the sample size to achieve a stated power, or the power for a stated sample size. Sample size and power can be calculated for either quantitative traits or case-control studies. \subsection{Quantitative Traits: {\sl haplo.power.qt}\label{powerQT}} We assume that quantitative traits will be modeled by a linear regression. Some well-known tests for association between haplotypes and the trait include score statistics\cite{Schaid et al. 2002} and an F-test\cite{Zaykin}. For both types of tests, power depends on the amount of variance in the trait that is explained by haplotypes, or a multiple correlation coefficient, $R^{2}$. Rather than specifying the haplotype coefficients directly, we calculate the vector of coefficients based on an $R^{2}$ value. In the example below, we load an example set of haplotypes that contain 5 markers, and specify the indices of the at-risk haplotypes; in this case, whichever haplotype has allele $1$ at the 2nd and 3rd markers. We set the first haplotype (most common) as the baseline. With these values we calculate the vector of coefficients for haplotype effects from {\sl find.haplo.beta.qt} using an $R^{2}=0.01$. Next, we use {\sl haplo.power.qt} to calculate the sample size for the set of haplotypes and their coefficients, type-I error (alpha) set to $0.05$, power at 80\%, and the same mean and variance used to get haplotype coefficients. Then we use the sample size needed for 80\% power for un-phased haplotypes ($2,826$) to get the power for both phased and un-phased haplotypes. <>= # load a set of haplotypes (hap-1 from Schaid 2005) data(hapPower.demo) #### an example using save.em hla markers may go like this. # keep <- which(save.em$hap.prob > .004) # get an index of non-rare haps # hfreq <- save.em$hap.prob[keep] # hmat <- save.em$haplotype[keep,] # hrisk <- which(hmat[,1]==31 & hmat[,2]==11) # contains 3 haps with freq=.01 # hbase <- 4 # 4th hap has mas freq of .103 #### ## separate the haplotype matrix and the frequencies hmat <- hapPower.demo[,-6] hfreq <- hapPower.demo[,6] ## Define risk haplotypes as those with "1" allele at loc2 and loc3 hrisk <- which(hmat$loc.2==1 & hmat$loc.3==1) # define index for baseline haplotype hbase <- 1 hbeta.list <- find.haplo.beta.qt(haplo=hmat, haplo.freq=hfreq, base.index=hbase, haplo.risk=hrisk, r2=.01, y.mu=0, y.var=1) hbeta.list ss.qt <- haplo.power.qt(hmat, hfreq, hbase, hbeta.list$beta, y.mu=0, y.var=1, alpha=.05, power=.80) ss.qt power.qt <- haplo.power.qt(hmat, hfreq, hbase, hbeta.list$beta, y.mu=0, y.var=1, alpha=.05, sample.size=2826) power.qt @ \subsection{Case-Control Studies: {\sl haplo.power.cc} \label{powerCC}} The steps to compute sample size and power for case-control studies is similar to the steps for quantitative traits. If we assume a log-additive model for haplotype effects, the haplotype coefficients can be specified first as odds ratios (OR), and then converted to logistic regression coefficients according to $log(OR)$. In the example below, we assume the same baseline and risk haplotypes defined in section~\ref{powerQT}, give the risk haplotypes an odds ratio of 1.50, and specify a population disease prevalance of 10\%. We also assume cases make up 50\% ({\sl case.frac}) of the study\'s subjects. We first compute the sample size for this scenario for Type-I error (alpha) at $0.05$ and 80\% power, and then compute power for the sample size required for un-phased haplotypes ($4,566$). <>= ## get power and sample size for quantitative response ## get beta vector based on odds ratios cc.OR <- 1.5 # determine beta regression coefficients for risk haplotypes hbeta.cc <- numeric(length(hfreq)) hbeta.cc[hrisk] <- log(cc.OR) # Compute sample size for stated power ss.cc <- haplo.power.cc(hmat, hfreq, hbase, hbeta.cc, case.frac=.5, prevalence=.1, alpha=.05, power=.8) ss.cc # Compute power for given sample size power.cc <- haplo.power.cc(hmat, hfreq, hbase, hbeta.cc, case.frac=.5, prevalence=.1, alpha=.05, sample.size=4566) power.cc @ \section{Haplotype Score Tests: {\sl haplo.score} \label{hapScore}} The {\sl haplo.score} routine is used to compute score statistics to test association between haplotypes and a wide variety of traits, including binary, ordinal, quantitative, and Poisson. This function provides several different global and haplotype-specific tests for association and allows for adjustment for non-genetic covariates. Haplotype effects can be specified as additive, dominant, or recessive. This method also has an option to compute permutation p-values, which may be needed for sparse data when distribution assumptions may not be met. Details on the background and theory of the score statistics can be found in Schaid et al.\cite{Schaid et al. 2002}. \subsection{Quantitative Trait Analysis} First, we assess a haplotype association with a quantitative trait in {\sl hla.demo} called {\sl resp}. To tell {\sl haplo.score} the trait is quantitative, specify the parameter {\sl trait.type="gaussian"} (a reminder that a gaussian distribution is assumed for the error terms). The other arguments, all set to default values, are explained in the help file. Note that rare haplotypes can result in unstable variance estimates, and hence unreliable test statistics for rare haplotypes. We restrict the analysis to get scores for haplotypes with a minimum sample count using {\sl min.count=5}. For more explanation on handling rare haplotypes, see section~\ref{freqmin}. Below is an example of running {\sl haplo.score} with a quantitative trait, then viewing the results using the {\sl print} method for the {\sl haplo.score} class. (again, output shortened by {\sl nlines}). <>= set.seed(seed) @ <>= # score statistics w/ Gaussian trait score.gaus.add <- haplo.score(resp, geno, trait.type="gaussian", min.count=5, locus.label=label, simulate=FALSE) print(score.gaus.add, nlines=10) @ \Explain First, the model effect chosen by {\sl haplo.effect} is printed across the top. The section {\sl Global Score Statistics} shows results for testing an overall association between haplotypes and the response. The {\sl global-stat} has an asymptotic $\chi^{2}$ distribution, with degrees of freedom ({\sl df}) and {\sl p-value} as indicated. Next, {\sl Haplotype-specific scores} are given in a table format. The column descriptions are as follows: \begin{itemize} \item{} The first column gives row numbers. \item{} The next columns (3 in this example) illustrate the alleles of the haplotypes. \item{} {\sl Hap-Freq} is the estimated frequency of the haplotype in the pool of all subjects. \item{} {\sl Hap-Score} is the score for the haplotype, the results are sorted by this value. Note, the score statistic should not be interpreted as a measure of the haplotype effect. \item{} {\sl p-val} is the asymptotic $\chi^{2}_1$ p-value, calculated from the square of the score statistic. \end{itemize} \subsection{Binary Trait Analysis} Let us assume that "low" responders are of primary interest, so we create a binary trait that has values of 1 when {\sl resp.cat} is "low", and 0 otherwise. Then in {\sl haplo.score} specify the parameter {\sl trait.type="binomial"}. <>= set.seed(seed) @ <>= # scores, binary trait y.bin <- 1*(resp.cat=="low") score.bin <- haplo.score(y.bin, geno, trait.type="binomial", x.adj = NA, min.count=5, haplo.effect="additive", locus.label=label, miss.val=0, simulate=FALSE) print(score.bin, nlines=10) @ \subsection{Ordinal Trait Analysis} To create an ordinal trait, here we convert {\sl resp.cat} (described above) to numeric values, {\sl y.ord} (with levels 1, 2, 3). For {\sl haplo.score}, use {\sl y.ord} as the response variable, and set the parameter {\sl trait.type = "ordinal"}. <>= set.seed(seed) @ <>= # scores w/ ordinal trait y.ord <- as.numeric(resp.cat) score.ord <- haplo.score(y.ord, geno, trait.type="ordinal", x.adj = NA, min.count=5, locus.label=label, miss.val=0, simulate=FALSE) print(score.ord, nlines=7) @ \noindent{\bf \large Warning for Ordinal Traits \vspace{.06in}\\} When analyzing an ordinal trait with adjustment for covariates (using the {\sl x.adj} option), the software requires the {\sl rms} package, distributed by Frank Harrell \cite{Harrell}. If the user does not have these packages installed, then it will not be possible to use the {\sl x.adj} option. However, the unadjusted scores for an ordinal trait (using the default option {\sl x.adj=NA}) do not require these pacakgeses. Check the list of your local packages in the list shown from entering {\sl library()}\ in your prompt. \subsection{Haplotype Scores, Adjusted for Covariates} To adjust for covariates in {\sl haplo.score}, first set up a matrix of covariates from the example data. For example, use a column for male (1 if male; 0 if female), and a second column for age. Then pass the matrix to {\sl haplo.score} using parameter {\sl x.adj}. The results change slightly in this example. <>= set.seed(seed) @ <>= # score w/gaussian, adjusted by covariates x.ma <- cbind(male, age) score.gaus.adj <- haplo.score(resp, geno, trait.type="gaussian", x.adj = x.ma, min.count=5, locus.label=label, simulate=FALSE) print(score.gaus.adj, nlines=10) @ \subsection{Plots and Haplotype Labels} A convenient way to view results from {\sl haplo.score} is a plot of the haplotype frequencies ({\sl Hap-Freq}) versus the haplotype score statistics ({\sl Hap-Score}). This plot, and the syntax for creating it, are shown in Figure~\ref{scorePlot}. Some points on the plot may be of interest. To identify individual points on the plot, use \mbox{\sl locator.haplo(score.gaus)}, which is similar to {\sl locator()}. Use the mouse to select points on the plot. After points are chosen, click on the middle mouse button, and the points are labeled with their haplotype labels. Note, in constructing Figure~\ref{scorePlot}, we had to define which points to label, and then assign labels in the same way as done within the {\sl locator.haplo} function. \begin{figure}[h] \begin{center} <>= ## plot score vs. frequency, gaussian response plot(score.gaus.add, pch="o") ## locate and label pts with their haplotypes ## works similar to locator() function #> pts.haplo <- locator.haplo(score.gaus) pts.haplo <- list(x.coord=c(0.05098, 0.03018, .100), y.coord=c(2.1582, 0.45725, -2.1566), hap.txt=c("62:2:7", "51:1:35", "21:3:8")) text(x=pts.haplo$x.coord, y=pts.haplo$y.coord, labels=pts.haplo$hap.txt) @ \caption{Haplotype Statistics: Score vs. Frequency, Quantitative Response} \label{scorePlot} \end{center} \end{figure} \clearpage \subsection{Skipping Rare Haplotypes\label{freqmin}} For the {\sl haplo.score}, the {\sl skip.haplo} and {\sl min.count} parameters control which rare haplotypes are pooled into a common group. The {\sl min.count} parameter is a recent addition to {\sl haplo.score}, yet it does the same task as {\sl skip.haplo} and is the same idea as {\sl haplo.min.count} used in {\sl haplo.glm.control} for {\sl haplo.glm}. As a guideline, you may wish to set {\sl min.count} to calculate scores for haplotypes with expected haplotype counts of $5$ or greater in the sample. We concentrate on this expected count because it adjusts to the size of the input data. If $N$ is the number of subjects and $f$ the haplotype frequency, then the expected haplotype count is \mbox{$count=2 \times N \times f$}. Alternatively, you can choose \mbox{$skip.haplo= \frac{count}{2 \times N}$}. In the following example we try a different cut-off than before, {\sl min.count=10}, which corresponds to {\sl skip.haplo} of $10 \div (2 \times 220) = .045$. In the output, see that the global statistic, degrees of freedom, and p-value change because of the fewer haplotypes, while the haplotype-specific scores do not change. <>= set.seed(seed) @ <>= # increase skip.haplo, expected hap counts = 10 score.gaus.min10 <- haplo.score(resp, geno, trait.type="gaussian", x.adj = NA, min.count=10, locus.label=label, simulate=FALSE) print(score.gaus.min10) @ \subsection{Score Statistic Dependencies: the {\sl eps.svd} parameter \label{scoreEPS}} The global score test is calculated using the vector of scores and the generalized inverse of their variance-covariance matrix, performed by the {\sl Ginv} function. This function determines the rank of the variance matrix by its singular value decomposition, and an epsilon value is used as the cut-off for small singular values. If all of the haplotypes in the sample are scored, then there is dependence between them and the variance matrix is not of full rank. However, it is more often the case that one or more rare haplotypes are not scored because of low frequency. It is not clear how strong the dependencies are between the remaining score statistics, and likewise, there is disparity in calculating the rank of the variance matrix. For these instances we give the user control over the epsilon parameter for {\sl haplo.score} with {\sl eps.svd}. We have seen instances where the global score test had a very significant p-value, but none of the haplotype-specific scores showed strong association. In such instances, we found the default epsilon value in {\sl Ginv} was incorrectly considering the variance matrix as having full rank, and the misleading global score test was corrected with a larger epsilon for {\sl Ginv}. \subsection{Haplotype Model Effect \label{scoreEffect} } {\sl haplo.score} allows non-additive effects for scoring haplotypes. The possible effects for haplotypes are additive, dominant, and recessive. Under recessive effects, fewer haplotypes may be scored, because subjects are required to be homozygous for haplotypes. Furthermore, there would have to be {\sl min.count} such persons in the sample to have the recessive effect scored. Therefore, a recessive model should only be used on samples with common haplotypes. In the example below with the gaussian response, set the haplotype effect to dominant using parameter {\sl haplo.effect = ''dominant''}. Notice the results change slightly compared to the {\sl score.gaus.add} results above. <>= set.seed(seed) @ <>= # score w/gaussian, dominant effect score.gaus.dom <- haplo.score(resp, geno, trait.type="gaussian", x.adj=NA, min.count=5, haplo.effect="dominant", locus.label=label, simulate=FALSE) print(score.gaus.dom, nlines=10) @ \subsection{Simulation p-values \label{scoreSim}} When {\sl simulate=TRUE}, {\sl haplo.score} gives simulated p-values. Simulated haplotype score statistics are the re-calculated score statistics from a permuted re-ordering of the trait and covariates and the original ordering of the genotype matrix. The simulated p-value for the global score statistic (\mbox{\sl Global sim. p-val}) is the number of times the simulated global score statistic exceeds the observed, divided by the total number of simulations. Likewise, simulated p-value for the maximum score statistic (\mbox{\sl Max-stat sim. p-val}) is the number of times the simulated maximum haplotype score statistic exceeds the observed maximum score statistic, divided by the total number of simulations. The maximum score statistic is the maximum of the square of the haplotype-specific score statistics, which has an unknown distribution, so its significance can only be given by the simulated p-value. Intuitively, if only one or two haplotypes are associated with the trait, the maximum score statistic should have greater power to detect association than the global statistic. The {\sl score.sim.control} function manages control parameters for simulations. The {\sl haplo.score} function employs the simulation p-value precision criteria of Besag and Clifford\cite{Besag and Clifford 1991}. These criteria ensure that the simulated p-values for both the global and the maximum score statistics are precise for small p-values. The algorithm performs a user-defined minimum number of permutations ({\sl min.sim}) to guarantee sufficient precision for the simulated p-values for score statistics of individual haplotypes. Permutations beyond this minimum are then conducted until the sample standard errors for simulated p-values for both the {\sl global-stat} and {\sl max-stat} score statistics are less than a threshold \mbox{({\sl p.threshold * p-value})}. The default value for \mbox{{\sl p.threshold= $\frac{1}{4}$}} provides a two-sided 95\% confidence interval for the p-value with a width that is approximately as wide as the p-value itself. Effectively, simulations are more precise for smaller p-values. The following example illustrates computation of simulation p-values with {\sl min.sim=1000}. <>= set.seed(seed) @ <>= # simulations when binary response score.bin.sim <- haplo.score(y.bin, geno, trait.type="binomial", x.adj = NA, locus.label=label, min.count=5, simulate=TRUE, sim.control = score.sim.control() ) print(score.bin.sim) @ \section{Regression Models: {\sl haplo.glm} \label{hapGLM}} The {\sl haplo.glm} function computes the regression of a trait on haplotypes, and possibly other covariates and their interactions with haplotypes. We currently support the gaussian, binomial, and Poisson families of traits with their canonical link functions. The effects of haplotypes on the link function can be modeled as either additive, dominant (heterozygotes and homozygotes for a particular haplotype assumed to have equivalent effects), or recessive (homozygotes of a particular haplotype considered to have an alternative effect on the trait). The basis of the algorithm is a two-step iteration process; the posterior probabilities of pairs of haplotypes per subject are used as weights to update the regression coefficients, and the regression coefficients are used to update the haplotype posterior probabilities. See Lake et al.\cite{Lake et al. 2003} for details. \subsection{New and Updated Methods for haplo.glm} We initially wrote {\sl haplo.glm} with a focus on creating a basic print method for results. We have now refined the {\sl haplo.glm} class to look and act as much like a glm class object as possible with methods defined specifically for the {\sl haplo.glm} class. We provide print and summary methods that make use of the corresponding methods for glm and then add extra information for the haplotypes and their frequencies. Furthermore, we have defined for the {\sl haplo.glm} class some of the standard methods for regression fits, including residuals, fitted.values, vcov, and anova. We describe the challenges that haplotype regression presents with these methods in section~\ref{glmMethods}. \subsection{Preparing the {\sl data.frame} for {\sl haplo.glm} \label{glmSetup}} A critical distinction between {\sl haplo.glm} and all other functions in Haplo Stats is that the definition of the regression model follows the S/R formula standard (see {\sl lm} or {\sl glm}). So, a {\sl data.frame} must be defined, and this object must contain the trait and other optional covariates, plus a special kind of genotype matrix ({\sl geno.glm} for this example) that contains the genotypes of the marker loci. We require the genotype matrix to be prepared using {\sl setupGeno()}, which handles character, numeric, or factor alleles, and keeps the columns of the genotype matrix as a single unit when inserting into (and extracting from) a {\sl data.frame}. The {\sl setupGeno} function recodes all missing genotype value codes given by {\sl miss.val} to NA, and also recodes alleles to integer values. The original allele codes are preserved within an attribute of {\sl geno.glm}, and are utilized within {\sl haplo.glm}. The returned object has class {\sl model.matrix}, and it can be included in a {\sl data.frame} to be used in {\sl haplo.glm}. In the example below we prepare a genotype matrix, {\sl geno.glm}, and create a {\sl data.frame} object, {\sl glm.data}, for use in {\sl haplo.glm}. <>= # set up data for haplo.glm, include geno.glm, # covariates age and male, and responses resp and y.bin geno <- hla.demo[,c(17,18,21:24)] geno.glm <- setupGeno(geno, miss.val=c(0,NA), locus.label=label) attributes(geno.glm) y.bin <- 1*(resp.cat=="low") glm.data <- data.frame(geno.glm, age=age, male=male, y=resp, y.bin=y.bin) @ \subsection{Rare Haplotypes \label{rareHap}} The issue of deciding which haplotypes to use for association is critical in {\sl haplo.glm}. By default it will model a rare haplotype effect so that the effects of other haplotypes are in reference to the baseline effect of the one common happlotype. The rules for choosing haplotypes to be modeled in {\sl haplo.glm} are similar to the rules in {\sl haplo.score}: by a minimum frequency or a minimum expected count in the sample. Two control parameters in {\sl haplo.glm.control} may be used to control this setting: {\sl haplo.freq.min} may be set to a selected minimum haplotype frequency, and {\sl haplo.min.count} may be set to select the cut-off for minimum expected haplotype count in the sample. The default minimum frequency cut-off in {\sl haplo.glm} is set to $0.01$. More discussion on rare haplotypes takes place in section~\ref{controlRare}. \subsection{Regression for a Quantitative Trait \label{glmQuant}} The following illustrates how to fit a regression of a quantitative trait {\sl y} on the haplotypes estimated from the {\sl geno.glm} matrix, and the covariate {\sl male}. For {\sl na.action}, we use {\sl na.geno.keep}, which keeps a subject with missing values in the genotype matrix if they are not missing all alleles, but removes subjects with missing values ({\sl NA}) in either the response or covariate. <>= set.seed(seed) @ <>= # glm fit with haplotypes, additive gender covariate on gaussian response fit.gaus <- haplo.glm(y ~ male + geno.glm, family=gaussian, data=glm.data, na.action="na.geno.keep", locus.label = label, x=TRUE, control=haplo.glm.control(haplo.freq.min=.02)) summary(fit.gaus) @ \Explain The summary function for {\sl haplo.glm} shows much the same information as summary for glm objects with the extra table for the haplotype frequencies. The above table for {\sl Coefficients} lists the estimated regression coefficients ({\sl coef}), standard errors ({\sl se}), the corresponding t-statistics ({\sl t.stat}), and p-values ({\sl pval}). The labels for haplotype coefficients are a concatenation of the name of the genotype matrix ({\sl geno.glm}) and unique haplotype codes assigned within {\sl haplo.glm}. The haplotypes corresponding to these haplotype codes are listed in the {\sl Haplotypes} table, along with the estimates of the haplotype frequencies ({\sl hap.freq}). The rare haplotypes, those with expected counts less than \mbox{\sl haplo.min.count=5} (equivalent to having frequencies less than \mbox{{\sl haplo.freq.min =} %.01136 \Sexpr{5/(2*nrow(glm.data))}}) in the above example), are pooled into a single category labeled {\sl geno.glm.rare}. The haplotype chosen as the baseline category for the design matrix (most frequent haplotype is the default) is labeled as {\sl haplo.base}; more information on the baseline may be found in section \ref{glmBaseline}. {\subsection{Fitting Haplotype x Covariate Interactions} Interactions are fit by the standard S-language model syntax, using a '$*$' in the model formula to indicate main effects and interactions. Some other formula constructs are not supported, so use the formula parameter with caution. Below is an example of modeling the interaction of {\sl male} and the haplotypes. Because more terms will be estimated in this case, we limit how many haplotypes will be included by increasing {\sl haplo.min.count} to 10. <>= set.seed(seed) @ <>= # glm fit haplotypes with covariate interaction fit.inter <- haplo.glm(formula = y ~ male * geno.glm, family = gaussian, data=glm.data, na.action="na.geno.keep", locus.label = label, control = haplo.glm.control(haplo.min.count = 10)) summary(fit.inter) @ \Explain The listed results are as explained under section~\ref{glmQuant}. The main difference is that the interaction coefficients are labeled as a concatenation of the covariate ({\sl male} in this example) and the name of the haplotype, as described above. In addition, estimates may differ because the model has changed. \subsection{Regression for a Binomial Trait \label{glmBinom}} Next we illustrate the fitting of a binomial trait with the same genotype matrix and covariate. <>= set.seed(seed) @ <>= # gender and haplotypes fit on binary response, # return model matrix fit.bin <- haplo.glm(y.bin ~ male + geno.glm, family = binomial, data=glm.data, na.action = "na.geno.keep", locus.label=label, control = haplo.glm.control(haplo.min.count=10)) summary(fit.bin) @ \Explain The underlying methods for {\sl haplo.glm} are based on a prospective likelihood. Normally, this type of likelihood works well for case-control studies with standard covariates. For ambiguous haplotypes, however, one needs to be careful when interpreting the results from fitting {\sl haplo.glm} to case-control data. Because cases are over-sampled, relative to the population prevalence (or incidence, for incident cases), haplotypes associated with disease will be over-represented in the case sample, and so estimates of haplotype frequencies will be biased. Positively associated haplotypes will have haplotype frequency estimates that are higher than the population haplotype frequency. To avoid this problem, one can weight each subject. The weights for the cases should be the population prevalence, and the weights for controls should be 1 (assuming the disease is rare in the population, and controls are representative of the general population). See Stram et al.\cite{Stram et al. 2003} for background on using weights, and see the help file for {\sl haplo.glm} for how to implement weights. The estimated regression coefficients for case-control studies can be biased by either a large amount of haplotype ambiguity and mis-specified weights, or by departures from Hardy-Weinberg Equilibrium of the haplotypes in the pool of cases and controls. Generally, the bias is small, but tends to be towards the null of no association. See Stram et al. \cite{Stram et al. 2003} and Epstein and Satten \cite{Epstein and Satten 2003} for further details. \subsubsection{Caution on Rare Haplotypes with Binomial Response \label{rarebinom}} If a rare haplotype occurs only in cases or only in controls, the fitted values would go to 0 or 1, where R would issue a warning. Also, the coefficient estimate for that haplotype would go to positive or negative infinity, If the default {\sl haplo.min.count=5} were used above, this warning would appear. To keep this from occuring in other model fits, increase the minimum count or minimum frequency. \subsection{Control Parameters \label{glmControl}} Additional parameters are handled using {\sl control}, which is a list of parameters providing additional functionality in {\sl haplo.glm}. This list is set up by the function {\sl haplo.glm.control}. See the help file ({\sl help(haplo.glm.control)}) for a full list of control parameters, with details of their usage. Some of the options are described here. \subsubsection{Controlling Genetic Models: {\sl haplo.effect}} The {\sl haplo.effect} control parameter for {\sl haplo.glm} instructs whether the haplotype effects are fit as additive, dominant, or recessive. That is, {\sl haplo.effect} determines whether the covariate ($x$) coding of haplotypes follows the values in Table 1 for each effect type. Heterozygous means a subject has one copy of a particular haplotype, and homozygous means a subject has two copies of a particular haplotype. \\ \\ \\ \\ \noindent {\bf Table 1:} Coding haplotype covariates in a model matrix\\ \begin{center} \begin{tabular}{|r|c|c|c|} \hline Hap - Pair & additive & dominant & recessive\\ \hline \hline Heterozygous & 1 & 1 & 0 \\ \hline Homozygous & 2 & 1 & 1 \\ \hline \end{tabular} \end{center} \noindent Note that in a recessive model, the haplotype effects are estimated only from subjects who are homozygous for a haplotype. Some of the haplotypes which meet the {\sl haplo.freq.min} and {\sl haplo.count.min} cut-offs may occur as homozygous in only a few of the subjects. As stated in \ref{scoreEffect}, recessive models should be used when the region has multiple common haplotypes. The default {\sl haplo.effect} is {\sl additive}, whereas the example below illustrates the fit of a {\sl dominant} effect of haplotypes for the gaussian trait with the gender covariate. <>= set.seed(seed) @ <>= # control dominant effect of haplotypes (haplo.effect) # by using haplo.glm.control fit.dom <- haplo.glm(y ~ male + geno.glm, family = gaussian, data = glm.data, na.action = "na.geno.keep", locus.label = label, control = haplo.glm.control(haplo.effect='dominant', haplo.min.count=8)) summary(fit.dom) @ \subsubsection{Selecting the Baseline Haplotype \label {glmBaseline} } The haplotype chosen for the baseline in the model is the one with the highest frequency. Sometimes the most frequent haplotype may be an at-risk haplotype, and so the measure of its effect is desired. To specify a more appropriate haplotype as the baseline in the binomial example, choose from the list of other common haplotypes, {\sl fit.bin\$haplo.common}. To specify an alternative baseline, such as haplotype 77, use the control parameter {\sl haplo.base} and haplotype code, as in the example below. <>= set.seed(seed) @ <>= # control baseline selection, perform the same exact run as fit.bin, # but different baseline by using haplo.base chosen from haplo.common fit.bin$haplo.common fit.bin$haplo.freq.init[fit.bin$haplo.common] fit.bin.base77 <- haplo.glm(y.bin ~ male + geno.glm, family = binomial, data = glm.data, na.action = "na.geno.keep", locus.label = label, control = haplo.glm.control(haplo.base=77, haplo.min.count=8)) summary(fit.bin.base77) @ \Explain The above model has the same haplotypes as {\sl fit.bin}, except haplotype $4$, the old baseline, now has an effect estimate while haplotype $77$ is the new baseline. Due to randomness in the starting values of the haplotype frequency estimation, different runs of {\sl haplo.glm} may result in a different set of haplotypes meeting the minimum counts requirement for being modeled. Therefore, once you have arrived at a suitable model, and you wish to modify it by changing baseline and/or effects, you can make results consistent by controlling the randomness using {\sl set.seed}, as described in section \ref{seed}. In this document, we use the same seed before making {\sl fit.bin} and {\sl fit.bin.base77}. \subsubsection{Rank of Information Matrix and eps.svd ({\bf NEW}) \label{glmSVD}} Similar to recent additions to {\sl haplo.score} in section~\ref{scoreEPS}, we give the user control over the epsilon parameter determining the number of singular values when determining the rank of the information matrix in {\sl haplo.glm}. Finding the generalized inverse of this matrix can be problematic when either the response variable or a covariate has a large variance and is not scaled before passed to {\sl haplo.glm}. The rank of the information matrix is determined by the number of non-zero singular values a small cutoff, epsilon. When the singular values for the coefficients are on a larger numeric scale than those for the haplotype frequencies, the generalized inverse may incorrectly determine the information matrix is not of full rank. Therefore, we allow the user to specify the epsilon as {\sl eps.svd} in the control parameters for {\sl haplo.glm}. A simpler fix, which we strongly suggest, is for the user to pre-scale any continuous responses or covariates with a large variance. Here we demonstrate what happens when we increase the variance of a gaussian response by $2500$. We see that the coefficients are all highly significant and the rank of the information matrix is much smaller than the scaled gaussian fit. <>= set.seed(seed) @ <>= glm.data$ybig <- glm.data$y*50 fit.gausbig <- haplo.glm(formula = ybig ~ male + geno.glm, family = gaussian, data = glm.data, na.action = "na.geno.keep", locus.label = label, control = haplo.glm.control(haplo.freq.min = 0.02), x = TRUE) summary(fit.gausbig) fit.gausbig$rank.info fit.gaus$rank.info @ Now we set a smaller value for the {\sl eps.svd} control parameter and find the fit matches the original Gaussian fit. <>= set.seed(seed) @ <>= fit.gausbig.eps <- haplo.glm(formula = ybig ~ male + geno.glm, family = gaussian, data = glm.data, na.action = "na.geno.keep", locus.label = label, control = haplo.glm.control(eps.svd=1e-10, haplo.freq.min = 0.02), x = TRUE) summary(fit.gausbig.eps) fit.gausbig.eps$rank.info @ \subsubsection{Rare Haplotypes and {\sl haplo.min.info} \label{controlRare}} Another notable control parameter is the minimum frequency for a rare haplotype to be included in the calculations for standard error (se) of the coefficients, or {\sl haplo.min.info}. The default value is $0.001$, which means that haplotypes with frequency less than that will be part of the rare haplotype coefficient estimate, but it will not be used in the standard error calculation. The following example demonstrates a possible result when dealing with the rare haplotype effect. We show with the hla genotype data one consequence for when this occurs. However, we make it happen by setting {\sl haplo.freq.min} equal to {\sl haplo.min.info}, which we advise strongly against in your analyses. <>= set.seed(seed) @ <>= ## set haplo.freq.min and haplo.min.info to same value to show how the ## rare coefficient may be modeled but standard error estimate is not ## calculated because all haps are below haplo.min.info ## warning expected fit.bin.rare02 <- haplo.glm(y.bin ~ geno.glm, family = binomial, data = glm.data, na.action = "na.geno.keep", locus.label = label, control = haplo.glm.control(haplo.freq.min=.02, haplo.min.info=.02)) summary(fit.bin.rare02) @ \Explain The above results show the standard error for the rare haplotype coefficient is ``NaN'', or ``Not a Number'' in R, which is a consequence of having most, or all, of the rare haplotypes discarded for the standard error estimate. In other datasets there may be only a few haplotypes between {\sl haplo.min.info} and {\sl haplo.freq.min}, and may yield misleading results for the rare haplotype coefficient. For this reason, we recommend that any inference made on the rare haplotypes be made with caution, if at all. \section{Methods for {\sl haplo.glm} {\bf (NEW)} \label{glmMethods}} The latest updates to \package\ is our work to make {\sl haplo.glm} to act similar to a glm object with methods to compare and assess model fits. In this section we describe the challenges and caveats of defining these methods for a {\sl haplo.glm} object and show how to use them. \subsection{fitted.values} A challenge when defining methods for {\sl haplo.glm} is that we account for the ambiguity in a person's haplotype pair. To handle this in the glm framework, the response and non-haplotype covariates are expanded for each person with a posterior probability of the haplotype given their genotype as a weight. The returned object from {\sl haplo.glm} looks somewhat like a regular glm, but the model matrix, response, and thus the fitted values, are all expanded. Users who want to work with the expanded versions of those items are welcome to access them from the returned object. We now provide a method to get the fitted values for each person, {\sl fitted.haplo.glm}. These collapsed fitted values are calculated by a weighted sum of the expanded fitted values for each person where the weights are the posterior probabilities of the person's expanded haplotype pairs. \subsection{residuals} The residuals within the {\sl haplo.glm} object are also expanded for the haplotype pairs for subjects. We provide {\sl residuals.haplo.glm} to get the collapsed deviance, pearson, working, and response residuals for each person. Because we have not implemented a predict method for {\sl haplo.glm}, the method does not calculate partial residuals. \subsection{vcov} We provide {\sl vcov.haplo.glm} as a method to get the variance-covariance matrix of model parameters in the {\sl haplo.glm} object. Unlike the standard glm object, this matrix is computed and retained in the returned object. We do this because the model parameters are the model coefficients and the haplotype frequencies, and it is computationally-intensive to compute. We show how to get the variance matrix for all the parameters and for only the model coefficients. <>= varmat <- vcov(fit.gaus) dim(varmat) varmat <- vcov(fit.gaus, freq=FALSE) dim(varmat) print(varmat, digits=2) @ \subsection{anova and Model Comparison} We use the {\sl anova.glm} method as a framework for {\sl anova.haplo.glm} to allow comparisons of model fits. We limit the model comparisons to multiple nested model fits, which requires that each model to be compared is either a {\sl haplo.glm} or {\sl glm} fitted object. We eliminate the functionality of testing sub-models of a single fit because removal of a single covariate would require re-fitting of the reduced model to get updated coefficient and haplotype frequency estimates with a maximized log-likelihood. We decided to simplify the usage and require that all models to be compared are fully fitted. As with the {\sl anova.glm} method, it is difficult to check for truly nested models, so we pass the responsibility on to the user. We discuss some of the requirements. One type of two-model comparison is between models with haplotypes (expanded subjects) and a reduced model without haplotypes. We check for the same sample size in these models by comparing the collapsed sample size from a {\sl haplo.glm} fit to the sample size from the {\sl glm} fit, which we remind users is only a loose check of model comparability. The other comparison of two models in {\sl anova.haplo.glm} is to compare two models that contain the same genotypes, and inherently the same haplotypes. This is more tricky because a subject may not have the same expanded set of possible haplotype pairs across two fits of {\sl haplo.glm} unless the same seed is set before both fits. Even if a seed is the same, the other effects that are different between the two models will affect the haplotype frequency estimates, and may still result in a different expansion of haplotype pairs per subject. Our check of the collapsed sample size for the two models still applies with the same pitfalls, but a better assurance of model comparability is to use the same seed. In the {\sl haplo.glm} fit we provide the likelihood ratio test of the null model against the full model, which is the most appropriate test available for {\sl haplo.glm} objects, but it is difficult to compare the log-likeihood across two {\sl haplo.glm} fits. Therefore, we remain consistent with glm model comparison \cite{McCullaghNelder}, and use the difference in deviance to compare models. Furthermore, we restrict the asymptotic test for model comparison to be the $\chi^{2}$ test for goodness of fit. Below we show how to get the LRT from the {\sl fit.gaus} result, then show how to compare some of the nested models fit above, including a regular glm fit of $y \sim male$. The anova method requires the nested model to be given first, and any anova with a {\sl haplo.glm} object should explicitly call {\sl anova.haplo.glm}. <>= fit.gaus$lrt glmfit.gaus <- glm(y~male, family="gaussian", data=glm.data) anova.haplo.glm(glmfit.gaus, fit.gaus) anova.haplo.glm(fit.gaus, fit.inter) anova.haplo.glm(glmfit.gaus, fit.gaus, fit.inter) @ \section{Extended Applications} The following functions are designed to wrap the functionality of the major functions in Haplo Stats into other useful applications. \subsection{Combine Score and Group Results: {\sl haplo.score.merge}} When analyzing a qualitative trait, such as binary, it can be helpful to align the results from {\sl haplo.score} with {\sl haplo.group}. To do so, use the function {\sl haplo.score.merge}, as illustrated in the following example: <>= # merge haplo.score and haplo.group results merge.bin <- haplo.score.merge(score.bin, group.bin) print(merge.bin, nlines=10) @ \Explain The first column is a row index, the next columns (3 in this example) illustrate the haplotype, the {\sl Hap.Score} column is the score statistic and {\sl p.val} the corresponding $ \chi^{2} $ p-value. {\sl Hap.Freq} is the haplotype frequency for the total sample, and the remaining columns are the estimated haplotype frequencies for each of the group levels ({\sl y.bin} in this example). The default print method only prints results for haplotypes appearing in the {\sl haplo.score} output. To view all haplotypes, use the print option {\sl all.haps=TRUE}, which prints all haplotypes from the {\sl haplo.group} output. The output is ordered by the score statistic, but the {\sl order.by} parameter can specify ordering by haplotypes or by haplotype frequencyies. \subsection{Case-Control Haplotype Analysis: {\sl haplo.cc} \label{hapCC} } We provide {\sl haplo.cc} to run and combine the results of {\sl haplo.score}, {\sl haplo.group}, and {\sl haplo.glm} for case-control data. The function peforms a score test and a glm on the same haplotypes. The parameters that determine which haplotypes are used are {\sl haplo.min.count} and {\sl haplo.freq.min}, which are set in the {\sl control} parameter, as done for {\sl haplo.glm}. Below we run {\sl haplo.cc} setting the minimum haplotype frequency at $0.02$. The print results are shown, in addition to the names of the objects stored in the {\sl cc.hla} result. <>= set.seed(seed) @ <>= # demo haplo.cc where haplo.min.count is specified # use geno, and this function prepares it for haplo.glm y.bin <- 1*(hla.demo$resp.cat=="low") cc.hla <- haplo.cc(y=y.bin, geno=geno, locus.label = label, control=haplo.glm.control(haplo.freq.min=.02)) print(cc.hla, nlines=25, digits=2) names(cc.hla) @ \Explain First, from the names function we see that {\sl cc.hla} also contains {\sl score.lst} and {\sl fit.lst}, which are the {\sl haplo.score} and {\sl haplo.glm} objects, respectively. For the printed results of {\sl haplo.cc}, first are the global statistics from {\sl haplo.score}, followed by cell counts for cases and controls. The last portion of the output is a data frame containing combined results for individual haplotypes: \begin{itemize} \item{} {\bf Hap-Score:}{\ haplotype score statistic} \item{} {\bf p-val:}{\ haplotype score statistic p-value} \item{} {\bf sim p-val:}{\ (if simulations performed) simulated p-value for the haplotype score statistic} \item{} {\bf pool.hf:}{\ haplotype frequency for the pooled sample} \item{} {\bf control.hf:}{\ haplotype frequencies for the control sample only} \item{} {\bf case.hf:}{\ haplotype frequencies for the case sample only} \item{} {\bf glm.eff:}{\ one of three ways the haplotype appeared in the glm model: {\sl Eff}: modeled as an effect; {\sl Base}: part of the baseline; and {\sl R}: a rare haplotype, included in the effect of pooled rare haplotypes} \item{} {\bf OR.lower:}{\ Odds Ratio confidence interval lower limit} \item{} {\bf OR:}{\ Odds Ratio for each effect in the model} \item{} {\bf OR.upper:}{\ Odds Ratio confidence interval upper limit} \end{itemize} Significance levels are indicated by the p-values for the score statistics, and the odds ratio (OR) confidence intervals for the haplotype effects. Note that the Odds Ratios are effect sizes of haplotypes, assuming haplotype effects are multiplicative. Since this last table has many columns, lines are wrapped in the output in this manual. You can align wrapped lines by the haplotype code which appears on the far left. Alternatively, instruct the print function to only print {\sl digits} significant digits, and set the width settings for output in your session using the {\sl options()} function. \subsection{Score Tests on Sub-Haplotypes: {\sl haplo.score.slide}} To evaluate the association of sub-haplotypes (subsets of alleles from the full haplotype) with a trait, the user can evaluate a "window" of alleles by {\sl haplo.score}, and slide this window across the entire haplotype. This procedure is implemented by the function {\sl haplo.score.slide}. To illustrate this method, we use all 11 loci in the demo data, {\sl hla.demo}. First, make the geno matrix and the locus labels for the 11 loci. Then use {\sl haplo.score.slide} for a window of 3 loci ({\sl n.slide=3}), which will slide along the haplotype for all 9 contiguous subsets of size 3, using the previously defined gaussian trait {\sl resp}. <>= set.seed(seed) @ <>= # haplo.score on 11 loci, slide on 3 consecutive loci at a time geno.11 <- hla.demo[,-c(1:4)] label.11 <- c("DPB","DPA","DMA","DMB","TAP1","TAP2","DQB","DQA","DRB","B","A") score.slide.gaus <- haplo.score.slide(hla.demo$resp, geno.11, trait.type = "gaussian", n.slide=3, min.count=5, locus.label=label.11) print(score.slide.gaus) @ \Explain The first column is the row index of the nine calls to {\sl haplo.score}, the second column is the number of the starting locus of the sub-haplotype, the third column is the global score statistic p-value for each call. The last two columns are the simulated p-values for the global and maximum score statistics, respectively. If you specify {\sl simulate=TRUE} in the function call, the simulated p-values would be present. \subsubsection{Plot Results from {\sl haplo.score.slide}} The results from {\sl haplo.score.slide} can be easily viewed in a plot shown in Figure~\ref{slidePlot} below. The x-axis has tick marks for each locus, and the y-axis is the $ -log_{10}(pval) $. To select which p-value to plot, use the parameter pval, with choices "{\sl global}", "{\sl global.sim}", and "{\sl max.sim}" corresponding to p-values described above. If the simulated p-values were not computed, the default is to plot the global p-values. For each p-value, a horizontal line is drawn at the height of $ -log_{10}(pval) $\ across the loci over which it was calculated. For example, the p-value {\sl score.global.p = 0.009963} for loci 8-10 is plotted as a horizontal line at $ y=2.002 $ spanning the $8^{th}$, $9^{th}$, and $10^{th}$ x-axis tick marks. \begin{figure}[ht] <>= # plot global p-values for sub-haplotypes from haplo.score.slide plot.haplo.score.slide(score.slide.gaus) @ \caption{Global p-values for sub-haplotypes; Gaussian Response} \label{slidePlot} \end{figure} \clearpage \subsection{Scanning Haplotypes Within a Fixed-Width Window: {\sl haplo.scan}} Another method to search for a candidate locus within a genome region is {\sl haplo.scan}, an implementation of the method proposed in Cheng et al. 2005 \cite{Cheng2005}. This method searches for a region for which the haplotypes have the strongest association with a binary trait by sliding a window of fixed width over each marker locus, and then scans over all haplotype lengths within each window. This latter step, scanning over all possible haplotype lengths within a window, distinguishes {\sl haplo.scan} from {\sl haplo.score.slide} (which considers only the maximum haplotype length within a window). To account for unknown linkage phase, the function {\sl haplo.em} is called prior to scanning, to create a list of haplotype pairs and posterior probabilities. To illustrate the scanning window, consider a 10-locus dataset. When placing a window of width 3 over locus 5, the possible haplotype lengths that contain locus 5 are three (loci 3-4-5, 4-5-6, and 5-6-7), two (loci 4-5 and 5-6) and one (locus 5). For each of these loci subsets a score statistic is computed, which is based on the difference between the mean vector of haplotype counts for cases and that for controls. The maximum of these score statistics, over all possible haplotype lengths within a window, is the locus-specific test statistic, or the locus scan statistic. The global test statistic is the maximum over all computed score statistics. To compute p-values, the case/control status is randomly permuted. Below we run {\sl haplo.scan} on the 11-locus HLA dataset with a binary response and a window width of $3$, but first we use the results of {\sl summaryGeno} to choose subjects with less than $50,000$ haplotype pairs to speed calculations with all $11$ polymorphic loci with many missing alleles. <>= set.seed(seed) @ <<>= geno.11 <- hla.demo[,-c(1:4)] y.bin <- 1*(hla.demo$resp.cat=="low") hla.summary <- summaryGeno(geno.11, miss.val=c(0,NA)) # track those subjects with too many possible haplotype pairs ( > 50,000) many.haps <- (1:length(y.bin))[hla.summary[,4] > 50000] # For speed, or even just so it will finish, make y.bin and geno.scan # for genotypes that don't have too many ambigous haplotypes geno.scan <- geno.11[-many.haps,] y.scan <- y.bin[-many.haps] # scan haplotypes for regions within width of 3 for each locus. # test statistic measures difference in haplotype counts in cases and controls # p-values are simulated for each locus and the maximum statistic, # we do 100 simuations here, should use default settings for analysis scan.hla <- haplo.scan(y.scan, geno.scan, width=3, sim.control=score.sim.control(min.sim=100, max.sim=100), em.control=haplo.em.control()) print(scan.hla) @ \Explain In the output we report the simulated p-values for each locus test statistic. Additionally, we report the loci (or locus) which provided the maximum observed test statistic, and the {\sl Max-Stat Simulated Global p-value} is the simulated p-value for that maximum statistic. We print the number of simulations, because they are performed until p-value precision criteria are met, as described in section~\ref{scoreSim}. We would typically allow simulations to run under default parameters rather than limiting to $100$ by the control parameters. \subsection{Sequential Haplotype Scan Methods: {\sl seqhap} \label{seqhap}} Another approach for choosing loci for haplotype associations is {\sl seqhap}, as described in Yu and Schaid, 2007 \cite{Yu}. The {\sl seqhap} method performs three tests for association of a binary trait over a set of bi-allelic loci. When evaluating each locus, loci close to it are added in a sequential manner based on the Mantel-Haenszel test \cite{Mantel}. For each marker locus, three tests are provided: \begin{itemize} \item{\bf single locus}, the traditional single-locus $\chi^{2}_1$ test of association, \item{\bf sequential haplotype}, based on a haplotype test for sequentially chosen loci, \item{\bf sequential sum}, based on the sum of a series of conditional $\chi^{2}$ statistics. \end{itemize} All three tests are assessed for significance with permutation p-values, in addition to the asymptotic p-value. The point-wise p-value for a statistic at a locus is the fraction of times that the statistic for the permuted data is larger than that for the observed data. The regional p-value is the chance of observing a permuted test statistic, maximized over a region, that is greater than that for the observed data. Similar to the permutation p-values in {\sl haplo.score} as described in section \ref{scoreSim}, permutations are performed until a precision threshold is reached for the regional p-values. A minimum and maximum number of permutations specified in the {\sl sim.control} parameter list ensure a certain accuracy is met for every simulation p-value, yet having a limit to avoid infinite run-time. Below is an example of using {\sl seqhap} on data with case-control response for a chromosome region. First set up the binary response, y, with 0=control, 1=case, then a genotype matrix with two columns per locus, and a vector of chromosome positions. The genotype data is available in the {\sl seqhap.dat} dataset while the chromosome positions are in {\sl seqhap.pos}. The following example runs {\sl seqhap} with default settings for permutations and threshold parameters. <>= set.seed(seed) @ <>= # define binary response and genotype matrix data(seqhap.dat) data(seqhap.pos) y <- seqhap.dat$disease geno <- seqhap.dat[,-1] # get vector with chrom position pos <- seqhap.pos$pos seqhap.out <- seqhap(y=y, geno=geno, pos=pos, miss.val=c(0,NA), r2.threshold=.95, mh.threshold=3.84) seqhap.out$n.sim print(seqhap.out) @ \Explain The output above first shows {\sl n.sim}, the number of permutations needed for precision on the regional p-values. Next, in the printed results, the first section ({\sl Single-locus Chi-square Test}) shows a table with columns for single-locus tests. The table includes test statistics, permuted p-values, and asymptotic p-values based on a $\chi^{2}_1$ distribution. The second section ({\sl Sequential Scan}) shows which loci are combined for association. In this example, the table shows the first locus is not combined with other loci, whereas the second locus is combined with loci 3, 4, and 5. The third section ({\sl Sequential Haplotype Test}), shows the test statistics for the sequential haplotype method with degrees of freedom and permuted and asymptotic p-values. The fourth section ({\sl Sequential Sum Test}) shows similar information for the sequential sum tests. \subsubsection{Plot Results from {\sl seqhap}} The results from {\sl seqhap} can be viewed in a useful plot shown in Figure~\ref{seqhapPlot}. The plot is similar to the plot for {\sl haplo.score.slide} results, with the x-axis having tick marks for all loci and the y-axis is the -log10() of p-value for the tests performed. For the sequential result for each locus, a horizontal line at the height of -log10(p-value) is drawn across the loci combined. The start locus is indicated by a filled triangle and other loci combined with the start locus are indicated by an asterisk or circle. The choices for pval include {\sl "hap"} (sequential haplotype asymptotic p-value), {\sl "hap.sim"} (sequential haplotype simulated p-value), {\sl "sum"} (sequential sum asymptotic p-value), and {\sl "sum.sim"} (sequential sum simulated p-value). The other parameter option is {\sl single}, indicating whether to plot a line for the single-locus tests. \begin{figure}[tpb] <>= # plot global p-values for sub-haplotypes from haplo.score.slide plot(seqhap.out, pval="hap", single=TRUE, las=2) @ \caption{Plot p-values for sequential haplotype scan and single-locus tests} \label{seqhapPlot} \end{figure} \clearpage \subsection{Creating Haplotype Effect Columns: {\sl haplo.design} \label{hapDesign}} In some instances, the desired model for haplotype effects is not possible with the methods given in {\sl haplo.glm}. Examples include modeling just one haplotype effect, or modeling an interaction of haplotypes from different chromosomes, or analyzing censored data. To circumvent these limitations, we provide a function called {\sl haplo.design}, which will set up an expected haplotype design matrix from a {\sl haplo.em} object, to create columns that can be used to model haplotype effects in other modeling functions. The function {\sl haplo.design} first creates a design marix for all pairs of haplotypes over all subjects, and then uses the posterior probabilities to create a weighted average contribution for each subject, so that the number of rows of the final design matrix is equal to the number of subjects. This is sometimes called the expectation-substitution method, as proposed by Zaykin et al. 2002 \cite{Zaykin}, and using this haplotype design matrix in a regression model is asymptotically equivalent to the score statistics from {\sl haplo.score} (Xie and Stram 2005 \cite{XieStram}). Although this provides much flexibility, by using the design matrix in any type of regression model, the estimated regression parameters can be biased toward zero (see Lin and Zeng, 2006 \cite{LinZeng} for concerns about the expectation-substitution method). In the first example below, using default parameters, the returned data.frame contains a column for each haplotype that meets a minimum count in the sample {\sl min.count}. The columns are named by the code they are assigned in {\sl haplo.em}. <>= # create a matrix of haplotype effect columns from haplo.em result hap.effect.frame <- haplo.design(save.em) names(hap.effect.frame) hap.effect.frame[1:10,1:8] @ Additionally, {\sl haplo.design} gives the user flexibility to make a more specific design matrix with the following parameters: \begin{itemize} \item{}{\bf hapcodes:\ }{codes assigned in the {\sl haplo.em} object, the only haplotypes to be made into effects} \item{}{\bf haplo.effect:\ }{the coding of haplotypes as additive, dominant, or recessive} \item{}{\bf haplo.base:\ }{code for the baseline haplotype} \item{}{\bf min.count:\ }{minimum haplotype count} \end{itemize} This second example below creates columns for specific haplotype codes that were most interesting in {\sl score.gaus.add}, haplotypes with alleles 21-3-8 and 62-2-7, corresponding to codes 4 and 138 in {\sl haplo.em}, respectively. Assume we want to test their individual effects when they are coded with {\sl haplo.effect=''dominant''}. <>= # create haplotype effect cols for haps 4 and 138 hap4.hap138.frame <- haplo.design(save.em, hapcodes=c(4,138), haplo.effect="dominant") hap4.hap138.frame[1:10,] dat.glm <- data.frame(resp, male, age, hap.4=hap4.hap138.frame$hap.4, hap.138=hap4.hap138.frame$hap.138) glm.hap4.hap138 <- glm(resp ~ male + age + hap.4 + hap.138, family="gaussian", data=dat.glm) summary(glm.hap4.hap138) @ \pagebreak \section{License and Warranty} \noindent License:\linebreak \noindent Copyright 2003 Mayo Foundation for Medical Education and Research. \linebreak \noindent This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.\\ \noindent This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. \\ \noindent You should have received a copy of the GNU General Public License along with this program; if not, write to \\ \noindent Free Software Foundation, Inc. \\ 59 Temple Place, Suite 330 \\ Boston, MA 02111-1307 USA \\ \noindent For other licensing arrangements, please contact Daniel J. Schaid.\\ Daniel J. Schaid, Ph.D.\\ Division of Biostatistics\\ Harwick Building - Room 775\\ Mayo Clinic\\ 200 First St., SW\\ Rochester, MN 55905\\ phone: 507-284-0639\\ fax:\ \ \ 507-284-9542\\ email: schaid@mayo.edu\\ \section{Acknowledgements} This research was supported by United States Public Health Services, National Institutes of Health; Contract grant numbers R01 DE13276, R01 GM 65450, N01 AI45240, and R01 2AI33144. The {\sl hla.demo} data is kindly provided by Gregory A. Poland, M.D. and the Mayo Vaccine Research Group for illustration only, and may not be used for publication. \pagebreak \appendix \noindent{\large {\bf Appendix}} \section{Counting Haplotype Pairs When Marker Phenotypes Have Missing Alleles} The following describes the process for counting the number of haplotype pairs that are consistent with a subject's observed marker phenotypes, allowing for some loci with missing data. Note that we refer to marker phenotypes, but our algorithm is oriented towards typical markers that have a one-to-one correspondence with their genotypes. We first describe how to count when none of the loci have missing alleles, and then generalize to allow loci to have either one or two missing alleles. When there are no missing alleles, note that homozygous loci are not ambiguous with respect to the underlying haplotypes, because at these loci the underlying haplotypes will not differ if we interchange alleles between haplotypes. In contrast, heterozygous loci are ambiguous, because we do not know the haplotype origin of the distinguishable alleles (i.e., unknown linkage phase). However, if there is only one heterozygous locus, then it doesn't matter if we interchange alleles, because the pair of haplotypes will be the same. In this situation, if parental origin of alleles were known, then interchanging alleles would switch parental origin of haplotypes, but not the composition of the haplotypes. Hence, ambiguity arises only when there are at least two heterozygous loci. For each heterozygous locus beyond the first one, the number of possible haplotypes increases by a factor of 2, because we interchange the two alleles at each heterozygous locus to create all possible pairs of haplotypes. Hence, the number of possible haplotype pairs can be expressed as $2^{x}$, where $x = H-1$, if $H$\ (the number of heterozygous loci) is at least 2, otherwise $x = 0$. Now consider a locus with missing alleles. The possible alleles at a given locus are considered to be those that are actually observed in the data. Let $a_{i}$\ denote the number of distinguishable alleles at the locus. To count the number of underlying haplotypes that are consistent with the observed and missing marker data, we need to enumerate all possible genotypes for the loci with missing data, and consider whether the imputed genotypes are heterozygous or homozygous. To develop our method, first consider how to count the number of genotypes at a locus, say the $i^{th}$ locus, when either one or two alleles are missing. This locus could have either a homozygous or heterozygous genotype, and both possibilities must be considered for our counting method. If the locus is considered as homozygous, and there is one allele missing, then there is only one possible genotype; if there are two alleles missing, then there are $a_{i}$ possible genotypes. A function to perform this counting for homozygous loci is denoted $f(a_{i})$. If the locus is considered as heterozygous, and there is one allele missing, then there are $ a_{i}-1$\ possible genotypes; if there are two alleles missing, then there are $\frac{a_{i}(a_{i}-1)}{2}$\ possible genotypes. A function to perform this counting for heterozygous loci is denoted $g(a_{i})$ These functions and counts are summarized in Table A.1. \\ \noindent {\bf Table A.1:} Factors for when a locus having missing allele(s) is counted as homozygous($f()$) or heterozygous($g()$)\\ \begin{table}[h] \begin{center} \begin{tabular}{|r|c|c|} \hline Number of & Homozygous & Heterozygous \\ missing alleles & function $f(a_{i})$ & function $g(a_{i})$ \\ \hline \hline 1 & 1 & $a_{i} - 1$ \\ \hline 2 & $ a_{i}$ & $\frac{a_{i}(a_{i}-1)}{2}$ \\ \hline \end{tabular} \end{center} \end{table} Now, to use these genotype counting functions to determine the number of possible haplotype pairs, first consider a simple case where only one locus, say the $i^{th}$ locus, has two missing alleles. Suppose that the phenotype has H heterozygous loci (H is the count of heterozygous loci among those without missing data). We consider whether the locus with missing data is either homozygous or heterozygous, to give the count of possible haplotype pairs as \begin{equation} a_{i}2^{x} + \left[{\frac{a_{i}(a_{i}-1)}{2}}\right]2^{x+1} \end{equation} \noindent where again $x = H-1$\ if H is at least 2, otherwise x = 0. This special case can be represented by our more general genotype counting functions as \begin{equation} f(a_{i})\,2^{x} + g(a_{i})\,2^{x+1} \end{equation} When multiple loci have missing data, we need to sum over all possible combinations of heterozygous and homozygous genotypes for the incomplete loci. The rows of Table A.2 below present these combinations for up to $m=3$\ loci with missing data. Note that as the number of heterozygous loci increases (across the columns of Table A.2), so too does the exponent of 2. To calculate the total number of pairs of haplotypes, given observed and possibly missing genotypes, we need to sum the terms in Table A.2 across the appropriate row. For example, with $m=3$, there are eight terms to sum over. The general formulation for this counting method can be expressed as \begin{equation} Total Pairs = \sum_{j=0}^{m} \sum_{combo} C(combo,j) \end{equation} \noindent where combo is a particular pattern of heterozygous and homozygous loci among the loci with missing values (e.g., for $m = 3$, one combination is the first locus heterozygous and the $2^{nd}$\ and $3^{rd}$\ third as homozygous), and $C(combo,j)$\ is the corresponding count for this pattern when there are $i$\ loci that are heterozygous (e.g., for $m = 3$\ and $j = 1$\, , as illustrated in Table A.2). \noindent {\bf Table A.2:} Genotype counting terms when $m$ loci have missing \\ alleles, grouped by number of heterozygous loci (out of $m$)\\ \begin{table}[h] \begin{center} \begin{tabular}{|r||r|r|r|r|} \hline $m$ & $j=0\,of\, m$ & $j=1\, of\, m$ &$j=2\, of\, m$ & $j=3\, of\, m$ \\ \hline \hline $0$ & $2^{x}$ & & & \\ \hline $1$ & $f(a_{1})2^{x}$ & $g(a_{1})2^{x+1}$ & & \\ \hline $2$ & $f(a_{1})f(a_{2})2^{x}$ & $g(a_{1})f(a_{2})2^{x+1}$ &$g(a_{1})g(a_{2})2^{x+1}$ & \\ & & $f(a_{1})g(a_{2})2^{x+1}$ & & \\ \hline $3$ & $f(a_{1})f(a_{2})f(a_{3})2^{x}$&$g(a_{1})f(a_{2})f(a_{3})2^{x+1}$&$g(a_{1})g(a_{2})f(a_{3})2^{x+2}$& $g(a_{1})g(a_{2})g(a_{3})2^{x+2}$ \\ & &$f(a_{1})g(a_{2})f(a_{3})2^{x+1}$&$g(a_{1})f(a_{2})g(a_{3})2^{x+2}$& \\ & &$f(a_{1})f(a_{2})g(a_{3})2^{x+1}$&$f(a_{1})g(a_{2})g(a_{3})2^{x+2}$& \\ \hline \end{tabular} \end{center} \end{table} \pagebreak \begin{thebibliography}{} %% using AMA, listed in order of appearance \bibitem{Clayton} Clayton, David. Personal web page, software list. \mbox{.} Accessed April 1, 2004. \bibitem{Schaid 2005} Schaid DJ. Power and Sample Size for Testing Associations of Haplotypes with Complex Traits. {\em Annals of Human Genetics} 2005;70:116-130. \bibitem{Schaid et al. 2002} Schaid DJ, Rowland CM, Tines DE, Jacobson RM, Poland GA. Score tests for association between traits and haplotypes when linkage phase is ambiguous. {\em Am J Hum Genet} 2002;70:425-34. \bibitem{Zaykin} Zaykin DV, Westfall PH, Young SS, Karnoub MA, Wagner MJ, Ehm MG. Testing Association of Statistically Inferred Haplotypes with Discreet and Continuous Traits in Samples of Unrelated Individuals. {\em Human Heredity} 2002;53:79-91. \bibitem{Harrell} Harrell, FE. {\em Regression Modeling Strategies.} New York: Springer-Verlag; 2001. \bibitem{Besag and Clifford 1991} Besag J, Clifford P. Sequential Monte Carlo p-Values. {\em Biometrika} 1991;78:301-304. \bibitem{Lake et al. 2003} Lake S, Lyon H, Silverman E, Weiss S, Laird N, Schaid D. Estimation and tests of haplotype-environment interaction when linkage phase is ambiguous. {\em Human Heredity} 2003;55:56-65. \bibitem{Stram et al. 2003} Stram D, Pearce C, Bretsky P, Freedman M, Hirschhorn J, Altshuler D, Kolonel L, Henderson B, Thomas D. Modeling and E-M estimation of haplotype-specific relative risks from genotype data for case-control study of unrelated individuals. {\em Hum Hered} 2003;55:179-190. \bibitem{Epstein and Satten 2003} Epstein MP, Satten GA. Inference on haplotype effects in case-control studies using unphased genotype data. {\em Am J Hum Genet} 2003;73:1316-1329. \bibitem{McCullaghNelder} McCullagh P, Nelder JA. {\em Generalized Linear Models, Second Edition}. Boca Raton, FL: Chapman and Hall. 1989:35-36. %\bibitem{Cheng2003} % Cheng R, Ma JZ, Wright FA, Lin S, Gau X, Wang D, Elston RC, Li % MD. Nonparametric disequilibrium mapping of functional sites using % haplotypes of multiple tightly linked single-nucleotide polymorphism markers. % {\em Genetics} 2003;164:1175-1187. \bibitem{Cheng2005} Cheng R, Ma JZ, Elston RC, Li MD. Fine Mapping Functional Sites or Regions from Case-Control Data Using Haplotypes of Multiple Linked SNPs. {\em Annals of Human Genetics} 2005;69: 102-112. \bibitem{Yu} Yu Z, Schaid DJ. Sequential haplotype scan methods for association analysis. {\em Gen Epi} 2007;31:553-564. \bibitem{Mantel} Mantel N, Haenszel W. Statistical aspects of the analysis of data from retrospective studies of disease. {\em J Nat Cancer Inst} 1959;22:719-48. \bibitem{XieStram} Xie R, Stram DO. Asymptotic equivalence between two score tests for haplotype-specific risk in general linear models. {\em Gen Epi} 2005;29:166-170. \bibitem{LinZeng} Lin DY, Zeng D. Likelihood-based inference on haplotype effects in genetic association studies. {\em J Am Stat Assoc} 2006;101:473. \end{thebibliography} \end{document} haplo.stats/inst/doc/haplostats.Rnw0000644000176200001440000000025214672315243017114 0ustar liggesusers\documentclass{article} \usepackage{pdfpages} %\VignetteIndexEntry{haplostats} \begin{document} \includepdf[pages=-, fitpaper=true]{manualHaploStats.pdf} \end{document} haplo.stats/inst/doc/haplostats.pdf0000644000176200001440000153142214673025506017131 0ustar liggesusers%PDF-1.5 % 7 0 obj << /Length 65 /Filter /FlateDecode >> stream x3T0BC]=CS0eaUeg```bQĆHBA=sM\@!(Nq endstream endobj 4 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F31 13 0 R /F37 16 0 R /F20 19 0 R /F27 22 0 R /F28 25 0 R /F21 28 0 R /F8 31 0 R >> /ProcSet [ /PDF /Text ] >> /Length 612 /Filter /FlateDecode >> stream xmTMo1qW"߾(4AJK+6Mɦ[7o|UQֈV(CH[q][þio呗DZY-OfNy1SC&|lH;F 2(X땘H8>,j*ݏi^3!#]tGZEe #c rnBcc\v8+9_FWX~d։4??@>y[$'m:oj(L!QN*)UIQ@Kh!HL_6AՐ]B KdAvI?"1lKMݐ7ZkfrҪOJMe> stream x3T0BC]=CS0eaUeg```bQĆHBA=sM\@!(莓 endstream endobj 46 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 2 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F31 13 0 R /F57 52 0 R /F8 31 0 R /F62 55 0 R >> /ProcSet [ /PDF /Text ] >> /Length 2061 /Filter /FlateDecode >> stream xZKWFWx)SMQv@R a pc[2ν3I61,B}|s`&N $*x[;dQ1 -Q'?W %32)W{ Xe ѕ-'Jn k-oR&D/3K]¾Q.Ø' k952MՓe{kx#Pl=Z DE q8ٟ; cw~nȦ4:q'<?rFJ0Lg)xXŽJ3qpߠfc}yё䃉cϛo^1EO oBWsŞsvuY.so}!7]#=<:@[{)o:UC;\x^OiRG+kƸ"% +[fo* %ZWHRMG*R6*Vm9>j[Gըv1@-au*:L2wॗ@ 45%2ܕa# ?=GWehst@Y$X+WC)|y"HR?9ӎt,sbFsQjL3i%\݀e}sJS(O_?&]N4kqU!P8N?|'ZZ=]mZ43!hf9;Bۼ-Ȝʹ(5EI=հCpՁVlkRh ph'y ٩{}@1_/Oˀ}*5jkftӾV:qJ`<~@Qq9)R\z&[_ ܟ5hMe^#wz""!YtŽy1Or +aͦ&\]ڲjwt,p@qޓ\_XQuŸ51R}MltUaj[Օg%yR8zZQɼ6hFFQ$U("JBXɔ3ڰFџ;q['Qr:S\3] #m7T<{`1z=Gk>ymSS BŗOȸp"(?W]]j*i(+m{^^bF1?x ?[rV3wb*mjR&lF3skwz#6G yA'SvZmNӚ'V7VA P{*Q@TWjsk$ܱZ;nq2#g{eɽtt!*7"m #&_9]*h/8FF)k6 ݳ(9X lÀFD"bSӠ<~fm*Gi<X,f tPa4,!oo|wt"%JUɊ#ްSNC~%2ҋ\emB]%sBJ7{jP2[ܛXW<9:D6WVФ7om91l@L[%t`ZMe JkG0?.ހLh7jg^F_#T禞'> =8HKWyO)Un|Y%3 ;Ϭ֤E1=`O̓cVs:&V~>vC}a%?_1z]cN./ꊷčiM!S)*ZnD >@Gg,H p n8^ 9>)nۤ`U熈zʮի ? I*:8Hh3vC2^H8 c]D -&ǼcAl9!4Mc;y7: endstream endobj 63 0 obj << /Length 65 /Filter /FlateDecode >> stream x3T0BC]=CS0eaUeg```bQĆHBA=s\@!(莓 endstream endobj 60 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 3 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F57 52 0 R /F62 55 0 R /F8 31 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1105 /Filter /FlateDecode >> stream xXKs6WHMtNLMD˚T*Nﻻbq&J >~vqܸY`J;[\͜9WnX~\iZTx QZAiWUj_ŹyΔ3-gM`2L#<<.Fd91(( \*EYa]mlnx@gguC3?B/v2!,"!{$b ?h%b}踫Z:(6NH?I'>KUXEC蝡ZPZYnޢEBv=,cDFmAwYzH`@ȀE'!^Vs-»l aO 2cU3,_,/% DKD]$%OomPw7бn Z`[!&{+3Nx,p5 &pk~vs7`>G xmn֌@bo){q3 1Z3o$fND`fdJ7"8yQC+zi%SpUwo> F'$jb{{(0I ۷kfk@W" HD$ ܲGƄLbt#6M_voBs@C5랣<@fG?Џ˜U-.A2/q7) q'7b󺱰iyKKl]Хw<)xf?*q{rs7dPqPRx868 ~lw%IʭUp7X* H[sΉ*t<9[ xk endstream endobj 67 0 obj << /Length 65 /Filter /FlateDecode >> stream x3T0BC]=CS0eaUeg```bQĆHBA=s\@!(莓< endstream endobj 64 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 4 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F31 13 0 R /F8 31 0 R /F64 68 0 R/F62 55 0 R >> /ProcSet [ /PDF /Text ] >> /Length 3407 /Filter /FlateDecode >> stream xڵZKWL$U\˛&5;)9PGWeQO?PfM|h4~?|dww+MYyLgX7y7543Jtyqʦ?O]ԅ-pnfMRssq[t89ܰϸk{{9vgq6Pԓ:nxK]YJף#nG찱!ڐ풛qV0btV!+ZX4[#Θsfc=[NL-P'9 ^D= s>)"% \T92mXa{oH<%.~C)xFH4OG<.J!瞭 i^LU;HpnetY&ijq >Z,@7% !Yd20Ϲ_ƭjyÝ9lteJ#ˏ0e ?tl|V{xP<jTْ% 0O"FnCֿ&'J8UZ?U ¹np<`sOR h/StO!qbli.x"ZE#X^0,-uˍXsh s5]r 3o黷RJ5*bƀoTlZa`Ge#/oHNSd-&h;w 8zFn9;pʣm^\8C"jR!޶/ `<;*m񖆭?C,/3ε(j a5r1F[20UI]T.7p J !gD+()Us^0EΆ8OԼPH#jJ hdk0"ɳx,ZJOa-'A8qTIiKɯ$#0LvVUr}:NQ9 {12ҶY]*ݘ#J3OUZY2%%X{"DCCve(W<>szGxM k }_jvt9M>N&{[PrdM4<?W$W֒C8' =uܰ Fs'0.=,q+3ywWegIJ[X?WjpDlCGiZP8jD`je;]==r&KJH2tKY CḥACYC8#8ь7IR.Wknj߽OFi`~zws-\y>c=T>ʂY8n#7jqI~U ې @:?}d['"n2?UtH!Y;%}i3񫸠_p};}w'nt8_{v ;zy'hk}8|<=%/QDxf=Izua`"`o\{!ϣ͑LO5уM-m޺v!ӭLK :/G\cIiN͂k>MBw8 [y!En 3(Ql8kR$S5{') ko"p4ׂ$+X u]G_׻.Mr"E?dAw=\SnpbE)>٦Al:0P=CC u=KOVn//hF9}vf$v:K:cq^^eH?D*t>+UnUo~嗒3:)U+"xK161z.F܇v4:{sc@d@3Xxgh`Ɣ쿟Z5WRUîo~|?k endstream endobj 72 0 obj << /Length 99 /Filter /FlateDecode >> stream x5;@@E@yW!^jBBJu&WJ0ȨcFg k7BzUmx1mA )9hu_T # endstream endobj 73 0 obj << /Length 149 /Filter /FlateDecode >> stream x3135R0P0Bc3csCB.c46K$r9yr+p{E=}JJS ]  b<]00 @0?`d=0s@f d'n.WO@.sud endstream endobj 77 0 obj << /Length 65 /Filter /FlateDecode >> stream x3T0BC]=CS0eaUeg```bQĆHBA=s-\@!(莓e endstream endobj 74 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 5 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F73 80 0 R /F74 83 0 R /F8 31 0 R /F62 55 0 R /F31 13 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1840 /Filter /FlateDecode >> stream xڵKD_#5^OH(8z(=xg֎Cv/v׌I7E,{?嫛c=K4r=YۈF{ʒBg Z^qId0GZUe"^ͺƓUo)@٭]?Pc \^ ԇC־4cdOkda~+685(W|P!tb<#V#@GѪyBIpdž+n2RBA,V<*chҘ"IMi ާ d @8(glD:?bN7G>J^SgNyK+x#7Mu/i cms~㞔%šR|XŕYSUW~/5Rѽ-auC?j* LE B.i&3l> stream x3T0BC]=CS0eaUeg```bQĆHBA=s-\@!(莓 endstream endobj 88 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 6 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F74 83 0 R /F73 80 0 R /F8 31 0 R /F62 55 0 R /F64 68 0 R /F57 52 0 R /F31 13 0 R /F11 94 0 R /F76 97 0 R >> /ProcSet [ /PDF /Text ] >> /Length 3617 /Filter /FlateDecode >> stream xڝZIs#E+=2k& 0p(K%[Ũvyk.qs˷~e_7Eu/nVMY{ј<ˋfyK33r^b  Ws[..~=y.L ;_|{#KB1UcΎg\.1YWUm̂'x~̹u޼`|#ӵyvuW&'i޿_5"{^p염ʥy40ۀӦ̺}#0cCla%Va׬mhdTpZIL !ͪVO~iٓPߢ:ͨ==>|ˁ`J$~Xۑ7X{ZNF)Y:kr\5! ǡӌ^6Yk@w%9UH8qc#s[uWzC ,& cVI}Yճ~wnߥR4Y6–uNY*N/g}RF2DaM܏1UrG<{~rt,UVabޒDd^g$Xj Wu7"lHpȳpzx7`hTѣ>0]7±L(xuՕrX-rjpBӅ'[+OWw]v?Lx"X?mwb><Nobrb"p稻fkXw}89L`  Hy.>UFvCye6%=JSƈ;~zVG.KGdjB>aoboXqUC#e K6Q|o4cpz`&`AXi*cjj/BX.ޡ gab(n>9֝EcBoEG4 Cq{lV *]CUz\6DB#ٺN *ҠH~㽋!ksٸӚ,o#6!\NLfSbEXr oVxY1s ek0爩t˖!;Br%h5h3ܩȱ6|X{I(0{EpZmV7ŲcXr(;*X y#ȯ?$K#x)$JϣJObQ*YeH &/>0D6T . ;lIDГ^f'<K֞D8@G>HtG&uK98\#Bg_0 %ZGJM"EAjڑ3cmbx]Pr#;Ӯ&weDv? ԋzoYR`Rbx]b7斩]L$Q j:w htɌmT+t\kL\h|t.3M pG1G2q!q 'B sa1̢qB Fl+A&l۠f_ctleъWs]nEt$ t\˫`7[31 &'|VO:02.GZ=1?8N=fP~O&/ ~w_Fɢ("%B@è>:Hd ^RإS"c 8D̍ 3{mcx^9rIQUa+ҧ--"Vԑ|8W^+xxɈ*i&nEF%0nUeϥRR6dh x#%Y@7*kGGd+ GXϸ&&,hjȳa_{8Bb^|МPoJJh.n#cWr`R>x<_Um>y%O/S~}NgyLVxB;/p1wc=F)l@v$u4UG4 69P&Ͻ10KㇷGLxcW('.N1IKw 0@9@@nA}51r8l>r")Rcnm<ǵC^ ( O$ !JBx|"+BЦj!?FXDU搼N!l2 G~ce-)dN 'dX}T7kMmA*ar}""]oDgrI}!I߇`3ITn`vQJLg$zToQq߸9tO$׿ S$LBqօ]υ8”QbṔ\ϸx2saHd(V#%ixx~RC*91>WHr+@tu K|Wk)]>.Kky+O6{q*dKt A6zFV1|gFkUU;R[)ᳪ TBA%TK\&2bӻ HLu  EPX [Jەy} *N4`M|tS:g3X]J,2#·M*̌/}qgBtI-a{'Jv*˜UsD]J<\_i`FUڜ Gί,#w"qb)TLgAR}tMi{"EV7hkw͞)->.gUNz(_;B؁.ס} KgAԷY>T[W+K>pK 82I\Xfq337$^mEr_$Icgԁ#$C=ng1'{dg\MkF"O*LcghV=&̂@8_ĥ\J@?` L9*-N5IWZiv y9ve UyGB8|\J endstream endobj 105 0 obj << /Length 66 /Filter /FlateDecode >> stream x3T0BC]=CS0eaUeg```bQĆHBA=s \@!(ꎓ & endstream endobj 102 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 7 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F74 83 0 R /F8 31 0 R /F62 55 0 R /F73 80 0 R >> /ProcSet [ /PDF /Text ] >> /Length 2332 /Filter /FlateDecode >> stream xnЇZHis:}DYRZ$-mE)@|z{>~.qt\z$NL>{f_z\'kW2_ڼ^Gь7ZZ`GZ_g b+ s/rODH!~y}H2&J#){$!#x$"gs$TS,~፽Q_n0ѯH׷͛JLdwbD~=q ~8卲4\.ϰy"EPN`N[* %ѪZP$3\[f[b`J~=߅ΣT˱/~VǦɌg{Ttj^{Y"sDH>_BuJxK-Ar,l)^NU"jRo/aed ;/N$/awwyϝC&35s*NbfM:[w_% b!3ݷzOrJ5HY,+Jq ,^:Nḩu()EP$# -|%(ƍSwAA`P`oxT}ixʓXlG!Ϣ (1I{ͣrIiDgQ`eP멍Yl t;*.f|dz"*B$eren` 2X}VVNh$~p*LR>`9W Ѩmz K4F2P(PdEG &z]3ބ}nlؒS2uwLW䝷ԴrêK<U.*^]"Jf>Mo0[dp03SXGwIQR(9vѩc(5Rf)RRv2">PG/CۂN~BՆH 5,>kF8p]>DXrS?ؑ]T3*'IG~v2DI|m 62OWh;zr㳷Z .\+zqf`7RTXsv <t­@00HcDD縞ŊX4PP]jސ7dl>;:ڠՀpDrNt{lx"㛚aSPx_Ix:t%r`i't~Bp7 ;h9I#p:R\cϝN<@GE-"#t؜0}&T)z7\ݳ:2jTK;H^V ;s$g(21X{&#E_da3<ƀmط5w&N#w8Qz~GY@9]< 7PbvWGJ*s7I1CfH^JEy{+0I=)t*7Ҵa+pZ͖hF+ܱⶂ1}nӟp6%63 bEXn1'nz#^OOVP \nVp7ϔaݻwDd-|Ay׋:Ns\~cWm̸"> ,C=hi22Z߅O HLҬqѺU ũhiݽE!I_Na}FM̘ fkdG-W>fr=UP> k&5uFz4.N z4k&˃yqat)R6|v@E[\vl t(.r3q iyBK`.gY %20QŠ|68HG-W0QƩAM `jjZNpIDhK]3LD6\vٵ+2fhG3 6<]K 8d31!gaF]Opw\@4g䴱B-CәP~:_O pݗsu2*:F΃Mq93J IH7pd4PUI;97?O=*蔆G .@ ߒ{:Fb᣼^Mj֨ ᴧ&ĪcR&o~gӆGU[Js@bQC}.7zQyO:cumM`pX6~kۧC'GLq΢p\hd)Wx{aahi+[-Gw%u^eEZ qJ}MeFisT:/Pe endstream endobj 110 0 obj << /Length 66 /Filter /FlateDecode >> stream x3T0BC]=CS0eaUeg```bQĆHBA=s \@!(ꎓ ' endstream endobj 107 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 8 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F31 13 0 R /F8 31 0 R /F62 55 0 R /F73 80 0 R /F64 68 0 R /F76 97 0 R /F63 113 0 R /F74 83 0 R >> /ProcSet [ /PDF /Text ] >> /Length 3551 /Filter /FlateDecode >> stream xˎlA6baG^QIif_zv7)jw 90~Wu_śVYo0Q%m/L1qPC2)KHz&hzp" xl;qhCi֋_ś <xt4eaPa!3Ip\e ?ox5 07i ";Čh^N1Q?GYkC/qC:^Fp'h-!0f,{H-x@" B W5^D<ť"M{͎ c8" pW]{ '/W4W{U&X>.28p ;҄QU*J; +l \$-CSm;bX 2 "$`xV! 6m$f݁?F w@2r+I{.O$؎@r{M" MaJ$Q!-A&\-rW] rMx>sgVehF(w"N!LKGU )֮C> {M{P"0. +n`{6DG%lH~9UV!5K0H_2%lp+pY&I$+K7!' !cW$zKFa"xK{Xfq|k5 \;n#c`C9n/Nq%ۮ՘Al/6ڡ_ eY_mbI(=IjTA%/euy8B wNazudġobSI[ I̕,-֌< ح(W1|F ]p'$c@I˓$K8g/诸bI.A3q])4#ML|֤r%aB/̰ !0IX$X"DoH#H6>8nX͢ѿ]qkLd[k;Y"a+͓IЏtqRv.$,q [2$lڏo*ᇰ5N`Ⱦ! ø.uk>&V#rq"2dVgi7UVaۆxȫUlt޵KK"LM~ç5$ B$h<0~/X.Ew Bfˑތ髽uq j*Hp_ yzAN:cŜ_!V*Ks@\u@;>[lOw2+b4}+a6@^q>WΕ%wnoiZ q: IH 48q&#g]{`bf@x b6 \zZ 4N5̣MB /gñ2R`,=JRV ֙{]_:e(I.flO&E/lYFY;zhCFly\!Qy8uy)\pb ߊ<mlثW>ZA/,P@ I8l)bc~-Cȸz$x= Hpߠ!xkCYAوfD2Whok=۲щa⁈&"!ZK~l89V髙bMx ﶷ+龚 !)>?;ffY[]Asd3Vq[rTvUPP1sSOb&7y&Y7\[8Nip;I<9>Ahy $i¥X)C|/d]Vb͞*Iu'mT{+XmWJX3 DҗƒIayz>j/9gyQw3ڤqs D+:+.1+ܫ@{P+>hO-g3iIq.*}дV㦑5)TV7FgF%r1u)'zr|C'^sKM) 4v\ea M,Ӟ4ŀ\AF5ۏ*IEjqe"Vf<u'qXo)Jv? GPӎ0^s&eG89ى8).7JG.W(A}(n\$8e['3V ̿8/B- o)9>'UͼC2F);#y:i5l :0Pt+/x/F Zÿ+~%|8Bg9WZA aw4E.ݵst1UXdʮ4Ȏ_ϳ, )ϸ;$ N'qT55Yoٝ\(QY([/j ӽ8HVllKNkR56QμH<4-)8!QXGY2Ѭ9=sigZ g ؐ]4[=ug`F7tw`û7* +TELov6힉]-XW#(ǩW8i@kQJq\?gC9~I` XZqM'oֳřk8Ljz>zSFNL3QZd˭ОعA;'yyn~>ne(K^͌{ANvc(uo&ԷOz<=j={O h&pz텨çhpm![ysnWw G[GĤ*i>y# NC#rS\(g-YrJ,$8k)^]xX_J3hk&=Ex~͵ǓSVp{K--l/gAqd9v|'Kg1n$m(ɧd(qT)z'( ode<$'= _Vb(-tx6Am&H%~ʛDa% uߵ endstream endobj 119 0 obj << /Length 66 /Filter /FlateDecode >> stream x3T0BC]=CS0eaUeg```bQĆHBA=s \@!(ꎓ ( endstream endobj 116 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 9 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F74 83 0 R /F31 13 0 R /F8 31 0 R /F62 55 0 R /F73 80 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1688 /Filter /FlateDecode >> stream xYKoFWH}qMH 1CmіItpy-)%1P|\~Y~x⭷2-sO.'^O|W3JTcg'3x•Ʌk mMfJs G3x1@3贁GuɓvӜZ {1ɲ3f~N`:#|Әd49*{q=@y!lH8z{+xt*^+K&u  %\+vedG6Qa6b 42+BrXeNngžat+6Hw0|ݧՍ6S.å6f% oaźVM_5j"i, vi5 _wM.x4x w[DGTW*łm#FKBjOkk$`iw<)a-[1uG[ϓZW9hDlIZ^o9Myh [LY;2u>|jzbNy%w>u<)$d2RbZVp>^tmfq5B1RHz=BT^m.cHjT͘sTJ`;T&_2"? ؟lFٓnز孤y% SS&j!--: Sh(nꐄ4ڷ.T2͗o^C; Bv%0B\Ɂsp-˟wUTkJF̖l~{18 ixzgapgK6 mȒ{_ռA^VR-޷Pث O,SV}XlE[j8NCsvcq죱:jux@uG-^b!J/8s δtU`{ ৪U]<բ|Z#t/.0.?%8s]2mbtݹۨpNv`44Xl_d>Oi;IN7<,yC&PhsfUE} sͦtr eZE;={s?| endstream endobj 123 0 obj << /Length 66 /Filter /FlateDecode >> stream x3T0BC]=CS0eaUeg```bQĆHBA=s \@!(ꎓ ) endstream endobj 120 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 10 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F31 13 0 R /F8 31 0 R /F62 55 0 R /F73 80 0 R /F74 83 0 R /F76 97 0 R /F64 68 0 R /F57 52 0 R >> /ProcSet [ /PDF /Text ] >> /Length 2807 /Filter /FlateDecode >> stream xˎ_1p.id 8XٌO8g$GdqOٔ(iǞ GUu{Vh07w7x?7f:ۭᯁߦy_g.{B[OwVuiJoVJC[g}|{M;DQ!˖1&EaG:|J>  = q)+\vFp/ӈaeE+vf|7N$ 0ey6o UʰvC(NVj* :^anNo a@ɒ>P ߹gl'\3\/>fEG"@+ˬ0WS@"- +#bWAO+DRf(">kSCfՓ:lw\W쐘Yb+5z<Bvm(FjiTe71d(Y6Kg{ &tU\$vUL< pb[*L.gӬ{D<*cG$ ңx #hWMv[RpOjW8}͞`R2rӃ[tI,mBO a8_lL:ںY0Yzinoh2D5fIM%RD,XȌ/U ?֫2>0k_*? DIFH0ޗ°4 ,C9/\:GAtLUK7}wyȻC&u:3FФ#H(aG+KmnJ]genjt'I:/8G;q.+p^IeҔb-)\@"G,'fGm"߲`,ӜꭼS2yFȻw=EWIsl-G;Iz?>˂ 1L '0 Ҿx/B\j TӚ"ɼgos8esو#-UtXvb6 tw/ C9x_ٵ<} cgg.0ƙ,6^9˾缿3R?aK86hm\%0ZUU '>Cq$+q&Vu"gπxWqՔ59=Qtm N͆Tc1y*yokk?ZzQa[ܐ6 ں T*gb ͕.#i_!H>lBJDc4}@ UbҰD&(Iu5OMJ'9J'8+e;)c :3iOS+~cLyp I๎J8PtF;id|%}`k pϹC>f~B"Lb*X+*,gR' 媨!՞^jx.EKIםK21yJiѹVj Xr7v sEЄy8 :;] ǗTc|\2졈 *U^c rw~?nPX@w$<4!9D1i Zێ4AD>.ې=owFj\L94ߔalP*6 HwYB !4CqTܘolQ`VJ8UM~-9Jx<{s *5z*Q(7OYY~k_OϵU d豦\MkcN; fp6_LTmc~Ĭ[44J7/gWS;@ nE&U6U`V}`q WN,-^] ~r/;W#JZJ?2 0USRX-!'Jumc(}ii/K1q8!4R hepR(FP5j,RҿR ic8lߎNmɭLId 'MwH)$_&&L)ФU&`j?qM TWhe䨭=k=gb^b oYK86ʎ:2F#HYH>dنmD2 =CA#{-\_Z2[G4{u瓞32\Y{"P`t&.p” 9{uB8~5*ܝYB O |PbcGZpꪎ.EիIzWSW&1g-nI\7ʃy¿M5rўw*=ep$q+wm(iMIP4(%XU>)5*\JERypźxjP}k}}0{14fIa\(=_;zZֱ.$6?Gҳϕ5G |m=Wq,mrfDz9D՛W{( endstream endobj 127 0 obj << /Length 66 /Filter /FlateDecode >> stream x3T0BC]=CS0eaUeg```bQĆHBA=s M\@!(ꎓ ,* endstream endobj 124 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 11 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F64 68 0 R /F57 52 0 R /F8 31 0 R /F62 55 0 R /F11 94 0 R /F14 130 0 R /F73 80 0 R /F31 13 0 R /F74 83 0 R >> /ProcSet [ /PDF /Text ] >> /Length 3465 /Filter /FlateDecode >> stream xZIW4 ;n/Adq!΁)ykUzƘa,kyҫO>{w8{ܕ쮈B&_qO o(B?Gէooyߪ0ii? ." 㠻-687'8Z'9Q_`Ggm:Y 2xE%?8 ϧH@|CoSBν"Se8RLG\d7a։q}t۩΃`U:e^.3CzlҸǦ/vU8H4 ˜4ٱՑ? ril,Q4Z9< tT.S!B_=QQ|ULl\϶k74|ܲ -Y M/T`ϱx *y>-l%?6suVn96IK9=W$h#=1Y0~~=>hV_? xA ]KrCxL_q_*-ñWſÏ#+2}'Ҟm0{i⤋M$lYa*-:+##Sn߫fPκ-k=j͂^D)_ #GQZqA4'geX2VwxA=OhQ+$gݘN,93{v?Fs? PqO A  9X4*kфo["GXd$ۧfEkaF@ E8)MGw؞T&[ 3k+Kzݴ4QYu߆PGɋ듽P&*c:ўz2Ik h/3k" D\4Z{U`tܾ~즪+_AJ+{./ |K7 Ɂ'j͘ϓΩW?T!LEGp CJñц;y-?_;' * n$ZF}?!@ʩ:#5n$+79~3„3&LMZXok#cH{cI4|O"<Έv(6~d`|2YXΟ(\%QЌiDmq H(J<sǘ,|10e-  #zHo%dK*UFnQl S<3i9f1ТX8eEh">q[ Cmh#tqfb䷼h]Ð:%t/Z^VjZ,lnCWWLyX6Ib`JNt͜Qdѻ .ﺶ@"TRRIFd<;~TgV9vbi oCP%JYqKȖԗW&)6AOM_ʀܨg|z{*h4#Aa3-{"|CTrzSu~j)y̾c`)1ͣc3t釩FVT2@&X/EW6UiI_&(aT&I&yDp$7V8*l{XjIl^Kcgi֙ejj.4tv^[9xzC <Т"Pl^8TrMdB4|j<,xDOI*6W<n',9;UY-q rw%ָL(rwe6N&f"7~{{qk|kYZ:DPvyA*֝tI 7WvՑ-~>D*ǕwA澵~/i[Rnd["[d3}p5Ȋi)\,Պ9 2oeN_9"C7/¿\㧠fQN9}~2BJJ2&{OYU%l:)JXg̣qdCa37b5_q|U= x0w H"h&[%@3JƄ73.8_R%~TiDN$uJo^vr79C|?o/Նc8.f[{ZY!C (k{+Ul4 QbVy"r"23!6flpX1f n^^g Xz7)K~u=#Ty+,c21I2:N:m3$1+I D]܄afw@Hp|ƹj5$v$VJ X tl{k[8h܋vWlEBbzYK;G-̣׮]Tn_QkuXw2Ϟ;Nx1o\V Ȥ\~qI5<@_V3\1+bRGKP󤋄Q`/LǿD&*f|ɻs\5EB|}3!xѱ~BS>j1׎'KHHߢf;(`hADw|SGqž@vRMxwrڋQ3-9'7Z%棜~9]0y>1Y _WWb􏞖x@t)W9K>M~\,şO % endstream endobj 136 0 obj << /Length 66 /Filter /FlateDecode >> stream x3T0BC]=CS0eaUeg```bQĆHBA=s M\@!(ꎓ U+ endstream endobj 133 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 12 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F74 83 0 R /F31 13 0 R /F8 31 0 R /F62 55 0 R /F64 68 0 R /F76 97 0 R /F11 94 0 R /F7 139 0 R >> /ProcSet [ /PDF /Text ] >> /Length 2990 /Filter /FlateDecode >> stream xڵK6_ Ī(R.-{(vA=5L_IR65.Ĕ{)=|[tyWqєyafKf+S5&+Ư*mV/g`t ,s+䯁?beLU*ӤLᚬMCPlUi$iɫ]z3n/}Cڜ3BVвOx#5SIDZoKoAsz;O]<4 SQ;v96f-aH0 S]wNo!/Ձ\9O,'͐K\T3ojͭ{R GU#"z6+lۺcOO \ʆGu-/xoc\Yˍ` Z,uFlw,%T|94-Wdj}^ʦW@Ӳl3;}]ioMea{\ xQ5>"aY6J/e|8<AQ1=|8#h2Om66}dACTŪq`vbdDW>3Q6مK5%~a v .3'Q5oQr)~=kUJpծ5jvRT 7,V!Z'gcG$>TFTpèÁ3R慍SVE:-wREsȁ7, y5x2VemFtx8꼸ޝ~D@xP##8'~*%>t|v \DdQ7OJ")v9*J;mk)gXkg&L*>̧`XzNC|+K^3ٔ0WNb}&̈#?b[ t0λ\*d*]+o>[d6sP_|Jct!0ia&b{ pT$R'!}9 s:p]uBDaq27*{YZv/Z!sīϡE4xT{ Gq}ے>-$ĶြuTgu͐mtڮ|A]X[4g3e6܆[.i8ե3C4Xn:"~5r`Hj)6V[ nR E~FRga?¾s%AP8K^%8 Jm0 \n]MvRب2L?tٿ/tg|8<Ty/k'+\(utdt30V{#Fk͠=)Yh=juL%7l!źe?9N "D/ g{ wP[#7mSХ@@nwPj*iMx$ ތ qB`ы͞*c9 )N7+AzIL.ko$d>F#TݗVc@Z[Q_З-AYl WP @˵蹠N " '~=)#U(xu+s [NOh"]eKmM&“53ULaR#.d\$]mO;BGq3.8J I9~"T۸y%o-dSz!.k5-XY/8| p`ĖDgblK< ѕZR6kt47A{*]$H)^v2ZJ@봗25 lѫB`GMN:2:u I28Ʒ^~(Xv@P*9;x9RE " \Q=4>5u\X(z)BAϩY{uz\Q,mX*#nNNjߏ7/8ǙƔ08C@ Ub9 +0Xkg>7To6(NtPc21{;OJSx+3 SNcJzoi|7M\)ҕisۊ"*"B)V>ɜ"G'zƁ/aDokI)q?o)q6{eq=j#?;72n¼fiϺStk?(<#iJ_ ;zBQu /T3ÐbU~jFa~]L[D?X;N/r~01DqVh&l&wHp_VF&;{E{mdt"Gj uw.A'4Sz !-5ݷd@49ӌ1xKǬo%-klK']ymj6]~nfYdo̗]0Q-\P(5-uN*?2MʕA0Ŵgd;NaFXȝ)l_lBK2IqĠ4y1!Vmmؠv UuՁH# Ѥ7_?fxK)T:r5@WG,9!'QܩF> stream x3T0BC]=CS0eaUeg```bQĆHBA=s \@!(ꎓ ~, endstream endobj 142 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 13 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F8 31 0 R /F62 55 0 R /F11 94 0 R /F7 139 0 R /F73 80 0 R /F74 83 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1751 /Filter /FlateDecode >> stream xYK6WɶQ!whha֖F )JmP 7|C?_z>He:29gh6s=ט KHwXctbm5t1jOA>:AciXu0(\Ui}Ӝ!% c/-ִHu0SBo`- É?ʦKs:\t ڧC_&Z`EևKRvV z8uȴsp$m=rl*/=8+ڬn8`]hm=v$M5Fq)z(w0t|WzB`p![ ;(5y!gsj=azDx6пzGRN947ܴsʓ7к083L8I98M)p%շ:lH9Ƕ, {kZ"ScX}#MTNMa7]PTðs6K= z*јObC;1ӝ?A=E2d;YI*WuHiJgީK'q/ @gmwi/OzKȈ1 &%LʽvC AzoLƝ;*GL[iDYs ~_h8L֨D[$˻vQ1`8߯xG4Ӧ OD?:z~;pwT끪> stream x3T0BC]=CS0eaUeg```bQĆHBA=s \@!(ꎓ - endstream endobj 147 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 14 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F74 83 0 R /F73 80 0 R /F31 13 0 R /F76 97 0 R /F8 31 0 R /F11 94 0 R /F62 55 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1741 /Filter /FlateDecode >> stream xXK6WHhz+Рuזv;O<&6E«r~߬z-ǻ1NGEqip`"3+U'&wXL& J>N\d _*[\H:fZ4I(_MqĈ2kohb+&⢍,Mhn1&nCBH犽ibf<^w,%(b1Rda+TK^eeL'v=0rtl,w+?# 4[ yʦR:aȰHVn: M ّ]Gt鶼qI;}EgE/}}#ryb܈ P0w|80KbXF6"\\WɊO4CMS)Nx9>(6B@I] wκ W϶Q১~mY6cλ){V=̎bs%Y:t&L8)$mYj\f};gW5yGN&*%?7ܵQO[6r)WCŒ0fC3^_ǵb~fc.mWecR?;dCk$M GJY6|:}ݕ}e_xvڷN_Z OV.sp,-2tk?/:,0н iq`ߜhخs(pWF218A*]nPD G +9G+|r$,ҷݨ]_G:ixs|H?y#uIo1WvXa;-ItDh =o\E[ p+UF@]tP?;t')É$=`[S3JqU|w6+&l*ؕSmeudG'[ǴyT>#MyjR\*~eG? a endstream endobj 154 0 obj << /Length 66 /Filter /FlateDecode >> stream x3T0BC]=CS0eaUeg```bQĆHBA=s -\@!(ꎓ . endstream endobj 151 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 15 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F74 83 0 R /F73 80 0 R /F31 13 0 R /F76 97 0 R /F8 31 0 R /F62 55 0 R >> /ProcSet [ /PDF /Text ] >> /Length 2402 /Filter /FlateDecode >> stream xˎ_!8>Pfwidڋ x=p("5׻^D,CYU]ŗ颊\狻EJ󥊎=w/-|5|̭eΎ㚎"Y,c?„ri%k+a:>5=' e]ؽ E"G"B2, 4w=ʪr}pOқ7cF4ђBskz EE?%Y" dKAvwө 9_L)˚qd<ێ=smmU֐94qB͵)yҩD*s?;@z>JO'w!Onӡ{>O{iLZ+˨JcZ%`iqit|\ y@SM6 ,[VF9WyIU)<@HHFf BJA/4~&؎xfdI\݆QLGeB݁(́EGEM²$aI ̣Pbf4^LAhvD4NZؓ%<0V:$㰖xBkxTYx{6쬮Օ0Oҝ v noL>u;Tqgc= >X/ȧ~g\ Z;3 KS`efM١uOL0 ӁJLoHqk Gbƶv4"@+$\͎BJ9HTT y4!߯jBGy,Xd10 v{VHX9[x ί6-Y3 Xqhn˱ioon;x*ZF`*jh԰D9NkW^^\hIqqY lБ1W)P'm]("Mu%VizJ,;MrMLͩHEQDZ @l2gԿE# Vh Gi*G8B;|/}PK =H{s&==сA%%5;1@\MҕuzO􏧞҉5XKĝVZrϼdx4eKv'aե vw!9sl+!YykB".]˔,=$U#ddA\Ab9[)<\PelJI󾕕WVF)fšh. g]R%<=ÝXN?Ye`(7/c1etKiVTW6r*1HN4., ( ¬*pI$G:j5K}RJ!,tndS$ό-F N>)>vr:3MTTjO<;bq,,\eR,gyȳ|v͛*!IefdHc zN 3+7`><[CAmZ$+hnspl.Oq0W$ݽQr g6e$Vg{feq]q6ݵY_M@+]M"x_J~$tL:H'5 Ψr˙h4| vC+ɋ4834݃I$[^_r;qw2&Rcvfkm.P_3?iHYl{#NeS%NOYSNs\bǰ>&|eHsN豯d@9}S .P!{|,6{~=>93^T8B]" %u4ߧPOmS]\ܿ_dS]@Pq> stream x3T0BC]=CS0eaUeg```bQĆHBA=s -\@!(ꎓ / endstream endobj 155 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 16 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F74 83 0 R /F31 13 0 R /F8 31 0 R /F62 55 0 R /F11 94 0 R /F7 139 0 R /F64 68 0 R /F73 80 0 R >> /ProcSet [ /PDF /Text ] >> /Length 2371 /Filter /FlateDecode >> stream xZ[o~ϯf9rȢ.A][LZr ͓33߹3Ի7?\z7TUbvu;fu2gW7ř~We֪W_ko''xk5\5=/rcR^jP 6_3nUӌU,IU󄶧TXRpps.LrIFʎAv70!g*N2j<9Z^eϢĔl2$nc|8]1VV֘~\Xyk?:sgeL:$9d,Jgo%d;64Ę,?h%8 qW#4$SHL, `/] >GXFH$ue ;#AN@4q~Tmb@Cqn"\!sD+6)H30 /&`)0+ iF$O_.A`BЄ3Vt؊!!&3sМ<o %Sؿ'6Xz.J&?)5>c6n5h䝑km|GhS 0 1>0 Q'RH)4U+s"hg/Gl'f ԩV'.FR$.1F'Xx%#~ZѶvla}>⯛J#Z^L+JRCUpT|_OvSf5;-πچCoJ(Ka0YJ@pbM,PJ1Q΅pE(I7 ^JߵBMw{Pg g*axYrpJ<]u-Ң:cڝuBgLi=c[3rԢ|Ϫ,TDD"mczTYpk4j:Q\;}U1|y_ǢL-- RXRs"=5bLUEu@aJeLh,Pd>z`CA;@خVG[YD~V i eYUhz 0sۯ~L c,ixصH֍XPQTL %+^x_#М@޿88Qb\\g6jhj+Ȩ{nAQ\0PZY".dGE3dJUV:2$Z;[Q.f6a0-m!!!=A!nnpAa!9vCuS`,uhvY馧 =+(?UFl: yQ -dWsbqK?o=nb\pwpa6lzc&>9UGK\oBАԠ2!@ȍ5[7G>e{^о({ד{t>Os< NV1+nB\`GAGaDu[K[w uaM <؅brNvR>&J9ClnB(=L 6D]绉 &3Z%XGciqs/ˎLe 1_*˅BH 1 "iLOg@5= $FduҳԹ5텚dzߤi$6>}>[v*7 * [+߬Uk(ao?r'zuVqZԤϱ RNip64v؏J k!~{YRqU%A#(膛_Ē4!9t'RYt@¦-mJ~61"#s:2] xt]I 9F;}tmUUE 2Td=49>Ǯ ǥh°C"e+b&O,p=>V*⁄XI?!Odn *PUQFA:.bq]^}Ypvt*Ћ#CIb=. %O> _# a $ >ď5࢓\F$T>gO|Tp0f:N(2X~ӕwr2J> P(i3_eZ?z?ȏMJ~|m14{|=$ 7V ذRE8\)kY~jymVH"=G[ R/EGf1}%#|# .cfP> stream x3T0BC]=CS0eaUeg```bQĆHBA=s \@!(ꎓ ' endstream endobj 159 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 17 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F74 83 0 R /F31 13 0 R /F8 31 0 R /F62 55 0 R /F73 80 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1428 /Filter /FlateDecode >> stream xYKsDWbD(Ln@Q[=(wc*q$3=# pС-y^Mv~rvaը`f44bdy2iGrwV~f- VJjZ|C4 jkD6?rF+p!#'"ǼAW@N]/?Wwh r47t<Çt-@̑u9⎄#-}' %NMqKtjXiwOڤѽCDO#G9^YeHB4;;k=xl:`Hc0ax.)j:Q B@q,|)7FIz A}T:#|گkq'=NsM1jbkW]| |*R쓡nⓑgqQб@3#i 6(bKexDzD]9ui8|S: yW<̜6T03K2X:'vz /HMAs.Dgx$+]3JW(>i: LӒfIRTBS@2Or2a 5~grdVZ5O 0h[&$Okɳʣh1g2v>ɥ;Fh)7T]rll:!Z{K+phDa=O<2#"h,A<܁塻iR"L-Y߭;ǫ%.u;v?Hwo=ZJ%a͸),4E4ɕcg5o1T+[!^1宊ɘ_rЅcAO78UJ<)}&Pkò} {yV]*g<}\߮ZL8xv4喒{c/{ endstream endobj 166 0 obj << /Length 66 /Filter /FlateDecode >> stream x3T0BC]=CS0eaUeg```bQĆHBA=s \@!(ꎓ ( endstream endobj 163 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 18 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F74 83 0 R /F31 13 0 R /F8 31 0 R /F62 55 0 R /F73 80 0 R >> /ProcSet [ /PDF /Text ] >> /Length 2247 /Filter /FlateDecode >> stream xZI۸W&Ң ĩO8IRwUؒ[;~\L%ΥAx{;(o3;)i7dz$NL6^L~~HAa:K ttEi"c8n -!E-Bd<ʙ\ 5ӧQHS$Rq-D݅i.21VB5);ijFFkyZوJf'%+4E~)O]|.K !>?=Fno&,?傡CXs40:|֨ ԘynkS0M 0]n:3YB|h5p˃4l\X;i y|J$*q ÿLz0kw:ߘ4֠qX\|*J\vXsmYb6b^zs~!,w]Dі?+tC9R;͘'Pr:D:[|]lFo!/ ܂&>;2_;(%ePT6l}2ߒ;f8I=(-; " Du+6McخeoQ!]}^,(3D:X]UyIYMLݣ/çl.^z/ %khwChǭ0kUs \o4/<r݊IկJ\ I ڂܖGQyu$vL*zlAͶYCYXeȒ(_8&eMV$w$#S%@d#.~D NS %epځy6̌QuOѶ|o 8Í߄6 0aHpFyC1bgaSoȝ.~xзJM'en?~ 9$EFOWWcVk`nSŁGb:`{-{6X x-ƯZ1Z:{ C{s}c5>e*?mVԤ)fMT1S讳 ݠ%sxN͏&gAVXI>/ c|"yV)a㯳?J>P(>XUyÙu9gH&.=n<4՘.0R,T {W7@g~8_X[{%Sĉf-o`u' 5oho_W;fMOO9Qf CX%z5UwB"شy~ف`O0Ϝ̙ |LD@T!X:q9p#M\oog`:3GFGKOG0MM'LNbsJ3pZkNl O̹Dį> stream x3T0BC]=CS0eaUeg```bQĆHBA=s\@!(ꎓ ) endstream endobj 167 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 19 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F31 13 0 R /F8 31 0 R /F62 55 0 R >> /ProcSet [ /PDF /Text ] >> /Length 996 /Filter /FlateDecode >> stream xڭVKo@Wpް:RJqOMcq;HCk0EZqlKPQw?`<`_]2 ®+,:/ؐOU1Tg*4Cxe Lڂe]I0Ј>xв+jï:dž2Xo7 )1#L:e1`#Lk$p(4/QW\bR;z8࿝K^DDe>  huI|QX:)kY8)UY΂ "DPPb~5#Ũ͞MmĐQ1#~WEyF1emNм8HN;'oG6 ĉ#d,4C06#w}_Lx,,67, %a١ߏ"^y˺3WVD*/l6iZkר-T5m\Kˋ+9XE=IyX?2Auu.5#REP~\Ս*RȌQ*4JUAஊR2CUNLih̳<֮52CyS bϫ̪&\nRe6upxݴ$3\bUIyXge$1ʩ4Rj?8Q%շWܝ-W6pmJNr[ G!@lddc;³TkY?fkTiڨyԕ#/JBe#c)TIeE c8e侞Xf,i< Ihf*C*ܨZu%c0*ԑ텓>ldXogk *ó"x |]~Dbe(a4)}Eq endstream endobj 175 0 obj << /Length 66 /Filter /FlateDecode >> stream x3T0BC]=CS0eaUeg```bQĆHBA=s\@!(ꎓ -* endstream endobj 172 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 20 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F73 80 0 R /F8 31 0 R >> /XObject << /Im1 176 0 R >>/ProcSet [ /PDF /Text ] >> /Length 646 /Filter /FlateDecode >> stream xڕVKs0WhH+f2m-)jc _=>!ajwZj_1)iHIso_acLgZ}ꓐZB`Z iP! n uP'YCa[$]{,=N"2F4dEiiHÆb> -\ BP!pQmk:AS)M@R[5}CjNj++~t"oN5Z>8M+mJ@*6NCՀ׭O]<}ݚOB YF8: ) =bl`St|eC#1X )~ *H?a)&U$@E0;;! r Y((";n9|`4 c[2B6#{9ޡm;GS?caeIXSRͽ/E:ՕӬۜKF+4{%yYh iJykw>a.:9g&2w\2Z:Ο$I"i%ܿ"Ʒ[ yf`ߪgJS\.?E4b ئ#s8n endstream endobj 176 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./manualHaploStats-scorePlot.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 177 0 R /BBox [ 0 0 432 432] /Resources << /ProcSet [/PDF/Text] /Font << /F2 178 0 R >> /ExtGState << >> /ColorSpace << /sRGB 179 0 R >> >> /Length 658 /Filter /FlateDecode >> stream xVMo0 WŠ>sln(]0Pd"M&?ʖc'(ive%> a\\Bc!Z bi 7nsX?wusvpݣ%: P=H YdI (ixWMf)@2ȡlc*^IXYz7z%! bi5Wgmru0Y농ޠԗ+bw誹l0ūzG\VsKlׯύ(CѢu@N P 2jn}?+7Ժ#zt)^LE,Oh;sY"R8p1 ;s:7oW]`*Wn+@Eҙc'wLOU#:kdZEz(EOޡЀw3K=^fz;sKB=>o<ќ'RX5gmnWunpf3דCu>CxK5ִ)M "[${p4 5;@%E:AN?B;G endstream endobj 181 0 obj << /Alternate /DeviceRGB /N 3 /Length 2596 /Filter /FlateDecode >> stream xwTSϽ7PkhRH H.*1 J"6DTpDQ2(C"QDqpId߼y͛~kg}ֺLX Xňg` lpBF|،l *?Y"1P\8=W%Oɘ4M0J"Y2Vs,[|e92<se'9`2&ctI@o|N6(.sSdl-c(2-yH_/XZ.$&\SM07#1ؙYrfYym";8980m-m(]v^DW~ emi]P`/u}q|^R,g+\Kk)/C_|Rax8t1C^7nfzDp 柇u$/ED˦L L[B@ٹЖX!@~(* {d+} G͋љς}WL$cGD2QZ4 E@@A(q`1D `'u46ptc48.`R0) @Rt CXCP%CBH@Rf[(t CQhz#0 Zl`O828.p|O×X ?:0FBx$ !i@ڐH[EE1PL ⢖V6QP>U(j MFkt,:.FW8c1L&ӎ9ƌaX: rbl1 {{{;}#tp8_\8"Ey.,X%%Gщ1-9ҀKl.oo/O$&'=JvMޞxǥ{=Vs\x ‰N柜>ucKz=s/ol|ϝ?y ^d]ps~:;/;]7|WpQoH!ɻVsnYs}ҽ~4] =>=:`;cܱ'?e~!ańD#G&}'/?^xI֓?+\wx20;5\ӯ_etWf^Qs-mw3+?~O~ endstream endobj 185 0 obj << /Length 66 /Filter /FlateDecode >> stream x3T0BC]=CS0eaUeg```bQĆHBA=sL\@!(ꎓ V+ endstream endobj 182 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 21 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F31 13 0 R /F8 31 0 R /F62 55 0 R /F11 94 0 R /F14 130 0 R /F10 188 0 R /F7 139 0 R /F13 191 0 R /F73 80 0 R /F74 83 0 R /F76 97 0 R >> /ProcSet [ /PDF /Text ] >> /Length 3435 /Filter /FlateDecode >> stream x˒_J.TeE 8Uvk;ީaWfcVv< RԬ$4ij/4/n}¨RySUzv9=s f7٫,R^@~/+Z;|-9FgЮO7E=kjBչy1pZg'r7ǩ4d)sW0ᨖqgcws=GfZmE{l`jP{`gp*Tu=qMibYMr./m`[gnө쌅ĚE$T[HɌdk+M~QI\!SZO@ÚWR=T7C1Zʢ]bbUeшUy:P_ "h:9>: 8e}A4ue;ːg ǹz* ] K!/W^UZL·k9RwywZtn>b*1LF ̈, jh 8 vު~H؁cjB^Iǭq}IbWƦv5G*{{f=)>dm#4^c@-hPɛ{-k G~L 2e}&xBOHAP`7-8ݤyQ&a2>Ei,tk#x1yL-q JW7>C353HgVTv={S1[A'vn끆fȁf(ng/} <L* {cB18(M?<MnA-_Ar 8H-ɻ` E-ϰv$ȊeÜ?rBPkOrvR@4ɴ[!1z5>j,W*S%ʣ6uuyAx'gˁeD?Lƻ8=.Gs/ƘTQVT*P Hh]0ԩ`jVU Ǚ;t(+ )lZ+6;9JNWu]2 ^ChՊÂz_X2[9:򁞗C::(dlha ^W6܍elЍu QӉu6a< Fh} K/ MΔXNa5?pY;^u\+oK X'xN*"uvM8 I+gSu)BWSc^pбLeUt ,o@ĸ\ ?HL~J~&=&| 2z ?Et$\fPl?`wy$/P9g{C9a+伖nT(捈 =%z!k^+z݋H6ErE`u\(\M3OfHjڴ_tpOJSV7\-SD}ׇ҉#Ot_anٔ^^8|Jv @4Q4 vR<4W쬸ZdוpaE:b`y7/Cf2`:8֛xU)=ld gpűD1@c|`kBK~_CGpHc!G/ڷ> stream x[Y~_U1q_)W,ɊXۉYrvw".!Y1 ]*D,h4>th4 J(8> EF# x}*%aY֠gr‚E'SdQsڀ|%l^(0 V鄿 r0Z7Sqt",?L'Bk5`(FdE>;,򳈙2H5`b[B"yJąhn09e و8H !"Y pgQHPl,LH49@5L\Lb QE VCdpju);a2ttm!J/q9D^_44=BcP)B訔Sn(T4d JQ#b@ JP-'C8t2d)ב "Cёr}Ok)6ErI4M"U䋷7ϪL>Vl|^/Ÿ^sw($G:T/f"3|^]f59_xNjZŷՋgY]+Z, qS_Ȟ-S#ooɲgOzG~<$T);}7Ţ'B>Kً/~=]OlF@^\5KX/٥67i^,E:ϦT"(Z]-JB'1==Xz+D}&6U9VcOlid 'rhnHZGղ,L%x>hWP8Bw(anQPc(aq"Q=B0j! P:  8=NE8 w_0D1&K(Ҫ _.Vg: 6:;0 (~,L.SnKJ'UM6#I5E6n [=d!wiky6Di+M#'bL1u,”JGd=HbbbH,H'KɌ.rLYX K0Ҷ4-.51%=_m_JzԦp-mwp8J znm,!/jq$6{釥.gKL" (Uћ֠ F)!ua@S0uJ~˕Kqt"ep mfwR`$"a :^ڡi˖ttظMVe``k[3sh㉴"s-mbwF~|GTEqkh4iJ6=Z$jJliԙC8SnI %Y*Υ{5X\3&C6B")t>Mmmy=x=kC K 5-*Jft7O < gl(a6˶m,/le+{ z"`f6z8uGѪR i$bNBz%^BeπؕgIsqQc3M_SDe5^cju=_Փ颹Z>F=]D!+47Im1_ʛz)Jb}UϨ|3Z^׋jz3E]ˋzXkl~5G|:!$_VsH>OR~%ow/{LU>?oGY]C/z7-64&GYs9 R^FKSy-gr.or!r%|#o_n&…V,\-XT9dC.MM2Krh5ȷJlVPupe+z]\Q8:쮶a10IKk _RHJ>ÚA-'VF59$A@68EA$ElN]25 t҈>Pl[O;0~0S GCr; JnpmÐ3!EfLrW!=y*%]:&]<3yO?FC~H=I~COw=E-5٭m}]V=]5^=x!|heĖ(K`j"S9G\K59if=-EѢud"%tv%S*asY9 0\XdV$FC$MSQT*U^|*7,i&s͒qPaRtіR -9dsJtR>i |:%{M筽pK`ޘSrh)Uxf0 ︩FV`x)͔O7SvQєz"S?d_k %UؗP#"C/ #F@+}T嶵X{Mu徝dN C'vQ%]ZDXU,@"Ms%I}Am؞Q4bw|Z/{4mݓӤ1 4<l4v4EG||1(ŗZQt鶄 <ťYѣ=bcE?0j򃃰"tnAG,\e1DD=WN.(4[Rν-+GV,R:mzlpuDp|Ǫz"6`;sw({޻j{F_U+[1=–g/aȹDynNkmH8T|Þ'%GQljm JK ChjrӳDswm*).(u_%K뗡TSC4/g+Y)t'p yR|; rKcޟ̶!{B~wx;':>\a(Dlf9~@lTlqXq,fY ozl%wX|{90^u^xu3[/骹ݹӃfRCRm^7B~Mu,9$`;2=̷k#?^T7Wx)_n֫υS~~G!-Mz^5jQiP~1QO<\ɶ> stream x3T0BC]=CS0eaUeg```bQĆHBA=sL\@!(ꎓ , endstream endobj 197 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 22 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F8 31 0 R /F62 55 0 R /F31 13 0 R /F73 80 0 R /F74 83 0 R >> /ProcSet [ /PDF /Text ] >> /Length 2470 /Filter /FlateDecode >> stream xZ[~_al^dtHnMZ$;A6y-Զ=_s#E12Z1ڏ:~rz>gC|pOGehi& $<:#:03#UI^( :~/Uɬ$LYy64tsb¬-Md޳t rT9l8[$QVkVk;h4Ԧ826rWmcEHWmBP Wl0`hp5C]'(}v0^fSlD{A݌?%U} ;󡚥E7{\"lmm4 \&"zN+IYԔ:Jx=q2b AƛW'Z%g_E6.czfy1,*r-*zqâHPs ))bB2 a.{ O2>K(Er"ܳ ̃w/+  iMX U7iX$jBVg[`YeCVU 7X\E30+ t)1ЊO-\;i;r#y%n1ؒ]k-Bc!';&PYpCyi`l4O4{v1(F[i>(io I8ష [51`>?|ҁ@8eqw^*lW=eRDXuY;DpN,\堈ԓ}tXؙ(@-g6+BmH?~UXPJ\ $NaXn|;B A(^FU^ߩ̴/ыOɘPA]/ +{NKͣWfѕh^3M˅|ێz雎OoOAK!2̶Z.oA D%8n q$? x+& TwR'oT%b#r|akX!)IB?}G$DB"kc>43,ʄq[}q/mي4j϶^m?JUBa%#TecKBD%ePO&!j\UByʹzcBB[HJ]b҅hD8CK@"Mm:rg}Xq7 wLuǵq׶XEOgˀ^U{:ϻ[ ,GVՔmI~Fݸ,~P_g3 =;zm[+bE;gu9L}b|jc뾷fA}hOUw`K)1%r ~@ Gn4Wb'^_ܳ }H_/A&ͽ|dCʵ;0UULd]lfieEI:1G'rқt[v_AǼU= Y5W1Y*΅atYKc1F>6m?'^6651rN=Wyn~ZG3, ߴzdv[㴓9SP䣸pI"Wwn endstream endobj 204 0 obj << /Length 66 /Filter /FlateDecode >> stream x3T0BC]=CS0eaUeg```bQĆHBA=s\@!(ꎓ - endstream endobj 201 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 23 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F8 31 0 R /F62 55 0 R /F7 139 0 R /F73 80 0 R /F74 83 0 R >> /ProcSet [ /PDF /Text ] >> /Length 2824 /Filter /FlateDecode >> stream xZ[o~ZhuhɶEnܧlƒl$G#﹒Adqs?G~u~͛jV'uYJkz~HX,*0Ĺ"-w0iN)@Q- y1onh/ax8w\]u+ x:<6'J+\M?,>7E).--Z,K-nbeYG f*S,¶Sxÿ8C;.=H lgKIճI|oX8||¢.- '[#y09&ϊ 6i lg#BI1K$Hv̯1 0;I'FV5]s$&k8nE~!`<׼Au@M&OǛVǨlE5H Z/ּ=)>0+kE ԇ7(T𸉬 /K6/ΙqX#Z1(gpSvA)3"WHّn7od)!Uy Ʈ嵆Z %@{i HCva7cNcʉ3f% 5Hl%Z+_ / ;Ai#$E"/h.I돕-k/׆R/y*ωl3ޠD;܅eWPSӰ~!D샞l0KW!j_xWrXt҈;NǶ٩ tĝ8 p ky|D4R(veZE &sURԚR)҈[utJMR'|aX-?o&y::MDJje!cD(Q JFDUu#!QᎴ7a_#v;U(b2BC)W&ňtIj`ݏٔ"KW!Q\RX9{}~ mdfvf)Qvڝ`fkXN,fdzWJ,>3 xFLX(_)iZ4HWe@:J7$.{s6. ߴ1 <]ys |.uЕJ x>/!A]/ ,q5K'(;h-"XQB\HVY_ kmFrTn|C|1 d ZX!0h~yB@7Xg]qQ7u~[y$i<2@x$Auejy> 1U$TC/5 ԥnMne}>[ESXpc-jr9T-$,SBGv\:z[3 &.,|:h %?RRZX+L}]yyL6ѭ19/|oeм3Tuـ,KfSWV6/Dpl^XzvW IXO)Xĩ`, > X=(7LE//<ȔF#x:`}ϰx /nODϢD7 גD@P_P9R@Z`Koe:JoyIS~;*R2iGIx{,һAӧ4Q'>;+fZ 7] QW8qjK`kW1DHT[9S7Ȅ is}劑 U/J_FOѭH92&س~HDtOkS SSoegnXӱTF$As_'*"e*5:L[^d鐽kzK_tJUyTD"-AY׳%ӟYo[V endstream endobj 208 0 obj << /Length 66 /Filter /FlateDecode >> stream x3T0BC]=CS0eaUeg```bQĆHBA=s\@!(ꎓ . endstream endobj 205 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 24 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F74 83 0 R /F31 13 0 R /F76 97 0 R /F8 31 0 R /F62 55 0 R /F73 80 0 R >> /ProcSet [ /PDF /Text ] >> /Length 3733 /Filter /FlateDecode >> stream xڭn=_a/2ppf82]hM$.Z-J:7_߳8,j3g߆g:K[=܄Y{L.ܭo~Ztk|[phn&/|8yI|r6@SfQҥe2'8^se/e:w7Kcay{#8g6X zJA-SUT,=aBsjf^&7e.J(Gr=5+F|rl!K:v"bGS3e K>nk^v}`o_ ˆ&QJ@T20;*~9DMwһ($R4|hSl4Ma/W(P-V pQ8o*3rdU"FÂe2ΏFҔEb9n LdZ}9>ujeͷ *RmsK7Ld:]:/^@1X'fQj(41 @Au]Nf\K.K'$O_9scq6:-?GҞ~9.]o;v3_0PPMpe |ೃO=ʏ=﯒f)ۗdU^1;b8_m󬨫YO)W(|V;`Vg7#\="~?g 3?ÂXBw-mȞݕ,w|L(y9v|ֽ$GzQaG9aYLYf(@#[XmIM lޝp]lyR~W| G6ULs~l+F].5v@ }G]V_ky+x_,#NQd#' 0Br͏[,AGiD 6ɭN~{b2uğ89\+ȥkGAb`+-?\NbTCu.+Er  ƻ%͡I@T֜]hH@[ qlBN2c{|гuPw 9f;͘mh 댤ߵϘ# _FMƿ7MxdnsCy,J\%8i e5SKyF\l<Y8u2 `ߘ])Ms?(ڂ̏9z`{+Wh9KZ%1Q%lTUJرXrSui.bɳHyJwzFG'#I)F]TSB  LHŦ.x,ZZy~x x$gT/+2|{i\9#hPK4umbXЩ<ᙓ=OzL@^6.AyWdzXJC)&fTwr9SKA&Rsmnu?q`-Z|=EI6lnz2TQ^ XFK1K anrso ݬ/r۷|2m=L)#+1횇Yo'z SZ'(ZC$YSuzQ8!8fq>CN ֒>WyYPIdh?.$(QZRo<ǧX,ޣ(Ə_wZp8YFpTK9 + y멝v"%y<{ӭ4\cGf6&BkiiI)2k3Crd7>Y.PV|KWS6z+rV7RqJ$ lV:vWb)v;} =qkkk퉧ҲǿUGbyqikEH&yAa?( zk&Iа)K`ڙz>{k8aiqͶ]ȌJyE|eY*P/Lf}5=S]<-iKqǰكvFxb̂OF%2kCT i+G$M:F4¸DK(A..>ZY4]pM՞ݐVk]j[~&")fڜ8S_x'iTڅč:¥guI6Kjz4j@Ӥm[(U4fZT*qjpB{ /}$}֪ 'Uħ6mSMgݳ>0dw)'2 K\)U㓿Tu k&|)&ǫ}/4#lmV|-) o]l5O]##\q^?stMG)JE&r8n sՂFd'^뾔ѣzA5ogUg.R] -ϙg}@83΀ yFxι'd>'GWYDNwǪ,6cyCx\qVOϱ)@kȕhwbwˎ9 ErdސGYbCŸ"ti LKr1Kc36^Ր / DԹ{Y@ˍJlEXƛIu& ʻMD#Ù'ӷL238zJ˔O{xwM[cܞnܠģ#͗_ͼ?IKLJ\xMFyw҆'ĝwy `c|~JJb%n?rUˠHh1dti.IHO ECe/E>3#;q~'T7}5}T_FBoq,1νH:YL伏> stream x3T0BC]=CS0eaUeg```bQĆHBA=s,\@!(ꎓ / endstream endobj 209 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 25 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F74 83 0 R /F73 80 0 R /F31 13 0 R /F8 31 0 R /F62 55 0 R /F11 94 0 R >> /ProcSet [ /PDF /Text ] >> /Length 2360 /Filter /FlateDecode >> stream xڭɎhtr&Vj6H1`2@ 񁭥[Il۾*Y:6|^}ūRUn07-n?Nd7֪24<؉W|ә =cU`Zc|H.>Ār+,_캋E㜹׿/x.nŤ[޽ u(#IbDŽ>2;F-Flkda9> uᾏ2^GYGۀ]RL"L*:;>e)۟r,Ӄyz0?f~6_hsWc;5ktS2P_dzDUJzSetcҩ]e:UF_R$`Hʡ>bć*5ZtNTNEϿw(, d6<й$'jߋx:WDx~gs^2,w܊}`$z1ciCσ UNp  9kZG[˖} w#{}I}lǷV߰S1^*EʂM!Ftflwi,_[ˠ˾RRhJ©mDJ;(;<3.i@5aVs'~#)HpJH7crD!9$*Uت![65I3xe[|x3TaA-bPF|jY9M0s*},ԲC#Z1-%|=.{y L*( ](g,.lu7ˇ GEgyϢa؂9{0hX ^f ], 0I/]3p mElChr 2S%dm!*Q0*/Ν'7Ua};6>tgjᐂ?sqhu^X-)pt^vp"##[ qjs.-/GF6r%TFr6xGS8jkb_fO8潋i%-$l^Qmv\*מ{P5 |߻DJ2)I!VXzG0A꺡č^2a*5אA9(/6n|7ϞZ endstream endobj 217 0 obj << /Length 66 /Filter /FlateDecode >> stream x3T0BC]=CS0eaUeg```bQĆHBA=s,\@!(ꎓ#0 endstream endobj 214 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 26 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F74 83 0 R /F31 13 0 R /F8 31 0 R /F62 55 0 R >> /ProcSet [ /PDF /Text ] >> /Length 2313 /Filter /FlateDecode >> stream xڭYIsܸWtͩ5 C$UIU@Zi<%=x.rhz}ZEk]\-^8UqſoԲϞ?^/rRh뚈聉N)K3?2IwYDO8?3On12HT*hS.ѹLQ{ͫvc&;VKv;/)-[40ǎ_;ٝƻ$ܟ $wGy$s$gs@װE Y7: ڈ.us"fiDecsCEI[>f$)_A0ˬlȮ>/ 5+k c D6lzfm=Nmi {/Gvhj,7 ؏ZT |P7}1r kcEKq^W-?`UzKO|][(ɧk+PM<}Et]˕_b/,r0.UU^$F;6Qbw2kݴvDŽxGf#ߌpKv#E-un }.GטJ k% { 60g2ІkMvPn1nI*"D4hB0U;-^" #B:`%2X"/ yMU| 9f6RCHLjTaygy^Άjװ~q4M:fSK%J™6=3U٦5Қ- {q )H>/Hqo^wE'UB$Q鈆Ƕ.W*џ`qepvs\0MTF(#d?2T* N(QMYeb[>=hn{SU-K?}acEvckzO6pO3񁾪U60=w1ҙ-ڲjpzߍIM\[UIQN5oت*K*' =}IP`tBD$qIe vGJmxj,ҐEN(9ȣJ7j#4R'+lbcszČ {b{ R̺ ɼ] gd :-KM@~#fW:K2<u;]EqɅL`1zb'|Ȧ=jQ=tє9D4js0*L_kH777L͒1TMt s1aqQvꃹ,, 06=)Wm[XW>gTz\6)9pw)m(]i6;鰪K= l< YP#p_qpI1Q{I6!\鱻tX[z[bv endstream endobj 221 0 obj << /Length 66 /Filter /FlateDecode >> stream x3T0BC]=CS0eaUeg```bQĆHBA=s \@!(ꎓ ( endstream endobj 218 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 27 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F8 31 0 R /F62 55 0 R /F31 13 0 R /F14 130 0 R /F73 80 0 R /F74 83 0 R >> /ProcSet [ /PDF /Text ] >> /Length 2090 /Filter /FlateDecode >> stream xYY7 ~ϯ0҇m蘳m 4I@4ٷx d_+9@ч(#{WZԅ.f'gRJ%4d=s~P~4^-472WШy7hlNK][xn(N~{lx(|&qt^[aNmVg|P} 9W:so+SokYr~9lD^Pzg*JeL)Qϖ(,u)* Ja;|TJg痠p9|+mE(k}聕l w¸NK'!nwԺڣ4Z] S)BW34H:s=7ur㿟sRmlyd:ECے9ĭHP *c^E^{#I$- $»*ɥ+Xzp ]-]b!+ڄS~ְH- SBZqy !\|F#hSq̴]!f; }žz Bu W=j.]N[Nib'TR0 lͮ=% sc$ẂŚ%w0{[SY13MwM- nϰQG6QWRXP.rڧkll,Pg6\44W>Z@Az8079"!XWd1Ffcb41@wӐR ^Bo3ݵl*L킇؎!4A4VҀ)˜ O#]y"ަ͑ɶ]+$^ @eDP0*xV^єX̿9A ?Ņз D߇iE=ޑ4FP#}1̣3fX^'}\wO0zPjK.84= [G7d^jЇ).EdVΖ$}.ߌ8' Wty䯐Al͂ǑqX]8C>=7ݿuts]@)Ҥ5mmfOIdmZ[Ⱦc:\!)E nIWGqa|ꆑ,9e rpܧ\>ed +B,oN>Ηh(*t?]մ{F^rb50ȚYۇхPR`2Sra?][KQΠ)Ar#16kB ȢNFLM]*!dsoryۑUCWm 3n+,ce s4e*wOn_EQN Ai"+VÙQV6ǫ Xv8o)vp]Q{%1<\S`f+S 5]%c ې}ʅ|lWIjuʮH^2眿Lˌݳc 6ӕ2)EUTwk7b*|<2mzZeсNQ% %0YDed3'g4S`X)RrEҚ$dveRR`% g4J,a s5D&&'yvrۖ3(tA';g\5f+QcjN}-9xNx-ѷO1QcX1)\\SXK!S1L9>W;jRy&cѯq,S+HR2{j)ٔY=1h+YՔGRBƒ"ٴb@wa Dfc*Q5Elj|Y0[\ʂYDαIR^q`rL'VuzdFѲmIzvcCfÉvz2:|Am~O6>otWEmXg3BC 81BCꉁ!5y!9F[yhĚƛs E_I讼gڤ> ,Kvy:VfsV c|fm·~0[.]k!U=[#4[?kF endstream endobj 225 0 obj << /Length 66 /Filter /FlateDecode >> stream x3T0BC]=CS0eaUeg```bQĆHBA=s \@!(ꎓ ) endstream endobj 222 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 28 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F74 83 0 R /F31 13 0 R /F8 31 0 R /F62 55 0 R /F73 80 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1670 /Filter /FlateDecode >> stream xYIs6Wh p=ML:nM4%ٜjI%:/[>.ۇ{ ^/z'2*3YgYEJrG\mmضVmaYnfRQD0~*Nr7})Dm;0v8EX48zn-:.@P9N%,LGT&ݼ xg ΐטw [;aVL,f"zZG7?̄N|y=|(1}!z`blo'JU͞nZY^Y͢칂< ehqLY! hCW+=ڹ E_cъefsI8eeZA$2hCp(1mcx2_mXWTNq)=fH[igGKbNSh:Ej+,I] rgoen#Sr u:n: ,P_tk^>w7:B?g4gщ)B)ЩX õՒ_Bv́Q\ ;J+VM}&rd3e93(׮jH6!砈H&u^r&3~DszlS_V(Ń\Z"[Zuh:E~O?Ϊ}t$WGݣDVz2Qhk? ;!ӊQ[hlS KS L&ݚ'?YQ*9Z|p5&Q*SCu˲+!D5 a ՉKQ}qq(&COhR>RJ9]GjGf-|D8gy4 Q9FAc.jCc>|sd]`;ut|4p= *Cs^Ou02ѽF-|e$24u硃u?Q |,uڻ&'jubU¤27T߳Ʀ endstream endobj 229 0 obj << /Length 66 /Filter /FlateDecode >> stream x3T0BC]=CS0eaUeg```bQĆHBA=s\@!(ꎓ .* endstream endobj 226 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 29 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F74 83 0 R /F31 13 0 R /F8 31 0 R /F62 55 0 R /F57 52 0 R >> /ProcSet [ /PDF /Text ] >> /Length 2998 /Filter /FlateDecode >> stream xڭZI6W^bHk`{IدjID-cJEoW(%v" _/߿+҇*r?< P$qi8᷃_#;癱4]4^^ekyKA;:j2Qhpo6[+y&<̍E/^ɾӥ /~'qZeD%SFȯګ \rBY*LDU4fJI:H7KC^O{3d0Bޥ0Zbh;W}t±Zwsg» yȧ͢2wb%B_.lPKkF`78oc"9VTgPkC$i8#NLT ˷ 4V4z(d. C-қٵbP$plĨ=QaR^aNX"8>sPݿXK eK>RCy9ͭ[kέh.!e#H+4VvЖ2}nKK#F"1ES07Pb<]ːac SI⊋zJ wb SUԝj \i;5eXvǖъ) _V% (v\SpFK'BEZYnxң#MˌZ.pA@s[)p~jw !nHՍgK`bښ8ô/7kAV#I7KM_pA!WR{?:6;%var> bHy%&] ,ɚD1 cYrKg:'$ieNxHk6yCu?KI8X%'>pũh.ҨJӉ>q:?µʅQ2op't,Uwbg,?d>;i kWgÏ\ȡ cl8O g5-e"2[LwnRIu ^-Ŭ+x?|YM<0I{U<0@ϧG /˙;k\^N7UvZ֧";<%S% 2HDw|>M=ÛC-ҥ|<5o$W_g-o%Յ!^w M# 3tvՋ'b-F_5|Q,ބ1U'ü0QK>n*{T# endstream endobj 233 0 obj << /Length 66 /Filter /FlateDecode >> stream x3T0BC]=CS0eaUeg```bQĆHBA=s\@!(ꎓ W+ endstream endobj 230 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 30 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F57 52 0 R /F62 55 0 R /F8 31 0 R /F11 94 0 R /F73 80 0 R /F64 68 0 R /F74 83 0 R >> /ProcSet [ /PDF /Text ] >> /Length 2527 /Filter /FlateDecode >> stream xZIsWCȊc6,T/q^\TlfD$dz!ݽ`ZJr:M}qu.Ilrz4IM>ZNf35Mr5+e^v3xǷ ~;{3BO^sX/pLqW*t UwȠA28":{!1b WH)FN'-E邵7 ɧwU[RUs?sO!UQ{vgw|-b<:y$%fiG%%}-%J6kmPkĭQ.u2<5v9uV'ftRKQ1p|3+hlx]43^HuR2H$+*Jq\åAlݴY Vx) Պ^MlILZӵ$i{]dk~faqC-^ fCh F U dpWgWi#W\q<-2v+K1ƮTs8)L6;KzCxp`D4QdJ6<*M<ݒnm_*T Qӊ?aT*Yz #"ۆ7-;Rr!Z,Ń=OpsJ.\I׹55=Z:&.5>ދ Meٌ9i[-z#ʯq)Z/vuDMi>qM &SGZhU& |wL'I݋I|WXwZĺ(eѢ`4fr 5SI@v:eK[. /] FDP]ȁ5{ Ӄ@{X8s]i^dɜUz*\lq& ׿<K>P^,+\K7@<#uN}>GǢHʘswuvZ5\ss3* $Ru}hxu6^1Su>G^Op RcB|Q.b<:X*T T^:_:ԉCeDZV2bPE ˽?Sӵ4񆼜^Vt[hOET#W K@І3U+x,&_X$nyp󨈁[VUK%`o >D*M++_5 IP9ˤ iu~t1vIrMy#V\QhኩRյ!) t[炥ǸutM؍9yc8 f:Rl>R| !h#*&`Zups3ΪbFЁ@|];&o9k6@ȟzG c:C;ú[IVCB@d:$ ExxW瞙8` X< <1fհVT6 "r0Zn_ҩ {{Cnj׮mPdaz~dLKSFw$rOqkp$ e |ضGK myqZʉL䳑DV6JF;BXEߴ,޵pWbpv!~9aU"Wj@6Vrwe]1E&1"oEߟ=%7"RB⛄t 3Mp 6O軷Y{'));SI/CINpe g!}`}6yƤP{{=;k!;> =+V>SkiB }6<ڕ^Y x3Q8^sPo:M (E:o:*<_N'8cqE3{猋6 7^>\?@:"z_ܜ7pGMKGsPl:L崮?6s֢+iMYgR3fȜ`yޟ8rc(-i65=O;t\,JPbق}-;~,r#]Dy \r^]ԉ̽ ϡxFT245Ӟ5ұ!:ryٴYo ,ʄ{ךϺ3eii e݁7-tCг;#w⊃yp lWBOh4GHD7ԺN>^g@/$b.1ۀuO,o;T_2'O%#ub1ui> stream x3T0BC]=CS0eaUeg```bQĆHBA=sM\@!(ꎓ , endstream endobj 234 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 31 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F74 83 0 R /F57 52 0 R /F8 31 0 R /F62 55 0 R /F73 80 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1772 /Filter /FlateDecode >> stream xYK60tESIR oI^ʛė΋Ȗh$r83C|rU2/x0Y `g`r1x?G _B[A]ACo/mF(40> !ӈl!Roc7!xh+CDƦ.uJ#jՃf"h)lF'Kq`0kjBd~iil3x͠%"a IyqD*&ǙMq!dcE[fƪ_uCBAu恭v @{( (b\ZF/]VJòMN)E vëV(0V1W;#DOyi,6.sKS|prb!cA)fo=gI?im{x@ٵZE:Y5OVy-z <33&J%G&Աm9ɶJvxZv*"Dm%Pdʶu@n+6ueݰ|KZ~|7'tZ k-EDO'-z/;'+$d(",LQWQN 3!%)@zncC$MR3Jnm /HFpV.4OVǤM%Oj sElGA#a$=65K#8+\嶶$xz}%I]n,W!R1e'G|]]RGE[ϲyiލ@7Ǿ?|W94żG__%p>cR|8#$o"GEn>2 sq2AUSn,<䐮s7cnՌ]8Wn\NF) X[?_캠́(aI$J0. ֍1F%b< ߧ_"8KSGYSv9oQzyuCVU9 4ׄ=cV H_ n}Ι"T/ `$Ս &x0WB;d.!͆,;,֦0q.>9s<>x_%8Z ˊES%9Ȣ{`(|3aeֶN/`!ap֍v*CxKLXuSf*fDO)`vwLyc_=V3Jq{6HaS\LW~)cdӔzh._<7e1)xfԅI7ˡkq9Z["[uYJu!BSamO8 eϼMU(K!7 qƳqAX8QRѻURp-rw9P"ܮSs AXVβjM9=b!h/ۯ@(^(l?WUP,z(W8 պƩ?xkJ1*-ܺ/.-io#^k8D\'u?:e[D\Э[sbg~v{ѩ[Ym Hvn|‚>^8n~$[]H%i.6v FzO MX*-w owdPp›?L|џ>#_7do^ãe:kBKt9(uc৞AdK69\ endstream endobj 242 0 obj << /Length 66 /Filter /FlateDecode >> stream x3T0BC]=CS0eaUeg```bQĆHBA=sM\@!(ꎓ - endstream endobj 239 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 32 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F74 83 0 R /F31 13 0 R /F8 31 0 R /F62 55 0 R /F57 52 0 R >> /ProcSet [ /PDF /Text ] >> /Length 2480 /Filter /FlateDecode >> stream xڭYIsWHM a40Į8UIU-G.Y. ,S:):⼜X)˩|dq+WT >D"4,Z\vûeB#)M4zBSR0g*X γ҉L1OW}TeMC$^" MMSB6TE]q&cIg"l ҩ,,䗔" T#mSy]WV ~O"1ȪM780/QN0љ,TItt?RMw9Rȳ Zt[ T⃹@Gw@&:U(Cl].`X͔/pf5,/9f_OLH~->!U!zá?,i&?]908 %wM [.2T(?%jT/(3oY[@#j$_d#= lVq1e~mˬ6! \0d^p>A3](vZD74ه\[̕ujAi$7v9Zl/ks6%.+*GWHaB[k)SPs9Nni Fwa&z6,2 ւ73iH}>{F_h --Qs{_]IՅG3v_;,h|CQ&工CvEH%"&W]C? .d0pf ~bAq~q瀽1!6 ʩrݬ.bݘ*qtV;; PtT:<3ݽ(Aa(}810%,3ouC%])WI9wyTᲢy>bʌ }P1sbGLj 0|#_~FXblw [8Mp7[&ʼG׿JA a;Ms]7ϻ}|-xqyL`ךCeVP!KPx5:}vwܦ`!XCƜYF> V+Nz'G4$9lG+ZRm{̵'ȧw38o̸^pM =q1w1?\\V=t@mM{)Vd@oX?}NV,շ1N{bi1v"[5ڷS#w8O @47 ȩvэAVPmaj+W> stream x3T0BC]=CS0eaUeg```bQĆHBA=s\@!(ꎓ . endstream endobj 243 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 33 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F8 31 0 R /F62 55 0 R /F73 80 0 R /F74 83 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1907 /Filter /FlateDecode >> stream xYKs6Wh2=PiAi;ifCMQǖ芲\ۋ.%EhbowErtI>)"Ut1$":'FSm*n*jmz:YK(*قV;>$2;JM &Vu_)[0c[-~s, %~rsaәItH/pD&!+/IQ}չZӟ'b22.A6wnLI^Mg* @/H emG:I Ecm:[2vf+xu6ނGz Ce;/U\W;O\<-bc<_^9~1&*6_Y^.G!2e*]l1[ ! Mf ћiڨ~[rY:*:o ޻ECZǯ| 8얔Qa-f_ n&歌^Jfj&=z6iTrT0[G^6Z])mUI{Ge|aݺ!dW8>0i/sn)\Xtn<3eKz{9.qnZJ\׭/Ȓsg~*2X菩Tj̱1U$( xj3>ڢ\qqyy?V \u{39J t 6}[O~cwKXF6t"b 8Y ;Nߐ{n+.dE7njߋ:v>_dmQ`/%%Zҝ~%mƑ/mK\=>>badiGNHV$yNGQAYC\r}5?Z)aێ1/;/K:폒K$sڻE6ӻ"srkS0! 4VSw|*n"1-bFg>)Ul黯!Yqm!Z8`[b'{j'~[/{wD}Wʱh7ddh x5ֲq gqAUtLoTuY7}$2doC4B_:Y`j[9Q7W8ii9ҵJ7C1MQ5,enl&M& 2S3cke4uy؂^Is7_SᶆeRGlax&$q-+fJd.oB=;JߟRbITNWLtjS0Ma2F.,e4烍gS !BKdf!aXOyz욥e('k=8ra1{03c:Z:QWֽ&tMyw{_@pnY/w,T{v{r~gǼ#1*(>vwڗĎ͉7!x~Ĝ^=pR*a V:#'nPhyTD`e1} U_7vo؆9(VwaD8Oi~7rL"ODN\FGh혮Geט6H5CԈ%,$E&q5o;;> stream x3T0BC]=CS0eaUeg```bQĆHBA=s\@!(ꎓ / endstream endobj 247 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 34 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F73 80 0 R /F74 83 0 R /F8 31 0 R /F62 55 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1418 /Filter /FlateDecode >> stream xXKo7WAm%ES>hdie ,R^3$+Q\@{k'G_r` L-I=ooF|h\ 9\ҶmmMm`ֶ3w_vW]%vgmF'?Y%c Uv= p]m[;Z&`gM60e>݌1ۏ7φf)mY5U FV .67i~=%20Xm<ڱR 5.z) mj$j/qYhwԓnv^r:uΡYƑ5.@޻vx|}6NjI)-q.!Z xu /`ᮣRx+#+YwKUv8D6 8, ƚuhAS6)UN,b):>Ƌ Z䪰'&/YdJr~DZuLŢS?fk'v…o k{$aE[M]dEvBp񒄡k_/9(E g2BO<2? Y[Om3g)(s4rme ZsҮV,T~pX'aTJun##&Q%ki1JܘjQΘN\8+[p.G5Wqm) nPɻ363ƞZE,; ڂ<q]LcJ6г'GA0/9#̱hNThC++QkF8T|cEa.T JAIp xu.U]W=$ qW~+/[X(6$ģ<Ϝ\'"̫h.T璦C$4'Splb^AՈǔ?f-5NcAx$RRx2<i'8Fw;w#An`̪%qIċ/òC"ZSpb=eT{d=zKu.)76M45[xjr8 f^ endstream endobj 254 0 obj << /Length 66 /Filter /FlateDecode >> stream x3T0BC]=CS0eaUeg```bQĆHBA=s-\@!(ꎓ$0 endstream endobj 251 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 35 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F74 83 0 R /F73 80 0 R /F57 52 0 R /F62 55 0 R /F8 31 0 R /F11 94 0 R >> /ProcSet [ /PDF /Text ] >> /Length 2149 /Filter /FlateDecode >> stream xYIoFWMTjҤEZ !́hK];oŊCz 8[g?'2,3NG* 8F jͳ1Oh[g}eJs8FmNuc(qi[bU韣h4Q*,~c$@<34`[2ߙwL_70}a@g ob3UaF$$2i.̳0W,_|͒&,ڑ4ɀ4J|"Z;Ӽ3 2a\JC&8x !T2akn`*tF2-x$ Ul[4p[Y%C-ZKd0.XWwF'N7XF`Yu6Kޢժf;_i'$`^s39L"wD({11y]7Ox\dd@Jf` lvhT{v ;j4Q3Fw ?Mm6Xyd:*Ie Ăst}K:t(ʴ̒MIp*mk`/8͂Km'd(DI˾0:3N)Tn 4q9Uqmn\8ɞؙW.O>+gdmPNv忇{d 5);%EibO?Ou<6J$܏_\ K4to&qcbQXnx Ka^H;Өy [xud0biqXra->^Z2,hq;Klq/~zɜŴ.VI*,P!6 B;^zO{ۮ/o?KbB>@EV[A,Q-0O%f!c> stream x3T0BC]=CS0eaUeg```bQĆHBA=s-\@!(ꎓM1 endstream endobj 255 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 36 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F74 83 0 R /F31 13 0 R /F8 31 0 R /F62 55 0 R /F76 97 0 R >> /ProcSet [ /PDF /Text ] >> /Length 2841 /Filter /FlateDecode >> stream xڥYK۸WL%Җ%s+v%=9p$cv(y~ E=ɁGwu7O*/:dy(Ww}<<eag'h;x:xYu#<s\afdQ{hv-ld9"kZk#\-찺[եP3w _W;ۄOF `D{1 ^1L9hiE=ȻE^ԇt9&%Smljҍ}oĉMxo4kydߖxW뚷$e :/mX.Y?RW_yufcL1"@o' jaQzeVS=%;Z j EU ¬{xl֗gB N`3vXKv੭$IM$SOoC8#WbPNXhOh8{9V@ ~X-x$kG\@끹l?0Hn98-Q[q+ Qp;Y.E.[^A ۆJB{':Um8Qh TmTXK]jaq<֙MĄi?|\1+j(#q<;>`תBw4Q)&zyT{0dUa x,ab://F4DX{i{2s5,,\QӅd'4ϩЬ?Ϝ\ BV$zNere,k"0kgf,N?Λc-7r0!Z)!wv* Ya+Zct:1]C{Q*euOki!+#@hwK-0V$%.!zvND`s 0^I->`۵SuhL3 x01ai*zC uEc#!Nz ArInkPO" 6iÇ!=uVV `Ce Vٗye vڥQ!Z) 4Yb10-8$Wv$"Azx:i㴢=%a JDB\͒"A9hE)wCh=xR/–'KL#'Yu"Y:N80wk M{iTS RpI:vm1.K=gLc*%f\mhfy̦ytgȽHKe%.#ƨq!^d02G"NX lG1~TN#7v(PW;)TmQ3s) p"J3uc7IR#pv~?7_茾{[6{*Iq4>QDVz:sZBAƾS, Zsg/g0Ϛ; m5 L@fF8S&0%ft9}A'I[ Uf){u ᰟ̘E#ͩ'QVnUjAJ.hMs~@j84.D վ#jb 5Zǯ9 zUt/o:AlYi_WS׬'[(2-`QKp&0u;np`C|' !2Ww2x=`MS{^ڬt`WݏFJa$UTߔ":)4IB(i&o\LbeW1pk> stream x3T0BC]=CS0eaUeg```bQĆHBA=sM \@!(ꎓ ) endstream endobj 259 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 37 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F8 31 0 R /F73 80 0 R /F74 83 0 R /F31 13 0 R /F62 55 0 R >> /ProcSet [ /PDF /Text ] >> /Length 2482 /Filter /FlateDecode >> stream x׎}b)`e&6p6n6 |IJ76׻RMhbCuUuo}ܴy[7*7뛟bY?V'K[Wٿ6&[ÏO7,uF+3voyh6[:B{Ɵ"gI2𹃦luHP ~a@b;n |Un=猍 ~hۿ7K,p7ch :s\^p4am.Ex,3ǣ}/3?/b|b`h MN) !~G6!+Î$C;" }e`,%F`c>)18\1&ckUfED)k᳄*dT/i&8K]er\3П90:)B_ r0 w<,gw0qX[aBTjLvc> ڙٖNb)cÞkdNbEђĖA I4)oZ8t$cz+'R{esDӄo7\WsТ1!JߠTU$bs7ET;N*6Ii#Xl!zseS_%*h#nfvvINa0+ vq+e˄HzҜi#[>H9n(iLcftՃOKtŌc#3F( BAl-LҗBH,B BADS5")Ě$oA(2*z)± epcf R j&a8TϏ53Zg>|4٥ſ@Rf0noSٚ\0'kwtU}x1&E0OSFh+9oi?v9ƒg.I"j&*be;[pc5,있EDhKWx[+-([2OL=M{}W2I0L?,@~Z5F`_JlؕM0-K"{/%)(`Hx"D96pPK3SKgQA;~}HZ,$"E`{ 76Npu pEZD,<6ON4:iJ0yr;x+F:Ҟo ` z!qV JE}ǘq^6 iEztAqG8rjX66oZsm$YʚIHHxW5F!50a˨2UnQjUDЩ/Rа{569;5"(;( `߇n\^ ?` 5sYRtcڢ a 8&4cc{C1`n۲9۔ o#` !g{tOᦳ+|Ue(M6Ѝl<|t*leKj!%qsJ]xpCNB7"O8@c@xZp9U-f1Ȱ Ux endstream endobj 267 0 obj << /Length 66 /Filter /FlateDecode >> stream x3T0BC]=CS0eaUeg```bQĆHBA=sM \@!(ꎓ /* endstream endobj 264 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 38 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F8 31 0 R /F62 55 0 R /F11 94 0 R /F7 139 0 R /F14 130 0 R /F73 80 0 R /F74 83 0 R >> /ProcSet [ /PDF /Text ] >> /Length 2241 /Filter /FlateDecode >> stream xXIϯɰ\ b F.x,J3nY=ݝv#JŪWoRŧRUad1*4ZiW&d$x ~qNx_a"7fDNOc[&CGx蕶|2I&Sx7 cLjٔZq ,q]1Y2@#CN]M f%`64sҖ7l8=EFZ"ƨ*Yl5Ns'_GlXya$R^}k+xLg"[#LU2Er'~x$$hPC˄! G& ? Gl.!& }@ #1Eu(N8V)XY 3\oy^ %6i !!yMFܺސ ċ4g1ē׼o֢ ĘW!9yQx#%-ܓ@E{)7&?:v6"DJUdJRDMQ8[N sSԌ@!E)g-?dqk\O`b+$!DB+ >\b\zA6"ބ),FA8Ֆa୩S,܅D2{ x8pxfg)@ -cd2Ѹ`9R:_ Vh0..<>! J`ڊ ژ疐dfejrOS\&xN'+j3sH'wݒ9P^1$ЧG^ &rB{j/pkdW~z(o45YB2ڥxI`}wXvJRI: K-F^&!> ߴH% eD=Ix.> ]ֻx< $pC/w$7SP8x 6]'_Uw@KvEsl*\?y͊.h$"u*/]QL}!T ́ >'mꊼ=d$‚0"zLK OALFS ~}'K|K z7:GT1|qhiz-ႇ[>'wԾO:V3>g=(4CEhI{Jcf hȂwĠ8 ѽ E׼XF$tw3̯V _~~d 8a i]|#E4z&=*r :ധ@gS~J=t轂4= &bPD <37:+a.5yiZ!݋U=r*vD/TJ3ge)@%ӋPj8Hm$63u'~ vy+remLʿY2>Jv +{3xt>fpXOiTYDvrLl1{UOB{f晡>53Veٞ=CC&$\8O?Fq},/Բ-K1ܲq|er %kZB.bFB-{=c.VWK??kD^z~:GW#@ endstream endobj 271 0 obj << /Length 66 /Filter /FlateDecode >> stream x3T0BC]=CS0eaUeg```bQĆHBA=sM\@!(ꎓ X+ endstream endobj 268 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 39 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F74 83 0 R /F31 13 0 R /F8 31 0 R /F76 97 0 R /F62 55 0 R /F73 80 0 R /F11 94 0 R /F7 139 0 R >> /ProcSet [ /PDF /Text ] >> /Length 3128 /Filter /FlateDecode >> stream xZIo$WȥdLŭ# 0!@fIVkA/rwk%=o#UjYO>V>>~䫫/zSV.n/jsQRG/\j(뢹\JOWϫ?^ U=O`Fd*ujcuaiK4{ځ?.;%̱ed'dq>k t+aIY KLWX@wа=|;)"VZx-˿.EGMsUSZH~Iu^voH3ҥy9=m3>gRmc?[1۟.kNN3ə^Ud32w/'lƆRٟY +ƦXudQNۋ5x^WqZnV ƺemX;MWhxҫ; Z͆k/#EOj,X 9l cx~Z$pD;]xA[ݒ)oC;;;bXֳ uk]VÆk \hZ,V+ `AhoKkbonяE[?d+bUJ8\ጤ. Wq:qD:Mx5uEse?WފMʲ?&EjYN`ˊ{.tyad#ȫ/CgN(o @#%&x`N&86/t~ڄ@ѫV5zhmrfً+1(.C~\J^+0HŜ!Ez2]vfYOB=a=Րaa9Y2>Qt;Izy`k,$!8#}%W򴃥T{UB¥Ty je$!U>;nΏ~/>!ɹd;x&&"Lyg2bw- )>Cҗg) թӮ0~B{& 9u2e{ý mEGFM2Ɉ[+bNʷ )@??OD:uB7Soc'n>+d|=̱t1(T e3փe SM03"K@[tP L30<,HRx>SYŖ!(N0Ղ&N=@)R)pmE(c dNTUBKk9SZWiW9\.]u컄;þ~Uޕ>mPˑiG>e:~s|s)#[R@F*/S%BR 7mY(eDx7Пz~Xj躏B⇀⸹_3O.&1NL +G1ƫ`>Ռ`g1ف=/OS\>39_y&s|0ID#wN")VE;`M%LJu\^3L)2xJjJu+eDo)e&bɂ H1 4{`<([{ÚҘ#7v^3p)qM.x>]?-36P%d%VtBnǓdptIxdY `b5'j9U:`g%nf,cJ?tRQަJq%!!w PXrk@NN+]Gp+& |xa1#xO(#7=2OSjٔJW(mOuVU:fSKY '!,Q*2U;2ܛƱ0?Li9G̛'#Ux[AtbU]7ES'LCށC$+q@ߎuh%Q;[hB) |IC*Hʫ(q ~y."mpxl3&;$QtXvQ~wJsȕ3y2R*#*Ag;v*qʁ+&ށq*BMmiDkDjMAg]CR}MUi0}@"QƁԊ9zٙBZ'R.b H>PGTU!D5Ǎ [3CSfqrj?ߟ 0 Aw7#Wopy=@*L]`؝~y8*2 WA T$Om!Y1q +760\xS\ D//݃1z_\'Dy2u9D"Q%f #\ۤ{ywb4[^] ˕lCkeo&ҫvk^}& {/Q8j;Ý2ܠDSgEp Z|۰=< 0m gp_2sMu|˴/ @V`373 ٙe ^U6L {v;{Pd & M=zϾ6vM38i=sL N5nʦ|W@! k;"Jpt"b(?pRބA\J?|srK -> Gx` S8}oʁ@L"Z4;NFLhfxMpebqC?*e.9S0dU]F!L;nGBycr|ؠAT );?p8 O}:s57\ Y=SWUU6]S1-VD]`Xrm/[mMb-79erʍr 8`JH|. EAJ!lj3#LN6%b c3"2G xnz?m0 7۱Kvf H~ه;jX"Qi˥w 3NU g4Z.Fk۾x}/ endstream endobj 275 0 obj << /Length 66 /Filter /FlateDecode >> stream x3T0BC]=CS0eaUeg```bQĆHBA=sM\@!(ꎓ , endstream endobj 272 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 40 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F73 80 0 R /F74 83 0 R /F8 31 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1502 /Filter /FlateDecode >> stream xZYo6~ϯ0zN[i5HJ@SI7=Z4g&:b}y D*v dr|~TI[bDAUV\M?g0O?w?s=r{[ݽmۍi6ŝNCn{{,Y \j3_36?I5)Vtbw߸ { ,nΎ%ˠ ^uwQ]G/[.WY CK+:Lwy]}Fx+#v|1 y*"Xo#o}T.qۍ[~g >,U5oaS1xԂᘡazxGCfҦ!Ӄy9.Rϧ5k ۾=o3pJMÏt7$ѼAS_X"6rovVQid5N4 V$U$YuX؃dQARr2(rTO'hU\nʺ$cE>V"_jEE VMӃ` 5J~9e#ڻdEk?%{,ql pQfJr9'RX/8} XnY| aOk_v1gZ벶hpu*g|Os }4&*_ rVhv.%lڛ=gK nMQ)HIpL!7s`=LJGuHZ&+Mf~'aV{JH-ohDHWtZᤶm(PMi#цfjƒO<.x ((8P$jHaS 5?p9 C%hQLӚ WkH.poOrUX=kF*h *vHi Q-G=OaPhű6l<"o{hŨZqi"دH`%A:gCR@bTɑm"Bȫ]:ꋂK|Рbw,%2 -C/r -x4(%CsסLyL{q}ȁc=9 @mY36aM_(uZ_d9DBt$$yb٪(҇(_7Ed2E> stream x3T0BC]=CS0eaUeg```bQĆHBA=sML\@!(ꎓ - endstream endobj 276 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 41 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F74 83 0 R /F73 80 0 R /F31 13 0 R /F8 31 0 R /F62 55 0 R /F64 68 0 R /F57 52 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1678 /Filter /FlateDecode >> stream xڽXo6~_ajV)*@ab˱ $]GTN=0Gycf+0,g,f=4/|nKɕg`0lZGaMœ5 yNX=4s KV0옰I4kPA*lfX*^KiL!m- ʩj LԘOSC֧ݳl8K4K%a{pnd7, N\/r~F9n ƞDa0kr7QxqO䛳L帮MdmYQ#r{wG2m(7OΖHמ|X'6(+ZrMSxq,ݻY\'xj^=Ip`<$G pشE RL@m:g/DִOԁ'h m ["g"[=W`];"tθ2a}j:Jy`ʜɸѫo׀ 7CˡIעɜPҲ蹑c:%|="xȗX!;XQTf[y\+(^E{{c!JGÉNfx2< n>нbQټ Rq8`py Wk2:|)mHYe|]gC+V(?? yQ8Nj-q;ҖI1N'ϝhOsˆ'Kc?tWЋo 2̘rFk7t R7T6.7pj)3(/d7#+8ד酕ҿ쑦x1QQWk{=p|,/'7.V~R?®Ϡsɟ2,2 c 0>XفGU<"ɱ“IN x}F^w5; :%yݵgS]ΏsأkA'eI4Z6IUz %pDw1Yc3t5_ {.`Wp;}Jr$ +\'z7gy}Y9rgɠU$Aز9s6r}ا};?Z1oYC&eꊭUmAS$MK> stream x3T0BC]=CS0eaUeg```bQĆHBA=s]@!(ꎓ . endstream endobj 280 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 42 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F8 31 0 R /F62 55 0 R /F31 13 0 R /F76 97 0 R /F73 80 0 R /F74 83 0 R /F57 52 0 R /F14 130 0 R /F11 94 0 R /F7 139 0 R /F10 188 0 R >> /ProcSet [ /PDF /Text ] >> /Length 3530 /Filter /FlateDecode >> stream xڭَ_1BF4ed؈I8z~HF$ _ E GUuUuUuwMօ.nV7Uޔ*K3S-o~I~d?~͔];k[%[l~ :TLc \_ EsK2y6?h?"iA<ꎓKzsh{%lwE0eHt(wP=;~ ^V #p9,|_7ses:ϙ~ǰgm+hWIlM7&@H Umyﰷ"23iY; #c=NEE<ΒǗِ 5Uaf. RGC{["Gر 3qB8 :60^N= jepHC =h&;ZO aߒ;yv +{Y}T[xW.I?EPghd%@Ao$@'o'[Ap/[n?+fBC|tl8Ahr\" nm<};w:iޟV|UU(8)9g9.&#3GWnZީ2}Xa.V't BGf_"-vF;"Sȶz^ ]U]t'5 $BS[OJ|6er{We50J;FugbHD<"|ʋauԸl<͕i%.B53ϋNl)nV8fa(Kdض#rG(60eӡI3p@D3FZu+;[:[5d\@SS)|Gh)B# _XƉ3P8GI7zOD YgAllV"p.T\U|H?!c񸉎 nCa8}6]$1aH[ 896k3B73suz|.gS!2Kzod#s>&z#>ю3(Jpڹ HVo~TYYN'сץ@'Dws;*KK]63 yNu;}Fa\;-2D^RwkG~|rȸsz!&%;Q`iq5vShMӀk%TԤ֖Kf*MAf/A(Jb=# [ܐiVxAtО!K6Vrq*{'Lf6D~YWX:@0A͏E'a*Ơ(T zÆK >9#m86+ wtZ(o)G xv!"q[.{1x $b .>MF6/LbåU!#%Uh5X)؋x{7WO!m Nغa5Gq-t-w{Cĭ:Gu5snZb=sn;0 _1 صy,Xp/{IT(DVuJ~{&K ,;~w~;vkczOW nF=K ?TV_Mu,"T^P޾~7=$N3wICſ`\{3f|,}'Y%!pĤJ̫W! }UkVzpV Au6 yV{xq*u}JX/"k$$ fK@ښR-0ty.cIlg-W5@R#@Xy9@#6h>RP+,$Z rf~] Ӏs_ z[atyZrH6gO]oeι&pb"?-!ԩVu"\KNPi ،z!n&%Iڏ \~~,V .40, TGi ( 9~&+Cfȍ@I6% bVqx2`/gL^VL2=1$ l>`*p)PrH;D^Duk90h P1R![PwG+3V$2֧/jyV]g*Q .sSi0P]rbq>Ai_ 5wuEYrwDw%qg7E^iҺLJN)ۣZ"w_AKKma#1$s.]bˬ̀t'/%#FϽ>4'%)SJdvd~w*"C5o_ ח18>pt\Їs6 ;5T%!EHț]>B"3t&(3(7jGuQ n.rVpUb X:¹V(LCSSp"l{&- a J{숟cT4*;EuBKGȸMȄ &ÔY"դKFhJgڠcOVQP%l[Wfw\Bĭ*w ?q F 4|6Y V著"zU^/ 0L}w8cJ>gD\$lȽWk %#q5&- ZIJۚ!* evbQğqE:Sq%j~ NoD8|Tb|& 7Q,;RX~$ =3;GyՓ6i3n M!~cu#n| S‡~:Kl`o# ?:%y|E4;(ٛ)%TxulM@ʁ>f3ee-Չg)$ UÊ)ͺJqڎ3OhlZC, ,z+Sp&`"u(v%Q* <שdFI_}m. endstream endobj 287 0 obj << /Length 66 /Filter /FlateDecode >> stream x3T0BC]=CS0eaUeg```bQĆHBA=sM\@!(ꎓ / endstream endobj 284 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 43 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F73 80 0 R /F8 31 0 R >> /XObject << /Im2 289 0 R >>/ProcSet [ /PDF /Text ] >> /Length 352 /Filter /FlateDecode >> stream xڕRN0+,qqv=v$ qnT R7؞PPEoׯ 7ӎUsk栔,X5e#>LߦjïomТp?E ~@51dN]61&1IY"[ɩp>m)&diw%_UR<4'Hp ?J*kd|$J=gK"n<׺&}/)pDcP p@/q.a:YfCqutLu'9'('<6$٧ 9}:lg |(0N(}ϑv_#y endstream endobj 289 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./manualHaploStats-plotSlide.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 290 0 R /BBox [ 0 0 432 432] /Resources << /ProcSet [/PDF/Text] /Font << /F2 291 0 R >> /ExtGState << >> /ColorSpace << /sRGB 292 0 R >> >> /Length 608 /Filter /FlateDecode >> stream xUn1 W>="ɡu_JZr`ݦ?fCGKpk|qFR '~j[CpşuC1ףYtinD%g-ZTXF ae;#_n>HN # Ozb z CD&5xBQNPFW7|ZF%.Xf&h=c9c8/҈(e'oҼe{=oZ|~XʛZ3L共T&8E:#cSD#lG &bDtK7CH endstream endobj 294 0 obj << /Alternate /DeviceRGB /N 3 /Length 2596 /Filter /FlateDecode >> stream xwTSϽ7PkhRH H.*1 J"6DTpDQ2(C"QDqpId߼y͛~kg}ֺLX Xňg` lpBF|،l *?Y"1P\8=W%Oɘ4M0J"Y2Vs,[|e92<se'9`2&ctI@o|N6(.sSdl-c(2-yH_/XZ.$&\SM07#1ؙYrfYym";8980m-m(]v^DW~ emi]P`/u}q|^R,g+\Kk)/C_|Rax8t1C^7nfzDp 柇u$/ED˦L L[B@ٹЖX!@~(* {d+} G͋љς}WL$cGD2QZ4 E@@A(q`1D `'u46ptc48.`R0) @Rt CXCP%CBH@Rf[(t CQhz#0 Zl`O828.p|O×X ?:0FBx$ !i@ڐH[EE1PL ⢖V6QP>U(j MFkt,:.FW8c1L&ӎ9ƌaX: rbl1 {{{;}#tp8_\8"Ey.,X%%Gщ1-9ҀKl.oo/O$&'=JvMޞxǥ{=Vs\x ‰N柜>ucKz=s/ol|ϝ?y ^d]ps~:;/;]7|WpQoH!ɻVsnYs}ҽ~4] =>=:`;cܱ'?e~!ańD#G&}'/?^xI֓?+\wx20;5\ӯ_etWf^Qs-mw3+?~O~ endstream endobj 298 0 obj << /Length 65 /Filter /FlateDecode >> stream x3T0BC]=CS0eaUeg```bQĆHBA=s.\@huI%0 endstream endobj 295 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 44 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F31 13 0 R /F76 97 0 R /F8 31 0 R /F62 55 0 R /F11 94 0 R /F73 80 0 R /F64 68 0 R /F74 83 0 R >> /ProcSet [ /PDF /Text ] >> /Length 3022 /Filter /FlateDecode >> stream xZYo~_alJL77qEE}eH JO]}MO@궿{6VWJeFWwWyt0ny+ Txj[eZqz?{~"= )~Gǔ %+КOÿ[ .>mzi YG<xׯUYd_Uąbv8?Q{[T8[ȑ !Suy b*&T;6LI<^[ [5a*.$"8JU=_v[qYY׸F֖@t؂jQA.|+ڷ(AZ$ +K֢MQ rƮ=Q[?%zǿ'1OQ4POEa *w=ޝcwx<.ǬPLz^̔T$f7d(xݏ2\Qpb=2:atg0n3"aߣFϢZA# NO0'D?*}zb(ڵkLi*dڒ]a1^O9 K٤%| uu){&̰1ix}* Kc(}H`.$ $xU(h=)GP=/a;'X8hټe,깃sj}!0D̡B㉦dC mki\d{^jɊ:ʾ *#3f~L#vdD]팶in^_K Ns-sd5P='[UO#П``AS(MOv̦}[x@ twH$2qV2mwOC=.LM#3\TǮ ԔT z( ntdPԉ?K|ɨ m;+  7ʶ̃Lr+:$ORnc#Q tRHa>D'P9u sG"&鞹dʎ׭D@`vcVk+ݟt#j#3yw_Yc4OƄ9TlegQl8K'\;Dpp>Œ^|p2CFLDx֥)gJ4(#W m'j[&waT?K`;RwLי1)cX&q4F*lǁ  2H3E LRjS|Km4msEۃxEJ%WM YaЊcqW-v$GܺGIz~U2:X$"QXʒGz8CyS;m+ Gcɴ"MYn8_ďHJѰA  U8!}p]g*#;޸@Rj2ՠFy'x̢ D)h?c s僈*0D*{]B.MEK0}0ԥQp 'Q*?2ozؽT֚҃#_j\Qmv]wU8XY(`hDiydvNQp2:mmybXZS[GI[vߨiGg89+nocdzmdW7 qSo&=4xQZkoeRdgJ KYV]P/{}u/|piy*t[y*QydhSTED)w6R;eEgK~-;Ff'1 ,ObrAi+u,Չ{[iC,JDjE71?u:!rF2(+*Yeԏ+kK<"r|:3Vp7'zeitn,<|Ź3$Y֖3K0Ir*^lbr];xvCEC5stIL_ )&t06y>WO_o^JK{o%3NVԴ,*\^|9 B;d{|X.k4U̯e6eSl^+#=o(_g9Zځ2d::-(Gk]zqۧS^zqXvockݫviWaj'r+we^m@NEa-}rv(F"ׁK`Ja'"23u58Ȥk+ɉ5t hn'с,hOWöfg0ed2,1a7\i'J{qo/#oEhO ryikWX>uV_~\;Eҡ5^a$JNNlf+̸9|;*@0(hp4(pYۄ˫UWQw~P gxd kO +?!Ysz*t兆eؿ6z a_+[(¤gn۫!9&dNir>M.4YFzjH0t?T߱Jb7 "O& {={Oj!}L ۅ>C* +s@6uKd|7H! endstream endobj 302 0 obj << /Length 66 /Filter /FlateDecode >> stream x3T0BC]=CS0eaUeg```bQĆHBA=sM,\@!(ꎓN1 endstream endobj 299 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 45 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F74 83 0 R /F31 13 0 R /F8 31 0 R /F62 55 0 R /F76 97 0 R /F64 68 0 R /F57 52 0 R /F11 94 0 R /F7 139 0 R /F73 80 0 R >> /ProcSet [ /PDF /Text ] >> /Length 3227 /Filter /FlateDecode >> stream xڭn}B@@CoA6->d nhJKJu:3(A69sfon޼PEEZ,ne4Idf|e~_᷄Gdpӌ:wMߚ!S=ndS7;ﯖ&/M\vEƅKc: N6Uogݽe'h7g+7Ef-2 %㪬OyeVQm "90U |ʀ:6J?iݴ\GQ@ xQCKKt*)r$/Wy5$›k?p]6-K^RQQ4X Dk9PD骲5S'Hs Si.`R T7Pji4Ph,@> aqC8#G =2tk?02 |)Tq=ȺAB%x GE.l^F~" .xrOQü)4oAVrys:ƵNU) ȠqV499 M~s;"~BN[UH_Q=[БHH6FH=<ܒϱ0JޅBRVUsd3q Y <`yr&BawBa*V8ީ?)&̣E 0fdކ| tw i|1($ Y; OjZD,Nf<`ϋagqPףD8#. 7Kp:sC>7{~٪w3ߟfn+~^m^Wj ZoApCJ,5@+HCx6>#M_ebS`I^=(f4gBf%z)43uG#!ѓνR,MgeQ?2@$}Agi~uň ۞uYA(=né"yH*N9Gif8q96m#]ݞBˠf/93 rB$xĤL7ⅩK汵hͲ8 uJaF9yp"30B8tcfLwG 6k1Ԅ J漙t w9 ʾH>xNv0t%{V^bϧ:b9 N_V{&Ě\bMH *qFo3Ɠ4=|{ly@=<*?@;fwyDA%$v6[pW {P4ޣ^)?sVٻi\$:?L,vt{#2Z͂X\Ҍ%`XLjʌϩj-/O Y+n^2'߃̌26P.{lиzEFd ˳4&$PK\Zq] AfEF%UqRIej X4e6d(liRĶTim悌툅U*!LD3IR8==-DƅTJ~g;59*ΕZݟQwUL$\y뇅xn^ŻA(j5軉qyj#qnP@i~רYF{3x,hXq=k&`q>'R o+Yl0|Qpgp %@Fȭ'~-@BaEB=Ȣ޳8H۾T Qc߅f ǎ'@ii `eM gyj[|<;zi 3 e6\gFYLM=1C2~Q}T{0%32Pk [g_(7$-+(5 ϶ɱدdfri|3ѫjWN u85MôYd>j|O@Y |xҿ'pZݜ0UhȦ9cm 6 !E|M@?Jqe)r #[?#u(!O2u^#p]OQG*pТDaRkN!GHX8e&.k$uH7GrSS횧q{Ek~>'FЖi番AF,Nv}]P{鬧UIx<70{UI'*#] hF?SH>rߏzC^Pәއ0YlAU/< AϾJ~⽞irZPVҗkaO|#a K'NzRwh]٥=iW:FfVJ+G>Sһf)KbWVXM 1Ȫ]Vj7{Mlpb6 v=vm;MUA8:1 @%R"*Z7Tf$'l5f'yw͝z 5vh^u05.i*YBv-Ctq.5ٖG9.9-ǓeU.G{L9;?2̭؞ Sм m^ Sslb[#8bDtbqb wtX>5T\Mm<+G^l|1YEؔ֝rF-c< K$%z*dC }|ʉdb5pNpv}oy "0qY?>M9Mfa^AM]__Z;%YSP#> stream x3T0BC]=CS0eaUeg```bQĆHBA=sM,\@!(ꎓw2 endstream endobj 303 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 46 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F74 83 0 R /F8 31 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1024 /Filter /FlateDecode >> stream xYK0ȱ{HoX!=tߕ- q;qQ.9&cϗq2R4F1U-**MICwէŋs:?廊*ڴW5һ^[jg+Vj?[/^,e*++Nu u*;΢t$ }=B`` $mB`lCalIqyH(I*ld ~LP ETb$ HOd ĀNNr($/CQțpZP{xMB#!3p@$sÉRKaP]|)xwAO.3(xE0P!ue*53'i oͅ;7W:+ ܖSxrQ\K#e5[L9p[wZBKe~- 2ېTMSa^0)[B?~m;Ůkʹdr_6PxtiGk 9[?(@fSY+Q ԍ`Imp,wvpJ%>J- "ӓQ1h&vaaD!tG>lb[8Mh;YzM[( ¥yrULcC=er)BZG`GY K##l&YV\FCR^"^ TR,E "1*.G٦E+b Q&*%qx:Ckֈ-Û1jZic!CfyTm$ endstream endobj 310 0 obj << /Length 66 /Filter /FlateDecode >> stream x3T0BC]=CS0eaUeg```bQĆHBA=sM \@!(ꎓ 0* endstream endobj 307 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 47 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F74 83 0 R /F31 13 0 R /F8 31 0 R /F62 55 0 R /F11 94 0 R /F7 139 0 R /F57 52 0 R >> /ProcSet [ /PDF /Text ] >> /Length 2565 /Filter /FlateDecode >> stream xYKsϯPIZa rIjR[ߒhIT#QG~}h˕rF5|lܢUmmxTefr gx2>sgOn%R$y{_]t0Jkz;_?h4'qe/\z3{ <_(ArE6v)"ҕk<<ǑQ|e} tF> WĞL%"ߴr%9Vb{dw kD{#֨i̖,U4#{cd4j71²+"~Q%%^I(qUu,$8,6ِ7V"Qe6e2LCKG_(/+22{e+L} DfjcYg:kgbw[^F$}uUV8n3{m&z٬MƚoUgWgt{jEC,NhɸNx0)=aVN7q|R) {M6dƭq)) Hڝ26FZvwCOy[p&vN ‡9E8OxvC#3VrSY˥z4v.Qm7_Cϼc&@&VOj1&Kvg>wi8Z)uO7/*0M#OQ LvޡЅO-o>F$^6.OQcP\bI]w*R4Ԉ6-W<(xiTe(%1Hi/xoG&_ 0]\H(3Yo|>]ϣRŇ,UBu5 m6 9{^ (|ѕr-wS7{@Et m3)S%hxq|-9R[oh75!,j?qE{&|I.AT!;6i&wl qu[']QMӱ䔀B9cw\2ΧB\bb/B!EIպg){Q4Otd,L>Kx)oa06dˉ41 =WNJ:*\W:]DGPs?d\!`GJvVf^8ӾYP`. >fSw]lYWf?4 SPn`xB ͹dWFcg9J:6k8nb!HOhL1{o_zч?n&{ i K x$`ө#m3rfct ]XH`3Km3WJS޺Y&; _A&tyS s-{?-/)fT=^bfԁeo\n]!6 &[z!1)x>_[9t؜VYajL-s*;w(¥dc,]Δ4mRPU0L]3\mB;:Gޓ7 |W!=BCZ:lw?o2yR^Ǿfҙ,t FĨ6Ћѥ_?/# endstream endobj 314 0 obj << /Length 66 /Filter /FlateDecode >> stream x3T0BC]=CS0eaUeg```bQĆHBA=sM \@!(ꎓ Y+ endstream endobj 311 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 48 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F73 80 0 R /F8 31 0 R >> /XObject << /Im3 315 0 R >>/ProcSet [ /PDF /Text ] >> /Length 399 /Filter /FlateDecode >> stream xmRN0+rq$v$Hph%8 '>AjGJ=k{ hd3^gyHS# 6$Ĉ4!يїPлiSfKK ZրҗlPy%V,P %{ON!ػ4=0!x zt648˯;ntԕ`hfFYfdN%I߫ fY xYSĘدb#BbW<,10d=ǩM\ HlJDpps VMV+X @>I;ͦ endstream endobj 315 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./manualHaploStats-plotSeqHap.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 316 0 R /BBox [ 0 0 432 432] /Resources << /ProcSet [/PDF/Text] /Font << /F1 317 0 R /F2 318 0 R >> /ExtGState << >> /ColorSpace << /sRGB 319 0 R >> >> /Length 947 /Filter /FlateDecode >> stream xWMo1 ϯȱ{hH|^AT $J(TTMh%<'dvo؎_l'DYu~MoyrSt2ߧ^i2d >ԫgmJN{V"Vfuz 2BN7c9 &W|+<[|+}ϿOO^)%>g%Wdd_#<ܩ|_IBo7IsdNoNPӤbN&j6|{t,(e#j\Ҝ͖HM1YЇd=w[l4}?j9ZvqHW697y_|+ W|" \E8&W7ʸɏ58? ݂8t@q2ɥk)p6:'AQs mp wH{A 7*ۂ{\/~}35 endstream endobj 321 0 obj << /Alternate /DeviceRGB /N 3 /Length 2596 /Filter /FlateDecode >> stream xwTSϽ7PkhRH H.*1 J"6DTpDQ2(C"QDqpId߼y͛~kg}ֺLX Xňg` lpBF|،l *?Y"1P\8=W%Oɘ4M0J"Y2Vs,[|e92<se'9`2&ctI@o|N6(.sSdl-c(2-yH_/XZ.$&\SM07#1ؙYrfYym";8980m-m(]v^DW~ emi]P`/u}q|^R,g+\Kk)/C_|Rax8t1C^7nfzDp 柇u$/ED˦L L[B@ٹЖX!@~(* {d+} G͋љς}WL$cGD2QZ4 E@@A(q`1D `'u46ptc48.`R0) @Rt CXCP%CBH@Rf[(t CQhz#0 Zl`O828.p|O×X ?:0FBx$ !i@ڐH[EE1PL ⢖V6QP>U(j MFkt,:.FW8c1L&ӎ9ƌaX: rbl1 {{{;}#tp8_\8"Ey.,X%%Gщ1-9ҀKl.oo/O$&'=JvMޞxǥ{=Vs\x ‰N柜>ucKz=s/ol|ϝ?y ^d]ps~:;/;]7|WpQoH!ɻVsnYs}ҽ~4] =>=:`;cܱ'?e~!ańD#G&}'/?^xI֓?+\wx20;5\ӯ_etWf^Qs-mw3+?~O~ endstream endobj 325 0 obj << /Length 66 /Filter /FlateDecode >> stream x3T0BC]=CS0eaUeg```bQĆHBA=sM\@!(ꎓ , endstream endobj 322 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 49 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F31 13 0 R /F76 97 0 R /F8 31 0 R /F62 55 0 R /F73 80 0 R /F74 83 0 R /F64 68 0 R /F57 52 0 R >> /ProcSet [ /PDF /Text ] >> /Length 3068 /Filter /FlateDecode >> stream xɒR.dl$UJʪ$S<e@3C{HLR^3D@ׯޯ//^3J2}u}sUBIjET$_v|5]L-paҨ#~B/3wSLp!ixz{p:BW95X#"D*rdQKx/('Ź+DS2hmuQl (ĮX,”LSXmsbW BݱQvK&c z#i/>"Y4~gov yA0Gݶg^Ǜ ^XAө9`9Hy{pz6S]6I@hG&'~d@VL2mQ~`rE7T5{ln(|#dQfB&)LLI#٥BZ=HSmޔcK+Q<7iW\H6w:pb:j^Gw:I!i!Br1#Vfc[8MRɤ$zUJ}<P!?9rn[WޒJ>z6:dVAPN˨oԾ.Ľ>c->B8!ݙ"{گhͱu; a{gV|v tCs%͝)H#&!Nrdg<~V֦~SB؞e/:<%`Hee}Hiڔ)ydU^S%0E *U'eV*QT` V~4(PI.bva_'T(m])xJ:}D}债Ιb9#eqgbݔfsTB,>/(#E庈!> XX8khbtfqh-ʖG>0I/gF_|pV~n&}9 uӪ009'` OL^\-zJ,>7O@%0Im% rϬ$]2y)G7Z_ǛH(75NI Lmq*;#}fve]lW]lNJc+<<͙ʨ`WIR|0PJY̿$qΓTQC"*!אO.$%_@o tH=8Ipqzf;8jThmvU$6FpYg3rWiGӒw/r }5?v }Tc{pF;3#^UWTNl>ʩB 3]_Tv,l-@VD6hMG73I}鷉=1*FGreM_/9IV^:E:9AgJ9,X=(=6yR6׹ᖨ>-WljEI{{&+8d{5 :>lUa[Ot~B h9Y˕ڳْ!.WzQn4˩SImt֮5FE8ǾwQZZU)t/^d>>%9g޻Dĝ8WuowM Wj!㢱eiIJDvMˑ`FgBӂ:C~e8VcΝ<ox*CJgqq,R=תMhVI '+|1!UC endstream endobj 330 0 obj << /Length 66 /Filter /FlateDecode >> stream x3T0BC]=CS0eaUeg```bQĆHBA=sM\@!(ꎓ - endstream endobj 327 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 50 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F73 80 0 R /F74 83 0 R /F8 31 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1350 /Filter /FlateDecode >> stream xYYo6~>xI:@8@ hci l|euXHȏ␢kq\rU#uZbhDU)of|٬TBn>6pd`nŽ , 0 8+ WX}P@{vC4\TE9E |1OR?a9mfsX8V_v2oɓ1go*uxpX3-:cdz7-W=}YVy[.@cxh{o[6A_i͋Rqxġ1+GUG8Jϊjg4"X*&!c[4B7 Lf`KQ֪sRÖh`|;%׹G!Xӓ?G7r9v>aOw_ )IZxA\56#tsK̝n;ћHTmE o*)qcJ9z>4ޭB3^طyL>U8ttRsFfL (/1TߏUucihPkeP*}QT.C[p@VI8XZ7*6.(.t|C+E␭.YWϗϯXgE\NN,(v~o9xwk,88GZ[:r9wf ’|S7jT%qҒMD$71T v<+X90noP$[+6#`&ڃO{+Ɍ8qz;8?*ӟST3içoAD V,$bرbe%Afr/ycX ><%+eȵ^CO{WmrIo `财ܛ0ޓs|b(ns?!eE%N_Cno}g!S.) +nW!vpe%Ҽ"CLGX7H9]@zNjZ D*eS1Gω[[ endstream endobj 334 0 obj << /Length 66 /Filter /FlateDecode >> stream x3T0BC]=CS0eaUeg```bQĆHBA=sMM\@!(ꎓ . endstream endobj 331 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 51 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F31 13 0 R /F8 31 0 R /F62 55 0 R >> /ProcSet [ /PDF /Text ] >> /Length 1682 /Filter /FlateDecode >> stream xڍXKsF WHD wn.V&q<܌큑h[R$1mXxc}x:00 c?H/a=4޲(k) r%a0b?}x:d,1N#kƩ!*\,p0Q0Ό\V/C0g,CC~`}|h"%w=LC:􅌪TjQ+߁00C3P9 (xd>?^Q=oʺjעu]zGoiĪA(FՎ_^Jdk$0aŌL z.T C$"HNϭUHfCbEjJcY-؈FAEpײrP7be:`33 [E+hqؤu䪐X#HYnBh+2f^ʼn%}^)B#_ĔRL.64D7)^&Gԛ'Z\{}Ճ^X)5ADK 8%`;6Mo6e:8>4ȸլqR*ƛ.n>BP&vAoe8W G!U-u{d/ mTbsG(/op+tt;ƷWse>1;' ) !c6Lo1>L~#sɢ f[p4#Nӟ /W`[ *9C}PkK\hG= |6js$\$HE nl[I][ ]!pI?nbwf*Qd[G-EyGQ~ݪo㴶!dܹg\.BSz{V ބi|~k'j1o}/*^R1SLɷƘ(9hFk SΗ$I~[iV_Veb>w5 KWʦL;4 RW=I֟N;.:hR Fݕ5;\ EhTim_8Θlxg42ko2:&"`?& endstream endobj 338 0 obj << /Length 66 /Filter /FlateDecode >> stream x3T0BC]=CS0eaUeg```bQĆHBA=sMM\@!(ꎓ / endstream endobj 335 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 52 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F31 13 0 R /F8 31 0 R /F10 188 0 R /F11 94 0 R /F14 130 0 R /F9 341 0 R /F7 139 0 R /F13 191 0 R /F57 52 0 R >> /ProcSet [ /PDF /Text ] >> /Length 4225 /Filter /FlateDecode >> stream x˒_5U+/dR9SqS)O4R<&zxxwÌHh4 7J˙U[jv95sRTBrݍ?=,7?ǘJKclU*,Tfo`y =r9F$. %a>5,l$|KXަu"2)S.1e)*I. I {鞂2OnXz]D39m"ئ1ِ=xRO/ R vÀGt^ _w Rd:)_s`S.zQ%&\My2|^wŰ8 A{3>l}-kp âhI/DB}Ǻ (jW\œ4Ow˰ft$%H &}Wތ&SF&i/!Vz@$%H!4{,qkG0NK囯VeoX(w"CmzG!2b}z9opnBh%%$Grj{`dHqr4J'qc̥R wCϩPsRP>D!Gxkڳhad&j}ч.r#֧.Dٺ+_7yʗB߅ <LC-ޤR @#AM=Bcjp!i9.J?85H$Tp_OwogoTdfdN%+ 1CU ^k. I,cW5M m}ֻ0.fD,NMx';!Cu7cU윲d T(OzMBCvwZ=\Lczv*3ǝ.S?>Oa3=pُ3ɨ¼T!SkS7ՅLf ߑyj3 x}+W%c@ŕ8)fjng/qEˆdv[`^)*elkT2@&2N8u.HOU[,Pb&-{;5c5X*X%<̱ 簩Zc%Bf$.V= [2$mۮ`yJY)2'crUmYLlCLrޣO#E?%YN{EYbrݧʎkBK|no0vK(0]i"opR]9Fiw13P&AE)GIS.(f.)2NO)'|2 Z8ǘ9~T97&_(vg? X`Cz ԡ+.)7~ȠI1гoLaIJ?{ubp#?)LlxJzg7%x˧Qv&yQg1 [x-j .@*P;7xvY t%J>rHV z iQNiFD.4$ٝ KCZ_i9E/<MjG~NB'NvrPEI]a'H1aױ$;1sJK:&2ټhDK'ʕ|>LjyRVz'_2^=~[ l,nqnҴh>YiT&yTх (Meń-X0X0;`t6!lBQj) NkvY-Dն6e&ѱ<~U\L&N¢N,I*@̛߾LL4hxTƹ?:uTmfJ;,=ξ{7_eˌNU ZU]{*0m"Y*q2!cK(g^[97|/ {MRO"_;,H)Lmme~(z)9rLi +:c4I9@$r]eP BN*%\^֤4-aȊWXd=)]2 CX|-' `>x`F(9JsÔE B')lޥ )ⱳ/x߶'hU=RY9KB1  j)nО6DřGQ2)E}>* h HTSB]C"UTZ/rcY+IY9q>ꜜzpaPkQ)'L#J H<%`?{?X GYR^2՟4sʊF_;> stream x3T0BC]=CS0eaUeg```bQĆHBA=sM\@!(ꎓ&0 endstream endobj 344 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 53 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F11 94 0 R /F10 188 0 R /F8 31 0 R /F1 350 0 R /F14 130 0 R /F7 139 0 R /F57 52 0 R >> /ProcSet [ /PDF /Text ] >> /Length 3014 /Filter /FlateDecode >> stream x\Ko#W̑N >" >D I-J-z|?GG9j+h'r96L_Ah⌰(׺9cD:n- "i ^$>B_v¹k BGaPie+5J6gjheIA =b5pF%X9Jwʜ?' ӆ5:" jus9?WLal%û'8j eY?enIbh8%v0 ("yH☞DO|vb&D/| Y8T 6q?܀lgI{¯E%p?9$ DjU40 [Io`00ZfW86\Y&|uſo9YnrYςȗ.L 792an.ݶw"hѝ"L\D|_ 3&i-0 2D,9F#נ+Ǜ$x{5~u%0y/p9\?DMqVL$n#M.pcJRH:ڍ{(79ষ riSGh$߅hug@OS>%,@$%42fbš<g'^{Ԃ.:sc(AdH;sLЀIѕ!>!v`(3AD=+h_ 1qS Aj=mdpw..F{_hMs" sˣ1GaW #>ץM]SDr`>y#HEJp= &! 0 _l,j?g_r u& 8@`I|>n:B&tqVC–)6i۪ y*Xݹ=\wqh2,r#Qw8SFa29 @-d (&IxG.w2NyS}R` vD`5mT+؉7&Mc&3\&4\>-xhc@"ܫ d'w6nN z3((q iBs,PT0(q^>g}Wi 0F{< nb2nȡ=T8Jҡ4LN.`pH./q*S])bjjMxLGc> ,fqq+! ܟXː9N ,KhjZ#$qaST͍emHJLodpgO =,I»l8^iH3PC FWK+}>U:P*=CxMRUx%'Q- jCOcOʁ %T)`IBk:8@q@;x$Px#(lָӚX,bZ7@eXiD(V*F([j^<[;l Z(+\h'C⺶BCG .u2جV$rZ$dpz2c…x+mjTnZIɶBvHzXG.zn I+U9؈x4C1p^*DOhܦ'Ծǻ9|BE "C_ég<]>?LhS;D.Y{ ἊgTz?4"U:uPs}J6Fg}2 S(NnrXzcͬ~#MźXoJJ!Hî+@)bhݛ]7AֹG@2bg}4~NQ֔e# a*b|Xo=p :8fl _{֏z=H؃GA كB fPMP@xŧzap4 nL#()>H/Hc4Q~txTG!{KU>DG!:RQd4QD 5lOd%C3{ p],y}j=poOk5cUW G x,GpyԎ|\C68(^87 8 5SG%+q}7> stream x3T0BC]=CS0eaUeg```bQĆHBA=sM\@!(ꎓO1 endstream endobj 353 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (/local1/tmp/RtmpqsvtTm/Rbuild27869b6150649e/haplo.stats/vignettes/manualHaploStats.pdf) /PTEX.PageNumber 54 /PTEX.InfoDict 10 0 R /BBox [0 0 612 792] /Resources << /Font << /F31 13 0 R /F8 31 0 R /F11 94 0 R /F63 113 0 R >> /ProcSet [ /PDF /Text ] >> /Length 2709 /Filter /FlateDecode >> stream xڭY[s~_du;TٌgBws/$6%cȤ`gī=5~#)894m5N۽8h :Rnpifig9{LCti_PgAl57 VFZѸyB-)n;C*;fo;p:jWzL7ӭE:Lt&7KQB~AdJcW9~eм$6{ iJ1agChĽWJT^q &]>qGF($s"=r(AQOpxծD L{+)f-0̸vIP 49Áaqn>!p8kesBA:`N*+ |`,lcO P'z[b ׌ړz#muAOs?WYk,^[p+q0珈}OUڮ0otnQ-8ؘg(r 1>a4zeeyغW&tPKث<Vܐ$"szJ; oL~ (6> %2BzoYsC:[wb tcE]8kɉ=>u9UI$[N;- ך$A~o\βo;*+ȌUT[< 8)AԖ3ڈ,GTjp[4SPl>F/!Q#36*uޱ9 yiȓ ŸJqd![ ⦲̛6rCrJ14|q۲/H QxhDC&QI઩3ʳTɛcݍr?G˽ 3锍Mov܀H$@nD2] 49tI8@IfI T=Ӥ[ t n0_ 9`LJhsI?X)$nn-߾}9b_ukVĢ15 O|=OLރT?KNi,>KrTA+ڲw@$O7T]A1y\ o::ODžS>TH^?J_8"quynlh‘.m.;R#}F-${Z[fT,D\IKR1*Uf_"T[9ZTklQe*[;ǞKri> stream xڌP[6!mٸCp]\k.Ow^սE|ckε$UVc1s0J:؃YXb ڬ,v&6JJu+-?rJM=?,ĜƠw1P j `errXXxc7v2(0d.bV<ИXyy:[A@ƶ5S+ BX@|Lv.L w+%@tv P4%@o9xZ]]\̀΀5y#oc nW +9:9{Z[̭l%Iy&`loûɻJ7H#ȅ/yoW}V@{2pm̭aȬao ͻppsN%_ =R%~02Av1v@ή@_*!̬LA=Ÿb<, `_f`o_G̬&#LoU:x9l,VV.Q6w7w]{Sۿg B X t=N__.(+to-' `MɀwAmr)[L--=P꯫tej~}Tߔfm ;;{";x_S `fw:Q.N_Y0A<f?,_`XRYb0A| {>?={>?=A0Axߑzg_3u}?H:+fw??E {Vn𗵃?M,yYr%ˬ3|k j>п'߫w~4R{߯ev|ưtS_Fp_SI~%1,{ w8w|o?;{?{wH^@SZ:}@SS;jE'>Rk}e^vB[|'2܋+As+B}֞b:߁4a`DQ]G3 [2ɕE9Oʣ|u,ta_堆K|1F#Z/d2$k HGq:w{73D64[g-qkR;.-4YE͏qC+4q?1~Ƥnli:&i,2O&.5"|%'RK7C\'15G̝,?G i)ys E3jy.1޺!|Avz|}<8&ʍIgEúMXSh]S 7f 2l8(gY-|¥_8 h&ʈ,?wnPSKJkv= DZ$}*u2됔Hy.ʤEV* p@_m9%%EXCԈI! N `ƍyjTö~ɿu3iT7]ӵQb& ,NJrp<3n;'jU;f@ŢV0Xu&E|}~y':ƙQpjHDF+) O3lm ?xSSMpdK]즄II 0|cHNX2383_'w l4 Ӕ;  ۢ A^-\P $tiT*?~RGPE)Ps7l>C9p(r5uՠv FOF70t_[''t};"`齷$t^>\&[F6IgXw111e6 ފŧ$)$lm_#C扥F&@ՙF*w ӣ6Ĥ͵W8t.qv=e_ٿYx)@ԶlbKML N> *;Ěv7DO P˷<킛[9F}}ʹ;3 9R 5E:~b?S4%:s}/}%; b/cbNMVLh7VZWVtBrF+y}h˯},'Q+ E .HTc%BW#@ FcWX*|-s"|𤊥,j%x7uRtq)9'biSz -" {(BQ_ŭ«w] *HTHypѠm*z}}ԋ Uh"=_\\|8| 3۷W70RKC9ۄ'`mZy!M[ctRc(A2\utŸtX~3Y},>6^rEUYԟU@_ۓR\@ _Wq8Zvȴ@zy"/>Xyǡ~lnj"u.-mNw=O JNDF% [漡C$>UgqaSf@5#F*@#C!f"¨XM.VdG! M~bE~;F dCr61*8#2֣/W&5d1 MGn >8LIt³.BVᓎ`&;z1("?tG`j:R&KVy ⰾ>zF1y,Puk.;dhpi27xKm?[r̆rWITdS /ѻ.<0N&v|V9y귯nYaơ ;[ }!>sUˎ >`)Lq+/|uUqg%B~c: EqA aLS\ z1JQfF)jltWɃN\ǺHh h=-H$#?v]-\6GRgGQL;<$\ugUǞ%4I qGH6]0%~_?T,rWh- b#5 QzR ,TZ|ܒl$ckgvҔJdTX&Dj3Ӆ`"H1sexʾ ?h yܝcm1ɹ.m#GIbp/%j 2U'(<<]!h2ɤ,uךTg7VX 9sv+Y=`V.sr7L92[!)D/m@O-><ϒ$he{R#+ܿ$V/v޾;Eh5?}»dFt";b`"WS&Zr!xz%xv,.*Tj,i_ժ-v[{#N֧-y°HK~sB }0[;!-(!iL+kA:I Btʗ- S,kUE0++6Lӱ BV)XPp>\vYT5q3eg MtLLsl =:W|ik!6R_ha 3(x"M&R*^1#8xVPbnFp)h#<f-\Chs@4ŗNǒ\uIڵ_wmlYaA)܊^~=v?wy=#NzBOƋ0$/LB ` Y5wlmmcpĨ^p:cN[ހ';[8v]͌[#0vWm)÷ܗ$SE[R/sa{ԧn/=vE(1SF5ciG Z 30ɋ# ÃR4[V{8{2%Z"­kj0,У)GN0Y]9o&I]#c, ݞ $jZdhHٵ&ܿa ɫcx|MLJDrDP+c o\1 xX>{Y0'_pWtM^V<!dBc߭o#ʚ ӫwwRK6N\RkVw3mz/"9ٛlfzjs7R/ZR5^%R~-XLF[<xNRpЍa*}Cч(t]zh![ƃ7ؔ.yQBUL cNJG祼ܣ43&:_&Ⱦ#l7.LWӎ zh05c ?P*zb9$z{ ZPؽ·m_jN|{S K4޽RFVi IUkJR ~Ln~0/:M@<+J@l-jTY?}Ur4P6Jh;P#~lUcZ.OB\.qŬJHUp["%FUKxrVח@/)2pG+{җc*<$|vח N m:%Gb`8*Y'Qɬǖ7d qeu׈=b̼#Djaؑ[&+?_\jXA*g)mɆ&;帔҄# -<7hG( CKMP"P`i.pPzźl ҕ"Dg.*כys iJ@ĥHkb&=*J?Jv=[}NOǽNutWمd,Bi-46O(Xk]%@|= H[v]z&S'X} pɪǫӈ\h[ M`pB$Ⱦ|e3f{G85w#\aOac$FiFʉva65^I{ʣq wtXyX I axUqy-m@n) :z7#d_|kmQȫiomM'ALQhW%ݘ$کwADz%;ˇҊA"yf؉>Ikfqq[RBU :TY_iP=RɯB.,T,1?]MNv[3k-2Kq!Yt`'R*-;hHx|sbP(o8B_eZKWs54&[Zךi5h8F1 YCg<}h|GϽm#Q F=|ᶉ6ulLIwE qMh7JstD98(Vve#]YS=A'Kwdgܸn泷F :13?#ſɴ5L-_t0sf>mZɥ.8aQ,bel8 ifJ~a6]L\d[ EHJ]G9QQA7-jK79[VAWd:3g4kc'n@~W6kHbLË TL1rۗ1. =n.N1P(15vC==x E3(E: )K4)"DZ 3;(= o+ tTXM%H^_qiŪ[t ~|?O=`Muy|}.w"R_ߒGQXnBRi|8@DJ[qsnrtxEa*'9'fSDQ?Jl"(i!ޫP%M㣔SQY]eC)&Ťd+`w ڳ nЭ:%gݥBCh: r.n3aNt<]7*h+ُV^qm|yGI|AWrfD_c%сԕ]vuK%?%{4Kc\P)<[B0d?tqG7|>*<StH5=ޱ'boDd~$PMPcbs_>CbC}i'd2: EXSo\H#sTI<ߜQf:T4SUA p?D+>ѦwZO?]'DAWTa*JedPw\%ñeCjy)Q$U?x}3qmFJ֣P@+rwΓ\WJ8.&EnN'cE~A#m&.6D[CgB%VE75@yFİULҦFNoGME#I#[y7f iJ pE2ڎ*b_ώZUBCHE| J,!#ćg `$Q wݜ: uԑf}x9Rqzt;KsSl*a9H.phH٘Y@﷊:%5Ng?~K\(zٞ|R X*TFWjxzV>MMM[0ӷ(,3dsѳ`lN=3a~^cZV }ZRܥ094]w`W n;ɤB}n%p/ʚ%8tI4grR``>Q5'aHgz43)ɶ<d$ |l}z^>oTd3SGK@*[̶dT*̎r:p48#ਸ1*j;tQN vy _,F\&6*_+"}swnK8Cu$({qgt2FPfa?^&KbC3v\H2GE iu -`F|`c(߄J/I~!B N GYZ[`/ֲ|ًzC:%ΠU!_-˼lTf~'›S=w1Rgwp1I-H1<&%_ߵj,WX0N!vhB>qk.r{rXD$97n_5Om״`_(tNæ@tkB΃|)+ 0uaU'{oa AH〾l,X4ҌWLe}WjBԅem 0A5~UV||A(}AřV1}@7͗J]74j2vh,䦤yPذ,<)"`!i75`z/Aa8:WwE#21"HAZ5ƭtƬOg :̦l><6thb̠6lDaM_̚O̒jndP#mY;_d=;ECdLf_≧$8TP( E>w6- +_=5EѺf>o 3v>c {D$2kY)Q-pU9KxcELʎN CB(ނ{CG]&, "U)Jc@`x-b<x |a=:(M `je+\x=9Z }>a/s9+s ?SNr$j#8rǶXK"T[t^=f("5]nyDi o6݃#G*.RFYDP<ˢؑC㇠sմH͡!dN(HsR@-m/no| wr茽6Rk#qƒʟvJ62jKQS` B&r~p.鞠|N`]ǥ+Cyo]0DTg\KԼm.5 s2|J%ŰBL,畁z/{0ᤗʬ a qvin leD0?a$_S՝1|VSjjiZK#E,$x1꣞|/NN+JfFG b,Ĺ 5 Cł5YԽgz!31L23|3l$E,9R"WH iHdj(H]A~ZOa<7=20Kw]M%=;&1({H"9+2kAx}W +}<*  E/VD|I>k[fI#ۍ~PĮBHZO^1UZP+Ao6FݡgO0JЄ91j]nī@{x|,^[?/Io*LHksô0SR C\Nz#{|y)oE*]tZcÆ;KγA#19Fِ)-GC?q+yenG@?9!uL?Ӈ3hӿ`A$g:b!bqӣZow#<4HSPާ?G~ö =EO,6ClZbxh΂MaY ZRsj~#;Me'43\m{XtH L**7 *B7 jh6R/'m\&a2l-(~tn85637A r<1_1S)]#h{ (3UO^jJ(j ӟA/cCn m`e=`&$ž} /UjYeט(/ )F]y?Gmd'ȣN؜tNa)SZ5m*@&*:ɇ BgtÆB6-3*_=xs^b |\؍!l؂} :U`?No3!'],~ (.'U7UkҕvT$sng$]Cj `7)ȝY`<,7HNP##?O uN?,>Oru]ʚ@Y;LYFct5Kk˕˷L+P <B|VX͖kY}Y~uiE5%CPz~3S| > 7)ٖlTx)XBwQu*uc$*}W/-ijDCJǡyy4J3O\" `gHw,gʗ"-=.pB_X'n؀|k%2o%Y+x;y}3o%Q=}UޘG!7{w,K: DUrjyҕOa1T(罆T}_ҔModb _ {Γ@bVpnyw;F =q_ cRmTR$;{QB7/]8l$q#y/Կ "5{ K|&~u{Zliz?i谐'jcP^jEG/ziK۵y*  m$=l1x~D^!띊ݳn05EạUjxķ1ĩ2B8 ~֐/3JiBsQvÍ.b7fEXa W].HU੶4lT~i;~vmE ՜ ),b4xt?9:A{F8)±%~!`T.JÑw1obOYg-;4OJnX熛wo*}jǾ4>D CRv抇b掏 ,zZK$` a#z'MAKxݬ ZA[ٻl_ yL./KNJi6y~9 W-OH>b )A_}B5y`[ n[ATgGex~Z' PpaNss~_Q%\'bp$k%:ӯ1&vVڔ7 ǹqKZ)YO-_zA@71n/@B ׳n!,؄0;=wU *c2`gզie[cNT4e֝s=YBuAﭨ'VPC.ԁ.{USOTC4~# tGxrGjh}kEI~>#Q"~x@!HJm1 #*ho!o #Hs@̘ޱn0N ,=úCWM}sC6!)"Ti/CEoVV,G|="0ǕK#d=EGT=*cӲ _ B˫Kkk=;_pBQV:aM z6㪑1*P)ϜD?KX~`8-#wSe38$qތƐuaTl֟ߠVj`B̓>rn^85X6PY˘E[7A̗eG"+UEUVWY(0#~wsyHv.<u,*kn a}|l0YGj՚r=n*,۷ Y?Wen,Wៗ(Cև<$[oum+P",HFwRz6ñ;B?itcGd4мm(PX WFpegy!^]n%Q5hA:E#W;o^d{WU/d85֤bt Ȏ"jvv]?FΥk[QG IgQo&)A*oM.~e{Ie튀: 7](>p#y= ՎF_e0zAo}%,c1bpӌt@ś_Ū&Fr#-k "ѽ\'<'fJyӴ{}P_H~%כ[q"1ue)\8ư@5o b,`4f"ͿaM!gd8GUlmt}yp'os %RЦ]7gd}$##Ct\swt*V1OWB5VJ^)8630Rҿ<ΙA5=d:6tKwJϚcs2ɶ +>Q~ֳtJLv] NԲ=ʦ\W=^!e}]9:R3dcgrh/N endstream endobj 358 0 obj << /Length1 2341 /Length2 17143 /Length3 0 /Length 18506 /Filter /FlateDecode >> stream xڌT%l gk2m۶NmLk5inɮ3o]U緽DFB'djo scg k21YT-]lÑ-qD\ Ү6&;77##?NQ#7KS=@ G&bdin?&T&..ڿB@'K#;= @?!(y-\\lh.e3 h e-(T\܍w xP(81ǀpLL _,v621u03Y ..#;ӿ l܌,m . .0zM,\-m0c3ڹ8U} 6L],]Rڼ~́.6FFFv.0`+o%_|fm}-̀༝܀'W%8&& hni;h@}x6$imJaa{7 `coE#`+egf9dw BX P^t]F6F_Lo[WEGodki溺9`M5\]a{r1z Bv6TuGE*;[vX?; ~y7_`d Jlloh { v..|fNp(;A/?`M `M\ _`0&&ob0H&oz'|==ozϧ)|*{WM5K\dk1Mﵘu&6 +_[,^1w)T ޛ0f_J,ۻ:|/wcta.+߇cO|;2ۻfow1~o=w X:Y߫vxbW6>?޶Z"sa{7w~;ycppq޿>:?{?d=xn=TD:G zMMxBB:M͒iSy/;u>"APfm8 Qx6@%)?<$(O-Ma~,: ŧSyqQo&stDR,@w&Q?P:_.\1CX:Go3M BGCyv5wP:g K&sü׏*UfRmlԱiroTiEﲒ8鰨3fNd#G֯D˼[G";aq&JdG6*]بy3/LpJ]/^QsN߭]N3m>P @u./|hH|LXb6w6@<㸿𝜔suʯ:?Lb4dAexYc{ 5?(^y4 n/~'&+`{!K:L+n^;QHf/:'9ƨcUrA!ueFFE-ץw 3LkM}*B%?!TNIDEϙr*Y4 {"Ǧ1kxUq78aST b|NE&oֶ꽵(nIW{u}؁{n Ґ)T=ka9'$pic[.|WiYmaߐ˕!PyW*Y>W!щ^Ź(R_BȞ9] /5Տ,U~;X^{J`H [&mniAڼKl2s4^$:Az"kчM @19_ 4ZAjkg`هҵ  H>;Eay1ErXZHTc464rbe00k03CFZh N'hȣwJ]䲐 o3ݙϤВ ֮꣕|ڗkz4'^PluhX\(F.ꍝMtduQmޚ9TZ|?U׻_ 'L UD~FYEGk3д|m4X&,,_Fq9-~@Bٴcoe55 "us/ 5垲4XȰzyc5cs.ޭ/zܬ|5C]3-ی@#22W</*\OGKiJރaM HcB>XA姕ѯUG*KnB39|oi05vغd8綢6a<-PTz:{^BWX&w0thJ.,SނuM v64_"YP_>JVv5.ic~lz^nowMim{j\<(W?hspSnT40'E\GRŢ JQY8ilF!!tگ@nH:wbp_&PDbb@iMk'IxĪ(na/b)Ԩ\l.E㞔`\G,-2l{`~cER쒢%@1>gA_g'y*4;1 k=z1LkQ:I PPZC,`N3yޘ`0J4WExj|]T7~u8gV ـeb Yٓi_4p8O#}8h \PCљ^_C vwo!d^7߬1dE HgŴf2icJTvHb >P|nԵE =n=8n+ u}VyE򽍰Pgw7j" sEVӗ?`?Vv̼%ZvU3;{6! "$%vQ \p*k*PEYkr7 2'͐ch>>K~ i z!lFſ.3us(V[DRq*bSWJ dϞr T$~)t8]K?벱,ajM6Pa`7ٵfTj>rr!~7%}M 9 檊EIƛjo$TCÔx尜kBDTL}3%q$fA%T2F*3} <"Ò]1S`FQ kPku:F_"(WzFZ`QlI"sM%S=t?~qAi0emP*_2l21f`4N-|wۉY̐Ztrx)X9(?tdջoQ0TT+0o2k.ΰmc93e5#qa`IWF|wyi_1qbHݹ'r+!]ƼxJg0܁ߕci TAh iIȨjGpŀSA*5e.( vV:Ȝ^D,HŠSR`@M9k+%</s &Q0jh,89 X'aw귬^mncI`<.w KFe[{VU$dCVd6;Q4Z[q?"gmɝi6S,o> 薛ѧMG:c7`XX>f<:Wy=voڍZ‚-[ʒvQ Wo[`"A#hwT3S~S2BqAPҊ~~\no0]Tlx|3AF(Kud1L nPLkn 'DW/V e]?Zc@]/=/n.Ͻܕth# [hZwlh7̤l˔%j j92C rdP" U ` HcDP, Zx* 2쐙(7muAP\fssF#g25!QCK]|nBhAMTUWר(->L<NF;(z>stIwѯ?xPFcD-+ jD>'V 0<=oz>2) 끤aΛC σ@0iwB; S5 %)rWU!C2%!@ ,mTkLjWb:K1>.#Jᐴ`4v@(ӂ)ȳ+qw p/$GR[A5TuEu;1p v|MMR-m~1- ~Clt/gH8+>j8u:̃-c{mӡCy&VM CDrDUUbf~#*f.S}O7g>׺;63ITz"×9k ?b빋LZc>L!PM'|YGBQnb!8?M.e]!o.z릈] D ԁ^ƻX_ҿT:iMG~m"1U$up91U>K`)73QiiFDonx+.q2t"yT,&USkih>P0FҾ,$0Q>e.YǶ<~,rhk>rE&pf)\Z3rKkb@ܙWmc ~qNؿyǩ]sJʳv^U=kV/Q'LGf-e5pDg#;&vnWDb^e ɬS0CS'% U]ZIFO a7q'BN^Y61!}F\);J%3YBsbŭ%Sв{弁]O.XGUR+r(u2ov97=D= ySr*l2,bX;e\7WE>v] ڨG<Ʌ iAIP_u۫{XNRWYCT;$Hzrm`sDAI`%CJZFŃJ"].)t78 &z`M&r.%7Fni@QԦjK V#g t\-}='=7'-m^qxmG ٍ(S',4 e!T'YzOΈQlT6r:6-㉡F]P|W5lv#j|!)T\S.Յl+jj[CΛ5le_NA s9(rD"%,YGf+ L^~sD֮&,qň?!^~V[*'$#K2 eNWw5k Ĕ¶:=ULTD%H8/n{2с}7ěOW0y B?C&~Sj'S{Չ %ni/?tI9-w`xACܧ4t6͝Ynh[u0VŷUǍrf^"r Eˆxn=\g?ܡ$"یz u{.垕zK׀wNo o-j rĂۼ\wzeu$ٔ)@%~)(o5 BS:P,ԙ1#1_8Zq0MaB0<`v8x~wN 3a;Jd-< W4/{+8G~e5D]٪Bm=g+hY) 42Fu+ %,cGrpWY3ӣe"4Gaމ[ŹgP_?n}}^r sIQ62c'1C242ht~s?kw W51`T?b3T],]iS#ͭg25ff 2x퉬º"2-^X8V\\E| 9 fK_iy.APeؒ浂u>y@)SpdIOc"rM7WV喇LJԎ }0=][,4 :%_ 06k׽U?qYF@};ZYI^ءu! /N#wTwC(+N|J4ošsu܄Z,2c(!&{Sls!j8>>aǝM,x Y>psQoPH"_ËYW]hG'ްr=Ey>?0m; ƒ~X#.#5"Q#|'EzTCcx} ;'"A+l:jQkx> 4ȉe1. )& 01F@&ݝ"GBN.u^n,٠rOLSm 55$PjA6Dt\}mhH"m=~դUyI?s̮9K2#IG}gϝvy6Ha/b Ny_>E,LҴ~VkӖt-  D:@q+b)xX3|?!-MPFk5U>\K/;*%ch !B'6jyX_qT$ {gi؏<"m$`uÀ#ҭKHUŦd c ZCnWz}Ғt3R< !]c#uXPE,@A8-&`*n9|\ 9uV=! l8]4u\$ f~8i$7FO¯z@)25YLGI4P7Hqhxi(9CUbA N5;'-bre߀znW"L2|rܤʔLnOUn%P,2Apߐ8Թgx-lL gZ^?YJhb' 2WY2.ažDgqZ ]RNu+eް&`%jçJR;P?ۻ'ɕ1kd4w) }|Kv HӬΈ/ڬQ̦?ZVP[ˎc?JI8TaXkpOFaCQN6`Yӣ'[Le E*x ˰pq7$Woψ~>:@Hܞ!HC8m e< Bm24#yGcQaqd0T.n rdJ*P`!MdÆ  :,fza:Ecj|f_;Gnt *4]M8Z2pJJ .Md/m$l]X\61+\T ]`K%L,N5Kmuʐ{>M7RX]-&4VٗzD-eca"fHy\Y$T95g3DZ0U9ARֽb|c|vDAd]a>Q^5 GDnƹ:n&67;!!D+GQl]ҐտgRc.Dt=ATLA36ajAXAd"Zvf*fR#UQc+rN@k[F:Ɗ~~Pam̢[\ƸAA#/mjp&  'ݚw/z~&ۨ~Gخ8:ɣBnc.i]ljJOuF͛N:i294pNxF4^%Y}9 i^_(D~mJ"(4NsVˣpGv)[ ^ǮҿuxNv84c]tCK(8FpyZk8q<@&9:rٻ+9Jc U~f)kZO"/bEyk31W>%E`5GYR)d F4h*E/CkG@1{ދʉ ص8wdNSh=(g;ԩW>FE26t w~ͧ7~ 6 l3lj7Q:(4: 管Kx9u:f:][Jp۽;dgBC2UZ_!c9Jv5~(&~'5ddM:K%UesI$"S1g^TW=V>H7Cx6kKg0a\w7m u Fey+]AYpCաT+GE~<] mZ2Lۣ?8|>(@k}21pYo߃ " `qh[lҮ¯F$o|`a`2a 嚨!c`Tλ;k6U7n0@( K}t^2XSIdu?+Kjft @r~&z7]u%>믭DA ^٠;EI|05͡s' O\'j5&|o5aY]Tl<56kԌN8aIŕ P(ӧO/N{T&|BtxoېQ{\3WȏT5nGWQx#_@EАcWo5ej|Ҋ^{Y|\ X .!DnA*%k$A3eĬ7"rN%\ AY]u+%_:]MһMc'YX*_Fo]&?Dj(g@>Hh?\>&o# 'љYAX;V+Bwp`O$Ģj>$m)çvm1ztvz/ֿٿ3 trƏio\{[A*6$IΔo'9ɏPNEzte8;b9/טLiK{0[!+TydsԺfy5`ug_K(A_LwE}%x8;tvt׿?hQn  ;Աk8{=K!ħZ&eDZ_5{< 2'#4Ȱ75)EcJ+hg`\Fa8@}HUKΧQP8)ڄ+"j@S. DŽ7acg\Acvt 1#S{&[Wh=#ѳ]Y)$U[/x= kuЙx(ɚz,ՋW~@X8@⃰?e};J&ܥ@moNpf!k#,aDj~ՋD y-Y&l2Ȧ nNT$|޽FZ/vLUs>z-(ՠ4?SW7NdOҠ)‡O4@î"L(s5"VRV{#r+ędCA_ ũ0x\3n_W}a_Ea,+:-|N=DGSg $]oʿM}vep$9Һ#!3dЫ:20J X?<\(KK0-`;pEq,=l7] W6}cz#{I'/D+I7߻6UMb>=:F9IMU h2̱:0ϳ>T~=\&\gh|LT1B逤E5>h!< y]["m̓%"*HE [rǧ`7 2LXCVR]L%M0R.c#P6=|Q׮ lh^zb%6Q2ԟ"WMVi'pGVÅ|C/v߳3e^>+)~0UJf>lKㄕII!Pmё6n$7@l ܽӄ?x"1ڐg~ )չGBNr%U~m}po0,2QS4P6xJ+gQjXPejUM|OiBlK`{}( U>~NL"Â0 5^'y7<['YmN!:U'ZWd&&}Y+#Cr, C@֛q:呒^xFZ2 ˿.E@e5Idi"fצ~9maK~OIƊF. 쎀%)ހmhsi '<|cv)_؝q|Qf)o6lTZc1v'C>qh`uoFϱq =-zd:gW5ezqA ec0$޼1,7%,BGEj .8.2LH-u5v6["mk=MB*Q]AVK :u5i@%,sT6/^/%Fim2&b /ʦ"6BX Ug vƃVC}q$_Ͻ6usN܌ Tp=S~o96ksAH酣jQ*y^@URG^|dRNnP#Ohѭ<\> i҆&W0)@;65# ~7*ͯ LLJuo{>֬G[}$1lݛS5G2?S~{>NguT"B1pg&-p}j4&E Y_DOrƷU?/B @尼AB}YA,è k> ~$Q\g4ܪsNtx F*.,<jeGzQVn#/Q7F,IQvIJyTÙZ?]1˜w<4A|5 RJ|nq=J$K=*;U&QʤPw3 T8V@M !0fHv¦y0[m10HL)OmbOyG(y-*E|5KЩ1=Rk3Oz=cMOpK^ Z霶MRhOҚ(q`R-lF9dлÊZ#H9^ma_Бz3MXOts58ݺmSP;ll߶ SdҦ^bIL&/^I%+~( I%˞[kb i,NQ7x "6;R_4\5aOفG44lE[ *|b\GQV;=NN[xhމwn3͈p_˻'Kvi2dCe`b`9Yk+^)=w͒a,aS\܏aW瓮[Hː-ϫm]Fi3T}(VS$u%92# Mif2^u2] V0ta#"cK΁$ ]X)RUHSQ':d%5~97pG= YGn!_rf%N3 Խ[+';{h Nne;cKsSUF"T]" .+N>F]u`A\!? ##D|58DkfUVueEP>_DI؉x; |F>~seM:#*du2 _8Xlh,>TtHzS"V/g:"ۋY |dZQh/FvOd |)%6I&6w,}K.,|SZۭnAu5)N~W Qq/vT!^+x1 s첔l^K2.jA;mUWFNfϐ|(1!7xt MnFQ5~"5bV#w`, XD;؈3FB"ښxK),n)yc^RwH9 P7< o*Әq[T, UcI󪋤+7{Nd#Q&!{a;C bĹj1poXk[+XR*TP(omԐ1m)N&TA9ОAr@E+̕Ѓ %ޣ1]NUP솟&TYC~m(_B9%-Hf%2Y(_AƍjO\?kudLH!=%{@E$K]8C%=eLA,k"@7t\+gH m)s&hE&m0nrZȅu+߿qOɯs=IkU !ƕ,Ro^JkAaso-B1UT?z`NB`M CmN8]p*ry-rC5ϻ(T`UCxO-^6#I13wVJhO P `30"zuC/ezu11_?w m1-\}cGsHVp>/'%¬æ<)Po,xBG135 >j` endstream endobj 359 0 obj << /Length1 1444 /Length2 6136 /Length3 0 /Length 7121 /Filter /FlateDecode >> stream xڍvT6 {Uz$B K"DA*E EE{}]+yf̞g 2@Q@AaP ,,*(,,BaCCsA0\?H(P.2@IaaDRA{8ԛC90 ҒP$ tA(fG0`àsAp 0{Bu"(W?޿࿝A`0N0w(@_CG_D7AA eCSH'[F_a0Ǭ"<BpT[c" KHJH^?E& SC0 p” 9A1/b7 @!}"p:1CZc1=( BV/PE@ D%@1q1 @?6 +_Ap?c!0҅taqa0oE_iƹ"?8 30jkvu(f:H 1.)/Ysoد / 3``7 ⍑on# MD\B"AĘ6cV43o!)/@ꩈ0@ A1B>oFGz`$3%K g`(׺eF?kOx3v<#'z(VԹfY.- ]?2[k%{h[IDi=+, GA_}1SkI.LmK&8'P7xoN|prqNh1jI$l2pDĻ.=311NFƽ[Х Nך'&(7\tak*w*;*afr+Tu! pc8m,Mdm⒯5CI"DI&gp۪݃R\pS}ÑM/fţ-q`S^b _g}d%31ΜS {4|jKwvW& e 9lٔJEK؄ɹUKak!N?EmKM}4t NCO4eT|O{[e`"ظ}շEq6^2f8V-')n9}Ŏ{,_IJQ)g3@g:OJq/iv~vR4,8hR*:#v8k9.yt D^9f'~flwժ7Muu*A[=>݀-;=h o6 ,;dz'h4ֱ5⪬@nA0u4C+eM̂H|AZa), { oJ{+0ݷpĤPU['8ɋKgGO ?N}ȃS87eFm'<C477n?N}.ٵ~l,n:S暺Ѱ$4r7/3*+:tLjZI _wE(ZߏfŎKb 4x3K#r'|ȾMR״ѻq>3cΙ!b~}.9& Wl*'XQ}x0ǮWŅm#=7ڠ kvXȐ>vSqDG֊B3C?J}@ٕksͥZ\6q*d D͑ )TD:-_T+T9]:W989ҧ)2 ?泿1xr)RറT6B6ͩ W4\&U$\׶R]CǤ<"Hٗc+76krou=ե|C,ڈ&׽?frn?ӧ 7Tu*UAA DdT*$>x0rB2qɧ)7ƦouPȾةKQ9bJ%"+WǍ6W1I4tlZgmdߎ xac!$_? (lelr4*BW(Y-AĐ{kx ܠV-m熒a-b:C ^4뚬S["KT is2cC${S^VŞ%%mUEò&,ɑ΀ p&C\5 }Ӛ > YP[9i7g%[Vmɛ2QFif,$zZBϦ<YCL IV/+YfGܶxWatdeYA)~O[cdf!>|%.SBqrYN:m}8#=u^!] Лq>3w+/=@3-ҙV5EmqAw?(%|46 G"zi!H +Pa;9+cD q@}æ R}^=mfr8LRiqdxg,qVV`Jﴡ\ Kaڜ;2BZn<5{RHtC=,yi*P^zl-؆JIZC;TBlismETNF RكR f&6k:;$hg>$އqޢ6WgiᲹ0>%=+5,R}HxKk}VRl#oR'=Ma]-Dvi,FN);MW=6YU06ߗC2k߬ >IO3aA:bmH2 /k!O C]5*A[&E)U@J~YA?>1ΰbI gVn~{gH&;٧=MT[m-%x'O!# se'K];]y[ L8ϗE7U^݄R(\]OnDx2#HMf@mlQbJ&UQiL77V_ Vh?Z9MmZjۦGNyKD6)&za^-Ď߯'g(%<!gS"u{i'2m9r9O8S4t,HDEbpL"J;{g,mniQhG.d s3mWf'" RÚ?kwjɠ7lKjRi)` ǑsRHDtɗڙOUU^.8aq[#n$)hd5jgˌlTow:e6=6l|om92yR~s?j|*rIIVr'1}#2pl Jנ9RՃ{Σb㡻K3į8z7}<8=ZeDXP>6nKu1mЁ5>vIk* 0̯uy;8ʳed)ܧP y *rf^>tw{{ Tb:\[[zSc@^a֑{u5 F_ȩ-Mvl#}=}|C, b-4$ ~tXQuЕCɞQ^߈H;>ܤ7W1.kx\[kݦ'F1dfe&z%w؅?R !/L_LwoN%ԅ S^MnŎ,4{j˷+ȧMɸ*z7Rc5_C . [` ֟Q,`bK炽nvff4~0Jݗm\n&茫olK8fsZUz&ձ ZR}X{2~KShջ.֚=bI1G|E3$F(eYptZS{)^ (0+ sGv1 bm{Qm.\(:y;*4 ņ霑?5='?OK'mg6lk| KHݼmTM.pL;]Є@ Ha$5_Q+s~w>/ɻYiuPeVכ0WQ QW_U4qHz>- |F )GH$}{1y v0^nՠD>RM{66-Q̌=O{Pj>hWab)F:)FACY;]{61&hPg.<<%r#>55{.h Mp:|6Ze56tf4ird2GmGh6և°O6,Slٱ|a<_N!ym75)3=gPږ~7Km-"d!Ϟ݉x9Unk09\rT{ܺWIlHn$ ˽W=MY&jŚpSh DQ"[W `VΨIӡdWjHvxO^MSpQ>.i)^Ϻ=ג :"kSMQޝ>:`C/,GCȿp>:`SzGNJͺPk~*p9*]s 汽=hɽsSg)M'<a UTwz5|G߀B%5K3:!h 6G]$Iz/< 1 .?kz ]qiqƇD9AғZ6:_7b";vw๪SA\:\_uxpۿ.)sncݢotE m+R"b@Ky-OcrPC$Xk=n0ӶP)bPC,WG[ wXbJj4cM~4G>u1Z6p()Q [`촞E}z0vARMJ[W7\MQcX' 2Gq##ɮ9+kwՋެާ>2M-v!~v.X.SD4tךDNg"z F8Gpd zWRgwcUhu-%m#|ؗBtct`\Rhw IhzGj4J3FRXLn?AD47ct&Y XT> ;25~3qi,~`Cq5mOr;}7A+"o.qK1A.jl*f kj7_O=uy"ejX5>\iAe~ՎgK 1Ni7Q0|j_+n0/y:$hOGar靵o1'Z"+18US^, Mjf*4=W7-l9& ز s`(%k{'39:~=dv9(b g>A? endstream endobj 360 0 obj << /Length1 1908 /Length2 12891 /Length3 0 /Length 14080 /Filter /FlateDecode >> stream xڍP\ - ;ݵq ȹr=1sUoR"y%#[cQ[GZzN=T?v8RUc ?"?l26I'+HO@[N@ ikc #ss075sX?rC _kcsC}NJV%[CscG)AmhIGBo u0奠;F?-d-)@/1`enhlHq12v|P+X_Ԁo_v6n6s+c4#5@O#_YJ#/QGh`n[Om16q'l`lnt>\K[ s#?m9ѩؘ;K;B0Y@/'G^vv6M?~<G'c/:10 Ʀ6pW0 +@C~ ?>i(𿎘NQJZHF-)(h ab0l^[G^<+acb SߏgBb5t-zzÏ/z+TUe$de_?~}ks+G|Hc dl?kve̝WQclL?$MLK/9PH_]Y\1Y1eCr?F?y>FV ǘnG g/ܟfe 1t#߈@'7FUF:"F5 F5 >1]w6Ǥ~k3/dp?nf ,?[~pX9|EgA߭~[D|PsXც?UzC*T,C'u%|?Knq֐+6ZυfwiHп:& '=7bjqmYΈH@j?aVoZ`ْ.YiYdEP"VSRS`.w/47#y.Fn1U%gbL9mEPJ`R:ilj }@f]AOh+σO TSK3'j #ve#& uOEz,Rü騞wv0(V;+v7YiD+FD>\F̹yȋ,O_ ~PsQOb@GT#Zf]x Xw"%Z&P4r_XHD͐X6[ݭXhplgbYK~]yLVg &;4j.St@c*h4#Tz,nD=c{paNra3EԙMN`4s8+lLf$`ǽ%\Vb6+{ǀ 'nx v%7,4t`=EN+ i7 H!k] re,}3Lf00h ~c#~#}s#) >;s&.Z_g¡[) )=]8ޗ/ʶS<>,~E2_S; o[ClʃPU\A!1T8Q\`!mLG\jSF˧\<&jʆ0g/B,bVzT$cThpF/)3]j̉1"nP+Kؐ73^5#-qAWgO^>;4$iiD \uCH;8w3P̏)7u+iz 5\ * @8D5r_ &#@N[uo*QM`~mg;=үDZVU".~l [C.Y=SsiWdֲ֧H}[:!g(F%.m l,?l3o28 XI d<P*[I/6DK54%z4)ORN j~# ūO\i 2EWEYk^RG2[ _kꁟd##ab?'$j [ k~=\g()Aؚا1LZ}&v< 8ubk.Sތ _? ߶4hˤc[gshn2kiJhete59SjC=l$}q(Bb-^ UH k1Ui75)Ow ϥFG| A@UJEnyI=Ά9&W7;UҴ;O4)ɇs1 pJ Vzm{a Y ǘSRguQD T YNƅ6lXP\ǻRH 1 'd.ͧ/DNND#h` E4Kh_Nn};w8TB"mLKхEs6 b|2'X鵁zp7 q5YE4m-7mRk_tP(Z kWDvGy^T^C [ /CurxcCMwڭ%a4"ʪ_HAt tZpa|RHJĊQpo3n){hW>ܢ§{Х1ʼxͼ2_t6eСR00zy$Lzo#sTuMzz$V[=G児a.}I:o_fG D/B')XZg,w\W5O"'u$zJ8םi?-E)3}DaYbn0zp{ A>ƖJ~fQ- DWq h_[Вj;L:OQy8PuYЫcd^[ϊƶzαFXv|'U&sBP5%-jwvAזPٟQevpPaQVu|+jV'븳D⸓яZ*3+rvAJǽY͒a>mT%dls%jK+'i+:Ÿ wU}ťW  mS6Zb٩jz`-;rg+XDPvsJm4>ogO$5Qgá3@`I~lnBNZ!e̦;PhlG׍Ӂ%ent Ŋ%Yi6] 0}O=߾$.{w oxCKzZ ic-rvjq3VvYu-82Då1J[y|X:Mc||]5n`%L“k/1 Qilf+}B Qb0v.9W@,jSܘzUǃwhH]v}P:V61Өǟxȏ<$ЗC$iM1OfȷD˹F|hE7'`Av "]ͫTKbƚ+PMeA]ܴWgo| /6 G_Vnb<%)oĵ н㧝U)|Fϵ^.b˷~ A4*Hmc2xV7u}cqD4n9Bh{m𘐞 BEŃ!;; YP-I86LCarOHo"Zc-xG`əN9Bu_( rY`y<K uxP^8vưs7ty\u#zT ~t[.m CEkFݸ /vA[~5Ot@@3vJf(3 wbnAAu'p…wOädk<}Pfp+-[α$ţj,v7]ynhҝC ^&ѽ5Z Sfo&i(.U˥SLK@&xjDD/ۙr֋Hd"4a  #`\0;1y";VjPo2#!)_,6eoO6FW@:sFEKǓ~ b-=%Qu CI6V=8K`UB/gϵfM=<xԆqhVM@nV!ϔ_%-=~we.X)3*GfAcmt^3+k>eԃz3Nv)}{ب9Z;DT]{˼2~ >X̏aJ:SM#=%mZ m &4u$ɞpFobgVрty6'7qț"V.dH݅ext2{MS y#p'^ݔ!i.(b69ot0#KYy-S|eIP! =s vBNZzm ߸L1Fܘvԑ]: H' Qy~K̩T14[=l`w#IWC" 'Asg ȷ 8PD;wUCLml+ѾUΖ^C/a0Dœ `i2qCĺIO|FhOl'v,Qۨ:mi sʇFӄ&~^cZ%ҙoB889>V#(SZ8T$})KA0onG=m(xs Ku=͜ÅYj1| l 9QTM+ŕE5M$8_Ut"DGi@dPUh\Fݝq5Z{֏0ڐ,!TB҆.Wc}ni"-R~i2T[6Щ)=$&{;;snĎo\-TثfêsFv~hWPŶgc|V܏&|>̳t)$!yٵ?(P3lwNGLqb!w?i'.Gɭxe%[ <<o<;T_uqDrp&Ϭ*85ƭ?IH5/m:8AlJ? QU]8>pVr@l=5>۲>d| z uU®1]$)HxRX[9gaQ]OȩxO^O'ajXB1faNo ZEW~K~H=L"(:>f\_z{fK?qcGT57L;Vf ,6 )qTR`$Qɗ@b=E X..|.#V!Yw(q)  %_uiƷ'_,w?}mXF((#ZANJ'*&̀ 詶_'n]d6:%u5<9M ]*黫*4 O4?5c&$vuM;C@v6qB>ϾXH3~[H p*v?tFd, G3 8B7٥zyxsmG:} T!"DMsIҳJboOk_!2KGA>$p`C1cIJ쓐̂oB3rqD?}yDW3ḩ ~:C8ؾ5<N*4{үԄ2Qο{O_=Y:5pa+\MѺ9 [*VcMмv m'¤V?gD1h Y /zvtdEJ47 3J"ì{mȯ0՗vfZ 8qI 6L*\h82U٭Ô>]KR@DɸU>V0 t䦗h <wd^t*>IeͳJHX(j^qyn.lF)ɿ̦ʸסΨ'.xQؚ~:2r_H(3fv^iOݜ](g8gλN褃^Pi{20s ֙aR4^+:C3:\qFKE558ege84=!|&( *H=yvOr?\e\=9}mSpQ]YYc"ïzQ͐¨݄AX 3i+2_IsG9$7.wā :C?7 TOcdG҆}Zۖ-NBFa;W#WoD MJ1]K})>Gq Ÿ8%#z*n/)zICE*dCu%}ƴKkݒ8&ks5iS^f^=٫sGK4vN¥>c#IzygaЮμWC -ɧ)eR&L.` =JX0-hjF "] 14p1SO BGKú; % 36Y<`Aчu걂1+ÿ5R̩/+)J/5q6t~D)ׂozAPGH7n=3*? u?/-=$D"TwEډk2>;.j.TNscr_WWR`Z y'!{W#ABJ*^CY 9,u[*`22AYKq5WY%7a!:ҧrB:Ỷc&E͙PpZp\GL{{ɮ')f8WIN߳Wdi xgƛSd3 >ۙXx;bN4DQ==f=pYyg*RYo))F:='&ՠ>Tu[+y9Y9c|ą;|$?2"&2ȷb>֊MUa+ۋzt%_MB*hjP ֘ǧSfđ~[X4SkSHpy$TzOÊzzƶ%M oMA6(;/ѐw~5QnJF5nk*h-v5[+_<d{<4'HtuGQghkTpQ|oRuO\'T{BrQI'^lto+!¨pwRIՙo4m0̔BOAVB{Bb׸֟ά8(*)bHHvX}S:a'_KA0 N?ކخ[s8J!dhP"H /Åm B11hEc%|v;-ؤiuYΣY%C; !`}$b<> X! 4AB\80IzVW2qEV@j> /~kMա;O{;@4mcs`7_S~I .”9;!0t^c҈J~9 b; b}>_єιY-4y튢K(ٜoEƍQ.weጊq1ٱC *[<ϖ8(tJuI j^h2f4W?o8CLٕSkTX6'o0OvFdSCGQY ϞW+@n бo^=7QjP-:Bꟾ6p>z.ע#J ȅ]caU2R~$K G|O9ڎ*oYඟξ `=zrDU4)88S[[xl1/TvVF/#_fQIcƒ^rֳc&]qhiM|M`E70Ԏ/J/sdi}Wigp 16V@P|7geh r)q78])Vª4W]C`eN=Ulj6j{QT{2R D,|s߫^*9~\Oh|G2F|ÜFfdNʒN9D`cwgYØHxWbqtWaGWo*tnJo"Oj,˗>@TEa_uF22'R Y}d070ol:Wr]'Etܳx{)7y̍hH,w{U\tб_Xwiw"PlEA,[ T:}CoFCq3>JVrAxV6N2ﴠKh]k+DdUo|%Nt+>4fsJ iBlBh V&9Gw˞CΟ q`ލtX-23ZuUnvl ZqkD4c_c/tYd/rmcKUS$~'X-$SgoK #ٞ*"i/sg21Ml :*{1gTT\"ǂ3[g,zG!.'XPǾ}/BpiO֯ld\6)%Y ߵ)~#͋fqea@7$Mv7Q:/Зe.61gB"RYYErclMW-\.a" Q_VRХ+~W'~@e] -7u0U A`J~=הF+|3mUOh#ExEOxcJj$75:-mλ̈́0e>-5Bu~]IPEХ?Drndi&rvnwF+AoS| D )(RqQ"UG٩V8.h}&!h12& w.~(ƫwN{٧3o#.h1a V_#}hؑ'~LkQW1 J$+_#5Nd-i눿yIq vH?-jb_Q"M F}(q:捶br[a(lfٿh сOݛ63 T~sWřkrOCmMk"fAijEh5~pۢ&,@p-fx*\=;ƫNf?m̠v xf+Q(`\t[-4D7Z8$ay#]ށ^4S>B^*ܤ\,liyq4ueaUR-:Yi͘bY9Uf٨aʪV6k' F"@Wy,U,^DёjHI/rs.a6z sV?2Է޻*t4Z> r Hv魱pK-PF!0@zIbI_cyjV"ZI3)81c4֌$EK#l? LOIE~7>RVP S,]\c??:LܯnsEW 3Zjӯ|`pddhro- 1(PA6֚8vN: dzl/}7ŵMMxB<{j>C`hʵoV^;-S=H` +T.BrfA$#A̓pӐq\kd l\JN<;K_sﻓ#ʠFڟR /)Tb0|fVy1ͨ;O`N-6].:b֍\-+;GiefZh z4֝yGw6#\x8`!H<1:ʚL7F>o$gri@DgvwƩHb$Pv㰞mVN*VGQt4H{6uLsRo|[a!3Vr^1uVI ̯6 m2Ng"+B%{Uڟ2JC!Rh|v[G'sj3;)j_Lpn!; '=3GY{pӮL͂AdqX_ { jUʠMTra8%]jhANb~ =U&@px&"Z|D!ضߙ!u^w.DU2M4Js( ?: fM3GYE!=\Xy?=OdU&?r`W,Ztm_wl=s^3u4cS;8d`hfl> stream xڍTTTm&KHЍtw 03RtIJ""J#)ݥ4uΜ01hq­!p$ih ?7ćĤE8Cq !P8L!`'F qp Bbb  w^P[@P LrpWwy̿^V6WTTW: qڀaqAhv6P%X%W1ooon7^"] b @~Oƍ;@=~vo;@:62f qz*ꀖ+ d,J]\0(:C-Eunc'=| F~uet0r?yظC]P#,eCxOA^:0?fks[OW"t A06@HY e 9 _]CmSc;&+  \| $]DaK?h"_{!q, GMrs SWU/gCο¬# v: I@ @?FߢՀB=]3# GW$P>jC6)oSjPDmAf@C @wهnSw|B샋\=xc0 \ k=k:&pp:sZ2y/pnlNThh\} KI<֋7y'OH1G# [e3%c+·F+FIy`ӻϬt.io'NyQH\_k ƙ}btor%&2ZDr=Bݛe"VT|=05G#Lt'W8yϸJ+!T"da}o*Ћ*w xְPCMTWR"$;c7ST38cU|\!2!]>61RCfP!*XɋNfA 9@3Zol5Pi_ m/F,ͦk~ T˛׬8 /(Wֆ ch(")CpSl܅`cy60!4|KB0F*}P.Oע~D`Y=N"#l,Lݕe70mijuk2reJy;_9~-~>;LѪ- nǫ$yA9V6-CTPg6o18;<(Hllϛ4pV B/d24[Ba`DbʢзC°'*%C>РN+ӨyaODS (D,y,~%.J+j^GʫZI:: k;A('f]LrQۅG#qp-cIJ &H@qKۥ+U}BG*;i!st%/^MZ֦&NT|}:&qLSGzD/}Dqf90e1>?Y:dYlxT _o>Eggƭl;4v$:'ljb3&EݾI~B`@ጹP6hf+ ؜G\jW o031:^|}b-]z` IeݜH j5FnމL`|:+N^x߷YmW=|M)Ɂ'w]6۪u['04Y2nO ʒ' j;8m|ArP[(fc֫5JCMV='Lw.3֧$& qnH6~&ޒg6w(H2x٦:;9Cf耫^Ï2E*WKyZ M~uztN؅DBf2pDq% GbWo\Э\`#bc3tvc88.?0Ք; ') #;䎑? ϴ)~8_0}ֺp:1qnKt垞QExYxۖmlawHhSHYʀjұB|wޮ̋r;U>Eݭ8(ǃ6/P?ؗQ=f.9.r9W dzo1l[N0bW2JĦQwߔ}b_D}K^5cx=Ǥ"n&Tk')0t [sC5/-:bb*%FbcC;q$R}j(:o:[7 + Ѳ/)2yUjb42je1ǖjٜ w.,N 7w}q;~^"P1~|ߪ+T>]y8ԭ{u xN{.'=j57x{2^O5lӲ~gIюJ L))<"r/Y}B/b̜pZ6~a7 _>}ocdV W.#`J2 f~o1JEk'e,AH[LD)Mdܚ܄0JX y6ޞ\%@Uq_ubKq4Ea $vE6296NN4q;Z+u{\WU.i0a=(}4ٴxЬd =)=7C6D5;QwKq}ث6ǀD4=5.lD7@_sk2%~'\'IΊG7IEsGߤ'I?c?vIIˬo̒>\iѨ[nV ut42/ýJr jv_Z/L1+}ΐ{O?L)wBPSBocB̎}G5*H!f*S5&2DI ܎__Z)U/k=}uVƥ̃h0v~]`;={0UmTL8y A%1:З>ńΊ/?%']k r8DV}_drÑ8;w4):c]Hu8SʔfQ]2:3hRxm1vogfˬ5}`BvB)xQ0+;OR/KtMŢo-Խ QYkI\"d⛮e?nUMO6W*u_n]/i[֟y|rj`@x{xtjXhدq<Ͼo~L49Fiz 8&5u$N睁 .XqUIYKҙ}J,8;ꎔۧD6t%kygtHx򁧲(SH˝p_BK EuU ^1lIC%Y-+>JƇZ%Xm2 hߧdE 4HTQoOmYr~#vb`-M.[pTp;`GH&{MޫIqr4>gt^3yHaI^RI&zdӂ 5m1s4 {.|33d>2~s;= !,ƃZjĀ.zgW\G͎ԜbRt0FMR ^eT*[+K2W-gTuձ*_zǗU>MOݒs~9dwUX5VOVwrWXs.l"e"er~:'xGЇغIЉգ"X 8H얋mQvvG,W!:8*K9GŗVA?QWts)44yā o9_8f_vHs44 *M~~2ɓE?Gw"]S p;(f]R‘so<\1ɢNu=`ECFU#]Kjf*ʡh^(Sj|ƽ;3?#q=y?gPȈɫSv~˜q%,Aז=xAэoS~Kw9?zX,x (ơ"c:g3]_ri% .W0Aʨ >نf25 š;Jy3HI10 ޭ9%}=[8•z=e̓s|]:^uu̮Ĩ(^UՂ-8G UP8w}/v ىƂТ=+ 1(##,Rϔv/DϒJS8H: Q8lpK+~qk$!;bM>p-?oUv%r?+A]*CA1Bʑ(.`U] |Mf¤7=Nm:ƥm3eQCO,?{8T#SNqHrQ8}yS$t4[ jICnTHbe|e%4os> stream xڍP-'h=Ch\Np!@pGfޙ_^uUY[ַ>kTdjv );[#+ @\AA†DEX2#Qiv|w!/6 %N`cca'Α tlANHTv`s csКXyyHڀ&@[byy fgAEA+`132mͅ`@rt~7 Pڀ nvӮfgq:/k %xy8@MVd3X_2D`?&&v6@[w9 l (I3A @K>Q9 %4W{N&`{w̿i^,ik*ngc8!O2y;7kekj0ۚnٞY +ńpp@ozuw{N=f/Mf$O' qty{o 0@ s-/fٟn]X~{/<'&fdd0qXYY/(Uwj_]_A7݋jAڿEb,?R&-H7hv+EΐP{Y  Sze!E53#+ ǟv d X)?Wl Rs~deL^N/tzY6^uHښؙ;6N.r/ ? `f^z9"fno Ffߵ3r-9@.? Ev̶ff*?KC*?࿦d2?2?^U iq΄?в&JЕq{B4Vq"/9m#N-3cIDjUSQV-i;5#Ԟ9qܯkx"9&l$1B~(e7]Mըнhjz])vtUejmBԷ9i6l6#’:\+߬ `wGw> `HIp Tj=fazKcNlkT|q<,yXG̅na26}R[}>߫ 3$Gy2m,D}h "A{[VlQde#HcăG\+d %#zWM'~xV7~&hhJwJ|$h1T4GAa%'ff^^eLFRdsj+S}eOkO}Sx;f.EѨ*Id1-FGa>sXif(/vf2Y&' y>s:bTAUs-kv~eC z8Ieg^pW^67jͷ>#8N4)seY銃P&M]ܑU=< ٕjl/5-X*]YSiY^j@D:7u$5OEvŜ6Hūc-[1YK<85QhĮѯ/mg`p^VV}8uqpFmohTܑ!4.zmG[0JO 'j_ L؉,F/(p c5>tw|o)4 a3Eh>&8`cPyy.[09d- 'BW^; }.hBuh85޾9{%b2 @'zF_1Ut_FG߅@y1a0=,DߕD46xlOph\R!b J=5.2cf\>/M EZɫlyC*ڱ1]U15W_1c)l)LaN\뚢۳/ۄMi͢ RI:6 D" ZbNc|&FeV7j]Mn'tFBabLïޒxpJmHh$Y*Y - )_#R12[cxARM|ZtYTCHl[%n\pV4,)G(ѧU.:vV# ׵l ڃ<>\$``sCQbM_1:imMG <mHNU5͙-AV|Z2w3PnLZ'M o$7Hui06" uEQx詰C*FvCunup2G٣_ej{ Ռ&a{pZg- MuS馘()l QP_M K5mTFIgsQZM irʽZd'|$֑bԣoHv5,l8h=LgMˡҰ@TKPwԯrDT5P򶆆p_14%>MP׉ZUTE˥[JRsi~"KV9ߠT#<p~l#(1̢nAG;˟T\58 ~~>uOM% = \xzM;s^#~;EN9ں 4LMo GE11-`e=r欅 c?AI$)p/NyW+W3ϯye4.XM |L$ފowrHރ5WvHw 1JTZǖ{N5uwԺδƱfwJmcBrQlBa|7}^b$9Q,1$J:O >B3=,`0r|3x q*lAm2{'0FLJT,xD MIeݳ)4LL\ Kԇu &O;zМ }ϳCVzR^v8xBYR\AJp$w'0w(gLQ1zdCPc}/!Yw R+fDWyfV#c'jl <!(|ԢFA*U{k_Ό T_q UꮻOr2_c<ɤE6_&Fc;iXeؐG|Z=ԾyZZW;$.Gi<z҅X0m]#Gg$oy<} F,NN!`gX{sQtZWv1+ZQ+KhMs gpyF%B+/bq3+%HpBj:٥8/H6E>HGY c ȝ㛏E" ;YIa\QM5ׄ?Qqb20mDjٙ]0u=i G&1GTS X}39˜W ca6Wjٕ*FO%:OD'4~Bh(x6S~FvptoAgX {b4xdtI!d"Cxy H茜]Cо?EWNˇyZ 5pG@(oˍe #.F:yC(.+X9BW)v+{PlY%ro =BM6CӞ3 q؟K,}vnX=Oe?0)MJp:I5Wbnu" P޵)밽.Lv0_P*-OԎ`݇ U<G=s[-W3RqBȇ9<=a.Ks 0L2R) !瓡}}+,͘*GH5WSZ}g%*Ex>&?~N#PD'88[K1X Th㫘o%j!_fP}MnumZ|:~Dx 03wCr05Li(Vyn~ I|P0ʇ.5NO?Q?UL4ҷ/$9b ~]>KUCׇo[|tƗ!(V&,7$F1 QٔT'o,MRL)tɻzcNb׻vzz.gxl\O6;VV&Ҡ -L=⪷غ1 k'uV0iWo}+RVl;R@o+4'|zHOOWTKn}ɽ>Th/M&(P"&t~&Jc.a]udRL2U7HC!'856T(WgnJJ*#=16Zg|V;9' `yڬUb+s3-Va7>sF[ufcSicۆ _&"75wwO w^R"P2?xm~|5RJ:d ,"~ Xɏ[R62+ݦ!˓ǐo(/CEOto`Dt+lK>WϱYDXqb0#<84oRMPo *i2+< cbYy2zaan`eҵxp{z3kWпGFya,z_mDO@HGUJ(oOtD؋ŧxБ;#Ņ R99{9پI^ 9bil^Fu` L}]G ]5ˏ#mT_ׇ5a&ya9ppomi)rdsIiU֣wTZ-K u| w[g޺Kܻuuܸ87m[mH|!$*+_B܏ "t%fۖH127+ndU0'6,ҵ B+} 3D_OH(\T|1v="#%.s'& } bJ3g2Lk?%%Ji?Ю*׼A9Ff߇e>&RN{&]e:vL'c6ُNY,)3"o^(pfpK:Vgc'; \OB?{e쨑io϶nt]dz{F&9ִ.1 qKXo&A (|W{8昗׋ӏæ禇?)1(shFԩPhA0vEBrW9Pg7R{/=i  єe\;[΀٣EB#*X>襗'{c1݌)u]=-W'2#Qr}I2%XAPokvQ55Cs/^ݘ*{ݶ{{D** T,#$|t a7!d.hdYs9?طRa9z\C(T.R /'<8%V; ;*/<"P1L j7 rfRiSQ XO9$8,KpY6c6 Na;[-Gc.')=q:myQuh>vWE oUjk=WUd."FVlc3ISBvx d"K??Դl\RӹpF78U(XHPSC+L?uK"S)Y8Ĕk1м "ڋ&  t( Ȥ@tT)+`MZHx ?U{38uja0N'K?xӎgA[[WY.Ws:~sYQ8KJA5ZH 9em'UTdK ҧ7r"/%^;iVEW"Z}o?eH_1\H:':)SQ (FXoIU_qTn0X @7| }]kѹ:ѱ cIël-7%}E->|+K%: MlSIŽ00nȮXU5})Fڦ4.{s줺uN&@J׉|.B_N]JVd]c-/hK>UŮ[B/)EB}p[IUw)M*kVu#PQ9!ɩa[LgPJY8JhlVȹ.VipyUeSISrB5U3֒˿NӘ@hz] EQT!UQTg8 rhySČ PXa3z,g#ɵ{2VR^ c2jNe]R77MYلF cB;t e-Xe(5cE{''@<8}X ,f/Wæy;|o~mk VDHڪ?-8H\#+CY1F":O-nJPyk<4vSv3n$R l8#EӔKN&P}z#6J!EŠk{ endstream endobj 363 0 obj << /Length1 2724 /Length2 24152 /Length3 0 /Length 25675 /Filter /FlateDecode >> stream xڌP\ b!x;4ݡqwwC-[33$WuoQm4dD t&vF@1;[g:&zFn#LL dag#$1t\L,&vn&nFF3## "&Yz- LT&..ڿ6@G cC[9lgltOJ^sgg{n777zC'z;G3>*Z9@ tt~ 3]=@o#X[m@.&@G(9@YR oXoZ?03_,lr64675ZXb2δC[_Nv CWC kC#_ bCPdhaDdaD_a@]5:;'b4݃ZڹzL-lMLabϠjk$-3:9X@؜Wx{_J_bP>^vSP@ S +S_00v,l~Gc-ڌc0.hLl=~5_qA%u +W'$dce11~-(ZC_I[S;lAmc7hkKh yrῢ-%$bm/Һ8@tTM,\lVtfIh`ll-Wue@;'_h4G:-c+У oJQ[c;_'0tt4 ^L[4z[;g TD D#vo`8 "A_`@1$~#o `@\#E7q@\E . o(F .*oF .濈 E7@ƠUSCF#GCc+ 5e˿O_( f &@P@O_zv57YAo K;8/s;? MhHG~FPI@|Y6l W[+`eu14iӯVr؃^϶8+?ΛDz aTYA=vq#'H{m@ \윁&FI[2s׼%Ӳ6]J_6@?f zTAUN z08;\Ppp1scIA@Px? ]Ɂ"yN紱#hbIA῾@c9;c`˺රA\7ݱd)Tt^.Ho3 & u_X"|:nڒ4 0?^p,NE`[- C,I!έWK_ǹ]Žjvi)h(\Y,bhg:|j w37?Q_ h|NY 6cg=W+T:I!oPF&ɽ0J Wܛy i?н?`NPmuYƴGI-mDw$GnՏDue|3Zmejok+`Qؿau{?-wC߷|ԋܘE͵#V?)sTJ]rM|zcx)ôUȨ|-2ƧB nkܫQ狋lsQ]kx8%b̵'='Bw\dֵ+YT?Ks99n`BYH6)` \Z!cز)_OTg{ޕpa}ߡyn|2{ڑG 0Aʸڠh($$=9hTXUPibDƸ monzMOu;(s.7 ojp`m5Op'<%I˂bH`N/x^L} #?io;Yx}Թ/xq;9zY0Lǹ `b_Y<HROi=jCTxGAâXݗwKUԄbՅ|ը>A(.[`+`4aE@+d@MAaki!c\P̩FTQxq ʹ~Y r3OxhJpe@cs T/`΂#`:鉭:_=֯UD@]3R+K3`dkl6R@Mg!m4l J^>kÂ| cYbbw*F)qb)ͪ2*Wfgu6 Y0kF|\[jM#x'=<'t[$ϸ.sx2Yغ1eyeAr""e9H%e,^p7m=C`cxawF c~L[#oܝXS_ "c `1XZ,Net qz Jfy_i7o:3 Te" k+/0%K 8Xx"#u}ĩD;<4:n([pzlU+ (x+ ֍gL+..4gۋ|<~Cdpv9)Ns(Lbg3f/6q j7 Kȓĺ$X]3?ƥ\+w 'Emfzu.3 - ϙK0&Vh޻5GZxVkD+ډ+`qI[.dif P4!C_}5 ~tYm5D5X(z*CGYb-lPbR7uي e৉~APGe2/r-04Js'ڎO7}@<Ppcbઢy'/QA$(I.n8>jPq{1D>ԤY6sI7`o)%C,W3<W %-ְ|gnm{qj S lX u.Ҳǚ)F) Vk:Cw t4#89x"aaH/Lczu?'{F!fN )&t:?fex;PY"x7s<&1(q "ԯ3L 4u|ha>'l \r("[8;]1XMe]ːl{k;ÊXLW"@RuC@;wVtO<sh5QY~-^?mJOkC1%q1sH =_781@E|5QꎮḨ]9 MDʥˎF`QEeр:thS$RWIH_Iк~μf&wlq52y[Ԙw ~% !}D>kg"xe;sͤF% *`g5.l8] A&,(N6935 =e3,Xhiе v`׮&8E8y~Tf7^1DUƦ@kq8Bs/$J(g}Y"t J"=O'\ۅgka^(g8^ O&aeN|_2('qHD24#zJ2}7\uu%^j+'*1tƁFmIc0e d7mgP@W[0NԀL@,EȕNog5U}~646i6D̓YI|;x!ԿsZ7v%䚋TBG29[*o23~pMץ@B%V&laE?ZqCk;uzYʫXhGbe [M/eokW* IgZܛi'^yТ) ̏ 2ҷ*9].lo93DlDl]m2Uچ?C왖q? ,M5Ka+.p8nڑtt8,a1 \Dp^jtq"[ݟZ5iڟ+{ 2:.w8P's+aizKg Y(Ec fwt91$Eܳ1 D^?$n\뛷N1)H^HZבIQ"9O d&!ϥ %dygCNe-íz:Osϊ7KLCh۾gF/¶yN^|r˙LAxXm*xn4ʯD"m4/}*MkAhWzzp[?wB_p*a) RK/l{"G+.I[Ϗ4E'6:'z9:4 aޜ[.#O- H!Дu4 ,|I%ewSQD'Yƪ:V|ϟ6NO DM\ff B`Cԡj'yT߻{- `Rg[ JZz%l[|Ы&pTMDjsK;baLjA~AxSgD7m?ITrntqof q yRa;":.3쯊}),F<$M1,ׄ#eFȧdMRqoʿe;tc4CQmgw5[gC}{;!Vբ4BVNKJbfa' 9+[eUZ V 9vVf1Fe/*Tzo&Bl|iôD'TkG+6xv`iҁ|f)櫟I0,.Nu=$ajO'!5G!".jIFbts%! SȑłT8>f *e|f{~'[O>b{lgj?ќA>:](lg5P{d2}-^9] xRϱ"- V8Y)c,%}w1h-0( /N&GB^}@| /rmz)ڴG0 g>S'X EQUx{ mVS ^] {/Np~cjr1ئ:*~5QAF գfVtZ}:Vp{i+5I*ET\-E@a`Ll*|ٍ",0- #/7sWzGڞ9v3ϫ.\h%G)|# BF(>]{K溟5Cʻ0 Q̚k]rQMa,f)lf2/߻ ΔFG8R'uc?yd|daIx7{Wh<½$e$Wo,Mޙj(TԼlCbEзjU!t?e(\ɇsV;R!TGyZT},Ir-Q6!/ax杻ɡ6]@rMA?Rw{sM9|RQw̕.} Òwӊ]˚k8P^MH{Èkx"c;becY?t YnàRX3W&L *##̟?^e#[tv[8T_ƠS@ϗoF`V!#TFtSm 63l 7K*$"6Poϟje*+2p`iON,$tl#SIhWz8x|%4Ċ^=2[ Sz'(1;umö<W|y1:=%[7^ ? 麇ܳU>q^rH'LOSl'8|Xխ=e+[3 薨;kK.SS&n.Xx^#ﴘIH[u` k 4!2 G|A`),.&Q T)m^DNʪ.%ehRƺTVԱ8:yE2~QLcǣ*`XfLFF&,bWOKzVƥnVp7HPdGSDwH, cnQDu(QMafh;-v7})g;z"b6_l $jp-M?ܤrHhN &sIvkqHj ebP915<-Ky V IeX&3ԏf"ס~G~?V;l ~8e(Oc$l7OԷ3#֥Q.^]m§Fkg;:*-HESHwmqh9S*ne9 2yrsgZ"Kwv29BPk|H̷bVO^hj鉌ԯL~qlUAdxØJ`s_hg/L3`meʔ#ypE{keOv@]` ~8~jd8kPiВqnG>P}PJN/}HF<74Aӟnm#1Յw0%Vo$)7 *W0׮\ BZxw{ _qep{ E (N Ժ">'iX\Lf@ '%F A%,cϓ(QO {sX&}JKĤgb晶ejd!(@ČW?ZBU^An`ǐA7TS S1,;vj{%f@1yXOc c|q5ƶ=$zq\܉G1vQ5US[:0ZBL2x@1 }[7i,e0(Zg׍-s1J>/Ci!F lv¹ӽ8n+q*Gut_X\ݾ3ӯ|z>ifӥEĄYTĠ<|Ғ2T`MLs@:;WwTsI5ݟu}߭TCcI΁/UU. ]YTg1#/‹ݺ ڭNl +D%ضQVh?2#h!cLޔ9= n'TPū/-#czxTq)jH:! ײsb4V?xkeU6`*]wT ain?S)$9))e|+۾##狵 z/Xj^mYn}+.inDGڇ-2z``|m]^m~8(*UА2N!_ER>G">\C ӆ9 4cl Kevyyˈ]8l_z ^E &\j7[*]PK*,YNb|nvAݓd$pa@t&=`E< ϧˍq,ϋjr1+MQ]\L B (,1aǻ]LBnZ<ɤ$QGמ!H‚Kk V*ZL3j$#& 0Sl?҈(9r$fT{^fOZn1û+,L|M(xѷBIB$Jg4^׆7A k_ A= ׋?uX㛅' ׆Tok"EHMJtay/`ǖ=N5ɳ)  ,4HEq&V=wEd6vj$,q}V;c<حwL,07}}+ZTL/p;ت+~Y3`ऩCcBOI)$9 g$UZa`]ӹC*H#J5 lgd %B3&QidzHT9ezHڞe?d\1 ^NAA{ō^Z_R'^'_V(0|3mqirbz.-J?>Z$C| #m3jg,?΂ߥvQsyiA⭕1tr > #6v~N1UĐUW;tE"c. +a#GhsR'9jC 1Eôw"B' M7춪=+ (NS {%F`f1vJŚM5yDŸz? u|4C)HkhI %>{3Av/փqdG·c_PByQ7j ~ak, f.Kqtϱ48aIX/S~Ǎ[<}.aƪWL9u6ָCS?o4H01{'*$$ٜxqzVf@er i!Jn[ 'o]?q=Gl妠3]U8yHu6Ut'[qM1j3lT-_93w3noPfAM&m0GM0M9ى ^0/wC{<}wl@lz3&#[ NW=HEtA0<+e-P|vL(84q-`;.1 I蔍D s]Cٰ0@H}6mV" Et9qZ0mC["Nw5tlBwoI&  &W pdMHpqep=]y`J sbPn i2'l9^1D?]Jti|Pd?imi($Q !J?,8%mEeռ 3Z^^<ZAjb͂4.JN~[nlIKovv+ u,A3u{e*isBz Am6To^XҖEa% ɕ!AD]?ν*̗!WI2+X}^Zj q%{-e8%ؽZ1L< ?q#4FF%͖n鄵4H þ%u8[1r8ifkh \Eݐ4W7ccʈЛG> u{#"6";4ێVoq)\oIU3)u'Ȅ/̀ :YRϟw=ݴjk9T;"Qri9{~1uA<wdY4o|֤A\n)?<(q젓|rr4 A2=4&8l ҽS^ZꊫF;%)1ӛ0jL?e('߈=acr$?9`X/Ύb!`h+,SCໂ]TwH,Ij-Cz;5syݖȴD z}Jx_4IE""@o?鑨y>u90u{0Q*Ã>ǧHiAd]qi'0{q0%wx/hkh_WAAU*ARXUF§gnc##R=QعyaF0h0V۔ ST "+cܰYJ J;&!Ö/UC GGwQ Ȍ mRFaː3+IUhN5b8}+$B?9F{잚r'#K6V7s~rߴ3ǹ'?OQwTB9 +_>O TrSD0R.5ጌ=2ZW[j4Ffu@p8J~ojT$r }a'c @AsX(ɛek/aG-F㻷|b7pFvieHs*GV쟰"xInyY'Ёr16~æmro|3Z,*[J* Ƙd[^Xb"-vrP5˕Y3VpT] 9?8}X~DyAnRBmuIwP=,LFZ2tgN,DveXHNeu$LvUz&/8ޑZ2ZL3 g(&G;YBMט ^4EC^0ѸZE?7kCwTZ5XYIq#p4|a:i:6 >S qXa c?=H4ͮŸV*U-~ʊl晚/oo4vJ%2=@%gLA=y< Sz{xiդuB5i?<8>t~w!Tu7TZw޸dA"5}QԊY+O,W;}2nͯ') !bA8!Éu+oVڻ# }fذvi; >z:cQz0 .sYQ0p%$m>i͘|Yr8?VJK12ie#L*3qMoPlI_[?Z،}4X(kMqP ]?}o}/A +;| ~v`%3Ga%TCx)#1MWGB*w$1W7>g0*qKA{Յ'J@l 4zضaQW "eB^1-džSj!vqB-B{:.SݼAmZd>*5XêS3b3KD=g6 xYv> COg_i8HɂEǞ0+r&gފ[tl9IqaR׵FiwY Cg#,iXWݖx 'w{POzQ#=z!# ǷڠڧDŽt@7^$y5c494?ɭp,B8A+ݪQGy>.i66v|u)Ƥĸ7꧟`Ib}b_ڞI?bUcy ̴ONCzQ~\sq+/bWTB"uޣ̈́m.]֌g$1Y䎍Б1(tKxrޟD5s۬6;~9*d0 gmQW-c52SqG Y`0DY.76~iY Bqb=z<(5яix!όu-el8(z%YVALe|/2k3#[f{L!Tm`{NZ{_'C?ΉܗTY[kHKtuɟ0(MyXJn_j:ǣAb`h^eV6fM2TS{W(S|́+xzo/+r .a|p$PPOjL`68# 1'?LE[k , ƴOdcDsqI b&z>گ 4^7Iμ8QTIM[c;4$)Q(@Mx$rg׸yF{`9k:O ]-Kf9TW MUȸہjU{jt KVe7]u2+#n^ƪ$p&rX63hNZpv.i%BϡU@x~צ1׷՛!Tcut3c2ڛ( iUebY gu2u} h# f>ZE3s9 m:Y(QZYXV4)ykKym"t<%*PYCG:0"6*'BMT;" U!I7`Sr,f첏Yݓ?) ' ^V-C|e@CRԇ{9w|hupVj=uk;FF 2!Apc 9 =,ogF ; 1j5M^Gw'+OڔB0ubzTN84fLs;̊rϼZrr dEapMX,ݢT-Nq.訃5Cr흄r&դ[y@] ygeA""{4N0'sïxXQz--cܾqՄ 3x(,kx7""9Tdۍ<6 qE[hOOV-6,'=t0 rҴ+@ ymy;3".:+>;mG.ib39 7Pn)WZ'W0BnV SV; LZ ›[0y@w:s{tzc d}~W9"A"^xϹHvCH ֙xnX䋙$8'9 Z}c vL%o\ $}Jm} jt[뜱[dFU1dcΧKFHʃ;Z@x$MLk{كy\ri7T&(6P݋'#m[m)#r@y +P7EA選[@F @aXfxFHy/=;Xz1`MdlM AmqB5,K3!~ F+0c34dq -75ŲՑvD-aJ-+ ,~\6ud6 ƄBZR~w@ƖK6mu$O9ڪ摘RVKrt oQd&D:GJr*\a:O*wD<ˮ \8`L>X5Ə>o Y] E?7VBIc`7PUыKyߐL}﷠1g@+WnoiʜfS pкKsХ%46)GPF2 v_^, 62i:$B/e.FA%oaY`Dn8L< wŶsHkl[U/`NG;S`x,}G۷F췘@=1*ϔz`Gmft%0QO_)"P[Lһ /~n(qP@Hj@L{śq1h_8Tݙ!tܧa*Chm*/S-&c%Fj 5~(/!Whkͷb/dKhkYswE:3oh1`~ H[I`u>MJ#Gk͐ފ̎@ֈpXߊw;XK8*NeܹLA!t#Tjmcd+AYEV_ve+^)Z l@R-+HF c+mS^J ;'ƨfȱ6.KUrP'V&;boiioaT&NNʸMuӷ"HD_smuzI5DI[q/C~k}ݣ ׳(( ~M1 >#=SS \3EZB+'duQ+N%ZC]3:<;;|vw!loWUMg-uK$k+Q "y$HӲG@K X45V*ICjh$GmiśixEbz= &|QKNa`"%/ .M\hO4!dLExc4u4t^TgFF$oqJhΝةb$0mF@ %ɕ(\O,qHб6gc|#DF_`ٖ<0Q_?`H$@M{-!ބka]wi n *aV3| Ikn0yrT[/V>ޖukZOܙnEzQ 7CQfQRj'b}HSCZ:ϿSL'UΌI kί 8G|̟HBsP6i1+t3:nL.jqTxlZ#I8c{Oţgwl'Я x?o֞) @ez-h6U{9e$\ -cAkUjj^ bes&!'Z>B坊t~`j ͮ8MȒ`vC{rŤ[:ު;Ub&fP'Nwm* /fd Km:>(2W`ů onaXȼ-=R'2zpOo*<9k6j@&EHZ<+17+n%OZDg%#N2 #%Y/р-P>k?_]Jf$-/uǗ&fm%1H2?aoۃ.:\[`뙋s[TF7d֟ȩ;ȏr@@-,NM[BCb8zICZ˼2qſPqsa+*ͨ©š ;/~yq>?} E59eKSuUHS CoÜvBS~-gsb֎*%Kd.R5Rݜ.-ȍRQ$QBTdbMC.U/+N6ъXh2Amɿ (}F!,BU&x1@$/ /F VCچ7AnaI?9?S%jAN8*^OΛuEDWMy\Xے^ߣJ}; hzڢ g]ZWq}m.i gGOZ2vCR%U7ze(w;6/|c_l9XO@c8EU#!r /,)ɸ`W"FKdc/(/uюZxN{Ӫ@:gkQ"Q2♻P*}jKahIH{M_O07M{A.c>'W̺V"a kri3lAk;rʕR\/+odg7N2*a20*,yrƋX< `p6I-٢o{5uTB\pVaMyp 1`#%3tzJFf*N<$g(3# Fi;sM\}9 zi"cV__~xǂx:@+TW#KxB:V% ҹ&\ f1b,O>nkh/t ^{\@-)~WgS3:`Q ԏAAYLi^ǵ-liʘ@ւKk]TGW[~ǸOꭧ$<\zں5,g^T. $4޵(ERLbY))o#;20 u.w Ljm^ Q|v2Q~IK;Blz5 fId ،RW'ۘcLVeq9 [RRQv9Cuz5U*eވq:ުN\Xh;g-{mg~巀LqǂZz~"S4F.S֦USVra=7R@5BE!is@DܺPrLS9|h&,>O3`_i/$x۟ oq)5C=i[9 g:\FuFDL&ɰn<7J?va1n/j*y[nRbsd0Gy٪!(_b穳 .tCf%9`SlX8bY_p&E2q2VkQu)'d 5ެnh('eK\ kM(^ջߙv14@Ah`̡bd endstream endobj 196 0 obj << /Type /ObjStm /N 100 /First 878 /Length 2468 /Filter /FlateDecode >> stream xZ[sH~ǡ{ p&l`xPl%30~#9ͼlUKbh!J.VhFX퉰o5Zp"$TB+% < x›VN(hI2L5\5FtluC_*p6сȸclOZp<gXeJ7n5mċS+pf> 7C=o LᄑA`gd*,5 $"$s`a٢<c$LlZ|p*z BhR?=oLГ`6̧"B4ɧBh,e>ӅH/E(srX>) MiuYZꩤ%򒤯߾: J葠 '9D;/fӬGiMK GG'Y1[.gԪE6dz ^>_H BOUc bc66bMlClHH)佰q9܍ %:Ėp}mM&;lkl5i!6j6褉-t_%6c،[[lX0o3˶`9ahlxnZbs-v uYO[J[lz|P\z꛱ kB6|3x!66f=Ix۶f= Cl m= zBx߶f=Clsжf,{B!,- -3\JSN>py9Ɨt/A!^-|P5\5}X3nz)!^Qe:oG">e/Y³ڐYIPZ/q5=ɧ{"֭߱Y m ENE%t,3rr1ξRMb6E> I9(Y9.hi+ur:J8]4ͦ'̯lzbۜ4TǾÆSF6ꔑClIobb-Ös6d[[cfrf!;sZij=K,̋C̋̋[Mssk4Oӌo;fm|f|!6 ~mmjbla(ts=zɇeQT3,9cV37v|7oo^8c]0nRmSU>UfcQS{wqث5&kա͖k%-%n,hX]ש|uzԼF~Ua[k?yҭX'}=F5b}Ta fQWnR&+r+5]WtkZ>e%|4z_˪RL0/ۮӖSlSEg;L|}TN9o.n£zƱIAtT[x\!~R޲^U_t,c]ׯ< c8MG~&g|D221=CzJ舞 zIN^ӛՉ`6\`HU]/L]e6>Ѹ:ӌfizfG*ygCL *Ӎ*/YF3Z7se\2=yۻZNߤخB.i]Oz@Gޝ>k8lRl5m=ް4; bú=~lSF'?a^QMcWg!'ZJkWnw-[??'oسj'b*+wl5;z[ umJ2a3(:7e>?ޞ>;ɲA*Ց,Q$+[&\Tv)ɛg}rG *'+ǖI'e 7ߖiϐkWi 3'gxԼ'rr-|4apwo0<W^j~$$bwO7 endstream endobj 364 0 obj << /Length1 1908 /Length2 12563 /Length3 0 /Length 13746 /Filter /FlateDecode >> stream xڍPڲ-<www,\Bpwn \#{{꽢 2zI9 P։ " `ddgdd''Wpc'W-l :D l&;77##@QC =@O.bg03wz+?T&..l cC[9止5@_)x͝\]] m@fNe#4n oh3zxrv;S'WCf0:E8ۚA)Y=ogٿ>9=;_v6fS k @A\#䷣[ћ_ BJ÷idaHhaEiNYDh[hv ߬?w& j@)\Llf@'###+3Nndm~`p9=M7gbX;fYtf ?t_ /*-Bwᄅt,:f6&''Y -Q'TطS.??A \voC POloߘ'6[_4_6vmf_m lX8oVmlͬsn@E 'co%*9Z~UtL{,cm"o%lL~o3;2tg|$f66'*a[=o~F?  `X ['`P޲(A,?M[N? `Vq>;A&_ [YS ?Ec}4^̅l FeYJ26$5s!1rMcq~ea7й7hbD_ݚ#@UE|ՂMҠ0[{@Q QV*TU˙Z' s9%1-)BQs9LLEQ3vBt^ W}/ wL+ ש8|@Ыgo8`)ԯtN:nC;6%^QrR fApx.0S3v>kŠO"&jpA/]k&}󞾾60̮'#9!fl>Cg`\~Q>'3Լ,*8H&eҽ`sزD4םۼLz.Q3%UlݴN <3T"守CyN]xwW o͜{O6,i`B^rl˨(c)= MQ±oǟF[@=]ʕj-D PO:6 <5Ʒ]; cG@)+Oo:奐/F}sA&ߐsR4bX{s=ɪA2`Y{ЗIRk.t6$onU{+gZ?w|&0=HJu)CA4w^q7TbWmV>޵m:ԲP>8rtB^ghhkL9jͿ)[P&mdr'M:I ь|$Y1#VđS#(QV;Q; -X>lLǑ:K-Y$n=7YCo*#Z ^3%bAחE^0W}3S:p̋ 9qD.jW[^6eYhh|?˱czS FjҠc|<곿rXJc 2=b?# r"aR%F )˧iݒ\F5Cj"GP%XPE Scsh(ZX/@[nOl@HX=s + ]bk==F:.u`M&WP1׺"&N6glOR)Ǡ$CbAk$N۷i?]^4+QAĻ8*:$q|fom!U;ƭ7l#4 P8 \%X^xL`W0?#&m^^;woEk^S*_E YN1ʕz˾҂'r+40 Ιfm/GFPe8[- 'kƈ%w&ŋvFbqG)A3$s8^ H%7S=uPR81{d5W옗ɸG,+V4T%ٽ(l t:TbB$,@ÕDh!1z(z z{~О_J-ɃnG#-ȝa!V"_M4`iRio,sADNc,ENi$7g'mrȞ8%.-4^ίW3NK)e<]m"OvPYvP-$ɄCsoXzE.^.Je B/^чR=dVos6`|OBB,;F8u~qH|k!!wwtmTM$ M5:Vy̯7c"&ֳ%w*@?V)'FM;rgS?iRpgE =(EƇT9A%5XQ OT'O(!ը?ZtrS|H8"|O;B,7۾`}XĠu6w1#֯\K !I: 4w[1MCOU?Y yhU6G1i8}z@ǥ.*slQ[p mvw=B*?`H]/5.v"hc[mT tnֿ&>o:5da.w3ڧL@EO& .4wD,x\ۢzB0*Uv\D|_:'7P3$+\]6F&S pu{Lh͈9  FCЖ%5,H2ݓbJ 0cK9@%- =b 7476tt^V[չ+@#(!ߩ)o/ kcNM'3|rp! _C;0]Ibb9q0ES88j ?@UUȹbyS8E!Vkٚ$R,ƤcF]m+!DF uԃ︪`"z=qײi# K Dc0G\P=IC:9DˣFƠT_xLȾB붚#L m2 "tXB%|\fl|'zn#Tn}KbDKNsbD}NH ,K/"$X#o_SEgQb1b<'!2J܇nPɤTǟYE*E+n`HI0GeJ\`qg@lQoݮ*Z,nFOLQ/ُ'Ϧsf;qq{OZ71W9фas^{h\k F?v&:,[ NDNb3WoRGGK*9,mC"YrHVq@ AGxp 8Ij>C}WSK{R΄?(bw{$bojOv.E9uJ|};6aJ+K|_ uY۩&m˩-SzZg^z@8@8Hp'@I%Eu0*v3E<㮟edITc'xl1X%,Bo}G("EZtCLd\S)4(g3T0E:,dS0RoMvVת {,@y!nE'?NjB٬|f_:D]Ix,/* T?5jA!Oo`?[9KPq"s\PxL<YU\%mEkO`ܯw M f +F_O6WREC=ho14<6'HRǍMs=s~Ly m x{>ϐi}4Q~E^#RrU4A=#?+xS2F]\+ivPb/ Z H f*ܑ$g5G 7iF731!xG} XQ`pf?gB~Ii>K>}{dZJ0w1R=5}[$=VZB=_Y"Hclv-cceUs zP`jdqP}SscRlYGm}ROjeWs%`{cƏP{vu2VIm9 KPם`kbFh5.|GOO:vS`nV;H }*% KOe#N; J{bHynl1Zp u}+;O`L5D"9J.yol6iV\Nfw`xS+tɥϯdc~Qsy,J<\ tEui'Zi7T3z ^iU/X~ S8gtFY4GK0K"Dq6fuU#~C.'!]TpK@NTRnZ>ˆvI*ttoCK)9&:(*=^3_~ZR_Tv틯03fxib(ǮMsA~QW&Ku-DFr pݺg~ Z'e<\Mȴ@|'U.&3bPU╮Wߤ3cdž\ODK[|U)w}wBsY V Fk]Vo! .Ekf/ s K|,+CQ$4d' ҲBw@ƗPtG;_Qt |x=CeITt !dz#i=G0ATN -i~3Rs`dDZnC4Rέ[ĖJjT0c]JLYH]m7|$FWyC2U]Ue~vCɀt7`i,KAW1g~L}gf)Hj$h[]7q7evfA$AbOn[PgYeAV>tLN:A%olZ[^>@p'9fT1ڹO~Hz6*i~Zؐ@Z6YkY1³:Zퟯ P?_Ɠy\+ˁL>ZFߖVrZ+O o~!9u%\ e2Pl=&Y~d6;k /!8= 4wV`nYi3\=Å,c~f\a RtD2X#ɗ_+_4=eL0m]mFq_T_++h$Q[hiRrzҩ^/ECH҂Tb%/b>;(gjqNm)oWJ^28l}Fp#˭6jTCCOp KZ@6977/HyR2nΞq5a _qBMn5QW^!' !ő,ҀwշςJ'|޼|Gsfq^Gu F%Z{6- ʿ(tB9K{J4yTx }L)ϭiB٨Wuz;fPNt_ #!חN!P@HTe,Znf Gi``"kN@$vCZ$ڌ|>\$r1DASd-0Po T@ fN|"L99+H=({S:L@}[APW-vC{?&~Ts6 w{&2 j'69"l*B"I XޥÁ)H ^~/&.9Ct:8bÎ;L]#饁S,Ieh_V>((3'8g4+̰'' 쇛W(ƏB ڬk1BAԻV2FRs8lzhbHpDJ .{ | axH6y T(Cݗ<* NI獴m\\SE!?To\zu)tI3W~r}+XJyI\#,ꔂ3w`%/0%ZbLyA/$YcD4^Tk«(Oѧ`4# ƯՊ .]v_k[~_pARͦIL)-t|uHzQVxhRtW_A[(4(X l$D0k,nIOp4Blu"rmbÞQM=Crg&N ObB&>PV^2YCL_ZO6`DY'%5-OCb4 [ӄAi.D[!EEN|iDOzIɷtlJwOQU`6Q>E?)o ? =G`j;߰vGʨHl]#kyo1%k}̝B(k=`DiYdtmo9D/9+E! 1Du C% G9N`F1Ϩ$˸w|^ )R_أ#T@ \̟# XSjo^AfH+{4a>E+9K_Zz7C@2$҉ ,cm-KDJp^+xs [9ȎAAm0X">;="X6ż<4AȤW`(uBzCSA~d<,2n6a'WidN= X0,jG9 j]*0>˞~_hoWɔ H`3j&&WV5cD sM>Q,ѭp}IJحL']!4ἩI-{M6m޳cO93O0vG  NS`M~z1mzaԐqCfG$(V19cR]`~%;h_^q0bl{5J:z khg ; Uj+ Z~xOy%+ &: sGtM]59n/6OcSSFl|7 ܺTG1\]Hjfh5(dzQa 'fnteHsFN2O-W-:բ׭ Pv2sջa`OqyبVܵ(zdCb)5JLzy-o1[7ZZ9`&,wlK5Ou+H=|ʆ_< |;ʐƳ8<8~|=s[_LFR{ak|2=qa.c~8 Nwf.K]XG6m3!ؼ.WIފu_~FΞؐRr egXE5T*~ӏ>ɴ)$)߁k*[ r7, P[#l:HOѢ~ Weu=kR%/Fi Ho^8|uȉk 9PZ%풅A jc7HvI8K^ZM b^*-9Q4C't9w@.rw#ma^7[W a=+0gS_;^ 7ժJ ӊRPKq?H>I7"%1ޅAحWVݮRr 4a(Nl~њ!UN\Iq6ZZ]8OݣsohQߺ2R۴x|T¾vO(^&+=e۬%r"j%}ach/yΈe`E|V?>Sm9ld8hT '|?ph EIcwɣ ɐ>xkUß,3: hN! o6~ .TAENj&#i%^ rYuD_:/eÔ^@Kt 6IDn,$hcӼS4 Pgޙ1g#\ rEAY *N'Z9 ^4ug_N٘Aߝ% HcI??>,;oVyI~gm]P6 `ܶ \J{=28Ep{%& f(V&:QF2"(9Iϭ@nf+ ٕ݂Q+)0z3GL%&cu5J6A[}7q3ͪ$p 6L4ʮnLcVM.F\u e!!f\dJq)4WB.7HФwejWHԡ~)pĝ߶:t \H׿ҠؙM0pz\KrI ͮb$B@`Ac/Hd*tVTw{O1\'ƄD.'L8ڰb=%U9>{f' igΰkYPi_\:ȇK&+I?eb>,j棬JzB0D}{,DDiL1x-R NP$)h&Patjy!_XFᗽxvOH` ە"D=1 A*W륒L3<pl(d N+%G>i/0eLWYٴ2Nt?0F~_"H_y0O)^F0hPzU,"fE΄ BZVNfʏ&`|U*u*Oݣfu-x^X){J%TEeސ !D 2ʝHj${=䶂ന^QN:2iG}ǧ(w`W"ґɗ* t#z\!OxY05h/¾.ڟ([}m-MEXw~Vˀ q> mt@_X< .6B l\]n؇@ _Sd09 u34;|62w͵Iz='ŬzϷů"3 ݀ź/ZoR`*ǬBng#XڝS"C'S.m:B2hKo/1"zcN1~D ԨHMY%t}['ttE luɤ;۹Gh8$,r^G Q[w E6![5UMþ/IO>5I[OdqM[S&NU>1.+O3N]pxb/cZ׮?bv~ M$f l^ |G׌ߝ8%{)pGUFS\9ͨm.u-FIJ8 U?#hɳ%0B^}׀yLc"3"D!*A^$:nj -64vHv$./e8An: bEb|uvTeSc,,MK@SFh 406cpD>]?ZUpJCɁf0f:R\m[ WMcA8xlf۳G=M~acTm/&\w8jC`B))}oCINL+F.tu:fz[ye: JwCva3k91|ҕ=TaA\B:c qΗ|}4.y%|QI= '\T]2an9>vӃp*f"-HNZA,C_Q$%{ ?enĸؖk񠰴ȍ1̡Pv7cV6U~}䲶!C>. v`3=d@֦!&pa:%ʘ*E1S4/]4vS$?G{ 3p/5r̯_z_j!- %4?*z>0/W/IͻOi`(YQDԛbc$m[CIށz]Ukb>aVa )(/-wL\T0f p{͟c7 ˌd׻n]#A7HUг9d]tC:w,f C)wKCD"Mt_ɇ:yHlXL@o&m`rcXH AvZR7#gSNFoh5Z,Z٭ $tAr5=ڠ-B#Q2a.鏈 endstream endobj 366 0 obj << /Length1 1856 /Length2 11895 /Length3 0 /Length 13054 /Filter /FlateDecode >> stream xڍP\[-Cpi,@cCw ,܂$kU[]սǴ5ZsMM$f 6JݘؘYJl<VVfVVv$jjM=o36vW &ivȻ8ll<vVV $<@%f<D-vvY۸-?Z :1 dftx[ݼ? '+3Z r].@Kf1#Q4m@5Vnf.@dtt}pwh)T+{oll)w@&YXA+="0s#oa73 @ZL `&oy. '7WfWY(R`+$A.@mfd+",ݝXA@9ɿCLHجn.VVV>.aO'7N`'՛? j}oÝ GVwy Xz ?OFoe v'eQWVUcK|`//wU3,XIs"KC{6]Kִ@?=nj5Uo= Iq9xYwWM5J@Kʹ́* Z,ljZ = vqXYm,n׷|^RlDŽsq\\̼X 6@?{v{KX]8Qn.?;E `QXxY, ?-R? x, >Y,,7rVokZ rXltH |d{/F69,ooq:]@+l[6m_M 7noB߄zxx ,]޸9o?;Z ,-lúň5}T$зX}ŏ2}+b1ڙً0:F&ONkvJ^n;0g>G[!@'\Oƫ_A Câly.<uw#&K&-~~U?Ʒ bh/-zzh?TEeV 1`Tyz7r2McMB▤5v?V(BP~_֗I#׬ɼs w|[E7A!B='c[;z]-9 'Ա|Iޥ =m#OH__3QZFJ_Z_~tƅ^2j6- n2iZq?aZ>˩A U-f #ӈKjf(6ZU?Hp @H<ӄNX3`"=U'"1d>k>;Vu=vn>[HN/NPvkV`cCPwOQ7j}b)~8>$Q=yvm4"XN6F157Ff~,]cI+* Vh;|FѤ<xBO"'R7O2,jm;r٭ydlL+EMli&_otN=bt $4mH~}n}L< ǾY>l־P f&IEO =rcNzOc)Q@5yc~*p4M_m"q,H[–Hss'S=<߸ ˗7ӌzDdC DR h8~0 Oخ8AO覴l8sNm7 'd$ɔL@E#RM6pxǮ_K4?NJPI mZ.IXBMHZEZƨl5c|uO} ed?6yQF =׮ r=́н37+)Qxz_um-8?bm2xGݮgiG*|QSK֕W_kxu>M3#ٱj}xD'2Ҳi!fo;l$&p}pN¸dfv5rjbyw8/ LEeX5@kJXI27n,!`7Lc8Qtma`yYnOK2f3z1~~hNˡ7ޅ绝Xi1Mw<=a,8(:cڱ P{Iϫ<2M ^=1^jl0!]ڷ %ߡ^)i *V~$sqUY@$[FMK'?633 n LGvIok YSyuuHoxOhseY'7|;1pMXa=Z,,.yBB.s>wxC?#^,'{ S]5^lJI,7?p`aV& .wНR_/n~Hє Eا՜g%c4h|<7˼:?^J'S[BUN-0s*$EWEObPb-dLq8ٝbM Hȅ`=*B^*?$llN7;撶ƤUoLV`j1N؂J~ {B M+eY@0:d%H4odOJ[uIzXzZu_%r ڕ"u(+6YAJ\&z!Υi=d`]ӦSFId)a1^}4+8cWݺma5NO/$l\+%Fk>(lVp*.`.a-ϴ՞k=3z+~Yў<겡` jl&||Tg7ɝ/"1h_{rjh`8ꅦԮ#?e|6aW{H7L5Ru& vD:2|o )ؐKvu&J] WA {8d̘rjXL-}tݩB֪y5imt'-x(Q"֟gRb)(1Sk>YSϮ=RpBCH~* ۟&KsL(`lv*Բ0 ƄzlW*Ux0?1Ce4kWP| ,r=mQ2Y}g5~c1!'#0_|o"|o"BE nqeo_݀+9KNWl>nU[[nDg]=}x #>nqw=]xW*wӇP!]7diLY(˦!zfyNjPa1 }獕Lbwbi-PD^,s+ tꣅnT+Ț^,]ۑcl'\"ˮVYT- f ޙrPԲ^`LR{,3.uRǧ48sqiwx[_H9{ GX#4i,/|)`_LЏp\q}qSR=8L'}JK/UNun]VZyḑVhfL$wš9|=]J} |ahG882*ZM_% Uw@mE<-~\#oC,Nlg{?)6 Homa_?i3~xe26si-5E ]X͝L(q>Շk26@$t `:-fX[c)t޿ ͱK:"Qׁ{MRq\gIUwCcC78?2d}c!Uѷk0{GNCbWcK:t"AGCSJ)Ztߣ $ Goۮ˾ M~4mvVp葮Zk:'%7};-z Va;yD_F77:wX=m2ȭBޏ!֠DmC + Nk6^=KG1 hL2䴧 }b3hm{0uة"2s~7R.jP&uS&DR2;e~؈{f!AG..p{xwr$ Ss1܋R vՂډ9T'c/VW3M=3EJDq[}XU#|dCg<^BFVڟj:rY̞$SL_"}ktn\Z׸ zl|_ <7m,oD7! Ț 3+"’[}bź4t2(bHyGQ>\ jkbveGd>qG]:V2dyەX҇9;ws QsDY2 `> a<{}:^@eXȫ[;,M{I*Nk''%^ia3hE6~Y~/ y8_m=Y/(IPݬ VP?=1zzh@ 6Jۙ2m!S%d ;A0YgA^肵j:Ӌ7CK/h ylg+4p~\^(~+7KmiBoөj.Rjʍ Lkw'W?yϿ0@R$)Ciǣ?% og6(B0'JeAG + lj+dc kVC+vIub<0u(CCe'smm=P6HW[@m:Fp=iq\ȱev~?,CKH:DŽ XvwCNo3-i{126/=V.I7IiUW:bz@BYiTd}2ѝL =@&,8Hs+WOt !Bf"F(T-\hq&h Lߎn7rL:K&b) =<ڑYl52b]M8G6GA 2pGK -n7"8,eHWucAƵxi@ D*k kvAv3`1YK Nq&DifHY7+jXJ(oNo;M܇۰7gXdIĈx_͇0*WJGۭT]B_]+dlDѡw`dOM:lO)gqs2'urPDcΉBR-Xa_''kX?=!UT[^TQqL\|(Zg=56EpKo{wQ8>*nH:9%*  - 8}’|o2K0/an6}v:0#lS1|AB-ixCTnԯ&S<̭X)_ ۜ3 J~r숑3qΫ-T'nYn,Gt5첪QYzh}ﶆ\?WQcT39i̎oM\VQelH_niBJ:ik1Vi[/m|.mKuMq6iJ LJY-*K#>>Jl_!؂'W%oeӧgFyə,^?֌ڇɛlIAB6IG8FPN%Ruf"Zu#؄6S`1z%&wI0SIHO1uDH1 08X`R>$"0Vzsq2Evld&~fõ2_,v)|ǁ::tY, 熗,(,^ ,Cej q9?|\~Hfu@[)n:ݎqM,v2q x6XURJTneL&YBmm@]Z A]zKѽNDWq68%AtT+xB^'y S4u#=  @p܍JxRtu1qoi-Ý _$IPfIgrށG29EPy3;wfo S8c\L>U?ztpćcܮWӏ"P,X}zj~ W#טJR1 Kf}X+_1*ya}bB{QiWehrǶ1[ҜB+* Y<[:e. =} |A-. yLQYxOqr۝O%yqgu( 6Zy]0|^ub1<f]'GؠR㱎tHUTEz(! 3ܸ1D"_ME3Oc*kTF yg ݔtXNT_O %>1l狧/eUr=E-)q!5/>&0r3wSuXs/F=Hns}U)F#u:$H{$qۊ)uTƍ)xM)_.?9)YvB^H~6~.VdZs$V9*"̅k0͝xτOu_gPvq D; abSbi;fX[3lg_R߅&.׹Qy f.? Gۇi-j#Z;A2 D4+a8qT8ZoI򒞿^^/wg(|7ދ 2H;,H{(4iK2}=&-ILMp{j|88 ,`=p 9]Z-% ((N|Jl;^'5%#t  */N׳;ׇq=dImCHz)tm)*,.~{A.E\R-ٟz9K4Roᑖ9)FY{ rsKs™^D346U:xfFO9&O1T#d1Sw֦HR[cr@oykUZ*2dk L0.}֢}p[͘US^.ܴ+txehaoR!#'X)N?UnoE/O0JPpL;A:LƹP'JrTV>`rUįm CıQn!/[CECmķ󆀎-{4M(ŝ˪/k60\w?qFȁd6`+;ܒ9'yIZ :\)w5t'5ÔT:Ώ]^|ߑ&|> ߻X z5P 4 󫘇P\S2FxZHe8xRw2WFyP 4R>z,u5^ 1E44D/SQMupIg=(bͦ;838J[KR!ޟ57إk=|`\z03)텾F:WthaX*NoE,+FKC>y^jo hh" E$#u)>N){DmՠEA]䤯qN᷾JZϿһ_v]2&5soC+}}meSwBEE<[g]ңWOȇ2FҲ;f I2mEoȥȤΰkS:93βu9eK>ճg u{H?-/Ovt!4Odw ^|GH8yV.:lNo|a-Rs0k 2k!LKSTZ|JFIF١~ˀ.!Ζ^"mJ;@ /?B˕irHp:2b|q@3WtBȦk_Ankn-v.%8 }fjiD_C!QfuAFl۞ }g/Md񹅠cp鲦ߍ6X9Fؽ$ccɆ6?7WNϧ%=jvg!9QXA;GD8pF+4CYY6ٙtc(K:|/i,ۧɯ55s#UjSc8O_3!hYs2(>zm<7_!w $ӗi.Dd#..Cd@bF=:̍׃8AgTO+)o?wn9wISwOZ"$]{/skaFn,6z&l)ZӲ3oHL9rb499~b #Rw8 @)s-X=V^-L{'uOZa轚|`[X<8)^x>Mj(؟L'dTw%V8gcJ*z]۟6.Tcb$Od44RjIVn(ba4Cy:#򩭶sت3gbC) VR0d_ͧUp.t xQXp2؊XVP^"&'^ hG4 \f0sUhTL*@ܝ~|-6o`*r__}amyM1bbCRիGW9k^ֲj6C?nNxɠQv2kO> stream xڍvTl7%1:I(0b1rH Ҋ( RRҥ;w}x+9($F"K`10Xkx^s8B/ 0U(B}=1 DR"%E`(2@U 'F!>^W #HKK 6*y ԃb\ីaP cOE>"(<q}h?W@}'wb"^+lrCp @H/ h ?ʺ/_P E".@gh+ H_PEx@q ՕP\~eC#0>">_~Y 餂#1>_"pꁠmuG?ggW N^ 3$1@ 0,% ½+s@/o!?:R bо@NwA xp?w\ш0x -[N(G?꿛 ҳ0"eeT+,*!QQo/P_QB:U?}o_(c@np_o6;u_R_C Dx% 7VW=Z(n.ᣎ;"00?T0nAZ(@a_2TqK"8nhr5]@( ZI:~3A08 .3 OIUF$D g/o@\m` /pg?(/Op?qzW4@?& 8dahdU?{3S({n/>Qb^]Π[}OHF,hWg9/MHbӌZ΂S[ӣތKb~DJUɸ0m,rr7rqrj|gΨ 4T{ `(D㺎IS9 iUE2 F6Y }uw'p3j! ;p!a@,+ pT:a7Ynd:J !:⻰`.ԽԋI/;\>m5FԈ{ꅩ'~oRﭗ_NB6:O9tuUH>Y);h40M&n.}DrWՉ!zZ,Ɉ(S9Wb+$6 E*&}C6_BW;Yq(v,S/m<[dn;'>yQGg%jvHfL6Imu<6<ѹtsdZՂ9:K˽;˸Q*~zp$h9w ?$Jj-{.~˺y2w*WmLp{:LJ5pJ⬌H4;bq l_?x0/֓z8=ͭ} н;2*a2_ rFYnXgy2g*aMFwF=j*{5- GľxyfZJ̜6?11O)Ŵ>Wl -(~<[::{?80JCo(tB.pp_uo.W/# X{؂cEw]ucyjKأAx @8n܂}+}6Sشw7+mG[ KYHϾkZ;=ա6̵ysF3& |.gi ?vACKO=rk$zk[ۏ(SDڞR)P=辄rMHĸhAQY]V<`O@<'Oa1pbIsiMV5i@]͈QWw"9D:O_wr:]B~xw# #?~u$d"lnHu .m-Vd[,)RdŎwHdڠLB={IgA7ۓ% 6ğȳaPeW0nj ħ߄U6.ͳ-db0!g~0Dqclt:EET0ؕDGuA1kƖ썥'E%>A_,^r;Pb`xaHoI(0H4~0EVEWr0-4t{~ @;g;q $fJ5 \S=o9ƽpvg{U +W >fxkOb4(Ҹ'r R~+\P!ujޝf}N+)Qg1OR &jZ$j G(ySXP|{:gw,-g\_vwͭ[޻;*k}QUVSދt8;~RAVb2mR.Zl;~ZNNa/ /D% [DIJ|w_Rȭv*9ɸmX(3"C xfXVq3-+ J'yA+Vk(ʇ> ^G~,]j0p{F3GRQP|8אCx7bw.AifAF`H>3Qnu0ՕCU8O*H9(Z|'jD0Eg[{p"-ӠN^G0MP}9nYjO W(}alF4EgI )O yuO[G9 G94ʾܼhcy[Qtue2XPyq7h Bs(q{ kxHT>87oŘTlۈ.қZҟ}@x=rJDҤ7TA$ҥ?7x{ >ci^ 6mM߇2M (|ڈT^FF [a]f,WvN&v/ gB:Fk>:9s,w'd=hs,Mu'܎f2reo#&~4]ɁU)QX<>vI'[s60zްv'MR[JICRYDw p`}H&ՌR+~fi]@Z^Y/z*D6WH2 ciѬ*ClfHbfshvcp׬a*K e ЀMoL^wc1G_H(%1 .CծRA T뮒XބIKn^;&ƒ]]i-;1TZܨ- |~'3Upܮ.>2"OS-mo-`V2c7z ͋gͭjh71#5 Uk+>؃ Akg/45UyC- IzգsGI w(ZОOṱY鉟b,Rɛ.j3_o9zis|7 v=,x PE9 ;hpdG5YDwMMJ7=#Dx5(gxgJ ǕM1jVY1 vxi^zzi3EXE]@|(>w Y6+߉д R1rq:Җ' x7G ""Z sMz)fsʊ:]zmq^_BU([ITMN;n`N06caxDtNjq=;,kPnV+9z=6WPv3Fx5{cpyHLR8ޣjB1`&6bշoMCZ"&z6䨇,k[_<{Z%rgm[(7ȊOvjrQt>{p#y c(۹QFX̧Dv;"kkza2qA}eB+'!Ķ3U5;xt&/^KKՕ:iۀϬQ]upwN7薅$_+\9)y3~vnKu::C l8OJIva^ǝ{_h5Voo6vsnj_/}2NliTN4NYGnC' @ph6bBvf6mβܕSsΑ#<'l=}3| yuV@#uS%e(LcabJBsQ0`$6YqNS2ObFY.#eEP3tzFxل?B7O3Tл)Q1Tܥ$Wպcs)D*}/OҍSxcQQdkCVW"Dn>?7y}IU4>ZܛQNRC5Fߋ H9C0 weɼiae&p,eWP-SjҰ)SLg$5u\Pᅣ:vjݽSa@בY\C?LvOkRn~<;Fb(yf5!fZم޷8yUxQF+6Zf;~4/%P>6rEBpZ*\WIe'oO7((ߤ EkO ̘:{?k~Ja`8)\ܺƈ9UރdN4*k)*?LIɐE/ 5-A<d31A z/[' :MP98-6jE3ni'wY6\1x;S՚Dvrji( Nf2ZF<ɒ߹)T<9 b_'sآ ^4%jTR[c ~lRtYofG1Z C3.%,'w l~:uSn endstream endobj 368 0 obj << /Length1 1554 /Length2 8569 /Length3 0 /Length 9593 /Filter /FlateDecode >> stream xڍT6Lt# Cw ) 10C7]")-(--) ȇ}Z߷fw~5uإa yԍ% Qpqppqqc  W0 * I&kd! / psq " [80(^s{_G3($$ r[Y@jnv ǧ, _!Dܜ99===9,]9`.lO@ rY~ Pp)kvKqp(4@пU2`p{q9:Y@P[ hȫry,ֿ - '  0Oy)-S}WjvrspC~W;S20GGw~`S׽9 uCm~`ĩ;dxaGf rqqq  gʎwp]o'SN0'S  psqSX [0?џ ]^'\>>qxp9UuդXo4 `Oi; *Am`}ҿ{L/3cÞ 0/>gqc(o>-oGkx⫻`O_S_;Vi7*Ykݬ_r CA0WVY9<=O|=-_)Y.n>~7ӈ ? pr@anO.60pZAOwB@' pBPPC^~` )QOꎕO@^ +9H}]HM'θ4A3KOl暬7k.WR)Cq.%|5D oIj7OԞiT}%:߃~b3|2} fgW}_h܎n ʳ)XA3ٳ4(nh,^83WTʉG<žq>+ܮ]dtdƤ I}ˊ\FSg6!L>;7.gf LdJ1k-II(٧k^Jg͖lIG @yd}Z+ngԏMUn^ٺȏd$}S~{H圶< ! zwx^d&8*ʬV%ฆ[&2." _hj3NQ3fv2_-2SdhߖKh;)9~} +U,ƷTaT.>6ˇooAHwt K.Lo@~1e]/T{QgF[2} V N9޲$^NVH@϶+S{"ћmt63HG-"mjk `C"KzA,÷xszfdC6QM9#?"i{[/_[ 9|snB.'\m6r1|H[ H aݎv$`w)M/ȤZ+24gڶDdލ|NdRf 9[FSJ.ݟ=F X7Lx.xP9(n,dp#=;3QLTkls=]]nwMq?Sy,\˒Qf42RN.t |o^8A""@"'kcC725Dh,07+ms}w(Ɋ9*5w./=/ے^ӟec=kA+܆K'L iOg_joیBDqmqxO~S,;Dp9&E %;^ܧ R묫o2Pj4feWm,R-.%VA9>4|rrq P Pt N |IbX~qGҢ8w&$|b;K^;&^GRa/XbLf8ԎO1%)"ef?Ҙ d {裤3!蚝\8H1ı!b<&mG[ﮇbaCcr(%śCcN WDd WfmźNf T1KX^tiYm ^Id5bd@~qSj>5.G1PՑe*ntn-殏|f?%A7?/K1kۘHom>39ҠK?ctq6r&s7PX#-rK.%Ed v6;k#軖їׯu 9G-oa4zqԕGv|Z̻Q) t'Tx3#lK:D #y/,,KC,qrH[T_gc FDɁuk(FW/}mI(D(П 6|gLXʪ {"ӾQx.+TkĨ8udlQ;IGda)(1&oNzB!(c3R856d;/ WƐe;L[MJݮAaIct8\\Y`tc6tۂr^&8ֹ.A;qS,Q !s\Uس[gdЍN߃6-Fd(bfd%w1rX牰}ُ;mLh#/tP]E;7Kcbc07g2 9ʼpڠ)kI7#S{pR![=&y_QhmxuXq#ZQ_0H`ұaK_HZ+F=gP+@kiX<!A$Jt|3-(aVI9Lq on[DSo٥BL*{hibuo)YORA1.A>-3 ֲ"FL~(-s aq/,&BK}&Le-2?2ס!6bi>rŇYcυ7_<SOOچZ Msn_LO0<3Ϭ$++lx cr"D5__EXckH^, Y0$ˬ ^*q8 @ri!P9Ox sj5<,+mÎŽL$EҪ&g')4YѭhfW'h be-f_Etu(1&I6 sG~J9uPn=()q|s ̯G&}r "rBSGS` 0;Ā`oѮPQcWuoirڬ+XBz*B@ 8>]@W$^798F#L 'U\!*a!wR=~\&Jo/:6Mdb}awmqeeJ%0*G9|Xe;4KQ ֯$p|O`Ŋm֎-W֦Ջ5U>޼ﻃNm8XڸsצP/sw=.;ʵA uojqvPR^-\2ZQ \3rH{0ʽ%l_J a~0ʫf [%D&j(55Xxͧǐ# 8AvaՠK:i9az"-cz}q-DaS"\ĥ8S52 -o[Si}.N ۴3Bagxh)5ATgl)Ne 0?bO$6o>~ůTwDZYEm42^.&tq8G_"dK kw߶ a)4VWch$>C}vx iZҿ%ԇ-#38 G^ʗ=X =  ZpDT>B Ƚxn*vC䴣VzGuP -a; E(0bK{퐛'w_ƈy'3ݴ*tQw]:uqTbS,7/e򾆑vk>`VȅlF_ԯV̈9mT (/ g]4*f5T?W=U0"swwY-kxN,v&VKo{OwaE#_z^K |vw^eZ^2 %% ~ddB(o[/ZsX9HNp _Nk1c-o5 !3}k&=Ҿ:MW + bw8™*.M}J _:.ڒdp!/WCB\`_I6pd%ĩ%t&.N$O6ΔGI)韟# BZG&1 F[lԷ4-͸[ʗH4+w]=Zvٜ\ovIDW$j Q;Ն#t{}HrevNtUq$ϻ ΫeS= * bUNfsoA8VNfe|uZ˜Hj (Y8^ "S1+DEg#WQ|vJ9v ~EU*xgNJ,i"BQ+4(h.&D$w` x $i2s8aϲK[b؛g,a-szyzטZc3xjnj=jhN{ÐӮ L|L s,5t Ii`^$dl P^ý~mZʺϡ+}9RV03F Q{m4t֬n̟~ShdZ(YS2 G~n'hKӨb<7iTt-{` 1A\Öb< &d:p`02z/ 'r-+F3nG!$H}zS:yUo#)uҠXE_Yi3 Tٯ6fMD 'Muօ=G*\ufCΜ͍VmEi٪˴VԳ^ih% ~'!B2FJ7nϥcϰғ?ySUK*#h^jԊlx =?>D 9m0DJB^~Mж=Q| i Ez'G-$DX_XՊʵ@|z6;-I7Eo9m:w|]X4whʒmXj2鬦ѫAPT:}IԀ@p1 4,@u C1Oֺy!pFɐrKdğ2QSRc, DMk OHW)szԈV#Nv i{Bs\{9OWW :Fs G[Upl}O CJŨ}8I՘Hn񨬛"j[5ipJ"yVI(){VA$k;ɁW@j7bS;Ys5=߭bˇ 7#54C0x>͝o=S!Kx ޫ @09!Pӄ`#R]cze͎'3=Dc>eW~_V gŵ>ό޴I&]=(h#?YKiC,pwN͘۹\ڿh|[#8<҇E2y5^N |DX;+J"f~%wx^ףn[SoOOhOYȧ:Nkiu(m]?y,4~,&׈~StPVX`߉[ïr0۞x3|0\[<7]r)׷uA2Ó:= NuI+"c7W;)ș9@ϞUNfD{ܛ[9|U$¥YNuZ/O!cH^*p? 7B+1"W#9Z[(H."a6vo/ KƠ EASOr򦮐hfwN<ķ^L5; bhN1m8߾4괬oEORqp+La׳炻 5pAly|( ڡxI9UnGq?=,ST0R8jO)H?P3zZby!='iWd :l!aq6ۖ8EWeRy#h/P)J+ wiᲓw*+&aL:>Y{s4#YM^M4uĐ(|sZ㵇%0W@NMʤWRn'/ݝk\Cjy" +"ŵ|[|M4cw̡^\JV&(3x8r(}\3DSn$4;h>h'oJdu1@}u3u,A?a}{H,/Idʣc ɜ#H^RO{_lD)qÂGVs;af\ps >Hap}i;9!캪 endstream endobj 369 0 obj << /Length1 2390 /Length2 18871 /Length3 0 /Length 20271 /Filter /FlateDecode >> stream xڌPji=4-kpw -^Μə{*em 'VR66JX[9330DU嘙LL LL,j  @;{?,D21wCyk+`ab@ d gX[Em\@fq@eD `;@h228-#XT@@3spadtvvf0g38*@{WKKc'VZ88 hxP(6ۀKo￈@Vr6021rYL@@/C {w'R7H+ +w}Fv {{_52Efq+cQkKK=_F}wepͭL@V&ahènuJ]Gf t311qrs_\mR2%~`^d|no89=_ 09 +?b}v c0O:flme_#fTRwUX9X,LffVQ2;J[XNOI;@/T+;//[ߌ$-,Go` p::_-X_SMߧ+49Z_5[o4=7bhr02{iun +=@t7fdؿoT߰VF ;}~@2^'r8"'Q0AF"N& `XR{?=AῈOb0AlF?"wN"w2K1/bY[?h_^?,+_}aA_ ;_ w?໿ٟ߻ajcg3cgGjпf'wgQfGNfEde4q#emimN;Y(ߚ35  awsw 2:>ĝ2.q;P9ڽ_Sq h8gm&J3 Re58Ӟ(knpn:K[g,&s5pźVh-: t#{9G]َm}V+cS*Bt;|?+`)!"aqX!ڄ*Dgڥ/N$RY7JA)ld9d'8OT~׭T#RP&P)uZ>+btnțaH5YB)ުk5G|;ri`p+_L0LiljLX8LjXȼWQՀutŭ+@O"T  ԀGRА Af!mB-H5l8;?PӁHe Z\LC₄8i7hmk/ 1jYMhIYѫW2pƌ PɎ?HwŻv.=9ΰT%f ֣pRCo6f$v_N|c_6UszLOo;3P&f }D4U?=VvDN˷~F/MPoVƱ.&L 2ਦɇΆBʉBSWSA)vj Ƴ )JyG!EO2qtbg" Z7GW_ICR;f"KZ]1ٹ%l{Y4S=D>& <~i"F)gi%+M986g6<4g,?ZymF+iaERPvIX\)'"nPB(Cn[ЭI˟ƫU` A?|xFͳJ560;X3us3 `*h)Me 9/̺.L@䌟vCv{(+B+ϳAfVNL7W˻(5sf}\P`I!zqV0W/LF͖oe!WOcKmmGS̤aQ*eflo%MNicr[k?^U|z.sQq|F꬧)[F3)1 4Ь!SZ9͎W2YR ]S͞Cֹ6& B ¹d 5EsZ\ľJyG^84({uTeLCKPZ95_)'kܸ'R&>Mj圔"O @k"8Y s]MݪK`-p^Oq}"<2œs漘nvQA>O?yyWEC|xq ҫ 4ȠZ4X~osP33Ra5CK[>w>)Q ~zҰ_mJ1Zd$MgoH"Ὅgp]0ͬ֫Q~'ݣ$De=SH֟e"|I4|<;%J׀tO߷10Phj#kXؒaB$c|ZkVVDM 5*|8~ /}n6,maY'~ԽO+mdrz^yD\ dRv(n&# Ѧ5>\ zD.l\ WόA&ق 'K%$<!5 (M)͹Dm1=-0Iךbj{y9Q{ZH FB71y.^zxnb.V]fA$aGW^v860R<F҇}b*:1膽j|u]wYkKcsF g }0 &>!ɵUxNvy!B1n9ܦZ4ǫ?'+ͦgțI;8ŰNo38h,ϋ$_xOnV) nmͼ(\>Ne[P걺DYNc9efcIHvg÷X,9˘K~c?TNTvڮ=6.`|p-\=t[ի#|u[:ܺP$[2ϱ~Y-X6 訽4OeX=O8 [ qD@u vtoՂ=6\5H SڛTg 폒>%G^\sqIXG+,hĺG|Ϳ=gww #F. 7Jνm"!u&!DI:T0ܰM5IOl3d)pK^g'̙ϴ%f&Zic}>2~(&oQXP {nW (5o)`@SN܊Joظ:xܵړQ;~pTࣖQ$Io =VB{ Ed=cCvJdž=?bK0t>]:=٨jLndc(4J_E#pe:1 vIq:i\n \"\{%?0~$JOb N?/&uTt.Cӌ0̖UD cVp4Rj4& S4*#?M;>f↿7( 1[Ǝڝ$/a!q_@I$E6bbx319rݏWFteGNhKmԺ).:y8?6(I#jn;l-1l[Ah"c<43ݵAlwJwbc1g:;9=m !5.nEGܠo {XWKWǼNN]|)V~/iCu,S>Up65cs`RkIY+.aFÒI1Rl}vIgO.gDb yԬ_fXcKd.2 f<r7}8:3ygRHZy4Y%ۣ+I88 C>Qr*W.zD:b2r"{h* H#dU[=[rhyb("^vc<)=L@=ɛ]bAjhtg] dWaVmP|s q|'ڊ9CZ<5@#kBq)o! MZN U<.L~@empD/iEz~jQֽY:P0]f4yӞHBs&gJ_b+Dt#w^84+n+X5h/naRyÖ}OE'C[)'tHjɴoeLis?X[;[M4=ڎ3oǑ`M|% CFj˗n Vu޷ *NWķ\D }6rjMVbM͌  4K芓; :n;)18W)nW<8jWZAaٺV*BQ;hh9&W`ШvxTx(eOXQcQ Ty:p.)cK Dgg`u.NٓQ~%nxⓡ33sk~ARTjz]+јQi")=%c*ȥLW= jtMnfylQPw_و$k4ieZ9 74G}2j t LJrvD$I_z03:.E~]&Dg'ݪQh72=*֎z'm? ,b8% 'Vfȍvjhqҳ?dc}K0)7(}HwA+aNaGIY.J9Fi d>yfۈ pNe }q#9/ΥbT} xbYw٧ڔNE)~3ɡINm  #7Ąr]ڌM_n~1~Fx\FkX_9lS }O;KqYma.BhAE}ն>w73Q:? gv׼Oɾ2K5'fǛpԬ-f1& Yzcl:j1 ýmxâ ~]0]ψCEr4^ZG; BĪLJBz88`D1VADb;PB:ۡz؊sqGo)Lc=F<RHӃ)3+ߋzVE? .ސN,*QdX?)'EBfZG=KDNژP!GEgod N1. Sf8V>6M 0J3WR>1،X5%s`Qi#4NKg˽Qc`&Ž=edCOp:Հ8M,F:ӊU%av`Rz!nY'KD/]A } `AX`irr:w(Y5uͽJLbDe څ%xq/^j(y ^ax]zYt|"g XYP֣R91-l6R 3Q\I,0:cIY 㪃9rdhZQue w=|+[]&b!{j>UZ~k;dI,T({B#*{ʇR>$hC -4t{`sF; yCE4%7qи]E8((룺 [.}Z玄gBK52`g_:I/g b0Rx*UdѼ CJuW]6.Η[hr:.O;8vǎޱ_B^Cbbjf~SYdኡXaA-8i3ҕ-VR~+a? CWW2[)ORz*p/iYjns5mv,Lx8i]ف b.5uG<֚3)c0 &{& =7#6Ln$R18&=?C+N  *l `UKSIDdd~Ql[CHUGy=U/m)l&>Rϱ Xp{,B*&QMp=Mw;+*&3j@)=Kl8fdwS~Ld6KgکoԹ}S9ME^e㲩{dͪX(&q&W7cgRqtJ:~B맳{YZ9X<]&MKQ 4]fWkܲbt.^dC!E +eW#vmˊ 2J=&S sXLR T!KO:2 aj!4ގ PYnc{WElL@x͌k6qtI$Z_Na?IٕAQl(p ѷRL( HUnrZ閭Abl av5}Q9bY65FΡLP`kH!%``lNTGu:h`V҉t7CKBGK5oμjDžP6F+uFŕi=+ʑD'߷Qg+v8ݒD7h>9g>SBZb4LYhA5Kp֍#ҬGY圽„ wP@:zzOw;{ cKnP|cYoDY6<|:F|6n/,Kq\EW|O BaoEG@lXLKn,WW?`Q0'gVPmv_OzF_ta BTO!qih"xy0OeĐ'E܌Z{YFU^[_ޗ r9OC +n#?_Y)fːq>.j,Lt%@ `z4 Ej @dxYUηB!%""m$W@<=ECqcMc<_hqH%n20&5lJ=p|}= Awxe4]ێ|W,9֘zM#[ԺىB3׊(;s$&=R1ZQYRKy_i3v3 ``<.4ɇ0*GN(u6oV˵w.Os|\ӨxHS;"Eߨʼn'WMJ=PѦc:-8T⚰{8R5ٷ)^{, `̚sW^g!4yB^mzh'ӜKiQǦE Y7(?r.$i[CrԆ }MՋ~#I4?=>8šhăJ2E\)j KOStXsv龐!%Ԯ.6%XXrp$H`Dy隨4$ Yn0:qѪ#BwWGVoH̭{4 V؈qK-PuUhTcrȕG׷Z nw=W\@b[5re-J·R tF*g4-ɥ>gղ>xRwBf@ ]|ƷgB.c,g @rkcpZ+8*VXCѹ|A ?DQ>lYŪs 1A<;F_]t8IF3,/٘U'U43c~!Кɇ {qDN3@s͖["Ʈ'_2㲨k31sx%WPٜV!(sSt&]@Yevq`\>Qc+UMsLs7McauΪGj4N~ j !3cnpRZTC>@Em[s2u bRzO>. t l~̧򮁐8Kj":R2u'6=8[pY!brLlJX7~)~jGB=Mnw8IG;QLvzx,vHU tLɖXD;X(.N 8fp7 E&E8@7 1\=&u'UA ME ug^K dDK t57'Sy[9Git1ZLV?eABo/NDӒ4ҠmH PL읒:JNnkY_Lk/4 tY⪶hS24]k_{-pmcBh6J_r)9A-ժom51,IF7"w^MC?)Q\@1mYiޒύ,>X;AUqg"ѾJEH-%s1Žssq@#Hm,h\7i S2FcH!=Y]aO:E w)x#hEe3Wch=Fn_J 9+InjP7_ *맊6Ċ9~,$dt/Ϫ f|؋eKIqhL? ®q7!{sTQ&v =n~Jb"q * _TJU *Vs=wCY*Eєvg cWUڇ6"Q5ەo`XA['&hu eݖ]us2LX iXX\vx+y-hBp^ʴͥk8>*WҶ,x^k1/."ԫIqzNƇ534ffI_Pynr r ?S?ҖPYj1U]uR[5bLrR"FV#70Y{k{[1>w/ItwO@ܱK,If1Vy-}0t<]7/W9T[7-!|T'Y<&+2$|7j@ ZD:THLGl[R6ĢX ZØ92ĪP֫9{M^2LSg-ٞ,ΨWtVipl:=YˢwP{@,!loFBz^Z6=sZ@$IEg58uxQ< v/oTwg_-Y}"9<{#c;ݰP4>b )c^%;CTîY1pbP?TIܬX4~7A=JUDuLnNʦs(9bMݥ46zf\X߰9;3Sg)92@9YeA!]0R(t:~xU-}(ğN L8Kg>+Ck?V[[&+!-Jm͋5ݒٱ:|O9"puhT,Ved+ P{xQLEija*w2FqO s\!S(BvZ@mF +8+xTd4'$oh@X=}0/ʃ?kN(2K<.=X}Zk.jrKicͱH9/́;K]Eޢ ^„>!q`hx9j y_ےu<6&H%5}z>z}۹l*DKNIOrL.lwn}:qRdql(&Q4xJ ي\PIS;gN-[\i{M>O:!'텶&hG"Mby4ĹNUK~m4^}|ZWbU!{Zt xP~D/t'4뫂د0z'c$$³IHEp%&oÝo6 ɄIq: ohʄK/%񾎲nSy* p QxWI0ܨW |:FF~s~ Ĩʓ9(tQKLwo:O눨,<9jʙќ6dEPr{"v[CU5)O/YߗhlS\ƷҢ$_ut#r,ʼne&:Bq9|eQhxɭWu0 \P9<!8ZVxs RIkmߦqaxuiƽv̿e()KG85'-}-8kqu@, sQN$2S6@w+ڱPᙆBm NuAE |t)Y9"RT ۱wФ[O"%.ybr3rB(4}$Gu:v<a! <ܛ1kI%MFz`;Foɐdw/s9eNEqZZ .py݉T6XX`ZޤZ:$M*|Z)W&wJ\9٪L"=7Ȳx>9#dxXYԯqxM5"i?Y=-ny }cVӥtvRcwc?P,gfF5)gh m'O}ylVm_^K0Uk]w#%o烙%5Ij/ZS=}-%*]l>!^z0]NoA&~k3WT٩UAԩt (''=-'p6j 4ҺO002$ ZSϵL D&HeM)&޺z^ב##5gT܍=S^?@j3 CBO+ۥCvuy%X1>?nM4mt"zm\WE[s^. KW`glxYks-ECċkKla I%CĮ `F5:&ڀH7M²"N?<^[ޥM^Q_z489w Z[[”UAP,7r^``ߒ'.۳L "&0KZTt9$ު@ϗʾx6(BWW7"1`@h EIѫ D=j ů/s>7UyBa 5we0AN hatcI53NNBA[y-"! Cf~`<1resd/;}tŢ!x*ĄKOG10_NGp:SIh#Aǹ2YvطѲ^H0\0O$wz'!`ÙX ;ZDb;דfst`I.7#ڎ b\v!>1<4ݘ~ |-T[˹' zP3~ՓV浍Qr5Dir)DܝZ,!renW@ihK:X.:0T+6MנS|b,GԦwlȌ%D4>& ˄W6ŷЮe#(*z";~k"\K5IX^$]7,Ж//EN BYq:S .ɲmA𶜚>ܦާ F[FW[ "Vۡ .lpVOh2dp)>DE+0k>kÃklW7LHOEz'y^˽ҿ'!~xHU.ߩ eSxBs>KJ;=( .c?duAU2H=O 7 ~8\w5 P5@waBhB|ӀɖW5(հV$rGx쪭}iMFk^\bV-x:Lc:5"8=S.!'.bbQ);W4Wav7]XeINEߗ l ÆN^}lj\Wva,+>$v{Zʊ/iho*}J0[%XO9&M.L}jl=sTBmu͌9%nE9+(S JѸ4i=}~p7rKWV@dalGV^X}Y`գܦk4'%-<ٝ^vfCJBY1pb'f!X 9l#@ܬe"j`:JKH63!l6lBP9L1:trl='(Nt`i$m)(>jNEw  3W j&[CfaMzPmHEH .>0C"Wv-YxtNHq4*8 耰O&٤?6hс,R(9c*ku3-n^y9;IdC`[?T%I(?i`%L\w@Es}xF$b{P vm k~@,@6OLJ "K6hɐ*0L5aeo -^:I||UqH.iDKx,RM^7e9\Ŷ-\î2)9PUZU3FС_@>?ݤTܬ!ۣ$Ю~).AiF :$avC<+hP(DX&q(>R/ӆ{=<fσy`3㦜%+񌔅3ny^lEf1Z9B1%!D=;u KӼZh#ַ)c|3a.dwĹ_-qAZ8][ OgkB-#Q:ȩ;Lg DHD#,Ϣ 3M]#lrG6A/f{%N͗`Qfney1J :j=ɝDb6 'Kb˓*H+cS`t .\Z}rVxSX +u* Oڬ֬7ZD𔼀_,&x ׀34#Ӵ#ÇDA"7d'J6f.sN PwO_:E^Cl}bp_ ݏm+ccsV啪 EH/JZk=HnK'7Eyrex* C>"̀͡8&5z*b0!0N{*\4p$OC76} h=8M}җ{C'إ~Qc^ B4 <_fFGS+n_^U}9 `PdZe{z_bN`CSyh}-@13j)%xJ޹%}o z  !Jut¨}B2H*FS_{Y~ 2mu k͋ $AX}q{QM׳#z56ѺHʅ%etQEm :MLGU\Ǚ T1G .KXCwj 9} R[N6l^;P tgqL|9sQȾG9{_=)L1;9f'ٶ,n{9Ywc:ym9m㜧oS=0y `>PfFMLY*atiW1Vi>ǯb&>ݩGl{JwrC\d[f}a)>U+j=I|Z00Jaeof*G ޞ4HLw[C-Ƒ]hz(/u=14]z.yն$4n!mFV!qqetڀ]܌B,4[ÉoY`*;-s+:jbtVWC"vkL(OGv͊MslYq)tB ۊy 6Cǥ2"nȘΊZjI~a j* ~?6-5,4A!!Ph< +VRϑ2vJ2 |hjt,Tcp2fF"fצKK Z)e> vܭZ.:J4@l)UOD+g*P UV qy4 +7H9l^!Θ_XJ!xga|UQ&P$^T , p VBJ-g IW ՙkݬdD," ?-U=aws*y} b0rfLfO, Cs(}Z2P%R} üX'm[c\f>Ǝ6wވaT=}:eBgnG>j)fū46~ T*Ou?Z̐b޸ոtZK]67~1w=٦ Hk\lw04.ѶǃqԽgs=i-wOI\Ǔ@ʘK=[fO}Ā r k! Fh|4xVqۄOZ)?ޞ4n% cJqȇQ">{ dO1+K [ ۢ~!}2gHp׼?nCۛ1c| endstream endobj 370 0 obj << /Length1 1707 /Length2 10662 /Length3 0 /Length 11756 /Filter /FlateDecode >> stream xڍP\[.!@ܻq'w6@;Np AG3zNU-_{}kWRٛ@\XAl@rPȿ䨴Z'gN˳Llhow8 eh$Aly{;3*9Ͽ> ??/_1[lPXBl3mP`tqq`gwwwg:;Y0ܡ.53 b2@ l 56TZ%o; x@M!v.vf'sv@b,b;?޿Ar:wOkmgn/d33݆"'ͳ?2  %y;;̟ۀC_`7O#T`5u@,v,?2xf1uZR\`@ xqTWw? XJ̅Ct} 7L\X;[_z ?z-g溺|.?2Ͽk/x@LQMjo?nOppa \D\!koIJ]rG΋uDޭrj!ZE .Է#lL :+rzkigfAxڬ6~z|{6s_FG)}:Dt$1':lPXfGxLwie,04 7W"{aڤEٻ}Y)ܟ׊ y~v6㻯W}=7#{d)F(@Q"Xfyw`LZ!.~TdPSLݕQ#z#mGl'ke`e7Nh\FϯJap&#*a 0u V8<)wf9ϕ`q9ȧ9eөHi14-RIYR>2G8$nJΊp0'mO~Sxkt"'XJ̝nmIRd+V\E筩O@l(=W/DX-zoymJ V:ɢI=88L[Qۺ'\MmK*^B!rc#<\/̤DRK0m\(,ȜƟ°^v?Q8~Mֹ#M- Rtxmk"YUFK E>nw$G7sJ molt9F/R |I=2|.,P&^X %at+ ?P+W~:"7z,h;G5 4q$%T4V.Ts;X5R]XȩɥkuWb,jH&I|ܵۢe욦; Q?11aQчJ!pSQ+_&٢x+Aԝ(/w` 5%0j4T]I ^XWRN߹|&9P "kc8R}%[@dmUgOmDĉҫSXrBF>Cc9ڔ^QD+ R}eu/h7vnӺa.eK2^c2SySF c\O9)~2 JeOZEWмڵ Iz?=x然 t=KpE86]? eNo@ûUTV=TGrɅoʃ2oe6݋ƶ.KKyLuy?审^?̃Ї;j>G#^2.͸I)ǗxʂW8V)+0sm7+;?\F[G]oprJ +4^\E y2RPoJՓ0+&͞"!$ۨ--zfVR3ъgr}D&_m\>3ˑt]Sbp(OU|# &r(;X ,B| @^NgUew$\vTs kP^Sύ;[=`W_4ԃ b)9ܞPkIg;?yZ۵L#%aEn:T.yNc?M%db,CT'=h۶1.260:mlvtx $o\ V m HNU,+9rN5ne+41O2䤈R; G+d$4dlB,AfMkh+VwS6-bثpEgjħH".;ʛ6áyLqmD*!yⳞHTEաrCEz8 TsQrទ_ 5N?k_xpRQ1ݧsw[?7 M7t^4|✡Ro> }D2ހHW0j/mЇRx 5"{o[4 A1|#u$V=E8 ų=߆}4~!7Ǒ2V\[r`q ߐ9Oeȓgy|IfPn^o wua#7U3I}amХ/fw; 3Fm`6k 4]1qlER\惣':Ϸr&ٴ|ć?N`( gadA! Xt~y2uX<\djxK+>qޱ+|)a~L׸cJK)@. BnFe,t#J-׮z,!3:K:Pt\3WB OE>e%SJNbK8h#50c6!&q-w,z${H["xD |UD=YwuMnArD _ m#9\1EJs21jegϣQ:m9֯:b;؃vJt{|rPrrpϥs22WS۴2(UQ>V9Sf|S\Qݶ&so^EXo,ʜL &2ōŊ\$H X@F/zS(ʅdEao-ˏ<y8 @V/O=5,[l5kvZI{5[kz|' 5 `@ 7̛ŌQ^|!Y4OGZFFlepT`98SCὉ0Y F.JJF$j<2ʽiswq_!M&LYVfe꼂Ѻ,E\ǘc]T^ׇN@1Wp WȨKDi[V!p-h*Q+x $ZO/sr.;9UJmLN>g7I PVa-OV]BHut8 ÂҗL8ލ4ƜJ ):8${lH~.+U.dsmY4@4XҵG՜W#sc>q(b 1Pz^9vQM'Nvp(//BnefGlǿҖ>*ԸQh銓J=G Y|Q؋`7{{06=m?/F:JÜc1ıt{v3쨨fAqN,7gUp 5ۄ=Q&[BOs=ؓw$>::@%V 2wQi~Zlh(-y ~-vл3g;&|,'6N3TF%Ds٥7MPlEmWhoJr4] \>.ve]5rѥ=G'2!!KHG)n&ndM4<?9O~q"0OH*ߨLCl2Nb|r!i7Ai/آFƈ9C;"@6L.Y]U~­ rK''`AH=yҺDT/ko'3Ll>jlؤ6nhX5(NS'pÒke na,G8k@Ђ+=~~"! rK>e l[۩R\@FlIyT3i6_r_eVf/^ہQlTbxĩpH,ZO ;\.@=Bxi?#"i'x-,QAV꾐6)MSM;g2k|zEh,h1o6-l^H3 HIs a5 ?Oq~M3B<ðff1Lk.>kYR4N2hcD{t-3Df!:2EQh]%O~> V-&1EktWYOZG4mUaJ~X*j4t )%;xia<1zbre{7X(vlDf{ՠ6 CwD$&K2} dS53"O4\yZ{4͖{Wvh\axE1)Ң͡E#L)Ruivr!hx +)M:K)!Z]Ws9y2$^ 0-0#0(WwogBX7Zrޘ@tq%.>V% $O/qȜB#[蠡Mts]>ɾԬHNJBtMRLv30}X*|ɱnKBuC8,감ʓ]8bSl(.?!n4{(Sib`h|Z5)+(QjŗLzAۨ$2-LC7+T!vLZu⬑5K-<܁%LVt΄ils8cbVOkg..t+wT5-t}OYp!6wnwG?wYKC:[IR*5%,PwXcڢ~€m3cٮ]fE<>`D{U.| *}L1c3%?ײ;_6E.P0~J1𯌣5ubLT6 >]sntI` m>yD.QbBgyrdŴsٚRIs~kdrаYvj+gi&lq.X"ۘNқ^ t/3A+#Hp=QN@ Jޫ"3c|W3ٕ{Igk쬈13\+^~'е.Vt E{ IJu.@+rK3U1?YT|m: I'<1L˟[G$k@K^"6{=B)oZr{*P'Q#GGj` |Nq+ѫ2T+q c@AR*md5\fm{fuP;FFCs}?O;22ҍ< JfP!%<vR0l7nND)JYob\r3 c*F1C~2*%}KY鰐>sO$F{[=7 dJFN,:lkk|M))T4Z{x1iN݇jkf5[ZFTϰ:T]b%%")\XEj^tUFԯqB[Ŷb=_* 7N(?sDsB@G? t ,t?Nrfђ)ZFDHq JK%Wh-3U}b`Z~kQkb"VŦxk%GcV`[anF} ʷ+Xr\[1wjݪ-| +T_mۅLͪҚE" nޚ@i;;?nL [={ۢt$˷pu6ݽ]8NY{SZ%vN'xj'|}Or]+Dǖ7+vRiis=5l@ MD09!q z DgUkIuqƷ#f6ب|ԡ^~ fv{J)~_©lɅfԧМosaSn*Gr} _k^߃+*Ѭ/lTu: -\=GWyP1j#̰N)STZN~ذk1i}2:gir,Th]Dgńr~.i# }hIxm+}*&ɬ^2T6K;xM,Řѷ78Ӫ%%~twՑ3ɳe1GeLeZѠ>0CUJi`eR:YŁg?1&?k)aDcJR2ToFl>JT,bJ_dJ]yۦQLJaKə7z _M-}5s&W?,uW}Vh;V~l6R9:_9J@lYP5OkcΛx?錽:%%~h|Oei9DzU,E?蠿E+"$W^:΁ο  -|v"\4x{N&\Iukv9;kxcqNyɈGiPjpKUEHVkl0yVMVM8g6ϬmX>q\ڏ̪O b3 4O,~z)z( ٹNKN`>@}A.nQ}#$b 3\~ɔG (޶/j}W/|,Xϡt[ǜJA6xN&ޣJ#/k?0Hmp,1VoRz O4O0Q:-Hzz)9pV\JR9%C^Mqfc1Ϙ~"nYЄ "Z+ 0bu%|Ͻ9aE,@9Ѳ^m >m*!ߘ8Cabx꼿nnqLjKK IeY^{e~ XmYlXF;8Ȓ'2EH_6E|LITA )we[UEɾ2Z79G5y.y|}$w_Ẍ, =~9R3~'KyIS3F YkvfЃg[{ JM n6c=cNK}%Ji 3m/WВhp1bubgՒM{8S"SGڷK0dqERcQbC{M>6=qZk:B4a%|,anʆL5JkGQ;ں7Ü)&C%>ͪ~%1 o]E0emdˆ0{Da CH&yAwvnEFF+ىwՕ&⡾349Y$ 2C?E#Pc>/}0Xj_Rj|j+HEc *auQ -W@源-^MA_nSҍq}Yg4c!V/p_rfeA(*of\,2.#l%^ H~|·< 4t3qv65\|=T0gU(JM?86N0ض aR<{}!5%nA7hp=(llr|dOg =p?L!|M} z´I}z'SZ)܎gV+/f͡/)/-ezB !*d _V Lh O( Tز=X^Mk&߂ Sa,'Q%F띌-@ M6BzԪ ӷ}BG#nk-8R>ZGB ~=i 4lߌ(QEפ a[#+]d9$ʳ!fK F2\6vlÇ &d <[># kOO*W20Jb:+7;5X)^'PNc b%+w~}X#At4 ~4+0W*iQ#Q)m)cluߴk|D8_Xk8jvad&=L}J g߾_W&Xw>Wj~)v&{ ),Wϡ:jA{!ܞːx}h~JS$TUYwrƦ0RE#65 <;!ķ,8.5ƟIf "~S \mϡ7jv'(Χs,Ku1p|2)u_uRNfjqUB0_VVE9 abL}vgc̤Y!i l'oOΫ^v5'(nkn.IRQLj dYjQ]dMYK>tu*ƒ s~X#Oԓ [l[L=O@^x Sxy#]+&! Λ3BԸ*ĀqK 'D\}!^_eAœll.l.}"_dO2w dž_Ӊg?= V]>u+ SkaߩUa{ה`N#Dzup<j'|ee~2mIX/98*_+Sa\Z!(Hq~@ZxFϯ}8GE$k$jC#rc \*/fT!\ǷZ%л|1 0Uqko̴SUA#*hDI BA-LtcL%c$>9vrS@ih#xjpx)sird?(2?9[=ƾo\Vd--0}_0c*j yA.ē{VVy9C|ƒz;%9.<:h92EIZ4𽪕][XӢx+ HKwз0dmX1.~~ʫ"#(ǣhP'}.K`nN |^-.N_GXƞlRB 6 6RϋJtQƮ(E|ry82wN# 1L iC5ߋ 0o2}H6S endstream endobj 371 0 obj << /Length1 2572 /Length2 16944 /Length3 0 /Length 18439 /Filter /FlateDecode >> stream xڌs\[\6NZlXurZֲ[Ʋ[\\lۮe.XMm S+tqqebrwwg4sf9Yܭ\,*@g ;mjVf]܍0h Vr7:2E-@Oy,,oCVR6659{Z[̭lEIyFzoAc[gX,"cpřwL̀ -ao&ڻ8#O h '?-{VfS1su`RrtʈG LBC8:Ly:dMrSZn@+o"D hae: 47O@<,߿|ϙ$"!&)EOEEAoVf+ _CJV /U{s ߘ34ZR3z̦?,_*_y1IK"/ c;+[ȀG@॰oʸB< <&[9KZy͔\L-5&&^;[+{003xLmlR*‿F>) ZQ{HXԇn.wKG6b,iyw^ghIR-ɯIE*_Q $O,@<^L+;PѰzXOϐ!}[t!^DFh<`LS+`̖ߙ.b>Gir3k.1ϢF/;3RPǟ.C~>ǩx 7yCVSᡗ+i{/d D>_wxкQQx &z#GpQXעbæSebs&BDjg{2yuKӢ<#:V&`53Pd@h]7L3Txf3iQ_θHʇioB0v7,0]8- zMo>V{Cs!T5]9Tz_=㛒)565D#A|!r7/Dve8@ br/!W`Y %3K@өXʹ]ϵ^gv)ݺVOjux DgK ^yN:lxtp3/yv /t_1Y^BhgɎj^"b,֢:3DO9Ua!cNǾ#[.g|̳MMӚ7Uxru_ՎCSK4PV"/XX@=4 q5<]؅]/[P\8t5镙8F>{#3+J$R'ݴ[8KH] >:FV<ϤBHS޸Yҳ*Hgô'~ Y7vZwP Gۡ-=$q^?Z9RvH&] ǡK,9+gw7g!f/Eήꢳ2Yߕ+ٿ+zZP2 -oAƅl;_|ra6- aX.4=`p"ԶH^0['$ވyl2ȱ&EM{Van)I]}≬l f;bH$޺ 582ɣa(~O&ia8֋B'25 = Hؒuоo^]eǢț%B!l߿15E: [NOV.MxL +y>ץi} g9Oa(H 08dҳo U<F-@{T9}X%y<' &x&١dfLPyp5(}hI'/5y%~0ۣ]f);q?I*=uHh($ ʎz 4ݲ9a4w‹ GtD3T$(3VOjśFre-_:[p9ʑQ,:֡6_H=p۠2Q^K 6{븠R&cdl4JBEF@G+ 0l_pj ~}u/&zE,q ME,!*JZHARC< :xd_6B9e{WT)ɩHS.*Fu.! lQ:ŻS/JY47|*z.D~t5-(~ c! dkj m[P5"p \0Ja@38TIm&C / {ΗTcYz&qu~Lmct ]ji -c|3Rg#n=@H#p &}o't%b^PNRHAb# 25A&FA1!fb𲿧=|PԈ@:L)Os},f6JdSv!~ WC>@F[i$hd&L=.N D3Gq)էڐœCD zϹbMZxulc o0UN2Ņ7pYbMgaKG\oPj ƫ8|/C(7'w.؃,,Dz qYֵ2,3 B,OߋR*(_#<쫬8/}3.b&P'Cf,&!gYsDd`#n1_ Zwa†mma(C 2|EMƐWK؟^f{ӭ65VBx_lprǼ-Ed>HS0^MK7|Yg‡؃Qלe6xnAfuh“編l y$iM_q3ڧwlO[U- -y0S deljG5Ss؇u"DŽ)k+ oVTK_*hOoP$CBIq^k 7o\*_ CV|~t.ٶp$wȲZ(ƗDnq 3H$Ypw8+}9åuz[ +6_9"MdUl/i{YszKd$k ޏ'0"/" hEUUK#sIv{qgD@Wr9i=ߺL:sOfRG<'A1z h?{aN/7?0Ubv~{~F(P]_^bAN5kg vA Y3jP8&E^A88i#B9HۑgXr>ZTY BUc/Z<MG/A);"yo2Ǜ[2o%v %`0GH6y},Js#(vT6̀Ez3cy"jtItߪڧPf=ة~8YRpuq-$N]wx:(683s|؟s io{ųUp"~5e>-W}^С֛zE%0eIM\P:+ ;[5+c@Sp1tF8Wx(Wi.He%\5%>{ -UdIy(3[Vؙ|3f^<qa2]]# ,MTat/ĭGsg˨JO PT/>Km럦9qˑI~s \&BR]&hxIø;ZOi_kK[U+D3:zQ| Zorչ zDȿJ*.'x$W82FF 4WEeı{&-MQB!&Ǝ;XpJTڤ]k9O,Oh(J[r$g)lB>~hfA\c= O oe)ƾ;1zNyr9"=lT[&U1l8d:MNG;VXmQ!mHpRfg|l7d1װR{!Z:2">K P  xˁBJ?`L0'YO-okO*I6?9%Gnrݱ݄X0CmfkR%;`LĽ&w;qLUzbʄC'/댄)ىڒt A?YKTR_Ծ6 *k 7^=hͷe&%dh '/_(䆹UPrBՊQ{v6MO1zA4\=&l5KE?s |@Z^$ h.sT.*6ΆhlvTr e| s_fϯ$>o.LHңO !eMeJ@[jQdZpM÷}mr/N%erɛQe(9*:_Omv>mgޓE&ؑ6n#wX G%vf|?.:Mmsu]rE&"Д}&>z{6Jg7HVٽFuSsW\D8 wd=Rf7C̃J] (Zk ?>bvDKHh':NTԝ*ai.DB#v0]b2HEft8 BG*ʎyOpfm?~8 P8FBCl2&X;a_nY~&+Pܟee<} PFg/^Bwv$^P[g/?*갣G7$=]f^~ /Evad5 F$͒ʯi`~t% އDJr+ٲhSk42 Fڏ1aCo>av: J(-O爮<Ӷ"yƟAՈ+;)XJ8A'h1Ս8Ĵyd{H] *.s-A3#u,3rHك4_s=iuȣ,n0<‰ U {×}qS*_|z/S롡!پ;E>,Y"54~B2͕ RVZ;bV4Mb yacj)W[D_[ܚ-Jj/7Kg<ɪ|nf s("$nM0 ǮPYbVsqF1HѴ_3gd=%fub폳-q#tMBo#W؎.@I(Eb㩒:Jo&SKy4DE!<Ps;0IKsȘks(e;2xK1vzfLf;V+;wmxz)ГVm܀46Ge|| )W vАtDR~ Lukʄ( W(F[='h`d4a˴ʣXhg>x©aƙ+kU9UO"_): /.w gK4Ht"q IigݯG ~eo7+Gk?4[08y(}ȚE}]O\װ.%T; {Y{If\w;)kOEԁDc^I X[KmX;eCcpqF7))k¸I F+DfaC\;cHfh$ֈj3zl·4p7r*:0-r8֟|yZo4]z-6yv[xn %S%>Zbk^2q {Y-RF7v^հdQVcZU)" vETɤ1\Z_W{ V:mS&§+,r ,Q˯Vx4L(FLL+z)P¶G̈*L^М}jus ;?$(` isWZPZQHbKC 974j#Uvj9I%r sr]]uZ1oHgxjǰGJJ*^BfWͯ_vJ|ߟg⚒F[yn٫8q  o^w9n5[\M~3Vwnki1}ԥ0ԳZZ1%. G.,i, ӊ>@&l!(~"Mh{.&-AwFˤF(v qk1xkF!1|);^qq8!4=o(t*qinʧ[kX54o¡ކ@3)wIe:]ۨLȢv%0fl7g27DNsR9P>9N,q6d79/U FMHkPĠxU|ob {ʠ 5dNw5R(#dKhzi^wvUpRb RGb_6p` rq ]";K;DS&_D t,!qP7&|]lVJ:(YO Z_c,݆C S@Gd Q!ʲYνVjX3 }3Hn 8R2 X)x|iy:͎#^Nt$5렛=@I>$*4Cڠ>qVǛl+yw =wG-3>jyHy=仹&;n ^y!q,\fӛxS!bٸ+EfA|اp7I{B6jgxÄp,xѺH7}6|_-YHDF\,eF1HI -b8Sm`fr3*v9MIXtdQ t\ VX#j~9,4} 5 fӺJrd)gFER<)N8VW &'4qDǐ99ݴfY}3erpp|dn/XJlĵ603q-7@N;L/ꦼnD{nL爵?2kzCPɞPCZ'I?솽&t惠dN:Zi~VOz0jFgϸHeDO-Wqφ\{ZkI؍K} ~2K# w ͓mvsˬ3k[uB=C;J"j&].Luxй> b4&`!cy\J^ cHeQ{`l#Anv 9Xz$$AZkR ), n_w԰3SK) > QK c}E pxکr;Ff`~ZƑJxuy"\XƓ{W{_'NHue-@ץEez;_}JjX> / -ɾp˪#Ph<&ꮟk$Hr !^?r6AFl]J0e gʶœ,ӫ̦_QC~\Dcs½1/5$ZVm6^Lz((nGx/(_&㹨(u֮8}"LMh.pu 5#/%Z7bqÂ) 3[ʟ#*IwF3Ņc7'FRO@ ѽ5>x^nI^;!`׈ˁǂ DWf7VX$ sps>UT%Q6F4W@[Q+{bJ0W8ɘ0垍Q 0tf=^gĕ1j5m^$އ-VPJ\`Q1X'{3J`Ł,& ݏꅾ:7Tn)*" 6}uСX;SL ED2n(3~=җoRa<¡ϣQ/bɶ~1X(#9UL_"433$\BtE]$y'n7UB]JpH'.?gݘ(±T)bn/q &(:ee} 腲 d2 [cTX3rWY#fVE 97$wkJaBZv«,_|毼JC$8\̎N &Βs`ͥ瓡LB(z) k¯a4 ?_.}r8yuoze$BHyӔn1e à'hIms[=oؤ{s=!5sD>CT ~27upskTd:])p7QjW,[۪zS!jٞ"̊cd:Z~EGsc+vH-kEJx6KOUr'Җ@ubF[)1I:JY=; 5L*4>Dq8߳c$& ؠn I)M2 ͣ}5l}/ol%ОL*HٍхY S[ S 2)rn-AP2P+ vz\\l\ cR% GXңA{F,&01У,dE0= HVaxКD {'b@#ģѦ! ;5rtQMgGAfI7"'gȔ>B#f+647EXuKRl\oNKK"GPzC2} O2qlV}# $=Ĺ!Ga+>F=4=paw L "I;6hCKR1i52 GP/e,ߥxYy%\Ū Ȩ F,@R5˺#i?y]R4T:0DH'a6vzzb:i+T3'8yq.fw) K~z1?[?00?$rtA!ߪ4KFw>t%U 1A 0wqiW׵pHITW0@1'lQԞz+rƨ Ҝj܍-LA:GO+Te%qG20KCK/~D3SwҫbAn,*No[TQݒiw괘\mUVg 4. M5v!.8 |x-OCM #̰PHe:&U4FtAyLl:ke77kXןé$WJf2/!putbcMR-GùYY8I$,U-yr  㯜?3\ͱP|B&?`T|7,8j_cLhC)</Pi(?ղYfir8;Y@^8iy#3Xf{**]GdP;E{cT#'T 2ukP|*\8nTtWn.4:j]a4j5"// t|[YJսL;?L]|XssZ<Ţ㪗?f]=Tx4#W0pKy4rIO,NZsMUKE!P:ЦzTU&숫'K<;/t?|X,zr{tV xEb\q9O)'9w !wل%͌\59Nh2+t\IqeƓ֦ǖj&t& [c' (y")߶+JGYH]&e>-6-3/NCY~ bx۷3!| q猪GIІjі ]Ihop&Krpis4ku5{>qP7Svʥ-O3ֵaG~0?D V]"^pU'p(K774^~U[(aXҊۘfriܤTP$4N O>vU}jPdW1?~uv'KOu"숷x~Uٵ:. ZMgu? 7h?Vڟ #M7;/>L?N  ϾN1I&ze|toɨYk^Gl&ZdB2Q< ԦY-JϨm*.h&oGaugL͑rcܜ:t9!X]$H03na`3m;#*ƨR5og =R|빭}K:u!cت \+>({'Kv|.$""*&l\;h#O]mih03§`s4LH=cOj)Lz;-yveb6Lr 43Y+1 Cla7u٥Y"1IeIސ}q]{x_冃edS֤{ O0a :U);Yt$#?ƔZsrVDI{E4W[->rOw8e7klgSOJr9.X19mom L;p5oH'aC)9>,a͗ǭr Ar,XҢU1KA ؃0,Kc_bc+{51TGH~J>%QoҕseeDVk;I_9Q|#snP_yg@.˾MA(ݮA:#!*O x)̸ {`U-_1@3בV35Ɍ~7a[CFU9 qB繩\Fmko9b+qՅ{&J%FWUbGܿ"mI%񧴢tVΗ@NfYxӑeV2t>&P|}ohdy=Ɓl'MtjǭL+<2eケtH-( 2xŦBl^]WC{Ǻ-;y"N>Ԕ-b=C_[3-X'g~·i.](Fu''厱icDı&ɨ.M$<9"Wv6?gM2!?xxcg/:6PslT+P^U)E*u>QZ#c*ڮ7Beb:b8c5g[HC]&^R%F(+iԷUs9No+Rup!]O!3r6pc# _@v%(g,`苎6<ƭ)^%ނsl/&wq3૘'OY(-a2[(Wy8sA^"k;yD ?TͮM@Sw!Cw]~S*K)&Mwq8+.XSq1]mvȉfUlVءD"]U'miwia_6.ʑ|f9 Xz*ۙb7){}ôCi<\U${ 1S_O hR"섓Ewc@evl=Yӄϑ^ \s';N3z;ەyA7(&\tdK"W|'avo `9E uxE2Mϼ~Օ&. QA߂V(TgBoƿ7`4:>ȞhҖ/ρf8-]|L=B4}b';"`13L}htln>Lg'1{ ^'_܉9~]ќ<~ >"zE\Y .E jm fp&T>frwcG\`ׇj}2u`OWE8ouEkAOi+%LOKTmg5[A.8u{rlu73bVr tNSs1j+tր1lJM1^4ZBnyfRn R{?PePNKGmк"VBB oy8JW^dNI>`;{=ɒTd^3 on)GTIN D<6tSJłZ5I@xCcsG,سogSK٢(.,y3Fbب5?XE_PjgRZq+!卝(Yj!t  GK~fjwjMAf"h^ֹcRhR=HPc>oUDX!>CUp3?2ci̟ݚgC؞؍MLۙDse]7΁{Vάs &6k[#!>T,>î+HՔ:_"\Đ3z_.i(?/@ubPێ@,Gffh.3 ,?ZK/ loUgfqɫo˼>B#UOStB]+(&K$4 ).&0bˉ:k5j'՝d`f=M\ ɇW*;@Bƴl!̬l P@sPe+u( endstream endobj 372 0 obj << /Length1 1461 /Length2 6585 /Length3 0 /Length 7588 /Filter /FlateDecode >> stream xڍx4[6"!^F1 fKD'ZKDAD$7~Z߷fyg5L:Oxem`%8 k>1 qYY!H(o슀a! B0+$ ܠ(" M!6M>FÝ\!vH>?8@(ow4`'Ԏ +( #=,gIq< H{vu~ вr)oAexEzX( a @xv"kE9O?޿A`@  B`"ZApje"N $ BU>D! _5 :fE< C"pqP0-fc 7g~ pفa1a {m m jq;lQe ` @|+\ `!`; ?Q05OJ~@?Of(aP_ANIA^O^A1DE~cUb:Sv? w,-8J`L@XzM忢?)AR5p,jkt567"P C)O_8@ TnkޠXaP^eC u Pmf*@p_&(,ruEQSi-f? DP5l᮸+Bj Q}e?@PD!Q qFC@PGjW 7WW׿o 0 $Bޅ^Vzc--GśF #f^k`g(OYTP ԙ- v9}VbJMwU7w{;0 nTe*A.=)){uhۍvS])B6} 2rQ,i sH\k wUY}/Ի+E*Iɼ՘hlr%)Nlw,EL$ iXVZ_oəLN/X?˱}#l X&)4*c"`G}tic{m)*uW瘇փ̡в8f>(>+F׮ׂͷ)HgĄV+4|0" [ Nmqנ)vMY7F\);w-6W{.+=#+/YxG7M3#Z`&HKE'y&qSu5nW-W4UR|pd;nԾ-p+#-Fz IlɫiPF41o +F#f‚.P:w)x(U>cTĵ<@|ì)|(TT{`"I~̻w?6o-Fd8">N7xzvg%T ~;b$[U"Qpq_y,^r޽9{/Q&Q"9ZrOhjQY3)zwSf 0tq &e,x)I(^XB7eU/u1Jk=2H mTT9@B!?  #h Tﹿ5m1Ш+DxQ=V|{OK-Aiͮr3t; ᷪL$(l~(^ȶ9@[ҤZ_. :1Jv/T/*Q ɉOĘ9ky>+r)C;~W}sA[vŕ*oe@ a4.!%)od _< :p狔ҹDq\~fڻjݚ|o 6ai`Y?96#~M[k@4_Y1`_ ?X.67VL9W"n+Iq$|;l>]"=z9lԌk7'ro@&g29]d5 _:SUv`ϊ^} @kYʧ^[/76aUav%=Ńl̅&$Ԏt(X#`~GgIxڋ&W5OS:gc)T%hfVI1CPLkoeyif`_BVuȋ=-&m8bnذww6}DEu~s |zMӓAhthnN6QRYI}6gK6<+w 'Bc̍%L ! -ihy I@>B19&)GIHXυQI-9mǚn%}S悳D7{N-h1#P_䇽Ժ^H}>3p0$+ցb?ٷ;_qNO sӑvɬ,W ;'۬+KYűd8u\\ V5"^tͱؗ^p(XPA՝R~@~{BioS:CC^4O\5/GD|Xm]Knz߆W䚢y"F4tj_%qh#.U8qc,Ae݆Ґ(G}R6?3^u:o\v)h'?Hpp0ٜ.}e]?R~1ߜЛ~NϵR,utJy.ܡ`_!%5j^j&TA@z^IwI#å(MQ><6LT=o;H7fɻџx~ W{-pMGGڭ0? j5oJ\hRbVB@y0H3C71h.O?wXV1a!,&MY~%!nתHw;tJ]Ӭq>M^RK 䃨^Ӥ! ?':;W*qU/jOڌDa'؊pUoJfs /jb KdJt!o9Y6ѮJk'X cް{GYϜ`GL&wk,o+@oL _}ib:"[4DK}]0tv zE'zWgLLN7"C쨈!om= Y6罤C0@h^AjeY:m~bZځ!T^rs43Ϟ@'5xmZVz%5DPъ.v?ˡb^3E$s3i@+BJ&;jKZܓ-.#Ynsy7z8DȸԹ8;!"?~-է{'r÷J)(n+;@jDB5:ʪEpRj^?i: ~7VeKߟ~ A#\fk}4қaf\)w2"qqv3E;Fn5BLڃiRÝf$!c)\o9@I06k> Jk)G\[.+їh_'Q*]q +Mfxm6} {Q/.o νYYVcls*Z1ReN~:խ|i\L|^wN?ɥ]i,qblT<'X6oSXANǫяYoع(n\aǴS18%NԜCM)+y^8V+-Y?12d !DȪ$'u>w>c_Ukڈ:h(sO8a{o tˇoeE{=,`ϊWmNnjBvjݗw:N|4'g^h}7 #vg#Jk"q7T1^T1iβt~~$~bιېDq7µсH)/p k;m^ZY\({eoa Ӌٜ: ݐ\$6Q$M[B  n5W_v ^Hw'*1U HmbarQם f, :Bl/x̖gJ>z\h/=D p4Wt^ӋF 3Nym$a _+ڭ` dx[W㟲\6(~n%%(du 4;41hD=@D&i;X\à [͞V`,A#a3̀WiYp\yX* v%[]%21Yɀ)vsf>u_K]uyV³NozLlZӸˁ; #٠bM:Rc0{J]x'#>Ay'ӂeڢRAFWy%mCƕ!Rdw=6(z75Hn0!"K@Ks:d7N!V>ZIykv?~QvL,y ;sp,[F3v:Sb+Q%i8hqs{$W1#s:bO%uKwp qaiXR#c˘ҹd+FSY̖}?3QU@gv,vNŎ>nL=$]WihVu$ZmL>fj6>n+$|MxnGuA#1)TeO2gsCixa/sQiܜSIhXY#mlgh<#J~Jc%uյٻEQ9,?5zJGpgDbPx틇+hx˥ZGX@4Pw;[1j[> gfA[ _2bJ~h7h5]KA"4ƥbUJT;UȰ˾ >VøiIB#gǽaJwC}%,1 {^2~7Mc1_8X* >D{N&P= {oÜTƚ{v,+;yumlv2fC];1@ 愲BW3'*pȬgfz{&N`S/md,9zd|%zIuFI]%Tnzll2XBD?'𱗜h 3LIħ^\6gh]in}ə~Ծn}c>6s*קA;J{JH.cn/ΩXJ͓LRhṷDSu3řv]5ddlRҠ݃Q'=A[zsTuniDK*Dcvꦢ֑hN@Irz4hD+|ϴrC7W/(wyVĒpRN2 5P| 9F`̇$f]!7g 4O@e&lK_fgGIv$wEIMk/? US?F/Y!j*z4HS^`߀bݹnfj}I~t7?|7|s=u) w\drLoyퟙyuSOE"E@ =jӷsaʷyIji.)^MWAZ&57o:YYڱgK#ѓXdž$3 ߟ!2R_Sx"/dt{{X?Y)]87ŧ.> ؘ`wllU,~q]gw7 RC)~ke $9Wr yz"HD|KJW LbUG|Q:GrADf Otn. ?̀- _74rH,$~'~~&u{ ڿSj#yUlJLj%F3OBBwjgh c34G_D LP '&+F=j(*s$U⻪ԟ/pukgC L'ގ~`0&RFT4.@V4sG AS.s < õ endstream endobj 373 0 obj << /Length1 1377 /Length2 6085 /Length3 0 /Length 7036 /Filter /FlateDecode >> stream xڍvT6)%2@FJw`&lmAENETix{=;g~s_TTriXQ0$P7@@H u5SZ8 )hAx> r%`iy<Djo8蠐0 *bepdD~04 C0`rðPtb=|||BA@?)xfp)Ax; #P/0zz"wN7W"8w0 qp jX cPx7q~wh( qB= kD_i𷬎՟ s_;Nfݐ(߃3 u5C iM) :Jov{<!`pgh/XvDp',GR'; ss/ ؀@>~t{b憖f&OE I*.3 B(ܟf_6e“mAR 'ConH[pCpw_^X ]0zYW鄂4FCp <ĥ`0D(,>1BSZ@ ǸIN^h4^gyoQ`0'iB轺жZe6DH),߻W=, Ohա Oǧ؄vrQY]C}ej-q+8F c t^MfH9_"v,>T?0dHaQMBj4~hq2I̗D|kzJv΋DŽ<L* VǚK]B>uZLcK@<xnxrٞZ֡yؔ i-k)i6u' kwi#ڟHh/)huVg0lhlWR [ ]/~-%iū ,ۂ"RϾ|DXL7D!j"$Y&Rֹ㾱F l:K2)&*R\t4 z1zRïS!g tk+>+ 0};EH09%&/(ӡ5;&Hh^f.7ZdNj˦%p*]awUy\e';, 5SG6 l]. 49gڡ2aV["[B= t`S%vN 骧+v[2{=ߖCms&[j~ơyO:#G~)q3p/R!%3iVcET-7?|6;ZP.Рvf#K*'#VEKH+|8'qBKEpQp+d*WQx&";>a֗ot3yz5t[s\-bVhxBri=tfEtmDxoGDJ'+1YuҊLE1Bַ 8ˇ(*p[ mjE|kYVxa6%:OK]'#DCb GQ36OU#C鯡m썾7חWe?\f_߯-_ʧ[hQ ?5QO ,JBY{1C~lNB@tA3SW[Ꝉ ezn%LXQ(!}dBTN͠ށTMƏzKjnjh &5M%}Yjl۴liW-kcfx7?̧K {Px"G'E =Vӥn,~`LvWy@kT}Zp7Wo<@(AwVe@p̤*8Xyc~RH{βdLNpi`IA7YʴiW o8|iGZ |QD>5&áܽ 嫇P\}my3} sglbhpNH-V3]*Ejkۥ, 0k3Q}L$5pu|x1 :fYA@1>$&=RhgO7FM. *\]қl:8뵸fq&WQ)Nശn?={̲}铿5 =4(&uîє[!M%#O9u+ 䎵|\)_ dJ`/K~+ܝ8<%^oBV3o }(뼾H|8ГeUPtDHk" `.QbE,7_G ,GjF2ϣPQn;Ie@ϊ@-"{DsՎE@̏ku48v=x{(^s w|pަjv`L3~WTsztzNe s.L֋ :"8ԤV]Wy7[N8kJϼfi&4@.(#'d0ȝa[TX-IjA5Uk?`%;ߑC n }x_Ͳ&$ZR24q{2=^Ƭ[jzZpJOn^Uqx{ JHҍ9HYk/ zӭ*u)ޢ&%<3jMjA+DW9ڌ)x׵. R[Oqf|9A7Nq1UDEP'-L['=5Ԩ~\ۈ OHB6O NMkS+΁Aҳ@愱c4AJzs* R&GXo]-,֚/p'r%XAs& ;H,펥-\R^fqԘr?&l*Ȃ!dLgε8/C{B_2ҝW MDJ⼯mk/ujyoTOt{k/.tE aؒR.JNz?[DbS\YH/ ]7aKI(?˞8ⷛI.}dc!z|s[~w'2mv:7v/ͽt!ӾTx1VHt{*ԓi:Yjwb[L}溦IS+K0}Gf3+!?@P󯛸lںo!{;Oi:uۖ) ?Oz .}(-ܓ?ERqVݟqU'Jh_qѝ63뭜zjH۫T` d^=5[ű(sW{}Z},Io`b+xд&evhVFj% #MnhС#\f@SA"/ ڣj  s?LGU(/?„K1 Q mt;ʇKZ[W}i)I )-G &!{eviZYZ\~Lyk;'UQD]{Jo 8:!%voy=Ѯݠ37y(?g37,S[9!I |l1'@m4j4 aţoH Y߈YU20OdNT(Ny62>s^'oe)Bȴkg=<%VȐ7 [ԂMx)Vv2O`$B/HB+yo] -_ w+$Y]T|J<~*lrx\y t/m`ϡ\1ʿkQ#P(귥?bxL& TX~-:!֘:&4y&AvMGtJ82+@itUXzSm;)#L 'USPg&I36Pm >|=;ӝ}0:2eD[7,L1X> WR7Ēg#Ji_hM?i OBijs_%P}vij~bk=vOF>p3{GF61u$idqG;?vպ8)0; 3<&4D1z_dyK$JkvX4ī?X+2zVcH'0{s/-^ #:L1);e_ .wSC7UZCo^c F6`u"?{[̖p4G$J?tt$,OnZ6LD@-ۣpk1͸Pщ%m23?3ζE|Rpyvǫ$c-zKEc#>ĵ9u'/$ ztQ@W%6)"Зr5 : j.&b[ cV(>z<9sJN,[MTKقJsL}@:Ƙ>0L`)Xfj+1۾lt`i曔/䛘@&4ΰhrDaiL+W i=2b[m/:z;|9K{9U,Tb-O%qwAN[:[]V^认#(yj}fFS:.' LL{zU.?.;v8wS!5{1.Ȗ`f+mKˬn<|?V8ʲF4MIU&G˦gtmQ=%t%Ο4ù,_ܐrc[aUM|Ttm}ka!,I/7Ƴm3rsyi-Jԟ9,2];o8we%ϩolĹQܭ 1 6©!zo M{t%l`{cMIIˏ*&Ql4uH}mk3_Ȃަ^h30hgR;uiQs 7nC]NR> TqڧttHjYx>(Ճ Lm >|h QPZ),dp9q-%$ 9q-6ZV d>QfK 1\2VL()ЪK?$ |Rj_mN44G&K ޯ$"UJbD?<n5 endstream endobj 374 0 obj << /Length1 1391 /Length2 6067 /Length3 0 /Length 7025 /Filter /FlateDecode >> stream xڍtT.(1( ! Ct70303t7R4"HJ7tJwsw]5k}~~~8 P-(jIDI`h_DpEPDBh Fcx8@ĥ@RBBa!{""R%'-@(.ElWwOt+ m0v" 0(%xh7) KD dy`hGEzB]&$9PpC= 0 0p;(`u $wٿ ࿓ 0(@WEK퍾 ~.(& m1ߝ*0f H% 攕vWW("՟ `f/߅= ngk;7C8H9@1{⢒; q*o1!!0{(HhsE`4:Yc. XaF^v)j)( ~ 1=1$yHH YF ۆr?b_{_sYKQ-[ A0Kݐ0\|0@c TjC`UG1F;`,P*0o q#?_Vsz׷%$_1 Θ !(>WA򙰘8D}H0r0zV2(G1)̌{׵ 0.hf_?vx [ BH&NM+噽,,%I-k-Uk.|Nq0 (͛ƺѽY\(~ĮFLi|pF__|WxR -Cӵϙ! ʧ,&Yw-/Դ:_Clrm?RX!fEWk7ũV. Z^Yg?03D # 3CFK*ضT}]MjH)X{/O9ZuTvf.bUk, 80aK̋CӴ&g!V/>[K(@vC@ w\&B>a5!ɯAm5Z_&{3 }>3[Փ==X<ݐ rvOzKɓ$@))"-.- h7c=lǫVnGvkncR"#1*h1IeuN,&贜i;&g?4}΁R!{:J?Q<."1AE!7!d84cLQ-9㚳&8o }"qI>D5/h\kT=싏ϦEݼo3Ր3D;ĕHonq%hP zщr - g)]̭|fܰnXr9,Oq|Z$+#j Wq T1Z꼟J$M8=g,s|wAAMo.0ĥ}p_8]*),*™3F/CxG<=]n"kڃʃIj'bD ,(>dh{dz/ FIhy|Vg2ج1%k嫱X Fst<{wc`īTz\.{m>I9R,Ìʨ U NB?Gn`2KۘAaQc }ӵ],aܷ{ Gxqwʡ^-}*"Vehj|gR@a H[oӕY5 C)9z7s})5^|Gr, `0{/ĕ#z/MX&zI"+ N\*l(!rK~$E R$k,tjEh6~ޖ0LZB#GtK3bvY,<.0©[i)O-BZ0fGQmgt.[D48|6Q,^ȼ~1DbLPLN&Nr="~GuS<7ziyB1}L㚥jlCˁeQgHR{R)xفm_:9Snɿr/;K[SǮ،!/1*rִ.NN=xs&-)̭E,>8җ躈 q6s |V񚈦>-!>b,ڰgH6e|VtaAn!vY0eҨ8X5lwX?Vޝ k׾ݱ!cRzAur3]@ >b^pkt]ڟ؂Z_RTVe_G*lsuG-sy/As)*C4cE\ mp>qwj-7=-?ōͿsolgofC ʙ_Mbrd:HwPJUn'N{=&Q1V|zطA ``bY.3v]آ_B[,OAb^q,rMgYS﯆D.l^?39:n8z0i-׷[Ѳd[BqԞl`#j5y>vyg:&=AS ^^rHoM|sg,*F;2qݞ©PKjUMEU֍I!& Zg]RO^YBD̨\PIanc^"/RIUD-DOC@@us;w*MX)z$;FUJip4PRm}u廓/+)ɏ[xt8q#M5DͲ^d c5掌tjUneZQ^ ^ܤ}dxG= SMhCN-tӀX2H Rqkq?^JķZ-[9ko7Իu0mW4G&5+ԚlW/v"Y7 |&Ʌts= 15ӧ k*z?X\C͊N|ϸU, ޘ3TDŽ~rnxsqZK͎Mw2n }RcΪe&']s|l*Ֆ֝ ͙Q=ΫK.5GC{?b9/zMߠ˳O-,! ֢uS]c~)DH> (vg\< a  -6x*iĈj %5)2'xbZRl5PHeIMo7u y$qܔYC]F7jX˲?[tJq `z+&LTXL5m܌JMritsZk[a #mUR%j=l(;8 F@r,"B)͏jkkg|6SKe}%T¹eE͒39lL_{MDzHjU|^- FGWqiS̈́<1~|N$;+otH#:ƺDbB);nbrJ"єdx2ATfóyuGř8f#QÿDԛ P$2Y(y85-?EޛC'e⚒ 8HjX pL"N|M~>ng|x{JY0ZEīEO=| ӽksd5E2;m5$s?۲LrpStNN|HƔzpc*͎DBd/H5;|N)f˱(id|'he eD.ZMf^˝U] h BOHG޴c{/=諆^̔G6{΢Oqr<5sΥg-~e?N nULc=B:"u?[Qct2;I1!E5utD/~p6cCE(;giЫ !_7 (J]̃fql?X'U=dž!ʋHX yK#Fj:|IXG6}VK0!_ؾbPfXtO>d_y NC:=9! `дu..fsfidab E~EE^z SfK[PvÐ7$_śTDO^Xk$:fߞ\Tm٪0OV >m+~Iߖ8lVZ\8 rV>g:yuԉ> %?*1M endstream endobj 375 0 obj << /Length1 1378 /Length2 6060 /Length3 0 /Length 7008 /Filter /FlateDecode >> stream xڍuT6-N etNam ) J(!) "%-HHt<9{vu羮 Ma(; UM,e"" 1)kp )h8A8> pEDDDb""r@5'uPH8rA#2zB҂Áʮp4 A!XG+"4AAp?R;bnr^^^ +B;( XG1G{a_B\& AÁ8  GbpH h ?`?A߻DoD`ru }H=4a@ qpObP6BpE#ܰkD_ip\]H,?5]:#Q^H{fkV 9@IY)) Y : JoeMrㆀ  b * !X'; s-EpG/  kR3}**(oPHVR(**# 3! j#Q@?_{%_q. Z8?$D;_Y_$4<\\~y7#'}NZVCxW A#HD@xa,e~I0_\p:/8:ҙFC|"8:'$ @aŅq3Qh!3n z8οU {áqvӫ*ef/oI澶D'YvEIb'9]qWy+їn8Y1<̿y4mݖ<޵-{C19 JG/Rm=2ILyl1~..R\xނY]_P1cs[ b-8b?XZS&PfC8cEpB懙9];R4:l}=trt1x*%I]#g !]S`نwkXcΕG{lDJ!Xv׫ԢMQy䓙-5:oJ^ „y {sG =yL?7x797+;8K^IȎfU8'U47̧fnH/jug$s{ twϻ%Uy+>+nnDþq+>͊@d 0 nO.qQsc =(*kK^m~cw ?a}}t eOH0|Pwߡkawо[ G(>\(Y\3{DQЮL]ɫBsOQAa0w!,_#$+$.yMaroUg9\cV `+@4, R%L/%S=;C:9nɚ?\cs!lwR֡1;>r\ѺuvV>LMdln Und7lԆ yh!y"? mn7:x_$V]$} ( %侦0PHFHHCTƢΦOݿQ$|u |"#Y={бK/?WĈ@(G˒@A@:U&R7-ENК}#àNqV3:7G-9,ˬ+T;YUD@Nڒ4(i!;]Dzʢ޻C|`![C}C&ZaZ.1pf7t\s:$_3UJOl~,ƍN0N@c҇yeSO؊W^闒H}SFt͔% y#c<"c)5/1g=}'{l>6*yODj"tjxĚ #.*-LZyU+(K?- Yl@IW^2}ˢW`B-Mڇ@N@r=Ƭk{ܻuq+VCdKnuwNKUԀTgjMh^mΈs5c5 F]蟡w+m+)U({;_>!:#\\O\Fp+SG:CSͻ16 V&g͌3r- R? EG(:I6; x ^zVOY0+nZ5F!T:%gҐf0)ro()ؾ n9q](5~v#ƙ6 |k`rŖ|#_7?fҥt3wA4},G#͕5Rg;wIBuyY;y:I)] ()me2PˎE޽Jjr?J)T|{9J4b_OWM77\\Ӹ^4^aиcCavM<ڗ.7E<9Y ;EKsZ#CL־ D}h2o}iȓ1HS4m s◧yԦ땶>r(3)_\hCGO3%iX3p N=-Un޻=Sg3\t_!K9#QB+:Q=uYa_+5׺7(tyiz xuA̭I(ܵ@ƵՅ)do,pkpR+j>69d6-/ICQ/ Ela0IkQ2xI~JIekVwtRZ :iͩ䥄eA! k[E5C'RG).^~%4:ߜP'p}nrh2JA mƘS\tQ1{Y\AȭޝV"$lzC "5-|,/9y2_VFmǎ$w pbg}ӷ"JG"CQL/ZĄXc,$lC>M\OTDtTUfzHK|>`}WX -˺A(jo}R2B[Dq.F$ RQ} -׷)^P>7cP\Myo>ԇ~GUAH!ӵLJF{$(-]rəoZwd:sܣڕtUчL$ʖIAyn ] !mW( zB ހ{M֙Υ;gx-r?I6T]dpg-K, z)>ׅt $W#"Z7t@60T9~LأG3ɱ[$߰m{>sJ|h,k7p=>ev؇8wFw 5Vb<t9!][0;Xh3Y\^^s.㉖$K"ZjH>(|9H0NClG゚8N=Bv}*G ܻZ;&v0,bp1~B E]|l֏d,8Ha9&aT\M^zd\#.l;MI0=¯uOй;\CvK\B_gI9 Nj~Ě[S/[Y{ڔu EeAkQd/H~!מʗP_t} Nl۾sABd8vNi/Rfv_uw&N3y=@;˓^ܐ%ԑ~r[<ּ90(wuW0>Emv3TC*|,ɺ9a<0#U/_?0kX͏=k =ь"҄w)qJ[ {qꛜ:U-O7z;{ #}QyH7'i=yso${9' [\‹GXaGPrٌ|Hz{G LiΙL= 5J:#ͼ;Au<_ i k[+3QxN"m-}+"-פ( !H<Vn>]rk"ggW2}3cyz(el玔~7t}<*r܊bUpqK#l+srwE.(o&1a%TXTh4+'ؽ洈/iD9,*RvL\iH,5dyH:hг%)>)q+i1Rw0mٞkd^jӪmnň[Dz* k&S}iBF|]}ȖjNc<1enADGr6Wk eIpSjy'(LM:JgO~hRYߙ  Q*<&XNJn>6'}A5~~ұjwʲR5ˡM> stream xڍPҀ #%5Xp[p.ݝ஗-}ާ^$J&vF@ ;[=3@T^M OAfGOtp.3d̬ffN&&  xb&y-B?jc377'ݟa-@dyhlh P3'59d`h``&@CpT@g  6[c[8P3:k c㻋 *-Pe,0307 `ja (J1\AtC[?  - , ! 0|,A Gc5ڂOh~n_6L?Z|uJm.GfؙX9 *aog0}oea |h ^V/33L,A#-?@ӿ,\_Ǐt'?QFJUCFsxгYؙ,ldhw5pU9dgo,t&v&)#ߊ$Se7v}r@[ o TM,lVd ¶fMQhd26kjc߬-lJv0^LLGdV﯈h53cX9nwN49F[;л G/`CqE!N? `/q2%!? `'z g %*{L?^=dse4'2g2ſ=տd{%662 Sؿݿ e~o_^/|_^?_Oi2vrpxZ\Q@cy;c@˚*.{,lHװx|Wy]',oVLVz)78K}I9Vl첬)xd ; lNwνj1ybS#˙e;>HD3'%vrfIe>/?f Stj?u+g'ɆǤMM>~4Ic҇% 8sϼ Ĝ0)Rj[(78}O[zsr?* A^)Lʎ:a{_ n|_nɃCQSpeWRco ?) C~m҆D}=XEeլ.NkCt6`=QH'%fCdHP;2XR:H H0ȉB5EK {\ 0ʼnPUv4մ /DnU?`!SFu&4I4\FUL7A㘕$J~JW񦤢2|SQRv%v`,t>Jœ,;c Dx(8Yl kAɒJF)[yZn2 K~>[I-݊*€6&m&+tA>Xږ榓(VGp#Pvf*ƧOjIk`TEu ciC?]\mdU_32V$&`-ʗ rqG&~.$⠴-Av8mVLZ8P a:xʒ!!CtgH`aK+ǽ5aL _i-Drѱ ,Q,TFN#Kp?ո H k}OieDUE|e򉈠ܖ4ˢW)8p5Š,e|Gh/GRrZ@OG>I<^K܌K[5M/%=ZaK`D*FW.*Q^k1^Ҍ"!|&h],IoZ0Tf4åG<:U(YZ $n9^sp:z3Ҋ ;drP].,k >űvw] T,ŜN}qORQ*/ VJ+ 6eAdkZ[YoyXf?Oa-? .iq|bd #-ǾvXZ1v_h&|=G9?yn7 敩OQG1 ŰגeIvLVZWqezQb1ﲍob~?.uUXqMHVƣN[CkLj*azh_EV!*4(/W o3o0?5z4z>^W}*`܋YҚ諙ɝ,68|6v<ӫq{-a^}|=Jx_oGrӗ)ayL9}W]sg~M/S]jx)c Hr\F- ֥~ݑFT׈K<Ӥ1%>!̰t;rF!^OJj9βv1۹yN, - BOWxZ{"2ݯRP(mT[>/n%n}Kqw šg%ў&jX s rm[J|D"1 A?7в@zoMt: 6NnʰO20?QsQ1˷x̺6%hmXkJ>a@T 刳QOG Ef>D*٠fw_;0nZPP)ql`<dieէ"N)|@3Xb ڵg4⬥]ӇlN IJa<1>hINHK$K܏[ ]ϬC_s{bVqFD,>6Ra^__ZX= ~ yZ(mݲ="CÊJ)pN D*XY{o38<j$V5"a9q6We5K6ԾBUpԝ+0V" I9CF#j+?ENrqq֨1A)̣46ڥs5Rxx,d?/(\pWҫ0%j ;~16Nb(_lܛs˜{JpadD#KuM?*)!ʂcx0Kl' Ú0-BS<:J #Vb]]k^Z([qIY/iZ0Blj " f[+==b3 f$1l06Xi`sm\\!$BшjzSc* yu>mݝޓln{Fĕ(/C<_Sw} .Dtt&I*SB0#a<ǭ凞G FН~LvFG^2ōf9vQJݱX Q:Z{)eZxv#?γHEg@YT|=Ǎ[Dy>gXXODagA9Xu+G~kgH|eC{DDZKgjiL ?;2ꇄ~VZn$ ?X/Zɒ;;E"!*5y>!)Ȋv+%.SfëA=50_YNN$ H٥r H=4a$d \@ϡűYDh}ye&U"ϝQP&|B8uk[ꁼWy2 պ'.6݇r#E9[ƅSVqR?EOZ`RRa>舤A[1,j}0M?EΣaT#]N= mֲȱ uBvBErmbu%o5=5P8:,L֌G@،Ѻ5~Z-Gvv=`^˱թj o)zc?BV`POEU-Wn>+ieK f@N ,\@[+T5@ ҹc9*gj=FA:\)!5u; tWnR/z nRHi@Mg %#%]$i.a x>LjnkF?Pxw91w3dOT/ۓwe 4F&LĪ`5uLV2,;|hX]W)l_`X>E6*:kXfBZ+컉S=/M LCu*n萿~_; k>bS)uqLڗ7,J - 37U9˸jz2=L;ZE$:VwVEKWc3`2u7sDQT2)[kМʾ:Vw)oWIT tHCuޯZle !=N~Ƒ@SB JQ\9ZjnƮHh 6+m]4ChiMɭ(^߹ɔ+t)CiS)U}CN?%~= 8˷J4ðݷJtZo.qVg|LmFHпFWU)¨3.=]?:"m *Jݦ2N-J.f}K0-^⊿dIiJwϙKeZF-+PG6 _2 X5ߋ~qq_<2 +r3QzV܏=6oOPb}x~zS`>hR3} bXGS; 5\ ۈIkffd:0);j*tv3:p_MK]> x=I8H5-fxOfcG}9aǙ3÷Nq]exc`mOa2Halֲ##EҳeēG/$W %Xyth, -C<C8;h҂}mBjȄ CqkÊ'?oBl,Gd̀zv<0|Z|rF嬢~&piD?i^ti᳹SD~=xe!j4C-"$Σ96f_F"/[nekCEn%m}FnBrɃbG#8;bqu51t8*c 4}q)J2#k/ t[=REhU{!T|`~ƓTΑ2fA Al=bW#T|yi-tZ=O-i+C 7Nʇ _76>cp!sTb)mP.G15u ]E c)<Ȉuӈ 7uOO_K?<}9Mf,~Yƽ$nDZKo6B´YۊaTYMD vdٺ8uȬ]0v]'WƦp ("dN??L2\HxAboގ&c߇e yu$W36R PW4yG6|/_ce X*)#3/}*^bN\TĎ{OF_Me!}ݞN̘ܺn ҵT .,L7eVB ez͕;YA#*0"`]@t} x}ɞl+l_FQm36koi-TuџZ2"=,)k~F[}/>v\8 ئp l-cq]I<շ57 Y߻_!7D “ %Z' D~2[^w ˄D;_%NR\bP2*C#Z8kC&FdQBF[THjO1bfz)<۲ x]vܞ] 'cgx/S0x,Ovbb(;?OCpǙ)k2o]K?d(c[q~HLI B99Xu7? W]oCw)- 䂸3ÒPfER \ 'kZXu0F߬#ݍ~ļn>P~[~/%~r@Tfv6o|i6ODsLsOzJ܈u1xY,i:K 4=ѵ`9ڷ-X%, ,oω}uD_䴊|gHK`?`Q;P3jp^ȼ"5ҧ- vݨ#Y-Tǩ3 CRbJZ蘧| +o{J! 򾥢;eQ._*CpaE$dzPY!{LO$n!@1Ѩ*R QY%q _$J*%)yãOH2SqF'X{ @؝VCZoiR/Vh9Zʕ΁0l&|K͖-l^E9uC^w=)5ϯ=8hq=iddwq&Mymũ<>1$ b8U5=4ZVOkR[?Ձo!uFOе+&&+[he@SN.L"Pu](b6'D:#νuQ$H:Uo\#Z*!YÂqz!Be -i!U&DO7̜%{d? xWhge~8=߲0P#V1%ǻ1&8ɚ\ߙ7!N*+z UTC6M|5,F&n(dx3W\rKYN+7pᾃo- t1bXp0؏Tc$L7a%,vH< 7W)sJr#s ' @&B(4# Ɋ9oFU֌{F4gP`7ʣ(f{NX77AN:MZ,#Q'/󵴚3'OG|$CMգT}SpA}޴.԰=M"ֲF_zEbf`oz2f6Nh{WyL+LזA&y/ɭݗb0pl'%01) zogELbwGv?AW'{"."¶1_hc3 ;T99_UMVonו5QXۄ{"w.!]CWfrw̒q7vBoB7*oGuH㞥"+hUh ULiQ7MFw.#or+;ox&>$P8{/UkAM6Q%#0]Ctx g"yw ~r^ XTm_Ǹn\c,qUU9B_bƹn-o2'}A!k}ݥb?yDO%u]mMIX9(*b;᪳$џ(<0PH*.t ձ;Q9ߤN|>mmsFN駺IA8C46h {®."FW8/t> ߚC N^w;0`ZARH5V/Wɺۍw>狱 !Boԡ&4HԄJiFTEVIJX(=򨧯?nGCMFi bB"sxq~cߺL#NdVBxs[fAm37IQ Ұ6a*$:m¯Z9tl&_/)p[y7؛ŴGm1\Z usdcJ#N\C#mx%>ڏmO>Xt VDzCJ*s( dK= i@01`u7(!0,%B/GO/j7:) N2$#AJo]hs2Æ?()HmꑀP7%<|K(MP16Ӊnŧǐ>%sI{?JF[8HHP ;sFM4j5Eeˤ}gf57*(vwq ,t9ZA?,!S.fVoF]81 bN  i/і cb!ۼϭV;3tbbJ2BiSIf-s_Ei?\Q0BdXƢoyL" L~2rXB=/ih9rN;XQ \8aA~z&s4ZV鹄:*FԌ"٭I7%=וX`3pf`=$Sz9+IMQxH[ni\sOcq^oǃgzv/)Օ7^A5:0^[KԸkBy\Qnn"I NiIK {X7ڟ42ʂ<_~tF iߐaN;hHuMHʗAdEj%Lj;,)~Ju+{IssN 1~x/#.o1,|2f>G\J kyt&D9jo[bP*+,}-ݥיsJ>yw,ՊU31w|ۿoqD59-Ю)}iN(m40&v M%|+1[=enK~|zl lK%|Ec9Z5u#3kXe53t\nb4Va5"r|zc򞳩s}T]KL\ܣ@#LFjP?Q+?Ro TNV ߜЂ_yJ)(C0>G9pVY" Ss1^Rg/ՀJYwn;­Z'3~ؿA/}eJr<.ԽQlID_>.˼'܍ĈqPhNĘa"l4[d)(qRBsdYۗS6Ma~T\mÏןoXyޭi<6ٿEԕ,4B#YE]ᜰϕȬ3`w s~x'W5T%ր!0i梏b ? »XAQMP^4OCo>7B߇_*p#=syȜp߼#8sJl!*=㰒J\9G@5# 08?ۙ%ߔM_݂$-7NZ_ʾ߃K&$D2aɆpoP2FSXdӂ+8k{OVU< Kdm s Ku@(* _-50;}5{B]$s9Z/uWV:(j^PpfԼ:šO-WmS^{$z(E.|MQW+6$'%D!FӢwJb?]'H-mB+:`튱Af0}U< hj=@u~#TjLwmngσ^PPa+3'*rb~m$2Yc"(o([7RDdCUi23jnv"ܑy!-YШõ< s_}y";J,nnK`ETc^1D0PJT%cOP~'Ry**=w8z endstream endobj 377 0 obj << /Length1 2648 /Length2 18840 /Length3 0 /Length 20367 /Filter /FlateDecode >> stream xڌP% >ƿbv@g=@=`zOZ,,̦v.Vt{:Elj3"@=3؂́.`7{ 3!Pqc#ؘ_v657ws4[,A@"+#/CS[) lwi15)\̝A.. ۿ8f){ ;; _I{{6>A { ˿hX9hك܀rڀEeV@W+++/;zg+#o%_b0?GG%d Aq1u\݀~>*!,@3wth3` ?6_?d0 {[1ÿw0q98\<n>nFQ5[rw?;c);=XX?.f(c+v[Odxn\;kgq 7s5 ry-TAZ-f0xm x$V,Z2v.n"+xع>lmz=f{W `בrsXSX$~#^o`/aHFl߈"qX~#p>O7STxT#p>O78,oE7/u-M[bb~[spZdK 9 `fc:V99/o9;(\8-x[_;?⏢.?R0I [?e\,?qwropS,iY(/۟9&V#V=?M>^Xe? R? ܲs{cתփdߩ+ՁG f[ ~9ك|G3Ôoyr;h7,NÀ 0?z\!l~~; ]`q} L]=pqO# #_[0OVݜ]t߹#z/: Zׅ~#`ڙɠc &'xFH/ʖ2Qk|D[ZqN;4TёX"&M]g'_ V.y|'7^TB;~;j5 HOLqZJ >.ù2#c{_aM'1 q诳/x~dw&$'OSV&-bm|w@Q;8_{=Kn G:#o 2*-%Fon#,|v7\]+MxXnAYi_|pV#-.g=u81X)uꆊ_! (j$ 75|fo,Kk`v}<)Ux jM*2l&6O: ͘“W8RBTEL1RmqECÑPQ4̼ӀthkhY.=-AH\BbI89^m446͑U9TO#5ҽ"V Qs-ݯh +6 ƉRRg/yzE| ҡ4H;Ȧli[ #jSLZ1^f6~_%m\ߍ3:HSjkYիN>^Aavh*-ZwQ𐥦4]ϑZyhj@!g;gһ2G8pËyDq5yVUTQWceG@_rrwtU~5#Q\kFAgpM@TtjCu}MƠ#dv|2-}6-Uj*xyPe0SH/{KpCrc٬a#:jf^<#G6\q{)m doɾٱht7h'gR?bXPrsxQXfiuLX( U!)OXC|fJ^nֳOMvJW/9ŵ%`!}X 3#g3x7%Sj'6?̐m{uSr9.i &*b;"ڭI0F5\|Wb' "CG{+Ctu:4/2Lp@0h6&+ȳ.ڿ? c@4~| FRAS؜CȑZWUfWaWG~.t`Gc:@}FamiEwj-ljR,%/pVfd_]F5gS!$͂Gu @)&E04;&z55*eMɗ}&7[A7V4e$kB0zl7QZ]3XU`5L|Bi%A |]LXRO\$; ۞rK-6mhVdo*)ooe.a&H,*Bu^X=[@C1;wanuvN i|N(m0s}1/s0!0ˌfKiٺ uĬɴa~p RgH{ +.Q ޒ3D:dS^{`3'WIU(!&d/U{ZH0t̮rDDгB;}  Uz31H:΃ȧdw qpq~N@x:a TBo(2,94Q!2&x#!y|jbjQaanیpgj:=Iq 7:;hIU-To%q- 88uNmzn%hX~,ҭ{6,i)c&#X\F+a,>Ұ)yʛ(.w&cc󃀉&Jf(eIج/e_W3^8y0bdhgz_PʂPzɫG7QTzS}?y톈6vޯ~z$ O||;;Yċ:,oǧ,}(_#Bih؋ ;8>v';"\ 7pj!Ż`gbH}T ?B@C+ոnj5 R?VE$ɢ:-$& 'YN܌ R3-4RBɨVŠeR&%Q,96E:Y_jɰ]10B=/8)eMZ ^kd+z@ .+w%7%Nch{ W>Y馶ʿz)tG(0VF1:6ʜU7&ר܄@{!fHE+:dˇmrЌ"Sn&zNM~pΜ=rƓTw;Lg5mוoWuUhF;+8]{O y m~V(j&f ȳ|p&s !fAr0B ơi ]QoL?7~hӮHwꘆr՚6Vf)̴=g9ḎPTEN]W¸=}' 7[ ~vM\x"0d{O,#d }7GBuOPjR-mԞU%?ے [TaBFoxt L5Td s3 >Cp ɓh^>TF@m4ڷ`MO<}a Bz:tڏSX*Y:я fw>&n8WT= Oa<ÕI_b.3l>!^vXww^[eh]v)WZNHճ_!}1p gA!Ȇ+0,E>mV:փJtji<=Q$hewĥW0%saxd(Yh ϵ x3xr3nMk\xGia:uGXEn {'ۋyŒcG~mf.\m->Gfs6fAK_zJ& BQ4CZb+(IˎY!72x{3xhs/-3欃J"LZKz qNWJIEWziJL} '̓4l>r@ Ŭi֨Ʂa]pJ@ȩ~@@[T7xxR.C݅ꫣO{z8-fDt7bBhNLi%AJ^. ; =8IMk>ew\qVјޥDo+0X< WTUὕ ~ cDl2}'/4 ԜM#W#LpIYxv[/@s]6 `T&8E{+ࡇK)ȋnh:iDHj"R܇]k02.m//}ȚKg{Aȥ)ZP%6#A@$cܭXƙ8) HVGr'(e$uR%2Yu0vr,kj#ɋyCnp;¦A_9,[tVpaCpq%-ͅTAP.?tx_b~HU(Vi~hP\wwߍ7vU^gno.C5QqwρE=]dzV0pp_p5 4M3&##*,qJ_uK\S Q}ζC'Uyҫk|S߱'ݳU>[J0ò(džp3('b](6f_ Pw,D{ Sؾ)2d]qI85WǐT 94C<\^M-;*h \K枊?RI'mQoCQyu0ɱTJlf5?dݱm=M0/ϵtg"h YF*h ="+qr_p|eb[>\߷Rb` x4K~ X9(W,[zCF~IHv4C~4*̠ CEb@'O#buHyΎoBiT.;}+?X51:8 XuL(l'$3_dn31̷Ŋ*{,4P&SP ] Ie$m8Vr2^ǕLdKrFE̓W`JzP@"툷a^Ar&m\ptGTh` zd x"ia T@1ZodxCڹ.h'e'\@NvPr 8Y YcD\N9va;pz-oQbaKA->b/{ 3lhXnv&RMScyCK1f?FiGB0:u9%{RCzJwk`qHK1 B)[E<)u\tԀUZ9}8$CYΊEߔ[*tsp{֞ C*6QY^}Ȭe~8?ډLRD$cz-+C()^f茼%HeGRvvtكZ~-_5CSgkPF1*7QjQz&e{&5$K.xF/n?eu()9(dh:z,X_r$,&w:`W'UTSF끦I =J 2WqVbZ+0oRo|erwyvVNnrfo?JWͱ -b5X Dy~&zSܺ$ؒQ9CB"Q@}ԝ\0w^LOk>4yAi=OqcI~1ךm) b/ #f5z/I3K֢{"jƅpY2a'8)ݞ- rYGE !Z}o`?@"̌aC{'9`W6m|i5ǘ>P>}qi=tfvz [QWGRI l +i"9% ]*~Oi&]v4rY#M L6G'v?3t4*>q(ӥm?(]ɧO*e{jwfU|UpY^d^])eGnיqH9VOKI5i\*d/Jw!IR'u۱0Djd Bh-Q##M0h~JO0sCt*|V9SRz't,feA7PY5v{TEȠc~)JUf})"^p)vs5l\0J.-.z>$% (s)z}dTLGu2䷚ Pr}V+6SMneP#YmIp*],7i+k,s$Vr" }=":xuژ|4=P*T4|rdLfp$0//4IV+.Srd܅XɻF|ߥg{gPƎ/ b*ɖS*{ arc4NAyuZ1%Uvz5&u N-۩Kvi@q#K'r61;Յl:{hI3R`x3zVh`pHSk,;;pt!9軜mFpsF[m~ɩ;#vqXͻ8 ;髆 PsX%h=x F%2񔡯/"B[A ]"ZiB:sjY&S%AȬM0Fَщu,^ņȄۿچS\z2BR&=yBX"@|yآ¼iP,UJRF):P];F>?BE՛qDk{T_㈓Q Uayn:]gƔdSȰXtv=Eg>(֒' "ͣqRv"?:qŒgEi$d|M&G8]߈o׋#эMdJ* 6/3W.I Q vٌq><܂TUžܕg %gA){s3Gf(Ǝ?+Hum-rPi5]t6~``؊`cP@8}hwcR {8ԋ*%V{.' "Lpv" WqyG8q | '~,lؼ%'Vf̳VDA8S<ŇT~}si@N0 #R ߪ5*+X7bgl9Y=D I=MڇUwMxVD0nq""<`+f͵_nbc}ЉN?~c:RZ%϶hc9Qs[pSx6UH4D-Gf88?/t{/p5E97$Y0?c؅Rmh8Jt/iiѝ&KSzQPoLۑkG@ST{': О ! 7o"v-7NDT}nm VM=>SuZd&T5`titB)Dbf斆 kJjLϥʰhcHa֟{fF5sa(J<M/BT)-'WA* ?n(1=)ln:"uڭg,S8)'P]>[~֞RD %y5FzA Te(&W.Tt(?X?9rȝ6YlY9dL.\eXXjoH G+U!;18E :/RԎytV!V@bP\y!O֛0D2Ğ2_1 ̷S(2 O&:IJ+O6(甇 yo2Pգ iÎ'5 B1_VQM?gGx%x^[Ls؝O$F&Ie~#b`ܬil XMaSJ uvIU-v(r%/l/#t F)NOهC+K@"i*"XMTd8dEc/L§ ΄u9N"^dح$޿j|5,Osߟ龮 ${ f8\6YN?C(w\01ݿrŽFd@Hڣ8<LݘpJ+SivjeWwJRARSm9r-ax#{c]wMd[1m#=AR'0lej.+;(P۽b f߇Tnw8G=A=䕐]kp;9"gWTB~G߽c9xfEyZc敿cqlEkda: aEAᄗF0 A7y8x3WwxOi'+x=妘4b!eW6BZslC<{R@[B#GA ?\c}sHR}G\mg"1F7TJO?{z9i))yhNߓPT lmt̙eBrc-=7H8GeZ=>`n :\U{[j tbMc+[b4b =|.!)ynCbQjs?viVe @gL墉 .₤un$tO*cWVU33)yl1 u!nC᦬m4HE/YE]FF^{#!uiޅf2|wQ2"#װ>\F>5ؤf=Vt pS|zUvM ʘn+ >͠ iF2\ (ܻ5'.7,8)e>ALcRUMGYuEh][`cF"'\#.W0+QWV 3*bӾkc:";qЁ{"6޸H¶W]4U2^)MWKm\?R%C6Y(o2%\Xk!3׿ $ADF3[.?KmN`vR5#x9ϸ8V Q.7*o} /?:kRs|T4D'E|f!7RZ†dkRYͣg}Gw~1NӒ\_]b#WւV}@uU@x P:ixcēJKdGm Q975{IjDʖWk7-> 7x1E/K9/֖^c-ZbK uh.K@6]ʦ8:k-x EKhA|tug G*D+U.5{uOwĆ[-bNhZrnX).%=řQ;i_P"]DYc:@hoI]S.?BIk?[}ڥҷsx쩒v^n akqf £i&bnYX;lōJCQ.z^ϋsn])s^өikC:G'gDZ"PZ Ljʨc Yn&'y9E?蚝2ڑ@ oq?.(A:Hp,`p':aʊd*c,KjX,8((ox|M/Xc&]rF㰛ˤv4* I c@t遤ԞQ. l>,RۦVϕ4=Nw_w0޺9uX‌хjy,0Tj㼷!VG(~T'?ZDʚM)Di[cxXŔɔyqHiryH{5²Bɷ*Loyy겓̻yJǏoNJ~VBH!Jț֌_k Mמ9Oͫ!|q1I1Qy&YiEc74M U(E&-ɈzY36T A̾mY<·ꍬ1Sؙ҆@[q=kn \מFF4MF9^~ԓa"8I \uӲYRm%9[֡sr+Uv8b`~v#F]RrQQWama9vEa QAAմBP TQq<]/`6uXW,.RÑ,0= [MeAbb^ȭ'6h2#ߥ&~3a{W/hQS߉UNHycX,MyK rdiZb294&?'*NU.0!Wo@UgGFR;Q ~)Ȱ#rqY/'ҙZnDU!L>ۑt7qJ*C"%6VgvA*eehz̥˃^o^ ꫍1by]LA58%7{T뾃,ڧ:& pG̨u/<`_,!tt,i jH>!w|y5mzy%1|rN}/FҙJ(q%ewT=x b%K nNias(N"5@95 F I* jsZ! Gw?A&YFV^"cuesPXo9 KXn^w| {ŋ"dCu6mM/@.@{{6wmW?ͤUF$ )5lbTR*~&7R*73Ay[o-{p'˭G-/]ԅln4L!앬W 7$hsD+Z͆&a<63gdZ\fnUҴ*dب~<~ܛa(k(JOAgCS'%ߔcI-T~m#!Xn~|\.'y/"J,BإƉmF|IٴC_'9.s bE_!(J wRH]gNT$Ry Ln Aj&/7.4СTflAAf#ywҁ5W%@Z ywZ5beu|1}qoDuGc&DG,XY1$*݄UpǼ|NF~?W+R@W*,h̓ۏ3ѻć[ԝY*FȎנ5^ulNgK{ {ӕ8sD'|8[f',M(*ۄՅ>!BeW^RxP ߯"MC#?;Ko&а sRGe 35؅!C!e'*#QBI] 'Y#K3D)Fz#Fbe&E0BIjXei%Z1D t2;"@e֛ur/i@`mN64Z@'B:Q*<RQȄ$9،@=K:r$f/װeSWZID?CWC]_D!a䠩F0qUc?.-}KT՚AO€TI:C^8ĕg,S>凟l+9*E$rͧC-ԹRɟoRGJ~EZq8aE[sۨa)n!U/)`R xxKy` ͞G+X5|% D~xM2/C(I;W)N=.iDO|2h!@%miӢ>K-uU \bv$Jk5tNVށ Nd\a$c80')gp+utibnJz?au"Ut0}^a`l2}3lxmv9ܸ}Di>%US|jK 9NCo |3vm3z47@kJLwm|>vKT49^qYx'ci_9jztgƊy"$NXh2Қ$TO n}Tᯖlec|OSY|cj7UYz X^8@]Eϋ*;% 3퀵N4 /O iXXO>*)7Hw7l?.nJ²5~)j.O9tn+Y#vDu7^ij3#l/BqL6Bj3}q_%pަp޼4Oc_p7wR4e ooS#V+XnN8qT"5zgkZ*;_膭zPtLkig(+w_ʆ|>X$*Ε8 N dpѤv->.-Ӑ I\pfL)%#zʂ}>[Nj ٶ#R_/ Iيؼ@x%ADtbNbRy쇤%[O0yol=&8}ʡY6$6Z}.GYf[_/> \%&ޒ'!45PL2Z{LQ DbV97br~tFKbj=O@Z/+zy887M[/rC7B4dDKnBZSeSlı99Qc+d> c:߉guRz{ui;{%Uix ؎081mOڇ'S5~Y.4цJd3~y-CŬ/Me$I9c J31`L{u1F|aGM[FWfPaw:T~%i#$:spؒ0[ mL.8x8&lmGF7O AtL𷕻 6qN6@`(kM>~2ZwI 9;kyX7P&ڼ u ܢyz<# D ;ʗRl@Q.ĞMS1 v%Gɂ[X[(8wKWc/t5*Vơ`uj]*#i Wt;E͢37Ԡ!j\g\dRwRS#dWU)S^q$iX w Yl@F7G\M(Mn6e>*zNH_/Yd'oDΪr6U` |nwd&˯%j*)YKk*c@ҠW,x7}vrPrQ}~1G=/B5T+wgbmu=l2pwc c'gig,_bKK8F7M46C<cxFq B׉8rHQfȲ:Ѐd"L ݖLg"p!V]ъܠi^t<q%Y GP ؆tUzdi?ݣ.Dgs2߈xlDuCsw@EK+ # ®mT0ЗPNB Lqݘmu42*o0R„@T$ uK )R0M޻P'x\׫}laZusE+A“PE+ql_(Kg6QlÐ<]Nh$ l cRO2KqBX[1O'?/У'ck> JIcoM 8C5F[Y;AN˝H0uH^_{x|82AJz!?;99bLr(Gi0th?gpNkɠRoοf_4.9A4|߄iIk]Z@㬈qxu)1xJȽ];@+|MD m<];u_ߦ6=b&H;]\ݵ ό(0Qc,G*m&%#RdRTQZӆyWb)q${"5^okW75sw#al_ ; }@FAKuz,Ŕw/ QݐʻG ?Ũ@2:JXXS2ɿp/ Վm"C !D~Fb:7j^{@g}bz/즭&Ex Ji={ {e=ݯL㝱1ʴ^4JKz[$=ǂARvj .8a4 ,JGsuMw |=mח:zL޵QN4QJ; P_Nv?awʌh1pb+؈FקXPN;Cfоq?Pnu _ %QPORIڑ"S`1RtX yBYF˺DɸSw? _ fWt/>o8oW!|C[g Vr,-3r$ b*-EO?\-euW:H6:n@VxHFmrh Ae`mPd + Tl@ gPp}S0 }j&0b6(H;SGH=NpZV/<-J>ԧ4CTf/k6|543/BNS8`-PtZvC }.S|?[92/-sGֳ 5g:[WT:#Q/h|Irs@F@*>nk]~{[2@Qr_ϗux@ H?L qh}6y]:l(-"kC;dLyjX?l-w Mtc Z@jnlǿYb ;M~h/*TKUSAIW$U&j nn֗.D<|A18]nq8R^0q8Q֪t$*bb`YTID&Gjo=aȍ^]Nhez-`!ӦΜvaGkoaU%_rYAXރ4dΈdU#<=2,Ò+5ȯ&:I"⸶ tS 8Pu=!Ōsm.%؏bXh:Qxu@"QY*>Zt]RW;O?2ʼnmLiwXf}ktCu*Y\30I=VРC87Y-=Dφf)ARoQJgZ#4;uܶ3H` !scsVL6_I}ds.^[grZ %ՐNW#3߳]"wqlzh@|HLnvP &Flq4?kNX)@A-翕FB?G9N* endstream endobj 382 0 obj << /Producer (pdfTeX-1.40.24) /Creator (TeX) /CreationDate (D:20240919084631-05'00') /ModDate (D:20240919084631-05'00') /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.141592653-2.6-1.40.24 (TeX Live 2022) kpathsea version 6.3.4) >> endobj 365 0 obj << /Type /ObjStm /N 39 /First 321 /Length 1555 /Filter /FlateDecode >> stream xڭX[OJ~ϯst{RU)\B(%<$>ubj;ן B%;;}3;3W$ T*ԌDAQrE "H$ 9!4PrqԣZQ2I]esF,AܟI!ʔQ88ħh6Vhi(AGQ \ϸ@k11>AHDs (G(qĤuR"|#H"2<>֔ q ?;9UnRbYդn(YOy2 vwdIJb<=WtYIanwZGugr_tI9NkaaoFp g0&bRE*a䰄eLMZfJ~@ n;ϴ,xcuFD,$J-D쑥--dI5H)t$]!M!+R@r^2]umG6푕ަKkd, K'.t77rĔR~+6IU`1,l _UP458HTxw|vpN7H*36Ex~QwyyA'F!k|_v'>r8tcdȹI#IU#꫹*"/ʹD\aїi~w3ǻͭS/7*tzp}u֪Մ:mѸӃ[56zN6SXs&ɷWk5C\;{Oy}9Q3z-IkpfL p{bf^ Ub,Oi2|Mkinl>:&:Y&ӪZ߁jqgf*I;Sˎ^56&~PQh*TLnGvlp/ G/l:a,.wǺex1Zj3f5 \|mT#_T.h }KdU$MrZl+OXrBeZeXO)TrP=*S,b] >BmZ8ΦbB? /lN$VRkGYiMP.oC8ِIeeH|>gwR=ZN NZgϷIqo=o梈)qǔۈޱJ) x=;l {.+2m#.w ܖT݇s2Am&O| L,|1Y0Ӂ endstream endobj 383 0 obj << /Type /XRef /Index [0 384] /Size 384 /W [1 3 1] /Root 381 0 R /Info 382 0 R /ID [<95B2361A5F82247EE2C81DD8B1000A2E> <95B2361A5F82247EE2C81DD8B1000A2E>] /Length 1071 /Filter /FlateDecode >> stream x%mLe9D!@DAUDP(l6Ն^>DmmR[Ӳ /}hVX,//]?_~:s?yss 8݂sh:, ZM\cF1%J3`0.c%`BDx=JdC.g %ǒYEXp5kBZ"ل2-ìk<".yY"bbQHp[sQxZ-:s&1N2f ʈtY[]6UtGw1n"ٗȪ@԰NVܠ]:7uLHlZ z#6pcϩhawyYh;pܑ). oڔ(ItpO f%=t!5}pΨ9 V-$v8kǘ$^[ ,6;7,W`7'>uas!7J8g]J 1mּ81w_ا8IhsgΑpRZx DQtc@9R"r+ =d.\.^6W_8hqh-Ptd" ;oq| hlA#WX,372)Y]+ǟs 6/va-T7s"ʱ5 R#6[4WbEmV-6ڈϑo"8쾅hEXc-whGн#9D0|ӚǗ!yCq}{~T Gp]Q#8؞Q.nb36 #ʮ 4CyȜ=С W6.?b?YD07mhneA}D!QD#ƨ endstream endobj startxref 437731 %%EOF haplo.stats/inst/doc/manualHaploStats.pdf.asis0000644000176200001440000000025214672315242021152 0ustar liggesusers%\VignetteIndexEntry{manualHaploStats} %\VignetteEngine{R.rsp::asis} %\VignetteKeyword{PDF} %\VignetteKeyword{HTML} %\VignetteKeyword{vignette} %\VignetteKeyword{package}haplo.stats/inst/NEWS.Rd0000644000176200001440000004021414672315242014541 0ustar liggesusers\name{NEWS} \title{NEWS file for the haplo.stats package} \section{Changes in version 1.8.7}{ \itemize{ \item updated to testthat mechanisms to allow for tolerance differences \item take out linpack option in the svd call within Ginv(). \item embed use manual into vignette. \item expanded haplo.cc to allow covariates as done in haplo.score with x.adj matrix \item removed PROBLEM S-macro in C code for R 4.1.x checks. } } \section{Changes in version 1.7.9}{ \itemize{ \item Updated parenthesis in if() statement of seqhap.c \item registered C code routines, per instructions from section 5.4.1 of Writing R Extensions } } \section{Changes in version 1.7.7}{ \itemize{ \item Make test.haplo.em robust to system char/int recoding \item Add all.y=TRUE in merge in haplo.group so colSums of group haplotypes sum to 1. Creates NAs in pooled frequencies because some haplotypes only estimated within groups. \item The change above changes haplo.score.merge and haplo.cc results with more haplotypes } } \section{Changes in version 1.7.3}{ \itemize{ \item Remove special characters in comments in R code \item Replace S.h with R.h per note from Prof Ripley 1/27/2016 \item Vignette manualHaploStats available as pre-made pdf, with R.rsp \item Ensure summary.haplo.em prints haplotypes in alpha-numeric order of the haplotypes and row names are 1:nrow } } \section{Changes in version 1.6.0}{ \itemize{ \item Removed .First.lib and .Last.lib b/c handled via namespace \item Updated test scripts to set LC_COLLATE and check values after set } } \section{Changes in version 1.5.6}{ \itemize{ \item Removed glm.fit.nowarn because glm.fit changed from R 2.15.0 \item Added haplo.binomial for family=binomial in haplo.glm. Will work with either, and within haplo.glm it uses the initialize expression for haplo.binomial to ignore warnings of non-integer number of successes because we use posterior probability of a haplotype pair per subject as weights } } \section{Changes in version 1.5.4}{ \itemize{ \item Fixed haplo.glm bug in assigning names to var.mat when haplo.elim=NA \item replaced printf statements with REprintf (from R_ext/Print.h) in verbose C code sections \item Placed raw manual in rnw directory at top level, as suggested by Andreas Tille (2/11/2012) } } \section{Changes in version 1.5.2}{ \itemize{ \item Added methods for haplo.glm object: anova, residuals, vcov, fitted \item Updated haplo.glm to work more like glm object with methods \item Took out S-PLUS functionality for haplo.glm \item Remove notes for S-PLUS usage in documentation \item Added eps.svd argument to haplo.glm.control to give users control over calculation information matrix rank \item Remove loci, geno.recode, allele.recode, which is now handled with setupGeno \item Add test suite with .R and .Rout.save files \item Major update to user manual in doc/ \item Suggest Harrell's rms package instead of Design for haplo.score with ordinal traits \item Add NAMESPACE and NEWS files } } \section{Release Notes for version 1.4.4}{ \itemize{ \item No major updates to code. Updates are mostly for Rd files to keep up with changing requirements for packages. \item In functions that use 1-pchisq( ), replace with pchisq(, , lower=FALSE) for better precision. Precision is lost subtracting a small p-value from 1.00, so computing it directly without making the digits line up for the double-precision subraction }} \section{Release Notes for version 1.4.1}{ \itemize{ \item For the seqhap function, adapt the permutation rules used in haplo.score's sim.control parameter to ensure accuracy and precision thresholds for permutation p-values. The permutations are carried out in seqhap.c, so the parameters p.threshold, min.sim, and max.sim are passed to the C code to permute the response until precision criteria met. No longer use n.sim parameter; now sim.control=score.sim.control() handles the permutations. \item The user manual has been updated from version 1.3.1 to reflect all the updates since then, and will be placed on Dan Schaid's software page, in addition to its current location within the package \item help files for example datasets now pass R check. }} \section{ Release notes for version 1.3.8}{ \itemize{ \item plot.seqhap, we handle very small p-values better by having a minimum allowable asymptotic p-value of .Machine.double$eps, and permutation p-value of 1/(n.sim+1). It will also handle a ylim value if passed. Add more useful warning messages for when p-values are fixed for plotting. \item haplo.score, add eps.svd argument. In some assocation tests from haplo.score, we have observed extremely significant values for the global association test statistic. The degrees of freedom for the global test is the rank of the score vector's covariance matrix. We found the source of the problem was having too low a cutoff (epsilon) for svd values for determining rank of the covariance matrix. We increased the default for the epsilon from 1e-6 to 1e-5 and allow it to be changed by the user as the eps.svd parameter in any function that uses haplo.score (haplo.score.slide, haplo.cc). \item Update haplo.cc parameters. We remove haplo.min.count as a top-level parameter; it can only be used in the control() function, just as in haplo.glm. Note that haplo.freq.min can also be used. The eps.svd parameter is also added, as noted for haplo.score. }} \section{Releast notes for version 1.3.6}{ \itemize{ \item Add haplo.power.qt and haplo.power.cc. Power and sample size calculations for haplotype association studies. Calculations are performed given a set of haplotypes, their freqs, and their beta coefficients, which can be converted by log(OR) for case-control (cc) or calculated for quantitative trait (qt) by R2 variance explained by gene association. For qt, use the find.haplo.beta.qt to get these beta coefficients. \item Add dataset hapPower.demo, an example dataset for demonstrating the haplo.power.qt/cc functions in example() and in the manual. \item In past versions of haplo.em, a change was made to pre-calculate how much memory would be needed for all haplotype pairs, and issued a warning if that memory could not be allocated. It stopped calculations that could have been completed by progressive insertion & trimming steps because rare haplotypes are trimmed off and memory rarely meets the max. So the warning is taken off. \item Add min.posterior to haplo.em.control to give control to the user versus the old default set at 1e-7. In rare cases of some datasets that had low LD and 10 or more markers, the trimming steps actually trimmed away all haplotypes for a given person and the person was removed. We have changed min.posterior to 1e-9 and put in warnings and check for this occuring. Note, we have only observed this in simulated data on very rare occasions. \item Remove allele.lev and miss.val parameters from call to haplo.glm. We used to require the use of allele.lev as a parameter for haplo.glm, and allow miss.val to specify codes for missing alleles in the genotype matrix. However, we require using setupGeno to prepare the genotype matrix to be used in haplo.glm, after it is added to the data.frame to be passed to haplo.glm. miss.val is completely taken care of there, and allele.lev is assigned as an attribute of geno. We have re-worked the formula and na.geno.keep to recognize these values when it finds geno in the formula; therefore, these parameters are not required in haplo.glm. \item More strict exclusion using na.geno.keep. We used to keep all subjects who were missing any number of alleles. However, if a subject is missing all alleles, they slow the calcualtions down, and don't add any information to the analysis. This function still removes subjects missing y or covariate values, and now removes subjects missing all their alleles. After the removal, the attributes of the genotype matrix are re-calculated and retained for its use in haplo.model.frame. \item In haplo.model.frame for haplo.glm, get allele.lev from geno in m[[]], not as passed paremeter from haplo.glm. \item In haplo.glm.control, enforce the default setting for haplo.min.count and haplo.freq.min in the function delcaration. In the declaration they were NA, but a default min.count of 5 was enforced. We have changed the default of haplo.freq.min of .01 to be enforced, and the delcaration now reflects the enforced default. \item Ginv.R for R and Ginv.q for Splus. Splus version 8.0.1 has a problem in its use of the svd fortran function, as called by svd.Matrix. We contacted Insightful and they fixed it for version 8.0.4. We include the svd.Matrix function from version 7 and 8.0.4 in the Ginv.q file, but only load it if the Splus version matches 8.0.1. \item louis.info.c -- Prior efforts to make all long integer values as int was not completed for this function. The result was the package didn't work on linux 64bit machines. Now it doesn't use long, and it should work on most platforms. \item louis.info.q -- When the variance of a quantitative trait is so high that the the information matrix becomes ill-conditioned, the Ginv determines the information matrix singular, and the standard errors are incorrect. Change the epsilon parameter for the generalized inverse to about 1e-8, versus the old default in Ginv of 1e-6. }} \section{Release Notes for version 1.3.0 }{ \itemize{ \item Add new function, seqhap, sequential haplotype selection in a set of loci, for choosing loci for haplotype associations, as described in Yu and Schaid, 2007. The method performs three tests for association of a binary trait over a set of bi-allelic loci. When evaluating each locus, loci close to it are added in a sequential manner based on the Mantel-Haenszel test. \item geno1to2: convert geno from 1- to 2-column convert 1-column minor-allele-count matrix to two-column allele codes \item Make plot.haplo.score.slide better-handle near-zero pvalues. For asymptotic pvalues near zero, set to epsilon. For simulated p-values, set to 0.5 divided by the number of simulations performed. \item New function, haplo.design, create design matrix for haplotypes. In response to many requests made for getting columns for haplotype effects to use in glm, survival, or other regression models, we created a function to set up this kind of design matrix. There are issues surrounding the use of these effect columns, as outlined in the user manual. \item Ginv: svd problems continue. The Matrix library svd function has changed for Splus 8.0.1. Therefore, revert back to the default svd function in getting the generalized inverse. }} \section{Release notes for version 1.2.5}{ \itemize{ \item haplo.glm: Iterative steps efficiency. In consecutive steps of the IRWLS steps in haplo.glm, the starting values for re-fitting the glm model were not updated to be the most recently updated values. This now saves about 20% of run time in haplo.glm. \item haplo.score: haplo.effect allow additive, dominant, recessive A new option to make haplo.score more flexible. Previously the scores for haplotypes were computed assuming an additive effect for all haplotypes. A new parameter, haplo.effect, is in place to allow either additive, dominant, or recessive effects. \item haplo.score: min.count parameter. The cut-off for selecting haplotypes to score is either by a minimum frequency, skip.haplo, or a new option, min.count. The min.count is based on the same idea as that used in haplo.glm, where the minimum expected count of haplotypes in the population is enough such that accurate estimates of parameters and standard errors are computed. The min.count became needed when haplo.effect was added because under the dominant or recessive models, the number of persons actually having a haplotype effect could be fewer than the expected count over the population (i.e., haplotype pair h1/h2 is coded as 0 for both under recessive model, and h1/h1 is coded as 1 under dominant). \item haplo.em -- improved reliability of C routines. Previously problems had been observed with running haplo.em and haplo.glm on linux 64-bit machines, because of issues with the storage of integers in R. In R, all integers are stored as int, which are stored differently on 64-bit and 32-bit machines. We get around this problem by using all int types for integers, which are only used for indices of other data structures. We find out the max value for integers on the system, and if the indices are going to exceed the max, issue a warning from C. \item haplo.glm and Ginv: improvement of standard error calculations Under some extreme circumstances, such as haplo.glm modeling haplotypes with rare frequencies, or a high amount of variance in the response, the standard error estimates were unreliable. The issue came out in the Ginv function in haplo.stats, which needed a smaller epsilon to decide on the rank of the information matrix. }} \section{ Release notes for version 1.2.0 }{ \itemize{ \item haplo.em: fixed memory leak. Versions up to 1.1.1 had either one or two memory leaks in haplo.em. They are fixed. \item All .C functions: Long Integers warning for 64-bit machine Due to problems with long integers between 32-bit and 64-bit machines using R, all integers used in C functions will use unsigned integers. \item Allow haplo.effect="recessive" in haplo.glm. The estimation stops if no columns are left in the model.matrix for homozygotes with the haplotype, and for haplotypes that do not have any subjects with a posterior probability of being homozygous for the haplotype, those subjects are grouped into the baseline effect. Guidelines for rare haplotypes are explained further in the manual. \item haplo.glm: na.action, when not specified got set to something besides the intended 'na.geno.keep'. Now the default setting works. \item haplo.cc: New Function for Case-Control Analysis New function added to combine methods of haplo.score, haplo.group and haplo.glm into one set of output for Case-Control data. Choose haplotypes for analysis by haplo.min.count only, not a frequency cut-off. \item Set the new default for skip.haplo to be 5/(nrow(geno)*2) \item In haplo.glm: haplo.freq.min and haplo.min.count control parameters Haplotypes used in the glm are still chosen by haplo.freq.min, but the default is based on a minimum expected count of 5 in the sample. The better choice for selecting haplotypes is haplo.min.count. The issue is documented in the manual and help files. \item Describe the max-stat simulated p-value in more detail in the user manual and help file \item haplo.em.control and haplo.em: defaults for control parameters changed The default for control parameter: max.iter=5000, changed from 500 insert.batch.size = 6, changed from 4 \item locus function warning. The genetics package for R has a function named locus which does not agree with locus from haplo.stats. We do not plan to change it, so be aware of the possible clash if you use these two packages. \item New function haplo.scan, for analyzing a genome region with case-control data. Search for a trait-locus by sliding a fixed-width window over each marker locus and scanning all possible haplotype lengths within the window }} \section{ Release Notes for version 1.1.1 }{ \itemize{ \item haplo.glm: Warnings for non-integer weights glm.fit for R does not allow non-integer weights for subjects, whereas S-PLUS does. Use a glm.fit.nowarn function for R to ignore warnings. \item haplo.glm: Character Alleles Settings for strings as factors causes confusion for keeping orinial character allele values. To ensure consistency of allele codes, use setupGeno() and then in the haplo.glm call, use allele.lev as documented in the manual and help files. \item Add haplo.score.slide function, which rus haplo.score on all contiguous subsets of size n.slide from the loci in a genotype matrix(geno). \item haplo.score simulations controlled for precision. Employ simulation precision criteria for p-values, adopted from Besag and Clifford [1991]. Control simulations with score.sim.control. }} haplo.stats/README.md0000644000176200001440000000311514672355770014011 0ustar liggesusers# The `haplo.stats` Package [![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/haplo.stats)](https://CRAN.R-project.org/package=haplo.stats) [![Total Downloads](http://cranlogs.r-pkg.org/badges/grand-total/haplo.stats)](https://CRAN.R-project.org/package=haplo.stats) [![Downloads](http://cranlogs.r-pkg.org/badges/haplo.stats)](https://CRAN.R-project.org/package=haplo.stats) ## Overview of haplo.stats Routines for the analysis of indirectly measured haplotypes. The statistical methods assume that all subjects are unrelated and that haplotypes are ambiguous (due to unknown linkage phase of the genetic markers). The main functions are described below. ## haplo.em Estimation of haplotype frequencies, and posterior probabilities of haplotype pairs for a subject, conditional on the observed marker data. ## haplo.glm GLM regression models for the regression of a trait on haplotypes, possibly including covariates and interactions. S3 methods for anova and summary have been implemented. ## haplo.score Score statistics to test associations between haplotypes and a wide variety of traits, including binary, ordinal, quantitative, and Poisson. ## haplo.design Uses as input the result from haplo.em(), and makes a design matrix for haplotype dosage, such that modeling haplotypes is similar to how it would be done within haplo.glm(), but without the iteratetively re-weighted least squares steps. ## haplo.cc Runs simple haplo.score and haplo.glm without covariates with combined results for case-control (binomial family) response. haplo.stats/build/0000755000176200001440000000000014673025506013621 5ustar liggesusershaplo.stats/build/vignette.rds0000644000176200001440000000027614673025506016165 0ustar liggesusersb```b`aad`b2 1# 'H,/.I,) +GBW& Ẋ = skip.haplo. } \item{df}{ Degrees of freedom for score.global. } \item{score.global.p}{ P-value of score.global based on chi-square distribution, with degrees of freedom equal to df. } \item{score.global.p.sim}{ P-value of score.global based on simulations (set equal to NA when simulate=F). } \item{score.haplo}{ Vector of score statistics for individual haplotypes that have frequencies >= skip.haplo. } \item{score.haplo.p}{ Vector of p-values for score.haplo, based on a chi-square distribution with 1 df. } \item{score.haplo.p.sim}{ Vector of p-values for score.haplo, based on simulations (set equal to NA when simulate=F). } \item{score.max.p.sim}{ Simulated p-value indicating for simulations the number of times a maximum score.haplo value exceeds the maximum score.haplo from the original data (equal to NA when simulate=F). } \item{haplotype}{ Matrix of hapoltypes analyzed. The ith row of haplotype corresponds to the ith item of score.haplo, score.haplo.p, and score.haplo.p.sim. } \item{hap.prob}{ Vector of haplotype probabilies, corresponding to the haplotypes in the matrix haplotype. } \item{locus.label}{ Vector of labels for loci, of length K (same as input argument). } \item{call}{ The call to the haplo.score function; useful for recalling what parameters were used. } \item{haplo.effect}{ The haplotype effect model parameter that was selected for haplo.score. } \item{simulate}{ Same as function input parameter. If [T]rue, simulation results are included in the haplo.score object. } \item{n.val.global}{ Vector containing the number of valid simulations used in the global score statistic simulation. The number of valid simulations can be less than the number of simulations requested (by sim.control) if simulated data sets produce unstable variances of the score statistics. } \item{n.val.haplo}{ Vector containing the number of valid simulations used in the p-value simulations for maximum-score statistic and scores for the individual haplotypes. } } \details{ Compute the maximum likelihood estimates of the haplotype frequencies and the posterior probabilities of the pairs of haplotypes for each subject using an EM algorithm. The algorithm begins with haplotypes from a subset of the loci and progressively discards those with low frequency before inserting more loci. The process is repeated until haplotypes for all loci are established. The posterior probabilities are used to compute the score statistics for the association of (ambiguous) haplotypes with traits. The glm function is used to compute residuals of the regression of the trait on the non-genetic covariates. } \section{References}{ Schaid DJ, Rowland CM, Tines DE, Jacobson RM, Poland GA. "Score tests for association of traits with haplotypes when linkage phase is ambiguous." Amer J Hum Genet. 70 (2002): 425-434. } \seealso{ \code{\link{haplo.em}}, \code{\link{plot.haplo.score}}, \code{\link{print.haplo.score}}, \code{\link{haplo.em.control}}, \code{\link{score.sim.control}} } \examples{ # establish all hla.demo data, # remove genotypes with missing alleles just so haplo.score runs faster # with missing values included, this example takes 2-4 minutes # FOR REGULAR USAGE, DO NOT DISCARD GENOTYPES WITH MISSING VALUES data(hla.demo) geno <- as.matrix(hla.demo[,c(17,18,21:24)]) keep <- !apply(is.na(geno) | geno==0, 1, any) hla.demo <- hla.demo[keep,] geno <- geno[keep,] attach(hla.demo) label <- c("DQB","DRB","B") # For quantitative, normally distributed trait: score.gaus <- haplo.score(resp, geno, locus.label=label, trait.type = "gaussian") print(score.gaus) # For ordinal trait: y.ord <- as.numeric(resp.cat) score.ord <- haplo.score(y.ord, geno, locus.label=label, trait.type="ordinal") print(score.ord) # For a binary trait and simulations, # limit simulations to 500 in score.sim.control, default is 20000 y.bin <-ifelse(y.ord==1,1,0) score.bin.sim <- haplo.score(y.bin, geno, trait.type = "binomial", locus.label=label, simulate=TRUE, sim.control=score.sim.control(min.sim=200,max.sim=500)) print(score.bin.sim) # For a binary trait, adjusted for sex and age: x <- cbind(male, age) score.bin.adj <- haplo.score(y.bin, geno, trait.type = "binomial", locus.label=label, x.adj=x) print(score.bin.adj) } \keyword{scores} % docclass is function % Converted by Sd2Rd version 37351. haplo.stats/man/print.haplo.scan.Rd0000644000176200001440000000174514672315242016752 0ustar liggesusers% $Author: sinnwell $ --> % $Date: 2011/11/10 15:29:41 $ --> % $Header: /projects/genetics/cvs/cvsroot/haplo.stats/man/print.haplo.scan.Rd,v 1.3 2011/11/10 15:29:41 sinnwell Exp $ --> % $Locker: $ --> % %$Log: print.haplo.scan.Rd,v $ %Revision 1.3 2011/11/10 15:29:41 sinnwell %major update to hapglm, minor changes to Rd files, prepare for version 1.5.0 release % %Revision 1.2 2008/01/08 21:48:39 sinnwell %branch from sgml % %Revision 1.1 2005/03/23 18:07:44 sinnwell %Initial revision \name{print.haplo.scan} \alias{print.haplo.scan} \title{ Print a haplo.scan object } \description{ Print a haplo.scan object } \usage{ \method{print}{haplo.scan}(x, digits=max(options()$digits - 2, 5), ...) } \arguments{ \item{x}{ An object created by haplo.scan } \item{digits}{ Significant digits shown for numeric data } \item{\dots }{ Options parameters for the print function } } \value{ NULL } \seealso{ \code{\link{haplo.scan}} } % docclass is function % Converted by Sd2Rd version 37351. haplo.stats/man/score.sim.control.Rd0000644000176200001440000000700614672315242017146 0ustar liggesusers% $Author: sinnwell $ % $Date: 2011/11/10 15:29:41 $ % $Header: /projects/genetics/cvs/cvsroot/haplo.stats/man/score.sim.control.Rd,v 1.2 2011/11/10 15:29:41 sinnwell Exp $ % $Locker: $ % $Log: score.sim.control.Rd,v $ % Revision 1.2 2011/11/10 15:29:41 sinnwell % major update to hapglm, minor changes to Rd files, prepare for version 1.5.0 release % % Revision 1.1 2008/01/09 19:47:30 sinnwell % Initial revision % % Revision 1.5 2004/03/02 15:15:13 sinnwell % comment in example % % Revision 1.4 2004/02/16 17:41:03 sinnwell % change F to FALSE for verbose % % Revision 1.3 2003/09/12 20:23:12 sinnwell % remove pval.choice stuff % % Revision 1.2 2003/08/27 20:44:32 schaid % *** empty log message *** % % Revision 1.1 2003/08/22 20:29:23 sinnwell % Initial revision \name{score.sim.control} \alias{score.sim.control} \title{ Create the list of control parameters for simulations in haplo.score } \description{ In the call to haplo.score, the sim.control parameter is a list of parameters that control the simulations. This list is created by this function, score.sim.control, making it easy to change the default values. } \usage{ score.sim.control(p.threshold=0.25, min.sim=1000, max.sim=20000.,verbose=FALSE) } \arguments{ \item{p.threshold }{ A paremeter used to determine p-value precision from Besag and Clifford (1991). For a p-value calculated after min.sim simulations, continue doing simulations until the p-value's sample standard error is less than p.threshold * p-value. The dafault value for p.threshold = 1/4 corresponds approximately to having a two-sided 95\% confidence interval for the p-value with a width as wide as the p-value itself. Therefore, simulations are more precise for smaller p-values. Additionally, since simulations are stopped as soon as this criteria is met, p-values may be biased high. } \item{min.sim }{ The minimum number of simulations to run. To run exactly min.sim simulations, set max.sim = min.sim. Also, if run-time is an issue, a lower minimum (e.g. 500) may be useful, especially when doing simulations in haplo.score.slide. } \item{max.sim }{ The upper limit of simulations allowed. When the number of simulations reaches max.sim, p-values are approximated based on simulation results at that time. } \item{verbose}{ Logical, if (T)rue, print updates from every simulation to the screen. If (F)alse, do not print these details. } } \value{ A list of the control parameters: \item{p.threshold}{ As described above } \item{min.sim}{ As described above. } \item{max.sim}{ As described above } \item{verbose}{ As described above } } \details{ In simulations for haplo.score, employ the simulation p-value precision criteria of Besag and Clifford (1991). The criteria ensures both the global and the maximum score statistic simulated p-values be precise for small p-values. First, perform min.sim simulations to guarantee sufficient precision for the score statistics on individual haplotypes. Then continue simulations as needed until simulated p-values for both the global and max score statistics meet precision requirements set by p.threshold. } \section{References}{ Besag, J and Clifford, P. "Sequential Monte Carlo p-values." Biometrika. 78, no. 2 (1991): 301-304. } \seealso{ \code{\link{haplo.score}} } \examples{ # it would be used in haplo.score as appears below # # score.sim.500 <- haplo.score(y, geno, trait.type="gaussian", simulate=T, # sim.control=score.sim.control(min.sim=500, max.sim=2000) } \keyword{scores} % docclass is function % Converted by Sd2Rd version 37351. haplo.stats/man/haplo.hash.Rd0000644000176200001440000000266314672315242015616 0ustar liggesusers% $Author: sinnwell $ % $Date: 2011/11/10 15:29:41 $ % $Header: /projects/genetics/cvs/cvsroot/haplo.stats/man/haplo.hash.Rd,v 1.2 2011/11/10 15:29:41 sinnwell Exp $ % $Locker: $ % $Log: haplo.hash.Rd,v $ % Revision 1.2 2011/11/10 15:29:41 sinnwell % major update to hapglm, minor changes to Rd files, prepare for version 1.5.0 release % % Revision 1.1 2008/01/09 17:36:56 sinnwell % Initial revision % \name{haplo.hash} \alias{haplo.hash} \title{ Integer Rank Codes for Haplotypes } \description{ Create a vector of integer codes for the input matrix of haplotypes. The haplotypes in the input matrix are converted to character strings, and if there are C unique strings, the integer codes for the haplotypes will be 1, 2, ..., C. } \usage{ haplo.hash(hap) } \arguments{ \item{hap}{ A matrix of haplotypes. If there are N haplotypes for K loci, hap have dimensions N x K. } } \value{ List with elements: \item{hash}{ Vector of integer codes for the input data (hap). The value of hash is the row number of the unique haplotypes given in the returned matrix hap.mtx. } \item{hap.mtx}{ Matrix of unique haplotypes. } } \details{ The alleles that make up each row in hap are pasted together as character strings, and the unique strings are sorted so that the rank order of the sorted strings is used as the integer code for the unique haplotypes. } \seealso{ haplo.em } % docclass is function % Converted by Sd2Rd version 37351. haplo.stats/man/summary.haplo.em.Rd0000644000176200001440000000361114672315242016762 0ustar liggesusers% $Author: sinnwell $ % $Date: 2011/11/10 15:29:41 $ % $Header: /projects/genetics/cvs/cvsroot/haplo.stats/man/summary.haplo.em.Rd,v 1.3 2011/11/10 15:29:41 sinnwell Exp $ --> % $Locker: $ % $Log: summary.haplo.em.Rd,v $ % Revision 1.3 2011/11/10 15:29:41 sinnwell % major update to hapglm, minor changes to Rd files, prepare for version 1.5.0 release % % Revision 1.2 2008/01/08 22:23:35 sinnwell % change comments % % Revision 1.1 2007/11/07 21:33:46 sinnwell % Initial revision % % Revision 1.2 2004/04/06 20:46:27 sinnwell % add nlines % % Revision 1.1 2004/02/26 22:36:18 sinnwell % Initial revision \name{summary.haplo.em} \alias{summary.haplo.em} \title{ Summarize contents of a haplo.em object } \description{ Display haplotype pairs and their posterior probabilities by subject. Also display a table with number of max haplotype pairs for a subject versus how many were kept (max vs. used). } \usage{ \method{summary}{haplo.em}(object, show.haplo=FALSE, digits=max(options()$digits-2, 5), nlines=NULL, ...) } \arguments{ \item{object}{ A haplo.em object } \item{show.haplo }{ Logical. If TRUE, show the alleles of the haplotype pairs, otherwise show only the recoded values. } \item{digits}{ number of significant digits to be printed for numeric values } \item{nlines}{ To shorten output, print the first 1:nlines rows of the large data frame. } \item{\dots }{ Optional arguments for the summary method } } \value{ A data.frame with a row for every subject's possible haplotype pairs and the posterior probabilities of that pair given their genotypes. } \seealso{ \code{\link{haplo.em}} } \examples{ data(hla.demo) geno <- hla.demo[,c(17,18,21:24)] label <-c("DQB","DRB","B") keep <- !apply(is.na(geno) | geno==0, 1, any) save.em.keep <- haplo.em(geno=geno[keep,], locus.label=label) save.df <- summary(save.em.keep) save.df[1:10,] } % docclass is function % Converted by Sd2Rd version 37351. haplo.stats/man/seqhap.Rd0000644000176200001440000001537214672315242015053 0ustar liggesusers% $Author: sinnwell $ % $Date: 2011/11/10 15:29:41 $ % $Header: /projects/genetics/cvs/cvsroot/haplo.stats/man/seqhap.Rd,v 1.5 2011/11/10 15:29:41 sinnwell Exp $ % $Locker: $ % $Log: seqhap.Rd,v $ % Revision 1.5 2011/11/10 15:29:41 sinnwell % major update to hapglm, minor changes to Rd files, prepare for version 1.5.0 release % % Revision 1.4 2008/10/06 15:26:39 sinnwell % *** empty log message *** % % Revision 1.3 2008/10/03 20:21:28 sinnwell % *** empty log message *** % % Revision 1.2 2008/09/26 20:12:20 sinnwell % remove n.sim, add sim.control % % Revision 1.1 2008/01/09 19:49:38 sinnwell % Initial revision % %Revision 1.8 2007/05/23 18:02:43 sinnwell %add pos and n.sim to result, add locus.label to input % %Revision 1.7 2007/04/27 21:28:22 sinnwell %minor updates % %Revision 1.6 2007/04/24 16:53:26 sinnwell %r2 to r-squared, not liked in Rd conversion to latex % %Revision 1.5 2007/04/24 16:36:14 sinnwell %changes recommended by Dan % %Revision 1.4 2007/04/16 20:11:44 sinnwell %fix example to run % %Revision 1.3 2007/04/13 18:49:58 sinnwell %*** empty log message *** % %Revision 1.2 2007/04/13 18:37:04 sinnwell %change some parameter descriptions to match haplo.score % %Revision 1.1 2007/04/06 19:31:18 sinnwell %Initial revision \name{seqhap} \alias{seqhap} \alias{print.seqhap} \title{ Sequential Haplotype Scan Association Analysis for Case-Control Data } \description{ Seqhap implements sequential haplotype scan methods to perform association analyses for case-control data. When evaluating each locus, loci that contribute additional information to haplotype associations with disease status will be added sequentially. This conditional evaluation is based on the Mantel-Haenszel (MH) test. Two sequential methods are provided, a sequential haplotype method and a sequential summary method, as well as results based on the traditional single-locus method. Currently, seqhap only works with bialleleic loci (single nucleotide polymorphisms, or SNPs) and binary traits. } \usage{ seqhap(y, geno, pos, locus.label=NA, weight=NULL, mh.threshold=3.84, r2.threshold=0.95, haplo.freq.min=0.005, miss.val=c(0, NA), sim.control=score.sim.control(), control=haplo.em.control()) \method{print}{seqhap}(x, digits=max(options()$digits-2, 5), ...) } \arguments{ \item{y}{ vector of binary response (1=case, 0=control). The length is equal to the number of rows in geno. } \item{geno}{ matrix of alleles, such that each locus has a pair of adjacent columns of alleles, and the order of columns corresponds to the order of loci on a chromosome. If there are K loci, then ncol(geno)=2*K. Rows represent the alleles for each subject. Currently, only bi-allelic loci (SNPs) are allowed. } \item{pos}{ vector of physical positions (or relative physical positions) for loci. If there are K loci, length(pos)=K. The scale (in kb, bp, or etc.) doesn't affect the results. } \item{locus.label }{ vector of labels for the set of loci } \item{weight}{ weights for observations (rows of geno matrix). } \item{mh.threshold }{ threshold for the Mantel-Haenszel statistic that evaluates whether a locus contributes additional information of haplotype association to disease, conditional on current haplotypes. The default is 3.84, which is the 95th percentile of the chi-square distribution with 1 degree of freedom. } \item{r2.threshold }{ threshold for a locus to be skipped. When scanning locus k, loci with correlations r-squared (the square of the Pearson's correlation) greater than r2.threshold with locus k will be ignored, so that the haplotype growing process continues for markers that are further away from locus k. } \item{haplo.freq.min }{ the minimum haplotype frequency for a haplotype to be included in the association tests. The haplotype frequency is based on the EM algorithm that estimates haplotype frequencies independent of trait. } \item{miss.val }{ vector of values that represent missing alleles. } \item{sim.control}{ A list of control parameters to determine how simulations are performed for permutation p-values, similar to the strategy in haplo.score. The list is created by the function score.sim.control and the default values of this function can be changed as desired. Permutations are performed until a p.threshold accuracy rate is met for the three region-based p-values calculated in seqhap. See score.sim.control for details. } \item{control}{ A list of parameters that control the EM algorithm for estimating haplotype frequencies when phase is unknown. The list is created by the function haplo.em.control - see this function for more details. } \item{x}{ a seqhap object to print } \item{digits}{ Number of significant digits to print for numeric values } \item{\dots }{ Additional parameters for the print method } } \value{ list with components: \item{converge}{ indicator of convergence of the EM algorithm (see haplo.em); 1 = converge, 0=failed } \item{locus.label}{ vector of labels for loci } \item{pos}{ chromosome positions for loci, same as input. } \item{n.sim}{ number of permutations performed for emperical p-values } \item{inlist}{ matrix that shows which loci are combined for association analysis in the sequential scan. The non-zero values of the kth row of inlist are the indices of the loci combined when scanning locus k. } \item{chi.stat}{ chi-square statistics of single-locus analysis. } \item{chi.p.point}{ permuted pointwise p-values of single-locus analysis. } \item{chi.p.region}{ permuted regional p-value of single-locus analysis. } \item{hap.stat}{ chi-square statistics of sequential haplotype analysis. } \item{hap.df}{ degrees of freedom of sequential haplotype analysis. } \item{hap.p.point}{ permuted pointwise p-values of sequential haplotype analysis. } \item{hap.p.region}{ permuted region p-value of sequential haplotype analysis. } \item{sum.stat}{ chi-square statistics of sequential summary analysis. } \item{sum.df}{ degrees of freedom of sequential summary analysis. } \item{sum.p.point}{ permuted pointwise p-values of sequential summary analysis. } \item{sum.p.region}{ permuted regional p-value of sequential summary analysis. } } \details{ No further details } \section{References}{ Yu Z, Schaid DJ. (2007) Sequential haplotype scan methods for association analysis. Genet Epidemiol, in print. } \seealso{ \code{\link{haplo.em}}, \code{\link{print.seqhap}}, \code{\link{plot.seqhap}}, \code{\link{score.sim.control}} } \examples{ # load example data with response and genotypes. data(seqhap.dat) mydata.y <- seqhap.dat[,1] mydata.x <- seqhap.dat[,-1] # load positions data(seqhap.pos) pos <- seqhap.pos$pos # run seqhap with default settings \dontrun{ # this example takes 5-10 seconds to run myobj <- seqhap(y=mydata.y, geno=mydata.x, pos=pos) print.seqhap(myobj) } } % docclass is function % Converted by Sd2Rd version 37351. haplo.stats/man/haplo.score.merge.Rd0000644000176200001440000000553714672315242017107 0ustar liggesusers% $Author: sinnwell $ % $Date: 2011/11/10 15:29:41 $ % $Header: /projects/genetics/cvs/cvsroot/haplo.stats/man/haplo.score.merge.Rd,v 1.2 2011/11/10 15:29:41 sinnwell Exp $ % $Locker: $ % $Log: haplo.score.merge.Rd,v $ % Revision 1.2 2011/11/10 15:29:41 sinnwell % major update to hapglm, minor changes to Rd files, prepare for version 1.5.0 release % % Revision 1.1 2008/01/09 19:36:04 sinnwell % Initial revision % %Revision 1.4 2004/03/01 22:36:18 sinnwell %fix example % %Revision 1.3 2003/06/25 15:40:52 sinnwell %parameter names fixed in examples % %Revision 1.2 2003/03/12 22:33:13 sinnwell %fix comments% % %Revision 1.1 2003/01/17 16:57:06 sinnwell %Initial revision \name{haplo.score.merge} \alias{haplo.score.merge} \title{ Merge haplo.score And haplo.group Objects } \description{ Combine information from returned objects of haplo.score and haplo.group, 'score' and 'group' respectively. 'score' and 'group' are sorted differently and 'score' keeps a subset of all the haplotypes while 'group' has all of them. To combine results from the two objects, merge them by haplotype and sort by score of the haplotype. The merged object includes all haplotypes; i.e. those appearing in 'group', but the print default only shows haplotypes which have a score. } \usage{ haplo.score.merge(score, group) } \arguments{ \item{score}{ Object returned from haplo.score of class "haplo.score". } \item{group}{ Object returned from haplo.group of class "haplo.group". } } \value{ Data frame including haplotypes, score-statistics, score p-value, estimated haplotype frequency for all subjects, and haplotype frequency from group subsets. } \section{Side Effects}{ Warning: The merge will not detect if the group and score objects resulted from different subject phenotypes selected by memory-usage parameters, rm.geno.na and enum.limit. Users must use the same values for these parameters in haplo.score and haplo.group so the merged objects are consistent. } \details{ Haplo.score returns score statistic and p-value for haplotypes with an overall frequency above the user-specified threshold, skip.haplo. For haplotypes with frequencies below the threshold, the score and p-value will be NA. Overall haplotype frequencies and for sub-groups are estimated by haplo.group. } \seealso{ \code{\link{haplo.score}}, \code{\link{haplo.group}} } \examples{ data(hla.demo) geno <- as.matrix(hla.demo[,c(17,18,21:24)]) keep <- !apply(is.na(geno) | geno==0, 1, any) hla.demo <- hla.demo[keep,] geno <- geno[keep,] attach(hla.demo) y.ord <- as.numeric(resp.cat) y.bin <-ifelse(y.ord==1,1,0) group.bin <- haplo.group(y.bin, geno, miss.val=0) score.bin <- haplo.score(y.bin, geno, trait.type="binomial") score.merged <- haplo.score.merge(score.bin, group.bin) print(score.merged) } \keyword{scores} % docclass is function % Converted by Sd2Rd version 37351. haplo.stats/man/plot.seqhap.Rd0000644000176200001440000000713014672315242016021 0ustar liggesusers% $Author: sinnwell $ % $Date: 2013/10/11 20:30:53 $ % $Header: /projects/genetics/cvs/cvsroot/haplo.stats/man/plot.seqhap.Rd,v 1.7 2013/10/11 20:30:53 sinnwell Exp $ % $Locker: $ % $Log: plot.seqhap.Rd,v $ % Revision 1.7 2013/10/11 20:30:53 sinnwell % move manual to vignettes % % Revision 1.6 2011/11/10 15:29:41 sinnwell % major update to hapglm, minor changes to Rd files, prepare for version 1.5.0 release % % Revision 1.5 2008/10/06 15:16:40 sinnwell % rm n.sim from example % % Revision 1.4 2008/05/16 18:38:02 sinnwell % fix details about 0 perm pval % % Revision 1.3 2008/05/09 20:59:41 sinnwell % add minp parameter, more comments about ... % % Revision 1.2 2008/01/08 20:27:11 sinnwell % fix comments % % Revision 1.1 2008/01/08 17:14:28 sinnwell % Initial revision % % Revision 1.5 2007/05/30 19:00:57 sinnwell % *** empty log message *** % % Revision 1.4 2007/05/30 18:29:47 sinnwell % fix example to use data % % Revision 1.3 2007/05/25 18:17:45 sinnwell % rm par optoins cex.axis and las, reserved for users in ... % % Revision 1.2 2007/05/24 19:08:17 sinnwell % add detail about cex.axis % % Revision 1.1 2007/05/23 17:41:56 sinnwell % Initial revision \name{plot.seqhap} \alias{plot.seqhap} \title{ Plot a seqhap object } \description{ Method to plot an object of class seqhap. The p-values at each locus are based on sequentially combined loci, and they are plotted to visualize the p-values when scanning each locus using seqhap methods. Plots -log10(p-value) on the y-axis vs. the loci over which it was computed on the x-axis. } \usage{ \method{plot}{seqhap}(x, pval="hap", single=TRUE, minp=.Machine$double.eps, ...) } \arguments{ \item{x}{ The object returned from seqhap } \item{pval}{ Character string for the choice of p-value to plot. Options are: "hap" (sequential haplotype asymptotic p-value), "hap.sim" (sequential haplotype simulated p-value), "sum" (sequential summary asymptotic p-value), and "sum.sim" (sequential summary simulated p-value). } \item{single}{ Logical, indicating whether to plot p-values for single-locus association tests. If TRUE, the pointwise p-values from the single-locus will be plotted using a dotted line. } \item{minp}{ Smallest "allowable" p-value; any p-value smaller will be set to log10(minp). The default is the value closest to zero that can be represented in Splus/R. } \item{\dots }{ Dynamic parameter for the values of additional parameters for the plot method. Accept the ylim parameter for plot() and other parameters for lines(), points(), and axis(). Recommended values to make locus labels vertical on the x-axis: for R: las=2, cex.axis=1.2 for S+: srt=90, cex.axis=1.2, adj=1 } } \value{ Nothing is returned. } \details{ The x-axis has tick marks for all loci. The y-axis is the -log10() of the selected p-value. For the sequential result for each locus, a horizontal line at the height of -log10(p-value) is drawn across the loci combined. The start locus is indicated by a filled triangle and other loci combined with the start locus are indicated by an asterisk or circle. If the permutation p-value is zero, for plotting purposes it is set to 1/(n.sim+1). } \section{References}{ Yu Z, Schaid DJ. (2007) Sequential haplotype scan methods for association analysis. Genet Epidemiol, in print. } \seealso{ \code{\link{seqhap}}, \code{\link{print.seqhap}} } \examples{ \dontrun{ data(seqhap.dat) mydata.y <- seqhap.dat[,1] mydata.x <- seqhap.dat[,-1] data(seqhap.pos) myobj <- seqhap(y=mydata.y, geno=mydata.x, pos=seqhap.pos$pos) plot(myobj) } } % docclass is function % Converted by Sd2Rd version 37351. haplo.stats/man/haplo.cc.Rd0000644000176200001440000001314214672315242015252 0ustar liggesusers% $Author: sinnwell $ % $Date: 2009/09/30 19:58:16 $ % $Header: /projects/genetics/cvs/cvsroot/haplo.stats/man/haplo.cc.Rd,v 1.5 2009/09/30 19:58:16 sinnwell Exp $ % $Locker: $ % %$Log: haplo.cc.Rd,v $ %Revision 1.5 2009/09/30 19:58:16 sinnwell %remove keywords section \name{haplo.cc} \alias{haplo.cc} \title{ Haplotype Association Analysis in a Case-Control design } \description{ Combine results from haplo.score, haplo.group, and haplo.glm for case-control study designs. Analyze the association between the binary (case-control) trait and the haplotypes relevant to the unrelated individuals' genotypes. } \usage{ haplo.cc(y, geno, x.adj=NA, locus.label=NA, ci.prob=0.95, miss.val=c(0,NA), weights=NULL, eps.svd=1e-5, simulate=FALSE, sim.control=score.sim.control(), control=haplo.glm.control()) } \arguments{ \item{y}{ Vector of trait values, must be 1 for cases and 0 for controls. } \item{geno}{ Matrix of alleles, such that each locus has a pair of adjacent columns of alleles, and the order of columns corresponds to the order of loci on a chromosome. If there are K loci, then ncol(geno) = 2*K. Rows represent alleles for each subject. } \item{x.adj}{ Matrix of non-genetic covariates used to adjust the score statistics. Note that intercept should not be included, as it will be added in this function. } \item{ci.prob }{ Probability level for confidence interval on the Odds Ratios of each haplotype to span the true value. } \item{locus.label }{ Vector of labels for loci, of length K (see definition of geno matrix) } \item{miss.val }{ Vector of codes for missing values of alleles } \item{weights}{ the weights for observations (rows of the data frame). By default, all observations are weighted equally. One use is to correct for over-sampling of cases in a case-control sample. } \item{eps.svd}{ epsilon value for singular value cutoff; to be used in the generalized inverse calculation on the variance matrix of the score vector. The degrees of freedom for the global score test is 1 less than the number of haplotypes that are scored (k-1). The degrees of freedom is calculated from the rank of the variance matrix for the score vector. In some instances of numeric instability, the singular value decomposition indicates full rank (k). One remedy has been to give a larger epsilon value. } \item{simulate}{ Logical: if [F]alse, no empirical p-values are computed; if [T]rue, simulations are performed within haplo.score. Specific simulation parameters can be controlled in the sim.control parameter list. } \item{sim.control }{ A list of control parameters to determine how simulations are performed for simulated p-values. The list is created by the function score.sim.control and the default values of this function can be changed as desired. See score.sim.control for details. } \item{control}{ A list of control parameters for managing the execution of haplo.cc. The list is created by the function haplo.glm.control, which also manages control parameters for the execution of haplo.em. } } \value{ A list including the haplo.score object (score.lst), vector of subject counts by case and control group (group.count), haplo.glm object (fit.lst), confidence interval probability (ci.prob), and a data frame (cc.df) with the following components: \item{haplotypes}{ The first K columns contain the haplotypes used in the analysis. } \item{Hap-Score}{ Score statistic for association of haplotype with the binary trait. } \item{p-val}{ P-value for the haplotype score statistic, based on a chi-square distribution with 1 degree of freedom. } \item{sim.p.val}{ Vector of p-values for score.haplo, based on simulations in haplo.score (omitted when simulations not performed). P-value of score.global based on simulations (set equal to NA when simulate=F). } \item{pool.hf}{ Estimated haplotype frequency for cases and controls pooled together. } \item{control.hf}{ Estimated haplotype frequency for control group subjects. } \item{case.hf}{ Estimated haplotype frequency for case group subjects. } \item{glm.eff}{ The haplo.glm function modeled the haplotype effects as: baseline (Base), additive haplotype effect (Eff), or rare haplotypes pooled into a single group (R). } \item{OR.lower}{ Lower limit of the Odds Ratio Confidence Interval. } \item{ OR }{ Odds Ratio based on haplo.glm model estimated coefficient for the haplotype. } \item{OR.upper}{ Upper limit of the Odds Ratio Confidence Interval. } } \details{ All function calls within haplo.cc are for the analysis of association between haplotypes and the case-control status (binomial trait). No additional covariates may be modeled with this function. Odd Ratios are in reference to the baseline haplotype. Odds Ratios will change if a different baseline is chosen using haplo.glm.control. } \references{ \describe{ \item{Schaid et al}{Schaid DJ, Rowland CM, Tines DE, Jacobson RM, Poland GA. Score tests for association of traits with haplotypes when linkage phase is ambiguous. Amer J Hum Genet. 70 (2002): 425-434.} \item{Lake et al}{Lake S, LH, Silverman E, Weiss S, Laird N, Schaid DJ. Estimation and tests of haplotype-environment interaction when linkage phase is ambiguous. Human Heredity. 55 (2003): 56-65} } } \seealso{ \code{\link{haplo.em}}, \code{\link{haplo.score}}, \code{\link{haplo.group}}, \code{\link{haplo.score.merge}}, \code{\link{haplo.glm}} \code{\link{print.haplo.cc}} } \examples{ # For a genotype matrix geno.test, case/control vector y.test # The function call will be like this # cc.test <- haplo.cc(y.test, geno.test, locus.label=locus.label, haplo.min.count=3, ci.prob=0.95) # } % docclass is function % Converted by Sd2Rd version 37351. haplo.stats/man/haplo.score.slide.Rd0000644000176200001440000002040614672315242017100 0ustar liggesusers% $Author: sinnwell $ % $Date: 2011/11/10 15:29:41 $ % $Header: /projects/genetics/cvs/cvsroot/haplo.stats/man/haplo.score.slide.Rd,v 1.4 2011/11/10 15:29:41 sinnwell Exp $ % $Locker: $ % $Log: haplo.score.slide.Rd,v $ % Revision 1.4 2011/11/10 15:29:41 sinnwell % major update to hapglm, minor changes to Rd files, prepare for version 1.5.0 release % % Revision 1.3 2008/04/14 19:54:34 sinnwell % change eps.svd note % % Revision 1.2 2008/04/10 14:36:49 sinnwell % add eps.svd % % Revision 1.1 2008/01/09 19:38:58 sinnwell % Initial revision % %Revision 1.11 2007/04/12 21:52:57 sinnwell %add \s-arg %Revision 1.10 2007/01/25 22:45:26 sinnwell %add haplo.effect and min.count % %Revision 1.9 2005/03/03 20:50:55 sinnwell %change default for skip.haplo % %Revision 1.8 2004/03/24 14:40:26 sinnwell %comment out examples, except data setup, so users may uncomment and run % %Revision 1.7 2004/03/22 20:17:58 sinnwell %shorten example % %Revision 1.6 2004/03/16 22:27:33 sinnwell %put plot examples here to consolidate running the function % %Revision 1.5 2004/03/03 15:40:18 sinnwell %add labels in example function calls % %Revision 1.4 2004/03/02 20:27:28 sinnwell %binomial to ordinal in second example call %Revision 1.3 2004/03/01 22:46:41 sinnwell %fix examples % %Revision 1.2 2004/02/16 17:32:06 sinnwell %change F to FALSE % %Revision 1.1 2003/08/22 20:04:58 sinnwell %Initial revision \name{haplo.score.slide} \alias{haplo.score.slide} \title{ Score Statistics for Association of Traits with Haplotypes } \description{ Used to identify sub-haplotypes from a group of loci. Run haplo.score on all contiguous subsets of size n.slide from the loci in a genotype matrix (geno). From each call to haplo.score, report the global score statistic p-value. Can also report global and maximum score statistics simulated p-values. } \usage{ haplo.score.slide(y, geno, trait.type="gaussian", n.slide=2, offset = NA, x.adj = NA, min.count=5, skip.haplo=min.count/(2*nrow(geno)), locus.label=NA, miss.val=c(0,NA), haplo.effect="additive", eps.svd=1e-5, simulate=FALSE, sim.control=score.sim.control(), em.control=haplo.em.control()) } \arguments{ \item{y}{ Vector of trait values. For trait.type = "binomial", y must have values of 1 for event, 0 for no event. } \item{geno}{ Matrix of alleles, such that each locus has a pair of adjacent columns of alleles, and the order of columns corresponds to the order of loci on a chromosome. If there are K loci, then ncol(geno) = 2*K. Rows represent alleles for each subject. } \item{trait.type }{ Character string defining type of trait, with values of "gaussian", "binomial", "poisson", "ordinal". } \item{n.slide }{ Number of loci in each contiguous subset. The first subset is the ordered loci numbered 1 to n.slide, the second subset is 2 through n.slide+1 and so on. If the total number of loci in geno is n.loci, then there are n.loci - n.slide + 1 total subsets. } \item{offset}{ Vector of offset when trait.type = "poisson" } \item{x.adj }{ Matrix of non-genetic covariates used to adjust the score statistics. Note that intercept should not be included, as it will be added in this function. } \item{min.count }{ The minimum number of counts for a haplotype to be included in the model. First, the haplotypes selected to score are chosen by minimum frequency greater than skip.haplo (based on min.count, by default). It is also used when haplo.effect is either dominant or recessive. This is explained best in the recessive instance, where only subjects who are homozygous for a haplotype will contribute information to the score for that haplotype. If fewer than min.count subjects are estimated to be affected by that haplotype, it is not scored. A warning is issued if no haplotypes can be scored. } \item{skip.haplo }{ For haplotypes with frequencies < skip.haplo, categorize them into a common group of rare haplotypes. } \item{locus.label }{ Vector of labels for loci, of length K (see definition of geno matrix). } \item{miss.val }{ Vector of codes for missing values of alleles. } \item{haplo.effect }{ The "effect" pattern of haplotypes on the response. This parameter determines the coding for scoring the haplotypes. Valid coding options for heterozygous and homozygous carriers of a haplotype are "additive" (1, 2, respectively), "dominant" (1,1, respectively), and "recessive" (0, 1, respectively). } \item{eps.svd}{ epsilon value for singular value cutoff; to be used in the generalized inverse calculation on the variance matrix of the score vector. } \item{simulate}{ Logical, if [F]alse (default) no empirical p-values are computed. If [T]rue simulations are performed. Specific simulation parameters can be controlled in the sim.control parameter list. } \item{sim.control }{ A list of control parameters used to perform simulations for simulated p-values in haplo.score. The list is created by the function score.sim.control and the default values of this function can be changed as desired. } \item{em.control }{ A list of control parameters used to perform the em algorithm for estimating haplotype frequencies when phase is unknown. The list is created by the function haplo.em.control and the default values of this function can be changed as desired. } } \value{ List with the following components: \item{df}{ Data frame with start locus, global p-value, simulated global p-value, and simulated maximum-score p-value. } \item{n.loci}{ Number of loci given in the genotype matrix. } \item{simulate}{ Same as parameter description above. } \item{haplo.effect}{ The haplotype effect model parameter that was selected for haplo.score. } \item{n.slide}{ Same as parameter description above. } \item{locus.label}{ Same as parameter description above. } \item{n.val.haplo}{ Vector containing the number of valid simulations used in the maximum-score statistic p-value simulation. The number of valid simulations can be less than the number of simulations requested (by sim.control) if simulated data sets produce unstable variables of the score statistics. } \item{n.val.global}{ Vector containing the number of valid simulations used in the global score statistic p-value simulation. } } \details{ Haplo.score.slide is useful for a series of loci where little is known of the association between a trait and haplotypes. Using a range of n.slide values, the region with the strongest association will consistently have low p-values for locus subsets containing the associated haplotypes. The global p-value measures significance of the entire set of haplotypes for the locus subset. Simulated maximum score statistic p-values indicate when one or a few haplotypes are associated with the trait. } \section{References}{ Schaid DJ, Rowland CM, Tines DE, Jacobson RM, Poland GA. "Score tests for association of traits with haplotypes when linkage phase is ambiguous." Amer J Hum Genet. 70 (2002): 425-434. } \seealso{ \code{\link{haplo.score}}, \code{\link{plot.haplo.score.slide}}, \code{\link{score.sim.control}} } \examples{ data(hla.demo) # Continuous trait slide by 2 loci on all 11 loci, uncomment to run it. # Takes > 20 minutes to run # geno.11 <- hla.demo[,-c(1:4)] # label.11 <- c("DPB","DPA","DMA","DMB","TAP1","TAP2","DQB","DQA","DRB","B","A") # slide.gaus <- haplo.score.slide(hla.demo$resp, geno.11, trait.type = "gaussian", # locus.label=label.11, n.slide=2) # print(slide.gaus) # plot(slide.gaus) # Run shortened example on 9 loci # For an ordinal trait, slide by 3 loci, and simulate p-values: # geno.9 <- hla.demo[,-c(1:6,15,16)] # label.9 <- c("DPA","DMA","DMB","TAP1","DQB","DQA","DRB","B","A") # y.ord <- as.numeric(hla.demo$resp.cat) # data is set up, to run, run these lines of code on the data that was # set up in this example. It takes > 15 minutes to run # slide.ord.sim <- haplo.score.slide(y.ord, geno.9, trait.type = "ordinal", # n.slide=3, locus.label=label.9, simulate=TRUE, # sim.control=score.sim.control(min.sim=200, max.sim=500)) # note, results will vary due to simulations # print(slide.ord.sim) # plot(slide.ord.sim) # plot(slide.ord.sim, pval="global.sim") # plot(slide.ord.sim, pval="max.sim") } \keyword{scores} % docclass is function % Converted by Sd2Rd version 37351. haplo.stats/man/plot.haplo.score.Rd0000644000176200001440000000444114672315242016757 0ustar liggesusers% $Author: sinnwell $ % $Date: 2011/11/10 15:29:41 $ % $Header: /projects/genetics/cvs/cvsroot/haplo.stats/man/plot.haplo.score.Rd,v 1.3 2011/11/10 15:29:41 sinnwell Exp $ % $Locker: $ % $Log: plot.haplo.score.Rd,v $ % Revision 1.3 2011/11/10 15:29:41 sinnwell % major update to hapglm, minor changes to Rd files, prepare for version 1.5.0 release % % Revision 1.2 2008/01/08 20:28:21 sinnwell % fix comment % % Revision 1.1 2008/01/08 17:04:14 sinnwell % Initial revision % %Revision 1.6 2004/03/17 21:29:50 sinnwell %use keep to shorten example % %Revision 1.5 2004/03/02 14:53:00 sinnwell %fix example % %Revision 1.4 2004/02/06 17:44:16 sinnwell %add ... argument % %Revision 1.3 2003/09/22 16:33:37 sinnwell %update reference (?) % %Revision 1.2 2002/09/16 14:58:35 sinnwell %Fix RCS keywords % %Revision 1.1 2002/09/16 14:00:00 sinnwell %initial \name{plot.haplo.score} \alias{plot.haplo.score} \title{ Plot Haplotype Frequencies versus Haplotype Score Statistics } \description{ Method function to plot a class of type haplo.score } \usage{ \method{plot}{haplo.score}(x, ...) } \arguments{ \item{x}{ The object returned from haplo.score (which has class haplo.score). } \item{\dots }{ Dynamic parameter for the values of additional parameters for the plot method. } } \value{ Nothing is returned. } \details{ This is a plot method function used to plot haplotype frequencies on the x-axis and haplotype-specific scores on the y-axis. Because haplo.score is a class, the generic plot function can be used, which in turn calls this plot.haplo.score function. } \section{References}{ Schaid DJ, Rowland CM, Tines DE, Jacobson RM, Poland GA. "Score tests for association of traits with haplotypes when linkage phase is ambiguous." Amer J Hum Genet. 70 (2002): 425-434. } \seealso{ haplo.score } \examples{ data(hla.demo) geno <- as.matrix(hla.demo[,c(17,18,21:24)]) keep <- !apply(is.na(geno) | geno==0, 1, any) hla.demo <- hla.demo[keep,] geno <- geno[keep,] attach(hla.demo) label <- c("DQB","DRB","B") # For quantitative, normally distributed trait: score.gaus <- haplo.score(resp, geno, locus.label=label, trait.type = "gaussian") plot.haplo.score(score.gaus) ## try: locator.haplo(1) } % docclass is function % Converted by Sd2Rd version 37351. haplo.stats/man/hapPower.demo.Rd0000644000176200001440000000214114672315242016270 0ustar liggesusers% $Author: sinnwell $ % $Date: 2009/04/27 21:21:57 $ % $Header: /projects/genetics/cvs/cvsroot/haplo.stats/man/hapPower.demo.Rd,v 1.5 2009/04/27 21:21:57 sinnwell Exp $ % $Locker: $ \name{hapPower.demo} \alias{hapPower.demo} \docType{data} \title{ Set of haplotypes and frequencies for power and sample size calculations } \description{ An example set of haplotypes and frequencies for power and sample size calculations in haplo.power.cc and haplo.power.qt } \usage{data(hapPower.demo)} \format{ A data frame with 21 observations on the following 6 variables. \describe{ \item{\code{loc.1}}{allele 1 in the haplotype } \item{\code{loc.2}}{allele 2 in the haplotype } \item{\code{loc.3}}{allele 3 in the haplotype } \item{\code{loc.4}}{allele 4 in the haplotype } \item{\code{loc.5}}{allele 5 in the haplotype } \item{\code{haplo.freq}}{numeric, frequency of haplotype} } } \references{ Schaid, DJ. Power and sample size for testing associations of haplotypes with complex traits. \emph{Ann Hum Genet} (2005) 70:116-130. } \examples{ data(hapPower.demo) } \keyword{datasets} haplo.stats/man/haplo.design.Rd0000644000176200001440000000453014672315242016137 0ustar liggesusers% $Author: sinnwell $ % $Date: 2011/11/10 15:29:41 $ % $Header: /projects/genetics/cvs/cvsroot/haplo.stats/man/haplo.design.Rd,v 1.4 2011/11/10 15:29:41 sinnwell Exp $ % $Locker: $ % $Log: \name{haplo.design} \alias{haplo.design} \title{ Build a design matrix for haplotypes } \description{ Build a design matrix for haplotypes estimated from a haplo.em object. } \usage{ haplo.design(obj, haplo.effect="additive", hapcodes=NA, min.count=5, haplo.base=NA) } \arguments{ \item{obj}{ an object created from haplo.em } \item{haplo.effect }{ The "effect" pattern of haplotypes on the response. This parameter determines the coding for scoring the haplotypes. Valid coding options for heterozygous and homozygous carriers of a haplotype are "additive" (1, 2, respectively), "dominant" (1,1, respectively), and "recessive" (0, 1, respectively). } \item{hapcodes}{ codes assigned in haplo.em, corresponding to the row numbers in the haplotypes matrix item in \code{obj} } \item{min.count }{ The minimum number of estimated counts of the haplotype in the sample in order for a haplotype to be included in the design matrix. } \item{haplo.base }{ code for which haplotype will be the reference group, or to be considered the baseline of a model. The code is the row number of the \code{haplotypes} matrix in \code{obj}. This haplotype is removed from the design matrix. } } \value{ Matrix of columns for haplotype effects. Column names are "hap.k" where k is the row number of the unique haplotypes within the haplo.em object's "haplotypes" item. } \details{ First a matrix is made for the possible haplotypes for each person, coded for the haplo.effect, weighted by the posterior probability of those possible haplotypes per person, and then collapsed back to a single row per person. } \seealso{ \code{\link{haplo.em}} } \examples{ ###------------------------------------------------ ### See the user manual for more complete examples ###------------------------------------------------ data(hla.demo) attach(hla.demo) geno <- hla.demo[,c(17,18,21:24)] label <-c("DQB","DRB","B") keep <- !apply(is.na(geno) | geno==0, 1, any) save.em.keep <- haplo.em(geno=geno[keep,], locus.label=label) save.df <- haplo.design(save.em.keep, min.count=10) dim(save.df) names(save.df) save.df[1:10,] } \keyword{models} % docclass is function % Converted by Sd2Rd version 37351. haplo.stats/man/hla.demo.Rd0000644000176200001440000000523114672315242015252 0ustar liggesusers% $Author: sinnwell $ % $Date: 2011/11/10 15:29:41 $ % $Header: /projects/genetics/cvs/cvsroot/haplo.stats/man/hla.demo.Rd,v 1.6 2011/11/10 15:29:41 sinnwell Exp $ % $Locker: $ % $Log: hla.demo.Rd,v $ % Revision 1.6 2011/11/10 15:29:41 sinnwell % major update to hapglm, minor changes to Rd files, prepare for version 1.5.0 release % % Revision 1.5 2009/04/08 19:11:56 sinnwell % changed for version 2.9.1 % \name{hla.demo} \alias{hla.demo} \docType{data} \title{ HLA Loci and Serologic Response to Measles Vaccination } \description{ A data frame with genotypes at eleven HLA-region loci genotyped for 220 subjects, phase not known. Contains measles vaccination response with covariate data. } \usage{data(hla.demo)} \format{ A data frame with 220 observations on the following 26 variables. \describe{ \item{\code{resp}}{numeric, Quantitative response to Measles Vaccination} \item{\code{resp.cat}}{Category of vaccination response, a factor with levels \code{high} \code{low} \code{normal}} \item{\code{male}}{numeric, indicator of gener, 1=male, 0=female} \item{\code{age}}{numeric, subject's age} \item{\code{DPB.a1}}{first allele of genotype } \item{\code{DPB.a2}}{second allele of genotype } \item{\code{DPA.a1}}{first allele of genotype } \item{\code{DPA.a2}}{second allele of genotype} \item{\code{DMA.a1}}{first allele of genotype} \item{\code{DMA.a2}}{second allele of genotype} \item{\code{DMB.a1}}{first allele of genotype} \item{\code{DMB.a2}}{second allele of genotype} \item{\code{TAP1.a1}}{first allele of genotype } \item{\code{TAP1.a2}}{ second allele of genotype} \item{\code{TAP2.a1}}{first allele of genotype } \item{\code{TAP2.a2}}{second allele of genotype } \item{\code{DQB.a1}}{first allele of genotype} \item{\code{DQB.a2}}{second allele of genotype} \item{\code{DQA.a1}}{first allele of genotype} \item{\code{DQA.a2}}{second allele of genotype} \item{\code{DRB.a1}}{first allele of genotype} \item{\code{DRB.a2}}{second allele of genotype} \item{\code{B.a1}}{first allele of genotype} \item{\code{B.a2}}{second allele of genotype} \item{\code{A.a1}}{first allele of genotype} \item{\code{A.a2}}{second allele of genotype} } } \source{ Data set kindly provided by Gregory A. Poland, M.D. and the Mayo Clinic Vaccine Research Group for illustration only, and my not be used for publication. } \references{ Schaid DJ, Rowland CM, Tines DE, Jacobson RM, Poland GA. "Score tests for association of traits with haplotypes when linkage phase is ambiguous." Amer J Hum Genet. 70 (2002): 425-434. } \examples{ data(hla.demo) } \keyword{datasets} haplo.stats/man/haplo.model.frame.Rd0000644000176200001440000000255314672315242017062 0ustar liggesusers% $Author: sinnwell $ % $Date: 2009/09/30 20:05:38 $ % $Header: /projects/genetics/cvs/cvsroot/haplo.stats/man/haplo.model.frame.Rd,v 1.4 2009/09/30 20:05:38 sinnwell Exp $ % $Locker: $ % $Log: haplo.model.frame.Rd,v $ % Revision 1.4 2009/09/30 20:05:38 sinnwell % rm keywords, or leave one with one from /doc/KEYWORDS % % Revision 1.3 2009/09/30 19:25:04 sinnwell % remove empty sections % % Revision 1.2 2008/04/29 17:20:59 sinnwell % rm allele.lev and miss.val % % Revision 1.1 2008/01/09 17:38:24 sinnwell % Initial revision % %Revision 1.3 2004/03/03 22:14:57 schaid %added allele.lev to work in R with character alleles % %Revision 1.2 2004/02/26 22:46:30 sinnwell %remove example % %Revision 1.1 2004/02/26 22:17:14 sinnwell %Initial revision \name{haplo.model.frame} \alias{haplo.model.frame} \title{ Sets up a model frame for haplo.glm } \description{ For internal use within the haplo.stats library } \usage{ haplo.model.frame(m, locus.label=NA, control=haplo.glm.control()) } \arguments{ \item{m}{ model.frame from evaluated formula } \item{locus.label }{ labels for loci in genotype matrix } \item{control}{ control parameters for haplo.glm } } \value{ A model frame with haplotypes modeled as effects } \details{ See haplo.glm description in help file and user manual } \keyword{models} % docclass is function % Converted by Sd2Rd version 37351. haplo.stats/man/summaryGeno.Rd0000644000176200001440000000400414672315242016066 0ustar liggesusers% $Author: sinnwell $ % $Date: 2011/11/10 15:29:41 $ % $Header: /projects/genetics/cvs/cvsroot/haplo.stats/man/summaryGeno.Rd,v 1.3 2011/11/10 15:29:41 sinnwell Exp $ % $Locker: $ % % $Log: summaryGeno.Rd,v $ % Revision 1.3 2011/11/10 15:29:41 sinnwell % major update to hapglm, minor changes to Rd files, prepare for version 1.5.0 release % % Revision 1.2 2008/01/08 20:29:33 sinnwell % fix comments % % Revision 1.1 2008/01/08 18:25:51 sinnwell % Initial revision % % Revision 1.2 2004/03/02 15:17:29 sinnwell % take out example, simple usage % % Revision 1.1 2004/02/26 22:06:58 sinnwell % Initial revision \name{summaryGeno} \alias{summaryGeno} \title{ Summarize Full Haplotype Enumeration on Genotype Matrix } \description{ Provide a summary of missing allele information for each individual in the genotype matrix. The number of loci missing zero, one, or two alleles is computed, as well as the total number of haplotype pairs that could result from the observed phenotype. } \usage{ summaryGeno(geno, miss.val=0) } \arguments{ \item{geno}{ Matrix of alleles, such that each locus has a pair of adjacent columns of alleles, and the order of columns corresponds to the order of loci on a chromosome. If there are K loci, then geno has 2*K columns. Rows represent all observed alleles for each subject. } \item{miss.val }{ Vector of codes for allele missing values. } } \value{ Data frame with columns representing the number of loci with zero, one, and two missing alleles, then the total haplotype pairs resulting from full enumeration of the phenotype. } \details{ After getting information on the individual loci, this function makes a call to geno.count.pairs(). The E-M steps to estimate haplotype frequencies considers haplotypes that could result from a phenotype with a missing allele. It will not remove a subject's phenotype, only the unlikely haplotypes that result from it. } \seealso{ \code{\link{geno.count.pairs}}, \code{\link{haplo.em}} } % docclass is function % Converted by Sd2Rd version 37351. haplo.stats/man/haplo.em.fitter.Rd0000644000176200001440000000403214672315242016560 0ustar liggesusers% $Author: sinnwell $ % $Date: 2011/11/10 15:29:41 $ % $Header: /projects/genetics/cvs/cvsroot/haplo.stats/man/haplo.em.fitter.Rd,v 1.2 2011/11/10 15:29:41 sinnwell Exp $ % $Locker: $ % $Log: haplo.em.fitter.Rd,v $ % Revision 1.2 2011/11/10 15:29:41 sinnwell % major update to hapglm, minor changes to Rd files, prepare for version 1.5.0 release % % Revision 1.1 2008/01/08 22:28:36 sinnwell % Initial revision % %Revision 1.2 2004/02/26 22:30:08 sinnwell %remove example % %Revision 1.1 2004 \name{haplo.em.fitter} \alias{haplo.em.fitter} \title{ Compute engine for haplotype EM algorithm } \description{ For internal use within the haplo.stats library } \usage{ haplo.em.fitter(n.loci, n.subject, weight, geno.vec, n.alleles, max.haps, max.iter, loci.insert.order, min.posterior, tol, insert.batch.size, random.start, iseed1, iseed2, iseed3, verbose) } \arguments{ \item{n.loci }{ number of loci in genotype matrix } \item{n.subject }{ number of subjects in the sample } \item{weight}{ numeric weights } \item{geno.vec }{ vectorized genotype matrix } \item{n.alleles }{ numeric vector giving number of alleles at each marker } \item{max.haps }{ maximum unique haplotypes in the sample } \item{max.iter }{ maximum iterations to perform in the fitter } \item{loci.insert.order }{ order to insert loci for progressive insertion } \item{min.posterior }{ after insertion and maximization, discard haplotype pairs per person that do not meet minimum posterior prob } \item{tol}{ convergence tolerance for E-M steps } \item{insert.batch.size }{ number of markers to insert per batch } \item{random.start}{ logical; if TRUE, allow for random starting values of haplotype frequencies } \item{iseed1}{ random seed for algorithm } \item{iseed2}{ random seed for algorithm } \item{iseed3}{ random seed for algorithm } \item{verbose}{ logical, print long, verbose output from E-M steps? } } \details{ For internal use within the haplo.stats library } % docclass is function % Converted by Sd2Rd version 37351. haplo.stats/man/locus.Rd0000644000176200001440000000625514672315242014717 0ustar liggesusers% $Author: sinnwell $ % $Date: 2011/10/26 15:03:59 $ % $Header: /projects/genetics/cvs/cvsroot/mgenet/man/locus.Rd,v 1.2 2011/10/26 15:03:59 sinnwell Exp $ % $Locker: $ % $Log: locus.Rd,v $ % Revision 1.2 2011/10/26 15:03:59 sinnwell % take out unused sections in Rd % % Revision 1.1.1.1 2011/02/21 20:09:27 sinnwell % initial, genetics functions for Mayo BSI % % Revision 1.1 2008/01/09 19:43:36 sinnwell % Initial revision % \name{locus} \alias{locus} \title{ Creates an object of class "locus" } \description{ Creates an object containing genotypes for multiple individuals. The object can then use method functions developed for objects of class "locus". } \usage{ locus(allele1, allele2, chrom.label=NULL,locus.alias=NULL, x.linked=FALSE, sex=NULL, male.code="M", female.code="F", miss.val=NA) } \arguments{ \item{allele1}{ A vector containing the labels for 1 allele for a set of individuals, or optionally a matrix with 2 columns each containing an allele for each person. } \item{allele2}{ A vector containing the labels for the second allele for a set of individuals. If allele 1 is a matrix, allele 2 need not be specified. } \item{chrom.label }{ A label describing the chromosome the alleles belong to } \item{locus.alias }{ A vector containing one or more aliases describing the locus. The first alias in the vector will be used as a label for printing in some functions such as multilocus.print(). } \item{x.linked }{ A logical value denoting whether the chromosome is x linked } \item{sex}{ A vector containing the gender of each individual (required if x.linked=T) } \item{male.code }{ The code denoting a male in the sex vector } \item{female.code }{ The code denoting a female in the sex vector } \item{miss.val }{ a vector of codes denoting missing values for allele1 and allele2. Note that NA will always be treated as a missing value, even if not specified in miss.val. Also note that if multiple missing value codes are specified, the original missing value code for a specific individual can not be retrieved from the locus object. } } \value{ Returns an object of class locus which inherits from class model.matrix containing the following elements: \item{geno}{ a matrix with 2 columns where each row contains numeric codes for the 2 alleles for an individual. } \item{chrom.label}{ a chromosome label } \item{locus.alias}{ a vector of aliases for the locus } \item{x.linked}{ a logical value specifying if the locus is x-linked or not } \item{allele.labels}{ a vector of labels corresponding to the numeric codes in matrix geno (similar to levels in a factor) } \item{male.code}{ a code to be used to identify males for an x.linked locus. } \item{female.code}{ a code to be used to identify females for an x.linked locus. } } \examples{ b1 <- c("A","A","B","C","E","D") b2 <- c("A","A","C","E","F","G") loc1 <- locus(b1,b2,chrom=4,locus.alias="D4S1111") loc1 # a second example which uses more parameters, some may not be supported. c1 <- c(101,10, 112,112,21,112) c2 <- c(101,101,112, 100,21, 10) gender <- rep(c("M","F"),3) loc2 <- locus(c1,c2,chrom="X",locus.alias="DXS1234", x.linked=TRUE, sex=gender) loc2 } \keyword{classes} % docclass is function % Converted by Sd2Rd version 37351. haplo.stats/man/locator.haplo.Rd0000644000176200001440000000434514672315242016335 0ustar liggesusers% $Author: sinnwell $ % $Date: 2011/11/10 15:29:41 $ % $Header: /projects/genetics/cvs/cvsroot/haplo.stats/man/locator.haplo.Rd,v 1.2 2011/11/10 15:29:41 sinnwell Exp $ % $Locker: $ % $Log: locator.haplo.Rd,v $ % Revision 1.2 2011/11/10 15:29:41 sinnwell % major update to hapglm, minor changes to Rd files, prepare for version 1.5.0 release % % Revision 1.1 2008/01/09 19:41:02 sinnwell % Initial revision % %Revision 1.4 2004/03/02 21:55:33 sinnwell %comment out example % %Revision 1.3 2004/03/01 22:59:09 sinnwell %fix example % %Revision 1.2 2003/01/20 23:21:37 sinnwell %fixed RCS keywords \name{locator.haplo} \alias{locator.haplo} \title{ Find Location from Mouse Clicks and Print Haplotypes on Plot } \description{ Much like the R/Splus locator function is used to find x-y coordinates on a plot. Find all x-y coordinates that are chosen by the user's mouse clicks. Then print haplotype labels at the chosen positions. } \usage{ locator.haplo(obj) } \arguments{ \item{obj}{ An object (of class haplo.score) that is returned from haplo.score. } } \value{ List with the following components: \item{x.coord}{ Vector of x-coordinates. } \item{y.coord}{ Vector of y-coordinates. } \item{hap.txt}{ Vector of character strings for haplotypes. } } \details{ After plotting the results in obj, as from plot(obj), the function locator.haplo is used to place on the plot the text strings for haplotypes of interest. After the function call (e.g., locator.haplo(obj)), the user can click, with the left mouse button, on as many points in the plot as desired. Then, clicking with the middle mouse button will cause the haplotypes to be printed on the plot. The format of a haplotype is "a:b:c", where a, b, and c are alleles, and the separator ":" is used to separate alleles on a haplotype. The algorithm chooses the closest point that the user clicks on, and prints the haplotype either above the point (for points on the lower-half of the plot) or below the point (for points in the upper-half of the plot). } \seealso{ \code{\link{haplo.score}} } \examples{ # follow the pseudo-code # score.out <- haplo.score(y, geno, trait.type = "gaussian") # plot(score.out) # locator.haplo(score.out) } % docclass is function % Converted by Sd2Rd version 37351. haplo.stats/man/plot.haplo.score.slide.Rd0000644000176200001440000001124414672315242020055 0ustar liggesusers% $Author: sinnwell $ --> % $Date: 2011/11/10 15:29:41 $ --> % $Header: /projects/genetics/cvs/cvsroot/haplo.stats/man/plot.haplo.score.slide.Rd,v 1.2 2011/11/10 15:29:41 sinnwell Exp $ --> % $Locker: $ --> % % $Log: plot.haplo.score.slide.Rd,v $ % Revision 1.2 2011/11/10 15:29:41 sinnwell % major update to hapglm, minor changes to Rd files, prepare for version 1.5.0 release % % Revision 1.1.1.1 2011/04/13 15:48:54 sinnwell % bring in haplo.stats, uses functions from rlocal and mgenet % % Revision 1.2 2008/01/08 20:28:31 sinnwell % fix comment % % Revision 1.1 2008/01/08 17:12:10 sinnwell % Initial revision % % Revision 1.14 2007/05/29 15:53:50 sinnwell % leave cex.axis and las/srt to be given by user % % Revision 1.13 2007/05/22 21:22:25 sinnwell % cex to cex.axis and srt to las % % Revision 1.12 2007/04/12 21:08:05 sinnwell % add comments about near-zero p-values. % % Revision 1.11 2005/03/31 19:23:24 sinnwell % *** empty log message *** % % Revision 1.10 2004/03/16 22:26:38 sinnwell % comment example, point to haplo.score.slide % % Revision 1.9 2004/03/03 17:33:43 sinnwell % T to TRUE % % Revision 1.8 2004/03/03 15:47:05 sinnwell % examples update % % Revision 1.7 2004/03/02 15:03:23 sinnwell % fix example % % Revision 1.6 2004/02/06 19:30:30 sinnwell % *** empty log message *** % % Revision 1.5 2004/02/06 17:44:37 sinnwell % add cex,srt,... documentation % % Revision 1.4 2004/01/27 21:26:26 sinnwell % update for marker distance option % % Revision 1.3 2003/09/16 21:09:33 sinnwell % edit pval explanations % % Revision 1.2 2003/08/27 21:17:13 schaid % *** empty log message *** % % Revision 1.1 2003/08/22 20:37:14 sinnwell % Initial revision \name{plot.haplo.score.slide} \alias{plot.haplo.score.slide} \title{ Plot a haplo.score.slide Object } \description{ Method function to plot an object of class haplo.score.slide. The p-values from haplo.score.slide are for sub-haplotypes of a larger chromosomal region, and these are plotted to visualize the change in p-values as the sub-haplotype "slides" over a chromosome. Plot -log10(p-value) on the y-axis vs. the loci over which it was computed on the x-axis. } \usage{ \method{plot}{haplo.score.slide}(x, pval="global", dist.vec=1:x$n.loci, ...) } \arguments{ \item{x}{ The object returned from haplo.score.slide } \item{pval}{ Character string for the choice of p-value to plot. Options are: "global" (the global score statistic p-value based on an asymptotic chi-square distribution), "global.sim" (the global score statistic simulated p-value), and "max.sim" (the simulated p-value for the maximum score statistic). } \item{dist.vec }{ Numeric vector for position (i.e., in cM) of the loci along a chromosome. Distances on x-axis will correspond to these positions. } \item{\dots }{ Dynamic parameter for the values of additional parameters for the plot method. Some useful options for manageing the x-axis labels are cex.axis, las, and srt. } } \value{ Nothing is returned. } \details{ The x-axis has tick marks for all loci. The y-axis is the -log10() of the selected p-value. For each haplo.score result, plot a horizontal line at the height of -log10(p-value) drawn across the loci over which it was calculated. Therefore a p-value of 0.001 for the first 3 loci will plot as a horizontal line plotted at y=3 covering the first three tick marks. If the p-value for a set of loci is zero or very near zero, it is set to a minimum. Global asymptotic p-values of zero are set to the minimum of an epsilon or the lowest non-zero p-value in the region. Simulated p-values equal to zero are set to 0.5 divided by the total number of simulations performed. } \section{References}{ Schaid DJ, Rowland CM, Tines DE, Jacobson RM, Poland GA. "Score tests for association of traits with haplotypes when linkage phase is ambiguous." Amer J Hum Genet. 70 (2002): 425-434. } \seealso{ \code{\link{haplo.score.slide}} } \examples{ # This example has a long run-time, therefore it is commented # data(hla.demo) # attach(hla.demo) # geno.11 <- hla.demo[,-c(1:4)] # label.11 <- c("DPB","DPA","DMA","DMB","TAP1","TAP2","DQB","DQA","DRB","B","A") #For an ordinal trait, slide by 3 loci, and simulate p-values: # y.ord <- as.numeric(resp.cat) # slide.ord.sim <- haplo.score.slide(y.ord, geno.11, trait.type = "ordinal", # n.slide=3, locus.label=label.11, simulate=TRUE, # sim.control=score.sim.control(min.sim=500)) # print(slide.ord.sim) # plot(slide.ord.sim) # plot(slide.ord.sim, pval="global.sim", las=2, cex.axis=.8) # plot(slide.ord.sim, pval="max.sim", srt=90, cex.axis=.8) } \keyword{scores} % docclass is function % Converted by Sd2Rd version 37351. haplo.stats/man/summary.haplo.glm.Rd0000644000176200001440000000372414672315242017145 0ustar liggesusers% $Author: sinnwell $ --> % $Date: 2011/11/10 15:29:41 $ --> % $Header: /projects/genetics/cvs/cvsroot/haplo.stats/man/summary.haplo.glm.Rd,v 1.1 2011/11/10 15:29:41 sinnwell Exp $ --> % $Locker: $ --> % $Log: summary.haplo.glm.Rd,v $ % Revision 1.1 2011/11/10 15:29:41 sinnwell % major update to hapglm, minor changes to Rd files, prepare for version 1.5.0 release % % Revision 1.4 2008/04/04 16:12:33 sinnwell % add note about returned value by invisible() % % Revision 1.3 2008/03/24 21:14:44 sinnwell % add show.missing argument % % Revision 1.2 2008/01/09 21:32:16 sinnwell % change comments to % % % Revision 1.1 2007/11/07 21:46:59 sinnwell % Initial revision % % Revision 1.2 2004/03/16 17:02:24 sinnwell % add return char to usage \name{summary.haplo.glm} \alias{summary.haplo.glm} \alias{print.summary.haplo.glm} \title{ Print and summary of a haplo.glm object } \description{ Do print and summary as in regular glm, then display extra information on haplotypes used in the model fit } \usage{ \method{summary}{haplo.glm}(object, show.all.haplo=FALSE, show.missing=FALSE, ...) \method{print}{summary.haplo.glm}(x, digits = max(getOption("digits")-3,3), ...) } \arguments{ \item{x}{ A haplo.glm object } \item{object}{ A haplo.glm object } \item{show.all.haplo }{ Logical. If TRUE, print all haplotypes considered in the model. } \item{show.missing }{ Logical. If TRUE, print number of rows removed because of missing values (NA) in y or x-covariates, or all alleles missing in geno } \item{digits}{ Number of numeric digits to print. } \item{\dots }{ Optional arguments for summary method } } \value{ If print is assigned, the object contains a list with the coefficient and haplotype data.frames which are printed by the method. } \details{ Uses print.glm for the first section, then prints information on the haplotypes. } \seealso{ \code{\link{haplo.glm}} } \keyword{glm} % docclass is function % Converted by Sd2Rd version 37351. haplo.stats/man/printBanner.Rd0000644000176200001440000000173214672315242016047 0ustar liggesusers\name{printBanner} \alias{printBanner} \title{ Print a nice banner } \description{ Print a centered banner that carries to multiple lines } \usage{ printBanner(str, banner.width=options()$width, char.perline=.75*banner.width, border="=") } \arguments{ \item{str}{ character string - a title within the banner } \item{banner.width }{ width of banner, the default is set to fit current options } \item{char.perline }{ number of characters per line for the title, the default is 75\% of the banner.width parameter } \item{border}{ type of character for the border } } \value{ nothing is returned } \details{ This function prints a nice banner in both R and S-PLUS } \seealso{ options } \examples{ printBanner("This is a pretty banner", banner.width=40, char.perline=30) # the output looks like this: # ======================================== # This is a pretty banner # ======================================== } % docclass is function % Converted by Sd2Rd version 43267. haplo.stats/man/print.haplo.score.slide.Rd0000644000176200001440000000167214672315242020237 0ustar liggesusers% $Author: sinnwell $ % $Date: 2011/11/10 15:29:41 $ % $Header: /projects/genetics/cvs/cvsroot/haplo.stats/man/print.haplo.score.slide.Rd,v 1.3 2011/11/10 15:29:41 sinnwell Exp $ % $Locker: $ % $Log: print.haplo.score.slide.Rd,v $ % Revision 1.3 2011/11/10 15:29:41 sinnwell % major update to hapglm, minor changes to Rd files, prepare for version 1.5.0 release % % Revision 1.2 2008/01/08 21:56:53 sinnwell % add RCS keywords % \name{print.haplo.score.slide} \alias{print.haplo.score.slide} \title{ Print the contents of a haplo.score.slide object } \description{ Print the data frame returned from haplo.score.slide } \usage{ \method{print}{haplo.score.slide}(x, digits=max(options()$digits - 2, 5), ...) } \arguments{ \item{x}{ A haplo.score.slide object } \item{digits}{ Number of digits to print for numeric output } \item{\dots }{ Optional arguments for the print method } } % docclass is function % Converted by Sd2Rd version 37351. haplo.stats/man/print.haplo.em.Rd0000644000176200001440000000255414672315242016426 0ustar liggesusers% $Author: sinnwell $ % $Date: 2011/11/10 15:29:41 $ % $Header: /projects/genetics/cvs/cvsroot/haplo.stats/man/print.haplo.em.Rd,v 1.4 2011/11/10 15:29:41 sinnwell Exp $ % $Locker: $ % $Log: print.haplo.em.Rd,v $ % Revision 1.4 2011/11/10 15:29:41 sinnwell % major update to hapglm, minor changes to Rd files, prepare for version 1.5.0 release % % Revision 1.3 2008/01/08 20:39:02 sinnwell % fix comments % % Revision 1.2 2008/01/08 15:54:14 sinnwell % minor change to desc % % Revision 1.1 2007/11/07 21:27:38 sinnwell % Initial revision % % Revision 1.2 2004/02/27 15:29:37 sinnwell % move haplo.em from keyword to 'see' % % Revision 1.1 2004/02/26 22:36:48 sinnwell % Initial revision \name{print.haplo.em} \alias{print.haplo.em} \title{ Print contents of a haplo.em object } \description{ Print a data frame with haplotypes and their frequencies. Likelihood information is also printed. } \usage{ \method{print}{haplo.em}(x, digits=max(options()$digits-2, 5), nlines=NULL, ...) } \arguments{ \item{x}{ A haplo.em object } \item{digits}{ number of significant digits to print for numeric values } \item{nlines}{ To shorten output, print the first 1:nlines rows of the large data frame. } \item{\dots }{ optional arguments for print } } \value{ Nothing is returned } \seealso{ \code{\link{haplo.em}} } % docclass is function % Converted by Sd2Rd version 37351. haplo.stats/man/haplo.em.Rd0000644000176200001440000001711514672315242015272 0ustar liggesusers% $Author: sinnwell $ % $Date: 2011/12/12 17:02:15 $ % $Header: /projects/genetics/cvs/cvsroot/haplo.stats/man/haplo.em.Rd,v 1.5 2011/12/12 17:02:15 sinnwell Exp $ % $Locker: $ % %$Log: haplo.em.Rd,v $ %Revision 1.5 2011/12/12 17:02:15 sinnwell %notes about LC-COLLATE, and update see-also % %Revision 1.4 2011/11/10 15:29:41 sinnwell %major update to hapglm, minor changes to Rd files, prepare for version 1.5.0 release % %Revision 1.3 2009/09/30 19:58:16 sinnwell %remove keywords section % %Revision 1.2 2009/09/30 19:17:51 sinnwell %remove empty sections % %Revision 1.1 2008/01/08 20:21:53 sinnwell %Initial revision % %Revision 1.15 2004/03/16 22:35:51 sinnwell %added empty space in example % %Revision 1.14 2004/03/16 15:56:04 sinnwell %alter returns for ps file % %Revision 1.13 2004/03/01 21:14:27 sinnwell %add example % %Revision 1.12 2004/02/26 22:53:55 sinnwell %remove alias-ed topics % %Revision 1.11 2004/02/23 20:26:07 sinnwell %add summary and print as topics, works as /alias for Rd % %Revision 1.10 2004/02/06 16:46:48 sinnwell %add parameter weights % %Revision 1.9 2003/10/15 14:28:48 schaid %*** empty log message *** % %Revision 1.8 2003/10/15 14:24:17 schaid %*** empty log message *** % %Revision 1.7 2003/09/19 21:40:48 schaid %*** empty log message *** % %Revision 1.6 2003/08/26 20:58:00 schaid %Major update of haplo.em, with new version using progressive insertion, and this helpfile reflecting the many changes in terms of parameters and returned values \name{haplo.em} \alias{haplo.em} \title{ EM Computation of Haplotype Probabilities, with Progressive Insertion of Loci } \description{ For genetic marker phenotypes measured on unrelated subjects, with linkage phase unknown, compute maximum likelihood estimates of haplotype probabilities. Because linkage phase is unknown, there may be more than one pair of haplotypes that are consistent with the oberved marker phenotypes, so posterior probabilities of pairs of haplotypes for each subject are also computed. Unlike the usual EM which attempts to enumerate all possible pairs of haplotypes before iterating over the EM steps, this "progressive insertion" algorithm progressively inserts batches of loci into haplotypes of growing lengths, runs the EM steps, trims off pairs of haplotypes per subject when the posterior probability of the pair is below a specified threshold, and then continues these insertion, EM, and trimming steps until all loci are inserted into the haplotype. The user can choose the batch size. If the batch size is chosen to be all loci, and the threshold for trimming is set to 0, then this algorithm reduces to the usual EM algorithm. } \usage{ haplo.em(geno, locus.label=NA, miss.val=c(0, NA), weight, control= haplo.em.control()) } \arguments{ \item{geno}{ matrix of alleles, such that each locus has a pair of adjacent columns of alleles, and the order of columns corresponds to the order of loci on a chromosome. If there are K loci, then ncol(geno) = 2*K. Rows represent the alleles for each subject. } \item{locus.label }{ vector of labels for loci. } \item{miss.val }{ vector of values that represent missing alleles in geno. } \item{weight}{ weights for observations (rows of geno matrix). } \item{control}{ list of control parameters. The default is constructed by the function haplo.em.control. The default behavior of this function results in the following parameter settings: loci.insert.order=1:n.loci, insert.batch.size=min(4,n.loci), min.posterior= 0.0001, tol=0.00001, max.iter=500, random.start=0 (no random start), iseed=NULL (no saved seed to start random start), verbose=0 (no printout during EM iterations). See haplo.em.control for more details. } } \value{ list with components: \item{converge}{ indicator of convergence of the EM algorithm (1 = converge, 0 = failed). } \item{lnlike}{ value of lnlike at last EM iteration (maximum lnlike if converged). } \item{lnlike.noLD}{ value of lnlike under the null of linkage equilibrium at all loci. } \item{lr}{ likelihood ratio statistic to test the final lnlike against the lnlike that assumes complete linkage equilibrium among all loci (i.e., haplotype frequencies are products of allele frequencies). } \item{df.lr}{ degrees of freedom for likelihood ratio statistic. The df for the unconstrained final model is the number of non-zero haplotype frequencies minus 1, and the df for the null model of complete linkage equilibrium is the sum, over all loci, of (number of alleles - 1). The df for the lr statistic is df[unconstrained] - df[null]. This can result in negative df, if many haplotypes are estimated to have zero frequency, or if a large amount of trimming occurs, when using large values of min.posterior in the list of control parameters. } \item{hap.prob}{ vector of mle's of haplotype probabilities. The ith element of hap.prob corresponds to the ith row of haplotype. } \item{locus.label}{ vector of labels for loci, of length K (see definition of input values). } \item{subj.id}{ vector of id's for subjects used in the analysis, based on row number of input geno matrix. If subjects are removed, then their id will be missing from subj.id. } \item{rows.rem}{ now defunct, but set equal to a vector of length 0, to be compatible with other functions that check for rows.rem. } \item{indx.subj}{ vector for row index of subjects after expanding to all possible pairs of haplotypes for each person. If indx.subj=i, then i is the ith row of geno. If the ith subject has n possible pairs of haplotypes that correspond to their marker genotype, then i is repeated n times. } \item{nreps}{ vector for the count of haplotype pairs that map to each subject's marker genotypes. } \item{max.pairs}{ vector of maximum number of pairs of haplotypes per subject that are consistent with their marker data in the matrix geno. The length of max.pairs = nrow(geno). This vector is computed by geno.count.pairs. } \item{hap1code}{ vector of codes for each subject's first haplotype. The values in hap1code are the row numbers of the unique haplotypes in the returned matrix haplotype. } \item{hap2code}{ similar to hap1code, but for each subject's second haplotype. } \item{post}{ vector of posterior probabilities of pairs of haplotypes for a person, given their marker phenotypes. } \item{haplotype}{ matrix of unique haplotypes. Each row represents a unique haplotype, and the number of columns is the number of loci. } \item{control}{ list of control parameters for algorithm. See haplo.em.control } } \details{ The basis of this progressive insertion algorithm is from the sofware snphap by David Clayton. Although some of the features and control parameters of this S-PLUS version are modeled after snphap, there are substantial differences, such as extension to allow for more than two alleles per locus, and some other nuances on how the alogrithm is implemented. } \note{ Sorted order of haplotypes with character alleles is system-dependent, and can be controlled via the LC_COLLATE locale environment variable. Different locale settings can cause results to be non-reproducible even when controlling the random seed. } \seealso{ \code{\link{setupGeno}}, \code{\link{haplo.em.control}} } \examples{ data(hla.demo) attach(hla.demo) geno <- hla.demo[,c(17,18,21:24)] label <-c("DQB","DRB","B") keep <- !apply(is.na(geno) | geno==0, 1, any) save.em.keep <- haplo.em(geno=geno[keep,], locus.label=label) # warning: output will not exactly match print.haplo.em(save.em.keep) } % docclass is function % Converted by Sd2Rd version 37351. haplo.stats/man/f.power.Rd0000644000176200001440000000177614672315242015155 0ustar liggesusers\name{f.power} \alias{f.power} \alias{f.power.dif} \alias{f.sample.size} \title{ Power and sample size for the F distribution } \description{ Power and sample size for the F distribution given non-centrality, degrees of freedom, alpha, N (for f.power), and power (for f.sample.size) } \usage{ f.power(n, nc, df1, alpha) f.power.dif(n, nc, df1, alpha, power) f.sample.size(nc, df1, alpha, power, lower=20, upper=10000) } \arguments{ \item{n}{ sample size } \item{nc}{ non-centrality parameter } \item{df1}{ degrees of freedom for numerator of f distribution } \item{alpha}{ type-I error } \item{power}{ desired power (for sample size) } \item{lower}{ lower limit for search space for sample size solution } \item{upper}{ upper limit for search space for sample size solution } } \value{ power, the difference in power from target power, and sample size, respectively for the three functions, assuming an F distribution for the test statistic } \keyword{power} % docclass is function % Converted by Sd2Rd version 43268. haplo.stats/man/haplo.glm.control.Rd0000644000176200001440000001070414672315242017124 0ustar liggesusers% $Author: sinnwell $ --> % $Date: 2011/11/10 15:29:41 $ --> % $Header: /projects/genetics/cvs/cvsroot/haplo.stats/man/haplo.glm.control.Rd,v 1.4 2011/11/10 15:29:41 sinnwell Exp $ --> % $Locker: $ --> % $Log: haplo.glm.control.Rd,v $ % Revision 1.4 2011/11/10 15:29:41 sinnwell % major update to hapglm, minor changes to Rd files, prepare for version 1.5.0 release % % Revision 1.3 2008/04/29 17:19:14 sinnwell % change defaults of freq.min and min.count % % Revision 1.2 2008/04/01 16:20:22 sinnwell % default for haplo.min.count in call set to 5 % % Revision 1.1 2008/01/08 22:39:25 sinnwell % Initial revision % %Revision 1.4 2004/03/12 18:04:08 sinnwell %add returns to usage % %Revision 1.3 2004/03/02 16:34:31 sinnwell %change T to TRUE % %Revision 1.2 2004/03/01 21:25:50 sinnwell %comment in an example % %Revision 1.1 2003/09/16 16:01:47 schaid %Initial revision \name{haplo.glm.control} \alias{haplo.glm.control} \title{ Create list of control parameters for haplo.glm } \description{ Create a list of control pararameters for haplo.glm. If no parameters are passed to this function, then all default values are used. } \usage{ haplo.glm.control(haplo.effect="add", haplo.base=NULL, haplo.min.count=NA, haplo.freq.min=.01, sum.rare.min=0.001, haplo.min.info=0.001, keep.rare.haplo=TRUE, eps.svd=sqrt(.Machine$double.eps), glm.c=glm.control(maxit=500), em.c=haplo.em.control()) } \arguments{ \item{haplo.effect }{ the "effect" of a haplotypes, which determines the covariate (x) coding of haplotypes. Valid options are "additive" (causing x = 0, 1, or 2, the count of a particular haplotype), "dominant" (causing x = 1 if heterozygous or homozygous carrier of a particular haplotype; x = 0 otherwise), and "recessive" (causing x = 1 if homozygous for a particular haplotype; x = 0 otherwise). } \item{haplo.base }{ the index for the haplotype to be used as the base-line for regression. By default, haplo.base=NULL, so that the most frequent haplotype is chosen as the base-line. } \item{haplo.min.count }{ The minimum number of expected counts for a haplotype from the sample to be included in the model. The count is based on estimated haplotype frequencies. Suggested minimum is 5. } \item{haplo.freq.min }{ the minimum haplotype frequency for a haplotype to be included in the regression model as its own effect. The haplotype frequency is based on the EM algorithm that estimates haplotype frequencies independent of trait. } \item{sum.rare.min }{ the sum of the "rare" haplotype frequencies must be larger than sum.rare.min in order for the pool of rare haplotypes to be included in the regression model as a separate term. If this condition is not met, then the rare haplotypes are pooled with the base-line haplotype (see keep.rare.haplo below). } \item{haplo.min.info }{ the minimum haplotype frequency for determining the contribution of a haplotype to the observed information matrix. Haplotypes with less frequency are dropped from the observed information matrix. The haplotype frequency is that from the final EM that iteratively updates haplotype frequencies and regression coefficients. } \item{keep.rare.haplo }{ TRUE/FALSE to determine if the pool of rare haplotype should be kept as a separate term in the regression model (when keep.rare.haplo=TRUE), or pooled with the base-line haplotype (when keep.rare.haplo=FALSE). } \item{eps.svd}{ argument to be passed to Ginv for the generalized inverse of the information matrix, helps to determine the number of singular values } \item{glm.c }{ list of control parameters for the usual glm.control (see glm.control). } \item{em.c }{ list of control parameters for the EM algorithm to estimate haplotype frequencies, independent of trait (see haplo.em.control). } } \value{ the list of above components } \seealso{ \code{\link{haplo.glm}}, \code{\link{haplo.em.control}}, \code{\link{glm.control}} } \examples{ # NOT RUN # using the data set up in the example for haplo.glm, # the control function is used in haplo.glm as follows # > fit <- haplo.glm(y ~ male + geno, family = gaussian, # > na.action="na.geno.keep", # > data=my.data, locus.label=locus.label, # > control = haplo.glm.control(haplo.min.count=5, # > em.c=haplo.em.control(n.try=1))) } \keyword{glm} % docclass is function % Converted by Sd2Rd version 37351. haplo.stats/man/haplo.power.cc.Rd0000644000176200001440000001352614672315242016413 0ustar liggesusers\name{haplo.power.cc} \alias{haplo.power.cc} \alias{haplo.power.cc.ncp} \alias{find.intercept.logistic} \title{ Compute either power or sample size for haplotype associations in a case-control study. } \description{ For a given set of haplotypes, their population frequencies, and assumed logistic regression coefficients (log-odds-ratios per haplotype, assuming a log-additive model of haplotype effects), determine either the sample size (total number of subjects) to achieve a stated power or the power for a stated sample size. } \usage{ haplo.power.cc(haplo, haplo.freq, base.index, haplo.beta, case.frac, prevalence, alpha, sample.size=NULL, power=NULL) } \arguments{ \item{haplo}{ matrix of haplotypes, with rows the different haplotypes and columns the alleles of the haplotypes. For H haplotypes of L loci, haplo has dimension H x L. } \item{haplo.freq }{ vector of length H for the population haplotype frequencies (corresponding to the rows of haplo) } \item{base.index }{ integer index of the haplotype considered to be the base-line for logistic regression (index between 1 and H); often, the most common haplotype is chosen for the base-line. } \item{haplo.beta }{ vector of length H for the haplotype effects: each beta is the log-odds-ratio for the corresponding haplotype effect. The base-line hapoltype should have a beta=0, as this base-line beta coefficient will be automatically calculated according to the haplotype frequencies, the other haplo.beta's, and the disease prevalence. } \item{case.frac }{ fraction of cases in the total sample size (e.g., case.frac = .5 for typical case-control studies with equal numbers of cases and controls) } \item{prevalence}{ popultaion disease prevalence (used to calculate the base-line intercept beta) } \item{alpha}{ type-I error rate } \item{sample.size }{ total sample size (if power is to be calcualted). Either sample.size or power must be specified, but not both. } \item{power}{ desired power (if sample.size is to be calculated). Either sample.size or power must be specified, but not both. } } \value{ list with components: \item{ss.phased.haplo}{ sample size for phased haplotypes } \item{ss.unphased.haplo}{ sample size for unphased haplotypes } \item{power.phased.haplo}{ power for phased haplotypes } \item{power.unphased.haplo}{ power for unphased haplotypes } } \details{ Asympotic power calcuations are based on the non-centrality parameter of a non-central chi-square distribution. This non-centrality parameter is determined by the specified regression coefficients ( values in haplo.beta), as well as the distribution of haplotypes (determined by haplo.freq). To account for haplotypes with unknown phase, all possible haplotype pairs are enumerated, and the EM algorithm is used to determine the posterior probabilities of pairs of haplotypes, conditional on unphased genotype data. Because this function uses the function haplo.em, the number of possible haplotypes can be large when there is a large number of loci (i.e., large number of columns in the haplo matrix). If too large, the function haplo.em will run out of memory, making this function (haplo.power.cc) fail. If this occurs, then consider reducing the "size" of the haplotypes, by reducing the number of columns of haplo, and adjusting the corresponding vectors (e.g., haplo.freq, haplo.beta). } \references{ Schaid, DJ. Power and sample size for testing associations of haplotypes with complex traits. Ann Hum Genet (2005) 70:116-130. } \seealso{ \code{\link{haplo.em}} \code{\link{haplo.power.qt}} } \examples{ haplo <- rbind( c( 1, 2, 2, 1, 2), c( 1, 2, 2, 1, 1), c( 1, 1, 2, 1, 1), c( 1, 2, 1, 1, 2), c( 1, 2, 2, 2, 1), c( 1, 2, 1, 1, 1), c( 1, 1, 2, 2, 1), c( 1, 1, 1, 1, 2), c( 1, 2, 1, 2, 1), c( 1, 1, 1, 2, 1), c( 2, 2, 1, 1, 2), c( 1, 1, 2, 1, 2), c( 1, 1, 2, 2, 2), c( 1, 2, 2, 2, 2), c( 2, 2, 2, 1, 2), c( 1, 1, 1, 1, 1), c( 2, 1, 1, 1, 1), c( 2, 1, 2, 1, 1), c( 2, 2, 1, 1, 1), c( 2, 2, 1, 2, 1), c( 2, 2, 2, 1, 1)) dimnames(haplo)[[2]] <- paste("loc", 1:ncol(haplo), sep=".") haplo <- data.frame(haplo) haplo.freq <- c(0.170020121, 0.162977867, 0.123742455, 0.117706237, 0.097585513, 0.084507042, 0.045271630, 0.039235412, 0.032193159, 0.019114688, 0.019114688, 0.013078471, 0.013078471, 0.013078471, 0.013078471, 0.006036217, 0.006036217, 0.006036217, 0.006036217, 0.006036217, 0.006036217) # define index for risk haplotypes (having alleles 1-1 at loci 2 and 3) haplo.risk <- (1:nrow(haplo))[haplo$loc.2==1 & haplo$loc.3==1] # define index for baseline haplotype base.index <- 1 # specify OR for risk haplotypes or <- 1.25 # determine beta regression coefficients for risk haplotypes haplo.beta <- numeric(length(haplo.freq)) haplo.beta[haplo.risk] <- log(or) # Note that non-risk haplotypes have beta=0, as does the intercept # (haplotype with base.index value). # Compute total sample size for given power haplo.power.cc(haplo, haplo.freq, base.index, haplo.beta, case.frac=.5, prevalence=.1, alpha=.05, power=.8) # Compute power for given sample size haplo.power.cc(haplo, haplo.freq, base.index, haplo.beta, case.frac=.5, prevalence=.1, alpha=.05, sample.size=11978) } \keyword{design} % docclass is function % Converted by Sd2Rd version 43268. haplo.stats/man/haplo.em.control.Rd0000644000176200001440000001161514672315242016750 0ustar liggesusers% $Author: sinnwell $ % $Date: 2011/11/10 15:29:41 $ % $Header: /projects/genetics/cvs/cvsroot/haplo.stats/man/haplo.em.control.Rd,v 1.4 2011/11/10 15:29:41 sinnwell Exp $ % $Locker: $ % $Log: haplo.em.control.Rd,v $ % Revision 1.4 2011/11/10 15:29:41 sinnwell % major update to hapglm, minor changes to Rd files, prepare for version 1.5.0 release % % Revision 1.3 2008/04/15 20:13:52 sinnwell % fix a few words in min.post and max.haps.limit % % Revision 1.2 2008/02/05 16:31:58 sinnwell % change default for min.posterior % % Revision 1.1 2008/01/08 22:28:27 sinnwell % Initial revision % %Revision 1.8 2007/04/16 20:42:05 sinnwell %remove max.haps.limit % %Revision 1.7 2005/03/31 16:39:15 sinnwell %code-doc agree on max.iter % %Revision 1.6 2004/12/29 16:34:23 sinnwell %explain tol and max.iter better % %Revision 1.5 2004/03/01 21:16:43 sinnwell %comment out example % %Revision 1.4 2004/02/05 22:27:20 sinnwell %fix usage again, remove '<-function' % %Revision 1.3 2004/02/05 17:28:20 schaid %set defaults to new values %Revision 1.2 2003/08/26 17:57:06 schaid %edits by Dan Schaid . % %Revision 1.1 2003/08/22 20:23:05 sinnwell %Initial revision \name{haplo.em.control} \alias{haplo.em.control} \title{ Create the Control Parameters for the EM Computation of Haplotype Probabilities, with Progressive Insertion of Loci } \description{ Create a list of parameters that control the EM algorithm for estimating haplotype frequencies, based on progressive insertion of loci. Non-default parameters for the EM algorithm can be set as parameters passed to haplo.em.control. } \usage{ haplo.em.control(loci.insert.order=NULL, insert.batch.size = 6, min.posterior = 1e-09, tol = 1e-05, max.iter=5000, random.start=0, n.try = 10, iseed=NULL, max.haps.limit=2e6, verbose=0) } \arguments{ \item{loci.insert.order }{ Numeric vector with specific order to insert the loci. If this value is NULL, the insert order will be in sequential order (1, 2, ..., No. Loci). } \item{insert.batch.size }{ Number of loci to be inserted in a single batch. } \item{min.posterior }{ Minimum posterior probability of a haplotype pair, conditional on observed marker genotypes. Posteriors below this minimum value will have their pair of haplotypes "trimmed" off the list of possible pairs. If all markers in low LD, we recommend using the default. If markers have at least moderate LD, can increase this value to use less memory. } \item{tol}{ If the change in log-likelihood value between EM steps is less than the tolerance (tol), it has converged. } \item{max.iter }{ Maximum number of iterations allowed for the EM algorithm before it stops and prints an error. If the error is printed, double max.iter. } \item{random.start }{ If random.start = 0, then the inititial starting values of the posteriors for the first EM attempt will be based on assuming equal posterior probabilities (conditional on genotypes). If random.start = 1, then the initial starting values of the first EM attempt will be based on assuming a uniform distribution for the initial posterior probabilities. } \item{n.try }{ Number of times to try to maximize the lnlike by the EM algorithm. The first try uses, as initial starting values for the posteriors, either equal values or uniform random variables, as determined by random.start. All subsequent tries will use random uniform values as initial starting values for the posterior probabilities. } \item{iseed}{ An integer or a saved copy of .Random.seed. This allows simulations to be reproduced by using the same initial seed. } \item{max.haps.limit }{ Maximum number of haplotypes for the input genotypes. It is used as the amount of memory to allocate in C for the progressive-insertion E-M steps. Within haplo.em, the first step is to try to allocate the sum of the result of geno.count.pairs(), if that exceeds max.haps.limit, start by allocating max.haps.limit. If that is exceeded in the progressive-insertions steps, the C function doubles the memory until it can no longer request more. } \item{verbose}{ Logical, if TRUE, print procedural messages to the screen. If FALSE, do not print any messages. } } \value{ A list of the parameters passed to the function. } \details{ The default is to use n.try = 10. If this takes too much time, it may be worthwhile to decrease n.try. Other tips for computing haplotype frequencies for a large number of loci, particularly if some have many alleles, is to decrease the batch size (insert.batch.size), increase the memory (max.haps.limit), and increase the probability of trimming off rare haplotypes at each insertion step (min.posterior). } \seealso{ \code{\link{haplo.em}}, \code{\link{haplo.score}} } \examples{ # This is how it is used within haplo.score # > score.gauss <- haplo.score(resp, geno, trait.type="gaussian", # > em.control=haplo.em.control(insert.batch.size = 2, n.try=1)) } haplo.stats/man/seqhap.dat.Rd0000644000176200001440000000410214672315242015607 0ustar liggesusers% $Author: sinnwell $ % $Date: 2009/04/27 21:22:07 $ % $Header: /projects/genetics/cvs/cvsroot/haplo.stats/man/seqhap.dat.Rd,v 1.8 2009/04/27 21:22:07 sinnwell Exp $ % $Locker: $ % $Log: seqhap.dat.Rd,v $ % Revision 1.8 2009/04/27 21:22:07 sinnwell % em to emph % % Revision 1.7 2009/04/09 20:25:06 sinnwell % add log keyword for RCS % \name{seqhap.dat} \alias{seqhap.dat} \alias{seqhap.pos} \title{ Simulated data for seqhap examples } \description{ Simulated data set for the demonstration of seqhap functionality. Contains one column for disease status and columns representing 10 SNP loci with a known association. seqhap.pos contains a column for chromosome position, as required by seqhap. } \usage{ data(seqhap.dat) data(seqhap.pos) } \format{ A data frame with 1000 observations on the following 21 variables. \describe{ \item{\code{disease}}{numeric, indicator of disease status 0=no, 1=yes} \item{\code{m1.1}}{first allele of genotype} \item{\code{m1.2}}{second allele of genotype} \item{\code{m2.1}}{first allele of genotype} \item{\code{m2.2}}{second allele of genotype} \item{\code{m3.1}}{first allele of genotype} \item{\code{m3.2}}{second allele of genotype} \item{\code{m4.1}}{first allele of genotype} \item{\code{m4.2}}{second allele of genotype} \item{\code{m5.1}}{first allele of genotype} \item{\code{m5.2}}{second allele of genotype} \item{\code{m6.1}}{first allele of genotype} \item{\code{m6.2}}{second allele of genotype} \item{\code{m7.1}}{first allele of genotype} \item{\code{m7.2}}{second allele of genotype} \item{\code{m8.1}}{first allele of genotype} \item{\code{m8.2}}{second allele of genotype} \item{\code{m9.1}}{first allele of genotype} \item{\code{m9.2}}{second allele of genotype} \item{\code{m10.1}}{first allele of genotype} \item{\code{m10.2}}{second allele of genotype} } } \references{ Yu Z, Schaid DJ (2007) Sequantial haplotype scan methods for association analysis. \emph{Gen Epi}, in print. } \examples{ data(seqhap.dat) } \keyword{datasets} haplo.stats/man/haplo.scan.Rd0000644000176200001440000001431214672315242015611 0ustar liggesusers% $Author: sinnwell $ % $Date: 2009/09/30 19:58:16 $ % $Header: /projects/genetics/cvs/cvsroot/haplo.stats/man/haplo.scan.Rd,v 1.4 2009/09/30 19:58:16 sinnwell Exp $ % $Locker: $ % $Log: haplo.scan.Rd,v $ % Revision 1.4 2009/09/30 19:58:16 sinnwell % remove keywords section % % Revision 1.3 2009/09/30 19:01:46 sinnwell % remove section{} and put in note{} % % Revision 1.2 2008/01/09 21:18:10 sinnwell % fixed alias for haplo.scan.obs % % Revision 1.1 2008/01/09 19:30:31 sinnwell % Initial revision % %Revision 1.6 2005/03/31 16:37:16 sinnwell %code-doc agree on param order % %Revision 1.5 2005/03/28 22:23:03 sinnwell %*** empty log message *** % %Revision 1.4 2005/03/24 16:45:10 schaid %*** empty log message *** % %Revision 1.3 2005/03/24 16:08:13 schaid %*** empty log message *** % %Revision 1.2 2005/03/24 14:41:32 sinnwell %add the max.loc vector % %Revision 1.1 2005/03/23 18:07:44 sinnwell %Initial revision \name{haplo.scan} \alias{haplo.scan} \alias{haplo.scan.obs} \alias{haplo.scan.sim} \title{ Search for a trait-locus by sliding a fixed-width window over each marker locus and scanning all possible haplotype lengths within the window } \description{ Search for haplotypes that have the strongest association with a binary trait (typically case/control status) by sliding a fixed-width window over each marker locus and scanning all possible haplotype lengths within the window. For each haplotype length, a score statistic is computed to compare the set of haplotypes with a given length between cases versus controls. The locus-specific score statistic is the maximum score statistic calculated on loci containing that locus. The maximum score statistic over all haplotype lengths within all possible windows is used for a global test for association. Permutations of the trait are used to compute p-values. } \usage{ haplo.scan(y, geno, width=4, miss.val=c(0, NA), em.control=haplo.em.control(), sim.control=score.sim.control()) haplo.scan.obs(y, em.obj, width) haplo.scan.sim(y.reord, save.lst, nloci) } \arguments{ \item{y}{ Vector of binary trait values, must be 1 for cases and 0 for controls. } \item{y.reord}{ Same as y, except the order is permuted } \item{geno}{ Matrix of alleles, such that each locus has a pair of adjacent columns of alleles, and the order of columns corresponds to the order of loci on a chromosome. If there are K loci, then ncol(geno) = 2*K. Rows represent alleles for each subject. } \item{width}{ Width of sliding the window } \item{miss.val }{ Vector of codes for missing values of alleles } \item{em.control }{ A list of control parameters to determine how to perform the EM algorithm for estimating haplotype frequencies when phase is unknown. The list is created by the function haplo.em.control - see this function for more details. } \item{sim.control }{ A list of control parameters to determine how simulations are performed for simulated p-values. The list is created by the function score.sim.control and the default values of this function can be changed as desired. See score.sim.control for details. } \item{em.obj}{ Object returned from haplo.em, performed on geno } \item{save.lst}{ Information on haplotypes needed for haplo.scan.sim, already calculated in haplo.scan } \item{nloci}{ number of markers } } \value{ A list that has class haplo.scan, which contains the following items: \item{call}{ The call to haplo.scan } \item{scan.df}{ A data frame containing the maximum test statistic for each window around each locus, and its simulated p-value. } \item{max.loc}{ The loci (locus) which contain(s) the maximum observed test statistic over all haplotype lengths and all windows. } \item{globalp}{ A p-value for the significance of the global maximum statistic. } \item{nsim}{ Number of simulations performed } } \details{ Search for a region for which the haplotypes have the strongest association with a binary trait by sliding a window of fixed width over each marker locus, and considering all haplotype lengths within each window. To acount for unknown linkage phase, the function haplo.em is called prior to scanning, to create a list of haplotype pairs and posterior probabilities. To illustrate the scanning, consider a 10-locus dataset. When placing a window of width 3 over locus 5, the possible haplotype lengths that contain locus 5 are three (loci 3-4-5, 4-5-6, and 5-6-7), two (loci 4-5, and 5-6) and one (locus 5). For each of these loci subsets a score statistic is computed, which is based on the difference between the mean vector of haplotype counts for cases and that for controls. The maximum of these score statistics, over all possible haplotype lengths within a window, is the locus-specific test statistic. The global test statistic is the maximum over all computed score statistics. To compute p-values, the case/control status is randomly permuted. Simulations are performed until precision criteria are met for all p-values; the criteria are controlled by score.sim.control. See the note for long run times. } \references{ \describe{ \item{Cheng et al-1}{Cheng R, Ma JZ, Wright FA, Lin S, Gau X, Wang D, Elston RC, Li MD. "Nonparametric disequilibrium mapping of functional sites using haplotypes of multiple tightly linked single-nucleotide polymorphism markers". Genetics 164 (2003):1175-1187.} \item{Cheng et al-2}{Cheng R, Ma JZ, Elston RC, Li MD. "Fine Mapping Functional Sites or Regions from Case-Control Data Using Haplotypes of Multiple Linked SNPs." Annals of Human Genetics 69 (2005): 102-112. } } } \note{ For datasets with many estimated haplotypes, the run-time can be very long. } \seealso{ \code{\link{haplo.em}}, \code{\link{haplo.em.control}}, \code{\link{score.sim.control}} } \examples{ # create a random genotype matrix with 10 loci, 50 cases, 50 controls set.seed(1) tmp <- ifelse(runif(2000)>.3, 1, 2) geno <- matrix(tmp, ncol=20) y <- rep(c(0,1),c(50,50)) # search 10-locus region, typically don't limit the number of # simulations, but run time can get long with many simulations scan.obj <- haplo.scan(y, geno, width=3, sim.control = score.sim.control(min.sim=10, max.sim=20)) print(scan.obj) } % docclass is function % Converted by Sd2Rd version 37351. haplo.stats/man/anova.haplo.glm.Rd0000644000176200001440000000566714672315242016564 0ustar liggesusers% $Author: sinnwell $ --> % $Date: 2011/11/10 15:29:40 $ --> % $Header: /projects/genetics/cvs/cvsroot/haplo.stats/man/anova.haplo.glm.Rd,v 1.1 2011/11/10 15:29:40 sinnwell Exp $ --> % $Locker: $ --> % $Log: anova.haplo.glm.Rd,v $ % Revision 1.1 2011/11/10 15:29:40 sinnwell % major update to hapglm, minor changes to Rd files, prepare for version 1.5.0 release % % Revision 1.4 2008/04/04 16:12:33 sinnwell % add note about returned value by invisible() % % Revision 1.3 2008/03/24 21:14:44 sinnwell % add show.missing argument % % Revision 1.2 2008/01/09 21:32:16 sinnwell % change comments to % % % Revision 1.1 2007/11/07 21:46:59 sinnwell % Initial revision % % Revision 1.2 2004/03/16 17:02:24 sinnwell % add return char to usage \name{anova.haplo.glm} \alias{anova.haplo.glm} \alias{anova.haplo.glmlist} \title{ Analysis of variance for haplo.glm model fit } \description{ Perform an analysis of variance between two haplo.glm model fits using the deviances from the fitted objects } \usage{ \method{anova}{haplo.glm}(object, ..., dispersion=NULL, test="Chisq") } \arguments{ \item{object}{ A haplo.glm or glm object } \item{\dots}{ More model fits to compare against the fit in the first argument } \item{dispersion }{ the dispersion parameter for the fitting family. By default it is obtained from the object(s) } \item{test}{ character string for the test of model comparison. Only "Chisq" supported for haplo.glm objects } } \value{ A data.frame of the anova class, with these columns: Df, Deviance, Resid.Df, Resid.Dev, p-value } \details{ Uses print.anova for the displayed result } \seealso{ \code{\link{haplo.glm}} } \examples{ data(hla.demo) geno <- as.matrix(hla.demo[,c(17,18,21:24)]) keep <- !apply(is.na(geno) | geno==0, 1, any) # SKIP THESE THREE LINES hla.demo <- hla.demo[keep,] # IN AN ANALYSIS geno <- geno[keep,] # attach(hla.demo) label <-c("DQB","DRB","B") y <- hla.demo$resp y.bin <- 1*(hla.demo$resp.cat=="low") # set up a genotype array as a model.matrix for inserting into data frame # Note that hla.demo is a data.frame, and we need to subset to columns # of interest. Also also need to convert to a matrix object, so that # setupGeno can code alleles and convert geno to 'model.matrix' class. geno <- setupGeno(geno, miss.val=c(0,NA)) # geno now has an attribute 'unique.alleles' which must be passed to # haplo.glm as allele.lev=attributes(geno)$unique.alleles, see below my.data <- data.frame(geno=geno, age=hla.demo$age, male=hla.demo$male, y=y, y.bin=y.bin) fit.gaus <- haplo.glm(y ~ male + geno, family = gaussian, na.action= "na.geno.keep", data=my.data, locus.label=label, control = haplo.glm.control(haplo.freq.min=0.02)) glmfit.gaus <- glm(y~male, family=gaussian, data=my.data) anova.haplo.glm(glmfit.gaus, fit.gaus) } \keyword{glm} % docclass is function % Converted by Sd2Rd version 37351. haplo.stats/man/setupGeno.Rd0000644000176200001440000000522014672315242015532 0ustar liggesusers% $Author: sinnwell $ % $Date: 2011/12/12 17:02:15 $ % $Header: /projects/genetics/cvs/cvsroot/haplo.stats/man/setupGeno.Rd,v 1.4 2011/12/12 17:02:15 sinnwell Exp $ % $Locker: $ % $Log: setupGeno.Rd,v $ % Revision 1.4 2011/12/12 17:02:15 sinnwell % notes about LC-COLLATE, and update see-also % % Revision 1.3 2011/11/10 15:29:41 sinnwell % major update to hapglm, minor changes to Rd files, prepare for version 1.5.0 release % % Revision 1.2 2008/01/09 21:21:56 sinnwell % *** empty log message *** % % Revision 1.1 2008/01/09 19:54:34 sinnwell % Initial revision % \name{setupGeno} \alias{setupGeno} \title{ Create a group of locus objects from a genotype matrix, assign to 'model.matrix' class. } \description{ The function makes each pair of columns a locus object, which recodes alleles to numeric and saves the original alleles as an attribute of the model.matrix. } \usage{ setupGeno(geno, miss.val=c(0,NA), locus.label=NULL) } \arguments{ \item{geno}{ Matrix of alleles, such that each locus has a pair of adjacent columns of alleles, and the order of columns corresponds to the order of loci on a chromosome. If there are K loci, then ncol(geno) = 2*K. Rows represent alleles for each subject. } \item{miss.val }{ A vector of codes denoting missing values for allele1 and allele2. Note that NA will always be treated as a missing value, even if not specified in miss.val. Also note that if multiple missing value codes are specified, the original missing value code for a specific individual can not be retrieved from the loci object. } \item{locus.label}{ vector of labels for the loci } } \value{ A 'model.matrix' object with the alleles recoded to numeric values, and the original values are stored in the 'unique.alleles' attribute. The ith item of the unique.alleles list is a vector of unique alleles for the ith locus. } \details{ This function contains the essential parts of the loci function, which is no longer within haplo.stats } \note{ A matrix that contains all elements of mode character will be sorted in alphabetic order. This order may differ across platforms according to your setting of LC_COLLATE. See the note in \code{haplo.em} about how this sort order affects results. } \seealso{ \code{\link{locus}}, \code{\link{haplo.glm}}, \code{\link{haplo.em}} } \examples{ # Create some loci to work with a1 <- 1:6 a2 <- 7:12 b1 <- c("A","A","B","C","E","D") b2 <-c("A","A","C","E","F","G") c1 <- c("101","10","115","132","21","112") c2 <- c("100","101","0","100","21","110") myGeno <- data.frame(a1,a2,b1,b2,c1,c2) myGeno <- setupGeno(myGeno) myGeno attributes(myGeno)$unique.alleles } % docclass is function % Converted by Sd2Rd version 37351. haplo.stats/man/find.haplo.beta.qt.Rd0000644000176200001440000000311514672315242017141 0ustar liggesusers\name{find.haplo.beta.qt} \alias{find.haplo.beta.qt} \alias{find.beta.qt.phase.known} \alias{find.intercept.qt.phase.known} \title{ Find beta coefficients for risk haplotypes, for specified r2 } \description{ Find betas for risk haplotypes and intercept (beta for base.index haplotype) with a given r2 } \usage{ find.haplo.beta.qt(haplo, haplo.freq, base.index, haplo.risk, r2, y.mu=0, y.var=1) find.beta.qt.phase.known(beta.size, haplo.risk, base.index, haplo, haplo.freq, r2, y.mu, y.var) find.intercept.qt.phase.known(beta.no.intercept, base.index, haplo, haplo.freq, y.mu) } \arguments{ \item{haplo}{ matrix of haplotypes, with rows the different haplotypes and columns the alleles of the haplotypes. For H haplotypes of L loci, haplo has dimension H x L. } \item{haplo.freq }{ vector of length H for the population haplotype frequencies (corresponding to the rows of haplo) } \item{base.index }{ integer index of the haplotype considered to be the base-line for logistic regression (index between 1 and H); often, the most common haplotype is chosen for the base-line. } \item{haplo.risk }{ vector of relative risks for haplotypes } \item{r2}{ correlation coefficient } \item{y.mu }{ mean of y, a quantitative trait } \item{y.var }{ variance of y, a quantitative trait } \item{beta.size}{ beta values for risk haplotypes in find.beta.qt.phase.known } \item{beta.no.intercept}{ beta vector for haplotypes for quantitative trait, excluding the beta for intercept } } \value{ beta estimates for haplotypes or intercept } \keyword{power} % docclass is function % Converted by Sd2Rd version 43268. haplo.stats/man/fitted.haplo.glm.Rd0000644000176200001440000000246514672315242016730 0ustar liggesusers% $Author: sinnwell $ --> % $Date: 2011/11/10 15:29:41 $ --> % $Header: /projects/genetics/cvs/cvsroot/haplo.stats/man/fitted.haplo.glm.Rd,v 1.1 2011/11/10 15:29:41 sinnwell Exp $ --> % $Locker: $ --> % $Log: fitted.haplo.glm.Rd,v $ % Revision 1.1 2011/11/10 15:29:41 sinnwell % major update to hapglm, minor changes to Rd files, prepare for version 1.5.0 release % % \name{fitted.haplo.glm} \alias{fitted.haplo.glm} \title{ Fitted values from haplo.glm fit } \description{ The fitted values for each person, collapsed over their expanded fitted values due to their multiple possible haplotype pairs } \usage{ \method{fitted}{haplo.glm}(object, ...) } \arguments{ \item{object}{ A haplo.glm object } \item{\dots }{ Optional arguments for the method } } \value{ vector of fitted values } \details{ Many of the subjects in a haplo.glm fit are expanded in the model matrix with weights used to reflect the posterior probability of the subject's haplotype pairs given their genotype. The working fitted values within the fitted object are from this expanded model matrix, and the fitted values from this method are calculated from the weighted fitted value for the subject across all their haplotype pairs. } \seealso{ \code{\link{haplo.glm}} } \keyword{glm} % docclass is function % Converted by Sd2Rd version 37351. haplo.stats/man/vcov.haplo.glm.Rd0000644000176200001440000000220114672315242016412 0ustar liggesusers% $Author: sinnwell $ --> % $Date: 2011/11/10 15:29:41 $ --> % $Header: /projects/genetics/cvs/cvsroot/haplo.stats/man/vcov.haplo.glm.Rd,v 1.1 2011/11/10 15:29:41 sinnwell Exp $ --> % $Locker: $ --> % $Log: vcov.haplo.glm.Rd,v $ % Revision 1.1 2011/11/10 15:29:41 sinnwell % major update to hapglm, minor changes to Rd files, prepare for version 1.5.0 release % % \name{vcov.haplo.glm} \alias{vcov.haplo.glm} \title{variance-covariance matrix of a fitted haplo.glm object } \description{ Returns the variance-covariance matrix of the main parameters of a fitted haplo.glm object } \usage{ \method{vcov}{haplo.glm}(object, freq=TRUE, ...) } \arguments{ \item{object}{ A haplo.glm object } \item{freq}{ Logical. If TRUE, return the full covariance matrix including the entries for the frequency parameters } \item{\dots }{ Optional arguments for print method } } \value{ Variance-covariance matrix of model parameters } \details{ var.mat is pre-computed in haplo.glm, the generalized inverse of the Louis information matrix } \seealso{ \code{\link{haplo.glm}} } \keyword{glm} % docclass is function % Converted by Sd2Rd version 37351. haplo.stats/man/residuals.haplo.glm.Rd0000644000176200001440000000306414672315242017440 0ustar liggesusers% $Author: sinnwell $ --> % $Date: 2011/11/10 15:29:41 $ --> % $Header: /projects/genetics/cvs/cvsroot/haplo.stats/man/residuals.haplo.glm.Rd,v 1.1 2011/11/10 15:29:41 sinnwell Exp $ --> % $Locker: $ --> % $Log: residuals.haplo.glm.Rd,v $ % Revision 1.1 2011/11/10 15:29:41 sinnwell % major update to hapglm, minor changes to Rd files, prepare for version 1.5.0 release % % \name{residuals.haplo.glm} \alias{residuals.haplo.glm} \title{ Accessing residuals for haplo.glm fit } \description{ Access the residuals from a haplo.glm model fit } \usage{ \method{residuals}{haplo.glm}(object, type=c("deviance", "pearson", "working", "response"), ...) } \arguments{ \item{object}{ A haplo.glm object } \item{type}{ Type of residuals to return. Options are "deviance" (default), "pearson", "working", and "response". Partial residuals not supported in this method. } \item{\dots }{ Optional arguments } } \value{ Residuals for each person in the model. } \details{ Many of the subjects in a haplo.glm fit are expanded in the model matrix with weights used to reflect the posterior probability of the subject's haplotype pairs given their genotype. The working residuals within the fitted object are from this expanded model matrix, and the residuals in this method are calculated from the weighted fitted value for the subject across all their haplotype pairs. } \seealso{ \code{\link{haplo.glm}}, \code{\link{residuals.glm}}, \code{\link{fitted.haplo.glm}} } \keyword{glm} % docclass is function % Converted by Sd2Rd version 37351. haplo.stats/man/chisq.power.Rd0000644000176200001440000000175214672315242016031 0ustar liggesusers\name{chisq.power} \alias{chisq.power} \alias{chisq.power.dif} \alias{chisq.sample.size} \title{ Power and sample size for the chi-square distribution } \description{ Power and sample size for the chi-square distribution given non-centrality, degrees of freedom, alpha, N (for chisq.power), and power (for chisq.sample.size) } \usage{ chisq.power(n, nc, df, alpha) chisq.power.dif(n, nc, df, alpha, power) chisq.sample.size(nc, df=df, alpha, power, lower=20, upper=100000) } \arguments{ \item{n}{ sample size (for power) } \item{nc}{ non-centrality parameter } \item{df}{ degrees of freedom } \item{alpha}{ type-I error rate } \item{power}{ desired power (for sample size) } \item{lower}{ lower bound for search space for sample size } \item{upper}{ upper bound for search space for sample size } } \value{ power, the difference in power from target power, and sample size, respectively for the three different functions } \keyword{power} % docclass is function % Converted by Sd2Rd version 43268. haplo.stats/man/haplo.power.qt.Rd0000644000176200001440000001275114672315242016451 0ustar liggesusers\name{haplo.power.qt} \alias{haplo.power.qt} \alias{haplo.power.qt.ncp} \title{ Compute either power or sample size for haplotype associations with a quantitative trait. } \description{ For a given set of haplotypes, their population frequencies, and assumed linear regression coefficients (additive model of haplotype effects on a quantitative trait), determine either the sample size to achieve a stated power or the power for a stated sample size. } \usage{ haplo.power.qt(haplo, haplo.freq, base.index, haplo.beta, y.mu, y.var, alpha, sample.size = NULL, power = NULL) } \arguments{ \item{haplo}{ matrix of haplotypes, with rows the different haplotypes and columns the alleles of the haplotypes. For H haplotypes of L loci, haplo has dimension H x L. } \item{haplo.freq }{ vector of length H for the population haplotype frequencies (corresponding to the rows of haplo) } \item{base.index }{ integer index of the haplotype considered to be the base-line for logistic regression (index between 1 and H); often, the most common haplotype is chosen for the base-line. } \item{haplo.beta }{ vector of length H for the haplotype effects: each beta is the amount of expected change per haplotype from the base-line average, and the beta for the base-line (indexed by base.index) is the beta for the intercept. } \item{y.mu }{ population mean of quantitative trait, y. } \item{y.var }{ popultaion variance of quantitative trait, y. } \item{alpha}{ type-I error rate } \item{sample.size }{ sample size (if power is to be calcualted). Either sample.size or power must be specified, but not both. } \item{power}{ desired power (if sample.size is to be calculated). Either sample.size or power must be specified, but not both. } } \value{ list with components: \item{ss.phased.haplo}{ sample size for phased haplotypes } \item{ss.unphased.haplo}{ sample size for unphased haplotypes } \item{power.phased.haplo}{ power for phased haplotypes } \item{power.unphased.haplo}{ power for unphased haplotypes } } \details{ Asympotic power calcuations are based on the non-centrality parameter of a non-central F distribution. This non-centrality parameter is determined by the specified regression coefficients ( values in haplo.beta), as well as the distribution of haplotypes (determined by haplo.freq). To account for haplotypes with unknown phase, all possible haplotype pairs are enumerated, and the EM algorithm is used to determine the posterior probabilities of pairs of haplotypes, conditional on unphased genotype data. Because this function uses the function haplo.em, the number of possible haplotypes can be large when there is a large number of loci (i.e., large number of columns in the haplo matrix). If too large, the function haplo.em will run out of memory, making this function (haplo.power.qt) fail. If this occurs, then consider reducing the "size" of the haplotypes, by reducing the number of columns of haplo, and adjusting the corresponding vectors (e.g., haplo.freq, haplo.beta). } \references{ Schaid, DJ. Power and sample size for testing associations of haplotypes with complex traits. Ann Hum Genet (2005) 70:116-130. } \seealso{ \code{\link{find.haplo.beta.qt}}, \code{\link{haplo.em}}, \code{\link{haplo.power.cc}} } \examples{ haplo <- rbind( c( 1, 2, 2, 1, 2), c( 1, 2, 2, 1, 1), c( 1, 1, 2, 1, 1), c( 1, 2, 1, 1, 2), c( 1, 2, 2, 2, 1), c( 1, 2, 1, 1, 1), c( 1, 1, 2, 2, 1), c( 1, 1, 1, 1, 2), c( 1, 2, 1, 2, 1), c( 1, 1, 1, 2, 1), c( 2, 2, 1, 1, 2), c( 1, 1, 2, 1, 2), c( 1, 1, 2, 2, 2), c( 1, 2, 2, 2, 2), c( 2, 2, 2, 1, 2), c( 1, 1, 1, 1, 1), c( 2, 1, 1, 1, 1), c( 2, 1, 2, 1, 1), c( 2, 2, 1, 1, 1), c( 2, 2, 1, 2, 1), c( 2, 2, 2, 1, 1)) dimnames(haplo)[[2]] <- paste("loc", 1:ncol(haplo), sep=".") haplo <- data.frame(haplo) haplo.freq <- c(0.170020121, 0.162977867, 0.123742455, 0.117706237, 0.097585513, 0.084507042, 0.045271630, 0.039235412, 0.032193159, 0.019114688, 0.019114688, 0.013078471, 0.013078471, 0.013078471, 0.013078471, 0.006036217, 0.006036217, 0.006036217, 0.006036217, 0.006036217, 0.006036217) # define index for risk haplotypes (having alleles 1-1 at loci 2 and 3) haplo.risk <- (1:nrow(haplo))[haplo$loc.2==1 & haplo$loc.3==1] # define index for baseline haplotype base.index <- 1 # Because it can be easier to speficy genetic effect size in terms of # a regression model R-squared value (r2), we use an # auxiliary function to set up haplo.beta based on a specifed r2 value: tmp <- find.haplo.beta.qt(haplo,haplo.freq,base.index,haplo.risk, r2=0.01, y.mu=0, y.var=1) haplo.beta <- tmp$beta # Compute sample size for given power haplo.power.qt(haplo, haplo.freq, base.index, haplo.beta, y.mu=0, y.var=1, alpha=.05, power=.80) # Compute power for given sample size haplo.power.qt(haplo, haplo.freq, base.index, haplo.beta, y.mu=0, y.var=1, alpha=.05, sample.size = 2091) } \keyword{design} % docclass is function % Converted by Sd2Rd version 43268. haplo.stats/man/get.hapPair.Rd0000644000176200001440000000636714672315242015740 0ustar liggesusers%$Author: sinnwell $ %$Date: 2009/09/30 20:05:38 $ %$Header: /projects/genetics/cvs/cvsroot/haplo.stats/man/get.hapPair.Rd,v 1.3 2009/09/30 20:05:38 sinnwell Exp $ %$Locker: $ %$Log: get.hapPair.Rd,v $ %Revision 1.3 2009/09/30 20:05:38 sinnwell %rm keywords, or leave one with one from /doc/KEYWORDS % %Revision 1.2 2009/09/30 19:21:50 sinnwell %remove empty sections % %Revision 1.1 2008/03/10 18:59:33 sinnwell %Initial revision % % \name{get.hapPair} \alias{get.hapPair} \title{ Get a list of objects for haplotype pairs } \description{ Get a list of objects for modeling haplotype pairs from a set of unique haplotypes and their frequencies, given the baseline haplotype } \usage{ get.hapPair(haplo, haplo.freq, base.index) } \arguments{ \item{haplo}{ matrix of haplotypes, with rows the different haplotypes and columns the alleles of the haplotypes. For H haplotypes of L loci, haplo has dimension H x L. } \item{haplo.freq }{ vector of length H for the population haplotype frequencies (corresponding to the rows of haplo) } \item{base.index }{ integer index of the haplotype considered to be the base-line for logistic regression (index between 1 and H); often, the most common haplotype is chosen for the base-line. } } \value{ list with components: \item{p.g}{ Genotype probability under Hardy-Weinberg Equilibrium, where the genotype is the haplotype pair } \item{x.haplo}{ Design matrix for all pairs of haplotypes, excluding the baseline haplotype. Effects are coded to an additive effect for the haplotypes. } \item{haplo.indx}{ two-column matrix containing the indices for the haplotypes in x.haplo. The indices are the row of the haplotype in haplo. } } \examples{ haplo <- rbind( c( 1, 2, 2, 1, 2), c( 1, 2, 2, 1, 1), c( 1, 1, 2, 1, 1), c( 1, 2, 1, 1, 2), c( 1, 2, 2, 2, 1), c( 1, 2, 1, 1, 1), c( 1, 1, 2, 2, 1), c( 1, 1, 1, 1, 2), c( 1, 2, 1, 2, 1), c( 1, 1, 1, 2, 1), c( 2, 2, 1, 1, 2), c( 1, 1, 2, 1, 2), c( 1, 1, 2, 2, 2), c( 1, 2, 2, 2, 2), c( 2, 2, 2, 1, 2), c( 1, 1, 1, 1, 1), c( 2, 1, 1, 1, 1), c( 2, 1, 2, 1, 1), c( 2, 2, 1, 1, 1), c( 2, 2, 1, 2, 1), c( 2, 2, 2, 1, 1)) dimnames(haplo)[[2]] <- paste("loc", 1:ncol(haplo), sep=".") haplo <- data.frame(haplo) haplo.freq <- c(0.170020121, 0.162977867, 0.123742455, 0.117706237, 0.097585513, 0.084507042, 0.045271630, 0.039235412, 0.032193159, 0.019114688, 0.019114688, 0.013078471, 0.013078471, 0.013078471, 0.013078471, 0.006036217, 0.006036217, 0.006036217, 0.006036217, 0.006036217, 0.006036217) hPair <- get.hapPair(haplo, haplo.freq, base.index=1) names(hPair) dim(hPair$x.haplo) } % docclass is function haplo.stats/man/Ginv.Rd0000644000176200001440000000551714672315242014475 0ustar liggesusers% $Author: sinnwell $ % $Date: 2011/10/26 15:03:59 $ % $Header: /projects/genetics/cvs/cvsroot/mgenet/man/Ginv.Rd,v 1.2 2011/10/26 15:03:59 sinnwell Exp $ % $Locker: $ % $Log: Ginv.Rd,v $ % Revision 1.2 2011/10/26 15:03:59 sinnwell % take out unused sections in Rd % % Revision 1.1 2011/04/28 19:49:59 sinnwell % Ginv.Rd % % Revision 1.2 2008/01/08 20:26:29 sinnwell % change comment symbol % % Revision 1.1 2008/01/08 19:52:27 sinnwell % Initial revision % %revision 1.9 %date: 2006/08/07 15:37:41; author: sinnwell; state: Exp; lines: +6 -5 %add eps to , fix a few comments %---------------------------- %revision 1.8 %date: 2006/04/26 13:44:50; author: sinnwell; state: Exp; lines: +3 -0 %add eps %---------------------------- %revision 1.7 %date: 2006/03/07 22:01:36; author: sinnwell; state: Exp; lines: +4 -11 %made example runable %---------------------------- %revision 1.6 %date: 2005/03/18 17:06:10; author: sinnwell; state: Exp; lines: +10 -7 %notify use of LAPACK instead of LINPACK % %revision 1.5 %date: 2004/03/01 21:08:28; author: sinnwell; state: Exp; lines: +8 -6 %comment example % %revision 1.4 %date: 2003/03/12 20:46:25; author: sinnwell; state: Exp; lines: +3 -7 %remove sgml comments % %revision 1.3 %date: 2003/03/07 22:15:57; author: sinnwell; state: Exp; lines: +4 -4 %add keywords and fix syntax %---------------------------- %revision 1.2 %date: 2003/03/07 22:10:01; author: sinnwell; state: Exp; lines: +9 -6 %fix keywords %---------------------------- \name{Ginv} \alias{Ginv} \title{ Compute Generalized Inverse of Input Matrix } \description{ Singular value decomposition (svd) is used to compute a generalized inverse of input matrix. } \usage{ Ginv(x, eps=1e-6) } \arguments{ \item{x}{ A matrix. } \item{eps}{ minimum cutoff for singular values in svd of x } } \value{ List with components: \item{Ginv}{ Generalized inverse of x. } \item{rank}{ Rank of matrix x. } } \details{ The svd function uses the LAPACK standard library to compute the singular values of the input matrix, and the rank of the matrix is determined by the number of singular values that are at least as large as max(svd)*eps, where eps is a small value. For S-PLUS, the Matrix library is required (Ginv loads Matrix if not already done so). } \section{References}{ Press WH, Teukolsky SA, Vetterling WT, Flannery BP. Numerical recipes in C. The art of scientific computing. 2nd ed. Cambridge University Press, Cambridge.1992. page 61. Anderson, E., et al. (1994). LAPACK User's Guide, 2nd edition, SIAM, Philadelphia. } \seealso{ svd } \examples{ # for matrix x, extract the generalized inverse and # rank of x as follows x <- matrix(c(1,2,1,2,3,2),ncol=3) save <- Ginv(x) ginv.x <- save$Ginv rank.x <- save$rank } \keyword{matrix} % docclass is function % Converted by Sd2Rd version 37351. haplo.stats/man/x.sexcheck.Rd0000644000176200001440000000255614672315242015635 0ustar liggesusers% $Author: sinnwell $ % $Date: 2011/11/10 15:29:41 $ % $Header: /projects/genetics/cvs/cvsroot/haplo.stats/man/x.sexcheck.Rd,v 1.2 2011/11/10 15:29:41 sinnwell Exp $ % $Locker: $ % $Log: x.sexcheck.Rd,v $ % Revision 1.2 2011/11/10 15:29:41 sinnwell % major update to hapglm, minor changes to Rd files, prepare for version 1.5.0 release % % Revision 1.1 2008/01/09 19:57:03 sinnwell % Initial revision % \name{x.sexcheck} \alias{x.sexcheck} \title{ consistency checks for x.linked locus } \description{ Given an x.linked locus object and a vector of gender codes, the function will check to make sure the gender codes match the codes used to originally define the locus, and that no individuals defined as males are heterozygous. } \usage{ x.sexcheck(x, sex, stop=FALSE) } \arguments{ \item{x}{ an object of class locus } \item{sex}{ a vector of codes identifying the gender of each individual contained in the locus object } \item{stop}{ if T , any warnings are converted to errors and execution is halted immediately } } \value{ T if one or more errors were found F if no errors were found } \seealso{ \code{\link{locus}} } \examples{ c1 <- c(101,10, 112,112,21,112) c2 <- c(101,101,112,100,21, 10) gender <- rep(c("M","F"),3) loc2 <- locus(c1,c2,chrom="X",locus.alias="DXS1234", x.linked=TRUE, sex=gender) loc2 } % docclass is function % Converted by Sd2Rd version 37351. haplo.stats/man/geno1to2.Rd0000644000176200001440000000363614672315242015230 0ustar liggesusers% $Author: sinnwell $ % $Date: 2011/02/21 19:08:18 $ % $Header: /projects/genetics/cvs/cvsroot/mgenet/man/geno1to2.Rd,v 1.1.1.1 2011/02/21 19:08:18 sinnwell Exp $ % $Locker: $ % %$Log: geno1to2.Rd,v $ %Revision 1.1.1.1 2011/02/21 19:08:18 sinnwell %"initial, general functions for R genetics at Mayo BSI % %Revision 1.4 2009/09/30 20:05:38 sinnwell %rm keywords, or leave one with one from /doc/KEYWORDS % %Revision 1.3 2009/09/30 19:19:23 sinnwell %remove empty sections % %Revision 1.2 2008/01/08 20:25:48 sinnwell %change comments % %Revision 1.1 2008/01/08 19:54:32 sinnwell %Initial revision % %Revision 1.5 2007/04/24 16:27:09 sinnwell %rm link to unlistToMat, no longer used % %Revision 1.4 2007/04/20 15:08:59 sinnwell %rm na.code, update example % %Revision 1.3 2007/04/18 17:16:17 sinnwell %add locus.label arg % %Revision 1.2 2007/04/16 20:13:05 sinnwell %*** empty log message *** % %Revision 1.1 2006/08/11 21:53:53 sinnwell %Initial revision \name{geno1to2} \alias{geno1to2} \title{ convert genotype matrix from 1-column 2-column } \description{ convert 1-column genotype matrix to 2-column genotype matrix, converting from a minor allele count (0,1,2) to (1/1, 1/2, 2/2) where 2 is the minor allele. (not supported for x-linked markers) } \usage{ geno1to2(geno, locus.label=NULL) } \arguments{ \item{geno}{ 1-column representation of genotype matrix for 2-allele loci. Values are 0, 1, or 2, usually the count of minor alleles } \item{locus.label }{ Vector of labels for loci, If a locus name is "A", its columns will be "A.1" and "A.2" } } \value{ a 2-column genotype matrix } \examples{ geno1 <- matrix(c(0,0,1, 1,0,2, 2,1,0), ncol=3, byrow=TRUE) geno1to2(geno1, locus.label=c("A", "B", "C")) ## demonstrate how NA and 3 will be coded geno1[1,3] <- NA geno1[1,1] <- 3 geno1to2(geno1) } \keyword{utilities} % docclass is function % Converted by Sd2Rd version 37351. haplo.stats/man/internalHaploStats.Rd0000644000176200001440000000223714672315242017405 0ustar liggesusers% $Author: sinnwell $ % $Date: 2013/01/14 19:27:15 $ % $Header: /projects/genetics/cvs/cvsroot/haplo.stats/man/internalHaploStats.Rd,v 1.5 2013/01/14 19:27:15 sinnwell Exp $ % $Locker: $ % $Log: internalHaploStats.Rd,v $ % Revision 1.5 2013/01/14 19:27:15 sinnwell % add haplo.binomial % % Revision 1.4 2011/11/23 20:34:02 sinnwell % release 1.4.81, updates with test scripts % % Revision 1.3 2009/09/30 20:05:38 sinnwell % rm keywords, or leave one with one from /doc/KEYWORDS % % Revision 1.2 2009/09/30 19:30:06 sinnwell % remove empty sections % % Revision 1.1 2008/01/09 21:26:12 sinnwell % Initial revision % \name{dglm.fit} \alias{dglm.fit} \alias{haplo.chistat} \alias{haplo.enum} \alias{haplo.score.glm} \alias{haplo.score.podds} \alias{mf.gindx} \alias{haplo.binomial} \alias{residScaledGlmFit} \alias{sr.class} \alias{sr.class<-} \alias{varfunc.glm.fit} \title{ Internal functions for the HaploStats package. See the help file for the main functions (haplo.em, haplo.score, haplo.glm) for details on some of these functions. } \description{ Internal function for the HaploStats package } % docclass is function % Converted by Sd2Rd version 37351. haplo.stats/man/print.haplo.score.merge.Rd0000644000176200001440000000606014672315242020232 0ustar liggesusers% $Author: sinnwell $ % $Date: 2011/11/10 15:29:41 $ % $Header: /projects/genetics/cvs/cvsroot/haplo.stats/man/print.haplo.score.merge.Rd,v 1.3 2011/11/10 15:29:41 sinnwell Exp $ % $Locker: $ % %$Log: print.haplo.score.merge.Rd,v $ %Revision 1.3 2011/11/10 15:29:41 sinnwell %major update to hapglm, minor changes to Rd files, prepare for version 1.5.0 release % %Revision 1.2 2008/01/08 21:55:44 sinnwell %add comments % %Revision 1.14 2004/03/16 17:03:59 sinnwell %check return chars % %Revision 1.13 2004/03/12 18:07:20 sinnwell %add returns to usage % %Revision 1.12 2004/03/02 15:08:22 sinnwell %remove example, refer to haplo.score.merge.sgml % %Revision 1.11 2004/02/16 17:39:45 sinnwell %change F to FALSE in the call % %Revision 1.10 2004/02/06 19:08:27 sinnwell %*** empty log message *** % %Revision 1.9 2004/02/06 18:52:10 sinnwell %add comments for extra parameters % %Revision 1.8 2004/02/06 17:45:06 sinnwell %add '...' comment % %Revision 1.7 2003/06/19 22:04:36 sinnwell %update for parameter changes in the print method % %Revision 1.6 2003/03/19 16:08:42 sinnwell %remove spaces after sgml keywords for Rd conversion % %Revision 1.5 2003/03/13 21:50:43 sinnwell %fix examples again % %Revision 1.3 2003/03/13 21:26:04 sinnwell %fix sgml comments and try to find error for Rd % %Revision 1.2 2003/03/13 14:10:25 sinnwell %take out comments % %Revision 1.1 2003/01/17 16:58:56 sinnwell %Initial revision \name{print.haplo.score.merge} \alias{print.haplo.score.merge} \title{ Print a haplo.score.merge object } \description{ Method function to print a class of type haplo.score.merge } \usage{ \method{print}{haplo.score.merge}(x, order.by="score", all.haps=FALSE, digits=max(options()$digits-2, 5), nlines=NULL, ...) } \arguments{ \item{x}{ The object returned from haplo.score.merge (which has old class \{S\} haplo.score.merge). } \item{order.by}{ Column of the haplo.score.merge object by which to order the results } \item{all.haps}{ Logical, if (T)rue prints a row for all haplotypes. If (F)alse, the default, only prints the haplotypes kept in haplo.score for modelling. } \item{digits}{ Set the number of significant digits to print for the numeric output. } \item{nlines}{ Print the first 'nlines' rows of the large data frame for a short view of the results. } \item{\dots }{ Dynamic parameter for the values of additional parameters for the print method. } } \value{ Nothing is returned. } \details{ This is a print method function used to print information from the haplo.score.merge class. Because haplo.score.merge is a class, the generic print function can be used, which in turn calls this print.haplo.score.merge function. } \section{References}{ Schaid DJ, Rowland CM, Tines DE, Jacobson RM, Poland GA. Expected haplotype frequencies for association of traits with haplotypes when linkage phase is ambiguous. Submitted to Amer J Hum Genet. } \seealso{ haplo.score.merge, haplo.score, haplo.group } \examples{ #see example for haplo.score.merge } \keyword{scores} % docclass is function % Converted by Sd2Rd version 37351. haplo.stats/man/geno.count.pairs.Rd0000644000176200001440000000677714672315242016777 0ustar liggesusers% $Author: sinnwell $ % $Date: 2011/11/23 21:00:26 $ % $Header: /projects/genetics/cvs/cvsroot/haplo.stats/man/geno.count.pairs.Rd,v 1.3 2011/11/23 21:00:26 sinnwell Exp $ % $Locker: $ % $Log: geno.count.pairs.Rd,v $ % Revision 1.3 2011/11/23 21:00:26 sinnwell % rm geno.recode from example % % Revision 1.2 2011/11/10 15:29:41 sinnwell % major update to hapglm, minor changes to Rd files, prepare for version 1.5.0 release % % Revision 1.1 2008/01/09 20:56:47 sinnwell % Initial revision % %Revision 1.8 2004/03/17 16:53:36 sinnwell %raided to raised % %Revision 1.7 2004/03/15 15:53:57 sinnwell %summary.geno to summaryGeno % %Revision 1.6 2004/03/12 17:49:44 sinnwell %change 2^(h-1) to 2 raised (h-1) for Rd errors % %Revision 1.5 2004/03/01 21:09:47 sinnwell %make example run-able % %Revision 1.4 2003/04/21 20:15:26 sinnwell %correct usage section % %Revision 1.3 2003/04/15 12:59:30 schaid %updated description of details % %Revision 1.2 2003/04/14 13:41:14 sinnwell %description change % %Revision 1.1 2003/04/09 18:43:50 sinnwell %Initial revision \name{geno.count.pairs} \alias{geno.count.pairs} \title{ Counts of Total Haplotype Pairs Produced by Genotypes } \description{ Provide a count of all possible haplotype pairs for each subject, according to the phenotypes in the rows of the geno matrix. The count for each row includes the count for complete phenotypes, as well as possible haplotype pairs for phenotypes where there are missing alleles at any of the loci. } \usage{ geno.count.pairs(geno) } \arguments{ \item{geno}{ Matrix of alleles, such that each locus has a pair of adjacent columns of alleles, and the order of columns corresponds to the order of loci on a chromosome. If there are K loci, then geno has 2*K columns. Rows represent all observed alleles for each subject, their phenotype. } } \value{ Vector where each element gives a count of the number haplotype pairs that are consistent with a subject's phenotype, where a phenotype may include 0, 1, or 2 missing alleles at any locus. } \details{ When a subject has no missing alleles, and has h heterozygous sites, there are 2**(h-1) haplotype pairs that are possible ('**'=power). For loci with missing alleles, we consider all possible pairs of alleles at those loci. Suppose that there are M loci with missing alleles, and let the vector V have values 1 or 0 acccording to whether these loci are imputed to be heterozygous or homozygous, respectively. The length of V is M. The total number of possible states of V is 2**M. Suppose that the vector W, also of length M, provides a count of the number of possible heterozygous/homozygous states at the loci with missing data. For example, if one allele is missing, and there are K possible alleles at that locus, then there can be one homozygous and (K-1) heterozygous genotypes. If two alleles are missing, there can be K homozygous and K(K-1)/2 heterozygous genotypes. Suppose the function H(h+V) counts the total number of heterozygous sites among the loci without missing data (of which h are heterozygous) and the imputed loci (represented by the vector V). Then, the total number of possible pairs of haplotypes can be respresented as SUM(W*H(h+V)), where the sum is over all possible values for the vector V. } \seealso{ \code{\link{haplo.em}}, \code{\link{summaryGeno}} } \examples{ data(hla.demo) genohla <- hla.demo[,c(17,18,21:24)] geno <- setupGeno(genohla) count.geno <- geno.count.pairs(geno) print(count.geno) } % docclass is function % Converted by Sd2Rd version 37351. haplo.stats/man/louis.info.Rd0000644000176200001440000000175714672315242015661 0ustar liggesusers% $Author: sinnwell $ % $Date: 2011/11/10 15:29:41 $ % $Header: /projects/genetics/cvs/cvsroot/haplo.stats/man/louis.info.Rd,v 1.4 2011/11/10 15:29:41 sinnwell Exp $ % $Locker: $ % $Log: louis.info.Rd,v $ % Revision 1.4 2011/11/10 15:29:41 sinnwell % major update to hapglm, minor changes to Rd files, prepare for version 1.5.0 release % % Revision 1.3 2009/09/30 20:05:38 sinnwell % rm keywords, or leave one with one from /doc/KEYWORDS % % Revision 1.2 2009/09/30 19:32:08 sinnwell % remove empty sections % % Revision 1.1 2008/01/09 19:44:30 sinnwell % Initial revision % \name{louis.info} \alias{louis.info} \title{ Louis Information for haplo.glm } \description{ For internal use within the haplo.stats library's haplo.glm function } \usage{ louis.info(fit, epsilon=1e-8) } \arguments{ \item{fit}{ glm fitted object } \item{epsilon}{ cut-off for singular values in the generalized inverse of the information matrix } } % docclass is function % Converted by Sd2Rd version 37351. haplo.stats/man/print.haplo.cc.Rd0000644000176200001440000000264514672315242016413 0ustar liggesusers% $Author: sinnwell $ % $Date: 2011/11/10 15:29:41 $ % $Header: /projects/genetics/cvs/cvsroot/haplo.stats/man/print.haplo.cc.Rd,v 1.4 2011/11/10 15:29:41 sinnwell Exp $ % $Locker: $ % %$Log: print.haplo.cc.Rd,v $ %Revision 1.4 2011/11/10 15:29:41 sinnwell %major update to hapglm, minor changes to Rd files, prepare for version 1.5.0 release \name{print.haplo.cc} \alias{print.haplo.cc} \title{ Print a haplo.cc object } \description{ Display results for a haplotype analysis on a case-control study. } \usage{ \method{print}{haplo.cc}(x, order.by=c("score","haplotype","freq"), digits=max(options()$digits-2, 5), nlines=NULL, ...) } \arguments{ \item{x}{ A haplo.cc object, made by the haplo.cc function. } \item{order.by}{ Order the printed data frame by the column: haplotype score (score), haplotype alleles (haplotype), or haplotype frequency (freq). } \item{digits}{ Number of digits to display for the numeric columns of the data frame. } \item{nlines}{ Print the first nlines of the cc.df data frame of the haplo.cc object, keeps output short if desired. } \item{\dots }{ Dynamic parameter for the values of additional parameters for the print method. } } \value{ Nothing is returned. } \seealso{ \code{\link{haplo.cc}} } \examples{ ## for a haplo.cc object named cc.test, ## order results by haplotype # print.haplo.cc(cc.test, order.by="haplotype") } % docclass is function % Converted by Sd2Rd version 37351. haplo.stats/man/haplo.group.Rd0000644000176200001440000001014614672315242016022 0ustar liggesusers% $Author: sinnwell $ % $Date: 2011/11/10 15:29:41 $ % $Header: /projects/genetics/cvs/cvsroot/haplo.stats/man/haplo.group.Rd,v 1.2 2011/11/10 15:29:41 sinnwell Exp $ % $Locker: $ % $Log: haplo.group.Rd,v $ % Revision 1.2 2011/11/10 15:29:41 sinnwell % major update to hapglm, minor changes to Rd files, prepare for version 1.5.0 release % % Revision 1.1 2008/01/09 17:35:35 sinnwell % Initial revision % %Revision 1.12 2004/03/22 19:52:53 sinnwell %speed up example, use keep % %Revision 1.11 2004/03/01 21:31:51 sinnwell %fix example % %Revision 1.10 2004/02/06 20:58:36 sinnwell %fix syntax for n.loci % %Revision 1.9 2003/10/27 19:24:51 sinnwell %fixed syntax error % %Revision 1.8 2003/10/15 16:16:12 schaid %*** empty log message *** % %Revision 1.7 2003/08/27 21:08:53 sinnwell %update for PIN, mostly for em.control parameter list % %Revision 1.6 2003/03/24 19:13:47 sinnwell %fix group.count description % %Revision 1.5 2003/03/24 16:38:38 sinnwell %add haplo.em to % %Revision 1.4 2003/03/11 21:45:43 sinnwell %update for haplo.group returned as list % %Revision 1.3 2003/01/17 16:56:39 sinnwell %revision for haplo.score version 1.2 % %Revision 1.2 2002/09/16 14:46:42 sinnwell %Fix RCS keywords \name{haplo.group} \alias{haplo.group} \title{ Frequencies for Haplotypes by Grouping Variable } \description{ Calculate maximum likelihood estimates of haplotype probabilities for the entire dataset and separately for each subset defined by the levels of a group variable. Only autosomal loci are considered. } \usage{ haplo.group(group, geno, locus.label=NA, miss.val=0, weight=NULL, control=haplo.em.control()) } \arguments{ \item{group}{ Group can be of logical, numeric, character, or factor class type. } \item{geno}{ Matrix of alleles, such that each locus has a pair of adjacent columns of alleles, and the order of columns corresponds to the order of loci on a chromosome. If there are K loci, then geno has 2*K columns. Rows represent all observed alleles for each subject. } \item{locus.label }{ Vector of labels for loci, of length K (see definition of geno matrix). } \item{miss.val }{ Vector of codes for allele missing values. } \item{weight}{ weights for observations (rows of geno matrix). One reason to use is to adjust for disproportionate sample of sub-groups. Weights only used in the frequency calculation for the pooled subject. } \item{control}{ list of control parameters for haplo.em (see haplo.em.control). } } \value{ \item{list}{ A list as an object of the haplo.group class. The three elements of the list are described below. } \item{group.df}{ A data frame with the columns described as follows. -haplotype: Names for the K columns for the K alleles in the haplotypes. -total: Estimated frequencies for haplotypes from the total sample. -group.name.i: Estimated haplotype frequencies for the haplotype if it occurs in the group referenced by 'i'. Frequency is NA if it doesn't occur for the group. The column name is the actual variable name joined with the ith level of that variable. } \item{group.count}{ Vector containing the number of subjects for each level of the grouping variable. } \item{n.loci}{ Number of loci occuring in the geno matrix. } } \details{ Haplo.em is used to compute the maximum likelihood estimates of the haplotype frequencies for the total sample, then for each of the groups separately. } \section{References}{ Schaid DJ, Rowland CM, Tines DE, Jacobson RM, Poland GA. "Score tests for association of traits with haplotypes when linkage phase is ambiguous." Amer J Hum Genet. 70 (2002): 425-434. } \seealso{ print.haplo.group, haplo.em } \examples{ data(hla.demo) geno <- as.matrix(hla.demo[,c(17,18,21:24)]) # remove any subjects with missing alleles for faster examples, # but you may keep them in practice keep <- !apply(is.na(geno) | geno==0, 1, any) hla.demo <- hla.demo[keep,] geno <- geno[keep,] attach(hla.demo) y.ord <- as.numeric(resp.cat) y.bin <-ifelse(y.ord==1,1,0) group.bin <- haplo.group(y.bin, geno, miss.val=0) print.haplo.group(group.bin) } % docclass is function % Converted by Sd2Rd version 37351. haplo.stats/DESCRIPTION0000644000176200001440000000213214673125232014223 0ustar liggesusersPackage: haplo.stats Version: 1.9.7 Date: 2024-09-19 Title: Statistical Analysis of Haplotypes with Traits and Covariates when Linkage Phase is Ambiguous Authors@R: c(person("Schaid", "Daniel", role="aut"), person("Jason P.", "Sinnwell", email="sinnwell.jason@mayo.edu",role=c("aut","cre"))) Description: Routines for the analysis of indirectly measured haplotypes. The statistical methods assume that all subjects are unrelated and that haplotypes are ambiguous (due to unknown linkage phase of the genetic markers). The main functions are: haplo.em(), haplo.glm(), haplo.score(), and haplo.power(); all of which have detailed examples in the vignette. License: GPL (>= 2) Depends: R (>= 4.2.0), methods, stats, graphics, arsenal Imports: rms Suggests: R.rsp, testthat VignetteBuilder: R.rsp URL: https://analytictools.mayo.edu/research/haplo-stats/ NeedsCompilation: yes Packaged: 2024-09-19 13:46:47 UTC; sinnwell Author: Schaid Daniel [aut], Jason P. Sinnwell [aut, cre] Maintainer: Jason P. Sinnwell Repository: CRAN Date/Publication: 2024-09-19 22:50:02 UTC

 W Neq绪i#8F;3oO9Σ(/߭m㺽oyFM4Z֫rzsM .:D@Xpnw֓L)=sC<8vUC$|8ėE f+yӚcLSͥr2̘whBvv/u׻ՖsۨŎ08wy'6B|dGᄌm4ij^Ud|>.<3y+O,oJP}Cu\~qR.淵V:+:NFѻ{Adِt>x~ +]MJ_CaYgj[*:| O?^WTؽVi3zuf_Ⱥ $2JV瓏@nΙh;3]?W33O(&K]vw^8Nnպa4މO9y vkm e3l"S vRE n'jmo*Fu9wHƹsګUCIBe_ߐv]R)-F97Smr V`mf&vq88&I X٨w)9l 0ͷ־Hl+F#ӲנIfZ8}֫`비'og-=ҙ\v?z61YX^%Iڪ.tV:_@`)tt1j76M)5\՗d_W$;FU7Oi:W%Q2k6m8<4_UI ׵}n{m=IJڳCnD<SY#&$zS*Sr\sg%<ZscvJ=|YϾEz;>Ք٘lY6UԢ0Lr s`,`R}ߺQ-<-ηkYoDvF)}曢44=ǻr|S{n>{Fh#cJN2z}ZY'@GkOf:Otȝڋ@ۈ;xI9!ͦq)h}AvS@~`VyU+#24\3[[[ +b֍'Fk:ƻ]ۚܘr-l{ [3ho oTZCT~Ei7ɷƳ 3cwd˛_*7!qn?_q/ >zqy=㘬-7r(A25Z>'Ͱ|j>N%B>5ЮkbraiՉlXhv팚3߭3T*{/4xhze(>k:ect5 x!5viiϗ˕sf@#S^f! uLw$q.]A w=\$ڍr?rhvFeǠ枏7MP|+ |s~ds> Bb]r^Xc6gK<lt-dꟙ6ˆ/wtlxS\.]^*ޜ]S5] }]_n]6ϴ@[;_ #:.?NW'bj)qW4FK%܌O$d謁bc&{QۺX<#8wM_8Uik ĩ u>'Xd5C]:oϸuOɾXHq>a/Gz/y9vp$wۼi6jn:25iZ2ZojgXg|>5?Cͳ?F?~ʺ,SqLcm0`4ǵ=).l:W} _À a~. cG辋^Usң{~qN €"9Ä[C-aFBUlfXO^]Wipݞ%m)L/8:rFt fW X}ij8yt.|ŅڵւXi9/bĎVij}F[%-m5Y@h:85}I,Pij >.#;KoVd}†UP){yΌqQ6A7Cς`Lжv[BEaʴ%NJ:4sn7n[A/?&,ػɧ- w-]@4=} q#ahC6QnvmX%9,ƛqݮ&d YƓ|Q~a极<τ=n,MC}z .5UCɼ/ԿR"p{[6^ #??:,xW ~]ueZ|$2#]uD1ׇaAΜz=XX(q t5}¬$JwC^"~̌2 ZZOB,yu^rڵV*ɜ#.Hƹ Wvv]Bt;բvT}e>:Hz7JGKӷ*6ͭBY"|1w͇ڃD;Ý7s 7~2<޻A*NˠUQGK+O>疗AC ́J zC&pi'ο)I|xw 49s *LZmQKM'UZf\D jߑq no`nYveD).P\x纛{9G A݉RhWIGJ' ,-֧&:jx5h#$\h޼~o+Κ9DDR P`@W&TVri?t8yܬCwu2Lu+@- ] .csiLQ8YY w,yddtv^5<9A^F)} ^Ry!˟:*7[57#6X'vP& N@܀w* dcrkmIӽи $ry~|qzף>s)8U/P{*5 uz>ֹkJo87} ;?zeFM_GdoDZ9Z'\(?SͧgGhyD~<-g{31;fhuHzo h] ̏j 8ON0+РAFb}!n=[t{\)/T:Zr½S]Q1G΋eo.JDh6o^;-%0=@;//p9O$OQ=~pߤ{`fGWLZLo>xCr~}kVʖg2s$ jSoW}A7;7%gnvEB`ٳW؄_8`џzMAakJTZ՝(n,Cg-k>w g1҉Q lKk`͈lZ%" Fύ ѱO{& u9Z&taٓ幈Y &|dV /W)^Ѵ8 FĒٳ9a[`+l6T.lË.1\9A_!O2MOxgm'<ЃUvK(|wq^yZ Rd<$V x:t7vlq oj Ƿw|A d ]]X'8@na1 |eJ(o|}к'j|$웖EL[T6_/x}1C[1}Or8²jw9.w<>G2>.[JzF ^itQwhӷ- sk $b)qniCRTЯL/Xe)3Ɔͫ:O@=觡 nQ'ijNK˺Ut):ZRzE^%ԵeMˠlכFEp&_RaN n::u;?9Ījnlݵg/'+hHf%AǂCS+묡Rƥ >=&pa=@#GN-nu'pQr%4oW` _miݛ iһ_KZf F2 Oo?G跟[6[|n;>&yTe/ˀu#˔9W-m僦JAjHosAIq9ԫ{I*긴x6gS4с;vSu!d4zUL0<3.a/&}N)}4й>T _~`wj;CiRy~ b״-As5qұ,0_Z;|S<~%{O,ٷq;z\H /N 2 m[RhaߝtOOg޺ Xnٸ 9/}[x^pvޤwڊ^pM: ;F}U 979 ,4/n+ "t33yI}sMt{KbfK&}x(=?ogz%onx848tq%8o,e)[;vC\\+ ʣ#@z1"Z;1Gz_;ϸ>H#`7ѝh}Zۣ,+׀/] _Z{_4H%saoT `ث%3W~c˄;uu% , '=jId>PssY`tB}>$WzB<u[UK/.%g#~Yt{:/TTpiqƯO'0(d>0kj"aLezhagm.DvZ)1EK:Uغ<З9KC3W`wT 37·goz&YW"{<K=V0;&RX?:s.Zj_w6N_jȃ>#>#5"Tq 1V]_/x}e'ټkawxms.o3~? O NC f77SZl}OPK${V# fyd K"*WT&6N7n9 Zk?CNx쇊WilgJ:!W+2FU/Eנ@՝ WMVPcŊ]Pc~sÖFB'Z3HZi;GkyTn1Q}9pʡ^Fqhqh,>gFJ{Wua\ )\ȡ| ݋[LoQ 󼘁ȴ )m\xxr# v*.v {6-0q .O%ǜfO/L.A@؄nhF-id]y+oAeω]s#dt!hjpeaa鷍fL<>m%~VPwQ^QAu)YhT [&E/ PF)} SY Â,qNmNzk"ɤ^1`/{v<ܯeu~ ,>t9|F(/:ExG x0uSj14sДJ6ln1?~y%omt83-^q'"g|\ 7]X'&u(4?&OohN_λ?njXu T}.3zq1YhZm'^ԡRhuej;iqf寁OgF~<-GEaf>޴=!^eȨ&+7 |p>TMr PiY% wqͪW8=7n޷Pa8'-%4]Yp{HNp޾= ) dL}0 go;6as6yyhnW+ٝqLyη ~oy'NИ]WVtLnƎf֯8.{{!H$`] w&n+zZDA0̮z |RvMy՝2{0ud1m1Di[=c[7hWssBKfQHi5?˩SX`Tb؟H/߯bج?\KF}hluhu-|&6bNVxipzO\7G;Нq7n?}EVbv$q[h7Ҕ`țplUͧKcDĤ[@&ΫgzVO/Ͳyop#88gĭWy퇭 _iYu>eҲ} )_ls/e)GvOCuEXW 'O|Vri9ЕIળ1{B΋݆ SgE>|Ydl˻ӭZ'ʢKS\ -:U]K :4ȹB2h!%)G(kVkg W )חj TkɶFH̛Omśṕ Ĩ(#q+SK+N+1<t,Dv8_Ur8jRG_pxUpQP*S]Ng)oӄ_Kt"8GNgujW{8A8Nc˴@A`znbsC?$7ųxf/^qM_~Kz=k4I)`9b=pSCρSQ^ 8!]|Z<`&cs|٭$.s-yOع$f?q~iڍoVc$hq\O_'?:+5? C3?b~x]T}9Tg0}AHi"\vULί|.{{tRt^g -Zwq=3'DSis_cEpYbmv(?[CK`^QM_p,͎g?=🝢ʕ;$pc8/p;{?/4Om Ŷe)%}><}ӟw3;RW,!럴]xgAyQ:8>Kth/2č}qb H3sR-=dyU۪+H}[`t??]NHF:E:AHVp}x\ˋG]\tyZf!=p#(o\0ҿMW9y>kօk3<嬳oPO[䦀{8'ݯ/{B_7BOu:@v93-`7Ӗ_ջrs*'v䱒K֯ϦqߊZ*b\ItuZ?$!٬QWc \tRS8.yуje0\(_<7c/+K Xg-zpkMMVO|z<^.dm hOyޙ0蕞gt*h 871+eJʃ:2t<57GO"9F{/feaR<3 {n.ϋ>_4~`RuUպ$  رA:eέLVu0(-~~_FN@+&iCl*o7fXl w0xW8>9lv9xVKQR&`?Yp2p}vf`ꕾ|p`a$|`UuЦoO K0#(W+CV/g9|#U;F^0 .0ٲK?uPEuGa@\% ^kU 8yBK~3WɈ U.-=Ɖm-uākqřZVQ_+JvA?ۦбo lM`o^?3>^6`jв61ߞU5}:Ia#)@KUͫ}h8EƲW'<`臄gw¸V+wB)ensߣ~Kz=(]PHK2S4.g{htxO _q;xdc\:/4ΤNjM3r'$.Z8hf@pں!%6\G=Z+! n*_87M/8UoM'!N2aWH 1ԅZƭӴ皶& ĩ q!VGjDк}lKeG&*6u:258 _6OͧyNF~yc*#N+~e7$`2ܡπ?}b1}}\. πrżî1ǯe.9[n1@:~xe؍+ڕgʇ4@le_l!(x(^" {&/⺕Huƪ-Iÿv,IMtH2_27G8yl>(yFcgoz`ۙv|b'^fTn[1{KJ w?Z3)zt:|9{åLͅ;nC{i6L)[J.fzOBo.On[|+h{0b Rܽe73A{UY TޞA^_΄_kalGˊRr]5 @ks;Kҹ͡wMljA\}&hP)b|BᅱK^Ыq"mYV PP⚄!gLx_kxt̹`cUAo8O?{FiⲜw]mO||[u^a;@MA<՜qf-~#32?SM*}=(c->kf_[AԂp.:dո$=1c^giӡ5uMZpzlo'p=><-s#cB[y8꾖7 |IG={qrSqBR`2>"}o} 8h6x~LGv87L zv_v{H_mX(~;&0?3vc!/wzËm:^^<q7@]3IMqvG÷D(]>7)j( {]g@cs;۰{S~al5ML-"7`|r;Ioy6[>g7%Oevdq 8O2<?}*{xӫ}Pboo\Ym>J)`b.y/u;1us5@bE ŨlV?#-$=:?]3qpLReٓ嗼y 8Y'oJ΅Z>-JU%JҞV%¯cOMP>l)ڎGj~ǥ)kGa{/pF6ͅZFS ûOG 3N &#}Ro-a}C`hC)s*l;__upf"R)%iMjeߑq9:! ؄bqL5t Y6fe(_Z~pk*~oȥK_AfVfyA5-v3_VGyX=ݶhiXϤVsn^ u45kG/&X3hxG8뚾9qp3D^z!rU$yVmB/-h1vS_C{4<,Χ L.+iO'=-7"9x!O]x!51zwX(-:o6E1p:0MN$۟G`ɛAp,ؙLoh#6+ ~&,9#+׬7@ZZ1+ ;(=z/۩-(X!7}Ǡ/nR˪d[K@嶴vJ覾8#MPٴ.8ջ$V0Kc.c/̈́t`/f}|N?fdY/+ wܚvNi 4=&Y#y9Qރ09ToF ;z|( xeOα:^~BXvIᮉ`Kһl2L00ẞ pu\ǒ{yԪlC&5/Vfg~1r["ݖJ)S8仄8dɲR<<5p0MH!] @PiɁcS"?}Iߕ/1SK@^14 XӦV#Q ›c%gl}U օ+^''4qx #9踙,$iƀ':>=\n\z>^/|&,`S%F~ ,6=pmSr89+.|q31*{- ϐS4bfe8M4=]ӿD?t׻M^8UoPGV}HG0ԅN[g/͜ N{3~iǍr)_y<|\{=+My#Gs}vJ-NLߔg?7FOOD~y[c*"Nw~->M9w2^0Liп̢y0Hmj.5sˊv>;.\HNwx՛&|p9$%rbd&[S<};fGPT3{M~fƫv8X5Nnrre6%k2/tLA>`og鿏2d:۸[ȋI'g7]ɩl~ g{?wmHn/ V1aϤ&Pl?T=K7X&pb| u}f6OW, O$̆1$80 M#>ZjMHhF1\a4-HE-h FK1ZrV`Uh Fk1Zz1#Q0H#I0hF2b$H#1ڈ&0Rh3F[0RH#51ڊF0H #mc.Fzcd 12h'F02#S02#K0;#{0r #g\0r #w<0 #o|0#0ڍQF`QF(H0ڏ1(a!0:Q"FI((Tc 1(,1:)NcQ.Fg0:QF0 H?$IX'aO? ? FX'aO? $IX'aO? aO? $IX'aO? $IX1? $IX'aO? $IX'c? $IX'aO? $IX'aO$IX'aO? $IX'aOd$IX'aO? $IX'aO?#IX'aO? $IX'aO? RFX'aO? $IX'aO? 8'aO? $IX'aO? $IX'aO? $IX'aO? $IX'aO? $IX'aO? $IX'aO? $IX'aO? $IX'aO? $B;D='Pqrr\ISMp2s=OrvY'"HM}TB&rP .SqΟ;lʏҿGE;_,~UT | Ă^&>@,@@@@@@@v,??HXIl]2Ec#>(O1wC/c2Tbݽ-VY4_'W?/3^E[c!NGc1\1H8=<]\!q 3ggυvΖ ~.m~^V ]<zZYY-pqb7NJ_f CGE?>~ֶ 8XQe~=~W+['&}'a6sǾ-x.BK?9菞?+y C`r<׃:u{LyV]a`l ׃QэgLC24 O(3gtIZMh݃/t[b^&}\4i>1+׹+qP{g7G|6 iOP?(1t&q?x٣{48U׃~ʮf\ȇXnO.,ShYwց!>.jIez~~+T=y3O^{ߝz^;yA!G^dzo?Oey__=cfxL_8</~>3C X oW.I]Ev\sR%$g܄"?;wr\73lcv;;{̻3#s=7}ntkj|2O[:%W ֧L6q!9̈sأSnS͊X15!L#6y!ydNYGiM`6ؤ 6iM`6ؤ 6iM`68 iC6=L*!m;T8 .iK6 .iK6 .iK0#m6Hf 3҆iÌaF0#m6I s҆9iÜaN0'm6I ҆iÂaAڰ mX6,H2rOiÒaIڰ$mX6,I K҆%iÒaIڰ"mX6HV +҆iÊaEڰ"mX6qE 9 98X3L5S`X3L5S`X3L56Xckl` 568Xk`q58Xk\` q5.ָXk\` X3̀53` X3̀53` X3́5s`X3́5s`X3́5s`X,5 `X,5 `X,5K`X,5K`X,5K` X֬5+` X֬5+` X,aK؀%l6`  X,aK؀%l6`  X,aK؀%l6`  X,aK؀%l6`  X,aK؀%l6`  X,aK؀%l6`  X,aK؀%l6`  X,aK؀%l6`  X,aK؀%l6`  X,aK؀%l6`  X,aK؀%l6`  X,aK؀%l6`  X,aK؀%l` X,pK8%` X,pK8%` X,pK8%` X,pK8%` X,pK8%` X,pK8%` X,pK8%` X,pK8%` X,pK8%` X,pK8%` X,pK8%` X,pK8%` X,pK%\.`  X,pK%\.`  X,pK%\.`  X,pK%\.`  X,pK%\.`  X,pK%\.`  X,pK%\.`  X,pK%\.`  X,pK%\.`  X,D3Gӷ>A{1NZ{3H_ H'BlRߚl^g er֛5mdžЫ^!i^KLz2$ƩCM@f$;'߿|o8VޟKT%5тЇKl> K}ྸASbߍ. &CҫC4A!N=9A$HʞĉmSOmk5(yibPeä 'VX{ffM黪;ˆv^σxS(Kޭ#A 6BV0 C9ƍv EM> :̮IP;O㟤Ѝ=WXr Z]49[x{4iIOBSzs]M|9&}^^_ ܟ9O &4=ޝyZ^pơДn3 JXMC31"x};>MLt-B=֊uO,\cUǡBs]M̼闷ހ 8y`P|P҃'Mk}lV3럾?{o5}]hG-Ot+tCǩ?kR+|m17ڴyB/Mi]뵊Yg_ m/ .`J9` w uM=va[>[^?Q?Q9w=?PV ]/B#- ["ۉpʏvzJƟCmg";9 \|2VO|w㌠::u1}hAЍ^;Z͟@ƻrЛQ6O~* 5Rbc6ą[o*:"?ni(ќwiϯ?tPo i-\"ЍMLj#WF⤱{wp͗B1^}/̾fߋ":d}/Cfߋ":d}/Cfߋ":d}/Cfߋ":dwK}+2(2(2(2ZE~`y~Cѿ V샌s[bwںסG]Df}8gVCghoRou~_!B{Cysm0Ԃ6Ч?^{-I(JpݧNL0?v~wpMϠon3.rЁ>F=EƵ+pf*,2|\m])Ϡ7? W_cp5"^AE cQxyXC#BL6E1 d<{򓚾?g{b Q=k*m6sPLsBB0PVzQjz"x}4B##^5xLK(. @ZaLj!ZK3z51}xy^z|2!ZYwvJۉ,QC_cCwu!#V05v^4 %Yz1p{XaA9 &TsBO2]7zmfUD 2Z)lBϟ`rGK_Bu(iZX4GRETMx8O5趰F ڌma')!b2\StS@:kӰ:n:z~> Z856/6k`huyk k9_W+~KXSYX}aQQ"vqTu SpM`M ^ޯk8ko8eQFT+jzrGugCy|NG|^a-*3p藈7zWA}P3NOh0 ~F0P>)^Ahq\Dz];A~kOx};_w.I>9((2Hcd'g/7"ZUB'#æ:yQ&yl0P%ǯ({tmT.,o;4 l-Lu?_'K6DJxDp1P4 p_JU^bCF=̺s(}}Ԥh-ɾ:ˉv^3&xOuFss-71]rq.]zx9#Nx+>oKN N~gu6R~!OZehգ!M⧆O碓JlƷ- 4:$)fT6,nv"c۩sѹ7ǛUEhtK/a^|%Eidt&#HWGadӱ!&\+7 EmJ;)$^77MEKq55{3]I}ɼ0.Fw%ʤ[2ng6H=>/-*4 o4%M[zvrE ,9;xt<8yj=_>DEϩN:O 3sv? G5&hꢑP4&OLį9CY!"ڄqswws!inU6 #>[1 (*Nw1ggDUkUa?'nNlTq5/v80Gq{T.[e8(=nq~T]2e< mY(;r8ԌiJ-AFuHo?r? Rb[I>(> ^o"i VqŲJ,Gi\ژ*'RN6 rծ,GM9 Kj}mm7e-n#b{ -IJ+ĥ ؄ 5W/K)HYhM|"$3b;:A<;]JR2D!906C}7?WUxAKag&db)K*aVJ%% 2! Z'V:z۪)eni*l)Ue*m܁J\$mty)0+)el6<A WlmiCGjT+ҪXo?Rn&ޞeRj+ybkAi)Eio/T{9|9'\3%`di49b;BJy}ha4[nT9Ė<JVe_!C݉K{wش{Qo'Y8e䜠u904ӡFȁwwT54ɺ'%cN?Wц-rṺiF@j٤_@'?<#Z|o/U9zkߗo_i(MUBY,n{꥝!ݾNܘL}9?ym<&Db@E_>re5|z?nmz@>?t#s~N&R^8)գ!Ф5I>fzCXv·o|!>zW#r䉯aX'h͗Lm2rΑhѽsw\/VfiOpjԅ}qֵ!.NC.Ovٖ` }oTh/v;7R_tuףq H7] YA2MAׯtJi  pE |3BkGb.^b5ǾBjر (\Dܞ1Bh6M4iy0c?B^oD`|'yc<\܎ǀZ-A#V7zb2󩯺>g@3F$ NLkM,>Up ]4r)`he갡9 Ժ$Th>$펮^,_ktq=Cz?; ^;  h7}D,V=A;B};>&M1ߓHb@Es9=+h:3|4g#Ť.N>r̟xX(>O^|? lΈqunvEw/(Ko&m8f?"V.x|B~ՏF]:a瀷[ r}M+Zu[1Ў= Rv$&te[^V^H8xTN)傽xtW:%w7 `Ӈn-:m3lV ZW:2s&DCȈ7(]k_ #[bJ?|S빼vg 15K̇Hm;߽Ѡ\wp.T=zЂ'_' |vÇCxP<|> wx<|>G#Qx(<|> wp<Gctc1x<|,>qx8<|<>' x<|">OpG\x#p%e Ow9tNx:'<3Ou;xzg< Owӻ].xz<+Owӻ]xzW< Owӻnxz7<;O/J2Z&RI> rO%CgXEi'Ee0ĉx|EM*턊P<+FeQi#|\#(*5S?ss(/8B|CP<9xzw<;O`Qg27OQ{{_wq%~;D~。c~LOhGG '~GvpB.%Dx^rn"(1%1oq7AC̻a?N'q~K;'Va/ eS7/]{v!/&)#Q󧤧*UaOpDk:RyLpş8O:D>Y:D!nӉ^| 7u91 _"bb/X7ӑD>zvKIuڑd9$)_:փp!ݔz)$ճ.MėdW,M ٯrHϕe"柄낄hJ&m 1 /'q&%D;F$1!OG|#-X?^℧#ץz3Q/"^:;KbHOc=G&%u"rű=p#J!%]ubG(>BL zcI: CwDur] wTD@׉pNtpb='_ҟŐr\wG̿pD=1b݌Ig^~$xF;/Q_b>Lp8v"n5b<#қP#D=rHZ')%,&TI叐B;̇.y)n*Mb<%9Wļ:!D>%‰ q_:+q} JB|yNv ;c)Bunb~ISJBQ<+;gB1&O%!SR|[YJ+K@xptxD>.?C '|]>M::T2mPzbҙHד_L#/SrߋDtu޸ c{~"_>+_߱x}O򺏇6ؿH(Q.^y+1o'eP|'<?ȗBÉ(1'燄}<_bn"q nE>aJ4: 4J=ȐPsmN蜞_7kMBKms1={]zկL?rr1+[":\ub>8y15}+t mq(Hyi' }ja7o Ww^XxfǝC <\|7m wMgy8(aumq]}q(jb zi n5gݾ65V;~ک[B+ڬ]1qKhF9m{ٮ{hhcЍ+_V^&7[A6tn _؀hUCjCL9w\W`g7hF~SGn?OvP;=uwߥmq]\q'EskA[Zus>."ŏySs _x}7vt|cǸ>ӽao@x8㊷}I;kE#4ܿkh,xgz}[?2cwMKz22 ޺_obT Ogn3w-j_Jo4mvN S~>?Hit}X (|'.kg6r^ u]]7\? |0$xw!^TEד=X>K/z{?.z_n' w#?`J9`:wCS]{^"TXax@W051d:];2~(f^d<x>Dx>v&o,ϒ'OZA㭤-i| ԿD~E܁6ӼX+9btO@ B$r(,swh܃هnãϠU~3^NΫf3%wr>ɏwMc^ywO? if=mj-G#N8^iÏF@ 3֦ȝHa[|r򯦻&O+%3ud]wyF7SƴhvNoZkꕂ4^iWwg/,8B|T4"K.K||Y1/?^oKUدӗ~{|Y1G̑GJ~U8 mTӨŏsDGd O_LU!?B~/U\ Tc*[ME|G|A|A|A|A|A|A|A|A!0 >j >j >j >j >j >j >j >j >j >j >j >j >j >j >j >jʶ*|W|W|W|W|W|W|W|W9dC9KH)HvCp666.q>m >m >m >m >m >m >]ЬCPA8ڦڦ%AgMgMgMgMgMgMgMgK0l [0l [Ö%f Yk%f Yk%fYkVRa+` a+`LN`rZдC68CnfZCKpl09eiCN `SV6 )+ E~oHI}kr?ů7}s~7kv[3.Ы^n=$-vW[qhPo|*sxcSV>ɵ/d{lr̘3gZ~f;S?l.rҖCǗ a{L,<.,j|7T^z=/Qpz !AɗKۦn۠'6\,@HC&<%Aa홙eUe7Oʝ%p}AY>Z { Zym=Vq5+NE-ΆF&݄n=!|֋{{1 p+ ]k<7 r}T64i_@SY 6;Kyq0r洌e[dE~w~h^iX/QWmcBýPPOQ&Ǐ|gs~Mr;q;TJ9K spsRc6!ݢpSzDvHhI(2RW01tDcv0xDC|6#χ/*Mv&o,ϒ9gYc=,ȝH?%L߈C]څ޾"4\c#yK齡%ծ.g~"m(Pg-کך'l({69:GZ~oroPж¯#m>y?IsjdV[e{';͸{o&9o8mH7;NfЇU)_:M}znJ!E|,OJu&iJ=$!m_D.!D;٤_W+W܊VgYnYyBY7'$ކC9p2(ւ,7u@C` X,aK؀%l6`  X,aK؀%l6`  X,aK؀%l6`  X,aK؀%l6`  X,aK؀%l6`  X,aK؀%l6`  X,aK؀%l6`  X,aK؀%l6`  X,aK؀%l6`  X,aK؀%` X,pK8%` X,pK8%` X,pK8%` X,pK8%` X,pK8%` X,pK8%` X,pK8%` X,pK8%` X,pK8%` X,pK8%` X,pK8%` X,pK8%` X,pK%\.`  X,pK%\.`  X,pK%\.`  X,pK%\.`  X,pK%\.`  X,pK%\.`  X,pK%\.`  X,pK%\.`  X,pK%\.`  Xµ@_M Du,״1Qr _Γ'(ÚD0MW~NSD1 ?Y:$yĬC2:$2됢CfRtȬC:$qȬCuH!):d!Cf?d!E:Y2!*y}~ny(6kaߘ{l``un> 2jV luz RUvc,2վ3]+f fW?7[,XT*\wZm5 첾7ߩ! wԮ>tsY-~HGx8nUu2PW\Xp}fֹF{WaݖC`Ψ#vd,~ŋOy6=&_gߑb_==L{ ni}٧Ngª/ |Iȋ üz5* 4^ziDp%KÉ.wՅ'BÃK02Q􇛻=%%D]#,d2د͈'s>}5Nȱ0:[Ҟ#6j})gMGx_u4*}H~(=+E)nwLJYGn#WYǯgc -0lm 7awGQ no'UmL,O罭&zPG\z95>9%9RSZ.b\:ӹ)vp`V#"Zf >HYI#4X 8 w꽰K5KXkFW.|~ڥևC9ϨA^~ lX3. &^&}kǣAnM7BU|sDZYo%d;Ztu/;F@{ 7gD+<03nhh^*]R'-hѾd[wiIp,j~ٙ] K xʃww;@zHځў8R[z>E۳W s|BB$lGFqS%|7s??ޅ †? o%l;\ouSǡ;NJ*~'e;7ohgq>xVT偛6{qpMpr^U%]91K3hǙ_f(Vd4|~nє2>?w;UKV-Oz\r4gu|vՠ|s^Z[ _t^wZ{u_H 5o1Fgzzk ŸpïJӤ#\/8]xYk.J?.l}lÝ\1P6 `^ S{j9Ap G/q;r4 m6X\z4.pj:(k}M] 4TDR/Tj]A)হ?~|L_X\}@;.m҅b7u1x:_5shʹ_`Eo|zPpX%g'l޿o$u?ܤzm *HUOp>VdS׿\Yy8w嗱= a#z?ُ֌0=|LƄ;lUK dzK<:|ZW^ we<~]G/6b\Rl5] UԸNP|׋M7NkUv/T4Bvy=N{43j}Jqi(_Q?a葞;S!9h%)ᜋ^S R8n[ v҆+ttA۽.ZYW-q=R4ɝ H 1'.(8= B! 1'{:r#MߖWpł5Dj7fAv04zY23p%aCB{^pYն(_{}x"n<{^sC3D;~./T~P8m/fd/҄pÃ_ V{﷜wh(J%Gc:EBěI/N~?.i0蝐[zڥXdzI{p{k_(y&Ysi_7&k4,lo$Y[aKoJ{#R~%z J}ٖ}l!KRvAE).tdOH96ڏ',.(I7tPE͏8fQSUɻWߡߢ{v` e&Hgsje}@/^Z-v-y΢ءkY½FBj+v> 9=!ZDZ {>|j9-[ oɇ;JiW46/ Xcx&S*ʶRҟ(䜏}Qt6>Ra?SxI#+۾ʊW)}^AQ&1*#[dU2W)Wi`urZ䪶W)c{ $q$?f_%Wx ;JJ1|pyGVJjIW-)=5Oz.W)NnU?r?%{_e˦߻6 Vl3_er7:Dg/.&\HWrjvnGjRSfmTT tvj]s]>17P}I=@:a I.Y^vZy~t Z~ލO_H1:<qXEfF ^xnojW2ߢt.o*P[GTMqKƋ(>rKj2.ӣĮ!dRwZ?4/:7sюrQ*50^6?ܔO?noR9lsaMR%<"y^ts(cSuxe߷ {͎R(};S6kyӛKmbx;~`I97.wCC+[:`ĤVp܈#5CKwEfvo/e2ګJSgy^,-ܵ,Ht)/Ks~WvA?61}Щٖ2ێe|Ȼ ǥ͈?|emOE_r~/Nǫ, XT'8}Mw~߇-}nb_u/ziKw0:honA˺pX \*5(o c>V\j[p7&M鷸;rV̡[QNs\Nqe ϥu*|*ןNr@J/4nYkkW]KW׽G$y!_Qsh8"gqrh_]`*ze,gUE+?%8ƋJrDq@f'|_!.R;Lvo~(p%8wŒxtvJoyտ;_~7'4efb ZIUZ>yEQroE犳(eV7mY#-i7UB8~A.|8chF|hˏ>D>$gdgÎ_86Γ/1|vZאn3˓%`|hJҮ}HoWj;8Sg'4cxa7)u>BApbtP;~cѦǿM|U"ybr?C_%߉bNkRiu|KuKJ/=YU٩;{yy$B,~1 UP]Zs\[U]zW{0P(BYNΪz2aG#n孒WSo_^lG 5]X#joe69muy\=Ya;^^RsjRӕC*>_eYj}"9_lxJ<~܇,: =RM\4 ϏOWp^,ast8%lp܉?L<&ZFΗ2KKy_oZ1_iyZiQ1\Gl]N묬σ--/|>C6iL?_[.ΣoD<~ vwsՇHya ɽ><yr}%ş*9o:?*sj{o1?E+Z^vO7e/|.1VKpJp˚o R8ݚ0&= >ӖSïCxZBG{(\uV˄Bk<ܠqQ|e=񶴜'N;|^bX!oB|]Hl6YVQ#/|H!mxBfD՗6|^C_Ԉps%rzP's;=VB~ ~}n]HiWҺM >6 hGnsCeKJYz VJm=n}O΂AӷTʷnʹᨦm;u+hD!>/q^KP(ڟ/cU]~VrSRȑ/neT?/9>tnWIp^>e8/ <^6o;- y5& O핖ž򷘎'-UK_1'dϬTo5iI,u|4Œp8J1=.-A>%۔2%}i+GK܇׾'*ރJ/3la|e+e~Ҟu_pSE)=o +Ki! 7}1e݇u,)yylM?ic_[*eI =oeVѪy >5‘M '8oeowΗq?0Q)w"A˲[qp^9m)p^9Wp^dô\nWtsOTV̋8ZY9)[9Q :?ΗykX9*d֕umd/ήa)]+jT@K'Usx>(OӄWjWbeRǬaŒ1Ž `t%qn9NcsvۋrqKJGڨduy?iR>ZAyEH6}x q~WlQYR57(ۺMyx6^Ӊu:P+z݆||^YG˻.Y9/~~ӧ<.MU?p|[Cr>/{|IȋjENΐiwz;o WxPRg#)/jA jH漲S'{>Sh:滁]9˙%ƹ=3n(0_f>eR݇իlU1 ÂWWJyx˜r>$(e^\dr~|Fr>)Y&Top,Xp^9Z'yUz+;#yE)>BQq(338O7C9eK\h~tyeއ^hC V8oS uC'Vp {ޚHp^9p^u{]둜;r4HyCE1dV6 7ݒ6xѴڕ`Rou/WuK232p^u';#\s[CҿүqޏOB罋ƱO?_f8Op^>8/}~򜔜߇eʭe܏5d8,U*ӣvV~rrH%QKZf8_!ye)3}}>[N9kxq~s^+z2W2/̺M+ޗ(8[9_|Q3X.WҮUJ+Wy&2W2eʊy*Kב=ftUQ Q+Vp|6_>cc Bm՟p/[[ w`{ ܤ搈x*/:>q~}\o!gyUot~SEq9_A^liD.iOP*΋Ky23a+\z8NRr6e伸V|^Wx|^1DZ^R9v.%?}.e̲rx(u>_M4dwHk;}ůڋw>g?]}>>շ&_Ǜ,DCny7pXWV)K*])7| E/ XOx;VyRo)I?žK)OtTwFhy?=`G{6/DЌoYz,k ڱ|H<В]$.ERK^Z;t|Rb=J(u_ZiPTLKZ~)1%oŨd"ΏgbWYnZʺ Xqs3/&rư۔wsYYC9ˠ Y1)w)Q3?/}pJ?rމ>V  PNyy(ӕ\ڹyZJwn u'7ْ_c?s"y~ݞg3a<v~МdIMbé66TṝΞk+nM+-M|~(PqUbLNۮh^:><#{}Jc͒I}ޔGO|z{ LV.PX|19ڣѪ 9Z)iebӥځ8JW>/n_n+yUV_R$ڟ|,C|R딑x>W6-u3Uw0Ř%¿*ޒ5LE:S۔74s27Pj'-xOMTKK9]!̾:8?Jpo"{arr>[Mw9[9WܺM˿nCjWu*+j>_62#h z4bNya}o{K( q^a%`T˸߉ËuIkcD~]:& p_N)!tx<[յu?G2^J/yR+;̾rP W)Z?Rߛ ۸Q`?T쫔7^>=%۳W  i9M N͒]޳9/0uiX:m$W@%8\LW(b;p;NcPf݆&\&R26漬9/>)u\pfߠ}ȇ%;9/r}8W\X{4KO%U?28/|޹*~lߏ /URRK\{t*{+^b2r>g{J:/eݟDjh+mHm>PٿMo+2Ѳ!WA(<(\e}_%^VyyˬWemzMSo҄/6Z~ލ, ԝmzܼ9uapܥu=ǵUgUUZoۨw~g `:OC>Ol7k_}5>?|7*՝f?7\5y6=?''`^ZB8V>g[ZqDZ k`C4'q>M"C>%W0?rNt7Z:Ni׊/ Ԯ>})y]yXÛF-e弰e] ֟eI  wu`&|hHlxN4LAF{Ut*wmbhԂd<86峻b~nۯ}JҮ27?: 1v,Fޭ`g8.mFiW+k{*]}qʏ?8^gi8>!5kJyXnʻ5,n0/yOUUJ2|^1+"AK|90e/>2kڑ:ˑqQ9/=sws{ 8NIG8FCG_ׯe$T~k€->WG\Ǧ$CM<0|Jʟn<*;x#DC)柭+@aG[u w{qa n/BHU*+jyB;%[By_%n>mK^٤ZQ'^8ͱ_χv8Oa־P 1k8,byM_vjMʙɂ{0P(O.m|VT}#t*/b#7Vr[*>߸}KNܡ?BrҕW THS/4,;Ϲߤl s͋WI k jbdt1O1,WY|m j&1mz/a _g=#(|*UqJS%~cV8!(τb<ԭ9+yPfm1JbUs K/img@yq9t{uc"crcL^||iwj8tIWyw_9iGT|% TMq+|^VV4558,f0E򾷳}rypS3)xWwF*=^++TOs(%8_ GJ弴 `my%|7PQa#yΗT~*|E;%*y9/{fȊed|9/>Sj|2W2{ReO̺M7(s|9 5\99|gD㦼rP* 竌2>lDa8+HST TG~d8p^6伜6gŸ\ϗ643MmwE֗nZNi-$hߐ|XW|k(*X?Y׮[Eǒ++f >_ŔK7PfF9㘙K?/{̘ULKy) 畣U󒞧b8/_3+~<+Txw?_*W6pbc{De8/yVr^|)떟=8/k;w-J_8쫬lpC8_Ou;nS9UQRǭM)!Pٿ /<6ݿ󯴖sO*H_hZA/Y<(Woy>}?q^a[9,egiޏߩ䜯O7}m*H+y*p^9|̺Mŝ2_qr*{Q̺ y 㘙+ s+GKhݐz>/mrHg{q}Slcp:&7+|(G_.±3zT<5TuW˛x4~ t|ɉ;b wnUIUjQ2%8ŘZj:F[Z"\o 7tJ[_W9H6FpSTH}#KoZ'2NhoaRPRFX/Ӑ땶_.W`^R+z~fHr}f/ p|Ols!6%܄.;*iգiK_<_pgI=I^ٖ}lg8_sV65]=>Ntt_#JˌnBlL_D.zT69dʭ.?I]'s.,"~d\6[`xaYQ5#y޼?Ib/ϛFU{]w]!)X>zAz~zkLPld|^zkw-l2tGnk{enR|}|c l>ֵ~wJGȵ6)ῧ}j=w%xϗ]e]ܻ͛#<?La#;u_n49(WI||}Bd[P:Ohܢ߆^__p8?)J.m~ֿ~{5͌&ݢ;X8aq F'ukqFr+]w|}|ȩ:`HG/&㰟;}Jt|яg}C-.{ :QJJIL͇>߸\(Zp/Y_?M~Ae<ރտ}ݦꥬۨ}}xD+•P|^QR}r^eM8g&&6onPنGZt x˗Nr~ğI8d0NaQ| H?r̵GUJ/߇7Nw<ׂˬ% cQ e$i伤Mʝ*:I|*|߻2mRr+ ++w[+"4*qޏ}ThKҿg_%)dO99ϼߦU9>v>_'-xOMB<ߋ/益qI! 'g7yazWգRiU}MEIqϷogqP}*_VmAq1?iۍj|. ^Kqy%iW|w*x|si ~.'q~)|^?yjByFf,$Oi-Br`Oϱ |0WV=kD'DZΗn0ߓ+Ϯ ';Տ4߷wXQ>%%ұ%V +TΗ8|gU \'Ut6K9qUuYbY)AqL.!Pٿ~\PGrq^F5wR[R{%J^jqd=ʋ\e+/W9/Av|(V'%|^t竊2/P*- >bp^62rOOUEΗykXe+V =fbYX%_e8O^9/ e|w݆\/e|emJX.Zʛ^<]ӗ 0>0ϡ-(Z ˚o*|(Ưbyf>_AʬH7n5*{% /ϻW|ryNJ.mhs^A/[dR+sR2]*~>/.wjYw&z!/IyѪTo_~-zHgN髫^aU7i**T59ۋ `2w>_2\Q9q@9Gk/wuŌ]`*eZ8_%3/+|ޑ_6Wu|y19$׏V˾n.=fzN͟R9[|*nqq^j/gU{fr~UXӄ3*6y,9o#` zk!C[uߡߢ{vu:_l}Fޭ`gp]P}.;?Ǯ}bS7BOUDN{KYJv-g)w.GKSp\ꅆ}LjO&||B~҆ӈ>3ɾ 4=KOaÚ{s= =qv9 L); -/X"eIl&yٗ6_zLIi[,~7q]I.ߴ]'oYx?&8vײu@zTxc}O΂^ܒTvy6tws%zx%z͎WIUuj >2I e|Ke<۔4"<ӀN[M$2K`8oW$2[=ʮq1_G6{-߾ͦ+?J;|oWrUWqVkbt~TxQ`-o(4z |Όw! Wq6gf/|'ӵۛTwNt?ʲZy9O78ׄkT=v!h}(u9qJyϞ^ :O}j?9/xߩBr>/P{IsXZyt`2>C^FHy2l>c^$$-17Mn> Un=b)3kҧsϣt/"3yp)]FjSPsSva˺FUMZJw@(yͷS7TNUF%pwRmXFR[)+6 +F+ Q.f>/K?חw>OUsRλe>l;qq~;yiƷ}WUmTm7]Eo)|JҮ2(9%8_ [%xCKp~Y?Gq~)y C1%.2/LWqg4|^>U|ڮ2~金˼n#R{2Ww#SJWλ3aZm0]թp[%.n{7p&伤u rTmEw(v.%~\8߰Ye>ʪRq^Kce|9hpP+|VJ+l>p򥻿#8NJ(tm֏V+|^zHH_hZ'F5w~gyqK.nєke>IleF}.|>_ebvsd_r}؊?p|_3U.KzO;Jy-~L_W1e8_LfeP!x)^ɜ-_3m*JΗΧT!]*kNe|; \m~ 99~}%eǕҟF' 7#;׺wX6z7үoS8/}Xfݦp^qZ>>wY^b嬔y%sR#b~aW}ԫt߻_]/߻nx]Kb y\(jޭc}ZDZJJ'>Ȳ(CkבyXi5\|H[IeIwoH|ϛsb}> >:6p89 *O|)\(1T.:+{U8.-H߉y;s2.0O?i{m>"·Ҽ^,Y9_lms /amsj;}ӉmQ}RRT>`l]u$&fSrj 3Y|[w/{v״v*v<,K+R~d8_U8/c~{xU9)}x}y27y)P%8u*cyq>OyB߃)zAnM7yD>cȂO_uça!C[JLW:m}GY 竐(u?<_fGz?XJKS]pbtP;Ƿ2Rѭ co҃>\VpQBzUVCzɛ^<^q{i!/RAM5^Oi?8 K:pb/|yZ-9ǩ$44ӨfN8~}xcez#mz?oN9ǒ䌋A^u[>,ǹr^hy} au_;D Nګ)_8AE_gI_g2)pke‡EtU\/߭ 5 tbdb[[IUmoaRp^h~/=N%Wb&'@}SNxNwl4׎HptA-e*;=7]p&DÝӯNP⦷nj3׀\ nY$t7cQЙfo>N]vy5tfCSxXy'+%k-&ɋ%j4{k/6JQo xמ g~{R$u}) CԮy;mY,^ Ag?{ͱ%M_c&LX hlqLy>7l])|P3xv2@:ߢw=5vp0^ۉ FfvR<ؑlAڛx[ طQytp!=4@.^gpB Gai)h>grkuDŘݶ(urtRk~g_i ݱrY}:cX;`!}gtIygp-?.oVBU/H fn蠊,qչ\4]4VJVY,ĩuú,^o[NaY3h *n6 C |K4Ǻ6A{vuO/GWjX,j$8`[tg`))~EX4s]Zxa 2mwo#3][aCvXc^8|KTsAG>[.(r3k;1o{V^mz6qP?!V.XxyWpZpxMگhZ V&Z`ڭXYS m7?i%sa~z.uî-M}XfSïtl׹O5'.cvي?L7~ bs?KjslR?$av3ף\,_,L)_/%M99ࠓ֠: lBmް+mNOX{gi-zn 鈕ݝfbdt1 Fa`!h=u2F/Ed! @T"״x \g!f+ˍ^g:"'6h##X /sZ 40VmGމէc>W|oGꍛe@g]OBӋx95!aبx=_"^ h~rt:KkfS"^R_ouN1ϘS-~&¾"ܩ?N[\iwm2VMvyqʋFvȠ{6 ވ/!ů8;|1zhxp}7~OC^`>{ >_7`r7>üg#|47v@,$K݋g OƷ7v{)|qKwFb>BOo =p׭f4݀=ý_}7yh.\G3Q_+(ޥC8lW=+ȑw}A!;>1+Ϯ۰{4amX{X2 AW`2}',g2tg'd OWZchrun#dR驗vary=3!c-jj<Oa^ċ+<ݏB^h_c3T.mm}>sǔE,_9bml17ھ Ґ[K|;+0#ޣ#'^M錦B&V!,GZ7U]{wEt4ܒ3sO>]l l*gtl ꀖX_hd`GTG/ r+Wxqg_ڽuM{;,$յ[KMf'^ ;gkNP}:u{Gd3 1;[c%V_gr X>X?i^o-4kYc*umZ=K ;o{%gxvq|vXdǝj;om_b~ `V'.c0S/#B^89ܲЦO!/f,]k-}Ҧyxc0s^!v6 ^x+<1 eioV A3̢PkN?,]X4a{cPn%!Su[x7r;zœ})FߊejȓK-#u|20jØ:\<y?{+^j:u K1.9y}tBvcE17Z Ҝteq-(1]άG#_#j,Ԅ~X%̬y :!^~[u,Hs'4A}/QOضEtiӃ ֺWWkbAuL{zte-dN Ft2 F~XuQM\fոG &lT8i54$)Teۯjp|u tq%LJ/2rꟴ}HA})]FG!- ioT%{?ay@ )Rv`gp1=+WDT{?KWcc揚;4 ,cM@ZcXWO_DpƑy:^TW͏)p.\gã[fk5Ӓah>&nݷ 쌆͞jvhh=ƫX=GÞ ~c{Rfs]ݞώ{6?8j^j ^8G.s&okx*v(K6qEpp\81<^u74avFe dp?yk/+#QMiܛEhxMwB_.`z8\:Vgx'n:_:`pu9Y>;ibsvgΏg]3͵usy[T}]B>2 v I"C}w0 ukds0sL?S]f<8pq? qvۨ-x^uf1 QO,jkp|xSc?5ןk_.lÞ>OytվPcN1l#n:?M= kXFC13xDvZ?)d@5(y8ly9ڨ`=j>iJ~/_y ZK'a'Q}Nnl=ovB&skX]g 7:S7מc/rg(7n>7Ƽ~/`ÛP.?zied!c e| ߊӡKP#k7r+{yXr9n bf$'׺<]hn0[ټf6X}Ō PZ/ (pt} mX?)㾴$P`k^7:͝꯵E{)ۂ[mXb圹9%cΦȖ>;>,B[nt>`wl[YHҵ#[%%Fz炏jvDGoX># #Ow y _QjaV9Ȩ'htf_Y} :M{Nߺ>hƠ=BdۑMS][m3Ƽumc5Lp(~Yq=g;"K,$d|{3 q5W;vMxJO(Xx#[&\VaZc᳛^~JG A:c;= 8*ڭZ6h=|=6/)z|Ks ;K_.oKQFzt`n}1mZs>/iv[4Qw,{$舭xP;5 ?`5kvXr|էf}L<&^4}g]q{XHMLLtYlO 2]`S 6/**7V;ͿuJ ne)&L_1hu|"N>}{ޱNv蝋ʛ簻4 yl7Z: v^_ ۋ^nr S )c9DX[OýgUsM|z=>=@\}U =P,dޏG_kޣu*$wsCÞH}nY|}>Cx};[_[>gT|2?;yPƱЎct֨BGmf %x fo$h@ ڭQ`kt6L|:,鳥#Ub ޟ͍՜GtfYz3bPKeۧ{ZP5F5uX]#rwIv//&k"qEnBv^448yl[̝yvGgb=x.Z߆|;c~6l8L܀i#z`?._;`[\#4N ^gm{S5--ꉻ#PbS|t&c`ΰ++|4Z06}ܳ>s`in~琈?!æ>C ];ߓxYMm?Gat<,OFv|lutgխ`7jon!TzO]WX(7;9=rcy_E4};iFUǥۦdM{(JY:t)Q J@_g= ӥpsy[&=V)L1/+z׵= [Ϝ1wuOb|?=eԂ=PK{u=zwvx$uDZO`L i6Dp{CG ]r5}N'fcїڶkwuGط\g|8JxN8_޷TY[?GlK(izljHSz.{=mfr⻷Y=X)=<:G+oЛwm2^jz#&(~n1i#{x9>pcCh>YkR ⽯S|z(<1$1ֆ/U=rm>2sIdG+;fDzw=Ƹxh ŰAg|rUX[OxbO]-.bi4e3N3~ԾIz/3mQ5o,^~Yߍ SҚ=v |;`ȫs9٥di΢n|މ{B<1nQ>?M=xCZ>>l\zvȆB~F} " vp^O9mwf^oxZ`!{bڛ{ I9'%ٜx>ξWdV,\*01yظ\u-6vy8}n7}}:oUIk=Ӑ{{+t, =/YBVoz;D"7bz'l"fb] JlsUkMr||]^h>덶a7S,u8b5aU'=7)7 Cp,DVZוl{ny)Z,,V#i&W:w27DZCk]'6A?fw~WleѠ[X@LxpFzՈ۱q[8 iKOiQn|kNysm)o HC aXevEv?D`y9 6!7 mo2^;]]4z悔)kxќך;-cgF*z-Bl}sP#l~ɿ->>wzi6weP{aD[A҉~ާGMP{uzh}Ŷ^]%H|ǽ+ Hgi>LWݐ W?D-"׻{?IG"]3lϽEX_gܙZt=߲iuO|SM Dbrh| ם[B_dْ 4\a_G1y2Ǐy]tn_ߪ7mR修y9:{_ˆH1e0'VOr;8.f!ku ?ܶAʥ痥 k 4@h:SBu3Q;З0TMaI^ׇK[HCZp蜆$]Ӌ Ղ^;Ux4a ؽCP_,\{wp=w|Ԯ_EEŐX?vkmh>0u{0Y ծ fH/XE Bgoil65pq!y/Q?g >/ĬKy,ߍ^KZ*;de>VQ5rr}[>26PĐhd[jgo rso47X{θ0SˎX{nvGٽ=Z?OQ]+~ZBa\5]]Ϗ}lNvE 9+O=3ri@ASe/3{pA WاgwccϪ/ѭ#Ԅwܥꭰe!x]퇵D3y!' _;V_A,}Ma֣1愝OV¢qW~Obo{mlzk}1>+#|ڎZ&䱬 5bVn;Yj  6#3}t v> va]XT7Ԭ,?6jjĞ0ŷ["5V#'et^[IrdgBǫӐ0?2?3IZ][`Z[6s.} Q2JhbmoA†Y=gOp[ͮǗowQow ?';`UqtS:켆We ]:fN<:^o-fzvu`ma z+j2{=h_3ޞIg#V":@-YvhSת|y;lTWk&ްWʸXo/#f8nC"ti/x|xHOPF)ɹE6G7}<2it=PCS޽6@GxJ:ɻ2VpO>1ǍQ] 5LqǠv,|9!윳G"/ I7r20seZŵCvl5cLv04ɠlH.AnyGt`B8!z=\7^݂۳sۣuG 7G !wknl|zh~Ww_=&Mv;.8p^9 Zl\lHdα0{_16h~}tgX{Z$Bß83} Whb㿠sn_j8~ tiFC-/k\M1lp0hH=nC#x7®,- =ᅜj.1֫&^.@m <`poXy7چaĈ;z(LU0u9|_iz؍>+)X<|j-U 0^1Xz@}=ު>DzO7uߞm?bP_an+.B l98d_Cwjc=Yu}߂^͑:Y E9 ?YUK|$Ȟ;_eaX#ۤ6~f_gF:n@˃w+黎h}oW sݫgKx&!p~,޸#c0w(7uJFGUtϙOܺ};#6 wDl٧M;/6eYy9jvȝC}:Lr9Bex'ଅ׏\#E߻Gcg֘[vgRsc)S0Jjy.8gf mޗ $4881B=߫Ƶ9$vxsq $}I]u fƳkηHo5G dwҹ =? /cOY7'7A^sa(}J^O W{|}IuE_xb:K5O/ HxU7kxz9ٷ9mev: [xTuQZ㑋LQ[i[7?#d»xf{$Z5'/e m[~}ȹMTWM<%D5Tnъ@ 3)X^W4nN|/3Y!c[7yHWY ~}1+,y}ҠNߵP㉐;, hś{Xk*tDGh°xM{ϩq3tPwC&>³sTt}#2tw[Z}r!O'mѸ*J_=Z7zsY v/4\߰ QY O Bݮa僵gȕ4|7uԽ iQN6.}mnח75ξq v?u)ugk]Rq=wUjHhQWy]b6bڠ$Ackaϐ5/A8s.Zw#LE;r|u`Y`㲩]\Ay 3eD,}svxc?sv4jNkkB+OtEiNXԱ~o"uJX-,_=_ +o>os Ǿ&Ⱦ~!wx5R[E9z5Ƚ/w׾ԝ_~~q߆Ƕcd +̖y yL>5,h{S.YstF:cݦ(7gh[rUxȗ1ڑפ喱~GxG,pe!-1` 9١:X4Xy>9"kO7=kDU{1-zv4uAѼ2 E͵,G4oUl-ld^{l:yzVl}&"l~i!'CY||:{ttԈ C!zt[ʀN39 tA먛Gx9|#\WuzT?zO/|HӇ?s4|ElgNz#g~X*;SW W znԻFGMWDvZ,0m$#Pug f;iC C܈>?13 UƭSPs3;g=@M ;C CGm[`rho{X=珈@~'=o}s[Կ3Z^TʧUzQ]s?OC]¢58r-t Mշô٭PW]٩g Dxhh>axI6eW" %v]tPmyqB j.~ "xrݭg+rC_>NX'&@9޻!WsMݛe\$4 uTGPҸC\FSGFӱ\EnM^x6뇀m,Tm.CE' ;<;Mg ~a=c#ޭuoÖWnձfmAݽvB:3K6I]yqpmyơk6NHȆ>}HBXcT޽fQu!+VA0w+yGWs'4ly(NVQaϱk)h9Lǿ@p3?7APX% G[tzOEs@v+7\g%;g27U6e$!$d4R$QE{ӔMY){=y_q:=WcF>dL+-|ehGnw*pO|N{궔/Dm6{^%gW]xR! ɴb;Zz d䁴:=`&y8BW^(ۨHkBjDxnRɢ=]s<|ɖ"<#1?^oVw8,Ēb~61oH%^OꫝEz QwPá"\=]tÇpi~_YGOÂZ1(xd(wh"|W{TG"dߍxȫ^+l[Fnfޭgbr#Ho:IߋJ?st>&ka`!"E.&}-DIa#!DbOļo5?; (wjA+tm,7j-{lfNu(t=OɞNi.-v]U|i~im]wanHw)r0x<لDm[7z+]Ԣׯ?a=kMQ5e{DVip5Kg?z'?j*^nBQщyRM?Nv{"0Ircs& |{*eEexE=BJign)"~Hٛ/h/Uj3YNO}Xy龶[ɴpn4:}(?vrG]M{ѻ$:W^uIN^ɗ:\>>+a0ϊr8dhWJ;kn*xANմ\CJ^F*tm9.WS'-_QrFr|\Ar~jf }8:pTnkpږZvAdnB=1^C2M|*]Gb"?U)slMj_4~1\vV|͊Y_}[(a^fFNՐV(p投\Okw%:{@mb`m9]'oljy<8L~껩7.hk;Y{sM]7/b'RGۅ缢Lz*f՗ 9UV,.9|XCzѫvNݭ'Y>뒴dQ3e|͘-r͎m go6 E7[,]u9}zi7E_{[z]+Ӹ皉2͹Ӿt0APR^ i)+:IU! N_3+kK7RI*OD8_˅,uL/s8۔dy vZ?U&2=$I3_9_N6M/ez>_}Y%cȁ2=٫`1O:$m"t}#LU bFoݷB{{߫b?"m&qLJ'mK4<**֜*E'Yw(7r=Ѓkm5…7g^__vP泫7Zn2R[D֚2'7%QO%4?Dezpӌ%Yntsܬў,4H&׀R#zy:(J 3kd3㖊.FnyUՕ o5;yڂ֟!]ۢ(쪿~C)n/'f e~]ޢP&tc yqN9w)?=h8_4|7Vg}c,4]f~؋ jxfv6L^8PcŠ׶uD=F\;~L9ܕv/}_N읠uQz׺] ]kx4td 3*h4xŨݵ2<6to iOҜq-crO6lIοҴ\>~T^|%w~^Pc1zf{G.jg 9}c͍%3TG[ջJwŷNS5S+u/0::e3&Ҋ=~?>֟fZ# H%`LmL73UAk VO5~2p !Noޝ{I*pgGMK$xvT +Z&ۚ|ntv͏ UW\7O \}ϴYNXvwtֈ{.[.4<,u r5rjyGy|_")"lO{3^_~}wqP4"t J*H|sIC9PA m~wqp'mTpt奂~=}eUW7mMƎ{Îycdޢ\oPwc-^ߖin;ࣇ6rR{x0kOE[~7h)SD957MAk'|Ty]o]DD~2}4Chgˀ|yU򦥨G`~w"V_Q,{C+(n_'i*KO5nC>*!?r]yIye>Dhgr؏j J^9IKCկų0v O\Xj)7_:*\r0;xg6-ѱT:کp/?+@M'(Nsi-7 Jƿ{,V̸jw~pa #ˍ|I4|;GnPՒn`~{~ICo{N.2mV5tpGdbtC#=2~c9O2ݥ,Z 2ȴGbISo{}ug/z|"#jr{@_ψ4?-7!*=,~Ohor{^5ZnyIM*NۄhJMN75u~)$,L24|m &Wk kfr%]cpY3X\9iTtwߨhaUU >?&|nf)[69$JYkmHf`Msq:oa+鴸sغ|A-ݜk;Lk/F zcGֻJX?p󾿖L{*=Me+zat5HpҦߩ/,=[ac¤SWL0_dz1tE=MkH~~J3Dټ.AO7Iw~:0i\_jz5QMy/]2m/Gfr?ra7tyOM3)Nr&5"0y}mqF_S~hHj7]g^B&\\S}͢K]KfB2Пh"|AyU3jqx@*0Op62<.^ 'abm-Jɴ>k勜 SyFz9b=$;vi2nXGbmjSiN2mwg\A-#G+C#9u?L'd <Fo=QϜ@iZa#{y_Mb\mjs2gQ>kKgo|\4[n=_\O^JG dq6;6ֺ[ޯgl|QÎwY4u*X_.1Ý&gTHIr?+~k1_kż>.KS^2mRg/YnF9{?[uXPviv~~ݨHyHwKf+ļj۷ NCKw_O-nK׆d/pAs)mZ[͝21#7 .}|Z9['٩\_=0?GW |~?s;Rm1R~Ɇn5E~ұ!=(*^~/4iO9.࣪}~ct J6@$fnƒYuky5mKBF۶mLt-FsVT%Sw|&)woeV5ݰӼu&wn%9a|RMIy0.LLjюNyMykFKU()\=hyBz0ei/Gb=MVݾm[!qz6Mw߿zSM>穷vArzĵe"}6Aѡ_[7dZQo;\Ri;w[iǺmx$eu95sFYOl`h=`I N/yI:jƖ*rm=}UHdmۨ8S_5pwIv'Svb~4Sq;CsV$Õ v+ziZ,4XnD 6CqB7${ӕiW&i(s/'@S6WmYכ#ip}>unfғ֝7W c-S['."ï"kti~uSf+G|mO%UtʴDZ(mg8E觯 =P7~)GN C$3W-ӟ+]$O~K\,3Z&=ˤı؋-_Ԏ#T^={hnzB(z{>tnErtjKp|eFRI۸Kq;~\#_Ŀ[@C*x6< Ҭ3Jjm)?St* Y_)/HHoԹP&Oݮ/ǔach)r=uS ge7j($Di;,vuXⷣ&K,/lӭh32?97*K[W* ?][DZ6=ӡ=oϽ>r U4˩MIUv{f!O[x"hO-b9i2G+sy>a_"W筞"l!/-SǓDhҞѷh+<{J7vP02䗥XcŮq5𔎓ZCs"ߟ2VMv6d.;.p_t&ѿ _ lXӨOME"=+QZ[{w^/芧Fv|$ 1F=9@ԫa[SP D|\"_=_$6 oW冠q -H z=6أٙsto8{Iեh\FF*x[د1fxNИ&D8u1$j~yy:]gGKcjHB%ܞ5W4g+;#=U%wkL]b} Q\#Jnl󇿨,Dqњ )i_/ {T9w8ߴ"U*iqvbC_wn>NEm:?нVE/d{_R"OeC,TDv W;MJT>.gLO,R-&g K6/v*L2VK[_qYUVz3* {M{;7>Ĵbm|H2mO?Qrߕdu۵ sڒU ]"c9 \^͓^~U a3L%ҘwCSgzr:D]l{(³B܎z]SgX,ezϛ"-йA$<=<鼞0׭!m># H;7zuȪ?5lna]PjM8 iPAX, PIA=ȸ42'=\t<\yjrx ؾfj~;52VqLۼ O-p%dRgF~%/BW'0n} hvb5jjƇA[r=|j-KK.`ٌ@ۣ#vt(Yh{R4?hn2|7c9͟AKcnp}#+:~G}g-ˍ:䝮xi:NhU}lWQ]_/pHsr:?b8ڟ_G.yTe#ńcdDoXng7aZ_ ulP{Ƭd_CB핛r=Ml{WFMe\\Fi;e-~\>=PI>pdF<\+{!wo~Mڬ?5&Ln/MjӖ^4wS&/Wy)soL2Ut`fYxE 9KI6!DF̿g*8J]=pD(GSfQL#:gVE3f62|X@zK1eop%MxsňFiLhڧ{Λ^' >{h#KyLƐۺ." _~p=?r[A*w&;Z>q^@dZMN?4F*^Z͐_|쵳 Ff&_<瑙ߖ#^;|Zհ;泂O1=fG²Kf|+c޿V>{ Q[-#ܗ&1eT ;zFd|W+iΡ i%.UZo{Y="ɸy#6=߆Yh?i&g#73|W2MǺ^GScyP_ӧ6Yɴg[˴9~؇yۄǡ ԯѿlp4{s1A+i'֧|3м>V0 ,w/:~8JkyKD<%ѯ(7JQ~ˍ{ 6[} / =h]GF[zoӏS!7_K ->7YF[~0&}YF%u#%[ﬨtYP2\U5/)AWDtCSe|jF4Ӓgi6B]*gl F_b~B߬r5 KW>H4ӓ,e9yX,/)]YΗ/cZ-̈́ߚ!9|Wr퀯=Yxr|~g9\r*3UQh=G,/`9t|La9Vr|_k$s=MC'pz,`>`%KY IKφΐPo( X`9o>c9|<r>g47|or1~oNo/Fq4܅AeFR=^@og9r^qwb7#´3vG_ woC_kE _?!OJƾRv"y~%!'s|'( ?០3|;EQ,Ob9?0r~%׉oϤ~srYnOr^y,糜sBԓ7^r oz}wr^zv>ߛ&#' [#cj[}3Zo 6OWfM5UWHg\Sտ {leޓi% vCy£N;m!h3ݤjy&h7S'}VWt tμe[Qck:姐z;[ńƨ4SiL'ӔZv סQdm÷ďdw}俋޴800Ye5 펤K=Lofwg^e턤4kZjսa#]G>s'GLv /Vha7Ey!s>Gj6:gp| ͎~}ˤQn MDғNm|Sb: g'Svֳr;&҈bL0 ts9I[LD-A9࿛iAϧ1C|wmv}̧O5B{d >HgM:CG?RSt[xu?r˜P_,Lgm o-_59Jo;"&2>rsxk(Wu9!.;z|XzW;z*|\/&N_ԕ ䷻-3ɿnKnKO2fð07=b%ԓ%/8ti56ZUح9Ժu֝9\ni-ךƖ|j;@("ӂƿ&w";Z&Gwµ/Rp?E|6E8lNw[|;iL_¸)eLG0w ߚnCE}[87 (7 Po K) ^YΔ=-c̘66׳r1ۛo{5y|PHz_7ogf6Ud^hDʦT J^=dB+~pj3VaͥO6gN/y2 m;<{6i^a-Fn=w24R+pw(Z3"[aKhN59\DV~r/zqAjh #sShƄc\V<.KL87pT}t\-zU崿cwړ>$rkhaU_q=ߣyS=D_k6J0*ۭPezk"l#hfiN~K3eB ӫΓi.[*E׸(A ,lUMoI1yԝ@f+(Pv:͐#Kf 0 Cnݕ4@+)?1}<=y^ z5"ף;d}-׀r|ȯPC7{+QGGw=IӋ>hcF:ygޓb0nCZVPfg]W|6RUח_0ZދLaݫa_y<Z@y3ȅ3XbhË%oP<ws-|j_/Z@$ؾ84'c_<9[EϏ\V~AU[6QGd96a/b1}~U}~oPǹkhl\a!/8kp~Y/hֶl=<ثeg~kOOflOa|;OAgq0 lg 58З}&a-;}ggC}ElsDGϷy`'Ԃ} C Ƹ;EsԜjM>绯9lMg\}qlW4OgOc|T'>uݱ>oyh<{ylofulߑ1~hG,>&쿎8gydzs+i {= u= J>9}>r.]/.ߣ67>?!e9# 瀅x@qnOM13pޕy sڜh nFla\|vsl7y> w_~!m{[ |̒&O, V<-63 z Jwxzd|^~VX ge99)K';Dl'y0y:?%.=pi87\]rI5Y·b9߿S8*΅rYz+kmyp~|3+γr>/qe9\S,m1/V4X~( Ane9rW3< ޭ|@Lz,067rLX{ei?O,of9_xK?(ȅ,W/a9hrh*?aenfo4\(`6aRAɔpks3,׮a9,;~c9c46 jr~booyb)J>-A_r9l_|?~C.r|g{̿/y*S)=Gߌ|^개)~r~!a,8|rZ/ >̫Dž`},C A[yr>#97~sXM>m İ5~N/jQӣRf5d9$$q`NbLgj9~,J\&Td}ͲAo_ĥwems_I7R<}Pﱿ<>繗1 c}˘m}ySAg9,d933@_]N7sr_ߜW_(,a9_kue9e8W竲b9|6|CgBST[_ǟDA~!=C`2XΏrokkWr&DZ:a,p,Wo-N@Q¸o"_lI|o- W6˸ʑ'8w:S?e FQB"ג.S w4߄9?gy__ ՙcQOsZ ͠d86d}C~{{ r|% }Yhr =p발|F?͊o~^Wil 9!nWE^٥R}u?ɸe3h1o ^e_*"Hgn|إp_۷l9:7%W?œ,{\^걜$fXo~&g1UG}=Xηb93#apm9e,=t'e:am2A/Z|#) #ϧOh 9/{r>|Wِ> =U\%ƭrPjwX·W JqY`9*A^mWQ¾3w5A|s_%zyۤyo[󻼁|kk3弱 YWߵ >ԻG+q٫0|20? 졠 _2Zuۄc~a=X=L(4&r&pg,z7 }my|8v,Og)]}}|@OCBndA/f9弥 p;ٵY_XH؍?,dWQ,细B-wdU//$ΪG70%O-J~Z)]{c;B4leF?~SN c'?fу46,'[/{pMeՅ8OC;-=/ӆd9]@e9D.OR,/ --|<%M4]d#֫ K {-6En׉&W,3r~0٦*sd+/tA1ҾQɈC @d'$-rzJW~!kZ+?N!aobqO(ƙދ}0CBDsX| pr|=/gr.-d&yIt&KYί BAaϳB@?6KH۶HwܚC?f@ XZ v6Yr~u }^Ad9܈R,ow12YOi>Rv ȹSon+î `~WÞ8z0o@O~p_zor}AX㵠(?yTTzWރJ>r |ZGN^Dd9?ـ+xl|8Dix]YG#1/NC+uAYnT@a?HKe9ߠ> }~-YX{,?*c~UB˅M.|=id!yȉѴD]u܏Mw5qO6lur>q|П _H7f_~_;сIUk|m{| H3GzZv"wgvíY~T;u1>sf\Zmy~%.~zƿHz',a ' BUOռE=E~LJ :(ZK?\_uAx%>ұH:9ht~%\m%ڨoվ`sztD|M4N?~㻉uuAZ|=oր3W+(-qݷ﮹T>^XA6o)|bm8"' NSW+ |>_ϗuqcc=PDܞɴl%MG|(_oz|ֹ?o/h.کg9M~mԣkunK[<9V:wAX2+hE.טȧ*Wv}o1耰-}I_,7-ㆵ6w;ndc)ht_r)͆V n}-B4S5Pg ߐ{|C6oM="#Yzv/ݱu[USwJ;5"i'Owh%]ZkZ]Jm8lvm :2-Qߔxcg=e:y9[nd\c3"پ2 ig7ZY>ocjkĴ1/XԀ9ҏ {gL3_hl M/Q^ifMVra\*=mqMv騖4?/#]ZR¦ыq 9x,-C'/9R6i-i}sq-)PSWqxH$ iS~4] 9p3x}v\~܏>={ Z#k_OܴL(›V26;F>_˃"b'wމ6|ph?wFw At똟7Lg~~lï1:h`0iLGz,LD_7Eޡߵo6<̟6 >CQ4Vz0BZ"\8Ux^Q 1+ݝ)ʝ̠+O'-kW7֨3c.#7x/O}1>ȕAf,7|PLJ /XA]z6oCkz:xt:c|c8ߛ#ܾNiGk{?ݭ6p܂ܵGt\2 :0s k=YRiy2#*u8xN}^.%U54Q*.03ᒃ=E'k_m6@땋>_QmS.S=>o+u o/v> >LVUt4Q9}It$lg}M*GgC%yDeDL%ó$ss|`!y(<2w2D4c/ɶ]0p؁q(1MX&U僲}OL!=m]kCI ]\[yq(6sd*t+-rx\~r{Wr8Ysrڨ:ϨaxZy3n35D>VmJMs~'{=[q ׳(\/סj;xZ݈WL7_4{5s8Ԅfzj+yl?2p< km©#L7v'׷9+MUl fJ7jYiLG;^53d|@ ]/.uў+ӵ@rQcW|wޑL}L41Y-6uerbOR&Ҏ;6Z!+9ݮ!_v[o;1As/nj9UdON/+s8"i7-GO}l 0(?+Eu%F6ߐ-(7߼@bŃ)~u;FKhٷ5;,]I^N\,)Xt:(g2?TV̮!ÀZk ( ǣޔe~pF7!o5as)L3%-+Oߊ6D Q_Ziܲٴ}hVgʿFJW ]V^OGxY=I8Zm{L5E) Ppc:ymN~cą(!*=:vdƀRtUh̥߭H/7+L?G}>OTb{4"|lOx@#_փG4cU|5?7e'pLLZ=h3֖,MϴyuR)>f:a_( &<L`a8wSԿ/d!wÇE4̮&+N%ϧ[2Cs=3iiYtwσطՒ}ޯQ0.# |<|.}g_Z*CB(uyӳ+|wѰϹK9\>-p~mW܅^2|'&+'HI(M=Ʒ"|դVD Otڲ s㤜'XmkmzC>%vq8e5YG t"-Lu:64\Oȟ%[߭dz[߄RlF噭\σ+v8s/N,l{qnT<ηk~}Йl@:ׂG8o0Mrf^8 btr|/m_9 뻴?k3Rw^O_ۀ{%8kܡ3g{o))W2_OVU-fԄR]wl~N?kwÕ *h{)%=g<{{P?x`W:HA'_9(Hi;80v(n+֍Žm+ ܄~1UfZ89w=K/@1cc\wхьpjMp!hO9.AXa;'PPU)ϵ:q6e˜#؎=u3:BsKvtp^ֹSrY*112jJ$ޯOܹy~lA0?| x<]Rc1o?u)Seq:v]vͲoR}OT-L Sm/fӾS.uG=q'RXب[YƝ7C9̯'le1:xIUjdMrdfeF]s/;/]n;wQeinoO(zxY{w[ӿ5N)mZx}MxK5ι|;xaxJ(p(8%g[,n! >E23&*n1fD>78!Ϊ U%0ަsތf .m,phmxEOP.!=7knhGy Txm:3Φzz+m!cm7Px@gzh_BFx{oyvaͼQ CT2fc mFx^gq_Mf3v@{= O 9 VPgM}4x˯ kxZRb3&vm1ަ66JyxW'?g~]܇5޵WF =d|yk~ws #7 U_b5QŻev7]50 ;W\I+yw} zpe(o29p} )Oуcқ G |v`܇={mcُO= rw č^^Nb}oxIW2~~ʲ_GQ^B>iVv p:o7WOv0~Rk}X//1~>78~j"2~~9JpSA??o¸zmp#7cZM=aDH$3~>n?{[g(Cx+da_ wvex5[+W^ېñ^ҿu5M$ıg7[ɿs`?\>AqC.>R*~~= +VPėTm!GF3~ތpVSҔp4DwrU>^;q6 0r 7~pOg3~~c+o9fp|`|wo{~q_$ =c$=ciztjtXe$.<3դ6}o6,_]{U)k Ҳ/ h}tCMMoFETy$MLs]LA_WܭjJ>ӣwQ;\vpC"S +/$"I4]7ϒˀqrXwм6g8چǸ5IL=7~*c(ąhA{۰ίpz7#wm9|e6%'`}G0\/+r|_jӹͻ_3: 9n E8y szL&sﵥ.~Ai\ҏQ3 m=ݍ}\{Η㱟0}2 v^dz&N'Ld?ûF1=Q _я,.k3+(U9lyOA)"0| s`rst7 dQ._;od>|<җh/h*϶$OP/u/`P8(}G NkO'Ѹh ' Al>w?y{7ɫVyFվdnh2hJ=wϻ'V&0NOdp[߉C6w]jԕl=+)cI5m?\~X珛%Fe?f[33;1u==U=o[9p6#P}XĹ@C>8z' u0O+}.= E``,29Yל}zWg}XϷL6*uVꙸ/ g9ZB;#qGY9)1sf}L)̄> }/{@wc}9OU(e5}zizG ;#EAw}Xe;=w{>?~Y}PȈ>=lӻ|g}nULng}~|"}X9/g@Kg:@\oP޳kOGOS8[?FG-*C)Ag!ٮ~?rYeL00y0dc2T8뀯`aJ${w_nÏYKxOLf}~s"󇏳>T߃N/Xrq&e6[Mu6,M#߃OoRcFr׏#e67?,v[Ox,_7*mk;O8%lhb(DWC,^Z׸oQ8a4y ؃|W}& t_Sor&5 ~`_̀_, |;vh7 C Yz_+ߗR ϻ! xqx7p'UjA@Λ_gԳr#z7w %3=<W,]aM{ONrޱ7_bf ,緩p_=~̊Y'퀜uǾVʄ4qʀ]" @y}c[`` "弁Xί63l.3@I@|mxW2Kyn} gN9&mL1;%ZqoS ; ~peƋzp{dGOiz9Ѵttޜm(7ywx{0dRWH?' oC>KE6o4v|KA]ߪ{KjV612K\Y/Vr4f#nP[1 o~yiZbߴ'^ߝ*Y L[ԶQ3-Oу#PN֡}&qcQ2Qo=eEk9f.5|ҧfvnhѴ$l/x[}g$:!1OTF!_ e|@bEȿƬ@7e:/MڠqZmZj^zdGKLKmίszU'g٨5@}ɺ[ Bn](Ӎ^|PFǛM]ۥZ2tF;ɿq,Z}J2O޵}eX4)*F]4fz 7cU4VfO0OMZϭoПWhGE9';ǐ^p_^ylO8h]ėИvK|AigF-MUO57^9} Z: 3d['w Kݕz.Xeeg,$c4 A# ?#"A5b;h<דfȴ;WЌ׈Wgy|2O/G&Ex[ɼ]iqSw -Qx{vkQ=r*QLa2@@7̇Po /hƿ1Dx y ~1C P\3ܰ'oˋ}cwvrWfWV 8ss2ݩ[bP3vm}BC男B,ޤWLG|RZQy}m6E̯6?$7C/pӓ,^nziQ9G-|mC4}[fmM]Tߝ.YNE7F~U]I7I [8sqdoِzmC-w~gk'~o|gqGp/{UN|-̖)D\gOsЄ?ʞlG۹Y>^ur*~4r4Žbu{ ^pcB ohC^y`h׌l kivcG;:'QQt 14&6\>O3_wZ={h }ILb]qgAC[iK5}k/<ǩϸVq-f&w<"X-_׿~$êRҰd?͜zciʭ6'*hx2r>jiKݿ̥͟U' U@ǓSZiq?Dz;8{y|#WNE;iԭ^PzNB>sh<;1߂iurSy!zߔ2 U:?@|y1qFy_U"ya?9< )Q߁VĿjLq#l:?]" j-I$׆UvFsn-kaY?' U0i%%bh̴OikZZrT4ʨU,5l fwm>\g\xܫĽ(i|[_~j|e< 0 U6Vc\e@ެe\OXUS$v12qѿx;8ӜtԳ"< E*1O71{?f/<WzW -b\+MNK=Y|Wlׇh\U:3NprGWY-rUߢqsWy|*O}Ea gk`ހS*?tpL=v򷃽c&iz?ތ~E\uqv02s ue\epyne\2*3rE2~FS`(㗵 ~n ~ ) ʲ? XO&$!^Uiax-)MҚ:25pWy͸OWiqucP穔+zwݳM0ιl\n6)Ok6U)q W**3mTc\4Uc\F ʮe] \;s>%29q#Mn2NjRK}݋}%Q1z)1dzA}Ý}^}D/q{.L4;o;6=,QJ{Ivǽg#^rm[Sދ1.h(v6ح}: ^۰} 8M <_^a*38}<x!=aGul?'}>3/g~|yw/B?2.=W9gj!8.}pȹT=o9,g`l?9Jg*~Ckw;^a {'ޕy YS8GSap{Z>R;t>_a{* wE:> \',Y8ʅݝ^^AH} !_xlGs{BeZ2K_B¹zCtw{]3rly>?s~~8_\V Vn8_} wr2wZԚd}T Dp@M~Sz1zW=)]$¬Ͱ}S2]Uh73>*KzAOy|64Q?4iLi?4nV?9;Zӏ\T tX.K4J7_G"~mJ"IS2>z-#0h<4a),h.a/jmw%6ړ==P_+Qh,MpiԋF_ iO}_)y|]4q5=z@|'2_\å4:MoÜ56eUÎ Ԛ["}h;n>>7f0 1 G}>Wp2w0xh5㭋*֠%kgy~AH zt#Y ND|: ۀ:cExA Sލ;QDšѵiUtsG=Nrr򧀖jtB YT% >}]Ewƍy2›chc+5 YnT׏1ZCS#kgˋiɥckM'uoGNVhX9bѴYʝq+M2!:3&r>-qJ_L>l#fjІ&pq`li7"qvS[%>lvۄN'w3ve|dMK~d}k߮16!n Wf+AP}v ~l&~p.w?߈zSJgMsz=_1=Gm^ƞ*'ivJ;M$9ל6n32`gP(Z=PGy/zvyl5a>>/[yO;( a_y;0>l6?ߒ6;.&3:?m& @lRݩ_;K) k ./w|[)Nc>,>sop,6Q.=f;/#x@-zn36b%܇v~ۼ&/;GWU7 ]vGKkɫUJ_8u*55SGg݉}:fFޙSW5Pvt}]Gݕ뽻d.Eitfj3*~מlRt*Ym,-X{y,r|ْLVrM5UɨwGY/Y|Lhܦ5+U~rzϿMw&`awZoy=n|92mސihxPSNc^tп௮k,7TM)XѸQ>`q:}|,r[{dd7QtUeeޗfq~kȇ:&j͕1Mh$-U#N,ǻP yՆ}9{>Қs+IgUvZR3vn,%*T=&–;-.T6G>|rYrP/Zuu.A}bЉ5*)Q1fJjUkoܜn:f]!6ė.&7M#xڜy-Ջpi7Yޔ{LXM??֋\_N#G=eˡ\n}ƻǯ.{YSzKO9Z7PFfzrx]ZxET}hƒMMӵLfL=OnrR~ V.SK#ʎo}NaPo_k ½)fU?͗#O} 9[eD=hgxIKFy\*mo&$u6q2&k_oO/J=hF܇u;ex Uw㜺xYߝmU-n+mxt\gS'4eqcVxI(Lz}_\5~r_+6w;6f 6w/;xӯaM4}c9]߇?2}`6w^{wwzqapLwޕ6uM6=oa3fħ0ަA|=<ߘx Klm ]evϊQ-P>&w6#T ǃqJL4_{<_x+wpW{ÁL POs`+ZLoȩbMQ6Kqjn2fJ31{o37}m!xJ\Q_|5VOxWK,(oR7섩aO6kIߥ}Fe1ι<Tqt.:]? IQC'{DK{M;?5]k:bƜ \QSzo8z~59ϗԃozn{(Vf_Cԫ /N|C?V2~ftfLy/M2ȰiB (?ZHoGE{ܕKj5QvYuﺋzߓ爡9[)k5I˭o(?5 l93b 9}P_ #x|{=3 .YmoxPkz/i=ǿIrw(M:q;K(VQȷ):~t7d:ێ2DZ14 `}}_Ǡ~Gp=v"߃;LBy#៨ }t~U7hkι ; Iۼ*8$ux>ml(u嶟`k7O~\B_u,aR!SҦ=-6-Ҧx%׎e\'֥mrfQi}77wioTb~!13mLte}䚨¿^>Kt>?杬G;N \x{MR y!>mL5>_mew<#/>bЫs7M)ۜ>7OG8;{W|6xjx{->h洗c{JA3~?|y^ ȉBoz=>73FlɅ9_ݨ ['XuXnÏS{o|}y?~I2ByУksf>`}E3#L$>y~>_lyi?{<~B.(<9] o+8 չJ*-ϯb}~!] ?fo}-W}x,/Ʌ3 ~zr>AOUS_ d@Wr{ue?vxiп\2ß_(ߦy<1Y .y.$^ ?E%ֽ vg ByQu6w1|||\&O>M󿁟?M|}R\~~4N8}Yʇٽt_R'jm%/RSmصxK"ߴ?zmqr g-]Ula&T^+ ebkx_Zdc=u^kw3Kֿ$S,:},{i)-aE-P7|?L[yh@zt؅מx_ݝ/T7۞}m#y 4砜%ud{ ?`LnuDa|[XAu wch=wȅ9d?Q7ѿ K_FXAf?En2}\ΔU)XMz4{&߿UᡑGso5'5wUϖ<sX[q֥ Yok4G/;OZ{|oe}loW|ϧ*[l2yf}#}>K[܇>,7/ȯ|/I/16xgd󾩬Ϗ;#Ja1]t='Ά_ߙYwos{́;TJ=q*i3Rs|wߗw+>o'>6E/yZ |8c|g!z"L75~ygN6>֕/uX_ٕ9 }}.~3ᗸ}<롼򝒧Sz Qaᗸ3܇|>k C `_%\g?( |9޸Bim9O񟜎gz*T~{|Gfn?;L" x ~#l}~g}~a}ޔ{ }ض0;/5ynNƛq?5YyC܇;#QOg}ڷ> Gqy8[B)Y~^CW:vtd[.],CiwH)+BE_RIA:鼛zqߤS_G=_<ִBY(mVTtwrSUmS[fjU vpӌw jBv$m[W]^0=iuƩ$Q^' >롟2ZiyZw_u]fq@~qG:ٿX\aNW,{6n{ #?𱦬<!FK#U=?LS_g|;_Eͨ8tvq熴͎OcȴG4&Gj\lgY> y5:iddzͺaOcq]YH[|ǖZ _1ȯTף.%JoR,חГ>e94T q1W66^Ϋ2zE*Î*: 1:Ӌu^W4ߊx+i/tf}OMxGifԠ[aѴ降cfRx|GU_7_>rU>⧑ۻrseGtxZaN hח_];ϲX&=~FܨA]㛴T|!Cχ6ӤuZ?T}LƽH{2-?r<U|Q{MNww -s>n?>)^Y~n-sҕV=4A++t~W󛅗V~zn=E@ .M2:=DK iHNG>H:XRYRMlTpS͗VuzR_Jns ~MFCdh|3dڴn6r-SBK'1uw17f͌L?|5G ޿zݧGgr1Å-I[۱z9}d[/wUwjp݌38l"m;nܙCܶ0uxc ~mZ1BVV{jǗ['ύ3gپ7癓U-.oN˹ohc'LiꁊM_lJo}lx 1 LhGXݧ7p8Zf-S=~i[\n~(M>c! i5UPҠ|;霋fL=˙LnH??Zs!;DtWB8G/ }RA7Dϛ|-z+-/,6]Dr[;aDi}@.GVzYu{,z4,<>o=ZNڪ߄y |KN8&b \| dtdmO+c:Ǎz/f,FlmaQJAS2~2O.38̆" }P>vU+|Q|n9a:6LfM%~]Mp m,U.ח{J$މʆ? ^ (F ă3q^v^nOVa~2Ն_^ȟj[yIDx# ׊x7m9,%1vbvڣ~%SmM0? 9%+pvWay\%94nF6Fnt=li؋66e|Me9?X5 C~~W/ vߓH'7`,c5c?V_Me9?r|z#a@b'>\Cޫq?MHx'4Ȼ\H&p{rYrp8d`?T W 6/> yWws1)9`[[U9,aGy GB @r ]<:k'e4u}^b9o{FE]_Uζ,^wzxO*IRY_b9p(Uo3|B7%o9 JR*#S4|+`%\ =? ~Kx7j0G@c9o8,mq^ \z6K*q]ɠ_b`W'Qiox\𓪀|ҁ\y6zŽ2عsߞ,/RÄ2VtU{Xxrwly,m ocb>T@R}C]<߃ƨ/ANd>9ruJ> yw=Y76g9_+6r!rǵ$~7,g"ƞH/P-=+W|"Y>+uc<_ee9"rxYίYk(ee?Ļ{RQU8C?ZB},Yk)۔9Tk@{RSOr>WgỌ{rYxp?_1kQ9GA'w|l\{[q~Q{-8JqproOw;| pOJ鏾yWKV@/Ӓ0?χAz|1oj,tps5X' 9tܯtϜ?2!r<{$WܓùaM!qO#'9]  簩KlsXVIy._~xWyNlv*𿘆C֟ޏRdžˁBpw:-n8o[d?,[,>tQo,?yK,CوE[~!|sS>@V8?w7LT|J,k=C盝߭l-J{D]zkG)ӟD 8L6M;u78=xRni(&YiE9p~]{П wBE9K2λuoC7= зȣf&gmTˀ-.¹:;3'E%o߇!WPݣ[!a}g3·38] >p3Cnc}]E9xu<zE*>SP/yTo{R;G7Q- ȵ:__bb|K(-=z&ϧC!{8?}8㼣-p6lm "'8xF 1΋'γ 6O|x_/Cjۘr1nop)B*6 +y[ϛ?2;/m&.|z 8z?e8OAo/Ӟ|Vm 8RR۽qC%\Wxݱ?8H~^ϋ8wR|A>-`8?|l 줞2Ο?+}@3ɭ}{BӃ>}Z*8O5߷ϏV󢼨?ѥT =(']ˋz3k+!ug/]0f(8?Y1|~Tq~| 6]:/:#!qgDRi38_ ǭo _ Yq!Pxqρ_HCnL#Cr[+ e2|/i) ̅<x* KnOpO,ЎOS~D~+3.X/crW=]WUGN#|h1;~3Wc661-a?f:c֙ϡ?B h{}/wMݮzo1n|_~OُY.c)9i6݅yc~ѯ|9-|_~N?a呪]3>22Tmf}Pqϗ(qF)~i?xX2 $\f e@7ߴzEIx/?ϋGWL.MwTTlTKNe~P*ﴥ?>Ly_@nwx?SͷN Gd7CZ=T-F\b\5|"g><DyKM:\_9mn@>qcϗ3??xV? |o+ lj~WNj9XY,j:%?t;+|a'-? b ğ?1*@nk߹75 L@& aފ\1!?;:!ḿ?;0 +x×TqOrG"ڇ!~ݦaWGĽTO/&K&-_зɃf#W0ޢ'(c~ޖSzf~ 6+pr|gW G>?>$ƿݧJ@>~~ e~~C%yKW+L;`~A?ۊ>o_ƥ/ЄZFX{w+aCu %}^WnpЦvo"߿::8s=Xv׍vl}"ں|G-_X綶yYsjӈ EOꏒL;qxwU~9:f͟]m(2n(%A-ʹ'a(TEs陋fqN9^R<|mv)MGgSGE%fΦG+GB]'߂? N Ug~7^'KvՏv}7ZsVtg!<\Z\{pO*MݥGX7 }!s7]lӀ4ZT|xد!\ dy owj`S~QEsyS̿%γ| t=qmV&Uׇj }Z$÷sd)щTWӈsjfR[ lwGtр9ϰO.!:}@-P_5o(Ӂ\K(y ,wd~k1 9,s9wYy}eZlӡ[Z<;-,E|ڻiNt 8gh%JOF?[0WtTYtۀZc}bP/z4~@8]s՜߸׿-;hS{r:{T64`Zdӓ*f+{$ۓ@J,DsV}yh*+UHO|;Gkή}s/l_$wg]~7>>3ۅfԪ1dx*q RHF༫ݗ C^ ak}4HF=2}s_7JV!uXCõCc2~CЅ95ʮ\]QgGo۟i\Wz)|Ix>.# w paZ!qS' |+s?ԏzy }@8?f __]Wԉqh \_ϐ=]7rRc7H..Ƶh--{ԩ N<9h{UQi!ߤ58^7|S9'|a-.s/yowkݝ.W"ܯ1cyTCW[grp~l&98_FovǑWhF (NyYx>Te_W~]"hǹu?.AW7pt*AyZ-|۔IJ .O{pc&98p6]k#>0W( Fا {[>ȿi@9P8_ ,uE\qA~-sULp p> E 8oq e[i Y$yϮp||*yyq|砆?PF'E 8|/ȤH罷Oy(JRq|=Kzy%Gϡ =K6'Ās%:u85dep=4eW,py?m9>߃P&#_?i]ؿصkG ']0#ҟ^C\GDӟjXE]JH\9J49_?R;]ӕ2<%59v\n$s73:y|F>מ&Nt.VSϺ/C{4>\ef)8u;57iMF}d1,ܠϽI޵,(6zI}(jc-3gAo[]ZiX/(y< +˸|{.oNbzu'Jm+-r*~KAU yDBۦŌc/qd.H{i3x1\$cϺ8>q ymHI>oX0XhN;+#w)3MFv@?/t[ 黔x%CGTZ16|!?gle:ûmS>=]1Q|lFP)(3vW[ Cx[#C;c{0n,iCaӗª{nӄB-d@nm9\D&=6]E]4[vYc|-)Y3pj3^Uڑx \3%e7o"):rt봤E_kOnoȍu)xM6:T۔ǒB| ".Kķ>G)7缰O͇71=imNK>xo+ߗn~M))a$`/z K/|wz?%FPඦ+b8v竧\G)GA!ױ!0oG&j5,w-5]mV~vTX S%tz23@{ ? f{yTݯQ: q`_fS7oZ8 MZ=Ya1ϸs4;6:>zVEtc4|m_0-96ykiqޗC߱O1 xxNrE?;MQ'zMAa>P/BZ̩'E}wZzt-@935`< R(:3 JyY⺴uy=0|ExH~'os"嘯cnw M,Lea/}+@{hW A+=QYgz^2qޕp8u;J Z6㥹_fc942AO g|#yD0?΀njgYF=Ը&WoW_poDỉ7 Qn~qe4(M.DI ]Si y4~cܿ:g.!+P$Ϛ iwA~^E|Sa R)`񓾑Zu3f(gY淪 _sDwqH ifޏӜ)Y;Aw/0pr\h]k~{G :ߙPoz 됎Fahg&, g=zwæ:F-ֵoj >H\Vvjђ{=func^+[c; r_2y:Q# Kki'yݧ+gk8DZu9o(>Ӎ܏tҏ|ј4=2<[m>iGNlX_G5F-UHY~اkjߕGz<(묘/'O'C_ ;,4*pζf,w럍,eE2!~YH`Z^I?ݞ*LhyhΏU..0R[5qνfG;X:zL|m}>{g8gK@3@(ߣ}zhdžs'ڰvjZ߳-s2SЕ:p_9|?߾a?j\hzx81·NG;(8~)&9;{$/#`13.F;g-Oد8mCP U.㰜\<%OGLA3οTcЕq1qZ{1W3?~NN/"3y.ۂ"h'\sp~P1f/g~D?|Gqi[E^׷WH^.Zr77M[Qځ:](56@Wk0\vx߂w?!)pd_sIvE}wꑑI.9_&9=78oTzbܧnNI6uZ60&3x'?wL Ru?JZaеL4gou 4/u>{i$;q BVIp=u?-~>D8KJ_Noyd޷}#Fzs%jw$ߕoAW-YQFa q~ W|vp:4(;K?Jjƫ/|/va7Lߥp?WԾ3Cjz,;31/fouμ!4t~vkSⶪC]np/}d4@_ ވSUM2k1wS8zG\Nv|pՒ֖GLa'w-3=+wuMѣ`{?wG||񐮭G.0n;s!mb/y{Zzo򭋿L3CQb>.{[7+@y5"_7glէ>|D;/gNJ y[T[Z R)ֲ[]{QLPįu;s\/ZpXOB+|˾qLonbށ88/;y}Na9'ܓ ?!gze֥;ӲC܎' AN`:Dr}Z20o`Z~QN֣j7nYmѶ+Q˹ )&a̿VwW.<uZZj.a}z]a<|5rQĝp) LϝfZǸѻXܾ;){lVs+dZvQj]#(rZvJ)ZVh9_'3^::D WH6loT'iFم|^m\ۙ$+mlmz}(6O!ۜ;0:J?ͭY}1w}nJ}]1] 6総m'mf 6uL;]m^,~_o`[<< mF)mbLXߦ=ַY N><YK6[6Zocm5o-wXߦs'f̀"藔^>1菬oS N16=3MDoַaMAzR#%|z~^So4? Ϲ}?6eַ)Xwu4Ld}AYaZ[AOoW }]{m\oͩ=o'/4c}6o3!'mCZ7#CP{>gZGf-I)]Uԅ^ d}yosѝm:tb}4b}9 OXfv&gq(q = DD!SPPn ‘?/AۣoW{:σ|38h?[]6tUz@J}зg}ƫю%6x?,CƏ88J_z} ^;ַ9Ktm6NoS86=XߦYַ6gۉna}o6o(NW']1a`eȲI˶aG5u{9g%ㇻ|~7WbgjI>0\M2bx*>ےl3C/6t;#}}^и{wrx#́h|XIT~O 3γ=?/hVccz#wmE+Ɩ>v;?WO?#ߖ7=^6RرʦEϠGe7Mp_7О;{tu9=xF㡴a': b[PNiԬIsڲO{ۊqd"1~ kMC'0[_ԏ,L_}rx2aOsjNn)ZQ/0?3eN~glN>ieKe] Qޟvy 5\VLjy2- oC6o;7?^EsGy^& _ ˍ(KickǪ֝I&y,3?\nQh'k*+1?{&AOm@au>ێ|U=gX_d{[|"_tCڗ3j/N A+V(N;jO't曂ҟvEǗ0o\"_ 4:کCJ:NA?Z~ʐ.!ʽrѡA sAݷh*"f}҈E,-ke> 9d:rqZZzUcI/imUklԦ0> <=N>M"䨿1վ vRϞv&IRӮкONCXNj,C_ز|`'UZ#NtNjh;o";);;!󿳝حmL[vRNj5}@.gl'NjvIvRDю)I׀=jAr_{;aw!Mg;)l'U?EANj9M}N -Wx0n{ _a_vM꬟g|1 vR,yc*{+T׊*b=Aaհ%d!]vR}}ʘ`QvRNjt]Njr`'Ei'{NJÓH< 5(ctT8my244D /b;~d;l' I>Os\`'`/;?v+g;G{9I_v|TBbhs{Dإ=ў]n< < s;?vTۧ#a;:`'vRhNjOڃ0DeȬMWK26UC0xpgVMvk{Sy}oI.{KR.%g.'Iv{V/=ImQygYU["D2 l7ڢ5M~^˘|_arv0#r-$8 ~q_LJc ?Nx68|;bLuka+^,2fB5D;if݇a0?4Ve?tW;k[_J vPobDwxbqZ[=~r|Vxϧ7`|Q'J7qNav} Ӂ]h?X>o>sY>Y>o"ڡ?Kvs'T~ym_@>/A>?Z/Y>70O Z+?*y>Nϗ|ީdJ{_|>+,?;} y-DY>/y {@{X8|5О]~|h6aǣݶ,#Y>uwP2ݕ*)Ӊ(?DJtE#Ұ[։ld֊a,h{|1[X>?Y>9w/G_p|GV(o N%g5=e,9vK/s>Uv>=-Ӆ]@>?yڙa/`|5/n=hGHW|9$ivU{{:7L$y0`{]0rh5ßirtG1h}Ð7?gOLC^ KkRNIA6< }ї;c,w$ɂrzMSwr51,d?Qj ꢽ^vpұȯIoߟע]VLi?+Z4i)p0>R[:S0gTNfJE=B_ 6a&㞬ti ,7}#n.\^X^PM+LuPrw3/1Af%~s#唝Gw~ZeƔKGgoR3i~ܞ9ZpTsi[r+ٲݢ3?gO޽\iKɫ-M 'kF>U19BvN17hvZkPޗ~|cpN-~x3]ȴK!S䶰>hQ{-Bn_}+nkF[+5휥Wvm%Քo78M]˖LcLoeӒVtݚ $܏$+Քшu`:s#[Ȉ|ڸOw~G:_}<2u>fq;,_8}4COGI y%k!Yp϶ :@\fJ~kW)Okz޲}Ly_mݼgP-/x}5S:nm:0| 0r!#8L-zW.ahUE lFs#179ߖZvoݱOuh͉F?& R&۶ǃ&UiY4HnVϱ>5xpu:yտ&%.K{JK|~_b-,g=K>HKh_ȭ_bJKWl-%iFKSWKlV߹Xw̍ JĦ /mî+?BKN\cwT!l ?b< Odn_8 %~z_vݑom_?Gu 9/q"KmЮ#%x-~s/5_w^5]?G *ps >KY/ WaX5CvCG.xr9ƣ0<cUh ϻ.K|H/C8_7ᗸ'g>~X~\_rPіbyˆ[ rOi\`o;v1_`p<ŊS^~O?``j2OŽ,|P׵3?l]SSkp~GO8_&'kc}D? 8Kq?_f7>{0?8q~xs-8CU |nL^$U_~ < |^GK]s`|1ZH\vbO {kZ.-8U-߫#7r߀?k|:>K2{v  .<88ߠk0ο`OȀ |?Qi)p\_8\+hHDO@Oa8?h;|OK0o6fW\_GWO4Dpqg#o'!q.ϯ~r^r1gs/[_'Nǀ^wǛx?ߟq~vx 2Ώ8?|ߩ1@'8!gG"U$3k}@[$Ws_cw8/yĻ?qGOyo8Ay6ϧ'9-OVo#+e𑑷 wj??h% wZo2[FWo~eڌXޡyʸ/3J7IǤq? 0Qk g T {oO78Z3uKCOJqaD~)ix7wćNUKW~dEFTy/1> F1=⏔S*=>3 ~X?N叁gD9-XCAtUo߻]x>*qGk0yo>}Mnes:bՏ|Fa]B;[&hF\\vG\s rqqrKO%|%Wg?ym͆H'7o ʃy:|=)~| ^xhqȍx8i|ķ_z>|,@"/})'OLymējǦO wv}-sد>ß\X{ C>"- ^q=[d!n`o{T=yu)|QqdGV.{ƴMM[lA|k4y?/٭ݘaom BM5km k ͼrk*=97WM6ڳˇFls4hNC(oDt&VwK9:Zgl 8M`\N~Q o~ ~[=츗.Կ =W+= SAܠ$ė0GUQ!=,TQ]4Bky['|?yG ^~'籹r4ʤ`޶i_#ȦUøSVܰV}kSN3H83.?&A~Fz/A ^oUʔ|o?kb;@hիa?Mҳm1SϛyEO*? Z{DkZ$m|"]WƇ}A~/D$^ē b~>q/)qF!da0??8)ϗ58N@|&1|!x/C ~%I!Nb7Ǔup1yy{oO ql1r%((o qK~,\G3?q 3N*Bw<'y2?+#-ik<@{=~~y'@|~q!7-D<(q΃".i-?x8g\>/> Fć|  ?6Fć=xD<4w\)N "C|\ESm3NE|l|?E6bG8&A/#qƋ.릎 K3?b~΃ ~^s+|50^W!F`^չL/w#?_ a3?~g(U%y[5&8刟Mc}lYM8$ɸF6Vz5N։c$}6oZzX&8!Xu_5޷SMNIu{̪GtuP%jtL?=Pe昧^TVj꾗l87]0Zg`ϳ|g0Efh/Li Mќ?D.w[ϙzh1ul_w7V4ڣ2͌`qr҆xkonhQ[rʱCu_)?Qfxtu9~Bhd3NA&?璆^Ӹ!8YJ#siG%FqJڟVimUӳgWY0'emhBݵ_~Eu>Av</g$Aglu$t.n[ݸЎlZ c|`g֟1O:bfc}\M/lxc%]5yAA3O|'fHT|%y;1H \|y%&gw6x̣0;[f걜̊F>,źA;,s֊S;|c,ud{χx}&}sZ=zvK8 `G0N3ٽ 贜znO-3~c{xc\Aa8enRTgG3nIz4#9Gc7C nz#I.k6u y^i#I66յnL;BvK_5SUs#ɮ^ɣSy5dM߂\.QgJtX>JZ5GӇM=Y-m5\/tٯS]"vAlW2J]:s-G>.^4{z^H?t <_.}Vx V8z-nhT^$%ǂRvz<&Gݕ֎u'b1 4A.e7؝c2띁=-hǛ|m#guD RҠ#(faZd'뽣ڵqik/[>idּiB7Ϸ5϶8γqBu}L6`M0-x. 1\r?|stFz2Yz?A?ͷ)zv`'8/Ѵ`@ev]rSsT;1>ҏ\pHZuɅgRzC82M+ yي|A+vӲۥ [ǬmAڭ|irэ_>6wD\ӮW8pjfax\-\"}&b'FL+T;hNꌐE?y=0M2&mdq={1wt#5r|{SQ՟uiMK~RQm}kF'VR4+&:{aC$Wd;>.H*\ 9,|9sEi&%G)ؼx$憿 i l=dڃKEfDbMXҊu>~:H_`o4M =ھ$%O &Ǵەe9V(Lv{so<%/yim5-kѨLۺ҄9@CG Yt9=9L#1!NDǜ"3n~>/ɠ[{!M5n~?\bhsmgڪ6SL^q?k87 Tg{[zi gs?2G wv6Fnljԃ4`u_ޠs1W,f"1+\^I-Vy߳4>CNJZi=kPWה9FZ _6QސAEq-Mي󢻍d%z&N7/ uh>cn5 \kpƿsQ.x"߀q] V=yLj s#L`xWor[#r4{ kQ_O="Տ4lho!d٧K㰞>ArL>O><氙 })ߥ'^x){8m*6R ʿ}/-A>/ \Է9o\Hl+ayA>ou@)}z[ȗ u,oP\Ru G\oX>?$|~˧@nڅY>_C-_ByUߠV*|~Cԟf~:Ǡo:@fJow?ۜ#8:|~׋||'|^@M,eqYH! `ck{ֱ%ayh|rwy0䴫(+,؞d,yMkY>xroX>reL;`&;\cCCȱWFX7)j~uX 7з颏_XUXߵL3X> ,=Oi%?Y>?],w}~&U\8:7|/0|V@>|ן3N运{ް|kb)Ma| 璍wXtFǖJͩ|G7rd .St|DcmwTSG;Јg?HDQ;_&gEoz-cO8ޱ#yw{X3Vg`Z>=ݕ VoM=S/Қ+5Q̩3|\34+Z$*CW--f=4y ř3LyW.lˑ["pp\)7 ߙ dkno]~uI=wJbu1,/y |^G.8Q+L4yv;k{3.h7Ɋ;A&7W{ŸPӃs^2c0.op.qr{h 'دnؗȀ( ېɔvhf3PF,/I,#fiVi2}pz-&ډta=72Uq8Ӹ>AXX(ybx֧ [_5dc׮'n'HK-ĽLN-mmh6s;t%:[A4gwkIH'⾶9DZ|SpwpS0n{ƍh;ׇL(fin/ *o% m浥S}U=@{ܿ5m|hMw:W+N2[èS|g|^H }G.~KCN7OI9 &?yl+WA}q%iPDn$^<(sG$ֵ5e~0iɤ&OܥP1UK7{YcB֑=Q#siUG׀~G(3_Y6ΦYZgF??9tnl;w['?E WMn*mܱAYh1=t yٮݎ'  zN<|g>&g1 9g7p|~[h>lqbb5oF y`a1ϖYy9X)Uq2w-y=FoP)n=vOVѐ&9lnNqv;ɧ8a6X-S(>֭?I| IC|u9c |"W,lr:y5z_Bv̥_nzG Fyr->?:L;R@^npY96QA-aO|tus B'K%h/ @X Lz gz_GWaqB: ]uSJ,$܏S_kp5R#Kﵢ5Y "+~ͳ˸5k>kV]c7(>[;# U "e>TK%ngޣ+_h~(uS<)zעEv:™o~:e?޶'Ġ{ҒnG9HC eȓBa~H+t)ma[4/]s w=f=l}v9W{K.+YFM8N=`7sZ`뢾<]ąla6D%zi*:4a{6a{Xlave{3߯BX|g7 b2*d{0@Oޏav]9WiggqП!-5IFBUAs=="~@~^vN'Eu8|և5ݒx`o~օaz=H=2w=l1akpr9ZV95 .yW. A9 1?XAx_7Ԅ}H6>=tVgQn]nolKŏE-jfeZWOmk_/nRRIId%S/G}[r  Wm̴ā酶=h hqxrynԥGiMnie|vv=}/`ޑ]Ko>MPis~7_EwnԪw/"ώYgb~6Qw#ׯHufFYpwŝ:f*iUQk/Xix~ّypoP8;8 z֝nw5iϗpt'O?\Lߟѿ єΏͅg>3oZ{m3c{65 7Z}l7f,e_g<^)fi&W(7WӼi?onϝδ } 9}اs\^Yӷx~ 8}9OLu4O'[<Ő{m !wCiצF̥~GƓP—+'zw=ȷ3OK\\3A*S[x10g/b^\C#?Uc\4/LV1g,y4ņәGFr?ϏMB&8)X_"_uɤ䶮>yI^mI; *.EgvBEf/Z`?H56i~2}bi[̳>9qX G~ o?+f O*' 4^m]d*}?.ў;WT]_LOaTfmbOH^_:f7~l9Y#G=x}9z1QZ8y.lq,#<،|kp4p~إTVtu֔՝w0e-38:fn$n_Rnބ鎕xn-&~6;!m|K(Q(hqlZrU6_픕yI\ӇG~-_c)WeszcD֏,؇7g{ϼg|o_Re:z< w4na1AB>q)6lriw'qUpj4\ &qzY̴㋟@uL{9t~5nO 3vKA# .ݓF}fo\ԏ,M)p!=9K鎚E&U{͏jhyDoaي#;؎<49C ݂Ld'mFQN(fx9r~>G{8/IzOOkl)g֌cl$b>2rO*r;û(K_6|t~p^c]zLa:1nDl 7ЍOQI~$G}n-?_~Fs?Y;64,9&oF?BKixۍm/%fqwv_Lwxϒ[N w|^QdO v^C66N&y[UJKTIjAJYԨf-ڒuߩ{qOos m:ZIZ]ԷSʈ 7M3N$:KkCW Nھ5j9YKR?#OoʴF]l2Mhl&6esNeCz!ɮJ$q7(jPN)y.tmk&j@w\8S41>ƌ<ˇqQ]$m0[Cc8X747Orzd*7V|̾|JQM<舴C7q?Ca\8R ׾/ܠݤ|`rZEcJs|\?&q;1r?pD3E܏MiT;)\>t_,X9{1cS$UGLq:Z1? :yuSP~~ kkriK<ג.x.u c1 t-NID}u렝4RA%6Rs`͹d?G'6iZqܼm!N~!dI؎ihM]9maB# ;wha:nX؇m8m1H \o@cRgS=} D{8x~(Ѓx:MC8'B~w{|3 ^ƸQ09])nQYdDVlZ!}BhnY $e";hm|{j{UP/#q Ѯj_tmv4O83P~t l2V}{tޒY~_4t]Be}{y]rPwAnZ<b<|ّ =K]cʡ'~j^W%M\Ǭ^uXy!#s.¹zsi3?K#7c%ת<~X/?ȅ};͂#y?A~[  ˡ7 *3Uw9zc^'U:@ z-q17W)| F[|C멀B=GWzЫ<W)1P=zq~bf{~6_֫l`Cr£Zo$Yv y]_f8%NH{ݜ Ic6jӣ[ L}:Qs7fBOc_~I{jʨQ%V57JRmWLʁؿXbo te/x/^R֏4-`-2J+WL~(uבj(d׼':lvQg=9L,a[9 :c}TNHi/熐P^_JKb➕&rZ#yJcmrZ,<6&N؍s¾4ds>clԫƹ9y,?$@ML7 Џs2Co}(~,փɡ/_P9ك#v򪗿@ "|~ڛ^xuWS>EH"]~[ojՐ#ǸΓ-;yTZZ^m6x{J9m7d&(qS5=%EYu{Ŭ}:ƓU2cr}}oϩ8WSr6dn5zXf:s}l풙=𥦞g1U}6EҤ:l ItIb=5ӻ_vZCkߕOXeݮkݢ~[7[InZ~yz1E_5iSҭlh0NLںg-nҶzơTBq}^E51LsX4Ӂ-]N9B,O[^%ySg;n\R;GyotEpۿ#O0ҳq8IJa箔T~+1:Tu>h%=Bk"O)%ӺfZ7sԖG2;>vjt~7:_MXϥ\OOPY4ôL=vq[)7oq;8x.ow7j= ).lmg&\cH ,w3` 9 _Ϳ#g&`\aܳãqގ,ľc|py]?.MľL?Kx~PEi1Pb,[OjЮKtnl LjwTS[/7+ -ys; x4|}A~sԫ CmBH's;Vx2m=[^#jA#)+ θX]M ZĄw.Iو =sx2&з.8`6׭Z|^fa<p!c*泑2ڍq-eR %_ƈ I;S߭} $9.Ky:{t7hC[|ڽ5ʤ}mGJ-ƸEfvyt~wCc;5ɝw R;Ycb_5r:閑$.ʠImjǩIM{R(n:^Snöo}D<ɱtk;v)dՅ?T[3's'ԹB(Vܿ%R|ΞМ)>ܮg/ۯt7o|jm9Hz{Wvs+&2-E;'hߎ.IR=)jc-PFz_Ki[zɗ25 Urick[s;^{9vǾ\Y@q SZYi_8O/~f}S^gq3WJjG{o8ywb]ng`\жfXH.OqG Posvy-9tW~mӢ~疯vͲ:QV9KpE'Qk # {c__]iho{>t7]u<~ ~yc&|pe|w>>%77<7J;p|8֟Bdys zᇬ?5 ڊz70.)!ywi?W?ߜKl? zgmqc=g@oqOSoݱQć?o )/w+_F8/G<+0G?o9coz?Ru!P- ]vWgǽ!C>~ПOA?7H7p5|֟omD@;;?ioGO_רPI(n0Vy?î8?,,|mw^Λgf 8J"%ο]_HrpaL~Y;O;1/Z8@//#ΣL 8vRJa'5 q Iea'5c F3 aO^;/_+v#2O'cp/Q!t.x+\q?#h&S(Im p4!ӎd9~Be?y˓H{ >h'(LCc#B=f%γ ~X.@[t{`bVb}&8%}uw|^Np._0Ώsxٰ̑Lj[C/|: WWWrҫ7{7k3ί80q=pf!>#ymߣvtڞN}_e K|LӜGAÎ:t,'a{Oq}a9vR]͖ejV03}s :hxmjG@xn&7qŨZ,"K6O|9w?4 =c+,;==Jraet+]T9xp !7!ïiqՙSzS#a0g-\gtBHkwwXR8~v%ynuiwxʮjZ?7BatO%v7֓ﳁ]12^\^(Ho *&?Iu[0gv=ۇ<:3F6|um;=jZF.n9k"hŐk-{ ~HS p9#P릏(жB<.t"o! Џx?L_ h~ =Z~Ŷݙ8 SǓ/q{PC=FLa}~Mp<΍b1lo^/ ö 2}`uOѪfS*R?5,%0lM;lj6mp ׍3ʎu<+U9WlWAYޅE^A7zQUt)*{TxRvz' z˜5ʼj^eRAc1xUqUv^ UvCWYە*m ߖ*g@6@X ( ƹm~(BUz>QDCUGA;E*3?rGέVǍx'nCr7UVAMXr)Un^0UzྦBkG'-ڭӸUe>A9ð!Ы U^e+֫\ӈ*wobѮNUƱ^.֫z V~ %n:Op>ҷΫgXp͵OߵPxV~?"%&}p>Vw_bXk'|>J$Z?&kA`q0G n`>B*{ByBqO&mo"n m9 ~aD=y̑|nlBq&1B[OlMDڗq>bKx^Dq>ˀw"n6Bޣ8팀'r9#㨽3 ~u>¿z<2o[8?> d_:b ұn.{ćS#}> #l_~I cCe|F ?"q#_qu2'pZz@=O7E [gQoyu ;a8=| xPōeG\k(` 8/ԝqP>pC*EBYqa' Cq>b?8%8~q^练8 (8?ǸNv['j)Wϵ*/(~(`9D;: z'Q<~ q {!_qJ.f#^+F|"-G瀟w`s~_eqi|GI@JyIy<Uebo|a> |BN.X;Bx`'exc Bhwk){["w}%W ?ׄqR9^8o5q~R&p>aӀp^{$ޟ O=ĸ}#.v(p8ߛq~A#B~!u@|fmV=k 2d r h@)3/g]4rgA> ,vQ=kWO^cX>/5>=X>߹)U@>?rxn,{ 9kONd|4Kɟ6W~U~D>S͗)gh?Hf},,}P_҃Nxl`|{wQ Zdb=Nzc yDZ|b3dz|f_ٟe|*/|X<7-+Y>_l#W&X b߂=}_<_R= ),ߵ'|-=y/Nto fsz&K9֊Sɛ97Kq8О( r,rwE;<]]KڽtWչV·| J_)#!9}݁QsguUYϸqwB>?Z,_ٓoϻ|~"Gg|Gu~|^7<”rU.?Tj7קA?W^K`N26W=hcMAGEiW=wT/@-/G?|އ?\#ъx;+W]/f~!T/@@ē_Ő߃|)L5=|0?J<_>B<@$@~w |DuQ!!<?_~ŐI_oza܈<8vG3ȯ xP ~ _VkiT8yS=fWS{q ⿇DU󺃯Wߵu%E& >|']:@>D9ӻL|A'A>oގ^L"n){IN,E|x/qݠ(|MӍ'wc |Ѿ&9xdpD9(?/?ē"똟~!ϷC<)ēI@n aᗛyT->r/O~~,d~~=_$a^`Ie3?;_u.dܦ%6ʖ*q؊e?oy9u ;|(Yq r@7$ p~%pJJߝ67m!8>6p>*ZPrgk[ 8?terdC>_Vڭ5`HBF{?הq~IE\?8?W97y3 3u<8~,t 2 |s8?0WOQ|oq޳*.8=w ̅ (/; (@>?r؋@ Q.U~^Szv`ypNruy698?x56= 8e; YM%ҫ?0HOX_ rBpG<{(_A|Ē(Bo\%'Oz,{"=8[a a qK?'!vϯ7Yƾp>mMIaU Ovu |^M+|_Ӗ%ڈ'e|j?6+&?E>rBU%?ooB=ė$ʃ&7fŁv_G I>Z ~ 񿗌CoS0Ώ88q~~מK(HҺw-ȵ!49v~y)p>__q@ nZ90ΛTCfp^/>0AU돠?vW K|~ܳJ|Q| o7E)k vuWo9 ﻯRo[DχUO}${Ի )mwdM2/FON@>7ϫ!~]ry(ϧoa|:}. |%aukyg-[CԇZ>g@>y+X>_)7h]WWiwTΜ~wW>ԜX.>if_~{ 9 #ڻyYk%F :d9CEMUrl| ϋY>_ ,S%T C> ,+7(J C I!\?-+ k^,o5X>̔$,|,?, 1_砕y< _xv@/lݩGn9q==~rh>O!*9R>Ww@>o |cqۡh__Wc^N,Z;|$ Ob܉,_چW,O.|) R3ϻ rC)mN$Z |n%J|07losfaRn3i%? 7E/D)P糣l r1?oxO[)U~r|+Bߦ;0?z_>uTk|Nw`~>$yi?w\K0d~>Eݡo yюz ^D?a3,Xi7Hb~>bΠ)9 'ɿMOϜ|J2bwE;c ~1ѩ)(ƢО9Srԙ> /x˪'0<͔"%t=㛃"m}GE2 IJׯҿbVa$HI=c7 g~~||3wT}t*@/GC96 ɊoOX۬.p_79faDB–'!):oƽ w*2?_ ?1Gm|KJY$G8ϳ1H'䏫Ҵulzj*u>m-,iwtB4,Ey |m9m߾ ¨maI_R[IgMLO~ԸA&#0^.iYbYDI + wV-xZ bڧYq rx|n4u]Vsإt68W9ڔ=RJw2$No?SL.~jsJ@ם8wv|4Z{[u,.yO:n̰ʇ=>ƽ̯}}wy/Wn-{͜&w2E_j+^>5b{M34t=\Ft;&VwK9j ?mq_q-F{n(t2<Ǡ!9) MR ,~GթL55G:gzvϦ܎*rھW`E\Lsaa?ߵ>GS>F 7{&:Xh̕ 5BVM|qo@8N[0Sk<f| \cJ?_8y;yzݻI Gxb)Ƚٜ>kW{v6p:wiމ:~#q=l3yj-4nJ~TY'˿:{ZC/쯔Oxg?}fk%?oSϗ1Q7HCÔ J~~znNG=6oXv?M{NVMI)7D.*zra'#B( _D=sϛ82?od|W2?p"AOo`^!γq ^30 g~z6b|ާa͠+y|?m{E\א?leCLw?Ǯ~>aʆM*y|oFdwD\zmjA>/);}rz] `U;9nFq_~) W 6o? 6Ы1e~mC@C&D{HG. Vly,/K!HD*CB혊~!-K<~C!'}CHî &b~2G 5jA>~!avqqcS%BqEE3'?з |v2#?9$M@ޟf+~k6'vR8MWvRN6{_nT=;ZitT/י+**vRgM 82>Mz(a )qK5BS| |p5 Qqw\!aQИqw3yTz08_Kr"q>[)M``wWFz;)a{/+q ?8/o#R 󳡧#T|S0(1܁q~AyyO fy*[o%+=0ϫb&Is:pF8tG bߨ , [~OxcE{Q~&p EAЃF=*IZ|Or ?@_ ~`| { `頇`'/vR\-Ǻ^K?Lh?&ڭ"".lo(!<yg @ÑyD"Űf)`X!o~.`Oq?hʟ߇?ڃBޔyoO*y|jm_AN[PՠW9aWyOԿpu+a1J}<%|#;Y58(zsU}8xByJ_?FJ@aw1<}PVMg&>e Rn/.䥌]0Ώ8ۗqoU:^Mz2Q8 pMZ@F|a_ |@/P|3C~qNwB=Co ~{? ͇xu9/;r+)TK"\~m/c ? Y:|$=?_Ja Jby޸aǁ+y^{pFy]yeE zwBn\Ο=zkG%A_N/{;C/61η aTumrJoz5ZϨZ㋔a N)qQƇ{ 8e7FyRJ:)ݔaϩF/HE;)QoW8OEiϷ^w2-?or 8_8̹'rh~TJ+ư 3A-pZ떃o) xKC'!_⻭TO3|M!b?Kϛvm&<~6A~{4οhW9W5*}%p~]cq~HpϷai8_)yQRJRݺd&=ojI {^_Os'I.h *]+Y%!jYRʌKk='wHRFwvC;_ޔ.[9lfބ䯽x4^dYpx`1GL-S6>'rNrI#Iû0~բiWE:'GQU%(6R؅ >/E<ש:: 4jG5W4al9xnH;.hM N4h}N?c>E}]Ѡۨ^-ltA}}O w>7}WO>ofciI G"G ۵H:O%?ݟlY,+AF?H3ϵq|9~e]'[b-0(C# oSw\zwھnj>Mۨnj\-](lNڨ:bT(뵢|M6JOZ|i13nWWumEAQQ,T)~VPRP LTD0Q)."v{<_ٝٝٳw{%_씅~c(~SN?/яydxO(Op;[*^wrk ߒP1]O˴y.z_EUeNˑBZ7{|^Տn6 o[DA=|{yW>`<M*mcfem~{NWl:n꫸w1Gzoy巩bo}z__R^ ڬVl^vtŽ?('uAnY&[weV=kՓMh3^C+wb=ki S.l\{Ǔ<^Nɚ}Mwes߂,728Xy4miN՚(ɛ3}*P8\Gއ( Qr¹:N̥ FOYKy,p5k)d3>o#^ Ԧ˝q1\U?knq=5TMק.3FEg5yZ߂2ЗL 6M"ŽeO ϱ`./=Xν֊W7+> .fa9\_:Ϧ9ܭ,ƽO\Z%-4eڔG׫Ɋj7َ~?Wr ժ۳,O^tjy?`1 ~g՞mί]ӌv|yҺ`<;TcAfߪ'ѨG,krZu}A;P{Ê'(Gn-BIK|veM[FI!&;uF =f<=aXμ9?2he<;׺~z {6Jc<8(ù&"v6/zeej\P~E)єB~G kY~[g4lM9N xIh-75ޅ<:۠aƼL vCZ4[^(̼u{B>8!4⯋.P٧Yovv'fFtu n5,V^ F\MJw5#ќ/h;7XXجܘ!j>H;[bXzDC(zMu(f)̕hrnMׯB\~:Nֻ$\2apbҝpK؈z\Fn{s=u ^4̭5?6r.p:4?W6#M2{ZǏv/Pj.ayIewgH VQ#俧 d.=Ѥ.3Q4ԍg r;g.wr^WշoqȓTjg,1zWmƣ(`i̟uvs~M2y1w\!\毿SOZ향sUoVk1=~*r97a|k>|zدq^y7W%l4u2~_q|ښĮ>ѬxW7Ghs)f9\th,o[F}٩oyj{f}FQq܏77@/Gn+v\q7(k}koaʿ_m˻Ԏ) a>Zrk' ՠ2oU2uK/yXLCqWo C:vFøEڌ?)PmӮbwe\mK(Y_Phtc |w 7M5GAgmڕ玜1"7lxiE+tԿK/GG)N kofUJinG{$*mBhAkgnBiU{P_?g[UlX±BƯWq( FR>}w5=jz~8ǃ6 lv ߍ.KaYgŐ:ƍ-#H9.Sq| [!dxwC_9iኼ/Sxǒg\2)},>~D>]}'qCoBSļ7E=lW81ßP+>Vu~xtKVߡIMKۮ$BϓV4fޗPTuI(׎uk{uN?Nnb-JӪT3|mhyDUR˿ƆoI:q;hbOy\;#e^o҃k_9v<9 `{9Sb^Gdܿx;LL ӗzQ<7luuP~S͗a){mܗ~`ܨ2R{=*rv)_D9mkįOo&F eDnglJ9Rͣ͠k5B`\y>V w#hqk?E4LEue #JJ#uW7:9-=~Ű4BǎMx]X/=SnnGJq́ab_9A cncZ#-6v?g[# 쯈f(`CZz!sh]iʠhǗ 33֗ \|sz<%]/$e6yzDyu-[~%S'- _+l|ƍ;:=f\)PNgRRf-+{Dv-IokcʭhGMDJ:jֵ=&]|d0\mʾ<_#wS6 Ӯn֊s?_pOuW61,񳦈n՜CϧϿE$~~-o "J|8$mKg%g@?o>!z?rցzI $l|nK|ߒl(yKN/73ۢ#1OM?"=Lrεfg C,z㲘ߛK+3D+gWqyMhvB+q}Pp7%7c0.lW'MEfoX["%~>yJ|O[,,GPmqPej34OO~^η e`-l#]o@?Wb\Jۛ`<̄q{jaN+j(Z|&w\IA?i4oH?_ }y cm{emKx c`g s;6J[[ nwO~/vv GGW!PotPrj;Kz1*p(,]yO{gxVsm5Wø%K>K[#yK% O?e8ڱO4 <%~T k??#4+Yxn QLtK( 6z) eR^DwojTEz7G'*IkT`fn|VW7ҥsگXTĞT0g'̔{<_)|]4Nݦ*py}w*,ػrJV [\^1y͡7d]=|'Ch~qQ.daye۹zV`?ߠv!g69)Nd\mwdq)Wx״ײ-7oQ_ /#gM }nn|䋛D D|qEv>qSvO ЮCABEQTx{g3T%8!WP!U/6 l/8hSty ۢ1Ŵ,ti3;M8͌,0mS?!O 3>)dզy6w׾&-h Wӏ0a3xʪ`]$>LJ[om7p\;>I'c"7GG`=v39G~<رҐ)b$be -:\?M$oE{~=>øa~,qWя1'?-ʥ[n<3p<g ڝ3Q@Y -/T7 NA,Ҩtͥ{Pr"kmR|њ}e,C￘G Qb~ OouQo~Q<_oW'ٞof]篿ce{^l#_]yjٞxlϟ۷F _l_)%e֔c{=n|o{=|4oGay/6 =c{kO< f{:R`b{~.= ??QA{lϿ ;:?=?5l?h>ٞjb~8?wIJ=cG؞t ~: ٞ/ {>y?Xw~6)ػpl$Ž:ϿyQCƲ=_'-؞zy|؞?{2{ ?-u[q_?g`ЏoUٞљc{~R {^=> G=߱lAlxoxMyc>[䣬4>YF "1"W?2v| 7<,<٘`~.NlϿg{~q؞/ {~/bxr}h7 O⾨^Y8N68N[q='lj {/-؞| -[=/ťK'%؞/=]W]H8fU'Sm$/-o6q8zed:2Ko817^Gs8Q>&ٖx8y8fBZDYe[3Ϗ^aq>r/|i8m88iwa8?  _xoF=<%؆~9p5i_0S,ppVykba ?_m__7ڇㅽЈq~r=[KhyM 7|^3~_olZǓ7qY?bb8.o3{b_f9\xy_y47d?_~ 桒q^Uv oy)msrqb۳3&5PdExXk'+3]2v}5h{\p<WWEѾY6~khgw˿dʳd*mlbۙ67"C>S!~9w:|7پ>8B5ԢsښK(Kar;_iən'QQ(C y?ԩZ]?ݗ4d U\"-Ӥ^&4a`̑i#+yλpwhi?c%"?\nܖB[/wA^׍GtQ4aq;ѸJ6&}ۺ%0PF6v}0J >9[ӭdHܿ&i]ho7 Wr;A),`R^k15_k\ ӆ}.Sޅ5?tGf ݲ3e_KWy}=g]8Tho2ahxVl&mPpk,1_F<۱=QF#?ܿmп7Ap>\`?Ra}p| 3~wrXî|^^=WAo -g\[s3e&pyn'FIᲮf'<ݏP>0.Noq?" O׽c0go`otg]ꧢԭ݄ˇxת9x_w<UE1M]<2k-SG0¸1 %zW9n KuZyοzC ^ ]oE%Wh >8L{C1oTn:BZp"ZUJr8[\aU㷘dJ9Am*n*WޑyZGd{6Gٞ<8y=Hm4/ge{>POO9qۜX.o ry= +ؽU4=|.O=N?=Z=)XwK}T1:~ 4EۡjLgs;1NStΤ'W۫fަ alo=|D9a=ߕxV?X_Ko6h vpcxX{>lGϧCmRs \$ң5yryR wCLJGveu,ɧȓijot'?#ͫ#zI8&!u<Ў9@(囓u-zEg{8xpw1n1^)TާpMl ƍhzAĤ36qW?ԟyêǒ_ÅcRjWvޯH; (w2y:j`fԨ*f+p4b*I]f'Q[6t̪ސ*g:f;[d7^KudʖaE|Rהt̶ϟ>^1\w|¨O眕f=*GŏF>)D/֬c~u@G}<P?]zYǬSc1;};g~1;p)Y=XY~t̶`]1czzB3|YYucy*qgT9S@ocV:f1nЫԲYF?1}hoy 1ucf t}c3S?'ڗ}<Ւq֘׿]%勺Y֟tKdK9xV7 Y'e3r S$*S֫44}Y8l#_.vք^e| y`>b>@ZuzN@*Ǡ.e#mw?48q~*p~7p'ڙ8?-+^%5 { %j2-N`S|{Cq~CL{d!W'Uj_*^_и*"_+z&742ʛ{nTӣ>h^UI8 ?g w!2Q2?u>JD7_yzHyF~` hop0MlwG44NyJ8?z. ~Vy6:C?@U3Aq.q}͒p!>^6͕q#iLA2pE*;\>e9y;SӛFJ8?;/8~]q|-po$8i hf; h1\L$9ψ-%MyQP.L{5R;7OAǟD@tq3y KO> y.+?d |\9++~W]}v:w(z̧(g5",h(˥hݑ߀(Q?eB τ?(B~64_Qj<;$x_b+v/bP7sW|y>HB95F?J7XP)VR;]AS|Rf! VdoKA2QgH +"Mq>@Yɞzɪg${~ޒ|'!=rdϧZ }%{ޡcdWZF|Slo ~B>h] 4oyaߋhS 8FXkҀy5QB^jt[@yyb72VNGRa >O"z%A(f=? FƖaעy xOTG*6? ' ZWnÞ~=5mf!oW_( H-[.Frll`χb>7p~ݮ2?j\9 _sPJ^}%]Hە/ylefwO˼MxQΧ6r1H8o۲a_md;4p A3RxZoj#j[!o{K]f??;1'W"Mk|96OK"7Ϝ7i}\o bO+fA^2 B?"c~/o~~p2|&|_I=y p;pp^8b<ڡyƁ@^.X3Xw_8PyFF=䇽V8P[3O{8q FI+^S{ P|"ZƨG>3V>XgG]P6Bwt:8¿GA%xn8'/߉|?ȳ{^*v=g"11հr0z<0Nx>fjT#OS<#zm</ ?g yי {C3h?W|&yMk]޾hr5%OQL=dpgIoc8`8b;VG`6#0ha6p~edmuY'UG;HC3be{/Rh'E|RXWźN6xk-k`=_<⺭oq}9?g9`^< %p+~ ql\Gq땚䓺)y?7W<FsJ&ܿOXorK+G y-+*/"?pNGoq Я~r?_;L;d| p7<]m1?W0GC${pbS_5/eO7{/|O[8?m=7s燍kE H8p70*~G{K8yVLqg&=?qE]u p>q>,q>H|eom3wm8nAꟌ'D_{ R:{c*u5M~ؑoD*6!-Ap=gx+p] D)o"m~b'p> |S88oy/ZOw"K_K_Muq_fh+P"۱.mk[ϑ*}c^syǫ;hN_߱,SD)kГ̆Uso/ҕlž nD;D_&y\p(7Uق2+ou!]ЊuOw(a?r$g!`^gW!?8 ?W}͇=vU {;S#o/uvox8888x 65UyAi gJ8LأVu؁WJ,aܐa]|1܄)S›awa~ۯЋVW%K+?IQEJuؿC,T(>uZTz`muإ;>%QF`a{a:lwۡ?.ux/ϩ*uUy=aM|˪h^紓a6 uظ3XºR۱7y~>:lF^Pu/>j]7F\1#Xu}xeypyf:;~va6xvX-{mqL'c/Wxb"yv?V4u؋yv^uF:lT^- szuzx//;~Os^.qp>43- T5u라S3[ "?r0_;uXchs*#hMtv8?(KӔz?Cy܆A#ĺƁ۱6zkl[~˓ς??5({t_^=j:y;úuޕa}bv8CaO #I?,qsan^~גq,6:|:{'a`]\ZGauyVV/:}W K&}z*&TXjE %Gl|s L?idȿo%z5/ƍ:ttʈS8sh~Ȳg/iu^0̭FB%=- Q}ٚ<.\8amڭ;hos;~l;lmk+.xOӞb|o>}A m=˱fi>ME?@3mۭ>e3zr'-Yqp`G.!44Y/9Ѩ2j~ؿTil'Mqwմ憣›Fi1,+;?nr#fn%n3`>zQK-5?Ґ5SLi ci\+#ژ&[d>ПZ\nEް6\W^j\o:(u~ 'wk  X=lܝ(ɾ3Oג:&ryN,=:㼻4Q⃕Ѣcf7]@۽; GlBIf,[4ܷ=sCh<娏Ot]ĉ~|DNːb<@7%z'>8>oC3Z<żݹ%{{Gq}ѴY5;0YPbZmGy<>h|D|/x8= E]hUՠG&-+0& >%hg:MXOb=@7JL}m>p ?FuCyWB(LOq^%3aJ?]4t e| E:y}|wsBZ޽4 5 .ԨL+V[IeW]M~T{VJ<%W_(:D_mO~ & Nuaf|2Vkk 3 밍t.??&;*m/?>Kuy G eGO EX_?Jd/<X`Bb=zyoc R =ZY 06BqϣbR 51%18N1zŅrG,jH:6w.9˰!$Z]d^Gq;X7ϝm# 筙}osM!O:Ki~T".-mC*3 FOz6_26UN\:x mos밈˹f9NC^u7pr/8AO}%E#Sd~>G퍄,ἝKZ2·,q:,%'7X8~+FZ bP~0KV~qZ?;-77u'+y37:Wq}?y/h~<j~wU֭O}Yc~炟/?$yWq|1~hJhD-i ~x/$Jy3$'c;y7̎_V'J=BE<;VbiRW/38/ #5C3p^?$/s@Zf]szBa4a{5ĭE vNX}FhֿqRsPOS .Bg*j6u؛}S]?dlQ">L)!9{8Em]y^(`o8:5N38O8_Jme~|"9NhK}sBF}N/6k#I}a+I5rԩE?}e|7AJZIKԭqi8Oc~!{5֙Js\6V.;=c~~\vg~\8|Ԉ/Ue~>i(⤾D\}<1??p|GI2?|.'xnEIx<;[x\c ⚒߻y5#;0?; +'~ ޡ^|oo", {y՘ʼhB[Ϗd~rw?l|g_qR? |%#p>JEıss2tωq ~+J ;,ϧەyBmCc&sz::/\}~X{}pǺr̿~~25ĺV(|ܦλp~o K՟H8oX|䝼H%n9(awu& xص K8[{<5A-H8_籾2דּj=B p:|["^ E @q31ގg:0ϦJa` T{xP7yތ<8_&/绊yq 8 |f?B#?.8GA\G,1*bj?8ygG }ƸV@ W~ک71`(fO6gŜLy;s- "C0_K;w)3Gm~GQ#$ަ 2os?t]ߜQmAQLZ-UFƞJMڢ2oٯVMvQc~3]C_"Os_ɞ^s-|N><4x %t,XoZaW-A/ !:iM"xm8 |s6[ٵ+&%!xOި;R`^O_txUq+nm)oxq g1UQ&o64uwQ)|_yY`ݷH=ϟJ8_^ } efgFzpӾ $w~Z H8y [pyd~>l+ ~ [5ηguX6jǚ~P)iai!vp|oþc?+GE|kooB#qx_Ў 8~ӫFA5M~+t)֫> Og2/ >`> I?8+]دi[&kE# ^@ĝ`]' dk蘍1+^tJ21y#V;I J# x, Gt=S)\0Ce1`{VUW+ܯk~{K)avaw]/0{ *|5ЉUC@#~S%)߫SX.d;a{w=} /+=<8?s^sN8'G9vݣM%>݃:8?z7+*H8kH!|Օ='|o|2s`jo~+It<络C9Q; /oKčƼuG_At:y18 Gux5=9pJt:#Sy |_9 WsGPk6~ p7pПuXm o A:p|XXVҍ\fE= հ8#`Wia匂=/Ggc6o#x8?q=p<|k珋Fę3n.`hc^NboPH o8y#uw 6W\Я're#۔7t.a}od& hža5HFQ=U1p <_̃p^M?~W?ot5f%`^b:;#_;Y Bg_sËcY ywS,k{XgU?U H#(s}888?YĮM|&p8=(~XwEnOηw _8@M Ưp>ZRTϾRw8)987SL8̲*:b6J򪭌׋Tj?xY'54Sӧ|)NjQVRq;8旤8!8xOiIpEF|+qRVsT'U'5Bj39Nj+xVkUqR8ֽ(qRqRvqԄM8NjWrԘۼm8I8Njl㬠cuZ78@qMc9NjIZ N^qopqRO'Uq*8)\!;1x[8n9>em~&l9Na.IڦÖ89Njh=IqRoq<_+3F?f0o6%t)-]p>, ?x^-'U qR79NJW8) !.8ȥI'qE-`NvN/%Xs|scS(GS(#WoexM.'FtӬ~cqWڍ:qR{rԟ$jqR'5㤒^"N*zm5 ~]8_pT9NjX}IuAT}V8)l9_%nr2;IU8):x78N+T~C$(z$/ (6cRKqYL3v(մ4gKyuzn~+,lrO Q94r]P?ju|?մHa^B'N4$潈Rvi>yKymxN-Ni4^y pqyx&mh^PCh˓c pr4on9"$_24L+ǵ oݕ&I8tIΏzˡ=%%I8hck@lL~8gbOe{~M"5XGb9vK}W+| >ް+͓q8F!W(TBQX&aW}m7pI׌b~FX (D^K8yI8_'J8GŴVyN(8_ϥ*(Ϣ܉F[/=`{8pKX-|r% & {,X 57i7v(py=xS9P/ygo?q6xN- xԇۢʇo+COm{nF 8 Wg)\Ս?I8HAoEv(Ry3cas(ڼ!hW+45"uѣy>yQM'|k plI8.*)|83ٻL kΠ 痞Ƒ53bGa|WjϯhױdOD{-!H|a[|feJM/K|>|K/&uM?yEJ|}=Y4Sok CW>|`'ub{筊؞7wK{ [kXf{Z ؞oPu^Od{q ؞W#~9M{=ˮW-ӅW'b{~@\yy7{?y' ٞ;U2ꇠ߈Sy=BY5bd{~k0ElqŸ́{ *ٞ/l'пNCDZuYXg{ QCj7γ=;Sٞ7=;Zb{>)M>@V}\~ aohU">G`ܻT_kE9h6sٞi|rM+"_|W@^m}.m_=?_^lm~_F;hl&Jsc?9n=ŽP\[/b^y/#_ެ8<[{te3,Cw\a[ηb8ߟq~/mrc38{ 8q~U=28Ew ݣ%fJ$ƹo3$\%6WIGی&6y 2oSUKy[MiIGf7Fmy=˼M+=o7{h約yXg0ocz֪'JVoʼM&m\3oS96\iͼ1+QneF|d#63os.yѮ?m6!jmƠʛy>wmNԴ` y-(2_SMަ6,LooƼMV\_6nat^ 2oӣ-/Gpmno3 ^cF9yZm|"mX1o5xm|IT }/ Q1B nW ]KK \)9q ~?SOX?Tc&cKS!#T<,&6=<3DZMoi 頋#]=¼ |!|z|5qq0v?~oc }Gj6O'_'E '^Sh NNc$U=Aqr<|R7~>Ux <$?S8˭{86p~F-צηI)U6瑗RTk??qˀVwJUւY:||'UZ0_߮8_\*"/3' 3O*hzwͩ<#_ ziu<~W#.0ZV\|6*W <;x8?> GTcJ?`<9)¯Kʛ˾B<#Qρk1GNex'">- yq9irj9,𫬍8KR)Ώy~ ,̃\/vh6 x{Kf Kg.l>,,GP" hSbnݕdzqh_ ]V5pNq͂qR9Ы= :fi':ovï͘-f"'⇳gȳ!pqq98#%O/89*q޲g@W#IORdY&Vҷ?dgŞMwOr$}k:f#&OuZ/eNҷ77@ַTҷ9p'Y7t$=*y~Lַ٣}36g{зv#4gWy #[`<5oc _Zgַ[PsM蘹o([tcm ;xΝ^">N= %$^yEfV(DmhYߦKkی^ ψFy蘽FlfзY}o)ᣮ<#"Ra=zO/ʁ)nJI1>MrA?GٽwFYUD96oyF~WMo3ٗMOۤb^G\B)1q߂ |:]wnpc!mܠo}!3Ҍmvb}g"K%imc֐mZ&Lַ|7 з |%^˼͠w-G9sd{~rԁa/xd{}%os$ɞdo.K|UַٿCZ0o*HP)kD<+gAl?qzIH[ a+ٞw@^䵁e{>Ju]= /8/z=$h[ߛ qRSos A=@'WDՈQ=pjwa@f,쨣k >LUID=G*%/|Su g(j7Jt3WE |qTqy/` ۬o emNn{bg0B/F̷\+U+? YOO;w-"O+aS;7aeCZ {;? y|5'{6mw9{>P AQbn'XYGaGܿ|:sÞ}VmVžG\ZVozB,Z3zxI"ٞ/9=F%&8Y.6Q3r>ڟz}I8?L+#]E[E=Gpa4ȯ K蒩.B R{0:f+n/a ~W5 ``P=q'/>ІnWj0?zBA5? mڿ"cG|Sj+n)yB7#8^f6M?b1Qض={],/mOG/eFljDfR-FzjʕuI8뒷q.ds}jgFM Б)x>W=Ы,} Ub[_ˆ8 8}iYUySb8r5qԕ,8CF|$aE7ob~= t ,Η5зzAK >Ei f>ޯKxsqĕ pv|rn4W x%#5P/NMB#\e ]w!Syg\zk p>x>CždHc=Yڹ6?OZ"[.u}CD[ x<h30|Y|5<7ۼ{c:􎴸Cߧ+=h0|>p 밃w\D;qr&yw :M$?V(wUdblϏYFg]qw^e%2?ߣHQMJ8̍Λ/0Mmמ'~zBWRxHÞw yE#D`"/v;୲'{G2Qy_=#xJ_|[!tsźy ^ {~=oǯ0ϐv{1ΏK} ~|q [<[WϏ?7F1;yBW%[:ejwA{_8J>%h}磁1.y}"PlK|ՈfufOd.^6\To =Av9~W u6/eU?8on~-aÿD] /t.y{|(y.=?89bE@sR,?p'KA/>W,wΟo+`ϫao^;8_89yI3E>F5A;=nu`[n*xڧ/U<֠ _96(b^>lOB)RYtYv_|ZIE.+KǿY.qEяh0~ho۠~(g԰>lgPNuⱽ^7R{M&4dJ= wC6>S-W :zQ5D~޿#Сjmln<K}O-? !<㸱UGٗq^!ѲW)붡vicg\ެi}3F5S'ge)륷 JmzŔѾfÖQŸ{,#x'Jq{#=6CɃt^R.ԗ'ZQrύW׎)n1~(y&N9N+Rm˸HMO'ErH If>/nY)ZEJ:bWbsCit>?n;.8e>v*4ySK?Yż#8.wrz<Mٟ?.ū =n,}M3j]\W jǧB:'E)o'4R?Mg(yM~Yu`O.-]̳N`X q_p3I).ú Z=+ÆӬ}/4Ο~^xo_>DWqc.u}rvMkviXî^}(EߠSg(ikOs(Ai8 e{p?=q~c݁kwP] OgQطm](&WCCjk\Kav65[V \2;8wqߌ(c?޷mA(E18y.21~oa(ˡr㝗Z>↿o3"v: MxV>LjٲId,-N4-D;J#;VxʬSnST/5E-S>mCrsW)prSO%vTAi}uXiuN8- ͛ꟽ8>s+'N񤮉1źʧRZٝcCgQS)|J5nx3\%>;ڢ]?Z]5(wן2%?f]/6(ri*?+Rƀ+_,@Lhο~jg+ܻEڦܢhɷ^ß e 븿\y+(B/L4oCH9oھg 1I.iE9euӆ>D;(6`̍%yvjy2? uG~/>0彆}_l swA-GҎjZxZ[;sۮ:E.>im4G.֯s"NYm8hFB |}>Kq<@;(ԟp@2oz-z7)4cyyy6eIv.n,O5KyO/R@LSz~;m_Kmvx?1t0{+ ׆yx}0?F[`5>R*'_(@MNqKp|8nϱ cPuv:W{{ riS|wJ(s堀ݭL 4-qsop(qS<_z8yg(2nsm ۘR^9֑3+-SJ|sf晇q?u.RRvN鎅o(ߠ/iF7UP+I+;I+I(i'e}i jߐׯ㤜nn$I5?rYW:XeM-)NjaxQ'լQ'6e-1~:yy9Nn"7ً|jo .?89N*ɑڭ8  AqRWn_-'Ī|wQq'9NIG2+sT3*sT}wQIe81q "d~ x $oGT}I'U㤮 N* \AԶvx ygކ5N9NjB ǧ/D?~!Nj+IUZvWq'u IDIqRc8N*1>+ S'Rר?k9?PM!98)8' 88Ndk(8Ne8^pwoW, M2OSļ4"ȟn8ިM{ǝЙ]8 98⛪`j/ LkGQKo58)/{hg|}yUqR~GX= ƍ=8Nj7IDI_8E'@TsށOu*luwm+|*t6|~.ޡWG.rxK<S1ƽ#*ae6KS.{%}s=si~E\4xϱ~pSsy۱5 G|c6ў8~cЎn7xta1ćCx{}EUQ?X׭Ϭ/܎QgGX@+VV i%g2wM۰*/5p Jg\$4GܟF)A:cq{Pz|FzΎ:_Uy+OMU鼦E޸*YA3wi0)V_Tq?cU%m}4}h)jeD-ƽмTw M"{_Sk`w&C˝[6+;>YvήOSW\?g#~|]cs?71 {Ħ&6_*xwރ]bbȳ6kc--۟vJ+iŹ)nl4=jnθٟҥ-M{31Y}:1uۅ)ǥ5~a !;6ŶMv1-4cT'}A)n$Mx%ӤfH;/u(urk 5T>?ЋVx-V%Zؾ?}~XEiӝC&P̵2_mZdFQ[ű#O&UEtȥ@.GHF;ƴ@*ԦYwoSRώxBlLC5{or՛VzmK>> =udvTZp(kPߎVoyЏ|>0hڀk/:B{w-RUL Ŕ9Ms#Nywc ]poǸ,jM)Vfij_Mp9z2- T [ˁ\_ſ킸P۔z"oȥs|*S[F ǟNO2o-v GzRzKgSTOAC l`&Z>jN5vyh\;ap>n?qrE/p=p|mnDl7'9f=1=u4|wϼx\=N[r~{4@>ħԳ^n7++0ۣ]\x}<'}EPp }ƍJ—m0%]Y{Yh -<$`%H >C>Ӫ=^т)̦ {MyFN~y챜$pӋ竞?,b'Oɯ2_e ~_eÈgS$J~.K~kfKWq>/UFi|C̺B֫uWY{ɯq_OOٯ.~OԮFٯ2`W1P3 q(YΎ5۵_eWyWTFܲW*ev_h?veKMqϳ|O:Mgog;E\W9S~nvdQؾ.Uz]8L;ʲ_e_ϊ8>mѸϺN1a.׌***|L*/IgduE_Z᨟-U(W]A~N~GdnJܚ[G$ڋ*3ez~-<ٯJ+_eueq]q~4Js3}uBx.~c>~qvQ:eCpQ?_|33jb} n{t69Wy8\K x⹍@Y̋?ن%8>?3n|*$~m~~~=*{{*k7^__ejdq H~{qTٯruuH3`i] gʺ)2\^Uq`(mӯ/,)\RdUɟԖ٘Ymg8k/QEGdž/}NkC\)Tjgž#}}z ^5▂<~_G \fȏȫ(pZQ5Zm ͙ۣ͹BC}K)K/_s!OM5~n4qJn^էy> ^p(#m  s~+C# /?rQ/'uZQǭ` hKcNZmCQ :P 9# n=rn'`smgYKB_⺞8lH3GGYFwqnX#xB#MLvi_4d5.1$ ^R`+3mn>`|gPAyY9#C.Ui6W Q ePE-tdjD+:aƗ~_u~Ko-5PGxnpb??5i<^87`x$8֧\ZvM h[ٺ#[5RpTEY>˫9 |c_(WG~[K߫ZЍ[RGWzLM nDͪ8A1K×+_Z4,v/OX|sMJv܌ZRŒ#jtGa;j<-Eǹ緉?F蓚.S Ul=}޺?)`|[?rn[k#- 8R;yd?4z{ѷChŝqq .cM2-zLonPNد~mrm>EؠWh$c7?AVev}ePoD{cuҵ3qapY_S 2k\S?~)֠|_%A^M E{3i򕆇۬J{&>q?+h|#_j<1yHבsEZ"}4Mcue3e-o^_wo9(pUW_v̈́ƿy{L0ciq4i@.nCF[ـږQ\|ZJ ?'zVR,{Q-TE_2{3o/ 9Wۤձu7_[_m~a~8|ل~=pG3ю뢜9ig˦_܁A PVC){rkl3N d1?Si{)W ,nyQN0[ۓQHOy؟ʸK?zWe2x^10-#"=w䷼oh|Fg_ F<;|s[L|"W̵]u9&+qќu3ܣ%q~~=gKꗩk޴)u܃ɚc`=Ui%ްUu>")}N@5IS$i]uCfS,9?l cm~\vvmWƁ_9.S.NҭMgLFQc?]tl=ּ~ޡ/-s(@Ț¦h2Qfv>},||1 >j.M=Uhyho_zB/ˠsmF?3ѓev9|*nLqFÇw=U˗FҧLy"*Ým_,%n1M MZ9՛xKp x.l8=A\vMƼ qwn{ͥ5C6)uIUdjW%7-pz1-{ǼXrkͦ9 L{m\֜L1k>΋9˒ےu:a.Ÿ]"iOS'e,c <)ox*W`w0=o~;3u}o=Q{{7aA+?cn;]R{ZYЮ/(y)qܟi<ck;)`tp`ܘfI3M) %k/YK^^|'zHo[r!)U!|7=\0MR>m`ƍڛ;TӾ|ݙ"4syw/<#;K|9^"I ^:f9$݃ӑY&{Ugd2?WuJݒu>qkG EutNBm^H@L %=z6Xk ȋ̺Ѝ̆jt>#~yBOQXQ= ˺>t@3u+?'zrߖlϩwү=8 ݃]= ݃8=ƺ q6:B䓶B^11"B:UԖuՇj<=6YrAt*B2ÏR#t OD~ -Q/L)tQv ZBDǡZKMxo=݃q3X݃n}зyF'%zjk0t2CjG= QRS6xΈnF>dK ."Ntl|N᧾~%Qm7~_W١%r/}=;:ygPp85g1TQl4C80UA =4UBL=g0_K8ސ2ٯd}W[bYǬ//](ۼ rdM$зoe߫zY$e7:fVqbs =}Wm=|OZk^NM"mܡoc }ЫΠj.*ަ3'yXO7ށq^We3yԷoNu8/to3q~"TTг ;q61ίd? 8v6W` |BeN׊dz1|؟'go38xGVK;@:reзy }g׃U8=r֊ =U.zN:Q/.g@*/+{χLηö!*EޥEt2AOHȬIt*5̆_s^WV<ܮ9 vf}׊|< =O<.9]DĺX㺾{ͭE g%xH8Ы3UZq~U<JZν_ 3Wb>AQY70 k DUq:7>ƶЗu-C_q{ e݀ yˀNp~2;8?R:sA~ÎRf?yEk7|gMr'o o@#tNP_sY_E5t jm|իZ?<? 8ܦ(}_j"NJ<"O\Y ;Vy) Q|Juн|By]d^=_G~bM3kL_c@]ˋW ;ND>aܪ2>8r t.q~z;|:pأig|ysy?rC=S _5Ո|8N7B~P=3x^B2ۻW Q{]"n"pQxLz_?YDx~[- =BU~:Bp~ p~(x oFG~={Ј|}TE>)hFc^gOJ<Z?.:=sKmy[6y?u{|8?zkk ́=8*Ea4쳭(dwNÛONm]gp t{ֻXcw^IQ-4VgrP=rXݰ_KQ}*T=3z_I1U?9QRÁoZO]+8а~kz\\rYk՞6qԟhҞ', Fsڭ&f/Q^^lM8"/ǿk򈷫u*P~4m <8?Zݼ0 y}Զ_#]v&ߞ)GӰ>v$Ku{]x[r>_V2}gʝiV6чg3zQ`qӍiWDLa&t7Mvl1qR~6{yލ dd'=xd"Z^R{s滰y4ןԻRiA ؊Iw˪b˨5P6qM&ѼF;`܅rtc)-u+/w|CN!˩u֖"N:v2(<+K>)͝ƫvZy9ί0[ӈ?yIT8f١vĘIϝ4V൓\aՖ 弁%efPQ:/6*I"j+o[aqR-JɼF2?b9ԒX9T?d~Ƙ?=9pUg^U}os|+ l ߩ.Ӄ`{x \<#煞xom狠&ߎ2e4"Ϛ/샻K^iBOV'C(]gr }<OPVa {ަ-`g{| suC`V?yFTZm`c]MSOyz= |.B\{L9m8oO|ZkS(ž<#7u=l/F?a| y4XJ~o`/g|S<"'WO-AS\&o?рQS>͡y96,CgGw]'vݨ+ے|Zn Ѩ7gm߅FfQzyoC g;liմcmyѧŰq=Bo a}lƁp_8xWqlGѐ5SҌ;ҸFWjU\om{5 i?{nCvF?c33'4E1pߟ9Rf~uoH3Fw;}gޭIj3crySzYj~dBɛdoO81o2'q |<ٰ1[V}-Z<\ 3@]F_{oVeS҂݅VD0EP@ fE,T ,,{gOs]\7bV>֬VD9JC*##+yYĶK&I4"VړW31569֧ )ڍ}Ahn;ڷ27GVE+댇~ !Vkѯ3RV kpH_یϨl>r½F¾U@x5*wEp+mEzOoVrcX|r7ɠ&K~lH;sW=ѓtDo]?\|$\M=|bQtm -iB-pd\#M6}Uc|Tz>Ur0?t۫ aD^(2!p묇= 1rWJins!ϫ^ظ;N+W8JC v;̚7J$v4I}׊o NY3ȇкT.RIa]_PZBo_?Gt16=gD1QJ4!EZ/EzUZXqsS}~o3c-֟f%۷3/[o շlO26+_0:Eoc`Yyl\lf@W}w*}ke6mT9,Y2p66l޷ a<]Ї|&8mos& zcI6o!}\}طfwfZ޷G޷s<._зK@@?/m]?ZO^aF 簝o6(o!c5Syn+介Q}sطy} ی^|6W}360_[H|6ߓL^!dr>{N-vzT%ӫ^IՋpwɕKdr>pfToS* kKaq290Ld9(K:r~, ?/TLLA{ |&a9rG.I ߘVasg 5 r>l*de(||[CC/&5rh/Ia9{Rg׆o}π Aor#A$EЃxU%^u'`|җ~p'y#؍e9 9o9r}2%7/E)I?v E{!҄g]tJw AK7kdC?8c!$* :-]vLsH }R؟ m:@_OW P~Y܇:vib{9k0}!GBΧ*{Qy/@},+ M3 [b>Jܾd~GH&[?vLkdreM9l@DLC.yl=:u[۠W9|d1_y ,C:)Ix:rp)"'z p[^%Mn(],p#F)&҅u5!7c=9 9^!C wc]?,EL!soȍ4Un=9%a /r>%j,EX-f9r~WUH7yܿLF^<+^=N2pp?Xτ g pACyЯ8𻊄ufg=LgG_A5:W yk ~I{߽i'؋sTcfԇ 9`)Sa'XG:ϱ.+<\ WpZAໟ(`=~\@?9r개O|rpMУ9r>Vve6Ko%l* d6_ZHm|29eTw=xL۲}gr~6\7hl=?7E&m{?=4'?@_=,ܫ/q;#Tۼsy#c(  8;N4|Z{U5 籟#+,;:rL;t}} ލl~C.;ABoHo9?|FBWA'U @^ CЋƾCS1]26,8,+[`=y=潠[2a z8B?YA'O}?~uPcRhc%mno}n}xC}ɸg{kπ|܋{?ߩɸ?%|N_;MSN ֱY} #[[9y=f~%D}7/P#>eπMXvۀ݃X߇G q2~ %%}v]zFiGDZ!OBΧ7z^6'X?O:+|}yWa={@X7<]EUCUN9S=$dZsG9Y+~-Φ!u5iW Fo[l؊GSc)tV>uE5-Y*. <5ڗLSMn.4#][V4AGGNn?^s*"}+^7XiU-z'=!foQ<2 onC}o=}9_(GsMp;((Ivzps [%ó-kb\ SB4e&E%Zl>g(؅ۙl^+4ZuE}l4$W_wJ]D!uF[XI>m\WHG.R᪈“:뷡wh(c WC#\hݢk(ҪwMFZ>"o  %45+zQmjdϦ7&yR^ƅ"n@11C|(PRxQQRSzCvSg{〻Mvc8Ď:!1qXgr {GGQͳb藵G#s[?։+l/Γ-C%53U>GQEq?G098Jм"o._-g3ϫuG<ͭԀL=ޱ]w\*%vAޘnur4m*5 i=ڊi}j"#FZ_WBn<^U{4yƤ2GuMp4Aܸrq9~뮊8EIב>aq\JnZGAֽۗShKEJ.{= >QZ5S|2]16׫}%Ωdѫ^DzΏU'QOyB[޼BcVyG3A:EFHɨuŠzkQ訜ǎ[3jhZ+Z1ΪF^3|Мuu7cd >?8I/@>h0(ʎt6D=G,%OZB9=+\3ug 5q7Y丢= t&~(*r`F)yis] M ֭`\vUAѰ_x್<, G|j~'ܬ zR݁l5<ߺSLF sOׁJrvvx3~΢^dquz_ܑ.B+u;4[63zp|'hrh c}MAN%" 0}l^tPyzcE՚W_뻴/Fo@1|,Z=fzXg79[g꼔iTر^=#8(f}QC;& >1@.K >kK=A@_<Û!hZ :ek_Z6'u4m9p|5e}خx7x>d@a.:a7=*dN Z}ܸ (zm1NGZsx H56yʋBg\2%E\TbƝ9͵٠( 2M쯞C֦Fo^1e߯cbS.M~fkMRx@? U{`}(8$⬧ur6U6=pSb 4N+dn'+}WKܟlJ>tQ׌v?L?_89WkxmwpU-[)FW{Lݧm[wV ]@: hSXq̻e'E}F_NFQaڢ^]cqWrдb҅p$+UOy4'Vn`Aѵ\.;1w2|~NN?UVXg]93׆(*5짘CNx]Wӏd SwA>5;{6+~^>,{3aL~ m|~k&}m~K #בN9e Z&*cl/kO5[p#yx}#]| t2k)ZZr7X<`l+?e:(FRYmMU|4~8Ilf0BMr8nUlnyk1sSށ&1nb7~I'?Lw| 6 B.]BrviهD. S|n;gչYA8>mEfA/iv4fNKidb3cݺ: :-hCW cMGq:cJQ"wQ:ȿގ7|2h"؋Zsɜt8nMUlZc=2GSCN{mClfHc?*h 2(W+.閡q񫑾 y4#hB͘4U?.C?wЇ? |"< ZzqG~ೠ/yovY7[W5f>Cs!C-h7!Fh9|QGp|=qAmZj+)︂ts-ёYog$w޹o\L^rP|WQn&Gjy]9Yfd}v1ygRm:?Zc5K1F%3 c\BnDF#KDŽW'='&6[Ӓ_ks}/(0mk޵qgzWC7>'i+ߗnw!YoLmz,^O͈ӯUNtR8]8rCbq4뾈!~F{grx|IWdl:C.$ܤص*o-ܐylEIׂf>{p+㵣vW~P yVuxښ̧'nRcsOncEr3~Cv1lFSv3̔iғ㗄QDnݡv{Ofh3}zf dާ;Upp#E6k9vKkQJ뫒s3LpO0nLw|ezY gi00/֣ݱ_JxA~ƓՒ5^(/oG<5 YJc(jy#2ږq6}X#%e{nZM.gŎ`{ދ+1mm~Y\Xy /I|"ϐ`o cg3E^s_ݡwRD1z InaY[PĭN3MhǞfDӂGE[mdjq^/iA E_}Q;QV|ufczE?۲w.ޟ3{,ߵ[^|)q#4js/xt6ΘܻX߾3 lN~I,}yf< Oӈ\Wq:uȵ®4s= p}mY ELU 85*NvDAiB ?9踏K=Fkm/VpxA][Eʒbz]uѵs.)QecOՑDo+_)JFgs u*0}$(e<(r"iѹ1%E3MeɟF<s4b.MU,[:Y/ {|8؟9WhF妇J4wIo9.y5o4c5Z͓٩ 's{Os6P0\Σ5^۽;Z.|Kr.XZdNK][UD,\sUɜ,Z}i/l9G/ޥ+2}ZC{#t XU|R UTP Ǘв. ܶwW+`~|!S񭉹e4El<;{ם<ը\tAo_F )GqogR>f 细q8>񻭙~zF:s6>Ys0}|ld?)եM[7/" GVN^@ na(JWߝi(ŀv^y6&g|XX ދ= r{4tjߟiƼ}n}4k?JgUG0z3_@}k~ۢz*Emh`p/yqQG<|6W ͞Utk/~hZ4y_A vj!4z;ПYnL竇x}ϜXw%g69>y9Ԡy+4jC>ZFčM(*^ݗWmxGtwuKT>^7]gdx2{w&lݓe|L>7K?m }خnuld:8îUP'Od7wz Oo`!ޯp=? 'O^ý6П~X~ '؝L؝ki٬?o_z˯`qO*s?ǡ?zY'uO=)'{x+/!'Ž2dV,g$K я((L#{orgGv =L^/![ > zjП|,;A_>6ܓpO a:f_ܞ8|12: $?]pY'Cٸ'? !oqO*1qCHߍqڟxR󗦇de1~<|n󚻤'=oԤJRG]f0AIjmy{7I7 EjЦ#tŨ,?@AWp`s`* :u!zlU?oyϷ`q*۟o8rm/|.ē m` Qn%3vNjP??߭!>4e~l~u3|O>cYl~;u ~Q*, QkPpc4π/|}??σl~$+ﶜϟϴ/"۟wg3۟p3zG17ҭv!I*w`U 3 ;/~ bc l>d۟v^t ѾumNh:n>ףD>ӽ҉v{근|Z3Q/6]W575k'G,UJFfQ, 's>;*c|9F~DsDF}N^z{ԅqcOMh,ބ漼="M&inA~m?'AcNntIi 3')hcLjE6&0=>D 1'׃P~}4Sͪ 8<~1Ж\<6WAGo2ɕNx^Mlo(IGM)ElroյjƋ@܎ʡs!wNF8% o#% 3p>y vāO-M_A]GV:>^4bk&AI\L= y|}CrGUD|Onv$"~PhTYnG&aO|U73fwY7E>|f9|:^k"9\mLiQgb>=ll==gb]ؕv$stuu5ԾdEPz3^ϗ.鵣{}`kہ[oD7صFOT Bn%ʯ\ehQo7FBmL"{N5/.= u5?>`)Z+^nODMrb{#[mc?ќVwVnn@SW{hYZ3O6Eڔ*Hw]Mb-wFO}r[wCmڴBd6dmN*M3isڀ}KQ/]Nߦ5-[ǚvm'd9 p0*1rZ"}uIMySD 2 fy6Yr])$첹N:85kgDs|gr[]a*єiO.z҄ˉ:'єUfnw񯭀.o&>g4&,b~mo骓Q3npqAa4fW%mQk.F_VYDѓ)ϊzmclFR{1o7o 8ak~7 PdSmro:!2ָ"ՠ:D)L֞’;zmtFUyk1j4W=ih$cp{["|—~Gmq͹iSWy>? |>D?qQ|V=n&Ixlh劺c褱M|hB>i(zs;ߕ+v-?}kp^{R3OmCփrC+7ucϬ}LFOa47i&|rVp:jȋiɫOVnŸ`!jU(OKDj &zsOuD 5XWqϔ#} mu?n^riśIzkgc崺ixeTV&t( y(> kP]r" Zd_juj5#a<悝=\i⥼y4cto=ɽͦ]6L&bDzBNs{rLRX}(α"M/=͕ .b?r|Xq#76ЮO\Ho ͰDx6Ө"%u2Ih/36ckQ /Ae3}lXO7Pu*1(V|pT¼ڌ|F>XG?~?˰ƿ"<Qg}Ї7Viw玣%3ӏ>58lZ)oh29f+~_oy8,{>О%l}VA:ܨֆjM+Yq>_-~7E~ ѻm9Jwu ]}fciΫElo@ϯUs(o׈hDf6R*[uyQzޢ+A/O:'#ztgA]*HazJm:sdW+smlkʟhasAEqG՛#tzS`kuDͺW_ mkp+njJ4^J+=# EKKvnd~3DaW=+b|cW=|TizfE#BJbmfۗvkOD&}ސUlb6drSR4^x\kA/nM1\ɟi<_'796o3&HqfW~UZ(dm'gd֡^c}Udpc\N?7\6Me> 48_Tb3cw3]ŸC8zyK&mʾjWx@>֓kc~jidjw oڑ|YmEΧ։,JNf'4ע=Ja̋\c8`1MVhX'[񧟢qq|c50.asi9thBX]\du m o|WC{mz/gIַ6з?i+;Yۛi}tb/kj dL5MCߦmz4͕|B&6]@ρ]bo<żvC;a4z[ǜq f ~а/HY,ۥl:WO.؇_dzN)MЃɂ[2@(mB&P&?l"U~_a?E[$Oneb()tII}۔B&6Op;m@O4NgOZ}ثt~Nm uEr+OPvBVj/y,?`Օ/kTyS#N87BMG_҂&f|r^"_Y*o8<ǟJȍ%ؙrG9fOFYu@ns'bgOO}ݞ쟍xchn7Q߀s!Ù:-lThb1F5'=# S_q3!yLV/7̞;+|6!cOL{@O8/J% f_8H1ɶ!}Jȣew6hlrxj~ڷ,ϔUmY-v}?9h4)y-ThS9 t ko('wg8L'bޟYd^5s{NSHɶ}Ⱦ 5lmeAW/r]q+#.wNܡQ=YS;rlS"׉NϞI,uJfmn ˥dޤxʣDnַ=3mMRC'wGSe?k#Oӥao0j$" @6*͓ &OX ݙ@˥a]3|?l=%h?5PJo2Ŏ~w{IÚ8?l,|QJFv}rȢ廃ĥI "] J}ྫDAJ&,sO=P$K%ʮW4$:gӐ#IԜ?^o|^}|_į#Lo1TⲬ_gC#.Ȫ1ZXV!G7I{f:z¾$҆P|:ZI{p$Mn<꣐:BRS*_7\C|EJUߗv[#"i7,?(~M qjӲ]q iBc9>@=QggAU4 K,uu0yICk_ $.>g/|.PX|!?x-ܯR.5Bŏd)DlnS]5X^6)-Zϓ2&/1K|?PquėJKS&-CIG} _ᐣRI#(K6E5nv`KWn+J*w:Jy .F`]K%j%|ϵ:;G'^| >-}H40~ ^Kxo\?U?Ҋ?(,_Yz~UY~Vﴻ>6wj.Μ| U],ʟ_=&~=l~|wߟ|I;˾ڏ$_yuϿ.)9yϮ?_u1+ʟ}~(~{~3_)~#G'Ϸ矽~GsZy꿻?k;Wwt[7Ͽ]?|J7?;>g;W_qNoQw>tmR>˟:o_y?RRl} S!L񇴿ʫN g~l_W # index of any eliminated haplotpes hap.id <- 1:length(hap.freq) hap.elim <- hap.id[hap.freq < haplo.min.info] if(length(hap.elim)>0){ # check if haplo.base is among those eliminated if(any(hap.elim == hap.base)) stop("Error - base haplotype frequency is too small - choose a different base") hap.keep <- hap.id[-hap.elim] hap.base <- (1:length(hap.keep))[hap.keep==hap.base] hap.freq <- hap.freq[hap.keep] h1 <- as.numeric(factor(h1,levels=hap.keep)) h2 <- as.numeric(factor(h2,levels=hap.keep)) keep <- ifelse(is.na(h1) | is.na(h2), FALSE, TRUE) h1 <- h1[keep] h2 <- h2[keep] } else { keep <- rep(TRUE,length(h1)) } # standardized residuals = {y - fit}/a(phi) resid.lst <- residScaledGlmFit(fit) resid <- resid.lst$resid[keep] a.phi <- resid.lst$a.phi # variance function = b''(theta) vfunc <- varfunc.glm.fit(fit) /a.phi vfunc <- vfunc[keep] ## From the glm fit, prior.weights are what go into glm, expanded to the size ## of the haplo.mf model matrix; weights are what ## come out after IRWLS (scaled and multiplied by post). ## We want the expanded prior weights times the last updated posterior wt <- fit$prior.weights * fit$haplo.post.info$post wt <- wt[keep] xvec <- as.vector(fit$x[keep,]) ncov <- ncol(fit$x) indx.subj <- fit$haplo.post.info$indx[keep] nhap <- length(hap.freq) len.tot <- length(indx.subj) info11 <- numeric(ncov^2) info12 <- numeric(ncov*(nhap-1)) info22 <- numeric((nhap-1)^2) size.max <- max(c(ncov, (nhap-1))) # zero-offset hap.base, h1, h2 for C hap.base <- hap.base - 1 h1 <- h1 - 1 h2 <- h2 - 1 tmp <- .C("louis_info", len.tot=as.integer(len.tot), indx.subj=as.integer(indx.subj), resid=as.double(resid), vfunc=as.double(vfunc), wt=as.double(wt), xvec=as.double(xvec), ncov=as.integer(ncov), h1=as.integer(h1), h2=as.integer(h2), hap.base=as.integer(hap.base), nhap=as.integer(nhap), hap.freq=as.double(hap.freq), info11=as.double(info11), info12=as.double(info12), info22=as.double(info22), PACKAGE='haplo.stats') nh <- nhap-1 info11 <- matrix(tmp$info11, ncol=ncov) info12 <- matrix(tmp$info12, ncol=nh) info22 <- matrix(tmp$info22, ncol=nh) info <- rbind( cbind(info11, info12), cbind(t(info12), info22) ) # v <- Ginv(info, eps=sqrt(.Machine$double.eps)) v <- Ginv(info, epsilon) var.mat <-v$Ginv rank <- v$rank if(length(hap.elim)==0) hap.elim <- NA return(list(info=info, var.mat=var.mat, rank = rank, haplo.base = hap.base +1, haplo.elim=hap.elim)) } haplo.stats/R/x.sexcheck.q0000644000176200001440000000351614672315242015153 0ustar liggesusers#$Author: sinnwell $ # #$Date: 2006/10/25 19:31:34 $ # #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/x.sexcheck.q,v 1.6 2006/10/25 19:31:34 sinnwell Exp $ # #$Locker: $ # #$Log: x.sexcheck.q,v $ #Revision 1.6 2006/10/25 19:31:34 sinnwell #change T to TRUE and F to FALSE # #Revision 1.5 2003/01/17 15:58:53 det01 #Modified routine to check for class model.matrix # #Revision 1.4 2003/01/13 16:50:11 det01 #Modified check.geno data structure # #Revision 1.3 2002/12/13 17:49:44 det01 #*** empty log message *** # # x.sexcheck <- function(x,sex,stop=FALSE) { #Title: Consistency checks for x.linked loci if (stop) { old.options <- options(warn=2) on.exit(options(old.options)) } if (missing(x)) { warning("required argument x not found") return(TRUE) } if (missing(sex)) { warning("required argument sex not found") return(TRUE) } if (!("model.matrix" %in% class(x))) { warning("argument x must be of class locus") return(TRUE) } if (!attr(x,"x.linked")) return(FALSE) if (length(sex) != nrow(x)) { warning("length of sex not equal to number of individuals in x") return(TRUE) } if (any(is.na(sex))) { warning("missing a sex code for one or more individuals in x") return(TRUE) } male.code=attr(x,"male.code") female.code=attr(x,"female.code") if (any(!(sex==male.code | sex==female.code))) { warning("one or more values in sex do not match male.code or female.code attributes of x") return(TRUE) } male <- sex==male.code if(sum(male)>0) { miss <- is.na(x) check.geno <- (male & !miss) vec.check.geno <- apply(check.geno,1,sum) check.geno <- vec.check.geno>0 if(any(x[check.geno,1]!=x[check.geno,2])) { warning("heterozygous male found for x.linked loci") return(TRUE) } } return(FALSE) } haplo.stats/R/haplo.enum.q0000644000176200001440000000652714672315242015163 0ustar liggesusers#$Author: sinnwell $ # #$Date: 2003/08/26 16:39:04 $ # #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/haplo.enum.q,v 1.4 2003/08/26 16:39:04 sinnwell Exp $ # #$Id: haplo.enum.q,v 1.4 2003/08/26 16:39:04 sinnwell Exp $ # #$Locker: $ # #$Log: haplo.enum.q,v $ #Revision 1.4 2003/08/26 16:39:04 sinnwell #change license statement # #Revision 1.3 2003/03/06 23:13:14 sinnwell #add license text # #Revision 1.2 2002/12/13 19:07:03 sinnwell #update to handle matrices # #Revision 1.1 2002/09/09 19:53:18 sinnwell #Initial revision # # License: # # Copyright 2003 Mayo Foundation for Medical Education and Research. # # This program is free software; you can redistribute it and/or modify it under the terms of # the GNU General Public License as published by the Free Software Foundation; either # version 2 of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for # more details. # # You should have received a copy of the GNU General Public License along with this # program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, # Boston, MA 02111-1307 USA # # For other licensing arrangements, please contact Daniel J. Schaid. # # Daniel J. Schaid, Ph.D. # Division of Biostatistics # Harwick Building Room 775 # Mayo Clinic # 200 First St., SW # Rochester, MN 55905 # # phone: 507-284-0639 # fax: 507-284-9542 # email: schaid@mayo.edu # haplo.enum <- function(hmat) { # Exact same as haplo.enum but made for handling one whole row of ugeno # instead of haploids # enumerate all possible haplotypes, given input vectors # h1 and h2 (one possible set of haplotypes) # and return in matrices h1 and h2 all possible haps. # This algorithm sets up the h1.mtx and h2.mtx matrices with NA # values, then moves across the loci which are heterozygous # (after the 1st het locus), flipping alleles at heterozygous # locations, and saving results in rows moving down the matrices. # next three commands added 8/23 jps hmat <- matrix(hmat,nrow=1) h1 <- hmat[,seq(1,(ncol(hmat)-1),by=2)] h2 <- hmat[,seq(2,ncol(hmat),by=2)] # the rest is the same as before het <- h1 != h2 nhet <- sum(het) # only enumerate if > 1 het loci if(nhet <= 1) { return(list(h1 = matrix(h1, nrow = 1), h2 = matrix(h2, nrow = 1 ))) } # only need to flip at heterozygous loci, after 1st het locus: nloci <- length(h1) which <- (1:nloci)[het] which <- which[-1] h1.mtx <- h2.mtx <- matrix(NA, nrow = 2^(nhet - 1), ncol = nloci) h1.mtx[1, ] <- h1 h2.mtx[1, ] <- h2 indx.row <- 1 for(i in which) { nr <- sum(!is.na(h1.mtx[, 1])) for(j in 1:nr) { indx.row <- indx.row + 1 # used to move down to the next row of matrix # now for flipping alleles across loci if(i < nloci) { h1.mtx[indx.row, ] <- c(h1.mtx[j, 1:(i - 1)], h2.mtx[j, i], h1.mtx[j, (i + 1):nloci]) h2.mtx[indx.row, ] <- c(h2.mtx[j, 1:(i - 1)], h1.mtx[j, i], h2.mtx[j, (i + 1):nloci]) } if(i == nloci) { h1.mtx[indx.row, ] <- c(h1.mtx[j, 1:(i - 1)], h2.mtx[j, i]) h2.mtx[indx.row, ] <- c(h2.mtx[j, 1:(i - 1)], h1.mtx[j, i]) } } } return(list(h1 = h1.mtx, h2 = h2.mtx)) } haplo.stats/R/haplo.scan.sim.q0000644000176200001440000000262414672315242015724 0ustar liggesusers#$Author: sinnwell $ #$Date: 2005/03/24 22:08:56 $ #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/haplo.scan.sim.q,v 1.2 2005/03/24 22:08:56 sinnwell Exp $ #$Locker: $ #$Log: haplo.scan.sim.q,v $ #Revision 1.2 2005/03/24 22:08:56 sinnwell #changed from scan.sim # #Revision 1.1 2005/03/23 18:07:08 sinnwell #Initial revision # # find a vector of maximum statistics for each locus # use simulated values for y # for all locus subsets, use saved h1.sub, h2.sub, post.sub, nrep # from scan.obs haplo.scan.sim <- function(y.reord, save.lst, nloci) { # save.lst is the information on hapcodes, posteriors, nrep for # all subsets which didn't result in 1-haplotype subsets # use them for simulations df.sim <- numeric(0) for(i in 1:length(save.lst)) { test <- haplo.chistat(y=y.reord, h1=save.lst[[i]]$h1.sub, h2=save.lst[[i]]$h2.sub, post=save.lst[[i]]$post.sub, nrep=save.lst[[i]]$nrep) df.sim <- rbind(df.sim, c(save.lst[[i]]$loci, test) ) } # for each locus, find the max chistat of those which were # calculated on a set of loci (mrow) which included that locus svec <- numeric(nloci) for(loc in 1:nloci) { # find max of chistats which came from subsets containing loc mrow <- (df.sim[,1] <= loc) & (loc <= df.sim[,2]) svec[loc] <- max(df.sim[mrow,3]) } return(svec) } haplo.stats/R/setupGeno.q0000644000176200001440000000400214672371355015057 0ustar liggesusers#$Author: sinnwell $ #$Date: 2007/04/19 20:59:18 $ #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/setupGeno.q,v 1.4 2007/04/19 20:59:18 sinnwell Exp $ #$Locker: $ #$Log: setupGeno.q,v $ #Revision 1.4 2007/04/19 20:59:18 sinnwell #add locus.label # #Revision 1.3 2004/03/10 21:21:16 sinnwell #remove excess parms and attributes # #Revision 1.2 2004/03/10 15:45:56 sinnwell #make the same as loci function instead # # original version had some similar contents to this function. # This is copying much code from loci(), but it is better named # for users as setupGeno setupGeno <- function(geno, miss.val = c(0,NA),locus.label=NULL) { # Title: Create an object of class model.matrix loci <- NULL unique.alleles <- list(NULL) if(missing(geno)) stop("Error: Required argument geno is missing") if(!is.data.frame(geno) & !is.matrix(geno)) stop("Error: Argument geno is not a data.frame or matrix") if(ncol(geno) %% 2) stop("Error: Number of columns in geno object is not an even number") exp.num.loc <- ncol(geno)/2 if(is.null(locus.label)) locus.label <- paste("loc",1:exp.num.loc, sep="-") for(i in 1:exp.num.loc) { tmp <- locus(geno[, (i * 2 - 1)], geno[, i * 2], chrom.label = NULL, locus.alias=locus.label[i], x.linked = FALSE, sex = NULL, male.code = "M", female.code = "F", miss.val = miss.val) ualleles <- attr(tmp, "allele.labels") tmp <- as.matrix(tmp) dimnames(tmp)[[2]][1] <- paste(locus.label[i], dimnames(tmp)[[2]][1], sep = ".") dimnames(tmp)[[2]][2] <- paste(locus.label[i], dimnames(tmp)[[2]][2], sep = ".") loci <- cbind(loci, tmp) unique.alleles[[i]] <- ualleles } # assign class model.matrix so it can be put into a data.frame # and to hold the unique.alleles attributes # negative is that subsetting does not work. class(loci) <- "model.matrix" attr(loci, "unique.alleles") <- unique.alleles return(loci) } haplo.stats/R/haplo.score.glm.q0000644000176200001440000000420214672315242016074 0ustar liggesusers#$Author: sinnwell $ # #$Date: 2003/08/26 16:39:04 $ # #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/haplo.score.glm.q,v 1.3 2003/08/26 16:39:04 sinnwell Exp $ # #$Id: haplo.score.glm.q,v 1.3 2003/08/26 16:39:04 sinnwell Exp $ # #$Locker: $ # #$Log: haplo.score.glm.q,v $ #Revision 1.3 2003/08/26 16:39:04 sinnwell #change license statement # #Revision 1.2 2003/03/06 23:15:04 sinnwell #add license text # #Revision 1.1 2002/09/09 19:53:18 sinnwell #Initial revision # # License: # # Copyright 2003 Mayo Foundation for Medical Education and Research. # # This program is free software; you can redistribute it and/or modify it under the terms of # the GNU General Public License as published by the Free Software Foundation; either # version 2 of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for # more details. # # You should have received a copy of the GNU General Public License along with this # program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, # Boston, MA 02111-1307 USA # # For other licensing arrangements, please contact Daniel J. Schaid. # # Daniel J. Schaid, Ph.D. # Division of Biostatistics # Harwick Building Room 775 # Mayo Clinic # 200 First St., SW # Rochester, MN 55905 # # phone: 507-284-0639 # fax: 507-284-9542 # email: schaid@mayo.edu # haplo.score.glm <- function(y,mu,a,v,x.adj,nreps,x.post, post, x){ u.mtx <- (y-mu)*x.post / a u.score <- apply(u.mtx,2,sum) # Var matrix for x.adj covariates v.11 <- t(x.adj * v) %*% x.adj # Var matrix for covar(x.adj, x.post) v.21 <- t(x.post) %*% (x.adj * v) # Var matrix for haplo scores res <- ( (y - mu)/a ) ^2 t1 <- rep( (v-res) ,nreps) * post v.22 <- t(x*t1) %*% x + t(u.mtx) %*% u.mtx # Var matrix for haplo scores, adjusted for x.adj v.score <- v.22 - v.21 %*% solve(v.11) %*% t(v.21) return(list(u.score=u.score, v.score=v.score)) } haplo.stats/R/haplo.score.slide.q0000644000176200001440000001043114672370622016421 0ustar liggesusers#$Author: sinnwell $ #$Date: 2008/04/10 14:32:18 $ #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/haplo.score.slide.q,v 1.9 2008/04/10 14:32:18 sinnwell Exp $ #$Locker: $ #$Log: haplo.score.slide.q,v $ #Revision 1.9 2008/04/10 14:32:18 sinnwell #add eps.svd # #Revision 1.8 2007/03/08 14:38:51 sinnwell #*** empty log message *** # #Revision 1.7 2007/01/25 20:31:42 sinnwell #add haplo.effect and min.count, new features in haplo.score # #Revision 1.6 2006/10/25 15:09:15 sinnwell #rm Matrix library call, only done in Ginv # #Revision 1.5 2006/01/27 16:26:08 sinnwell #dependency of Ginv on Matrix # #Revision 1.4 2005/03/30 17:40:33 sinnwell #shorten df column names # #Revision 1.3 2005/03/03 20:51:08 sinnwell #change defaults for skip.haplo # #Revision 1.2 2003/12/08 19:43:53 sinnwell # changed F,T to FALSE,TRUE # #Revision 1.1 2003/08/22 21:05:45 sinnwell #Initial revision # # License: # # Copyright 2003 Mayo Foundation for Medical Education and Research. # # This program is free software; you can redistribute it and/or modify it under the terms of # the GNU General Public License as published by the Free Software Foundation; either # version 2 of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for # more details. # # You should have received a copy of the GNU General Public License along with this # program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, # Boston, MA 02111-1307 USA # # For other licensing arrangements, please contact Daniel J. Schaid. # # Daniel J. Schaid, Ph.D. # Division of Biostatistics # Harwick Building Room 775 # Mayo Clinic # 200 First St., SW # Rochester, MN 55905 # # phone: 507-284-0639 # fax: 507-284-9542 # email: schaid@mayo.edu # haplo.score.slide <- function(y, geno, trait.type="gaussian", n.slide=2, offset = NA, x.adj = NA, min.count=5, skip.haplo=min.count/(2*nrow(geno)), locus.label=NA, miss.val=c(0,NA), haplo.effect="additive", eps.svd=1e-5, simulate=FALSE, sim.control=score.sim.control(), em.control=haplo.em.control()) # Developed by Schaid, DJ; Sinnwell, JP 2003 # Mayo Clinic Rochester, Div of Biostatistics { # check that n.slide <= n.loci n.loci <- ncol(geno)/2 if(n.slide == 1 | n.slide > n.loci) { warning("n.slide out of range, using default of 2 instead") n.slide <- 2 } start.locus <- 1:(n.loci-(n.slide-1)) if(missing(locus.label)) locus.label <- 1:n.loci n.site <- length(start.locus) score.global.p <- rep(NA,n.site) score.global.p.sim <- rep(NA,n.site) score.max.p.sim <- rep(NA,n.site) n.val.haplo <- rep(NA,n.site) n.val.global <- rep(NA,n.site) for (i in start.locus){ # subset geno and locus.label to analyze col.start <- (i-1)*2 + 1 col.end <- (col.start - 1) + 2*n.slide geno.slide <- geno[, (col.start:col.end)] temp <- haplo.score(y=y, geno=geno.slide, trait.type=trait.type, offset = offset, x.adj = x.adj, haplo.effect=haplo.effect, min.count=min.count, skip.haplo=skip.haplo, miss.val=miss.val, eps.svd=eps.svd, simulate=simulate, sim.control=sim.control, em.control = em.control) # keep global, global.sim and max.sim p-values score.global.p[i] <- temp$score.global.p score.global.p.sim[i] <- temp$score.global.p.sim score.max.p.sim[i] <- temp$score.max.p.sim # keep total simulations done n.val.haplo[i] <- temp$n.val.haplo n.val.global[i] <- temp$n.val.global } score.slide <- list(df=data.frame(start.loc=start.locus, score.global.p, global.p.sim=score.global.p.sim, max.p.sim=score.max.p.sim), n.loci=n.loci, haplo.effect=haplo.effect, simulate=simulate, n.slide=n.slide, locus.label=locus.label, n.val.haplo=n.val.haplo, n.val.global=n.val.global) class(score.slide) <- "haplo.score.slide" return(score.slide) } haplo.stats/R/residuals.haplo.glm.q0000644000176200001440000000363514672315242016765 0ustar liggesusers ## Purpose: residuals method for haplo.glm object ## Author: Jason Sinnwell ## Created: 9/26/2011 residuals.haplo.glm <- function (object, type = c("deviance", "pearson", "working", "response"), ...) { type <- match.arg(type) ## We do not implement predict for haplo.glm, so partial is not allowed if(type=="partial") stop("partial residuals not supported for haplo.glm\n") ## Fix elements of haplo.glm object so that it will work ## with residuals.glm function sindx <- object$haplo.post.info$indx hpost <- object$haplo.post.info$post ## create collapsed y mu.eta <- object$family$mu.eta y <- object$fitted.values + object$residuals * mu.eta(object$linear.predictors) object$y <- tapply(object$y, sindx, FUN=function(x) signif(x[1],digits=4)) ## collapse mu, and weights, and working residuals ## assign them back to object before calling residuals.glm on it mu <- tapply(object$fitted.values*hpost, sindx, sum) wts <- tapply(object$prior.weights, sindx, FUN <- function(x) x[1]) object$fitted.values <- mu object$residuals <- tapply(object$residuals*object$prior.weights*hpost, sindx,sum) object$prior.weights <- wts res <- residuals.glm(object, type=type) return(res) } ## Purpose: method to get fitted.values for haplo.glm object ## Author: Jason Sinnwell ## Created: 10/3/2011 fitted.haplo.glm <- function(object, ...) { sindx <- object$haplo.post.info$indx hpost <- object$haplo.post.info$post fits <- tapply(object$fitted.values*hpost, sindx, sum) return(fits) } ## Purpose: method to get var-cov matrix for haplo.glm object ## Author: Jason Sinnwell ## Created: 10/4/2011 vcov.haplo.glm <- function(object, freq=TRUE, ...) { if(freq) { return(object$var.mat) } else { return(object$var.mat[1:object$rank,1:object$rank]) } } haplo.stats/R/score.sim.control.q0000644000176200001440000000515014672315242016465 0ustar liggesusers#$Author: sinnwell $ #$Date: 2003/12/08 20:22:37 $ #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/score.sim.control.q,v 1.3 2003/12/08 20:22:37 sinnwell Exp $ #$Locker: $ #$Log: score.sim.control.q,v $ #Revision 1.3 2003/12/08 20:22:37 sinnwell # changed T,F to TRUE,FALSE # #Revision 1.2 2003/09/12 16:33:01 sinnwell #remove pval.choice # #Revision 1.1 2003/08/22 21:08:42 sinnwell #Initial revision # # License: # # Copyright 2003 Mayo Foundation for Medical Education and Research. # # This program is free software; you can redistribute it and/or modify it under the terms of # the GNU General Public License as published by the Free Software Foundation; either # version 2 of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for # more details. # # You should have received a copy of the GNU General Public License along with this # program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, # Boston, MA 02111-1307 USA # # For other licensing arrangements, please contact Daniel J. Schaid. # # Daniel J. Schaid, Ph.D. # Division of Biostatistics # Harwick Building Room 775 # Mayo Clinic # 200 First St., SW # Rochester, MN 55905 # # phone: 507-284-0639 # fax: 507-284-9542 # email: schaid@mayo.edu # score.sim.control <- function(p.threshold = 0.25, min.sim = 1000, max.sim = 20000., verbose = FALSE) # Sinnwell JP, Schaid DJ 7/2003 # Mayo Clinic Rochester { # return a list of controls for simulations in haplo.score if(p.threshold < 0 | p.threshold > 0.9) { warning("The value of p.threshold is out of range, the devault value of 0.25 is used" ) p.threshold <- 0.25 } # if(is.na(pmatch(pval.choice, c("global", "max")))) { # warning("The value of p.val.choice should be 'global' or 'max'; the default value 'global' is used" # ) # pval.choice <- "global" # } if(min.sim < 1) { warning("The value of min.sim is out of range, the default value of 1000 is used" ) min.sim <- 1000 } if(max.sim < min.sim | max.sim > 100000000.) { warning("The value of max.sim is not valid! \n\n If less than min.sim, it is set equal to min.sim. \n\n If over 100,000,000 set to default of 20,000" ) if(max.sim < min.sim) max.sim <- min.sim else max.sim <- 20000. } return(list(p.threshold = p.threshold, min.sim = min.sim, max.sim = max.sim, verbose = verbose)) } haplo.stats/R/haplo.em.q0000644000176200001440000002371214672315242014613 0ustar liggesusers#$Author: sinnwell $ #$Date: 2011/12/12 17:04:10 $ #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/haplo.em.q,v 1.19 2011/12/12 17:04:10 sinnwell Exp $ #$Locker: $ #$Log: haplo.em.q,v $ #Revision 1.19 2011/12/12 17:04:10 sinnwell #fix lnlike.noLD in return list # #Revision 1.18 2011/11/10 15:29:40 sinnwell #major update to hapglm, minor changes to Rd files, prepare for version 1.5.0 release # #Revision 1.17 2008/02/11 22:54:22 sinnwell #include subjects removed by PIN steps (low-LD, rare haps) in rows.rem and issue a warning to reduce min.posterior # #Revision 1.16 2007/10/16 19:07:12 sinnwell #remove intMax check and go with max.haps.limit of 2e6 from control #intMax was the highest index for integers, but too much memory to allocate in C # #Revision 1.15 2007/04/03 21:08:36 sinnwell #add PACKAGE in checkIntMax .C call # #Revision 1.14 2007/02/27 20:16:21 schaid # control max.haps.limit with checkIntMax (see haplo_em_pin) # #Revision 1.13 2004/07/09 14:36:22 sinnwell #warning for n.loci < 2 # #Revision 1.12 2004/03/18 23:31:28 sinnwell #keep haplotype matrix from data.frame, char vecs from factors # #Revision 1.11 2004/03/01 20:52:37 sinnwell #change T to TRUE for matrix() # #Revision 1.10 2004/02/02 23:00:01 sinnwell #insert ghost runif(1) line to init .Random.seed for R bug # #Revision 1.9 2003/09/19 21:38:45 schaid #fixed returned class to be R compatible # #Revision 1.8 2003/08/26 22:08:31 sinnwell #add GPL License # #Revision 1.7 2003/08/26 21:04:49 schaid #Major revision of haplo.em, by adding new functions and new C code to use progressive insertion of loci. # # License: # # Copyright 2003 Mayo Foundation for Medical Education and Research. # # This program is free software; you can redistribute it and/or modify it under the terms of # the GNU General Public License as published by the Free Software Foundation; either # version 2 of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for # more details. # # You should have received a copy of the GNU General Public License along with this # program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, # Boston, MA 02111-1307 USA # # For other licensing arrangements, please contact Daniel J. Schaid. # # Daniel J. Schaid, Ph.D. # Division of Biostatistics # Harwick Building Room 775 # Mayo Clinic # 200 First St., SW # Rochester, MN 55905 # # phone: 507-284-0639 # fax: 507-284-9542 # email: schaid@mayo.edu # haplo.em <- function(geno, locus.label=NA, miss.val=c(0,NA), weight=NULL, control = haplo.em.control() ){ n.loci <- ncol(geno)/2 n.subject <- nrow(geno) subj.id <- 1:n.subject if(n.loci<2) stop("Must have at least 2 loci for haplotype estimation!") # set up weight if(any(is.null(weight))){ weight <- rep(1,n.subject) } if(any(weight<0)){ stop("negative weights not allowed") } if(length(weight)!=n.subject){ stop("Length of weight != number of subjects (nrow of geno)") } # Create locus label if not included if(all(is.na(locus.label))) locus.label<- paste("loc-",1:n.loci,sep="") if(length(locus.label)!=n.loci){ stop("length of locus.label != n.loci") } ## recode geno to integer values, accounting for missing values ## replaced loci with setupGeno (JPS: 10/20/2011) temp.geno <- setupGeno(geno, miss.val=miss.val, locus.label=locus.label) # Compute the max number of pairs of haplotypes over all subjects max.pairs <- geno.count.pairs(temp.geno) max.haps <- 2*sum(max.pairs) ## This system-max for integer values is used in haplo.em.control ## for setting max.haps.limit #intMax <- .C("checkIntMax", # intMax = as.integer(0), # PACKAGE="haplo.stats")$intMax if(max.haps > control$max.haps.limit) max.haps <- control$max.haps.limit # check whether to delete some rows - now defunct, but use # dummy to not break code that uses this in returned list rows.rem <- numeric(0) geno.vec <- as.vector(temp.geno) geno.vec <- ifelse(is.na(geno.vec),0,geno.vec) allele.labels <- attr(temp.geno, "unique.alleles") if(length(allele.labels)!=n.loci) stop("Number of loci in alleles list != n.loci") n.alleles <- numeric(n.loci) a.freq <- vector("list",n.loci) for(i in 1:n.loci){ n.alleles[i] <- length(allele.labels[[i]]) j <- (i-1)*2 + 1 p <- table(temp.geno[,c(j, (j+1))], exclude=NA) p <- p/sum(p) a.freq[[i]] <- list(p=p) } if(is.null(control$loci.insert.order)) { control$loci.insert.order <- 1:n.loci } # need zero-offset for loci-insert-order when # pass to C loci.insert.order <- (control$loci.insert.order - 1) if(length(loci.insert.order) != n.loci){ stop("length of loci.insert.order != n.loci") } if(sum( abs(sort(loci.insert.order) - (0:(n.loci-1)))) > 0){ stop("All loci are not accounted for in loci.insert.order") } if(control$insert.batch.size > n.loci){ control$insert.batch.size <- n.loci } if(!is.null(control$iseed)) { set.seed(control$iseed) } else { runif(1) control$iseed <- .Random.seed } # The seeds for the ranAS183 random number generator used in the C function # hwe_sim must be between 1 and 30000, but bigger is better (we think), so we # add 10000 seed.array <- runif(3) iseed1 = 10000 + 20000*seed.array[1] iseed2 = 10000 + 20000*seed.array[2] iseed3 = 10000 + 20000*seed.array[3] fit <- haplo.em.fitter( n.loci, n.subject, weight, geno.vec, n.alleles, max.haps, max.iter=control$max.iter, loci.insert.order, min.posterior=control$min.posterior, tol=control$tol, insert.batch.size=control$insert.batch.size, random.start=control$random.start, iseed1=iseed1, iseed2=iseed2, iseed3=iseed3, verbose=control$verbose) # if n.try > 1 try, remaining tries are random starts for posteriors if(control$n.try > 1){ for(i in 2:control$n.try){ seed.array <- runif(3) iseed1 = 10000 + 20000*seed.array[1] iseed2 = 10000 + 20000*seed.array[2] iseed3 = 10000 + 20000*seed.array[3] fit.new <- haplo.em.fitter( n.loci, n.subject, weight, geno.vec, n.alleles, max.haps, max.iter=control$max.iter, loci.insert.order, min.posterior=control$min.posterior, tol=control$tol, insert.batch.size=control$insert.batch.size, random.start=1, iseed1=iseed1, iseed2=iseed2, iseed3=iseed3, verbose=control$verbose) if(fit.new$tmp1$lnlike > fit$tmp1$lnlike) { fit <- fit.new } } } tmp1 <- fit$tmp1 tmp2 <- fit$tmp2 u.hap <- matrix(tmp2$u.hap,nrow=tmp2$n.u.hap,byrow=TRUE) # code alleles for haplotpes with original labels # use I() to keep char vectors to factors in making a data.frame haplotype <- data.frame(I(allele.labels[[1]][u.hap[,1]])) for(j in 2:n.loci){ haplotype <- cbind(haplotype, I(allele.labels[[j]][u.hap[,j]])) } # haplotype <- data.frame(haplotype) names(haplotype) <- locus.label # convert from 0-offset in C to 1-offset in S, and recode hap codes # to 1,2,..., n_uhap hap1code <- tmp2$hap1code + 1 hap2code <- tmp2$hap2code + 1 uhapcode <- tmp2$u.hap.code + 1 n1 <- length(uhapcode) n2 <- length(hap1code) tmp <- as.numeric(factor(c(uhapcode, hap1code, hap2code))) uhapcode <- tmp[1:n1] hap1code <- tmp[(n1+1):(n1+n2)] hap2code <- tmp[(n1+n2+1):(n1+2*n2)] uhap.df <- data.frame(uhapcode, tmp2$hap.prob, u.hap) names(uhap.df) <- c("hap.code","hap.prob",locus.label) indx.subj = tmp2$indx.subj + 1 # in rare cases of very low LD, a subject gets removed by the trimming # of haplotypes add warning and offer options in this case if(length(unique(tmp2$indx.subj)) < n.subject) { unique.subj <- unique(indx.subj) rows.rem <- c(rows.rem, which(is.na(match(1:n.subject, unique.subj)))) warning("Subject(s) ", paste(rows.rem,sep=','), " removed in trimming steps.\n Try decreasing min.posterior control parameter to reduce trimming.\n") } subj.used.id <- subj.id[indx.subj] # compute lnlike if no LD. This is a rough approximation which will # be accurate only if all haplotypes are considered in the list # of enumerated haplotypes. If there is no trimming # (min.posterior = 0), and it is possible to enumerate all # possible pairs of haplotypes, then hap.prob.noLD will sum # to 1. But, with trimming, this may not occur, so we # rescale to force them to sum to 1. This may not lead to # an accurate test for no LD by the likelihood ratio statistic. hap.prob.noLD <- a.freq[[1]]$p[u.hap[,1]] df.noLD <- length(a.freq[[1]]$p) - 1 for(j in 2:n.loci){ hap.prob.noLD <- hap.prob.noLD * a.freq[[j]]$p[u.hap[,j]] df.noLD <- df.noLD + length(a.freq[[j]]$p) - 1 } hap.prob.noLD <- hap.prob.noLD/sum(hap.prob.noLD) prior.noLD <- hap.prob.noLD[hap1code]*hap.prob.noLD[hap2code] prior.noLD <- ifelse(hap1code!=hap2code, 2*prior.noLD, prior.noLD) ppheno.noLD <- tapply(prior.noLD, indx.subj, sum) lnlike.noLD <- sum(log(ppheno.noLD)) lr <- 2*(tmp1$lnlike - lnlike.noLD) df.LD <- sum(tmp2$hap.prob > 0.0000001) - 1 df.lr <- df.LD - df.noLD obj <- list( lnlike=tmp1$lnlike, lnlike.noLD=lnlike.noLD, lr = lr, df.lr = df.lr, hap.prob = tmp2$hap.prob, hap.prob.noLD = hap.prob.noLD, converge = tmp1$converge, locus.label = locus.label, indx.subj = indx.subj, subj.id = subj.used.id, post = tmp2$post, hap1code = hap1code, hap2code = hap2code, haplotype = haplotype, nreps = table(indx.subj), rows.rem = rows.rem, max.pairs=max.pairs, control=control) class(obj) <- "haplo.em" return(obj) } haplo.stats/R/na.geno.keep.q0000644000176200001440000000364614672315242015364 0ustar liggesusers#$Author: sinnwell $ #$Date: 2008/03/24 21:24:53 $ #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/na.geno.keep.q,v 1.4 2008/03/24 21:24:53 sinnwell Exp $ #$Locker: $ #$Log: na.geno.keep.q,v $ #Revision 1.4 2008/03/24 21:24:53 sinnwell #rm geno rows missing all. #Put back on geno attributes, which removes requirement of allele.lev in haplo.glm #add yxmiss and gmiss attributes to m for missing yx or geno rows # #Revision 1.3 2004/02/26 17:31:02 schaid #changed F to FALSE # #Revision 1.2 2003/12/03 15:38:36 schaid #fixed subsetting to response & covariates to not drop dim, to retain matrix class # #Revision 1.1 2003/09/16 16:03:08 schaid #Initial revision # na.geno.keep <- function(m) { # determine which item in a model.frame is the genotype matrix gindx <- mf.gindx(m) # ignore genotype matrix when determining missing values for all # other variables (response and other covaraites) yxmiss <- apply(is.na(m[, -gindx, drop=FALSE]),1,any) # remove rows from genotype matrix that have all alleles missing gmiss <- apply(is.na(m[,gindx, drop=FALSE]), 1, all) # save attributes of geno, rows of m removed they would be dropped genoAttr <- attributes(m[,gindx]) allmiss <- yxmiss | gmiss m <- m[!allmiss,] # make adjustments to attributes b/c of subset genoAttr$dim[1] <- genoAttr$dim[1] - sum(allmiss) # if an allele is removed, remove it from unique.alleles nloc <- ncol(m[,gindx])/2 for(k in 1:nloc) { ualleles <- unique(c(m[,gindx][,(2*nloc-1)],m[,gindx][,2*nloc])) nalleles <- length(genoAttr$unique.alleles[[k]]) if(length(ualleles) < length(genoAttr$unique.alleles[[k]])) { genoAttr$unique.alleles[[k]] <- genoAttr$unique.alleles[[k]][!is.na(match(1:nalleles, ualleles))] } } # put back on attributes for(att in names(genoAttr)) { attr(m[,gindx], att) <- genoAttr[[att]] } attr(m, "yxmiss") <- yxmiss attr(m, "gmiss") <- gmiss return(m) } haplo.stats/R/plot.seqhap.q0000644000176200001440000001175014672371647015360 0ustar liggesusers#$Author: sinnwell $ #$Date: 2009/03/09 16:10:19 $ #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/plot.seqhap.q,v 1.6 2009/03/09 16:10:19 sinnwell Exp $ #$Locker: $ #$Log: plot.seqhap.q,v $ #Revision 1.6 2009/03/09 16:10:19 sinnwell #for R use pchisq(, , lower=FALSE) to get precision on small p-vals # #Revision 1.5 2008/05/16 18:34:44 sinnwell #warnings for when perm pvals 0, set to 1/(n.sim+1) # #Revision 1.4 2008/05/09 20:59:58 sinnwell #add minp parameter # #Revision 1.3 2008/05/08 17:38:26 sinnwell #allow ylim, set minimum p as 1e-10, issue warning if pval not valid # #Revision 1.2 2007/05/25 18:17:15 sinnwell #rm par options cex.axis and las/srt, reserve for users # #Revision 1.1 2007/05/23 17:41:36 sinnwell #Initial revision # # License: # # Copyright 2003 Mayo Foundation for Medical Education and Research. # # This program is free software; you can redistribute it and/or modify it under the terms of # the GNU General Public License as published by the Free Software Foundation; either # version 2 of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for # more details. # # You should have received a copy of the GNU General Public License along with this # program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, # Boston, MA 02111-1307 USA # # For other licensing arrangements, please contact Daniel J. Schaid. # # Daniel J. Schaid, Ph.D. # Division of Biostatistics # Harwick Building Room 775 # Mayo Clinic # 200 First St., SW # Rochester, MN 55905 # # phone: 507-284-0639 # fax: 507-284-9542 # email: schaid@mayo.edu # plot.seqhap <- function(x, pval="hap", single=TRUE, minp=.Machine$double.eps, ...) { ## plot method of seqhap object ## 1. x-axis: give locus labels in order, in "pos" chrom positions ## 2. y-axis: plot the -log10 of the p-val chosen ## 3. the pval parameter selects which ("hap","hap.sim","sum","sum.sim") to plot ## 4. Use minp as the smallest "allowable" p-value. ## Any p-value smaller will be set to log10(minp) if(!inherits(x, "seqhap")) stop("Not a seqhap object") ## if ylim is given in ..., pull it off and use it dots <- as.list(substitute(list(...)))[-1] ylim.indx <- match('ylim', names(dots)) ylim.user <- if(!is.na(ylim.indx)) eval(dots[ylim.indx]$ylim) else NULL single.p <- 1-pchisq(x$chi.stat,1) if(is.na(match(pval, c("hap", "sum", "hap.sim", "sum.sim")))) { warning("Invalid value for pval, set to default. \n") pval <- "hap" } switch(pval, "hap"={ seqp <- pchisq(x$hap.stat, x$hap.df, lower.tail=FALSE) ylabel <- '-log10(hap.pval)' }, "sum"={ seqp <- pchisq(x$sum.stat,x$sum.df, lower.tail=FALSE) ylabel <- '-log10(sum.pval)' }, "hap.sim"={seqp <- ifelse(x$hap.p.point==0, 1/(x$n.sim+1), x$hap.p.point) if(any(seqp < 1/x$n.sim)) warning("One or more permutation p-value(s) set from 0 to 1/(n.sim+1)") ylabel <- '-log10(hap.sim.pval)' }, "sum.sim"={seqp <- ifelse(x$sum.p.point==0, 1/(x$n.sim+1), x$sum.p.point) if(any(seqp < 1/x$n.sim)) warning("One or more permutation p-value(s) set from 0 to 1/(n.sim+1)") ylabel <- '-log10(sum.sim.pval)' }) if(any(single.p < minp)) { warning(paste("One or more single-marker p-values too small to plot, set to ", minp, "\n")) single.p <- ifelse(single.p < minp, minp, single.p) } if(any(seqp < minp)) { warning(paste("One or more multi-marker p-values too small to plot, set to ", minp, "\n")) seqp <- ifelse(seqp < minp, minp, seqp) } log.single.p <- if(single) -log10(single.p) else NULL log.seqp <- -log10(seqp) ylim <- if(is.null(ylim.user)) c(0, max(3, log.single.p, log.seqp)) else ylim.user plot(x$pos, log.single.p,ylim=ylim, type="n",xaxt="n", xlab='', ylab=ylabel) #, ...) for(i in 1:length(x$pos)) { # plot a filled triangle for locus i at heigh of -log10p[i] points(x$pos[x$scanned.loci[i,1]], log.seqp[i], pch=17) if(sum(x$scanned.loci[i,]>0)>1) { scanned.loci.i <- sort(x$scanned.loci[i,]) scanned.loci.i <- scanned.loci.i[scanned.loci.i>0] #plot a line for each set of combined loci at height of -log10p[i] lines(c(x$pos[min(scanned.loci.i)],x$pos[max(scanned.loci.i)]),rep(log.seqp[i],2)) #plot an asterisk/circle on each locus combined at height of -log10p[i] points(x$pos[setdiff(scanned.loci.i, x$scanned.loci[i,1])],rep(log.seqp[i],length(scanned.loci.i)-1), ...) } } if(single) { lines(x$pos,log.single.p,lty=2) } axis(1,at=x$pos, labels=x$locus.label, ...) # adj=0, las=2, cex.axis=.8 invisible() } haplo.stats/R/haplo.power.qt.q0000644000176200001440000000327514672315242015773 0ustar liggesusers#$Author: sinnwell $ #$Date: 2008/02/28 15:59:27 $ #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/haplo.power.qt.q,v 1.1 2008/02/28 15:59:27 sinnwell Exp $ #$Locker: $ #$Log: haplo.power.qt.q,v $ #Revision 1.1 2008/02/28 15:59:27 sinnwell #Initial revision # haplo.power.qt <- function(haplo, haplo.freq, base.index, haplo.beta, y.mu, y.var, alpha, sample.size=NULL, power=NULL) { if(is.null(power) & is.null(sample.size)) { stop("Must specify either power or sample.size") } if(!is.null(power) & !is.null(sample.size)) { stop("Must specify only one of power or sample.size") } ncp <- haplo.power.qt.ncp(haplo=haplo, haplo.freq=haplo.freq, base.index=base.index, haplo.beta=haplo.beta, y.mu=y.mu, y.var=y.var) if(is.null(sample.size) & !is.null(power)) { ss.phased.haplo <- f.sample.size(nc=ncp$ncp.f.phased.haplo, df1=ncp$df, alpha=alpha, power=power) ss.unphased.haplo <- f.sample.size(nc=ncp$ncp.f.unphased.haplo, df1=ncp$df, alpha=alpha, power=power) power.phased.haplo <- power power.unphased.haplo <- power } if(is.null(power) & !is.null(sample.size)) { power.phased.haplo <- f.power(n=sample.size, nc=ncp$ncp.f.phased.haplo,df1=ncp$df, alpha=alpha) power.unphased.haplo <- f.power(n=sample.size, nc=ncp$ncp.f.unphased.haplo,df1=ncp$df, alpha=alpha) ss.phased.haplo <- sample.size ss.unphased.haplo <- sample.size } return(list(ss.phased.haplo=ss.phased.haplo, ss.unphased.haplo=ss.unphased.haplo, power.phased.haplo=power.phased.haplo, power.unphased.haplo=power.unphased.haplo)) } haplo.stats/R/plot.haplo.score.slide.q0000644000176200001440000001301514672370746017406 0ustar liggesusers#$Author: sinnwell $ #$Date: 2008/01/04 20:47:47 $ #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/plot.haplo.score.slide.q,v 1.12 2008/01/04 20:47:47 sinnwell Exp $ #$Locker: $ #$Log: plot.haplo.score.slide.q,v $ #Revision 1.12 2008/01/04 20:47:47 sinnwell #add ... to lines, allowing col(or) and lty specification. Make exception calls to axis in R and S, S allows srt and doesn't use col; R doesn't allow srt and uses color to undesirably color the axis # #Revision 1.11 2007/05/29 15:53:29 sinnwell #take out las and cex.axis, left for user to pass in ... # #Revision 1.10 2007/05/22 20:32:39 sinnwell #change cex to cex.axis, las does what srt did in Splus, 1=horizontal, 2-vertical # #Revision 1.9 2007/04/25 20:32:45 sinnwell #*** empty log message *** # #Revision 1.8 2007/04/12 20:49:51 sinnwell #re-set zero p-values for global to epsilon = 1e-10 # #Revision 1.7 2007/04/03 21:10:06 sinnwell #use epsilon as minimum p-value #give warnings if pval 1 && !x$simulate) stop("\nRequested to plot simulated p-values, but no simulations performed!") #if p-values are close to zero ( < epsilon) then find some minimum to plot # minimum depends on which pval choice epsilon <- 1e-10 switch(pval, global = { p <- x$df$score.global.p if(min(p[p>0]) < epsilon) epsilon <- min(p[p>0]) if(sum((p > epsilon)) < length(p)) cat(paste("Some p-values equivalent to zero, plotted as ", epsilon, "\n")) lnp <- (-1)*log10(ifelse(p < epsilon, epsilon, p)) ylabel="-log10(score.global.p)" }, global.sim = { eq.zero <- which(x$df$global.p.sim == 0) lnp <- (-1)*log10(x$df$global.p.sim) if(length(eq.zero)) { cat(paste("Some p-values are equivalent to zero, set to 0.5 / nsim \n")) lnp[eq.zero] <- (-1)*log10(.5/x$n.val.global[eq.zero]) } ylabel="-log10(global.p.sim)" }, max.sim = { eq.zero <- which(x$df$max.p.sim == 0) lnp <- (-1)*log10(x$df$max.p.sim) if(length(eq.zero)) { cat(paste("Some p-values are equivalent to zero, set to 0.5 / nsim \n")) lnp[eq.zero] <- (-1)*log10(.5/x$n.val.haplo[eq.zero]) } ylabel="-log10(max.p.sim)" }) # prepare x.axis marks for the loci, based on dist.vec x.axis.vec <- dist.vec-min(dist.vec) x.axis.vec <- x.axis.vec*(x$n.loci-1)/max(x.axis.vec) + 1 # for R, las controls label rotation on the x-axis labels # for Splus x-axis, convert las to srt (degrees) 1=horizontal (0deg) 2=perpendicular (90deg) # set below where necessary # plot outer region, then the axis with locus labels plot(x=c(1,x$n.loci),y=c(0,max(lnp)),type="n",ylab=ylabel,xlab="",xaxt="n", ...) axis(1,at=x.axis.vec, labels=x$locus.label) # plot a line for each set of n.slide loci at height of -log10p[i] for (i in x$df$start.loc) { end.loc <- i + x$n.slide - 1 lines(c(x.axis.vec[i],x.axis.vec[end.loc]),c(lnp[i],lnp[i]), ...) } invisible() } haplo.stats/R/print.seqhap.q0000644000176200001440000000754714672315242015534 0ustar liggesusers#$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/print.seqhap.q,v 1.6 2011/11/22 20:29:22 sinnwell Exp $ #$Locker: $ #$Log: print.seqhap.q,v $ #Revision 1.6 2011/11/22 20:29:22 sinnwell #take out S exception # #Revision 1.5 2009/03/04 14:57:30 sinnwell #for R use pchisq( x, p, lower=FALSE) instead of 1-pchisq # #Revision 1.4 2008/09/23 19:07:54 sinnwell #use digits on signif(p, digits) for region-based p-values # #Revision 1.3 2007/05/25 15:38:20 sinnwell #change inlist to scanned.loci # #Revision 1.2 2007/04/16 20:11:29 sinnwell #add ... # #Revision 1.1 2007/04/06 19:31:34 sinnwell #Initial revision # #$Author: sinnwell $ #$Date: 2011/11/22 20:29:22 $ # License: # # Copyright 2003 Mayo Foundation for Medical Education and Research. # # This program is free software; you can redistribute it and/or modify it under the terms of # the GNU General Public License as published by the Free Software Foundation; either # version 2 of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for # more details. # # You should have received a copy of the GNU General Public License along with this # program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, # Boston, MA 02111-1307 USA # # For other licensing arrangements, please contact Daniel J. Schaid. # # Daniel J. Schaid, Ph.D. # Division of Biostatistics # Harwick Building Room 775 # Mayo Clinic # 200 First St., SW # Rochester, MN 55905 # # phone: 507-284-0639 # fax: 507-284-9542 # email: schaid@mayo.edu # print.seqhap <- function(x, digits=max(options()$digits-2, 5), ...) { if(x$converge==0) warning("EM for haplotype probabilities failed to converge") else { printBanner("Single-locus Chi-square Test") cat("Regional permuted P-value based on single-locus test is ", signif(x$chi.p.region, digits),"\n") chi.test <- data.frame(chi.stat=round(x$chi.stat,digits), perm.point.p=x$chi.p.point, asym.point.p= round(pchisq(x$chi.stat,1, lower.tail=FALSE),digits)) row.names(chi.test) <- c(x$locus.label) print(chi.test) cat("\n\n") printBanner("Sequential Scan") cat("Loci Combined in Sequential Analysis\n") scanned.loci <- x$scanned.loci for(i in 1:dim(scanned.loci)[1]){ cat('seq-') cat(x$locus.label[i], scanned.loci[i,scanned.loci[i,]!=0], sep=" ","\n") } cat("\n\n") printBanner("Sequential Haplotype Test") cat("Regional permuted P-value based on sequential haplotype test is ", signif(x$hap.p.region, digits),"\n") hap.test <- data.frame(hap.stat=round(x$hap.stat,digits), df=x$hap.df, perm.point.p=x$hap.p.point, asym.point.p= round(pchisq(x$hap.stat,x$hap.df, lower.tail=FALSE),digits)) row.names(hap.test) <- paste(rep('seq-',length(x$locus.label)), x$locus.label,sep='') print(hap.test) cat("\n\n") printBanner("Sequential Sum Test") cat("Regional permuted P-value based on sequential sum test is ", signif(x$sum.p.region, digits),"\n") sum.test <- data.frame(sum.stat=round(x$sum.stat,digits), df=x$sum.df, perm.point.p=x$sum.p.point, asym.point.p = round(pchisq(x$sum.stat,x$sum.df, lower.tail=FALSE),digits)) row.names(sum.test) <- paste(rep('seq-',length(x$locus.label)), x$locus.label,sep='') print(sum.test) } invisible() } haplo.stats/R/plot.haplo.score.q0000644000176200001440000000331514672315242016277 0ustar liggesusers#$Author: sinnwell $ # #$Date: 2003/08/26 16:39:04 $ # #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/plot.haplo.score.q,v 1.3 2003/08/26 16:39:04 sinnwell Exp $ # #$Id: plot.haplo.score.q,v 1.3 2003/08/26 16:39:04 sinnwell Exp $ # #$Locker: $ # #$Log: plot.haplo.score.q,v $ #Revision 1.3 2003/08/26 16:39:04 sinnwell #change license statement # #Revision 1.2 2003/03/06 23:20:13 sinnwell #add license text # #Revision 1.1 2002/09/09 19:53:18 sinnwell #Initial revision # # License: # # Copyright 2003 Mayo Foundation for Medical Education and Research. # # This program is free software; you can redistribute it and/or modify it under the terms of # the GNU General Public License as published by the Free Software Foundation; either # version 2 of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for # more details. # # You should have received a copy of the GNU General Public License along with this # program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, # Boston, MA 02111-1307 USA # # For other licensing arrangements, please contact Daniel J. Schaid. # # Daniel J. Schaid, Ph.D. # Division of Biostatistics # Harwick Building Room 775 # Mayo Clinic # 200 First St., SW # Rochester, MN 55905 # # phone: 507-284-0639 # fax: 507-284-9542 # email: schaid@mayo.edu # plot.haplo.score <- function(x, ...){ plot(x$hap.prob, x$score.haplo, xlab="Haplotype Frequency", ylab="Haploltype Score Statistic", ...) invisible() } haplo.stats/R/summary.haplo.glm.q0000644000176200001440000000652214672315242016465 0ustar liggesusers#$Author: sinnwell $ #$Date: 2011/11/10 15:29:40 $ #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/summary.haplo.glm.q,v 1.1 2011/11/10 15:29:40 sinnwell Exp $ #$Locker: $ #$Log: #$ summary.haplo.glm <- function(object, show.all.haplo=FALSE, show.missing=FALSE, ...){ ## Scaled Residuals, and dispersion (a.phi) residList <- residScaledGlmFit(object) ## Deviance residuals d.resids <- residuals.haplo.glm(object, type="deviance") ## use residuals.haplo.glm to get deviance residuals ## Build haplotype frequency data.frame haplo.df<- function(x){ z <- x$haplo.common df <- as.matrix(x$haplo.unique[z,,drop=FALSE]) y <- x$haplo.freq[z] if(x$haplo.rare.term){ df <- rbind(df, rep("*",ncol(df))) y <- c(y, sum(x$haplo.freq[x$haplo.rare])) } # use dimnames to change row names do not convert from matrix to df dimnames(df)[[1]] <- x$haplo.names df <- rbind(df,x$haplo.unique[x$haplo.base,]) dimnames(df)[[1]][nrow(df)] <- "haplo.base" y <- c(y,x$haplo.freq[x$haplo.base]) data.frame(df,hap.freq=y) } ncoef <- length(object$coef) coef <- object$coef se <- sqrt(object$var.mat[cbind(1:ncoef, 1:ncoef) ]) wt <- object$prior.weights * object$haplo.post.info$post df.residual <- sum(wt) - length(object$coef) df.null <- sum(wt) - 1 t.stat <- coef/se pval <- 2*(1-pt(abs(t.stat), df.residual)) coeff.df <- cbind(coef=coef, se=se, t.stat=t.stat, pval=pval) aliased <- is.na(coef(object)) ## build modeled haplotypes data.frame hap.df <- haplo.df(object) ## build all.haplo data.frame if(show.all.haplo){ haplo.type <- rep(NA,length(object$haplo.freq)) haplo.type[object$haplo.common] <- "C" haplo.type[object$haplo.rare] <- "*" haplo.type[object$haplo.base] <- "B" full.haplotypes <- data.frame(object$haplo.unique, hap.freq = object$haplo.freq, hap.type=haplo.type) } else { full.haplotypes=NULL } if(show.missing) { miss.tbl <- apply(1*object$missing, 2, sum) } else { miss.tbl <- NULL } keep <- match(c("call", "terms", "family", "deviance", "null.deviance", "aic", "iter"), names(object)) ans <- c(object[keep], list(df.residual=df.residual, df.null=df.null, dispersion=residList$a.phi, deviance.resid=d.resids, aliased=aliased, coefficients=coeff.df, cov.scaled=object$var.mat, haplotypes=hap.df, full.haplotypes=full.haplotypes, missing=miss.tbl)) class(ans) <- "summary.haplo.glm" return(ans) } print.summary.haplo.glm <- function(x,digits=max(getOption("digits")-3,3), ...) { ## print standard summary.glm, then extra haplotype and missing information ## from haplo.glm tmp <- x class(tmp) <- "summary.glm" print(tmp, digits=digits, ...) cat("\nHaplotypes:\n") print(x$haplotypes, digits=digits) if(!is.null(x$full.haplotypes)) { cat("\nAll Haplotypes:\n") print(x$full.haplotypes, digits=digits) cat("\n") cat(" B = base haplotype\n") cat(" C = common haplotype\n") cat(" * = rare haplotype\n") } if(!is.null(x$missing)) { cat("\nMissing Data:\n") cat(" Total subjects removed by NAs in y or x, \n") cat(" or all NAs in geno\n\n") print(x$missing) } cat("\n") invisible(x) } haplo.stats/R/haplo.power.qt.ncp.q0000644000176200001440000000776014672315242016555 0ustar liggesusers#$Author: sinnwell $ #$Date: 2008/04/29 17:15:39 $ #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/haplo.power.qt.ncp.q,v 1.4 2008/04/29 17:15:39 sinnwell Exp $ #$Locker: $ #$Log: haplo.power.qt.ncp.q,v $ #Revision 1.4 2008/04/29 17:15:39 sinnwell #F to FALSE # #Revision 1.3 2008/04/29 14:36:36 sinnwell #T to TRUE # #Revision 1.2 2008/03/10 19:01:07 sinnwell # call get.hapPair instead of re-used code # #Revision 1.1 2008/02/28 15:59:27 sinnwell #Initial revision # haplo.power.qt.ncp <- function(haplo, haplo.freq, base.index, haplo.beta, y.mu, y.var){ # compute noncentrality parameter (ncp) for score stat of # haplotype effects for a quantitative trait, for both # phased haplotypes and un-phased haplotypes # Create matrix of indices for all possible pairs of haplotypes haplo <- as.matrix(haplo) n.loci <- ncol(haplo) # haplo.indx <- expand.grid(1:n.haplo,1:n.haplo) # haplo.indx <- cbind(haplo.indx[,2],haplo.indx[,1]) # haplo.indx <- haplo.indx[haplo.indx[,1] <= haplo.indx[,2],] # Set up regression design matrices and beta coeff vectors # Design matrix using base.index as baseline, and assuming # haplotype effects are additive # haplo.reg <- (1:n.haplo)[-base.index] # x.haplo <- 1*outer(haplo.indx[,1], haplo.reg,"==") + 1*outer(haplo.indx[,2], haplo.reg,"==") # Compute prior genotype probs (geno = pair of haplotypes) # p.g <- haplo.freq[haplo.indx[,1]] * haplo.freq[haplo.indx[,2]] # p.g <- p.g * ifelse(haplo.indx[,1] == haplo.indx[,2], 1, 2) hapPair.lst <- get.hapPair(haplo, haplo.freq, base.index) p.g <- hapPair.lst$p.g x.haplo <- hapPair.lst$x.haplo haplo.indx <- hapPair.lst$haplo.indx # number of degrees of freedom; excludes intercept df <- ncol(x.haplo) x.mu <- apply(x.haplo * p.g, 2, sum) # E[V] if no ambiguous haplotypes x.mu.mat <- matrix(rep(x.mu, nrow(x.haplo)), nrow=nrow(x.haplo), byrow=TRUE) delta.x <- x.haplo - x.mu.mat t2 <- delta.x * p.g vx.complete <- t(t2) %*% delta.x # Genotype matrix, ignoring haplotype phase information. geno.mat <- NULL for(i in 1:n.loci){ t1 <- haplo[haplo.indx[,1],i] t2 <- haplo[haplo.indx[,2],i] a1 <- ifelse(t1 < t2, t1, t2) a2 <- ifelse(t2 > t1, t2, t1) geno.mat <- cbind(geno.mat, a1, a2) } # create haplo.group which gives a code for pairs of # haplotypes that fall into the same genotype group when phase is unk geno.hash <- haplo.hash(geno.mat) haplo.group <- geno.hash$hash # order by haplo.group ord <- order(haplo.group) p.g <- p.g[ord] haplo.group <- haplo.group[ord] x.haplo <- x.haplo[ord,] # create posterior probabilities of haplotype pairs, # conditional on haplo.group p.haplo.group <- tapply(p.g, haplo.group, sum) nrep <- tapply(haplo.group, haplo.group, length) denom <- rep(p.haplo.group, nrep) post <- p.g/denom # E[V] matrix and E[U] vector n.group <- length(unique(haplo.group)) nx <- ncol(x.haplo) vx.incomplete <- matrix(numeric(nx^2), nrow=nx) for(i in 1:n.group){ zed <- (haplo.group == i) tmp.x.mu <- as.vector(apply(x.haplo[zed,,drop=FALSE] * post[zed], 2, sum)) tmp.delta <- (tmp.x.mu - x.mu) vx.incomplete <- vx.incomplete + ( (tmp.delta %o% tmp.delta) * p.haplo.group[i]) } # Model R^2 for incomplete and complete observed haplotypes r2.phase.unknown <- (t(haplo.beta[-base.index]) %*% vx.incomplete %*% haplo.beta[-base.index])/y.var r2.phase.known <- (t(haplo.beta[-base.index]) %*% vx.complete %*% haplo.beta[-base.index])/y.var # NCP's ncp.chi.phase.known <- r2.phase.known ncp.chi.phase.unknown <- r2.phase.unknown ncp.f.phase.known <- r2.phase.known/(1 - r2.phase.known) ncp.f.phase.unknown <- r2.phase.unknown/(1 - r2.phase.unknown) return(list(ncp.chi.phased.haplo = ncp.chi.phase.known, ncp.f.phased.haplo = ncp.f.phase.known, ncp.chi.unphased.haplo = ncp.chi.phase.unknown, ncp.f.unphased.haplo = ncp.f.phase.unknown, df=df)) } haplo.stats/R/haplo.em.fitter.q0000644000176200001440000001035414672315242016105 0ustar liggesusers#$Author: schaid $ #$Date: 2007/02/27 20:15:24 $ #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/haplo.em.fitter.q,v 1.5 2007/02/27 20:15:24 schaid Exp $ #$Locker: $ #$Log: haplo.em.fitter.q,v $ #Revision 1.5 2007/02/27 20:15:24 schaid #control max.haps.limit with checkIntMax (see haplo.em and haplo_em_pin) # #Revision 1.4 2004/03/19 15:02:44 sinnwell #keep PACKAGE in all .C calls, required for R, '...' for Splus # #Revision 1.3 2004/03/17 21:06:24 sinnwell #separate calls for .C( for R and Splus # #Revision 1.2 2003/08/26 22:09:38 sinnwell #added GPL License # #Revision 1.1 2003/08/26 21:02:24 schaid #Initial revision # # License: # # Copyright 2003 Mayo Foundation for Medical Education and Research. # # This program is free software; you can redistribute it and/or modify it under the terms of # the GNU General Public License as published by the Free Software Foundation; either # version 2 of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for # more details. # # You should have received a copy of the GNU General Public License along with this # program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, # Boston, MA 02111-1307 USA # # For other licensing arrangements, please contact Daniel J. Schaid. # # Daniel J. Schaid, Ph.D. # Division of Biostatistics # Harwick Building Room 775 # Mayo Clinic # 200 First St., SW # Rochester, MN 55905 # # phone: 507-284-0639 # fax: 507-284-9542 # email: schaid@mayo.edu # haplo.em.fitter <- function( n.loci, n.subject, weight, geno.vec, n.alleles, max.haps, max.iter, loci.insert.order, min.posterior, tol, insert.batch.size, random.start, iseed1, iseed2, iseed3, verbose){ converge <- 0 min.prior <- 0.0 n.unique <- 0 lnlike <- 0.0 n.u.hap <- 0 n.hap.pairs <- 0 on.exit( .C("haplo_free_memory", PACKAGE="haplo.stats") ) tmp1 <- .C("haplo_em_pin", n.loci=as.integer(n.loci), n.subject=as.integer(n.subject), weight=as.double(weight), geno.vec=as.integer(geno.vec), n.alleles = as.integer(n.alleles), max.haps = as.integer(max.haps), max.iter=as.integer(max.iter), loci.insert.order=as.integer(loci.insert.order), min.prior=as.double(min.prior), min.posterior=as.double(min.posterior), tol=as.double(tol), insert.batch.size=as.integer(insert.batch.size), converge=as.integer(converge), lnlike=as.double(lnlike), n.u.hap=as.integer(n.u.hap), n.hap.pairs=as.integer(n.hap.pairs), random.start=as.integer(random.start), iseed1=as.integer(iseed1), iseed2=as.integer(iseed2), iseed3=as.integer(iseed3), verbose=as.integer(verbose), PACKAGE="haplo.stats") tmp2 <- .C("haplo_em_ret_info", n.u.hap=as.integer(tmp1$n.u.hap), n.loci=as.integer(tmp1$n.loci), n.pairs=as.integer(tmp1$n.hap.pairs), hap.prob=as.double(numeric(tmp1$n.u.hap)), u.hap=as.integer(numeric(tmp1$n.u.hap*tmp1$n.loci)), u.hap.code=as.integer(numeric(tmp1$n.u.hap)), indx.subj=as.integer(numeric(tmp1$n.hap.pairs)), post=as.double(numeric(tmp1$n.hap.pairs)), hap1code=as.integer(numeric(tmp1$n.hap.pairs)), hap2code=as.integer(numeric(tmp1$n.hap.pairs)), PACKAGE="haplo.stats") obj <- list(tmp1=tmp1, tmp2=tmp2) return(obj) } haplo.stats/R/varfunc.glm.fit.q0000644000176200001440000000224214672315242016106 0ustar liggesusers#$Author: sinnwell $ #$Date: 2003/12/24 17:35:55 $ #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/varfunc.glm.fit.q,v 1.3 2003/12/24 17:35:55 sinnwell Exp $ #$Locker: $ #$Log: varfunc.glm.fit.q,v $ #Revision 1.3 2003/12/24 17:35:55 sinnwell #fix the check for "logit" and "log" links to work in S and R # #Revision 1.2 2003/11/17 23:27:53 schaid #made compatible with R # #Revision 1.1 2003/09/16 16:03:28 schaid #Initial revision # varfunc.glm.fit <- function(fit){ # Given a glm model fit, compute the variance function, b''(theta), # where theta = X'B switch(as.character(fit$family[1]), "Binomial"= , "binomial" = { if(grep("logit",casefold(fit$family[2][[1]])) < 0) stop("Only logit link for binomial") fit$fitted.values * (1 - fit$fitted.values) }, "Gaussian"=, "gaussian" = { rep(1, length(fit$fitted.values)) }, "Poisson"=, "poisson" = { if(grep("log",casefold(fit$family[2][[1]])) < 0) stop("Only log link for poisson") fit$fitted.values }, stop(paste("Variance function for",fit$family[1],"not defined")) ) } haplo.stats/R/print.haplo.score.merge.q0000644000176200001440000000776214672315242017565 0ustar liggesusers#$Author: sinnwell $ #$Date: 2005/03/30 16:40:22 $ #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/print.haplo.score.merge.q,v 1.10 2005/03/30 16:40:22 sinnwell Exp $ #$Locker: $ #$Log: print.haplo.score.merge.q,v $ #Revision 1.10 2005/03/30 16:40:22 sinnwell #remove banner.width from printBanner # #Revision 1.9 2004/04/07 14:08:59 sinnwell #use nlines for quick print # #Revision 1.8 2004/02/26 23:07:36 sinnwell #print.banner to printBanner # #Revision 1.7 2003/10/03 19:32:38 sinnwell #fix for R release, handles match.call different # #Revision 1.6 2003/08/26 16:37:57 sinnwell #change license # #Revision 1.5 2003/06/19 22:05:04 sinnwell #re-assign row numbers # #Revision 1.4 2003/06/19 13:46:02 sinnwell #add order.by and all.haps options. default is order by score and all.haps=F # #Revision 1.3 2003/04/15 18:40:24 sinnwell #fix merge.bin to x # #Revision 1.2 2003/03/06 22:08:40 sinnwell #insert license, and change getting n.loci # #Revision 1.1 2003/01/17 16:29:47 sinnwell #Initial revision # # License: # # Copyright 2003 Mayo Foundation for Medical Education and Research. # # This program is free software; you can redistribute it and/or modify it under the terms of # the GNU General Public License as published by the Free Software Foundation; either # version 2 of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for # more details. # # You should have received a copy of the GNU General Public License along with this # program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, # Boston, MA 02111-1307 USA # # For other licensing arrangements, please contact Daniel J. Schaid. # # Daniel J. Schaid, Ph.D. # Division of Biostatistics # Harwick Building Room 775 # Mayo Clinic # 200 First St., SW # Rochester, MN 55905 # # phone: 507-284-0639 # fax: 507-284-9542 # email: schaid@mayo.edu # print.haplo.score.merge <- function(x, order.by="score", all.haps=FALSE, digits=max(options()$digits-2, 5), nlines=NULL, ...) { ### Print haplo.score.merge object to screen if (!inherits(x, 'haplo.score.merge')) stop("Not an object of class haplo.score.merge!") m.call <- match.call() noOrder <- is.na(pmatch("order.by", names(m.call))) noAll.haps <- is.na(pmatch("all.haps", names(m.call))) noDigits <- is.na(pmatch("digits", names(m.call))) if (!noOrder) order.by <- m.call[[3]] if (!noAll.haps) { if(!noOrder) all.haps <- m.call[[4]] else all.haps <- m.call[[3]] } # if(length(m.call[[3]])) order.by <- m.call[[3]] # if(length(m.call[[4]])) all.haps <- m.call[[4]] n.loci <- (1:length(names(x)))[names(x)=="Hap-Score"] - 1 order.vec <- c("score","freq","haplotype") order.int <- pmatch(order.by, order.vec) if(all(is.na(order.int))) order.int <- 1 order.by <- order.vec[order.int] #if all.haps not requested, then subset to only those w/ a score if(!all.haps) x <- x[1:length(na.omit(x$"Hap-Score")),] # Combine haplotypes and results # round numeric columns to set length digits df.print <- data.frame(x[,1:n.loci], round(x[,(n.loci+1):ncol(x)],digits)) # select between 3 different orderings switch(order.by, score = { ord <- 1:nrow(x) }, freq = { ord <- (1:nrow(x))[order(x$"Hap-Freq")] }, haplotype = { ord <- as.numeric(attributes(haplo.hash(df.print[,1:n.loci])$hap.mtx)$row.names) }) cat("\n\n") printBanner("Haplotype Scores, p-values, and Frequencies By Group", border = "-") df.print <- data.frame(df.print[ord,], row.names=NULL) if(is.null(nlines)) print(df.print, digits=digits, ...) else print(df.print[1:nlines,], digits=digits, ...) invisible() } haplo.stats/R/f.power.q0000644000176200001440000000200314672315242014456 0ustar liggesusers#$Author: sinnwell $ #$Date: 2008/02/28 15:59:27 $ #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/f.power.q,v 1.1 2008/02/28 15:59:27 sinnwell Exp $ #$Locker: $ #$Log: f.power.q,v $ #Revision 1.1 2008/02/28 15:59:27 sinnwell #Initial revision # f.power <- function(n, nc, df1, alpha){ # power based on sample size n, non-centrality nc, # degrees of freedom df1 and df2, and type-I error alpha df2 <- n - df1 -1 if(df2 < 0) df2 <- 1 1 - pf(qf(1-alpha, df1, df2), df1, df2, n*nc) } f.power.dif <- function(n, nc, df1, alpha, power) { # difference from target power -- for finding sample size p.dif <- f.power(n, nc, df1, alpha) - power return(p.dif) } f.sample.size <- function(nc, df1, alpha, power, lower=20, upper=10000){ # sample size from noncentrality nc, degrees of freedom df root <- ceiling(uniroot(f.power.dif, lower=lower, upper=upper, nc=nc, df1=df1, alpha=alpha, power=power, tol=0.0001)$root) return(root) } haplo.stats/R/seqhap.q0000644000176200001440000001262414672315242014371 0ustar liggesusers#$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/seqhap.q,v 1.7 2011/11/10 15:29:40 sinnwell Exp $ #$Locker: $ #$Log: seqhap.q,v $ #Revision 1.7 2011/11/10 15:29:40 sinnwell #major update to hapglm, minor changes to Rd files, prepare for version 1.5.0 release # #Revision 1.6 2008/09/26 21:40:50 sinnwell #add sim.control parameters # #Revision 1.5 2007/05/25 15:38:53 sinnwell #change inlist to scanned.loci # #Revision 1.4 2007/05/23 18:02:33 sinnwell #add n.sim to result # #Revision 1.3 2007/05/23 14:13:08 sinnwell #add locus.label arg, and return pos in the return list # #Revision 1.2 2007/04/17 15:18:02 sinnwell #change F to FALSE for R check # #Revision 1.1 2007/04/06 19:30:46 sinnwell #Initial revision # #$Author: sinnwell $ #$Date: 2011/11/10 15:29:40 $ # License: # # Copyright 2003 Mayo Foundation for Medical Education and Research. # # This program is free software; you can redistribute it and/or modify it under the terms of # the GNU General Public License as published by the Free Software Foundation; either # version 2 of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for # more details. # # You should have received a copy of the GNU General Public License along with this # program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, # Boston, MA 02111-1307 USA # # For other licensing arrangements, please contact Daniel J. Schaid. # # Daniel J. Schaid, Ph.D. # Division of Biostatistics # Harwick Building Room 775 # Mayo Clinic # 200 First St., SW # Rochester, MN 55905 # # phone: 507-284-0639 # fax: 507-284-9542 # email: schaid@mayo.edu # #Required inputs: geno, disease, pos #geno: a (n-by-p) genotype matrix, where is n is the number of subjects, # and p is twice of the number of SNPs. #disease: a vector of length n. #pos: a vector of length (p/2). ############### Example ################# #mydata <- read.table("seqhap.dat") #mydata.y <- mydata[,1] #mydata.x <- mydata[,-1] #pos <- unlist(read.table("seqhap.pos")) #tmp <- seqhap(geno=mydata.x,disease=mydata.y,pos) ###################################### seqhap <- function(y, geno, pos, locus.label=NA, weight=NULL, mh.threshold=3.84, r2.threshold=.95, haplo.freq.min=0.005, miss.val=c(0,NA), sim.control=score.sim.control(), control=haplo.em.control()) { y=as.integer(factor(unlist(y)))-1 weight=unlist(weight) pos=unlist(pos) if(dim(geno)[1]!=length(y)) { print('error') return(0)} if(!is.null(weight) && dim(geno)[1]!=length(y)){ print('error') return(0)} nsnp <- dim(geno)[2]/2 nsub <- dim(geno)[1] # get haplotype frequencies obj <- haplo.em(geno, locus.label=locus.label, miss.val=miss.val,control=control) y <- y[obj$subj.id]#expand the disease status subjid <- obj$subj.id hapmatrix <- obj$haplotype nhap <- dim(hapmatrix)[1] hap1 <- obj$hap1code hap2 <- obj$hap2code if(!is.null(weight)) post <- weight[obj$subj.id]*obj$post else post <- obj$post seed <- sample(29999,3,replace=FALSE) npost <- length(obj$subj.id) #convert hap and inlist to vectors hap <-as.numeric(apply(hapmatrix,2,factor)) - 1 inlist <- numeric(nsnp*nsnp) tmp <- .C("seqhapC", nsnp =as.integer(nsnp), nsub=as.integer(nsub), npost=as.integer(npost), nhap=as.integer(nhap), subjid=as.integer(subjid), hap=as.integer(hap), hap1=as.integer(hap1), hap2=as.integer(hap2), disease=as.integer(y), post=as.double(post), pos=as.double(pos), seed=as.integer(seed), n.sim=as.integer(sim.control$min.sim), min.sim=as.integer(sim.control$min.sim), max.sim=as.integer(sim.control$max.sim), p.threshold=as.double(sim.control$p.threshold), mh.threshold=as.double(mh.threshold), r2.threshold=as.double(r2.threshold), haplo.freq.min=as.double(haplo.freq.min), inlist=as.integer(inlist), hap.df=as.integer(numeric(nsnp)), hap.chi=as.double(numeric(nsnp)), hap.p.point=as.double(numeric(nsnp)), hap.p.region=as.double(0), sum.df=as.integer(numeric(nsnp)), sum.chi=as.double(numeric(nsnp)), sum.p.point=as.double(numeric(nsnp)), sum.p.region=as.double(0), chi.chi=as.double(numeric(nsnp)), chi.p.point=as.double(numeric(nsnp)), chi.p.region=as.double(0), PACKAGE="haplo.stats" ) ##convert inlist from vector to matrix inlist <- t(matrix(tmp$inlist,nsnp,nsnp)) results=list( converge=obj$converge, pos=pos, n.sim=tmp$n.sim, locus.label=obj$locus.label, scanned.loci=inlist, chi.stat=tmp$chi.chi, chi.p.point=tmp$chi.p.point, chi.p.region=tmp$chi.p.region, hap.stat=tmp$hap.chi, hap.df=tmp$hap.df, hap.p.point=tmp$hap.p.point, hap.p.region=tmp$hap.p.region, sum.stat=tmp$sum.chi, sum.df=tmp$sum.df, sum.p.point=tmp$sum.p.point, sum.p.region=tmp$sum.p.region) class(results) <- "seqhap" return(results) } haplo.stats/R/dglm.fit.q0000644000176200001440000000402514672315242014610 0ustar liggesusers#$Author: sinnwell $ #$Date: 2011/11/10 15:29:40 $ #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/dglm.fit.q,v 1.4 2011/11/10 15:29:40 sinnwell Exp $ #$Locker: $ #$Log: dglm.fit.q,v $ #Revision 1.4 2011/11/10 15:29:40 sinnwell #major update to hapglm, minor changes to Rd files, prepare for version 1.5.0 release # #Revision 1.3 2003/12/24 17:36:50 sinnwell # fix the check for "logit" and "log" links to work in S and R # #Revision 1.2 2003/11/17 23:27:35 schaid #made compatible with R # #Revision 1.1 2003/09/16 16:00:28 schaid #Initial revision # dglm.fit <- function(fit, mse=NULL){ # Given a glm model fit, compute the probability density P(y|Xb). # Note that mse has denom N if no prior.weights, or # sum(prior.weights) if they exist, and not N-p, where # p is the number of coefficients in the model. This is # because division by N gives the mle of the residual # variance, and this mle is needed for computing the # likelihood ratio test (LRT). Use of N-p leads to # biased LRT. switch(as.character(fit$family[1]), "Binomial"= , "binomial" = { # for binomial, fitted.values = P(y=1|Xb) ifelse(fit$y==1, fit$fitted.values, (1-fit$fitted.values)) }, "Gaussian"=, "gaussian" = { y <- fit$y mu <- fit$fitted.values if(is.null(mse)) { if(is.null(fit$prior.weights)){ mse <- sum((y-mu)^2)/length(fit$y) } if(!is.null(fit$prior.weights)){ mse <- sum(fit$prior.weights*(y-mu)^2)/sum(fit$prior.weights) } } ## cat("mse=", mse, "\n") dnorm(y, mean=mu, sd=sqrt(mse) ) }, "Poisson"=, "poisson" = { if(grep("log",casefold(fit$family[2][[1]])) < 0) stop("Only log link for poisson") lamda <- exp(fit$linear.predictors) dpois(fit$y,lamda) }, stop(paste("Methods for",fit$family[1],"not defined")) ) } haplo.stats/R/haplo.score.podds.q0000644000176200001440000001055114672315242016432 0ustar liggesusers#$Author: sinnwell $ # #$Date: 2003/12/08 19:42:08 $ # #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/haplo.score.podds.q,v 1.4 2003/12/08 19:42:08 sinnwell Exp $ # #$Id: haplo.score.podds.q,v 1.4 2003/12/08 19:42:08 sinnwell Exp $ # #$Locker: $ # #$Log: haplo.score.podds.q,v $ #Revision 1.4 2003/12/08 19:42:08 sinnwell # changed F,T to FALSE,TRUE # #Revision 1.3 2003/08/26 16:39:04 sinnwell #change license statement # #Revision 1.2 2003/03/06 23:15:59 sinnwell #add license text # #Revision 1.1 2002/09/09 19:53:18 sinnwell #Initial revision # # License: # # Copyright 2003 Mayo Foundation for Medical Education and Research. # # This program is free software; you can redistribute it and/or modify it under the terms of # the GNU General Public License as published by the Free Software Foundation; either # version 2 of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for # more details. # # You should have received a copy of the GNU General Public License along with this # program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, # Boston, MA 02111-1307 USA # # For other licensing arrangements, please contact Daniel J. Schaid. # # Daniel J. Schaid, Ph.D. # Division of Biostatistics # Harwick Building Room 775 # Mayo Clinic # 200 First St., SW # Rochester, MN 55905 # # phone: 507-284-0639 # fax: 507-284-9542 # email: schaid@mayo.edu # haplo.score.podds <- function(y, alpha, beta=NA, x.adj=NA, nreps, x.post, post, x){ ################################################################### # # If U=c(u.a, u.e, u.g), where # u.a = score for alpha's # u.e = score for unambiguous (x.adj) covariates # u.g = score for ambiguous haplotypes # # Then the upper triangle of Var(U) can be partitioned as # # | v.aa v.ae v.ag | | | # V(U) = | v.ee v.eg | = | v.11 v.12 | # | v.gg | | v.gg | # # where v.12 is composed of v.aa, v.ae, v.ee # v.12 is composed of v.ag, v.eg # # and Var(u.g) = v.gg - v.12 * v.12(inv) * t(v.12) # # The following computes each of the submatrices as needed # to determine u.g and Var(u.g) # ################################################################## adjusted <- TRUE if(any(is.na(x.adj))) adjusted <- FALSE if(adjusted) n.xadj <- ncol(x.adj) n.x <- ncol(x) K <- max(y) # to make suscripting easier, append Inf to front of alpha, # as place-holder for alpha[1] = Inf alpha <- c(Inf, alpha) if(adjusted){ s <- ifelse(y==1, 1, 1/(1 + exp(-(alpha[y ] + x.adj %*% beta ))) ) s.p <- ifelse(y==K, 0, 1/(1 + exp(-(alpha[y+1] + x.adj %*% beta ))) ) } if(!adjusted){ s <- ifelse(y==1, 1, 1/(1 + exp(-(alpha[y ] ))) ) s.p <- ifelse(y==K, 0, 1/(1 + exp(-(alpha[y+1] ))) ) } w1 <- (s*(1-s) - s.p*(1-s.p))/(s - s.p) u.mtx <- w1 * x.post u.score <- apply(u.mtx,2,sum) # compute information matrix for alpha-beta (v.ab) and alpha-alpha (v.aa) tmp1 <- (s + s.p^2 - 2*s*s.p)*s.p*(1-s.p)/(s-s.p)^2 tmp2 <- (s.p + s^2 - 2*s*s.p)*s*(1-s)/(s-s.p)^2 tmp3 <- s.p*(1-s.p)*s*(1-s)/(s-s.p)^2 v.ag <- matrix(rep(0, (K-1)*n.x), ncol=n.x) if(adjusted) v.ae <- matrix(rep(0, (K-1)*n.xadj), ncol=n.xadj) v.aa <- matrix(rep(0,(K-1)^2),ncol=(K-1)) n.subj <- length(y) for(j in 2:K){ wt <- rep(0,n.subj) wt <- ifelse(y==(j-1), (tmp1 - tmp3), wt) wt <- ifelse(y==j, (tmp2 - tmp3), wt) v.ag[(j-1),] <- apply(wt * x.post, 2,sum) if(adjusted) v.ae[(j-1),] <- apply(wt * x.adj, 2,sum) v.aa[(j-1),(j-1)] <- sum(tmp1[y==(j-1)]) + sum(tmp2[y==j]) if(j < K) v.aa[(j-1), j] <- -sum(tmp3[y==j]) } # fill in lower tri of v.aa to make it symmetric v.aa <- v.aa + t( (col(v.aa) > row(v.aa))*v.aa ) # Louis' method for v.gg w2 <- s*(1-s) + s.p*(1-s.p) t1 <- rep( (w2 - w1^2), nreps) * post v.gg <- t(x*t1) %*% x + t(u.mtx) %*% u.mtx if(adjusted){ v.ee <- t(w2*x.adj) %*% x.adj v.eg <- t(w2*x.adj) %*% x.post v.11 <- rbind( cbind(v.aa, v.ae), cbind(t(v.ae),v.ee) ) v.12 <- rbind(v.ag,v.eg) v.score <- v.gg - t(v.12) %*% solve(v.11) %*% v.12 } if(!adjusted){ v.score <- v.gg - t(v.ag) %*% solve(v.aa) %*% v.ag } return(list(u.score=u.score, v.score=v.score)) } haplo.stats/R/haplo.scan.obs.q0000644000176200001440000000507314672315242015720 0ustar liggesusers#$Author: sinnwell $ #$Date: 2005/03/28 22:26:58 $ #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/haplo.scan.obs.q,v 1.2 2005/03/28 22:26:58 sinnwell Exp $ #$Locker: $ #$Log: haplo.scan.obs.q,v $ #Revision 1.2 2005/03/28 22:26:58 sinnwell #changed from scan.obs # #Revision 1.1 2005/03/23 18:07:08 sinnwell #Initial revision # haplo.scan.obs <- function(y, em.obj, width) { # find a vector of maximum statistics for each locus # use observed values for y # for all locus subsets, save necessary h1.sub, h2.sub, post.sub, nrep # information for simulations # find haplotype probabilities, # re-use for needed posteriors on subsets id <- em.obj$subj.id nloci <- ncol(em.obj$haplotype) df <- numeric(0) # find all contiguous subsets of size 'width' or less within nloci save.lst <- list() i <- 1 for(k in 1:width) { start <- 1 end <- start+k-1 while(end<=nloci) { sub.loc <- start:end haplo.sub <- em.obj$haplotype[, sub.loc, drop=FALSE] sub.indx <- as.vector(unclass(factor(apply(haplo.sub, 1, paste, collapse = ",")))) # collapse prob of large haps into smaller p.sub <- tapply(em.obj$hap.prob,sub.indx, sum) # make the equivalent of new hap1code and hap2code # for subset of loci h1.sub <- sub.indx[em.obj$hap1code] h2.sub <- sub.indx[em.obj$hap2code] # find new priors for sub-haplotypes prior.sub <- p.sub[h1.sub]*p.sub[h2.sub] # heterozygous could happen two ways--twice the prob prior.sub <- ifelse(h1.sub==h2.sub, prior.sub, 2*prior.sub) denom <- tapply(prior.sub, id, sum) nrep <- table(id) post.sub <- prior.sub/rep(denom, nrep) if(length(table(c(h1.sub, h2.sub))) > 1) { # perform the test stat # don't need to keep anything for subset with only 1 possible hap test <- haplo.chistat(h1.sub, h2.sub, post.sub, y, nrep) df <- rbind(df, c(start, end, test)) save.lst[[i]] <- list(loci=c(start,end), h1.sub=h1.sub,h2.sub=h2.sub,post.sub=post.sub,nrep=nrep) i <- i+1 } start <- start+1 end <- end+1 } # end while() } # end for(width) # for each locus, find the max chistat of those which were # calculated on a set of loci (mrow) which included that locus maxstat.vec <- numeric(nloci) for(loc in 1:nloci) { # find max of chistats which came from subsets containing loc mrow <- (df[,1] <= loc) & (loc <= df[,2]) maxstat.vec[loc] <- max(df[mrow,3]) } return(list(svec=maxstat.vec,save.lst=save.lst)) } haplo.stats/R/haplo.score.q0000644000176200001440000004047614672370564015343 0ustar liggesusers#$Author: sinnwell $ #$Date: 2013/12/02 21:11:40 $ #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/haplo.score.q,v 1.32 2013/12/02 21:11:40 sinnwell Exp $ #$Locker: $ #$Log: haplo.score.q,v $ #Revision 1.32 2013/12/02 21:11:40 sinnwell #change rms::: to rms:: # #Revision 1.31 2013/01/14 19:33:16 sinnwell #small changes for 1.5.9 # #Revision 1.30 2011/12/05 20:56:10 sinnwell #final manual changes, updated test suite # #Revision 1.29 2011/11/23 20:34:02 sinnwell #release 1.4.81, updates with test scripts # #Revision 1.28 2009/04/09 14:31:37 sinnwell #*** empty log message *** # #Revision 1.27 2009/04/08 17:52:40 sinnwell # use R's pchisq with lower.tail=FALSE for more signif digits # #Revision 1.26 2008/04/08 20:26:22 sinnwell #add eps.svd, undo last changes with haplo.effect and control # #Revision 1.25 2008/04/07 21:54:51 sinnwell #make control parameter have eps.svd, haplo.effect, sim.control, em.control # #Revision 1.24 2008/04/04 14:15:17 sinnwell #change Ginv eps to 1e-5, sometimes gives full rank for v.score, when should be n.score-1 # #Revision 1.23 2008/04/01 20:53:07 sinnwell #added epsilon par to Ginv # #Revision 1.22 2007/02/26 22:01:12 sinnwell #remove row.rem code, it was deprecated in haplo.em #rows.rem is now miss, the index of rows removed in y, x.adj b/c of NA # # #Revision 1.21 2007/01/25 19:41:27 sinnwell #include haplo.effect for additive, recessive, dominant #include min.count as parameter, base skip.haplo on it. #Added a few comments for readability # #Revision 1.20 2006/10/25 15:09:54 sinnwell #rm Matrix library call, only done in Ginv.q # #Revision 1.19 2006/05/02 15:09:25 sinnwell #improve error messages # #Revision 1.18 2006/01/27 16:25:47 sinnwell #enforce dependency of Ginv on Matrix # #Revision 1.17 2005/11/01 14:49:22 sinnwell #*** empty log message *** # #Revision 1.16 2005/03/31 15:18:41 sinnwell #for g.inv of class Matrix, must have t(u.score)%*% g.inv # #Revision 1.15 2005/02/16 19:58:13 sinnwell #change some comments # #Revision 1.14 2004/12/29 17:35:18 sinnwell #default for skip.haplo is now 5/(nrow(geno)*2) # #Revision 1.13 2003/12/08 19:42:18 sinnwell # changed F,T to FALSE,TRUE # #Revision 1.12 2003/09/17 22:56:25 schaid #added check for var(u.score) < 0 when computing simulated haplo.score.sim # #Revision 1.11 2003/09/17 22:35:06 schaid #modified how max-stat and score.haplo simulated p-values account for NA #results (either NA for observed stat, or NA for simulated stats) # #Revision 1.10 2003/09/15 14:53:17 sinnwell #add in na.rm in score.max.sim calculation. #may be part of a bigger problem # #Revision 1.9 2003/09/11 21:27:54 sinnwell #change simulations to target both global and max for precision # #Revision 1.8 2003/08/27 21:19:06 sinnwell #*** empty log message *** # #Revision 1.7 2003/08/27 20:59:18 sinnwell #add rows.rem back into return list, it was needed in haplo.group # #Revision 1.6 2003/08/22 18:05:24 sinnwell #update for release of haplo.score 1.2.0 with 'PIN' # #Revision 1.4 2003/04/22 20:30:20 sinnwell #Revision 1.3 2003/03/06 21:48:45 sinnwell #include license statement # #Revision 1.2 2003/01/17 16:57:06 sinnwell #revision for haplo.score version 1.2 # # License: # # Copyright 2003 Mayo Foundation for Medical Education and Research. # # This program is free software; you can redistribute it and/or modify it under the terms of # the GNU General Public License as published by the Free Software Foundation; either # version 2 of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for # more details. # # You should have received a copy of the GNU General Public License along with this # program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, # Boston, MA 02111-1307 USA # # For other licensing arrangements, please contact Daniel J. Schaid. # # Daniel J. Schaid, Ph.D. # Division of Biostatistics # Harwick Building Room 775 # Mayo Clinic # 200 First St., SW # Rochester, MN 55905 # # phone: 507-284-0639 # fax: 507-284-9542 # email: schaid@mayo.edu # haplo.score <- function(y, geno, trait.type="gaussian", offset = NA, x.adj = NA, min.count=5, skip.haplo=min.count/(2*nrow(geno)), locus.label=NA, miss.val=c(0,NA), haplo.effect="additive", eps.svd=1e-5, simulate=FALSE, sim.control=score.sim.control(), em.control = haplo.em.control()) { call <- match.call() # Choose trait type: trait.int <- charmatch(trait.type, c("gaussian", "binomial", "poisson", "ordinal")) if(is.na(trait.int)) stop("Invalid trait type") if(trait.int == 0) stop("Ambiguous trait type") # Check dims of y and geno if(length(y)!=nrow(geno)) stop("length of y does not match number of rows in geno") n.loci <- ncol(geno)/2 if(n.loci != (floor(ncol(geno)/2)) )stop("geno has odd number of columns, need 2 columns per locus") # Check if Adjusted by Reg adjusted <- TRUE if(all(is.na(x.adj)) ) adjusted <- FALSE if(adjusted){ x.adj <- as.matrix(x.adj) if(nrow(x.adj)!=length(y)) stop("length of y does not match number of rows in x.adj") } # get haplo.effect effCode <- charmatch(casefold(haplo.effect), c("additive", "dominant", "recessive")) # General checks for missing data miss <- which(is.na(y)) if(adjusted) miss <- unique(c(miss, which(apply(is.na(x.adj),1,any)))) # If Poisson, check for errors and missing offset if(trait.int==3) { if(all(is.na(offset))) stop("Missing offset") miss <- unique(c(miss, which(is.na(offset)))) } # Subset to non-missing values: if(length(miss)) { y <- as.numeric(y[-miss]) geno <- geno[-miss,] if(adjusted) x.adj <- x.adj[-miss,,drop=FALSE] if(trait.int==3) offset <- offset[-miss] } # Create a haplo object (using EMhaps) haplo <- haplo.em(geno, locus.label, miss.val=miss.val, control = em.control) # Check convergence of EM if(!haplo$converge) stop("EM for haplo failed to converge") # If binomial, check for errors if(trait.int==2) { if(!all(y==1|y==0)) stop("Invalid y values") if(all(y==1) | all(y==0)) stop("No variation in y values") } # If Proportional Odds, recode and check y values if(trait.int==4){ y <- factor(y) y.lev <- levels(y) y <- as.numeric(y) if(max(y) < 3) stop("Less than 3 levels for y values") } n.subj <- length(y) # Computations for haplotype score statistics # code haplotypes per subject hap1 <- haplo$hap1code hap2 <- haplo$hap2code indx <- haplo$indx.subj post <- haplo$post nreps <- as.vector(haplo$nreps) uhap <- sort(unique(c(hap1,hap2))) # Choose to score haplotypes that have probabilities > skip.haplo which.haplo <- which(haplo$hap.prob >= skip.haplo) uhap <- uhap[which.haplo] x <- outer(hap1,uhap,"==") + outer(hap2,uhap,"==") # code x for additive haplotype effects x <- (1*outer(hap1,uhap,"==")) + (1*outer(hap2,uhap,"==")) if(effCode==2) { # translate x to dominant effect x <- 1*(x > 0) } if(effCode==3){ # translate x to recessive effect x <- (x > 1) * 1 } # apply posterior probs of the haplotype pair to the coding n.x <- ncol(x) x.post <- matrix(rep(NA, n.subj * n.x), ncol=n.x) for(j in 1:n.x){ x.post[,j] <- tapply(x[,j]*post, indx, sum) } # dominant and recessive models may have insufficient haplotype counts # if so, don't score them if(effCode > 1) { misshaps <- apply(x.post,2,sum) < min.count ##WARN for no haplotypes left to score if(all(misshaps)) stop(paste("Too few occurrences of haplotypes for model haplo.effect: ", haplo.effect, "\n")) # subset appropriate objects to reflect the reduction in haplotypes x.post <- x.post[,!misshaps,drop=FALSE] x <- x[,!misshaps,drop=FALSE] which.haplo <- which.haplo[!misshaps] } # SCORES FOR GLM's if(trait.int <= 3){ # If not adjusted, use summaries of y if(!adjusted){ mu <- switch(trait.int, mean(y), mean(y), sum(y)/sum(offset) ) a <- switch(trait.int, var(y), 1, 1) # if not adjusted, still need to set up x.adj, for intercept, # to be used by haplo.score.glm to compute score stat adjusted # for intercept x.adj <- matrix(rep(1,n.subj),ncol=1) } # If adjusted, use GLM to get fitted and residuals if(adjusted){ reg.out <- glm(y ~ x.adj, family=trait.type) # bind col of 1's for intercept: x.adj <- cbind(rep(1,n.subj),x.adj) mu <- reg.out$fitted.values a <- switch(trait.int, sum(reg.out$residuals^2)/reg.out$df.residual, 1, 1) } v <- switch(trait.int, 1/a, mu*(1-mu), mu ) # Now compute score statistics tmp <- haplo.score.glm(y, mu, a, v, x.adj, nreps, x.post, post, x) u.score <- tmp$u.score v.score <- tmp$v.score } # Scores for Proportional Odds if(trait.int==4) { if(adjusted){ requireNamespace("rms", quietly = TRUE) ## had: require(rms) reg.out <- rms::lrm(y ~ x.adj) K <- max(y) n.xadj <- ncol(x.adj) alpha <- reg.out$coef[1:(K-1)] beta <- reg.out$coeff[K:(K-1 + n.xadj)] tmp <- haplo.score.podds(y, alpha, beta, x.adj, nreps, x.post, post, x) } if(!adjusted){ tbl <- table(y) s <- 1- (cumsum(tbl)-tbl)/n.subj alpha <- - log((1-s[-1])/s[-1]) tmp <- haplo.score.podds(y, alpha, beta=NA, x.adj=NA, nreps, x.post, post, x) } u.score <- tmp$u.score v.score <- tmp$v.score } # Compute Score Statistics: tmp <- Ginv(v.score, eps=eps.svd) df <- tmp$rank g.inv <- tmp$Ginv score.global <- t(u.score)%*% g.inv %*%u.score score.haplo <- u.score / sqrt(diag(v.score)) score.max <- max(score.haplo^2, na.rm=TRUE) # Compute empirical p-values if simulate=TRUE if(!simulate) { score.global.p.sim <- NA score.haplo.p.sim <- rep(NA,length(score.haplo)) score.max.p.sim <- NA n.val.global <- NA n.val.haplo <- NA } else { # initialize rejection counts score.global.rej <- 0 score.haplo.rej <- rep(0,length(score.haplo)) score.max.rej <- 0 # initialize valid simulation counts. A simulation for the # global test can be invalid if the global statistic results # in an NA value. A simulation for the max stat, or the individual # haplotype scores, is declared invalid if any of the individual # haplotype score stats results in an NA value. However, there is # an exception. If the observed score statistic for an individual # haplotype is NA, this haplotype score is ignored in the simulations, # allowing the other haplotypes to have simulated p-values, and # the observed max stat ignores the score relating to this # haplotype with an NA value. n.val.global <- 0 n.val.haplo <- 0 score.haplo.sqr <- score.haplo^2 score.haplo.ok <- !is.na(score.haplo.sqr) if(trait.int<=3){ # Initialize mu.rand and v.rand, in case not adjusted (if adjusted, # then these will be over-ridden in simulation loop mu.rand <- mu v.rand <- v } ## Compute sequential Monte Carlo p-values as given by ## Besag and Clifford, Biometrika Jun 1991 ## Make sure max-stat and global pvals are accurate to ## within desired pval error range. ## Employ an extra rule: sample a min (default=1000) for enough ## samples to get good estimates of haplo.p.sim pvals done <- FALSE while(!done) { # random order rand.ord <- order(runif(n.subj)) if(trait.int <=3){ if(adjusted){ mu.rand <- mu[rand.ord] v.rand <- switch(trait.int, v, v[rand.ord], v[rand.ord]) } tmp <- haplo.score.glm(y[rand.ord], mu.rand, a, v.rand, x.adj[rand.ord,], nreps, x.post, post, x) } if(trait.int ==4){ if(adjusted) { tmp <- haplo.score.podds(y[rand.ord], alpha, beta, x.adj[rand.ord,,drop=FALSE],nreps, x.post, post, x) } if(!adjusted) { tmp <- haplo.score.podds(y[rand.ord], alpha, beta=NA, x.adj=NA,nreps, x.post, post, x) } } u.score <- tmp$u.score v.score <- tmp$v.score # Now compute score statistics tmp <- Ginv(v.score, eps=eps.svd) g.inv <- tmp$Ginv score.global.sim <- t(u.score) %*% g.inv %*% u.score # note that score.haplo.sim is squared, where score.haplo is not # because we want to keep the sign of score.haplo for returned # values score.haplo.sim <- ifelse(diag(v.score) < 0, NA, u.score^2 / diag(v.score) ) if(!is.na(score.global.sim)) { n.val.global <- n.val.global +1 if(score.global.sim >= score.global) score.global.rej <- score.global.rej +1 } ## for max stat, and individual haplotype scores, we require the ## same number of valid ## simulations, so that the haplotype-specific simuated ## p-values are all based on the ## same number of valid simulations. Without this, it would be impossible to ## know the confidence in the individual p-values. if(!any(is.na(score.haplo.sim))){ n.val.haplo <- n.val.haplo + 1 score.haplo.rej[score.haplo.ok] <- score.haplo.rej[score.haplo.ok] + ifelse(score.haplo.sim[score.haplo.ok] >= score.haplo.sqr[score.haplo.ok], 1, 0) score.max.sim <- max(score.haplo.sim[score.haplo.ok]) if(score.max.sim >= score.max) score.max.rej <- score.max.rej +1 } # h is target count of rejection obs to stop sampling # formula from Besag and Clifford h.global <- 1/(sim.control$p.threshold^2 + 1/max(1,n.val.global)) h.max <- 1/(sim.control$p.threshold^2 + 1/max(1,n.val.haplo)) # print the info out to screen if(sim.control$verbose) { cat("h.global:", round(h.global,5), ", global: ", score.global.rej, ", count: ", n.val.global, "\n") cat("h.max:", round(h.max,5), ", max-score: ", score.max.rej, ", count: ", n.val.haplo, "\n") } # done if reach max or enough rej values. If max is reached, # keep results and calculate p-vals at that point. if( (max(n.val.global,n.val.haplo) == sim.control$max.sim) | (h.global<=score.global.rej & h.max<=score.max.rej) ) done <- TRUE # not done if min.sim not met # this control is for haplo.sim values if(min(n.val.global, n.val.haplo) < sim.control$min.sim) done <- FALSE } score.global.p.sim <- score.global.rej / n.val.global score.haplo.p.sim <- rep(NA, length(score.haplo.rej)) score.haplo.p.sim[score.haplo.ok] <- score.haplo.rej[score.haplo.ok] / n.val.haplo score.max.p.sim <- score.max.rej / n.val.haplo } score.global.p <- pchisq(score.global, df, lower.tail=FALSE) score.haplo.p <- pchisq(score.haplo^2, 1, lower.tail=FALSE) # Create locus label if missing: if(all(is.na(locus.label))) { locus.label<- paste("loc-",1:n.loci,sep="") } obj <- (list(score.global=score.global, df=df,score.global.p=score.global.p, score.global.p.sim=score.global.p.sim, score.haplo=score.haplo,score.haplo.p=score.haplo.p, score.haplo.p.sim=score.haplo.p.sim, score.max.p.sim=score.max.p.sim, haplotype=haplo$haplotype[which.haplo,], hap.prob=haplo$hap.prob[which.haplo], locus.label=locus.label, simulate=simulate, call=call, haplo.effect=haplo.effect, n.val.global=n.val.global, n.val.haplo=n.val.haplo, rows.rem=miss)) class(obj) <- "haplo.score" return(obj) } haplo.stats/R/haplo.model.frame.q0000644000176200001440000002353214672370347016412 0ustar liggesusers#$Author: sinnwell $ #$Date: 2008/03/24 22:21:29 $ #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/haplo.model.frame.q,v 1.10 2008/03/24 22:21:29 sinnwell Exp $ #$Locker: $ #$Log: haplo.model.frame.q,v $ #Revision 1.10 2008/03/24 22:21:29 sinnwell #rm allele.lev, miss.val parameters # #Revision 1.9 2007/10/22 20:52:40 sinnwell #fix to allow effect of only rare haplo. Also some adjustments for this case in the dominant and recessive cases of the switch() # #Revision 1.8 2004/10/22 19:19:28 sinnwell #for recessive model, if sum(col[i]) is zero, subset accordingly #x.mat and haplo.common. Guard against 1-col left keep as data.frame # #Revision 1.7 2004/03/22 15:04:24 sinnwell #under last change for R, fixed stringsAsFactors problem # #Revision 1.6 2004/03/15 22:50:27 sinnwell #hapEM$haplotype is char for R, so convert to char, then integer # #Revision 1.5 2004/03/03 22:14:30 schaid #added allele.lev to allow this to work in R for character alleles # #Revision 1.4 2003/12/08 20:14:29 sinnwell # changed T,F to TRUE,FALSE # #Revision 1.3 2003/11/17 23:28:01 schaid #made compatible with R # #Revision 1.2 2003/10/06 15:45:49 sinnwell #change stop( ) line w/ '\n' char: R didn't understand # #Revision 1.1 2003/09/16 16:02:09 schaid #Initial revision # haplo.model.frame <- function(m, locus.label=NA, control=haplo.glm.control() ){ # Procedures to modify a glm model.frame by: # # 1. enumerating haplotypes, # 2. setup haplotype design matrix # 3. expand rows in the current model.frame (m), according to the # number of pairs of haplotypes consistent with a subject's marker data # 4. replace the model.matrix in m (which corresponds to unphased # genotpes) with a haplotype design matrix, and then return the # modified model.frame # Notes: # If there is a problem with "No haplotype freqs > haplo.min.freq" # the function has been changed to return an error message which # is then passed to the haplo.glm function. This prevents simulations # from crashing. # Input: # # m glm model.frame # # control = list with the following parameters: # # haplo.effect the model matrix coding of haplotypes # # haplo.base the baseline haplotype # # haplo.freq.min the minimum haplotype frequency for inclusion # of the haplotype as a distinct model covariate # # sum.rare.min the sum of the "rare" haplotype frequencies must # be larger than this number in order for a "rare" # haplotype term to be included in the model # # keep.rare.haplo a logical for inclusion of the rare haplotype in # the model. haplo.effect <- control$haplo.effect haplo.base <- control$haplo.base haplo.freq.min <- control$haplo.freq.min sum.rare.min <- control$sum.rare.min keep.rare.haplo <- control$keep.rare.haplo # check type of haplo.effect, by allowing partial matching, # and then code to abreviations chk <- charmatch(haplo.effect, c("additive", "dominant", "recessive")) if(is.na(chk)) stop("Invalid haplo.effect") if(chk == 0) stop("Ambiguous haplo.effect") haplo.effect <- c("add","dom","rec")[chk] # determine which factor in model frame is the geno matrix gindx <- mf.gindx(m) haplo.names <- names(m)[gindx] geno <- m[[gindx]] if(is.null(attributes(geno)$unique.alleles)) stop("Genotype matrix does not contain unique.alleles attribute, use setupGeno") allele.lev <- attributes(geno)$unique.alleles # Setup weights for use in EM wt <- model.extract(m, weights) if(!length(wt)){ wt <- rep(1, nrow(m)) } else if(any(wt < 0)){ stop("negative weights not allowed") } # EM algorithm for haplotype frequencies hapEM <- haplo.em(geno, locus.label=locus.label, miss.val=NA, weight=wt, control=control$em) if(!hapEM$converge){ stop("haplo.em failed to converge in haplo.model.frame. Try different control parameters for haplo.em.control - see haplo.glm.control") } # If any subects were removed by EM, need to remove them from model.frame if(length(hapEM$rows.rem)) { m <- m[-hapEM$rows.rem, , drop=FALSE] } # data for haplotype indices g.dat <- data.frame(hapEM$indx.subj, hapEM$hap1code, hapEM$hap2code) attr(g.dat,"names") <- c("indx.subj","hap1","hap2") indx.subj <- g.dat$indx.subj hap1code <- g.dat$hap1 hap2code <- g.dat$hap2 # haplotype frequencies haplo.freq <- hapEM$hap.prob ## Set up haplotype design matrix # create vector of unique haplotypes uhap <- sort(unique(c(hapEM$hap1code, hapEM$hap2code))) # if no base haplotype defined, then use most frequent haplotype as base if(is.null(haplo.base)) haplo.base <- uhap[haplo.freq == max(haplo.freq)] if(length(haplo.base) > 1) haplo.base <- haplo.base[1] if(sum(uhap==haplo.base)==0){ stop("Base haplotype not among possible haplotypes") } # check if any haplotypes remain after exclude base and rare haplotypes haplo.common <- uhap[(haplo.freq > haplo.freq.min) & uhap!=haplo.base] if(!keep.rare.haplo && length(haplo.common)==0) stop("No haplotypes effects to model") # now set up design matrix for add effects, with all haplotypes except base, # and later collapse over rare haplotypes x.common <- outer(hap1code, haplo.common, "==") + outer(hap2code, haplo.common, "==") haplo.rare <- uhap[(haplo.freq <= haplo.freq.min) & uhap!=haplo.base] x.rare <- outer(hap1code, haplo.rare, "==") + outer(hap2code, haplo.rare, "==") # find the haplotype frequencies for the rare haplotypes haplo.freq.rare <- haplo.freq[haplo.freq <= haplo.freq.min & uhap!=haplo.base] # now fix up design matrix for chosen haplo.effect # note: x.rare is added only if conditions for wanting it are # satisfied haplo.rare.term <- FALSE switch(haplo.effect, add = { x.hap <- x.common dimnames(x.hap) <- list(1:nrow(x.hap),haplo.common) if(length(haplo.rare)>0 & sum(haplo.freq.rare) > sum.rare.min & keep.rare.haplo == TRUE) { x.hap <- cbind(x.hap, apply(x.rare, 1, sum)) dimnames(x.hap) <- list(1:nrow(x.hap),c(haplo.common,"rare")) haplo.rare.term <- TRUE } }, dom = { x.hap <- if(ncol(x.common)) 1*(x.common >= 1) else x.common dimnames(x.hap) <- list(1:nrow(x.hap),haplo.common) if(length(haplo.rare)>0 & sum(haplo.freq.rare) > sum.rare.min & keep.rare.haplo == TRUE) { x.hap <- cbind(x.hap, 1*(apply(x.rare, 1, sum) >= 1) ) dimnames(x.hap) <- list(1:nrow(x.hap),c(haplo.common,"rare")) haplo.rare.term <- TRUE } }, rec = { x.hap <- if(ncol(x.common)) 1*(x.common == 2) else x.common dimnames(x.hap) <- list(1:nrow(x.hap),haplo.common) if(length(haplo.rare)>0 & sum(haplo.freq.rare) > sum.rare.min & keep.rare.haplo == TRUE) { x.hap <- cbind(x.hap, 1*(apply(x.rare, 1, sum) == 2)) dimnames(x.hap) <- list(1:nrow(x.hap),c(haplo.common,"rare")) haplo.rare.term <- TRUE } # because coding rec can result in columns of 0's, we need to check and # exclude cols of 0's ok <- apply(x.hap,2,sum) > 0 colname.ok <- dimnames(x.hap)[[2]][ok] if(sum(ok)==0) { stop("No homozygotes for rec haplo.effect") } else if(sum(ok)>0) { # subset x.hap, its dimnames and haplo.common # must also protect against 1 column left, don't drop to vector x.hap <- x.hap[,ok, drop=FALSE] dimnames(x.hap)[[2]] <- colname.ok if(length(haplo.common)) haplo.common <- haplo.common[ok[1:length(haplo.common)]] } }, stop("Method for haplo.effect not supported") ) # add a '.' before haplotype column name, so that names will be # cleaner when concatenating is done with other names x.names <- dimnames(x.hap)[[2]] haplo.names <- paste(haplo.names, x.names, sep=".") dimnames(x.hap)[[2]] <- paste(".",dimnames(x.hap)[[2]],sep="") class(x.hap) <- "model.matrix" # Now expand model.frame (by repeating rows) to account for enumerated haplotypes m <- m[indx.subj,] # replace the model.matrix object with haplotype design matrix, # keeping the old name of the chosen variable (model.matrix) m[[gindx]] <- x.hap attr(m,"row.names") <- 1:nrow(m) # The following code is used to create the allele labels for haplotypes. For R, # we need to use allele.lev (list of vectors, where each vector is the allele # labels for a locus). For S, we can either do the same, or rely on S's model.frame # to have taken care of this for us, when model.frame was called within haplo.glm if(is.null(allele.lev)){ stop("Missing allele.lev = list of vectors for labels of alleles\nCheck par list for haplo.glm") } nloci <- ncol(hapEM$haplotype) haplo.unique <- NULL for(j in 1:nloci){ haplo.unique <- cbind(haplo.unique, allele.lev[[j]][as.numeric(hapEM$haplotype[,j])] ) } dimnames(haplo.unique) <- dimnames(hapEM$haplotype) return(list(m.frame = m, g.dat = g.dat, haplo.unique = haplo.unique, haplo.base = haplo.base, haplo.freq = haplo.freq, haplo.common = haplo.common, haplo.rare = haplo.rare, haplo.rare.term = haplo.rare.term, haplo.names=haplo.names)) } haplo.stats/R/geno1to2.q0000644000176200001440000000421014672315242014536 0ustar liggesusers#$Author: sinnwell $ #$Date: 2011/02/21 19:08:17 $ #$Header: /projects/genetics/cvs/cvsroot/mgenet/R/geno1to2.q,v 1.1.1.1 2011/02/21 19:08:17 sinnwell Exp $ #$Locker: $ #$Log: geno1to2.q,v $ #Revision 1.1.1.1 2011/02/21 19:08:17 sinnwell #"initial, general functions for R genetics at Mayo BSI # #Revision 1.6 2007/05/14 15:33:24 sinnwell #remove na.code # #Revision 1.5 2007/04/20 20:03:32 sinnwell #replace unlistToMat with do.call("cbind"), use rep in assigning loc names # #Revision 1.3 2007/04/20 15:06:09 sinnwell #rm na.code and miss.val, only allow 0,1,2 values, the rest are NA # #Revision 1.2 2007/04/18 17:10:57 sinnwell #add locus.label option # #Revision 1.1 2006/08/11 21:53:42 sinnwell #Initial revision # ## $Id: geno1to2.q,v 1.1.1.1 2011/02/21 19:08:17 sinnwell Exp $ ## Jason Sinnwell, with contribution by Harold Ye ## Mayo Clinic, Division of Biostatistics ## 8/2006 ## convert a geno matrix with allele counts to a matrix where each locus ## is represented by 2 columns. geno1to2 <- function(geno, locus.label=NULL) { # define function to convert a vector or 0,1,2 (or NA) to alleles 1-1,1-2,2-2, respectively # to be used in apply statement below one2two <- function(macvec) { a1 <- ifelse(is.na(macvec), NA, ifelse(macvec==0,1,ifelse(macvec==2,2,1))) a2 <- ifelse(is.na(macvec), NA, ifelse(macvec==0,1,ifelse(macvec==2,2,2))) return(cbind(a1,a2)) } # recode missing values to NA. ## Any value that is not 0, 1, 2, "0", "1", "2", is considered an NA values <- unique(as.vector(as.matrix(geno))) imatch <- match(values, c(0,1,2)) cmatch <- match(values, c("0","1","2")) miss.vec <- values[ apply(is.na(cbind(imatch, cmatch)), 1, all) ] miss.notNA <- miss.vec[!is.na(miss.vec)] if(length(miss.notNA)) { for(val in miss.notNA) { geno[geno==val] <- NA } } # apply one2two two <- lapply(as.list(as.data.frame(geno)), one2two) twomat <- do.call("cbind", two) twomat <- as.data.frame(twomat) if(is.null(locus.label)) locus.label <- paste("m", 1:ncol(geno), sep="") names(twomat) <- paste(rep(locus.label,rep(2,length(locus.label))), c(1,2), sep=".") return(twomat) } haplo.stats/R/printBanner.q0000644000176200001440000000764714672371176015413 0ustar liggesusers#$Author: sinnwell $ #$Date: 2011/04/28 19:48:22 $ #$Header: /projects/genetics/cvs/cvsroot/mgenet/R/printBanner.q,v 1.1 2011/04/28 19:48:22 sinnwell Exp $ #$Locker: $ #$Log: printBanner.q,v $ #Revision 1.1 2011/04/28 19:48:22 sinnwell #printBanner, setupData # #Revision 1.4 2007/01/23 21:00:27 sinnwell #rm ending newline \n. Users can space if desired. # #Revision 1.3 2005/02/04 20:57:18 sinnwell #banner.width now based on options()$width #char.perline based on banner.width # #Revision 1.2 2004/06/25 15:56:48 sinnwell #now compatible with R, changed end when a line is done # #Revision 1.1 2004/02/26 21:34:55 sinnwell #Initial revision # # License: # # Copyright 2003 Mayo Foundation for Medical Education and Research. # # This program is free software; you can redistribute it and/or modify it under the terms of # the GNU General Public License as published by the Free Software Foundation; either # version 2 of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for # more details. # # You should have received a copy of the GNU General Public License along with this # program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, # Boston, MA 02111-1307 USA # # For other licensing arrangements, please contact Daniel J. Schaid. # # Daniel J. Schaid, Ph.D. # Division of Biostatistics # Harwick Building Room 775 # Mayo Clinic # 200 First St., SW # Rochester, MN 55905 # # phone: 507-284-0639 # fax: 507-284-9542 # email: schaid@mayo.edu # printBanner <- function(str, banner.width=options()$width, char.perline=.75*banner.width, border = "="){ # char.perline was calculated taking the floor of banner.width/3 vec <- str new<-NULL onespace<-FALSE for(i in 1:nchar(vec)){ if (substring(vec,i,i)==' ' && onespace==FALSE){ onespace<-TRUE new<-paste(new,substring(vec,i,i),sep="")} else if (substring(vec,i,i)==' ' && onespace==TRUE) {onespace<-TRUE} else{ onespace<-FALSE new<-paste(new,substring(vec,i,i),sep="")} } where.blank<-NULL indx <- 1 for(i in 1:nchar(new)){ if((substring(new,i,i)==' ')){ where.blank[indx]<-i indx <- indx+1 } } # Determine the position in the where.blank vector to insert the Nth character position of "new" j<-length(where.blank)+1 # Add the Nth character position of the "new" string to the where.blank vector. where.blank[j]<-nchar(new) begin<-1 end<-max(where.blank[where.blank<=char.perline]) # If end.ok equals NA then the char.perline is less than the position of the 1st blank. end.ok <- is.na(end) # Calculate a new char.perline. if (end.ok==TRUE){ char.perline <- floor(banner.width/2) end<-max(where.blank[where.blank<=char.perline]) } cat(paste(rep(border, banner.width), collapse = ""),"\n") repeat { titleline<-substring(new,begin,end) n <- nchar(titleline) if(n < banner.width) { n.remain <- banner.width - n n.left <- floor(n.remain/2) n.right <- n.remain - n.left for(i in 1:n.left) titleline <- paste(" ",titleline,sep="") for(i in 1:n.right) titleline <- paste(titleline," ",sep="") n <- nchar(titleline) } cat(titleline,"\n") begin<-end+1 end.old <- end # Next line has a problem when used in R. Use print.banner.R until fixed. # Does max with an NA argument tmp <- where.blank[(end.old 0) { pval = pchisq(x$lr, x$df.lr, lower.tail=FALSE) } cat("lnlike = ",round(x$lnlike,digits),"\n") cat("lr stat for no LD = ",round(x$lr,digits),", df = ",x$df.lr,", p-val = ",round(pval,digits),"\n") if(length(x$rows.rem > 0)) { cat("\nResults may be incomplete because one or more subjects was removed\n") } invisible(df) } haplo.stats/R/mf.gindx.q0000644000176200001440000000140314672315242014613 0ustar liggesusers#$Author: sinnwell $ #$Date: 2003/12/08 20:05:21 $ #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/mf.gindx.q,v 1.2 2003/12/08 20:05:21 sinnwell Exp $ #$Locker: $ #$Log: mf.gindx.q,v $ #Revision 1.2 2003/12/08 20:05:21 sinnwell #changed rep(F, to rep(0,nvars) # #Revision 1.1 2003/09/16 16:02:57 schaid #Initial revision # mf.gindx <- function(m){ # determine which item in a model.frame is the genotype matrix nvars<- length(m) typevars <- rep(0,nvars) for(i in 1:nvars){ typevars[i] <- data.class(m[[i]]) } gindx <- (1:nvars)[typevars=="model.matrix" | typevars=="matrix"] if(length(gindx)==0) stop("No geno matrix in data frame") if(length(gindx) >1) stop("More than 1 geno matrix in data frame") return(gindx) } haplo.stats/R/haplo.design.q0000644000176200001440000001047314672315242015463 0ustar liggesusers#$Author: sinnwell $ #$Date: 2007/03/31 19:26:20 $ #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/haplo.design.q,v 1.3 2007/03/31 19:26:20 sinnwell Exp $ #$Locker: $ #$Log: haplo.design.q,v $ #Revision 1.3 2007/03/31 19:26:20 sinnwell #error for col.rare empty, made an exception to fix it. # #Revision 1.2 2007/03/13 15:51:52 sinnwell #change return obj back to data.frame, names work that way. # #Revision 1.1 2007/03/08 20:34:40 sinnwell #Initial revision # # License: # # Copyright 2003 Mayo Foundation for Medical Education and Research. # # This program is free software; you can redistribute it and/or modify it under the terms of # the GNU General Public License as published by the Free Software Foundation; either # version 2 of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for # more details. # # You should have received a copy of the GNU General Public License along with this # program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, # Boston, MA 02111-1307 USA # # For other licensing arrangements, please contact Daniel J. Schaid. # # Daniel J. Schaid, Ph.D. # Division of Biostatistics # Harwick Building Room 775 # Mayo Clinic # 200 First St., SW # Rochester, MN 55905 # # phone: 507-284-0639 # fax: 507-284-9542 # email: schaid@mayo.edu # haplo.design <- function(obj, haplo.effect="additive", hapcodes=NA, min.count=5, haplo.base=NA) { # Set up a design matrix for haplotype effects # # 1. create a model matrix for all haplotypes in haplo.em object # 2. expand by subject.id, weight by posterior probs of hap-pair, then collapse # back down by subject.id # 3. select out the baseline # 4. remove columns not meeting minimum count # Input: # obj haplo.em object # # hapcodes: codes for haplo.em haps to make specific columns for # # haplo.effect the model matrix coding of haplotypes, additive, recessive, dominant # # haplo.base the baseline haplotype # # min.count the minimum count in the sample of the haplotype # for inclusion as a distinct model covariate # Check haplo.effect parameter, match to 3 options effCode <- charmatch(haplo.effect, c("additive", "dominant", "recessive")) if(is.na(effCode)) stop("Invalid haplo.effect") # CREATE HAPLOTYPE EFFECT COLUMNS uniqueHaplo <- sort(unique(c(obj$hap1code, obj$hap2code))) hap.colname <- paste("hap", uniqueHaplo, sep=".") # if hapcodes given, reduce haplotypes to make cols for if(!is.na(hapcodes[1])) { hapmatch <- match(hapcodes, uniqueHaplo) uniqueHaplo <- uniqueHaplo[hapmatch] hap.colname <- hap.colname[hapmatch] } # by default, set up as additive coding hap.mat <- 1 * outer(obj$hap1code, uniqueHaplo, "==") + 1 * outer(obj$hap2code, uniqueHaplo, "==") if(effCode==2) { # translate to dominant effect hap.mat <- 1*(hap.mat > 0) } if(effCode==3){ # translate to recessive effect hap.mat <- (hap.mat > 1) * 1 } # weight by posteriors, collapse over subjects nc <- ncol(hap.mat) effect.mat <- NULL for(j in 1:nc){ effect.mat <- cbind(effect.mat, tapply(hap.mat[,j] * obj$post, obj$subj.id, sum) ) } # if hapcodes not given, do other selection steps if(is.na(hapcodes[1])) { # if baseline is given, remove from model matrix # otherwise, keep all haplotype effects, leaving user to select out if(!is.na(haplo.base)) { col.base <- which(uniqueHaplo == haplo.base) effect.mat <- effect.mat[, -col.base, drop=FALSE] hap.colname <- hap.colname[-col.base] } # select out columns not having minimum count if(min.count > 0) { col.sum <- apply(effect.mat, 2, sum) col.rare <- which(col.sum < min.count) if(length(col.rare)) { effect.mat <- effect.mat[,-col.rare, drop=FALSE] hap.colname <- hap.colname[-col.rare] } } } if(length(hap.colname)==0) stop("Design matrix has no columns") effect.mat <- as.data.frame(effect.mat) names(effect.mat) <- hap.colname return(effect.mat) } haplo.stats/R/summary.haplo.em.q0000644000176200001440000000643014672315242016305 0ustar liggesusers#$Author: sinnwell $ #$Date: 2008/11/25 22:11:00 $ #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/summary.haplo.em.q,v 1.9 2008/11/25 22:11:00 sinnwell Exp $ #$Locker: $ #$Log: summary.haplo.em.q,v $ #Revision 1.9 2008/11/25 22:11:00 sinnwell #return table of haps by invisible # #Revision 1.8 2007/11/07 21:33:37 sinnwell #add digits # #Revision 1.7 2004/04/06 20:40:00 sinnwell #use nlines to limit lines in vignettes # #Revision 1.6 2004/02/26 23:10:39 sinnwell #print.banner to printBanner # #Revision 1.5 2004/02/16 19:41:01 sinnwell #add '...' to make method for haplo.em object # #Revision 1.4 2003/12/08 20:24:09 sinnwell # changed T,F to TRUE,FALSE # #Revision 1.3 2003/10/15 15:41:18 schaid #added show.haplo option for showing haplotypes instead of their codes # #Revision 1.2 2003/08/26 22:09:38 sinnwell #added GPL License # #Revision 1.1 2003/08/26 21:00:25 schaid #Initial revision # # License: # # Copyright 2003 Mayo Foundation for Medical Education and Research. # # This program is free software; you can redistribute it and/or modify it under the terms of # the GNU General Public License as published by the Free Software Foundation; either # version 2 of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for # more details. # # You should have received a copy of the GNU General Public License along with this # program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, # Boston, MA 02111-1307 USA # # For other licensing arrangements, please contact Daniel J. Schaid. # # Daniel J. Schaid, Ph.D. # Division of Biostatistics # Harwick Building Room 775 # Mayo Clinic # 200 First St., SW # Rochester, MN 55905 # # phone: 507-284-0639 # fax: 507-284-9542 # email: schaid@mayo.edu # summary.haplo.em <- function(object, show.haplo=FALSE, digits=max(options()$digits-2, 5), nlines=NULL, ...){ printBanner("Subjects: Haplotype Codes and Posterior Probabilities") hap1sorted <- ifelse(object$hap1code < object$hap2code, object$hap1code, object$hap2code) hap2sorted <- ifelse(object$hap1code < object$hap2code, object$hap2code, object$hap1code) if(show.haplo){ hap1 <- object$haplotype[object$hap1code,] hap2 <- object$haplotype[object$hap2code,] df <- data.frame(subj.id=object$subj.id, hap1=object$haplotype[hap1sorted,], hap2=object$haplotype[hap2sorted,], ##hap1=hap1, hap2=hap2, posterior=round(object$post,digits)) } else{ df <- data.frame(subj.id=object$subj.id, hap1=hap1sorted, hap2=hap2sorted, #hap1code=object$hap1code, hap2code=object$hap2code, posterior=round(object$post, digits)) } df <- df[order(max(df$subj.id)-df$subj.id, df$posterior, decreasing=TRUE),] rownames(df) <- 1:nrow(df) if(is.null(nlines)) print(df) else print(df[1:nlines,]) printBanner("Number of haplotype pairs: max vs used") x <- object$max.pairs if(length(object$rows.rem) > 0 ){ x <- x[-object$rows.rem] } print(table(x, object$nreps)) invisible(df) } haplo.stats/R/get.hapPair.q0000644000176200001440000000251514672315242015250 0ustar liggesusers#$Author: sinnwell $ #$Date: 2008/03/10 19:01:28 $ #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/get.hapPair.q,v 1.1 2008/03/10 19:01:28 sinnwell Exp $ #$Locker: $ #$Log: get.hapPair.q,v $ #Revision 1.1 2008/03/10 19:01:28 sinnwell #Initial revision # # get list for haplotype-pairs, or phased genotypes, under HWE # return: 1) p.g: P(geno|hfreq, HWE) # 2) x.haplo: design matrix for haplotype pairs (additive) # 3) haplo.indx: index of hap pairs, referring to rows of haplo get.hapPair <- function(haplo, haplo.freq, base.index) { n.loci <- ncol(haplo) n.haplo <- nrow(haplo) haplo.indx <- expand.grid(1:n.haplo,1:n.haplo) haplo.indx <- cbind(haplo.indx[,2],haplo.indx[,1]) haplo.indx <- haplo.indx[haplo.indx[,1] <= haplo.indx[,2],] # Set up regression design matrices and beta coeff vectors # Design matrix using base.index as baseline, and assuming # haplotype effects are additive haplo.reg <- (1:n.haplo)[-base.index] x.haplo <- 1*outer(haplo.indx[,1], haplo.reg,"==") + 1*outer(haplo.indx[,2], haplo.reg,"==") # Compute prior genotype probs (geno = pair of haplotypes) p.g <- haplo.freq[haplo.indx[,1]] * haplo.freq[haplo.indx[,2]] p.g <- p.g * ifelse(haplo.indx[,1] == haplo.indx[,2], 1, 2) return(list(p.g=p.g, x.haplo=x.haplo, haplo.indx=haplo.indx)) } haplo.stats/R/locator.haplo.q0000644000176200001440000000460714672315242015657 0ustar liggesusers#$Author: schaid $ # #$Date: 2003/10/15 17:17:35 $ # #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/locator.haplo.q,v 1.4 2003/10/15 17:17:35 schaid Exp $ # #$Id: locator.haplo.q,v 1.4 2003/10/15 17:17:35 schaid Exp $ # #$Locker: $ # #$Log: locator.haplo.q,v $ #Revision 1.4 2003/10/15 17:17:35 schaid #fixed format of hapotypes for text # #Revision 1.3 2003/08/26 16:39:04 sinnwell #change license statement # #Revision 1.2 2003/03/06 23:18:02 sinnwell #add license text # #Revision 1.1 2002/09/09 19:53:18 sinnwell #Initial revision # # License: # # Copyright 2003 Mayo Foundation for Medical Education and Research. # # This program is free software; you can redistribute it and/or modify it under the terms of # the GNU General Public License as published by the Free Software Foundation; either # version 2 of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for # more details. # # You should have received a copy of the GNU General Public License along with this # program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, # Boston, MA 02111-1307 USA # # For other licensing arrangements, please contact Daniel J. Schaid. # # Daniel J. Schaid, Ph.D. # Division of Biostatistics # Harwick Building Room 775 # Mayo Clinic # 200 First St., SW # Rochester, MN 55905 # # phone: 507-284-0639 # fax: 507-284-9542 # email: schaid@mayo.edu # locator.haplo <- function(obj){ h <- apply(format(obj$haplotype),1,paste, collapse=":") x <- obj$hap.prob y <- obj$score.haplo rng <- range(y) delta <- .05* (rng[2] - rng[1]) mid.rng <- sum(rng)/2 tmp <- locator() x.pt <- tmp$x y.pt <- tmp$y n.pt <- length(x.pt) x.coord <- NULL y.coord <- NULL hap.txt <- NULL for(i in 1:n.pt){ z <- (x-x.pt[i])^2 + abs(y-y.pt[i])^2 which <- z==min(z) h.txt <- h[which] x.tmp <- x[which] sgn <- if(y[which] < mid.rng) + 1 else -1 y.tmp <- y[which] + sgn*delta text(x.tmp,y.tmp,h.txt) x.coord <- c(x.coord,x.tmp) y.coord <- c(y.coord,y.tmp) hap.txt <- c(hap.txt, h.txt) } invisible() return(list(x.coord=x.coord,y.coord =y.coord, hap.txt=hap.txt)) } haplo.stats/R/chisq.power.q0000644000176200001440000000210214672315242015340 0ustar liggesusers#$Author: sinnwell $ #$Date: 2008/02/28 21:38:19 $ #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/chisq.power.q,v 1.2 2008/02/28 21:38:19 sinnwell Exp $ #$Locker: $ #$Log: chisq.power.q,v $ #Revision 1.2 2008/02/28 21:38:19 sinnwell #take out comments of old code that checked for no root from uniroot # #Revision 1.1 2008/02/28 15:59:27 sinnwell #Initial revision # chisq.power <- function(n, nc, df, alpha) { # power based on sample size n, non-centrality nc, # degrees of freedom df, and type-I error alpha 1 - pchisq(qchisq(1-alpha, df), df, n*nc) } chisq.power.dif<- function(n, nc, df, alpha, power) { # difference from target power -- for finding sample size p.dif <- chisq.power(n, nc, df, alpha) - power return(p.dif) } chisq.sample.size <- function(nc, df=df, alpha, power, lower=20, upper=100000) { # sample size from noncentrality nc, degrees of freedom df save.uniroot <- uniroot(chisq.power.dif, lower=lower, upper=upper, nc=nc, df=df, alpha=alpha, power=power, tol=0.0001) ss <- ceiling(save.uniroot$root) return(ss) } haplo.stats/R/haplo.score.merge.q0000644000176200001440000000463014672370467016433 0ustar liggesusers#$Author: sinnwell $ #$Date: 2004/03/02 18:50:41 $ #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/haplo.score.merge.q,v 1.7 2004/03/02 18:50:41 sinnwell Exp $ #$Locker: $ #$Log: haplo.score.merge.q,v $ #Revision 1.7 2004/03/02 18:50:41 sinnwell #fix T to TRUE # #Revision 1.6 2003/08/28 15:02:48 sinnwell #fix n.sim to simulate # #Revision 1.5 2003/08/26 16:39:04 sinnwell #change license statement # #Revision 1.4 2003/06/19 20:53:23 sinnwell #change "Hap-Prob" label to "Hap-Freq" # #Revision 1.2 2003/03/06 20:34:59 sinnwell #revise to handle haplo.group list obj # #Revision 1.1 2003/01/17 16:29:47 sinnwell #Initial revision haplo.score.merge <- function(score, group) # Created by JP Sinnwell/ DJ Schaid # Divisions of Biostatistics, Mayo Rochester # 10/2002 { ## Combine the returned objects of haplo.group and haplo.score ## Results will be sorted the same as haplo.score objects--by score.haplo. ## All haplotypes will be included, therefore some will not have ## haplo.score info b/c ones w/ low freqs were left out (skip.haplo). if(!inherits(score, "haplo.score")) stop( "Not an object of class haplo.score!") if(!inherits(group, "haplo.group")) stop( "Not an object of class haplo.group!") n.loci <- group$n.loci df.group <- group$group.df # Build data frames including desired data from haplo.group and haplo.score group.labels <- c("Hap-Freq", names(df.group)[(n.loci+2):ncol(df.group)]) df.score <- data.frame(score$haplotype, score$score.haplo, score$score.haplo.p) score.labels <- c(score$locus.label, "Hap-Score", "p-val") # attach on p.sim information if included in score object. if(score$simulate) { df.score <- data.frame(df.score, score$score.haplo.p.sim) score.labels <- c(score.labels,"sim p-val") } # merge score object onto group object by haplotypes. Geno includes all # haplotypes, score will map onto those and have NA's where score left those out. df.merge <- merge(df.score,df.group,by=1:n.loci,all.x=TRUE,all.y=TRUE) # sort by score statistics ord <- order(df.merge[[n.loci+1]]) df.merge <- df.merge[ord,] dimnames(df.merge) <- list( 1:nrow(df.merge), c(score.labels, group.labels)) # Make a class for haplo.score.merge for print method. # Make it act just like a data.frame. Has one added attribute: n.loci class(df.merge) <- c("haplo.score.merge","data.frame") return(df.merge) } haplo.stats/R/haplo.chistat.q0000644000176200001440000000274214672315242015651 0ustar liggesusers#$Author: sinnwell $ #$Date: 2008/04/01 20:55:08 $ #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/haplo.chistat.q,v 1.3 2008/04/01 20:55:08 sinnwell Exp $ #$Locker: $ #$Log: haplo.chistat.q,v $ #Revision 1.3 2008/04/01 20:55:08 sinnwell #add eps to Ginv # #Revision 1.2 2005/03/28 22:28:02 sinnwell #changed from chistat # #Revision 1.1 2005/03/23 18:07:08 sinnwell #Initial revision # haplo.chistat <- function(h1, h2, post, y, nrep) { # calculate a test statistic based on case/control status # based on the differences between mean haplotype frequency in 2 groups # it is like a chisquare stat, but distribution is not known, # b/c multiple testing occurs tbl <- table(y) n.c <- tbl[1] n.d <- tbl[2] n.total <- n.c + n.d # set up the matrix for counts of unique haplotypes uhap <- sort(unique(c(h1,h2))) x <- 1*outer(h1, uhap, "==") + 1*outer(h2, uhap, "==") varx <- var(x) save.inv <- Ginv(varx, eps=sqrt(.Machine$double.eps)) vinv <- save.inv$Ginv df <- save.inv$rank # repeat the group variable as many times as nreps, # to match posteriors yrep <- rep(y,nrep) # multiply each row by the posterior prob of the person's hap pairs # then find mean of haplotype counts in each group # the length is number of haps x.d <- apply(post[yrep==1] * x[yrep==1,], 2, mean) x.c <- apply(post[yrep==0] * x[yrep==0,], 2, mean) delta <- matrix(x.d - x.c, ncol=1) stat <- t(delta)%*%vinv%*%delta * (n.d*n.c/n.total) return(stat) } haplo.stats/R/residScaledGlmFit.q0000644000176200001440000000367214672315242016440 0ustar liggesusers#$Author: sinnwell $ #$Date: 2011/11/10 15:29:40 $ #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/residScaledGlmFit.q,v 1.2 2011/11/10 15:29:40 sinnwell Exp $ #$Locker: $ #$Log: residScaledGlmFit.q,v $ #Revision 1.2 2011/11/10 15:29:40 sinnwell #major update to hapglm, minor changes to Rd files, prepare for version 1.5.0 release # #Revision 1.1 2004/02/26 22:35:38 sinnwell #Initial revision # #Revision 1.3 2003/12/24 17:38:51 sinnwell # fix the check for "logit" and "log" links to work in S and R # #Revision 1.2 2003/11/17 23:27:43 schaid #made compatible with R # #Revision 1.1 2003/09/16 16:03:20 schaid #Initial revision # residScaledGlmFit <- function(fit){ # Given a glm model fit, compute scaled residual, {y - fit}/a(phi), and a(phi) # # For normal, a.phi = mse # binom, a.phi = 1 # pois, a.phi = 1 # resid <- NULL a.phi <- 1 ## JPS 9/26/11 -- replace weights.expanded by prior.weights wt <- fit$prior.weights * fit$haplo.post.info$post switch(as.character(fit$family[1]), "Binomial"= , "binomial" = { if(grep("logit",as.character(casefold(fit$family[2][[1]]))) < 0) stop("Only logit link for binomial") resid <- (fit$y - fit$fitted.values) }, "Gaussian"=, "gaussian" = { y <- fit$y mu <- fit$fitted.values # Should df be reduced for estimation of haplotype freqs? df.residual <- sum(wt) - length(fit$coef) mse <- sum(wt*(y-mu)^2)/df.residual resid <- (y - mu) / mse a.phi <- mse }, "Poisson"=, "poisson" = { if(grep("log", casefold(fit$family[2][[1]])) <0) stop("Only log link for poisson") resid <- (fit$y - fit$fitted.values) }, stop(paste("Residual glm fit for",fit$family[1],"not defined")) ) return(list(resid=resid, a.phi=a.phi)) } haplo.stats/R/haplo.glm.control.q0000644000176200001440000000714614672315242016453 0ustar liggesusers#$Author: sinnwell $ #$Date: 2011/11/10 15:29:40 $ #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/haplo.glm.control.q,v 1.8 2011/11/10 15:29:40 sinnwell Exp $ #$Locker: $ #$Log: haplo.glm.control.q,v $ #Revision 1.8 2011/11/10 15:29:40 sinnwell #major update to hapglm, minor changes to Rd files, prepare for version 1.5.0 release # #Revision 1.7 2008/04/04 15:56:23 sinnwell #fix typo of haplo.min.count # #Revision 1.6 2008/04/04 15:48:18 sinnwell #enforce haplo.freq.min as .01, and override haplo.min.count # #Revision 1.5 2008/04/01 21:23:40 sinnwell #manage haplo.freq.min, which is overriden by haplo.min.count # #Revision 1.4 2005/01/04 17:36:47 sinnwell #use haplo.min.count as more important than haplo.freq.min # #Revision 1.3 2004/03/02 16:34:07 sinnwell #change T to TRUE # #Revision 1.2 2003/12/08 19:37:28 sinnwell # changed F,T to FALSE,TRUE # #Revision 1.1 2003/09/16 16:01:29 schaid #Initial revision # haplo.glm.control <- function(haplo.effect="add", haplo.base = NULL, haplo.min.count=NA, haplo.freq.min=.01, sum.rare.min=0.001, haplo.min.info=0.001, keep.rare.haplo=TRUE, eps.svd=sqrt(.Machine$double.eps), glm.c=glm.control(maxit=500), em.c=haplo.em.control()){ chk <- charmatch(haplo.effect, c("additive", "dominant", "recessive")) if(is.na(chk)) stop("Invalid haplo.effect") if(haplo.min.info < 0 | haplo.min.info > .9) { warning("The value of haplo.min.info is out of range, the default value of 0.001 is used instead") haplo.min.info <- 0.001 } # 1/2005 JPS # enourage the use of selecting haplotypes to model by a minimum expected count of 5 if(!is.null(match.call()$haplo.freq.min)) { if(haplo.freq.min < haplo.min.info | haplo.freq.min >= 1) { warning("invalid value for haplo.freq.min, setting to default of .01") haplo.freq.min <- .01 } if(!is.null(match.call()$haplo.min.count)) { warning("Both control parameters haplo.freq.min and haplo.min.count given; haplo.freq.min will be used") haplo.min.count <- NA } } else { if(!is.na(haplo.min.count)) { haplo.freq.min <- NA if(haplo.min.count <= 1) { warning("The value of haplo.min.count is too small, the count will default to 5/(2*n.subjects)") haplo.freq.min <- NA haplo.min.count <- 5 } } } if(sum.rare.min < 0 | sum.rare.min > .9) { warning("The value of sum.rare.min is out of range, the default value of 0.001 is used instead") sum.rare.min <- 0.001 } if(keep.rare.haplo!=TRUE & keep.rare.haplo!=FALSE){ warning("The value of keep.rare.haplo is invalid, the default value of TRUE is used instead") keep.rare.haplo=TRUE } if(eps.svd < .Machine$double.eps || eps.svd > 0.1) { warning(paste("The value of eps.svd is out of range, the default of ", sqrt(.Machine$double.eps), " is being used.", sep='')) eps.svd <- sqrt(.Machine$double.eps) } return(list(haplo.effect=haplo.effect, haplo.base = haplo.base, haplo.min.count=haplo.min.count, haplo.freq.min=haplo.freq.min, sum.rare.min=sum.rare.min, haplo.min.info=haplo.min.info, keep.rare.haplo=keep.rare.haplo, epsilon=glm.c$epsilon, eps.svd=eps.svd, maxit=glm.c$maxit, trace=glm.c$trace, em.control=em.c)) } haplo.stats/R/print.haplo.score.slide.q0000644000176200001440000000421114672315242017550 0ustar liggesusers#$Author: sinnwell $ #$Date: 2007/11/27 20:55:31 $ #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/print.haplo.score.slide.q,v 1.3 2007/11/27 20:55:31 sinnwell Exp $ #$Locker: $ #$Log: print.haplo.score.slide.q,v $ #Revision 1.3 2007/11/27 20:55:31 sinnwell #re-build df data.frame with numeric as rounded by digits # #Revision 1.2 2003/09/19 16:48:38 sinnwell #fix digits syntax error # #Revision 1.1 2003/08/22 21:09:41 sinnwell #Initial revision # # License: # # Copyright 2003 Mayo Foundation for Medical Education and Research. # # This program is free software; you can redistribute it and/or modify it under the terms of # the GNU General Public License as published by the Free Software Foundation; either # version 2 of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for # more details. # # You should have received a copy of the GNU General Public License along with this # program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, # Boston, MA 02111-1307 USA # # For other licensing arrangements, please contact Daniel J. Schaid. # # Daniel J. Schaid, Ph.D. # Division of Biostatistics # Harwick Building Room 775 # Mayo Clinic # 200 First St., SW # Rochester, MN 55905 # # phone: 507-284-0639 # fax: 507-284-9542 # email: schaid@mayo.edu # print.haplo.score.slide <- function(x, digits=max(options()$digits-2, 5), ...) # Developed by Schaid, DJ; Sinnwell, JP 2003 # Mayo Clinic Rochester, Div of Biostatistics { # print method for haplo.score.slide object. Only print the data frame portion # of the object. It has the start and end locus, # and the p-values of that call to haplo.score. df <- data.frame(start.loc=x$df$start.loc, score.global.p=round(x$df$score.global.p, digits), global.p.sim=round(x$df$global.p.sim, digits), max.p.sim=round(x$df$max.p.sim, digits)) print(df) invisible() } haplo.stats/R/print.haplo.score.q0000644000176200001440000001145214672315242016456 0ustar liggesusers#$Author: sinnwell $ # #$Date: 2008/04/08 19:21:24 $ # #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/print.haplo.score.q,v 1.17 2008/04/08 19:21:24 sinnwell Exp $ # #$Id: print.haplo.score.q,v 1.17 2008/04/08 19:21:24 sinnwell Exp $ # #$Locker: $ # #$Log: print.haplo.score.q,v $ #Revision 1.17 2008/04/08 19:21:24 sinnwell #haplo.effect back in x$ # #Revision 1.16 2008/04/08 16:45:08 sinnwell #haplo.effect now in x$control # #Revision 1.15 2008/04/04 16:14:28 sinnwell #return tbl with invisible # #Revision 1.14 2007/01/25 19:41:07 sinnwell #haplo.effect changed to x$haplo.effect # #Revision 1.13 2007/01/23 21:46:34 sinnwell #add banner to say which haplo.effect used, change spacing # #Revision 1.12 2007/01/04 16:02:45 sinnwell #exceptions for 1-row tbl output # #Revision 1.11 2005/03/29 16:27:27 sinnwell #*** empty log message *** # #Revision 1.10 2005/03/25 15:38:36 sinnwell #un-specify banner width, controlled by options. # #Revision 1.9 2004/04/07 14:08:59 sinnwell #use nlines for quick print # #Revision 1.8 2004/02/26 23:08:27 sinnwell #print.banner to printBanner # #Revision 1.7 2003/12/08 20:20:32 sinnwell # changed T,F to TRUE,FALSE # #Revision 1.6 2003/12/01 23:46:26 sinnwell #take out return statment. invisible will return the original object # #Revision 1.5 2003/08/26 16:37:57 sinnwell #change license # #Revision 1.4 2003/08/22 19:46:13 sinnwell #updated to handle updated simulation results, add new license # #Revision 1.3 2003/04/25 22:11:01 schaid #updated tbl to allow haplotype to be a data frame, as created by new haplo.em.pin function #change was to force haplotype to be a matrix, to be backwards compatible with prior print function # #Revision 1.2 2003/03/06 23:22:01 sinnwell #add license text # #Revision 1.1 2002/09/09 19:53:18 sinnwell #Initial revision # # License: # # Copyright 2003 Mayo Foundation for Medical Education and Research. # # This program is free software; you can redistribute it and/or modify it under the terms of # the GNU General Public License as published by the Free Software Foundation; either # version 2 of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for # more details. # # You should have received a copy of the GNU General Public License along with this # program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, # Boston, MA 02111-1307 USA # # For other licensing arrangements, please contact Daniel J. Schaid. # # Daniel J. Schaid, Ph.D. # Division of Biostatistics # Harwick Building Room 775 # Mayo Clinic # 200 First St., SW # Rochester, MN 55905 # # phone: 507-284-0639 # fax: 507-284-9542 # email: schaid@mayo.edu # # print.haplo.score <- function(x, digits=max(options()$digits-2, 5), nlines=NULL, ...) # Sinnwell JP, Schaid DJ # Mayo Clinic Biostatistics 8/2003 { # print a haplo.score object, one that has the simulation handling # and used Progressive INsertion (PIN) if (!inherits(x, 'haplo.score')) stop("Not an object of class haplo.score!") printBanner(paste("Haplotype Effect Model: ", x$haplo.effect), border="-") # print of global score stats: printBanner("Global Score Statistics", border= "-") cat("\n") cat(paste("global-stat = ",round(x$score.global,digits),", df = ", x$df, ", p-val = ",round(x$score.global.p,digits),sep="")) # print separate section for sim p.vals and the conditions # under which they were made cat("\n\n") if(x$simulate) { printBanner("Global Simulation p-value Results", border="-") cat("\n") cat("Global sim. p-val = ",round(x$score.global.p.sim, digits),"\n") cat("Max-Stat sim. p-val = ",round(x$score.max.p.sim, digits), "\n") cat("Number of Simulations, Global: ", x$n.val.global, ", Max-Stat:", x$n.val.haplo) cat("\n\n") } # create table for haplotype specific stats tbl <- cbind(as.matrix(x$haplotype),round(x$hap.prob,digits), round(x$score.haplo,digits), round(x$score.haplo.p, digits)) # add on simulated p-values, rounded to digits if(x$simulate) tbl <- cbind(tbl,round(x$score.haplo.p.sim, digits)) ord <- order(x$score.haplo) tbl <- tbl[ord, ,drop=FALSE] if(!x$simulate) dimnames(tbl) <- list(NULL,c(x$locus.label,"Hap-Freq", "Hap-Score","p-val")) else dimnames(tbl) <- list(NULL,c(x$locus.label,"Hap-Freq", "Hap-Score","p-val","sim p-val")) printBanner("Haplotype-specific Scores", border= "-") cat("\n") if(is.null(nlines) ) print(tbl,quote=FALSE) else print(tbl[1:nlines,,drop=FALSE], quote=FALSE, ...) cat("\n") invisible(tbl) } haplo.stats/R/haplo.power.cc.ncp.q0000644000176200001440000002102014672315242016477 0ustar liggesusers ##$Author: sinnwell $ ##$Date: 2008/04/29 14:36:25 $ ##$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/haplo.power.cc.ncp.q,v 1.4 2008/04/29 14:36:25 sinnwell Exp $ ##$Locker: $ ##$Log: haplo.power.cc.ncp.q,v $ ##Revision 1.4 2008/04/29 14:36:25 sinnwell ##T to TRUE ## ##Revision 1.3 2008/03/10 19:00:34 sinnwell ##call get.hapPair instead of re-used code ## ##Revision 1.2 2008/02/28 21:47:10 sinnwell ##*** empty log message *** ## ##Revision 1.1 2008/02/28 15:59:27 sinnwell ##Initial revision # haplo.power.cc.ncp <- function(haplo, haplo.freq, base.index, haplo.beta, case.frac, prevalence) { cont.frac <- 1 - case.frac haplo <- as.matrix(haplo) n.loci <- ncol(haplo) n.haplo <- nrow(haplo) # Error checks if(length(base.index) != 1) { stop("Length of base.index != 1") } if(length(haplo.beta) != n.haplo) { stop("Length of haplo.beta != number of haplotypes") } if(n.loci <2) { stop("Number of loci < 2") } if(length(haplo.freq) != n.haplo) { stop("Length haplo.freq != number of haplotypes") } # Create matrix of indices for all possible pairs of haplotypes # haplo.indx <- expand.grid(1:n.haplo,1:n.haplo) # haplo.indx <- cbind(haplo.indx[,2],haplo.indx[,1]) # haplo.indx <- haplo.indx[haplo.indx[,1] <= haplo.indx[,2],] # Set up regression design matrices and beta coeff vectors # haplo.reg <- 1:n.haplo # x.haplo <- 1*outer(haplo.indx[,1], haplo.reg,"==") + 1*outer(haplo.indx[,2], haplo.reg,"==") # Compute prior genotype probs (geno = pair of haplotypes) # p.g <- haplo.freq[haplo.indx[,1]] * haplo.freq[haplo.indx[,2]] # p.g <- p.g * ifelse(haplo.indx[,1] == haplo.indx[,2], 1, 2) hapPair.lst <- get.hapPair(haplo, haplo.freq, base.index) x.haplo <- hapPair.lst$x.haplo p.g <- hapPair.lst$p.g haplo.indx <- hapPair.lst$haplo.indx # now move base.index to first col of x, and first element of beta x.design <- cbind( rep(1,nrow(x.haplo)), x.haplo) #[,-base.index]) beta <- haplo.beta beta <- c(beta[base.index], beta[-base.index]) # Find intercept other <- list(x=x.design, p.x=p.g, beta=beta[-1], prev = prevalence) root <- uniroot(f=find.intercept.logistic, interval=c(-50,50),other=other) # Put intercept as first item in beta vector beta[1] <- root$root # function to compute P(Y|g) according to logistic reg model, # needed in subsequent steps py.g <- function(x,beta){ root <- exp(x%*%beta) p <- root/(1+root) return(p) } # Determine genotype (haplotype pair) frequencies for cases (pg.case) and # controls (pg.cont) pg.case <- py.g(x.design, beta) * p.g # P(y=1|g)P(g) pg.case <- as.vector(pg.case/sum(pg.case)) pg.cont <- (1-py.g(x.design, beta)) * p.g # P(y=0|g)P(g) pg.cont <- as.vector(pg.cont/sum(pg.cont)) #-------------- Complete Haplotype Data ------------------------------------------ df.complete <- ncol(x.haplo) # E[X|case] ex.case.complete <- apply(x.haplo * pg.case, 2, sum) # E[X|control] ex.cont.complete <- apply(x.haplo * pg.cont, 2, sum) delta.complete <- (ex.case.complete - ex.cont.complete) # E[Xbar] ex.xbar.complete <- (case.frac * ex.case.complete) + (cont.frac * ex.cont.complete) # Vx xDiff <- x.haplo - matrix(rep(ex.xbar.complete, nrow(x.haplo)),nrow=nrow(x.haplo), byrow=TRUE) vx.case <- t(xDiff * pg.case ) %*% (xDiff ) vx.cont <- t(xDiff * pg.cont ) %*% (xDiff ) vx.complete <- (case.frac*vx.case) + (cont.frac * vx.cont) ncp.complete <- case.frac*cont.frac*( t(delta.complete) %*% solve(vx.complete) %*% delta.complete) #-------------- Incomplete Haplotype Data ---------------------------------------- # Genotype matrix, ignoring haplotype phase information. geno.mat <- NULL for(i in 1:n.loci){ t1 <- haplo[haplo.indx[,1],i] t2 <- haplo[haplo.indx[,2],i] a1 <- ifelse(t1 < t2, t1, t2) a2 <- ifelse(t2 > t1, t2, t1) geno.mat <- cbind(geno.mat, a1, a2) } # Create haplo.group which gives a code for pairs of # haplotypes that fall into the same genotype group when phase is unk geno.hash <- haplo.hash(geno.mat) haplo.group <- geno.hash$hash # Create probabilities for haplotype groups p.haplo.group.case <- as.vector(tapply(pg.case, haplo.group, sum)) p.haplo.group.cont <- as.vector(tapply(pg.cont, haplo.group, sum)) # Create exemplary data of genotypes for case and controls, # with weights that represent their relative frequencies, # such that the weights sum to 1. geno.temp <- rbind(geno.hash$hap.mtx, geno.hash$hap.mtx) oldClass(geno.temp) <- "model.matrix" wt <- c(case.frac*p.haplo.group.case, cont.frac*p.haplo.group.cont) save.em <- haplo.em(geno=geno.temp, weight=wt, control=haplo.em.control(min.posterior=0)) n.haplo <- nrow(save.em$haplotype) hap.indx <- 1:n.haplo basehap <- hap.indx[save.em$hap.prob == max(save.em$hap.prob)][1] # Score haplotypes that are not rare (freq > 10e-4) and not the most frequent, which # is considered a baseline haplotype uhap <- hap.indx[hap.indx!=basehap &( save.em$hap.prob > 10e-4)] x <- 1*outer(save.em$hap1code, uhap, "==") + 1*outer(save.em$hap2code, uhap, "==") nx <- ncol(x) xstar <- NULL for(j in 1:nx){ xstar <- cbind(xstar, tapply(x[,j] * save.em$post,save.em$subj.id,sum)) } df.incomplete <- ncol(xstar) ncase <- length(p.haplo.group.case) case <- 1:ncase cont <- (ncase+1):(2*ncase) # note that xstar is same for cases and controls, because posteriors are the same for # cases and controls when running EM for haplotypes under Ho xstar <- xstar[case,] # E[X|case] ex.case.incomplete <- apply(xstar * p.haplo.group.case, 2, sum) # E[X|control] ex.cont.incomplete <- apply(xstar * p.haplo.group.cont, 2, sum) delta.incomplete <- ex.case.incomplete - ex.cont.incomplete # E[Xbar] ex.xbar.incomplete <- (case.frac * ex.case.incomplete) + (cont.frac * ex.cont.incomplete) # Vx xstar.diff <- (xstar - matrix(rep(ex.xbar.incomplete, nrow(xstar)),nrow=nrow(xstar), byrow=TRUE)) vx.case <- t(xstar.diff * p.haplo.group.case) %*% (xstar.diff) vx.cont <- t(xstar.diff * p.haplo.group.cont) %*% (xstar.diff) vx.incomplete <- (case.frac * vx.case) + (cont.frac * vx.cont) ncp.incomplete <- case.frac * cont.frac * t(delta.incomplete) %*% solve(vx.incomplete) %*% delta.incomplete # By running haplo.em on the unphased genotype data, the haplotype order is changed. To map haplotypes # between incomplete and complete haplotype data, we do the following. haplo.df.incomplete <- data.frame(save.em$haplotype, haplo.freq.incomp=save.em$hap.prob, hap.indx.incomp=hap.indx) haplo.df.complete <- data.frame(haplo, haplo.freq, hap.indx.comp=1:nrow(haplo)) haplo.merge <- merge(haplo.df.incomplete, haplo.df.complete, by.x=1:n.loci,by.y=1:n.loci,all=TRUE) # Need to subset to haplotypes that are scored for incomplete data (see above for how uhap was created) zed <- (hap.indx!=basehap) & ( save.em$hap.prob > 10e-4) haplo.merge <- haplo.merge[zed,] haplo.merge$x.score <- 1:nrow(haplo.merge) ord <- order(haplo.merge$hap.indx.comp) haplo.merge <- haplo.merge[ord,] ord <- haplo.merge$x.score delta.incomplete <- delta.incomplete[ord] ex.case.incomplete <- ex.case.incomplete[ord] ex.cont.incomplete <- ex.cont.incomplete[ord] tmp <- vx.incomplete[ord,] vx.incomplete <- tmp[,ord] return(list(ncp.phased.haplo = ncp.complete, df.phased.haplo = df.complete, ex.case.complete = ex.case.complete, ex.cont.complete = ex.cont.complete, delta.complete = delta.complete, vx.complete = vx.complete, ncp.unphased.haplo = ncp.incomplete, df.unphased.haplo = df.incomplete, ex.case.incomplete = ex.case.incomplete, ex.cont.incomplete = ex.cont.incomplete, delta.incomplete = delta.incomplete, vx.incomplete = vx.incomplete) ) } find.intercept.logistic <- function(b0,other) { # function to find intercept for logistic regression when # design matrix is specified, along with # population frequencies of rows, beta for non-intercept # effects, and prevalence (prev) x <- other$x p.x <- other$p.x beta <- other$beta prev <- other$prev z <- x %*% c(b0,beta) pd <- exp(z)/(1+exp(z)) return( sum(pd*p.x) - prev ) } haplo.stats/R/haplo.cc.q0000644000176200001440000001520314672357746014612 0ustar liggesusers#$Author: sinnwell $ #$Date: 2011/11/10 15:29:40 $ ## Sinnwell JP and Schaid DJ ## Mayo Clinic, Rochester MN ## 1/2004 haplo.cc <- function(y, geno, x.adj=NA, locus.label=NA, ci.prob=0.95, miss.val=c(0,NA), weights=NULL, eps.svd=1e-5, simulate=FALSE, sim.control=score.sim.control(), control=haplo.glm.control()) { ## wrap the execution of haplo.score, haplo.group and haplo.glm ## into this function, specific for case-control (cc) studies. ## 1) calculate Odds Ratios for haplotype effects. ## 2) keep in mind it is a ratio relative to the baseline ## haplotype, which is often highly associated with the trait, ## shown by freq's and the score. ## 3) You may choose different, 'neutral' baseline by setting ## haplo.base to the index of haplo.unique from a previous run with same ## haps kept by haplo.freq.min, or haplo.min.count cutoffs # check for missing values in y and geno n.subj <- length(y) if(n.subj != nrow(geno)) { stop("Different number of rows for y and geno!") } if(!all(is.na(x.adj)) && n.subj != nrow(x.adj)) { stop("Different number of rows for y and x.adj") } exclude <- which(is.na(y)) tmp <- which(apply(is.na(geno),1,all)) exclude <- unique(c(exclude,tmp)) if(length(exclude)) { warning(paste("Subjects ", exclude, " removed for missing y or all alleles missing.")) geno <- geno[-exclude,,drop=FALSE] y <- y[-exclude] if(!all(is.na(x.adj))) { x.adj <- as.matrix(x.adj) x.adj <- x.adj[-exclude,,drop=FALSE] } } if(is.null(control$em.control$iseed)) { runif(1) # use a random number, so the next .Random.seed value is used control$em.control$iseed <- .Random.seed } # check y to be 0's and 1's if(!all(y==0 | y==1)) { stop("y must be binary with 0=controls and 1=cases") } n.subj <- nrow(geno) # set skip.haplo and hap.freq.min for haplo.glm to be the same, meeting # min. number of expected counts per haplotypes haplo.min.count <- control$haplo.min.count haplo.freq.min <- control$haplo.freq.min if(is.na(haplo.min.count)) haplo.min.count <- haplo.freq.min*2*nrow(geno) if( !is.null(haplo.min.count) && haplo.min.count < 1) warning("haplo.min.count may be too small for reliable results\n") set.seed(control$em.control$iseed) score.lst <- haplo.score(y=y, geno=geno, x.adj=x.adj, trait.type="binomial", min.count=haplo.min.count, locus.label=locus.label, miss.val=miss.val, haplo.effect=control$haplo.effect, eps.svd=eps.svd, simulate=simulate, sim.control=sim.control, em.control=control$em.c) # get haplotype frequency estimates within the two groups set.seed(control$em.control$iseed) group.lst <- haplo.group(group=y, geno=geno, locus.label=locus.label, miss.val=miss.val, weight=weights, control=control$em.c) group.count <- group.lst$group.count names(group.count) <- c("control", "case") n.loci <- group.lst$n.loci # merge group and score data merge.df <- haplo.score.merge(score.lst, group.lst) names(merge.df)[(n.loci+score.lst$simulate+3):(n.loci+score.lst$simulate+5)] <- c("pool.hf", "control.hf", "case.hf") # prepare data for haplo.glm with binomial family logit link. # extract for Odds Ratios, exp(betas) geno.glm <- setupGeno(geno, miss.val=miss.val) # weights are not supported for haplo.glm in S-PLUS--take out for now # if (is.null(weights)) weights=rep(1,n.subj) if(!all(is.na(x.adj))) { glm.data <- data.frame(geno.glm, y=y, x.adj) hglm.formula <- arsenal::formulize(y="y", x=c("geno.glm", names(glm.data)[(names(glm.data) %nin% c("y","geno.glm"))]), data=glm.data) } else { glm.data <- data.frame(geno.glm, y=y) hglm.formula <- arsenal::formulize(y="y", x="geno.glm",data=glm.data) } # will only get OR's for haplotypes with freq > haplo.freq.min, based on min.count # should be set same as skip.haplo so 1:1 merge of haps from merge.lst set.seed(control$em.control$iseed) fit.lst <- haplo.glm(hglm.formula, family=binomial, data=glm.data, locus.label=locus.label, miss.val=miss.val, control=control) # ncoef <- length(fit.lst$coef) hapcoef.idx <- grep("^geno.glm", names(fit.lst$coeff)) # get OR's and variance estimates based on var(b's) # make base haplo coef zero b/c or will be 1 hap.coef <- (fit.lst$coefficients)[hapcoef.idx] se.bet <- sqrt(fit.lst$var.mat[cbind(hapcoef.idx, hapcoef.idx)]) # find CI's for OR's transormed from CI's on Betas if(0 > ci.prob || ci.prob > 1) { warning("invalid value for ci.prob, setting to default 0.95") ci.prob <- 0.95 } norm.constant <- -1*qnorm((1-ci.prob)/2) lower.ci <- hap.coef - norm.constant*se.bet lower.ci <- c(NA,exp(lower.ci)) upper.ci <- hap.coef + norm.constant*se.bet upper.ci <- c(NA,exp(upper.ci)) hap.OR <- c(1,exp(hap.coef)) OR.df <- cbind(lower.ci, hap.OR, upper.ci) ## when a rare haplotype is below haplo.min.info, & not part of model ## need to remove from haplo.rare --JPS 6/2005 fit.lst$haplo.rare <- fit.lst$haplo.rare[fit.lst$haplo.freq[fit.lst$haplo.rare] > control$haplo.min.info] ## combine haps, OR's and CI's in a data.frame fit.df <- as.data.frame(fit.lst$haplo.unique)[c(fit.lst$haplo.base, fit.lst$haplo.common, fit.lst$haplo.rare),] # if rare term replicate rare coeff for every rare hap if(length(fit.lst$haplo.rare) > 0) { rarehap.idx <- grep("rare$", rownames(OR.df)) rare.df <- matrix(rep(OR.df[rarehap.idx,],length(fit.lst$haplo.rare)),ncol=3,byrow=TRUE) if(control$keep.rare.haplo) { OR.df <- rbind(OR.df[-rarehap.idx,],rare.df) } else OR.df <- rbind(OR.df,rare.df) } class.vec <- c("Base", rep("Eff",length(fit.lst$haplo.common)), rep("R", length(fit.lst$haplo.rare))) fit.df <- cbind(fit.df,class.vec,OR.df) names(fit.df)[(n.loci+1):(n.loci+4)] <- c("glm.eff","OR.lower","OR", "OR.upper") # format the hap columns so the df's will merge on the haps fit.df[,1:n.loci] <- format(fit.df[,1:n.loci]) merge.df[,1:n.loci] <- format(merge.df[,1:n.loci]) cc.df <- merge(merge.df, fit.df,by=1:n.loci,all.x=TRUE,all.y=TRUE) cc.lst <- list(cc.df=cc.df, group.count=group.count, score.lst=score.lst, fit.lst=fit.lst, ci.prob=ci.prob, exclude.subj=exclude) ## returned score and glm objects in the returned list for ## additional applications class(cc.lst) <- "haplo.cc" cc.lst } haplo.stats/R/print.haplo.group.q0000644000176200001440000000537414672315242016505 0ustar liggesusers#$Author: sinnwell $ #$Date: 2005/03/29 19:21:53 $ #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/print.haplo.group.q,v 1.8 2005/03/29 19:21:53 sinnwell Exp $ #$Id: print.haplo.group.q,v 1.8 2005/03/29 19:21:53 sinnwell Exp $ #$Locker: $ #$Log: print.haplo.group.q,v $ #Revision 1.8 2005/03/29 19:21:53 sinnwell #make printBanner abide to options()$width # #Revision 1.7 2004/04/06 21:30:06 sinnwell #use nlines to limit output for demos # #Revision 1.6 2004/02/26 23:06:50 sinnwell #print.banner to printBanner # #Revision 1.5 2003/08/26 16:37:57 sinnwell #change license # #Revision 1.4 2003/03/06 22:04:56 sinnwell #update license and to handle haplo.group list obj # #Revision 1.3 2003/01/29 15:50:17 sinnwell #remove printing of rows.rem attr # #Revision 1.2 2003/01/17 16:58:38 sinnwell #revision for haplo.score version 1.2 # #Revision 1.1 2002/09/09 19:53:18 sinnwell #Initial revision # # License: # # Copyright 2003 Mayo Foundation for Medical Education and Research. # # This program is free software; you can redistribute it and/or modify it under the terms of # the GNU General Public License as published by the Free Software Foundation; either # version 2 of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for # more details. # # You should have received a copy of the GNU General Public License along with this # program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, # Boston, MA 02111-1307 USA # # For other licensing arrangements, please contact Daniel J. Schaid. # # Daniel J. Schaid, Ph.D. # Division of Biostatistics # Harwick Building Room 775 # Mayo Clinic # 200 First St., SW # Rochester, MN 55905 # # phone: 507-284-0639 # fax: 507-284-9542 # email: schaid@mayo.edu # print.haplo.group <- function(x, digits=max(options()$digits-2, 5), nlines=NULL, ...) { ### Print haplo.group object with frequency table for group ### and estimated frequencies for haplotypes. if (!inherits(x, 'haplo.group')) stop("Not an object of class haplo.group!") n.loci <- x$n.loci n.group <- length(x$group.count) # Round expected frequencies to set length digits df.print<-data.frame((x$group.df)[,1:n.loci], round((x$group.df)[,(n.loci+1):(n.loci+n.group+1)],digits)) cat("\n") printBanner("Counts per Grouping Variable Value", border = "-") print(x$group.count) cat("\n\n") printBanner("Haplotype Frequencies By Group ", border = "-") if(is.null(nlines)) print(df.print) else print(df.print[1:nlines,]) invisible() } haplo.stats/R/haplo.em.control.q0000644000176200001440000001054714672315242016274 0ustar liggesusers#$Author: sinnwell $ #$Date: 2008/02/05 16:31:18 $ #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/haplo.em.control.q,v 1.7 2008/02/05 16:31:18 sinnwell Exp $ #$Locker: $ #$Log: haplo.em.control.q,v $ #Revision 1.7 2008/02/05 16:31:18 sinnwell #change default for min.posteror to 1e-9 for when all lowLD markers, sometimes a subject is completely removed. # #Revision 1.6 2007/10/16 19:08:30 sinnwell #put max.haps.limit back in, and make the max allowed by intMax by checkIntMax in C, set limit at 2e6 as that seemed to work in previous versions # #Revision 1.5 2007/02/27 20:14:03 schaid #removed max.haps.limit, which is now controlled by checkIntMax in haplo.em and in haplol_em_pin # #Revision 1.4 2005/03/02 15:12:31 schaid #changed max.iter to 5000 # #Revision 1.3 2003/11/17 23:28:10 schaid #made compatible with R # #Revision 1.2 2003/08/26 22:09:38 sinnwell #added GPL License # #Revision 1.1 2003/08/26 21:02:09 schaid #Initial revision # # License: # # Copyright 2003 Mayo Foundation for Medical Education and Research. # # This program is free software; you can redistribute it and/or modify it under the terms of # the GNU General Public License as published by the Free Software Foundation; either # version 2 of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for # more details. # # You should have received a copy of the GNU General Public License along with this # program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, # Boston, MA 02111-1307 USA # # For other licensing arrangements, please contact Daniel J. Schaid. # # Daniel J. Schaid, Ph.D. # Division of Biostatistics # Harwick Building Room 775 # Mayo Clinic # 200 First St., SW # Rochester, MN 55905 # # phone: 507-284-0639 # fax: 507-284-9542 # email: schaid@mayo.edu # haplo.em.control <- function(loci.insert.order=NULL, insert.batch.size = 6, min.posterior=1e-9, tol=0.00001, max.iter=5000, random.start=0, n.try = 10, iseed=NULL, max.haps.limit = 2e6, verbose=0) { if(min.posterior < 0 | min.posterior > .8) { warning("The value of min.posterior is out of range, the devault value of 1e-9 is used instead") min.posterior <- 1e-9 } if(tol < 0 | tol > .5) { warning("The value of tol is out of range, the default value of 0.00001 is used instead") tol <- 0.00001 } if(max.iter < 0) { warning("The value of max.iter is < 0, the default value of 5000 is used instead") max.iter <- 5000 } if(random.start !=0 & random.start != 1){ warning("The value of random.start is not valid, the default value of 0 is used instead") random.start <- 0 } if(n.try < 1){ warning("The value of n.try is not valid, the default value of 10 is used instead") n.try <- 10 } # max.haps.limit is used to allow user to specify max number of hap pairs. # -If run-time is an issue with a small data set, set to a low number # -If set too-low for number of haplotypes, the C functions must request more, which takes extra time # Employ the system's intMax as the upper limit allowed by integer index (int representation in R) # In most situations, the process is unable to allocate memory for intMax, # which is roughly 5-6G of total memory in haplo.em test cases intMax <- .C("checkIntMax", intMax = as.integer(0), PACKAGE="haplo.stats")$intMax if(max.haps.limit < 1000 | max.haps.limit > intMax) { warning("The value of max.haps.limit is not valid, the default value of 2e6 is used instead") max.haps.limit = 2e6 } return(list(loci.insert.order=loci.insert.order, insert.batch.size = insert.batch.size, min.posterior=min.posterior, tol=tol, max.iter=max.iter, random.start=random.start, n.try=n.try, iseed=iseed, max.haps.limit=max.haps.limit, verbose=verbose)) } haplo.stats/R/find.haplo.beta.qt.q0000644000176200001440000001061314672315242016463 0ustar liggesusers#$Author: sinnwell $ #$Date: 2008/04/29 14:34:32 $ #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/find.haplo.beta.qt.q,v 1.5 2008/04/29 14:34:32 sinnwell Exp $ #$Locker: $ #$Log: find.haplo.beta.qt.q,v $ #Revision 1.5 2008/04/29 14:34:32 sinnwell #T to TRUE # #Revision 1.4 2008/03/10 19:01:15 sinnwell # call get.hapPair instead of re-used code # #Revision 1.3 2008/03/05 15:28:07 sinnwell #rm useless code # #Revision 1.2 2008/02/28 21:49:27 sinnwell #take out commented check uniroot$message for failure # #Revision 1.1 2008/02/28 15:59:27 sinnwell #Initial revision # find.haplo.beta.qt <- function(haplo, haplo.freq, base.index, haplo.risk, r2, y.mu=0, y.var=1){ # Find beta's for risk haplotypes, for specified r2 root.save <- uniroot(find.beta.qt.phase.known, lower=0, upper=10, tol = 0.000001, haplo.risk=haplo.risk, base.index=base.index, haplo=haplo, haplo.freq=haplo.freq, r2=r2, y.mu=y.mu, y.var=y.var) beta.target <- root.save$root beta <- numeric(nrow(haplo)) beta[haplo.risk] <- beta.target beta.no.intercept <- beta[-base.index] beta[base.index] <- find.intercept.qt.phase.known(beta.no.intercept, base.index, haplo, haplo.freq, y.mu) return(list(r2=r2, beta=beta, base.index=base.index, haplo.risk=haplo.risk)) } find.beta.qt.phase.known <- function(beta.size, haplo.risk, base.index, haplo, haplo.freq, r2, y.mu, y.var){ # compute noncentrality parameter (ncp) for score stat of # haplotype effects for a quantitative trait, for both # genotypes (phased haplotypes) and diplotypes (un-phased haplotypes) # Create matrix of indices for all possible pairs of haplotypes haplo <- as.matrix(haplo) n.loci <- ncol(haplo) n.haplo <- nrow(haplo) # haplo.indx <- expand.grid(1:n.haplo,1:n.haplo) # haplo.indx <- cbind(haplo.indx[,2],haplo.indx[,1]) # haplo.indx <- haplo.indx[haplo.indx[,1] <= haplo.indx[,2],] # Set up regression design matrices and beta coeff vectors # Design matrix using base.index as baseline, and assuming # haplotype effects are additive # haplo.reg <- (1:n.haplo)[-base.index] # x.haplo <- 1*outer(haplo.indx[,1], haplo.reg,"==") + 1*outer(haplo.indx[,2], haplo.reg,"==") # Compute prior genotype probs (geno = pair of haplotypes) # p.g <- haplo.freq[haplo.indx[,1]] * haplo.freq[haplo.indx[,2]] # p.g <- p.g * ifelse(haplo.indx[,1] == haplo.indx[,2], 1, 2) hapPair.lst <- get.hapPair(haplo, haplo.freq, base.index) p.g <- hapPair.lst$p.g x.haplo <- hapPair.lst$x.haplo # Set up vector of beta's (leave intercept =0, since ignored) beta <- numeric(n.haplo) beta[haplo.risk] <- beta.size x.mu <- apply(x.haplo * p.g, 2, sum) # E[V] if no ambiguous haplotypes x.mu.mat <- matrix(rep(x.mu, nrow(x.haplo)), nrow=nrow(x.haplo), byrow=TRUE) delta.x <- x.haplo - x.mu.mat t2 <- delta.x * p.g vx.complete <- t(t2) %*% delta.x # Model R^2 for phase known haplotypes r2.phase.known <- (t(beta[-base.index]) %*% vx.complete %*% beta[-base.index])/y.var r2.diff <- r2.phase.known - r2 return(r2.diff) } find.intercept.qt.phase.known <- function(beta.no.intercept, base.index, haplo, haplo.freq, y.mu){ # Create matrix of indices for all possible pairs of haplotypes haplo <- as.matrix(haplo) # n.loci <- ncol(haplo) # n.haplo <- nrow(haplo) # haplo.indx <- expand.grid(1:n.haplo,1:n.haplo) # haplo.indx <- cbind(haplo.indx[,2],haplo.indx[,1]) # haplo.indx <- haplo.indx[haplo.indx[,1] <= haplo.indx[,2],] # Set up regression design matrices and beta coeff vectors # Design matrix using base.index as baseline, and assuming # haplotype effects are additive # haplo.reg <- (1:n.haplo)[-base.index] # x.haplo <- 1*outer(haplo.indx[,1], haplo.reg,"==") + 1*outer(haplo.indx[,2], haplo.reg,"==") # Compute prior genotype probs (geno = pair of haplotypes) # p.g <- haplo.freq[haplo.indx[,1]] * haplo.freq[haplo.indx[,2]] # p.g <- p.g * ifelse(haplo.indx[,1] == haplo.indx[,2], 1, 2) hapPair.lst <- get.hapPair(haplo, haplo.freq, base.index) x.mu <- apply(hapPair.lst$x.haplo * hapPair.lst$p.g, 2, sum) # Find intercept (beta for base.index haplotype) beta0 <- y.mu - t(beta.no.intercept) %*% x.mu return(beta0) } haplo.stats/R/haplo.glm.q0000644000176200001440000003573214672360062014776 0ustar liggesusers#$Author: sinnwell $ #$Date: 2013/01/14 19:32:24 $ #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/haplo.glm.q,v 1.22 2013/01/14 19:32:24 sinnwell Exp $ #$Locker: $ #$Log: haplo.glm.q,v $ #Revision 1.22 2013/01/14 19:32:24 sinnwell #add haplo.binomial, no need glm.fit.nowarn # #Revision 1.21 2012/02/22 14:59:44 sinnwell #make assigning of names to var.mat allow for when haplo.elim=NA # #Revision 1.20 2012/02/03 21:36:59 sinnwell #fix small bug in haplo.glm in names for var.mat # #Revision 1.19 2011/11/23 20:34:02 sinnwell #release 1.4.81, updates with test scripts # #Revision 1.18 2011/11/10 15:29:40 sinnwell #major update to hapglm, minor changes to Rd files, prepare for version 1.5.0 release # #Revision 1.17 2008/04/14 19:46:26 sinnwell #make exception if yxmiss not added in na.geno.keep b/c no NAs # #Revision 1.16 2008/03/24 21:22:25 sinnwell #rm allele.lev, miss.val parameters, re-work model.frame code, yet leave old ode there. #return missing info from na.geno.keep # #Revision 1.15 2007/02/01 20:25:29 sinnwell #starting values for eta taken out of fit.null and updated correctly #at each step of while loop # #Revision 1.14 2006/10/25 15:06:17 sinnwell #rm Matrix library dependency, only done in Ginv.q # #Revision 1.13 2006/01/27 16:30:19 sinnwell #depends on Matrix library # #Revision 1.12 2005/01/25 23:04:06 sinnwell #use as.list(args(haplo.glm)) instead of formals when na.action not given #formals is for R only # #Revision 1.11 2005/01/25 22:25:22 sinnwell #take out print statements left from debugging # #Revision 1.10 2005/01/23 20:01:38 sinnwell #use Thomas Lumley hint from R-help, use formals of haplo.glm to set #default na.action to na.geno.keep. # #Revision 1.9 2005/01/19 16:14:39 sinnwell #default na.action not set to na.geno.keep, force it if missing(na.action) #m$na.action <- as.name("na.geno.keep") # #Revision 1.8 2005/01/04 17:37:22 sinnwell #set haplo.min.freq as a function of haplo.min.count #using a min expected count of haplotypes is better criteria # #Revision 1.7 2004/03/19 15:01:48 sinnwell #consider .C(PACKAGE= as part of '...' # #Revision 1.6 2004/03/17 21:11:12 sinnwell #separate calls of .C("groupsum" for R and Splus # #Revision 1.5 2004/03/03 22:13:16 schaid #added allele.lev to pass allele labels, to allow haplo.glm to work in R for character alleles # #Revision 1.4 2004/01/12 14:46:57 sinnwell #get around warnings for binomial trait in R # #Revision 1.3 2003/12/08 19:37:09 sinnwell #changed F,T to FALSE,TRUE # #Revision 1.2 2003/11/17 23:27:20 schaid #made compatible with R # #Revision 1.1 2003/09/16 16:01:54 schaid #Initial revision # haplo.glm <- function(formula = formula(data), family = gaussian, data = parent.frame(), weights, na.action="na.geno.keep", start=NULL, locus.label=NA, control = haplo.glm.control(), method = "glm.fit", model = TRUE, x = FALSE, y = TRUE, contrasts = NULL, ...) { call <- match.call() # Create a model.frame call with formula elements only frame.call <- call('model.frame', formula=formula) # Steps to assign args to model.frame call, Terry Therneau 7/2005 # assign desired parameters from Call to frame.call k=length(frame.call) ## because R doesn't automatically name model.frame column names ## let k keep track of index of last element of frame.call, ## and assign the name (only when using R) for(i in c('data', 'weights', 'subset', 'na.action', 'drop.unused.levels')) { if(!is.null(call[[i]])) { frame.call[[i]] <- call[[i]] k <- k+1 names(frame.call)[k]=i } } # if no drop.unused.levels or na.action given, assign them if(is.null(frame.call$drop.unused.levels)) frame.call$drop.unused.levels <- TRUE if(is.null(frame.call$na.action)) frame.call$na.action=as.list(args(haplo.glm))$na.action # evaluate the call m <- eval(frame.call, parent.frame()) Terms <- attr(m, "terms") # save missing value information from model.frame, na.action if(!is.null(attributes(m)$yxmiss) & !is.null(attributes(m)$gmiss)) missing <- data.frame(yxmiss=attributes(m)$yxmiss, genomiss=attributes(m)$gmiss) # set design matrix contrasts contrasts.old <- options()$contrasts options(contrasts = c(factor="contr.treatment", ordered = "contr.poly")) on.exit(options(contrasts=contrasts.old)) # Extract weights per subject wt.subj <- model.weights(m) if(!length(wt.subj)) wt.subj <- rep(1, nrow(m)) else if(any(wt.subj < 0)) stop("negative weights not allowed") # for control, base minimum haplotype frequencies on haplo.min.count # as precedent over haplo.freq.min, the min count is 5 if(is.na(control$haplo.freq.min)) control$haplo.freq.min <- control$haplo.min.count/(2*nrow(m)) #### Modify model.frame ## Translate from unphased genotype matrix to haplotype design matrix ## Use haplo.model.frame to modify the model.frame, which ## calls haplo.em to estimate haplotype frequencies. haplo.mf <- haplo.model.frame(m, locus.label=locus.label, control=control) # Extract the model.frame created by haplo.model.frame m <- haplo.mf$m.frame if(method == "model.frame") return(m) #### From haplo.model.frame ## g.dat is a dataframe with indx.subj, hap1, hap2, where hap1 and hap2 are ## numeric codes for haplotypes ## haplo.rare.term, logical for if there is a rare haplotype term g.dat <- haplo.mf$g.dat haplo.unique <- haplo.mf$haplo.unique haplo.base <- haplo.mf$haplo.base haplo.freq <- haplo.freq.init <- haplo.mf$haplo.freq haplo.common <- haplo.mf$haplo.common haplo.rare.term <- haplo.mf$haplo.rare.term haplo.rare <- haplo.mf$haplo.rare ## Set up integer grouping variables (indices) for group sums haplo.group <- c(g.dat$hap1,g.dat$hap2) len.haplo.group <- length(haplo.group) n.haplo.group <- length(haplo.freq) subj.indx <- as.numeric(factor(g.dat$indx.subj)) len.subj.indx <- length(subj.indx) n.subj <- length(unique(subj.indx)) ## Setup weights after expanding each subject into pairs of haplotypes ## (i.e., possibly replicate weights according to replicates required ## for enumerating pairs of haplotypes) wt.expanded <- wt.subj[subj.indx] ## Compute priors and posteriors of pairs of haplotypes, given observed data. prior.coef <- ifelse(g.dat$hap1!=g.dat$hap2, 2, 1) prior <- prior.coef * haplo.freq[g.dat$hap1] * haplo.freq[g.dat$hap2] pr.pheno.init <- tapply(prior,g.dat$indx.subj,sum) nreps <- tapply(g.dat$indx.subj,g.dat$indx.subj,length) den <- rep(pr.pheno.init,nreps) post <- prior/den ## Keep initial post to return in haplo.post.info post.initial <- post # Keep count of true number of haplotypes for later use as denom # of haplotype frequenices n.hap <- 2 * sum(wt.subj) # First E-step: create new weights based on post. # Note that these weights are based on post, which was computed assuming # that there are no regression terms (i.e., all regression # beta's = 0). # wt.expanded is the original input weight vector, wt.subj, # (or set to 1's if not input), # after enumeration of all possible pairs of haplos. # Need to distinguish between wt.expanded and # working weights, which are wght.expanded * post w <- wt.expanded * post xvars <- as.character(attr(Terms, "variables")) xvars <- xvars[-1] if ((yvar <- attr(Terms, "response")) > 0) xvars <- xvars[-yvar] if(length(xvars) > 0) { xlevels <- lapply(m[xvars], levels) xlevels <- xlevels[!sapply(xlevels, is.null)] if(length(xlevels) == 0) xlevels <- NULL } else xlevels <- NULL a <- attributes(m) Y <- model.response(m, "numeric") X <- model.matrix(Terms, m, contrasts) start <- model.extract(m, start) offset <- model.offset(m) if (is.character(family)) family <- get(family) if (is.function(family)) family <- family() if (is.null(family$family)) { print(family) stop("`family' not recognized") } ## init for binomial does not allow non-integer fitted values ## use haplo.binomial init expression if(family$family =="binomial") { family$initialize=haplo.binomial()$initialize } if(missing(method)) method <- attr(family, "method") if(!is.null(method)) { if(!existsFunction(method)) stop(paste("unimplemented method:", method)) } else method <- "glm.fit" glm.fitter <- get(method) # Unlike the generic glm, we compute the Null model (Intercept-only) # here, instead of within the EM loop (to avoid recomputing the null # within each loop iteration). ## switch fitter for binomial because it gives unneeded warnings #if(family$family=="binomial") glm.fitter=glm.fit.nowarn ## FIXED WITH THE INIT FIX ABOVE ## get the null fit fit.null <- glm.fitter(x = X[, "(Intercept)", drop = FALSE], y = Y, weights = w, etastart = start, offset = offset, family = family, control=glm.control(maxit = control$maxit, epsilon = control$epsilon)) dfit <- dglm.fit(fit.null) prior <- prior*dfit pr.pheno <- tapply(prior, subj.indx, sum) lnlike.old <- lnlike.null <- sum(wt.subj*log(pr.pheno)) ################ ### EM loop ################ ## Set up arrays for group sums within EM loop prior.tot <- rep(0,n.subj) post.tot <- rep(0,n.haplo.group) converge.em <- FALSE # need a separate control.epsilon for EM, because need more # stringent check for change in lnLike for EM than for # glm.fit control.epislon.em <- min(c(control$epsilon, 0.000001)) iter <- 0 while(iter < control$maxit){ iter <- iter + 1 # M-step for regression beta's, using weights that depend on # earlier haplotype freqs and beta's fit <- glm.fitter(x = X, y = Y, weights = w, etastart = start, offset = offset, family = family, control=glm.control(maxit = control$maxit, epsilon = control$epsilon)) # Using new beta's, but earlier haplotype frequencies, update post, and # compute lnLike dfit <- dglm.fit(fit) prior <- prior.coef * haplo.freq[g.dat$hap1] * haplo.freq[g.dat$hap2] * dfit ## For the following, tapply was originally used, ## as pr.pheno <- tapply(prior,subj.indx, sum), but this took too much ## time within this EM loop, so a C function 'groupsum' is used instead. tmp.sum <- .C("groupsum", x=as.double(prior), indx=as.integer(subj.indx), n=as.integer(len.subj.indx), grouptot= as.double(prior.tot), ngroup=as.integer(n.subj), PACKAGE="haplo.stats") pr.pheno <- tmp.sum$grouptot den <- rep(pr.pheno,nreps) post <- prior/den lnlike.new <- sum(wt.subj*log(pr.pheno)) ## Create new weights based on post. These posteriors depend ## on the ith iteration of beta's, but the (i-1)th iteration of ## haplo.freq w <- wt.expanded * post ## M-step for haplotype frequencies, based on expected counts tmp.sum <- .C("groupsum", x=as.double(c(post*wt.expanded, post*wt.expanded)), indx=as.integer(haplo.group), n=as.integer(len.haplo.group), grouptot= as.double(post.tot), ngroup=as.integer(n.haplo.group), PACKAGE="haplo.stats") e.hap.count <- tmp.sum$grouptot haplo.freq <- e.hap.count/n.hap ## convergence checks if(abs(lnlike.new - lnlike.old) < control.epislon.em){ converge.em <- TRUE break } ## update starting values for eta, and update lnlike start <- X%*%fit$coeff lnlike.old <- lnlike.new } if(!converge.em) warning("Failed to converge during EM-glm loop") lnlike.final <- lnlike.new fit$iter <- iter fit$lnlike <- lnlike.final fit$lnlike.null <- lnlike.null fit$lrt <- list(lrt = 2*(lnlike.final - lnlike.null), df = fit$rank-1 ) ## Re-compute deviance and aic from collapsed fitted values ## 9/8/11 -JPS dev.resids <- family$dev.resids aic <- family$aic Y.collapsed <- tapply(Y, subj.indx, FUN=function(x) x[1]) mu.collapsed <- tapply(fit$fitted.values*wt.expanded*post, subj.indx,sum) #fit$deviance <- sum(dev.resids(Y.collapsed, mu.collapsed, wt.subj)) fit$deviance <- sum(dev.resids(Y, fit$fitted.values, wt.expanded*post)) fit$aic <- aic(Y.collapsed, length(Y.collapsed), mu.collapsed, wt.subj, fit$deviance) + 2*fit$rank ## item added for anova method, update 9/8/11 by JPS fit$method <- method ## Assign Expanded wts from wt.subj to prior.weights ## Non-expanded prior wts get from tapply(wt.subj, subj.indx, x[1]) fit$prior.weights <- wt.expanded if(!is.null(xlevels)) attr(fit, "xlevels") <- xlevels fit$terms <- Terms fit$formula <- as.vector(attr(Terms, "formula")) fit$call <- call fit$control <- control if(!is.null(attr(m, "na.action"))) fit$na.action <- attr(m, "na.action") fit$haplo.unique <- haplo.unique fit$haplo.base <- haplo.base fit$haplo.freq <- haplo.freq fit$haplo.freq.init <- haplo.freq.init fit$converge.em <- converge.em fit$haplo.common <- haplo.common fit$haplo.rare <- haplo.rare fit$haplo.rare.term <- haplo.rare.term fit$haplo.names <- haplo.mf$haplo.names ## data.frame for info on posteriors haplo.post.info <- cbind(g.dat, post.initial, post) names(haplo.post.info) <- c("indx", "hap1", "hap2", "post.init", "post") fit$haplo.post.info <- haplo.post.info ## estimation of the information and variance matrix. ## requires X matrix, so attach to fit, and de-attach ## later if not desired to be returned fit$x <- X infoLouis <- louis.info(fit, epsilon=control$eps.svd) fit$info <- infoLouis$info fit$var.mat <- infoLouis$var.mat fit$haplo.elim <- infoLouis$haplo.elim fit$rank.info <- infoLouis$rank elim.common <- which(fit$haplo.common %in%fit$haplo.elim) coeffnames <- names(fit$coefficients) if(length(haplo.common)) { coeffnames <- c(coeffnames, paste("hap", haplo.common, sep='.')) } if(length(haplo.rare)) { nrare <- length(haplo.rare) - sum(!is.na(fit$haplo.elim)) coeffnames <- c(coeffnames, rep("hap.rare", nrare)) } dimnames(fit$var.mat) <- list(coeffnames, coeffnames) fit$missing <- missing if(model) fit$model <- haplo.mf$m.frame ## fit$model <- m ## JPS changed to line above--9/16/11 if(!y) fit$y <- NULL if(!x) fit$x <- NULL ## 9/7/11 removed exception for Splus -JPS ## 9/23/11 add 2nd class "glm", so it can inherit some methods ## from glm, such as anova.glmlist class(fit) <- c("haplo.glm", "glm") return(fit) } haplo.stats/R/zzz.haplo.stats.R0000644000176200001440000000244714672315242016147 0ustar liggesusers#$Author: sinnwell $ #$Date: 2013/01/14 19:33:16 $ #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/zzz.haplo.stats.R,v 1.4 2013/01/14 19:33:16 sinnwell Exp $ #$Locker: $ #$Log: zzz.haplo.stats.R,v $ #Revision 1.4 2013/01/14 19:33:16 sinnwell #small changes for 1.5.9 # #Revision 1.3 2012/12/28 21:39:36 sinnwell #version with update zzz file # #Revision 1.2 2011/12/05 20:56:10 sinnwell #final manual changes, updated test suite # #Revision 1.1 2004/07/02 14:18:11 sinnwell #Initial revision # #Revision 1.5 2003/10/06 15:45:17 sinnwell #dyn.load haplo.stats, not haplo.score # #Revision 1.4 2003/08/26 16:41:23 sinnwell #change License statement # #Revision 1.3 2003/03/20 22:26:56 sinnwell #remove source() command # #Revision 1.2 2003/03/17 16:45:41 sinnwell #autoload data in hla.demo.q in .First.Lib() # #Revision 1.1 2003/03/06 23:25:55 sinnwell #Initial revision # #.onLoad <- function(lib, pkg) { # library.dynam("haplo.stats", pkg, lib) #} #.onAttach <- function(lib, pkg) { # library.dynam("haplo.stats", pkg, lib) #} ##.First.lib <- function(lib, pkg) { ## ##library.dynam("haplo.stats", pkg, lib) ##} ##.Last.lib <- function(libpath) { ## library.dynam.unload("haplo.stats", libpath) ##} .onUnload <- function(libpath) { library.dynam.unload("haplo.stats", libpath) } haplo.stats/R/haplo.group.q0000644000176200001440000001300214672371424015341 0ustar liggesusers# $Author: sinnwell $ # $Date: 2007/03/22 15:41:32 $ --> # $Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/haplo.group.q,v 1.12 2007/03/22 15:41:32 sinnwell Exp $ --> # $Locker: $ # $Log: haplo.group.q,v $ # Revision 1.12 2007/03/22 15:41:32 sinnwell # fix call to haplo.em # # Revision 1.11 2007/03/13 15:56:53 sinnwell # add weight for haplo.em on all people # # Revision 1.10 2003/12/08 20:10:59 sinnwell # changed T,F to TRUE,FALSE # # Revision 1.9 2003/10/15 16:13:10 schaid # changed em.control to control, to be consistent with haplo.em # # Revision 1.8 2003/08/28 14:22:50 sinnwell # re-fix for rows.rem # # Revision 1.7 2003/08/27 21:02:29 sinnwell # update for release 1.2.0 with PIN, keep rows.rem # # Revision 1.6 2003/08/26 16:39:04 sinnwell # change license statement # # Revision 1.5 2003/05/20 14:49:53 sinnwell # add more em control parameters # # Revision 1.3 2003/03/06 20:58:13 sinnwell # updates to make return obj a list and, and gnames # # Revision 1.2 2003/01/17 16:56:39 sinnwell # revision for haplo.score version 1.2 # # Revision 1.2 2002/09/16 14:46:42 sinnwell # Fix RCS keywords # # License: # # Copyright 2003 Mayo Foundation for Medical Education and Research. # # This program is free software; you can redistribute it and/or modify it under the terms of # the GNU General Public License as published by the Free Software Foundation; either # version 2 of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for # more details. # # You should have received a copy of the GNU General Public License along with this # program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, # Boston, MA 02111-1307 USA # # For other licensing arrangements, please contact Daniel J. Schaid. # # Daniel J. Schaid, Ph.D. # Division of Biostatistics # Harwick Building Room 775 # Mayo Clinic # 200 First St., SW # Rochester, MN 55905 # # phone: 507-284-0639 # fax: 507-284-9542 # email: schaid@mayo.edu # haplo.group <- function(group, geno, locus.label=NA, miss.val=0, weight=NULL, control=haplo.em.control()) ## Developed by JP Sinnwell & DJ Schaid ## ## Mayo HSR Biostatistics ## ## 7/2002 ## ## update for allowing missing alleles 11/2002 ## update for haplo.em with Progressive Insertion 8/2003 { # Build a haplo.group object with a dataframe, number of loci, and counts by group # The dataframe will contain all possible haplotypes and expected frequencies # for the entire data set and the groups where the haplotype could exist group.name <- deparse(substitute(group)) # Check dims of group and geno nr <- nrow(geno) if(length(group)!=nr) stop("Dims of group and geno are not compatible") # Set number of loci n.loci <- ncol(geno)/2 if(n.loci != (floor(ncol(geno)/2)) ) stop("Odd number of cols of geno") # Make groups either numeric or character if (!is.numeric(group)) group <- as.character(group) # Check for missing group data miss.group <- is.na(group) | group=="NA" # Subset to non-missing group values: group <- group[!miss.group] geno <- geno[!miss.group,] # Create a haplo object (using haplo.em) using size-evaluation criteria haplo.all <- haplo.em(geno, locus.label, miss.val=miss.val, weight=weight, control=control) # Check convergence of EM if(!haplo.all$converge) stop("EM for haplo failed to converge") ## new subset of removed genorows based on enumeration criteria of haplo.em rem.geno <- haplo.all$rows.rem if(length(rem.geno)>0) { geno <- geno[-rem.geno,] group <- group[-rem.geno] } # Make initial dataframe with total groups haplotype.all <- haplo.all$haplotype prob.all <- haplo.all$hap.prob haplo.freq <- data.frame(haplotype.all, prob.all) # Subset haplotypes by group variable # Do not weight because sub-samples are not over-sampled. ugroup <- sort(unique(group)) gnames <- character(0) for (i.group in ugroup) { gnames <- c(gnames, paste(group.name, i.group, sep= "=")) group.sub <- group==i.group geno.sub <- geno[group.sub,] # Create haplo object for i.group # rows to be removed are already removed from first run of haplo.em haplo.tmp <- haplo.em(geno.sub, locus.label, miss.val=miss.val, control=control) # Check convergence of EM if(!haplo.tmp$converge) cat("Warning: EM failed to converge for group", i.group, "\n") # Create dataframe for the group with haplotypes and prob haplotype.sub <- haplo.tmp$haplotype prob.sub <- haplo.tmp$hap.prob df.sub <- data.frame(haplotype.sub,prob.sub) # Merge matching the haplotypes (cols 1:n.loci) and keep all rows # This will leave NA's where no match in sub group haplo.freq <- merge(haplo.freq, df.sub, by.x=1:n.loci, by.y=1:n.loci, all.x=TRUE, all.y=TRUE) } # end for i.group # Create locus label if missing: if (all(is.na(locus.label))) { locus.label<- paste("loc-",1:n.loci,sep="") } # Set names for the dataframe names(haplo.freq) <- c(locus.label, "Total", gnames) # Get group frequencies group.count <- table(group) hapgroup <- list(group.df=haplo.freq, group.count=group.count, n.loci=n.loci) class(hapgroup) <- c("haplo.group","data.frame") return(hapgroup) } haplo.stats/R/locus.q0000644000176200001440000000443314672370667014250 0ustar liggesusers#$Author: sinnwell $ # #$Date: 2011/02/21 20:09:27 $ # #$Header: /projects/genetics/cvs/cvsroot/mgenet/R/locus.q,v 1.1.1.1 2011/02/21 20:09:27 sinnwell Exp $ # #$Locker: $ # #$Log: locus.q,v $ #Revision 1.1.1.1 2011/02/21 20:09:27 sinnwell #initial, genetics functions for Mayo BSI # #Revision 1.6 2003/12/08 19:49:00 sinnwell #done #changed T,F to TRUE,FALSE # #Revision 1.5 2003/09/19 15:40:09 sinnwell #fix class and oldClass stuff for R/S compatibility # #Revision 1.4 2003/01/17 15:55:36 det01 #Removed setOldClass(c("locus","model.matrix")) code #The code oldClass(geno) <- "locus" modified to oldClass(geno) <- "model.matrix" # #Revision 1.3 2002/12/13 17:47:35 det01 #Locus class inherits from model.matrix class # # locus <- function(allele1,allele2, chrom.label=NULL, locus.alias=NULL, x.linked=FALSE, sex=NULL, male.code="M", female.code="F", miss.val=NA) { # Title: Create an object of locus class if (missing(allele1)) stop("Error: allele1 is missing") if (missing(allele2)) { if (!is.matrix(allele1)) { stop("Error: allele1 not a matrix when allele2 is missing") } else { if (ncol(allele1)!=2) stop("Error: allele1 must be matrix with 2 columns when allele2 is missing") allele2 <- allele1[,2] allele1 <- allele1[,1] } } if (length(allele1)!=length(allele2)) stop("Error: allele vectors not of the same length") # convert factor to character: if ((any(is.factor(allele1))) | (any(is.factor(allele2)))){ allele1 <- as.character(allele1) allele2 <- as.character(allele2) } # fix miss.val so NA is kept as a missing code if (!any(is.na(miss.val))) miss.val <- c(miss.val,NA) n <- length(allele1) t <- factor(c(allele1,allele2),exclude=miss.val) a1 <- as.numeric(t[1:n]) a2 <- as.numeric(t[(n+1):(2*n)]) geno <- cbind(a1,a2) attr(geno,"chrom.label") <- chrom.label attr(geno,"locus.alias") <- locus.alias attr(geno,"x.linked") <- x.linked class(geno) <- "model.matrix" attr(geno,"allele.labels") <- levels(t) if (x.linked) { attr(geno,"male.code") <- male.code attr(geno,"female.code") <- female.code # Stop if x-linked related errors x.sexcheck(geno,sex,stop=TRUE) } return(geno) } haplo.stats/R/haplo.power.cc.q0000644000176200001440000000332614672315242015731 0ustar liggesusers#$Author: sinnwell $ #$Date: 2008/02/28 15:59:27 $ #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/haplo.power.cc.q,v 1.1 2008/02/28 15:59:27 sinnwell Exp $ #$Locker: $ #$Log: haplo.power.cc.q,v $ #Revision 1.1 2008/02/28 15:59:27 sinnwell #Initial revision # haplo.power.cc <- function(haplo, haplo.freq, base.index, haplo.beta, case.frac, prevalence, alpha, sample.size=NULL, power=NULL){ if(is.null(power) & is.null(sample.size)) { stop("Must specify either power or sample.size") } if(!is.null(power) & !is.null(sample.size)) { stop("Must specify only one of power or sample.size") } ncp <- haplo.power.cc.ncp(haplo, haplo.freq, base.index, haplo.beta, case.frac, prevalence) if(is.null(sample.size) & !is.null(power)) { ss.phased.haplo <- chisq.sample.size(nc=ncp$ncp.phased.haplo, df=ncp$df.phased.haplo, alpha=alpha, power=power) ss.unphased.haplo <- chisq.sample.size(nc=ncp$ncp.unphased.haplo, df=ncp$df.unphased.haplo, alpha=alpha, power=power) power.phased.haplo <- power power.unphased.haplo <- power } if(is.null(power) & !is.null(sample.size)) { power.phased.haplo <- chisq.power(n=sample.size, nc=ncp$ncp.phased.haplo, df=ncp$df.phased.haplo, alpha=alpha) power.unphased.haplo <- chisq.power(n=sample.size, nc=ncp$ncp.unphased.haplo, df=ncp$df.unphased.haplo, alpha=alpha) ss.phased.haplo <- sample.size ss.unphased.haplo <- sample.size } return(list(ss.phased.haplo=ss.phased.haplo, ss.unphased.haplo=ss.unphased.haplo, power.phased.haplo=power.phased.haplo, power.unphased.haplo=power.unphased.haplo)) } haplo.stats/R/haplo.scan.q0000644000176200001440000000742014672315242015134 0ustar liggesusers#$Author: sinnwell $ #$Date: 2011/11/10 15:29:40 $ #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/haplo.scan.q,v 1.7 2011/11/10 15:29:40 sinnwell Exp $ #$Locker: $ #$Log: haplo.scan.q,v $ #Revision 1.7 2011/11/10 15:29:40 sinnwell #major update to hapglm, minor changes to Rd files, prepare for version 1.5.0 release # #Revision 1.6 2008/12/02 20:23:57 sinnwell #add code to remove subjects with NA in y. # #Revision 1.5 2006/10/25 14:51:32 sinnwell #remove Matrix library load # #Revision 1.4 2006/01/27 16:30:10 sinnwell #dependency on Matrix library # #Revision 1.3 2005/03/28 22:26:31 sinnwell #change calls to haplo.scan.sim and haplo.scan.obs # #Revision 1.2 2005/03/23 23:13:17 sinnwell #return max.loc # #Revision 1.1 2005/03/23 18:07:08 sinnwell #Initial revision # # Jason Sinnwell and Dan Schaid # Mayo Clinic, Rochester MN USA haplo.scan <- function(y, geno, width=4, miss.val=c(0,NA), em.control=haplo.em.control(), sim.control=score.sim.control() ) # Given case/control status and unphased genotypes # For all locus subsets within width of a given locus, # Find the maximum chi-square stastistic for case/control status # 10 locus set, width=3, the max-stat for locus 5 is the max # for subsets 345, 456, 567, 45, 56, 5 # Perform simulations using permuted case/control status for evaluation of # significance of the max-stat for each locus, and also for a global-max-stat { call <- match.call() # check dimensions of parameters if(!(ncol(geno)%%2==0)) stop("geno has uneven number of columns") if(length(y) != nrow(geno)) stop("y and geno have different number of observations") # if any NA in y, rm subject from y and geno naY <- is.na(y) if(any(naY)) { y <- y[!naY] geno <- geno[!naY,] cat("Removing subjects with NA for y\n") } nloci <- ncol(geno)/2 # calculate statvec on observed data, # while saving information for all locus subsets em.obj <- haplo.em(geno, miss.val=miss.val, control=em.control) vec.save <- haplo.scan.obs(y=y, em.obj=em.obj, width=width) svec <- vec.save$svec maxstat.obs <- max(svec) maxstat.locus <- (1:nloci)[maxstat.obs==svec] # extract the information from sub-locus haplotypes to re-use in simulations save <- vec.save$save.lst # calculate svec on permuted data until: # a. simulate at least min.sim times # b. aim for p-value accuracy for small pvals (Besag and Clifford, 1991) # c. stop at max.sim if accuracy not met by then done <- FALSE nsim <- 0 global.rej <- 0 loc.rej <- numeric(nloci) p.threshold <- sim.control$p.threshold while(!done) { y.reord <- y[order(runif(length(y)))] simvec <- haplo.scan.sim(y.reord=y.reord, save.lst=save, nloci) nsim <- nsim+1 maxstat.sim <- max(simvec) global.rej <- global.rej + (maxstat.sim > maxstat.obs) loc.rej <- loc.rej + (simvec > svec) # h is target count of rejection obs to stop sampling # formula from Besag and Clifford 1991 h.count <- 1/(p.threshold^2 + 1/nsim) h.met <- c(global.rej, loc.rej) >= h.count # print simulation criteria out to screen if(sim.control$verbose) cat("h.count:", round(h.count,5), "nsim: ", nsim, "\n glob.rej:", global.rej, " loc.rej:", loc.rej, "\n") # done if reach max.sim or enough rej values. If max is reached, # keep results and calculate p-vals at that point. ## cat("nsim:", nsim, " h.count:", h.count, " h.met:", h.met, "\n") if((nsim >= sim.control$min.sim) & ( (nsim == sim.control$max.sim) | all(h.met) ) ) done <- TRUE } locp <- loc.rej/nsim globalp <- global.rej/nsim scan.obj <- list(call=call, scan.df=rbind(svec, locp), max.loc=maxstat.locus, globalp=globalp, nsim=nsim) oldClass(scan.obj) <- "haplo.scan" return(scan.obj) } haplo.stats/R/Ginv.R0000644000176200001440000001023214672315242013745 0ustar liggesusers#$Author: sinnwell $ # #$Date: 2011/02/21 20:09:27 $ # #$Header: /projects/genetics/cvs/cvsroot/mgenet/R/Ginv.R,v 1.1.1.1 2011/02/21 20:09:27 sinnwell Exp $ # #$Id: Ginv.R,v 1.1.1.1 2011/02/21 20:09:27 sinnwell Exp $ # #$Locker: $ # #$Log: Ginv.R,v $ #Revision 1.1.1.1 2011/02/21 20:09:27 sinnwell #initial, genetics functions for Mayo BSI # #Revision 1.1 2006/10/25 14:39:02 sinnwell #Initial revision # #Revision 1.15 2006/04/25 21:24:08 sinnwell #pass epsilon as parameter, default the same # #Revision 1.14 2006/03/07 21:38:04 sinnwell #Matrix library is attached in other functions that call Ginv a lot #don't leave attached at the end of Ginv # #Revision 1.13 2006/01/23 21:22:40 sinnwell #leave Matrix attached if it wasn't already (in SPLUS) # #Revision 1.12 2006/01/09 16:38:10 sinnwell #check for x==0, return zero to agree with S:ginverse # #Revision 1.11 2005/09/19 14:36:11 sinnwell #explain change to svd.Matrix # #Revision 1.10 2005/09/09 13:36:06 sinnwell #make exception to only attach Matrix if not in search() # #Revision 1.9 2005/08/09 15:12:52 sinnwell #allow 1-d matrix, just 1/x and rank is 1 # #Revision 1.8 2005/06/20 19:40:38 sinnwell #for Splus give Ginv class matrix, not Matrix, dene # #Revision 1.7 2005/03/31 15:18:08 sinnwell #re-new Matrix class Ginv, problem was in haplo.score # #Revision 1.6 2005/03/30 16:35:02 sinnwell #revert to version 1.4, errors with Matrix class # #Revision 1.5 2005/03/17 22:35:02 sinnwell # because of numerical error 120 in haplo.scan svd.default with LINPACK #use LAPACK version of svd Splus: svd.Matrix; R it is svd(LINPACK=FALSE) # #Revision 1.4 2003/08/26 16:39:04 sinnwell #change license statement # #Revision 1.3 2003/03/26 17:12:10 sinnwell #fix assign operator from '_' to <- # #Revision 1.2 2003/03/06 23:02:34 sinnwell #add license text # #Revision 1.1 2002/09/09 19:53:18 sinnwell #Initial revision # # License: # # Copyright 2003 Mayo Foundation for Medical Education and Research. # # This program is free software; you can redistribute it and/or modify it under the terms of # the GNU General Public License as published by the Free Software Foundation; either # version 2 of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for # more details. # # You should have received a copy of the GNU General Public License along with this # program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, # Boston, MA 02111-1307 USA # # For other licensing arrangements, please contact Daniel J. Schaid. # # Daniel J. Schaid, Ph.D. # Division of Biostatistics # Harwick Building Room 775 # Mayo Clinic # 200 First St., SW # Rochester, MN 55905 # # phone: 507-284-0639 # fax: 507-284-9542 # email: schaid@mayo.edu # Ginv<-function(x, eps=1e-6) { # For S-PLUS, We use Matrix class svd method because # haplo.scan (of HaploStats had num. error with svd.default, # which uses LINPACK svd.Matrix uses LAPACK svd method. # In R, default is LAPACK in svd(), no action needed # In Oct 2006, R's package check gives an error for having # library(Matrix) in our code but not having it # 'require'-ed or 'suggest'-ed in DESCRIPTION.haplo.stats # Our solution is to keep two separate files, Ginv.q and Ginv.R # both keeping documentation on what the other method required # if any NA's cannot invert if(any(is.na(x))) stop("NA(s) encountered in matrix, cannot invert.") # In SPLUS, Check if Matrix library is attached, if not, attach here # and detach at the end. We use svd.Matrix # needMatrix <- TRUE if(length(x)>1) { savesvd <- svd(x) U.svd<-savesvd$u V.svd<-savesvd$v d.svd<-savesvd$d maxd <- max(d.svd) w <- ifelse((d.svd/maxd) < eps, rep(0,length(d.svd)), 1/d.svd) rank<-sum(d.svd/maxd >= eps) Ginv <- V.svd %*% diag(w) %*% t(U.svd) } else { # x is 1 by 1 Ginv <- ifelse(x < eps, 0, 1/x) rank <- ifelse(x < eps, 0, 1) } list(Ginv=Ginv,rank=rank) } haplo.stats/R/summaryGeno.q0000644000176200001440000000470414672315242015416 0ustar liggesusers#$Author: sinnwell $ #$Date: 2011/11/22 20:29:04 $ #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/summaryGeno.q,v 1.3 2011/11/22 20:29:04 sinnwell Exp $ #$Locker: $ #$Log: summaryGeno.q,v $ #Revision 1.3 2011/11/22 20:29:04 sinnwell #use setupGeno instead of geno.recode # #Revision 1.2 2008/01/04 21:18:59 sinnwell #change column names of returned data.frame # #Revision 1.1 2004/02/26 22:07:13 sinnwell #Initial revision # # License: # # Copyright 2003 Mayo Foundation for Medical Education and Research. # # This program is free software; you can redistribute it and/or modify it under the terms of # the GNU General Public License as published by the Free Software Foundation; either # version 2 of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for # more details. # # You should have received a copy of the GNU General Public License along with this # program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, # Boston, MA 02111-1307 USA # # For other licensing arrangements, please contact Daniel J. Schaid. # # Daniel J. Schaid, Ph.D. # Division of Biostatistics # Harwick Building Room 775 # Mayo Clinic # 200 First St., SW # Rochester, MN 55905 # # phone: 507-284-0639 # fax: 507-284-9542 # email: schaid@mayo.edu # summaryGeno <- function(geno, miss.val=0) ## created by Jason Sinnwell ## Division of Biostatistics ## Mayo Clinic Rochester ## Genetics Team 11/2002 { # Get allele tallies for each individual. Keep track of 0- 1- and 2-missing # alleles. Also, find the rows needed to fully enumerate the # individual's possible haplotypes. n.loci <- ncol(geno)/2 nr <- nrow(geno) geno <- setupGeno(geno,miss.val) count.geno <- geno.count.pairs(geno) loc0 <- numeric(nr) loc1 <- numeric(nr) loc2 <- numeric(nr) for (i in 1:nr) { first.indx <- seq(1,(2*n.loci-1),by=2) miss.one <- is.na(geno[i,first.indx]) | is.na(geno[i,first.indx+1]) miss.two <- is.na(geno[i,first.indx]) & is.na(geno[i,first.indx+1]) loc2[i] <- sum(miss.two) loc1[i] <- sum(miss.one-miss.two) loc0[i] <- sum(!miss.one) } tbl <- data.frame(missing0=loc0, missing1=loc1, missing2=loc2, N.enum.rows=count.geno) return(tbl) } haplo.stats/R/print.haplo.glm.q0000644000176200001440000000572614672315242016131 0ustar liggesusers#$Author: sinnwell $ #$Date: 2011/11/10 15:29:40 $ #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/print.haplo.glm.q,v 1.11 2011/11/10 15:29:40 sinnwell Exp $ #$Locker: $ #$Log: print.haplo.glm.q,v $ #Revision 1.11 2011/11/10 15:29:40 sinnwell #major update to hapglm, minor changes to Rd files, prepare for version 1.5.0 release # #Revision 1.10 2008/04/04 16:10:18 sinnwell #add show.missing and return coeffDF and hapDF by invisible # #Revision 1.9 2005/03/29 14:18:47 sinnwell #fix call to print within widths, different for R/S+ # #Revision 1.8 2004/10/22 22:08:27 sinnwell #do not drop matrix to vector when subsetting to haplo.unique #when only 1 haplotype # #Revision 1.7 2004/03/18 23:30:32 sinnwell #keep matrix from converting to data.frame, and char vecs to factors # #Revision 1.6 2004/02/26 23:05:23 sinnwell #print.banner to printBanner # #Revision 1.5 2004/02/06 16:34:17 sinnwell #fix 1-sided pval to 2-sided # #Revision 1.4 2003/12/08 20:16:49 sinnwell # changed T,F to TRUE,FALSE # #Revision 1.3 2003/11/17 23:28:19 schaid #made compatible with R # #Revision 1.2 2003/10/15 21:13:30 schaid #got rid of bug caused by use of 'fit' (should have been x) # #Revision 1.1 2003/09/16 16:03:15 schaid #Initial revision # print.haplo.glm <- function(x, print.all.haplo=FALSE, digits = max(options()$digits - 3, 5), ...){ ## function to piece togeth haplotype data.frame haplo.df<- function(x){ z <- x$haplo.common df <- as.matrix(x$haplo.unique[z,,drop=FALSE]) y <- x$haplo.freq[z] if(x$haplo.rare.term){ df <- rbind(df, rep("*",ncol(df))) y <- c(y, sum(x$haplo.freq[x$haplo.rare])) } # use dimnames to change row names do not convert from matrix to df dimnames(df)[[1]] <- x$haplo.names df <- rbind(df,x$haplo.unique[x$haplo.base,]) dimnames(df)[[1]][nrow(df)] <- "haplo.base" y <- c(y,x$haplo.freq[x$haplo.base]) data.frame(df,hap.freq=y) } cat("\nCall: ", paste(deparse(x$call), sep = "\n", collapse = "\n"), "\n\n", sep = "") if(length(x$coef)) { cat("Coefficients:\n") print.default(format(x$coefficients, digits = digits), print.gap = 2, quote = FALSE) } else cat("No coefficients\n\n") cat("\nHaplotypes:\n") hap.df <- haplo.df(x) print(hap.df, digits=digits) wt <- x$prior.weights * x$haplo.post.info$post df.residual <- sum(wt) - length(x$coef) df.null <- sum(wt) - 1 cat("\nDegrees of Freedom: ", df.null, "Total (i.e. Null); ", df.residual, "Residual\n") miss.tbl <- apply(1*x$missing, 2, sum) if(any(miss.tbl > 0)) { cat("\nSubjects removed by NAs in y or x, or all NA in geno\n") print(miss.tbl) } cat("\n Null Deviance: ", format(signif(x$null.deviance, digits)), "\n Residual Deviance: ", format(signif(x$deviance, digits)), "\n AIC: ", format(signif(x$aic, digits)), "\n\n") invisible(x) ##invisible(list(coeffDF=coeff.df, hapDF=hap.df)) } haplo.stats/R/haplo.hash.q0000644000176200001440000000352114672315242015131 0ustar liggesusers#$Author: sinnwell $ # #$Date: 2003/08/26 16:39:04 $ # #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/haplo.hash.q,v 1.4 2003/08/26 16:39:04 sinnwell Exp $ # #$Id: haplo.hash.q,v 1.4 2003/08/26 16:39:04 sinnwell Exp $ # #$Locker: $ # #$Log: haplo.hash.q,v $ #Revision 1.4 2003/08/26 16:39:04 sinnwell #change license statement # #Revision 1.3 2003/03/26 17:09:50 sinnwell #fix assign operator from '_' to <- # #Revision 1.2 2003/03/06 23:13:57 sinnwell #add license text # #Revision 1.1 2002/09/09 19:53:18 sinnwell #Initial revision # # License: # # Copyright 2003 Mayo Foundation for Medical Education and Research. # # This program is free software; you can redistribute it and/or modify it under the terms of # the GNU General Public License as published by the Free Software Foundation; either # version 2 of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for # more details. # # You should have received a copy of the GNU General Public License along with this # program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, # Boston, MA 02111-1307 USA # # For other licensing arrangements, please contact Daniel J. Schaid. # # Daniel J. Schaid, Ph.D. # Division of Biostatistics # Harwick Building Room 775 # Mayo Clinic # 200 First St., SW # Rochester, MN 55905 # # phone: 507-284-0639 # fax: 507-284-9542 # email: schaid@mayo.edu # haplo.hash<-function(hap) { hash<-as.vector(unclass(factor(apply(hap,1,paste,collapse=",")))) hap.mtx <- hap[order(hash),1:ncol(hap)] hap.mtx <- hap.mtx[!(duplicated(sort(hash))),] return(list(hash=hash,hap.mtx=hap.mtx)) } haplo.stats/R/anova.haplo.glm.q0000644000176200001440000000666114672315242016100 0ustar liggesusers ## Purpose: Anova function for haplo.glm object ## borrow blueprint from anova.glm ## ## Authors: Jason Sinnwell and Dan Schaid, Mayo BSI ## Created: 9/28/2011 ## Updated: 10/18/2011 anova.haplo.glm <- function(object, ..., dispersion=NULL, test="Chisq") { ## for more than one fitted object, allow anova.glmlist to compare, ## which will only work for nested haplo.glm callsworks because the defiances dotargs <- list(...) named <- if (is.null(names(dotargs))) rep(FALSE, length(dotargs)) else (names(dotargs) != "") if (any(named)) warning("the following arguments to 'anova.haplo.glm' are invalid and dropped: ", paste(deparse(dotargs[named]), collapse = ", ")) dotargs <- dotargs[!named] is.glm <- unlist(lapply(dotargs, function(x) inherits(x, "glm"))) dotargs <- dotargs[is.glm] if (length(dotargs)) { return(anova.haplo.glmlist(c(list(object), dotargs), dispersion = dispersion, test = test)) } else { warning(paste(" This method only allows comparison between two or \n", " more glm/haplo.glm model fits.\n")) } } anova.haplo.glmlist <- function(object, test="Chisq", ...) { ## Compare multiple glm/haplo.glm objects ## check that each object inherits glm or haplo.glm ## check the response names the same ## check that the rows, or effective rows, are the same for the fits if (!is.list(object)) stop("First argument must be a list") ## check same responses responses <- as.character(unlist(lapply(object, function(x) deparse(formula(x)[[2]])))) sameresp <- (responses == responses[1]) if (!all(sameresp)) { object <- object[sameresp] warning(paste("Models with response", deparse(responses[!sameresp]), "removed because response differs from", "model 1")) } nsubj <- sapply(object, FUN=function(x) { if(is.null(x$haplo.post.info)) sum(x$prior.weights) else sum(x$prior.weights*x$haplo.post.info$post) }) if (any(nsubj != nsubj[1])) stop("models were not all fitted to the same size of dataset") nmodels <- length(object) if (nmodels == 1) return(anova(object[[1L]], dispersion = dispersion, test = test)) ##### resdf <- as.numeric(sapply(object, function(x) { if(is.null(x$haplo.post.info)) sum(x$prior.weights) - length(x$coeff) else sum(x$prior.weights * x$haplo.post.info$post) - length(x$coeff) } )) ##as.numeric(lapply(object, function(x) x$df.residual)) resdev <- as.numeric(lapply(object, function(x) x$deviance)) table <- data.frame(resdf, resdev, c(NA, -diff(resdf)), c(NA, -diff(resdev))) variables <- lapply(object, function(x) paste(deparse(formula(x)), collapse = "\n")) dimnames(table) <- list(1L:nmodels, c("Resid. Df", "Resid. Dev", "Df", "Deviance")) title <- "Analysis of Deviance Table\n" topnote <- paste("Model ", format(1L:nmodels), ": ", variables, sep = "", collapse = "\n") if (!is.null(test)) { bigmodel <- object[[order(resdf)[1L]]] dispersion <- residScaledGlmFit(bigmodel)$a.phi df.dispersion <- if (dispersion == 1) Inf else min(resdf) table <- stat.anova(table = table, test = test, scale = dispersion, df.scale = df.dispersion, n = nsubj[1]) } structure(table, heading = c(title, topnote), class = c("anova","data.frame")) } haplo.stats/R/print.haplo.cc.q0000644000176200001440000000463614672315242015736 0ustar liggesusers#$Author: sinnwell $ #$Date: 2005/03/30 16:40:08 $ #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/print.haplo.cc.q,v 1.3 2005/03/30 16:40:08 sinnwell Exp $ print.haplo.cc <- function(x, order.by=c("score","haplotype","freq"), digits=max(options()$digits-2, 5), nlines=NULL, ...) { if (!inherits(x, 'haplo.cc')) stop("Not an object of class haplo.cc!") # Combine haplotypes and results # round numeric columns to set length digits n.loci <- ncol(x$score.lst$haplotype) df.out <- x$cc.df # print of global score stats: printBanner("Global Score Statistics", border= "-") cat(paste("global-stat = ",signif(x$score.lst$score.global,digits),", df = ", x$score.lst$df, ", p-val = ",signif(x$score.lst$score.global.p,digits),sep="")) # print separate section for sim p.vals and the conditions # under which they were made cat("\n\n") # print haplo.score simulation information if(x$score.lst$simulate) { printBanner("Global Simulation p-value Results", border="-") cat("Global sim. p-val = ",signif(x$score.lst$score.global.p.sim, digits),"\n") cat("Max-Stat sim. p-val = ",signif(x$score.lst$score.max.p.sim, digits), "\n") cat("Number of Simulations, Global: ", x$score.lst$n.val.global, ", Max-Stat:", x$score.lst$n.val.haplo) cat("\n\n") } # print counts for the two groups printBanner("Counts for Cases and Controls", border = "-") print(x$group.count) cat("\n\n") # print a banner for the data frame #printBanner(paste("Haplotype Scores, p-values, Hap-Frequencies (hf), and Odds Ratios (", # round(x$ci.prob*100, 0), "% CI)", sep=""), border = "-") # get the order and choose all.haps to print or not if(length(order.by)>1) order.by=order.by[1] order.vec <- c("haplotype","score","freq") order.int <- pmatch(order.by, order.vec) if(all(is.na(order.int))) order.int <- 1 order.by <- order.vec[order.int] switch(order.by, score = { ord <- (1:nrow(x$cc.df))[order(x$cc.df$"Hap-Score")] }, freq = { ord <- (order(x$cc.df$"pool.hf"))[order(nrow(x$cc.df):1)] }, haplotype = { ord <- as.numeric(attributes(haplo.hash(df.out[,1:n.loci])$hap.mtx)$row.names) }) nlines <- if(is.null(nlines)) nrow(df.out) else nlines print(df.out[ord[1:nlines],], digits=digits, ...) invisible(df.out[ord[1:nlines],]) } haplo.stats/R/print.haplo.scan.q0000644000176200001440000000227114672371301016264 0ustar liggesusers#$Author: sinnwell $ #$Date: 2005/03/29 14:18:34 $ #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/print.haplo.scan.q,v 1.4 2005/03/29 14:18:34 sinnwell Exp $ #$Locker: $ #$Log: print.haplo.scan.q,v $ #Revision 1.4 2005/03/29 14:18:34 sinnwell #fix call again # #Revision 1.3 2005/03/28 22:22:11 sinnwell #print the call to fit width, different in R and Splus # #Revision 1.2 2005/03/23 23:13:34 sinnwell #print max.loc # #Revision 1.1 2005/03/23 18:07:08 sinnwell #Initial revision # print.haplo.scan <- function(x, digits=max(options()$digits-2, 5), ...) # print a haplo.scan object { scan.df <- as.data.frame(x$scan.df) loc.label <- paste("loc", 1:ncol(scan.df), sep='-') dimnames(scan.df) <- list(c("stat.obs", "sim.p-val"), loc.label) x$call <- deparse(x$call, width.cutoff=40) cat("\n Call: ", x$call, sep="\n") cat("\n") printBanner("Locus Scan-statistic Simulated P-values") print(scan.df[2,,drop=FALSE], digits=digits) cat("\n\n") cat(" Loci with max scan statistic: ", x$max.loc, "\n") cat(" Max-Stat Simulated Global p-value: ", signif(x$globalp,digits), "\n", " Number of Simulations: ", x$nsim, "\n") invisible() } haplo.stats/R/geno.count.pairs.q0000644000176200001440000001113314672315242016276 0ustar liggesusers#$Author: sinnwell $ #$Date: 2003/12/08 19:33:33 $ #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/geno.count.pairs.q,v 1.5 2003/12/08 19:33:33 sinnwell Exp $ #$Locker: $ #$Log: geno.count.pairs.q,v $ #Revision 1.5 2003/12/08 19:33:33 sinnwell #changed F to FALSE # #Revision 1.4 2003/08/26 16:39:04 sinnwell #change license statement # #Revision 1.3 2003/04/14 17:23:00 schaid #when no missing alleles, added drop=F for h1 and h2, for when there is only one subject without missing data # #Revision 1.2 2003/04/11 19:30:19 sinnwell #move comments around # #Revision 1.1 2003/04/09 18:33:09 sinnwell #Initial revision # # License: # # Copyright 2003 Mayo Foundation for Medical Education and Research. # # This program is free software; you can redistribute it and/or modify it under the terms of # the GNU General Public License as published by the Free Software Foundation; either # version 2 of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for # more details. # # You should have received a copy of the GNU General Public License along with this # program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, # Boston, MA 02111-1307 USA # # For other licensing arrangements, please contact Daniel J. Schaid. # # Daniel J. Schaid, Ph.D. # Division of Biostatistics # Harwick Building Room 775 # Mayo Clinic # 200 First St., SW # Rochester, MN 55905 # # phone: 507-284-0639 # fax: 507-284-9542 # email: schaid@mayo.edu # geno.count.pairs <- function(geno) ## Developed by Schaid, DJ 4/2003 { # Given a matrix of genotypes (pairs of columns for each locus), # compute number of possible pairs of haplotypes for each subject (the rows # of the geno matrix). # Assume missing values are all coded to NA, done easily by geno.recode() # define function to iteratively update number of hets # across loci, accounting for all possible combinations # of missing alleles across loci haplo.count.pairs <- function(nhet.vec,nhom.vec){ n.loci <- length(nhet.vec) cum.het <- 0 wt.het <- 1 for(locus in 1:n.loci){ n.het <- nhet.vec[locus] n.hom <- nhom.vec[locus] if(n.het>=1 & n.hom>=1){ cum.het <- as.vector(rbind(cum.het+1, cum.het)) wt.het <- as.vector(rbind(wt.het*n.het, wt.het*n.hom)) } if(n.het>=1 & n.hom==0){ cum.het <- cum.het + 1 wt.het <- wt.het * n.het } } cum.het <- ifelse(cum.het==0,1,cum.het) # patch in case no hets n.pairs <- sum(2^(cum.het-1)*wt.het) return(n.pairs) } # initial setup for counting pairs of haplotypes # assume missing values are all coded to NA nc <- ncol(geno) n.loci <- nc/2 nr <- nrow(geno) n.pairs <- numeric(nr) odd <- seq(from=1,to=2*n.loci,by=2) # find number of alleles at each locus n.alleles <- numeric(n.loci) for (i in 1:n.loci) { a1 <- geno[,2*i-1] a2 <- geno[,2*i] temp <- c(a1,a2) temp <- temp[!is.na(temp)] n.alleles[i] <- length(unique(temp)) } # count pairs of haplotypes for subjects without any missing alleles any.miss <- apply(is.na(geno),1,any) if(sum(!any.miss) > 0){ indx.nomiss <- (1:nr)[!any.miss] geno.nomiss <- geno[indx.nomiss,,drop=FALSE] h1 <- geno.nomiss[,odd,drop=FALSE] h2 <- geno.nomiss[,(odd+1),drop=FALSE] n.het <- apply(h1!=h2,1,sum) n.het <- ifelse(n.het==0,1,n.het) n.pairs[indx.nomiss] <- 2^(n.het-1) } # count pairs for subjects with missing alleles if(sum(any.miss) > 0){ indx.miss <- (1:nr)[any.miss] n.subj.miss <- length(indx.miss) geno.miss <- geno[indx.miss,,drop=FALSE] # count number of possible het, hom at each locus loc <- 0 het.mat <- hom.mat <- NULL for(i in odd){ a1 <- geno.miss[,i] a2 <- geno.miss[,(i+1)] loc <- loc+1 n.a <- n.alleles[loc] n.miss <- 1*(is.na(a1)) + 1*(is.na(a2)) n.het <- ifelse(a1!=a2,1,0) n.het <- ifelse(n.miss==1,(n.a-1), n.het) n.het <- ifelse(n.miss==2,n.a*(n.a-1)/2, n.het) n.hom <- ifelse(a1==a2,1,0) n.hom <- ifelse(n.miss==1,1,n.hom) n.hom <- ifelse(n.miss==2,n.a,n.hom) het.mat <- cbind(het.mat,n.het) hom.mat <- cbind(hom.mat,n.hom) } pairs.miss <- NULL for(i in 1:n.subj.miss){ pairs.miss <- c(pairs.miss, haplo.count.pairs(het.mat[i,], hom.mat[i,])) } n.pairs[indx.miss] <- pairs.miss } return(n.pairs) } haplo.stats/R/haplo.binomial.R0000644000176200001440000000324614672315242015745 0ustar liggesusers#$Author: sinnwell $ #$Date: 2013/01/14 19:32:41 $ #$Header: /projects/genetics/cvs/cvsroot/haplo.stats/R/haplo.binomial.R,v 1.1 2013/01/14 19:32:41 sinnwell Exp $ #$Locker: $ #$Log: haplo.binomial.R,v $ #Revision 1.1 2013/01/14 19:32:41 sinnwell #add haplo.binomial, no need glm.fit.nowarn # ## Purpose: Extracted from R 2.15.0 to "fix" the init expression to not give warnings ## for binomial fits beause of our non-integer weights, which are ## posterior prob of haplotypes for a subject haplo.binomial <- function (link = "logit") { save <- binomial() save$initialize <- expression({ if (NCOL(y) == 1) { if (is.factor(y)) y <- y != levels(y)[1L] n <- rep.int(1, nobs) y[weights == 0] <- 0 ## The only line that is different from binomial() in R 2.15.0 is ## disabling the lines that warn of non-integer counts ## if (any(y < 0 | y > 1)) stop("y values must be 0 <= y <= 1") mustart <- (weights * y + 0.5)/(weights + 1) m <- weights * y ##if (any(abs(m - round(m)) > 0.001)) ## warning("non-integer #successes in a binomial glm!") } else if (NCOL(y) == 2) { ## if (any(abs(y - round(y)) > 0.001)) ## warning("non-integer counts in a binomial glm!") n <- y[, 1] + y[, 2] y <- ifelse(n == 0, 0, y[, 1]/n) weights <- weights * n mustart <- (n * y + 0.5)/(n + 1) } else stop("for the binomial family, y must be a vector of 0 and 1's\n", "or a 2 column matrix where col 1 is no. successes and col 2 is no. failures") }) return(save) } haplo.stats/vignettes/0000755000176200001440000000000014673025506014532 5ustar liggesusershaplo.stats/vignettes/haplostats.Rnw0000644000176200001440000000025214672315243017402 0ustar liggesusers\documentclass{article} \usepackage{pdfpages} %\VignetteIndexEntry{haplostats} \begin{document} \includepdf[pages=-, fitpaper=true]{manualHaploStats.pdf} \end{document} haplo.stats/vignettes/manualHaploStats.pdf0000644000176200001440000132574614672315243020526 0ustar liggesusers%PDF-1.4 % 5 0 obj << /S /GoTo /D (section.1) >> endobj 8 0 obj (Introduction) endobj 9 0 obj << /S /GoTo /D (subsection.1.1) >> endobj 12 0 obj (Updates) endobj 13 0 obj << /S /GoTo /D (subsection.1.2) >> endobj 16 0 obj (Operating System and Installation) endobj 17 0 obj << /S /GoTo /D (subsection.1.3) >> endobj 20 0 obj (R Basics) endobj 21 0 obj << /S /GoTo /D (section.2) >> endobj 24 0 obj (Data Setup) endobj 25 0 obj << /S /GoTo /D (subsection.2.1) >> endobj 28 0 obj (Example Data) endobj 29 0 obj << /S /GoTo /D (subsection.2.2) >> endobj 32 0 obj (Creating a Genotype Matrix) endobj 33 0 obj << /S /GoTo /D (subsection.2.3) >> endobj 36 0 obj (Preview Missing Data: summaryGeno) endobj 37 0 obj << /S /GoTo /D (subsection.2.4) >> endobj 40 0 obj (Random Numbers and Setting Seed \040) endobj 41 0 obj << /S /GoTo /D (section.3) >> endobj 44 0 obj (Haplotype Frequency Estimation: haplo.em) endobj 45 0 obj << /S /GoTo /D (subsection.3.1) >> endobj 48 0 obj (Algorithm) endobj 49 0 obj << /S /GoTo /D (subsection.3.2) >> endobj 52 0 obj (Example Usage ) endobj 53 0 obj << /S /GoTo /D (subsection.3.3) >> endobj 56 0 obj (Summary Method) endobj 57 0 obj << /S /GoTo /D (subsection.3.4) >> endobj 60 0 obj (Control Parameters for haplo.em ) endobj 61 0 obj << /S /GoTo /D (subsection.3.5) >> endobj 64 0 obj (Haplotype Frequencies by Group Subsets) endobj 65 0 obj << /S /GoTo /D (section.4) >> endobj 68 0 obj (Power and Sample Size for Haplotype Association Studies) endobj 69 0 obj << /S /GoTo /D (subsection.4.1) >> endobj 72 0 obj (Quantitative Traits: haplo.power.qt) endobj 73 0 obj << /S /GoTo /D (subsection.4.2) >> endobj 76 0 obj (Case-Control Studies: haplo.power.cc ) endobj 77 0 obj << /S /GoTo /D (section.5) >> endobj 80 0 obj (Haplotype Score Tests: haplo.score ) endobj 81 0 obj << /S /GoTo /D (subsection.5.1) >> endobj 84 0 obj (Quantitative Trait Analysis) endobj 85 0 obj << /S /GoTo /D (subsection.5.2) >> endobj 88 0 obj (Binary Trait Analysis) endobj 89 0 obj << /S /GoTo /D (subsection.5.3) >> endobj 92 0 obj (Ordinal Trait Analysis) endobj 93 0 obj << /S /GoTo /D (subsection.5.4) >> endobj 96 0 obj (Haplotype Scores, Adjusted for Covariates) endobj 97 0 obj << /S /GoTo /D (subsection.5.5) >> endobj 100 0 obj (Plots and Haplotype Labels) endobj 101 0 obj << /S /GoTo /D (subsection.5.6) >> endobj 104 0 obj (Skipping Rare Haplotypes) endobj 105 0 obj << /S /GoTo /D (subsection.5.7) >> endobj 108 0 obj (Score Statistic Dependencies: the eps.svd parameter ) endobj 109 0 obj << /S /GoTo /D (subsection.5.8) >> endobj 112 0 obj (Haplotype Model Effect \040) endobj 113 0 obj << /S /GoTo /D (subsection.5.9) >> endobj 116 0 obj (Simulation p-values ) endobj 117 0 obj << /S /GoTo /D (section.6) >> endobj 120 0 obj (Regression Models: haplo.glm ) endobj 121 0 obj << /S /GoTo /D (subsection.6.1) >> endobj 124 0 obj (New and Updated Methods for haplo.glm) endobj 125 0 obj << /S /GoTo /D (subsection.6.2) >> endobj 128 0 obj (Preparing the data.frame for haplo.glm ) endobj 129 0 obj << /S /GoTo /D (subsection.6.3) >> endobj 132 0 obj (Rare Haplotypes ) endobj 133 0 obj << /S /GoTo /D (subsection.6.4) >> endobj 136 0 obj (Regression for a Quantitative Trait ) endobj 137 0 obj << /S /GoTo /D (subsection.6.5) >> endobj 140 0 obj (Fitting Haplotype x Covariate Interactions) endobj 141 0 obj << /S /GoTo /D (subsection.6.6) >> endobj 144 0 obj (Regression for a Binomial Trait ) endobj 145 0 obj << /S /GoTo /D (subsubsection.6.6.1) >> endobj 148 0 obj (Caution on Rare Haplotypes with Binomial Response ) endobj 149 0 obj << /S /GoTo /D (subsection.6.7) >> endobj 152 0 obj (Control Parameters ) endobj 153 0 obj << /S /GoTo /D (subsubsection.6.7.1) >> endobj 156 0 obj (Controlling Genetic Models: haplo.effect) endobj 157 0 obj << /S /GoTo /D (subsubsection.6.7.2) >> endobj 160 0 obj (Selecting the Baseline Haplotype \040) endobj 161 0 obj << /S /GoTo /D (subsubsection.6.7.3) >> endobj 164 0 obj (Rank of Information Matrix and eps.svd \(NEW\) ) endobj 165 0 obj << /S /GoTo /D (subsubsection.6.7.4) >> endobj 168 0 obj (Rare Haplotypes and haplo.min.info ) endobj 169 0 obj << /S /GoTo /D (section.7) >> endobj 172 0 obj (Methods for haplo.glm \(NEW\) ) endobj 173 0 obj << /S /GoTo /D (subsection.7.1) >> endobj 176 0 obj (fitted.values) endobj 177 0 obj << /S /GoTo /D (subsection.7.2) >> endobj 180 0 obj (residuals) endobj 181 0 obj << /S /GoTo /D (subsection.7.3) >> endobj 184 0 obj (vcov) endobj 185 0 obj << /S /GoTo /D (subsection.7.4) >> endobj 188 0 obj (anova and Model Comparison) endobj 189 0 obj << /S /GoTo /D (section.8) >> endobj 192 0 obj (Extended Applications) endobj 193 0 obj << /S /GoTo /D (subsection.8.1) >> endobj 196 0 obj (Combine Score and Group Results: haplo.score.merge) endobj 197 0 obj << /S /GoTo /D (subsection.8.2) >> endobj 200 0 obj (Case-Control Haplotype Analysis: haplo.cc \040) endobj 201 0 obj << /S /GoTo /D (subsection.8.3) >> endobj 204 0 obj (Score Tests on Sub-Haplotypes: haplo.score.slide) endobj 205 0 obj << /S /GoTo /D (subsubsection.8.3.1) >> endobj 208 0 obj (Plot Results from haplo.score.slide) endobj 209 0 obj << /S /GoTo /D (subsection.8.4) >> endobj 212 0 obj (Scanning Haplotypes Within a Fixed-Width Window: haplo.scan) endobj 213 0 obj << /S /GoTo /D (subsection.8.5) >> endobj 216 0 obj (Sequential Haplotype Scan Methods: seqhap ) endobj 217 0 obj << /S /GoTo /D (subsubsection.8.5.1) >> endobj 220 0 obj (Plot Results from seqhap) endobj 221 0 obj << /S /GoTo /D (subsection.8.6) >> endobj 224 0 obj (Creating Haplotype Effect Columns: haplo.design ) endobj 225 0 obj << /S /GoTo /D (section.9) >> endobj 228 0 obj (License and Warranty) endobj 229 0 obj << /S /GoTo /D (section.10) >> endobj 232 0 obj (Acknowledgements) endobj 233 0 obj << /S /GoTo /D (appendix.A) >> endobj 236 0 obj (Counting Haplotype Pairs When Marker Phenotypes Have Missing Alleles) endobj 237 0 obj << /S /GoTo /D [238 0 R /Fit ] >> endobj 240 0 obj << /Length 612 /Filter /FlateDecode >> stream xmTMo1qW"߾(4AJK+6Mɦ[7o|UQֈV(CH[q][þio呗DZY-OfNy1SC&|lH;F 2(X땘H8>,j*ݏi^3!#]tGZEe #c rnBcc\v8+9_FWX~d։4??@>y[$'m:oj(L!QN*)UIQ@Kh!HL_6AՐ]B KdAvI?"1lKMݐ7ZkfrҪOJMe> endobj 241 0 obj << /D [238 0 R /XYZ 72 720 null] >> endobj 242 0 obj << /D [238 0 R /XYZ 72 720 null] >> endobj 239 0 obj << /Font << /F31 243 0 R /F37 244 0 R /F20 245 0 R /F27 246 0 R /F28 247 0 R /F21 248 0 R /F8 249 0 R >> /ProcSet [ /PDF /Text ] >> endobj 299 0 obj << /Length 2061 /Filter /FlateDecode >> stream xZKWFWx)SMQv@R a pc[2ν3I61,B}|s`&N $*x[;dQ1 -Q'?W %32)W{ Xe ѕ-'Jn k-oR&D/3K]¾Q.Ø' k952MՓe{kx#Pl=Z DE q8ٟ; cw~nȦ4:q'<?rFJ0Lg)xXŽJ3qpߠfc}yё䃉cϛo^1EO oBWsŞsvuY.so}!7]#=<:@[{)o:UC;\x^OiRG+kƸ"% +[fo* %ZWHRMG*R6*Vm9>j[Gըv1@-au*:L2wॗ@ 45%2ܕa# ?=GWehst@Y$X+WC)|y"HR?9ӎt,sbFsQjL3i%\݀e}sJS(O_?&]N4kqU!P8N?|'ZZ=]mZ43!hf9;Bۼ-Ȝʹ(5EI=հCpՁVlkRh ph'y ٩{}@1_/Oˀ}*5jkftӾV:qJ`<~@Qq9)R\z&[_ ܟ5hMe^#wz""!YtŽy1Or +aͦ&\]ڲjwt,p@qޓ\_XQuŸ51R}MltUaj[Օg%yR8zZQɼ6hFFQ$U("JBXɔ3ڰFџ;q['Qr:S\3] #m7T<{`1z=Gk>ymSS BŗOȸp"(?W]]j*i(+m{^^bF1?x ?[rV3wb*mjR&lF3skwz#6G yA'SvZmNӚ'V7VA P{*Q@TWjsk$ܱZ;nq2#g{eɽtt!*7"m #&_9]*h/8FF)k6 ݳ(9X lÀFD"bSӠ<~fm*Gi<X,f tPa4,!oo|wt"%JUɊ#ްSNC~%2ҋ\emB]%sBJ7{jP2[ܛXW<9:D6WVФ7om91l@L[%t`ZMe JkG0?.ހLh7jg^F_#T禞'> =8HKWyO)Un|Y%3 ;Ϭ֤E1=`O̓cVs:&V~>vC}a%?_1z]cN./ꊷčiM!S)*ZnD >@Gg,H p n8^ 9>)nۤ`U熈zʮի ? I*:8Hh3vC2^H8 c]D -&ǼcAl9!4Mc;y7: endstream endobj 298 0 obj << /Type /Page /Contents 299 0 R /Resources 297 0 R /MediaBox [0 0 612 792] /Parent 250 0 R /Annots [ 251 0 R 252 0 R 253 0 R 254 0 R 255 0 R 256 0 R 257 0 R 258 0 R 259 0 R 260 0 R 261 0 R 262 0 R 263 0 R 264 0 R 265 0 R 266 0 R 267 0 R 268 0 R 269 0 R 270 0 R 271 0 R 272 0 R 273 0 R 274 0 R 275 0 R 276 0 R 277 0 R 278 0 R 279 0 R 280 0 R 281 0 R 282 0 R 283 0 R 284 0 R 285 0 R 286 0 R 287 0 R 288 0 R 289 0 R 290 0 R 291 0 R ] >> endobj 251 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [71.004 687.123 151.033 695.99] /Subtype /Link /A << /S /GoTo /D (section.1) >> >> endobj 252 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [85.948 673.235 146.849 684.075] /Subtype /Link /A << /S /GoTo /D (subsection.1.1) >> >> endobj 253 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [85.948 661.28 261.647 672.119] /Subtype /Link /A << /S /GoTo /D (subsection.1.2) >> >> endobj 254 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [85.948 651.258 148.572 659.975] /Subtype /Link /A << /S /GoTo /D (subsection.1.3) >> >> endobj 255 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [71.004 627.407 144.896 638.207] /Subtype /Link /A << /S /GoTo /D (section.2) >> >> endobj 256 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [85.948 615.452 173.618 626.291] /Subtype /Link /A << /S /GoTo /D (subsection.2.1) >> >> endobj 257 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [85.948 603.497 235.107 614.147] /Subtype /Link /A << /S /GoTo /D (subsection.2.2) >> >> endobj 258 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [85.948 591.542 276.75 602.192] /Subtype /Link /A << /S /GoTo /D (subsection.2.3) >> >> endobj 259 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [85.948 579.587 270.065 590.426] /Subtype /Link /A << /S /GoTo /D (subsection.2.4) >> >> endobj 260 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [71.004 557.669 300.799 568.508] /Subtype /Link /A << /S /GoTo /D (section.3) >> >> endobj 261 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [85.948 545.714 155.397 556.553] /Subtype /Link /A << /S /GoTo /D (subsection.3.1) >> >> endobj 262 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [85.948 533.758 181.29 544.598] /Subtype /Link /A << /S /GoTo /D (subsection.3.2) >> >> endobj 263 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [85.948 521.803 189.678 532.643] /Subtype /Link /A << /S /GoTo /D (subsection.3.3) >> >> endobj 264 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [85.948 509.848 257.433 520.687] /Subtype /Link /A << /S /GoTo /D (subsection.3.4) >> >> endobj 265 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [85.948 497.893 290.15 508.732] /Subtype /Link /A << /S /GoTo /D (subsection.3.5) >> >> endobj 266 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [71.004 475.975 379.433 486.775] /Subtype /Link /A << /S /GoTo /D (section.4) >> >> endobj 267 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [85.948 464.02 266.329 474.859] /Subtype /Link /A << /S /GoTo /D (subsection.4.1) >> >> endobj 268 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [85.948 452.065 276.91 462.904] /Subtype /Link /A << /S /GoTo /D (subsection.4.2) >> >> endobj 269 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [71.004 430.147 260.581 440.986] /Subtype /Link /A << /S /GoTo /D (section.5) >> >> endobj 270 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [85.948 418.192 230.972 429.031] /Subtype /Link /A << /S /GoTo /D (subsection.5.1) >> >> endobj 271 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [85.948 406.237 205.428 417.076] /Subtype /Link /A << /S /GoTo /D (subsection.5.2) >> >> endobj 272 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [85.948 394.281 209.154 405.121] /Subtype /Link /A << /S /GoTo /D (subsection.5.3) >> >> endobj 273 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [85.948 382.326 295.52 393.166] /Subtype /Link /A << /S /GoTo /D (subsection.5.4) >> >> endobj 274 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [85.948 370.371 232.058 381.21] /Subtype /Link /A << /S /GoTo /D (subsection.5.5) >> >> endobj 275 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [85.948 358.416 224.706 369.255] /Subtype /Link /A << /S /GoTo /D (subsection.5.6) >> >> endobj 276 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [85.948 346.461 342.093 357.3] /Subtype /Link /A << /S /GoTo /D (subsection.5.7) >> >> endobj 277 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [85.948 334.506 217.981 345.345] /Subtype /Link /A << /S /GoTo /D (subsection.5.8) >> >> endobj 278 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [85.948 322.55 199.381 333.39] /Subtype /Link /A << /S /GoTo /D (subsection.5.9) >> >> endobj 279 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [71.004 300.633 236.401 311.472] /Subtype /Link /A << /S /GoTo /D (section.6) >> >> endobj 280 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [85.948 288.678 292.312 299.517] /Subtype /Link /A << /S /GoTo /D (subsection.6.1) >> >> endobj 281 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [85.948 276.722 285.278 287.562] /Subtype /Link /A << /S /GoTo /D (subsection.6.2) >> >> endobj 282 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [85.948 264.767 186.839 275.606] /Subtype /Link /A << /S /GoTo /D (subsection.6.3) >> >> endobj 283 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [85.948 252.812 267.395 263.651] /Subtype /Link /A << /S /GoTo /D (subsection.6.4) >> >> endobj 284 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [85.948 240.857 297.442 251.696] /Subtype /Link /A << /S /GoTo /D (subsection.6.5) >> >> endobj 285 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [85.948 228.902 251.505 239.741] /Subtype /Link /A << /S /GoTo /D (subsection.6.6) >> >> endobj 286 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [108.862 216.947 379.464 227.786] /Subtype /Link /A << /S /GoTo /D (subsubsection.6.6.1) >> >> endobj 287 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [85.948 206.924 199.621 215.831] /Subtype /Link /A << /S /GoTo /D (subsection.6.7) >> >> endobj 288 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [108.862 193.036 319.25 203.875] /Subtype /Link /A << /S /GoTo /D (subsubsection.6.7.1) >> >> endobj 289 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [108.862 181.081 289.163 191.92] /Subtype /Link /A << /S /GoTo /D (subsubsection.6.7.2) >> >> endobj 290 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [108.862 168.568 361.83 180.428] /Subtype /Link /A << /S /GoTo /D (subsubsection.6.7.3) >> >> endobj 291 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [108.862 157.171 303.59 168.01] /Subtype /Link /A << /S /GoTo /D (subsubsection.6.7.4) >> >> endobj 300 0 obj << /D [298 0 R /XYZ 72 720 null] >> endobj 301 0 obj << /D [298 0 R /XYZ 72 700.184 null] >> endobj 297 0 obj << /Font << /F31 243 0 R /F57 302 0 R /F8 249 0 R /F62 303 0 R >> /ProcSet [ /PDF /Text ] >> endobj 318 0 obj << /Length 1105 /Filter /FlateDecode >> stream xXKs6WHMtNLMD˚T*Nﻻbq&J >~vqܸY`J;[\͜9WnX~\iZTx QZAiWUj_ŹyΔ3-gM`2L#<<.Fd91(( \*EYa]mlnx@gguC3?B/v2!,"!{$b ?h%b}踫Z:(6NH?I'>KUXEC蝡ZPZYnޢEBv=,cDFmAwYzH`@ȀE'!^Vs-»l aO 2cU3,_,/% DKD]$%OomPw7бn Z`[!&{+3Nx,p5 &pk~vs7`>G xmn֌@bo){q3 1Z3o$fND`fdJ7"8yQC+zi%SpUwo> F'$jb{{(0I ۷kfk@W" HD$ ܲGƄLbt#6M_voBs@C5랣<@fG?Џ˜U-.A2/q7) q'7b󺱰iyKKl]Хw<)xf?*q{rs7dPqPRx868 ~lw%IʭUp7X* H[sΉ*t<9[ xk endstream endobj 317 0 obj << /Type /Page /Contents 318 0 R /Resources 316 0 R /MediaBox [0 0 612 792] /Parent 250 0 R /Annots [ 292 0 R 293 0 R 294 0 R 295 0 R 296 0 R 304 0 R 305 0 R 306 0 R 307 0 R 308 0 R 309 0 R 310 0 R 311 0 R 312 0 R 313 0 R 314 0 R 315 0 R ] >> endobj 292 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [71.004 706.55 240.755 718.506] /Subtype /Link /A << /S /GoTo /D (section.7) >> >> endobj 293 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [85.948 697.086 163.147 705.992] /Subtype /Link /A << /S /GoTo /D (subsection.7.1) >> >> endobj 294 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [85.948 685.131 148.582 694.037] /Subtype /Link /A << /S /GoTo /D (subsection.7.2) >> >> endobj 295 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [85.948 673.176 130.222 681.584] /Subtype /Link /A << /S /GoTo /D (subsection.7.3) >> >> endobj 296 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [85.948 659.288 240.915 670.127] /Subtype /Link /A << /S /GoTo /D (subsection.7.4) >> >> endobj 304 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [71.004 637.37 201.941 648.169] /Subtype /Link /A << /S /GoTo /D (section.8) >> >> endobj 305 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [85.948 625.415 345.522 636.254] /Subtype /Link /A << /S /GoTo /D (subsection.8.1) >> >> endobj 306 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [85.948 613.46 301.547 624.299] /Subtype /Link /A << /S /GoTo /D (subsection.8.2) >> >> endobj 307 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [85.948 601.504 323.225 612.344] /Subtype /Link /A << /S /GoTo /D (subsection.8.3) >> >> endobj 308 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [108.862 589.549 293.388 600.388] /Subtype /Link /A << /S /GoTo /D (subsubsection.8.3.1) >> >> endobj 309 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [85.948 577.594 395.304 588.433] /Subtype /Link /A << /S /GoTo /D (subsection.8.4) >> >> endobj 310 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [85.948 565.639 308.63 576.478] /Subtype /Link /A << /S /GoTo /D (subsection.8.5) >> >> endobj 311 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [108.862 553.684 252.681 564.523] /Subtype /Link /A << /S /GoTo /D (subsubsection.8.5.1) >> >> endobj 312 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [85.948 541.729 330.926 552.568] /Subtype /Link /A << /S /GoTo /D (subsection.8.6) >> >> endobj 313 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [71.004 519.811 198.056 530.61] /Subtype /Link /A << /S /GoTo /D (section.9) >> >> endobj 314 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [71.004 497.893 183.013 508.692] /Subtype /Link /A << /S /GoTo /D (section.10) >> >> endobj 315 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [71.004 475.975 463.418 486.775] /Subtype /Link /A << /S /GoTo /D (appendix.A) >> >> endobj 319 0 obj << /D [317 0 R /XYZ 72 720 null] >> endobj 316 0 obj << /Font << /F57 302 0 R /F62 303 0 R /F8 249 0 R >> /ProcSet [ /PDF /Text ] >> endobj 324 0 obj << /Length 3407 /Filter /FlateDecode >> stream xڵZKWL$U\˛&5;)9PGWeQO?PfM|h4~?|dww+MYyLgX7y7543Jtyqʦ?O]ԅ-pnfMRssq[t89ܰϸk{{9vgq6Pԓ:nxK]YJף#nG찱!ڐ풛qV0btV!+ZX4[#Θsfc=[NL-P'9 ^D= s>)"% \T92mXa{oH<%.~C)xFH4OG<.J!瞭 i^LU;HpnetY&ijq >Z,@7% !Yd20Ϲ_ƭjyÝ9lteJ#ˏ0e ?tl|V{xP<jTْ% 0O"FnCֿ&'J8UZ?U ¹np<`sOR h/StO!qbli.x"ZE#X^0,-uˍXsh s5]r 3o黷RJ5*bƀoTlZa`Ge#/oHNSd-&h;w 8zFn9;pʣm^\8C"jR!޶/ `<;*m񖆭?C,/3ε(j a5r1F[20UI]T.7p J !gD+()Us^0EΆ8OԼPH#jJ hdk0"ɳx,ZJOa-'A8qTIiKɯ$#0LvVUr}:NQ9 {12ҶY]*ݘ#J3OUZY2%%X{"DCCve(W<>szGxM k }_jvt9M>N&{[PrdM4<?W$W֒C8' =uܰ Fs'0.=,q+3ywWegIJ[X?WjpDlCGiZP8jD`je;]==r&KJH2tKY CḥACYC8#8ь7IR.Wknj߽OFi`~zws-\y>c=T>ʂY8n#7jqI~U ې @:?}d['"n2?UtH!Y;%}i3񫸠_p};}w'nt8_{v ;zy'hk}8|<=%/QDxf=Izua`"`o\{!ϣ͑LO5уM-m޺v!ӭLK :/G\cIiN͂k>MBw8 [y!En 3(Ql8kR$S5{') ko"p4ׂ$+X u]G_׻.Mr"E?dAw=\SnpbE)>٦Al:0P=CC u=KOVn//hF9}vf$v:K:cq^^eH?D*t>+UnUo~嗒3:)U+"xK161z.F܇v4:{sc@d@3Xxgh`Ɣ쿟Z5WRUîo~|?k endstream endobj 323 0 obj << /Type /Page /Contents 324 0 R /Resources 322 0 R /MediaBox [0 0 612 792] /Parent 250 0 R /Annots [ 320 0 R 321 0 R ] >> endobj 320 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [408.312 310.837 415.286 321.676] /Subtype /Link /A << /S /GoTo /D (section.6) >> >> endobj 321 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [168.59 286.369 175.564 298.229] /Subtype /Link /A << /S /GoTo /D (section.7) >> >> endobj 325 0 obj << /D [323 0 R /XYZ 72 720 null] >> endobj 6 0 obj << /D [323 0 R /XYZ 72 720 null] >> endobj 10 0 obj << /D [323 0 R /XYZ 72 343.604 null] >> endobj 14 0 obj << /D [323 0 R /XYZ 72 262.133 null] >> endobj 18 0 obj << /D [323 0 R /XYZ 72 179.547 null] >> endobj 322 0 obj << /Font << /F31 243 0 R /F8 249 0 R /F64 326 0 R /F62 303 0 R >> /ProcSet [ /PDF /Text ] >> endobj 329 0 obj << /Length 1840 /Filter /FlateDecode >> stream xڵKD_#5^OH(8z(=xg֎Cv/v׌I7E,{?嫛c=K4r=YۈF{ʒBg Z^qId0GZUe"^ͺƓUo)@٭]?Pc \^ ԇC־4cdOkda~+685(W|P!tb<#V#@GѪyBIpdž+n2RBA,V<*chҘ"IMi ާ d @8(glD:?bN7G>J^SgNyK+x#7Mu/i cms~㞔%šR|XŕYSUW~/5Rѽ-auC?j* LE B.i&3l> endobj 330 0 obj << /D [328 0 R /XYZ 72 720 null] >> endobj 22 0 obj << /D [328 0 R /XYZ 72 400.21 null] >> endobj 26 0 obj << /D [328 0 R /XYZ 72 252.618 null] >> endobj 327 0 obj << /Font << /F73 331 0 R /F74 332 0 R /F8 249 0 R /F62 303 0 R /F31 243 0 R >> /ProcSet [ /PDF /Text ] >> endobj 335 0 obj << /Length 3617 /Filter /FlateDecode >> stream xڝZIs#E+=2k& 0p(K%[Ũvyk.qs˷~e_7Eu/nVMY{ј<ˋfyK33r^b  Ws[..~=y.L ;_|{#KB1UcΎg\.1YWUm̂'x~̹u޼`|#ӵyvuW&'i޿_5"{^p염ʥy40ۀӦ̺}#0cCla%Va׬mhdTpZIL !ͪVO~iٓPߢ:ͨ==>|ˁ`J$~Xۑ7X{ZNF)Y:kr\5! ǡӌ^6Yk@w%9UH8qc#s[uWzC ,& cVI}Yճ~wnߥR4Y6–uNY*N/g}RF2DaM܏1UrG<{~rt,UVabޒDd^g$Xj Wu7"lHpȳpzx7`hTѣ>0]7±L(xuՕrX-rjpBӅ'[+OWw]v?Lx"X?mwb><Nobrb"p稻fkXw}89L`  Hy.>UFvCye6%=JSƈ;~zVG.KGdjB>aoboXqUC#e K6Q|o4cpz`&`AXi*cjj/BX.ޡ gab(n>9֝EcBoEG4 Cq{lV *]CUz\6DB#ٺN *ҠH~㽋!ksٸӚ,o#6!\NLfSbEXr oVxY1s ek0爩t˖!;Br%h5h3ܩȱ6|X{I(0{EpZmV7ŲcXr(;*X y#ȯ?$K#x)$JϣJObQ*YeH &/>0D6T . ;lIDГ^f'<K֞D8@G>HtG&uK98\#Bg_0 %ZGJM"EAjڑ3cmbx]Pr#;Ӯ&weDv? ԋzoYR`Rbx]b7斩]L$Q j:w htɌmT+t\kL\h|t.3M pG1G2q!q 'B sa1̢qB Fl+A&l۠f_ctleъWs]nEt$ t\˫`7[31 &'|VO:02.GZ=1?8N=fP~O&/ ~w_Fɢ("%B@è>:Hd ^RإS"c 8D̍ 3{mcx^9rIQUa+ҧ--"Vԑ|8W^+xxɈ*i&nEF%0nUeϥRR6dh x#%Y@7*kGGd+ GXϸ&&,hjȳa_{8Bb^|МPoJJh.n#cWr`R>x<_Um>y%O/S~}NgyLVxB;/p1wc=F)l@v$u4UG4 69P&Ͻ10KㇷGLxcW('.N1IKw 0@9@@nA}51r8l>r")Rcnm<ǵC^ ( O$ !JBx|"+BЦj!?FXDU搼N!l2 G~ce-)dN 'dX}T7kMmA*ar}""]oDgrI}!I߇`3ITn`vQJLg$zToQq߸9tO$׿ S$LBqօ]υ8”QbṔ\ϸx2saHd(V#%ixx~RC*91>WHr+@tu K|Wk)]>.Kky+O6{q*dKt A6zFV1|gFkUU;R[)ᳪ TBA%TK\&2bӻ HLu  EPX [Jەy} *N4`M|tS:g3X]J,2#·M*̌/}qgBtI-a{'Jv*˜UsD]J<\_i`FUڜ Gί,#w"qb)TLgAR}tMi{"EV7hkw͞)->.gUNz(_;B؁.ס} KgAԷY>T[W+K>pK 82I\Xfq337$^mEr_$Icgԁ#$C=ng1'{dg\MkF"O*LcghV=&̂@8_ĥ\J@?` L9*-N5IWZiv y9ve UyGB8|\J endstream endobj 334 0 obj << /Type /Page /Contents 335 0 R /Resources 333 0 R /MediaBox [0 0 612 792] /Parent 250 0 R >> endobj 336 0 obj << /D [334 0 R /XYZ 72 720 null] >> endobj 30 0 obj << /D [334 0 R /XYZ 72 466.476 null] >> endobj 34 0 obj << /D [334 0 R /XYZ 72 269.351 null] >> endobj 333 0 obj << /Font << /F74 332 0 R /F73 331 0 R /F8 249 0 R /F62 303 0 R /F64 326 0 R /F57 302 0 R /F31 243 0 R /F11 337 0 R /F76 338 0 R >> /ProcSet [ /PDF /Text ] >> endobj 342 0 obj << /Length 2332 /Filter /FlateDecode >> stream xnЇZHis:}DYRZ$-mE)@|z{>~.qt\z$NL>{f_z\'kW2_ڼ^Gь7ZZ`GZ_g b+ s/rODH!~y}H2&J#){$!#x$"gs$TS,~፽Q_n0ѯH׷͛JLdwbD~=q ~8卲4\.ϰy"EPN`N[* %ѪZP$3\[f[b`J~=߅ΣT˱/~VǦɌg{Ttj^{Y"sDH>_BuJxK-Ar,l)^NU"jRo/aed ;/N$/awwyϝC&35s*NbfM:[w_% b!3ݷzOrJ5HY,+Jq ,^:Nḩu()EP$# -|%(ƍSwAA`P`oxT}ixʓXlG!Ϣ (1I{ͣrIiDgQ`eP멍Yl t;*.f|dz"*B$eren` 2X}VVNh$~p*LR>`9W Ѩmz K4F2P(PdEG &z]3ބ}nlؒS2uwLW䝷ԴrêK<U.*^]"Jf>Mo0[dp03SXGwIQR(9vѩc(5Rf)RRv2">PG/CۂN~BՆH 5,>kF8p]>DXrS?ؑ]T3*'IG~v2DI|m 62OWh;zr㳷Z .\+zqf`7RTXsv <t­@00HcDD縞ŊX4PP]jސ7dl>;:ڠՀpDrNt{lx"㛚aSPx_Ix:t%r`i't~Bp7 ;h9I#p:R\cϝN<@GE-"#t؜0}&T)z7\ݳ:2jTK;H^V ;s$g(21X{&#E_da3<ƀmط5w&N#w8Qz~GY@9]< 7PbvWGJ*s7I1CfH^JEy{+0I=)t*7Ҵa+pZ͖hF+ܱⶂ1}nӟp6%63 bEXn1'nz#^OOVP \nVp7ϔaݻwDd-|Ay׋:Ns\~cWm̸"> ,C=hi22Z߅O HLҬqѺU ũhiݽE!I_Na}FM̘ fkdG-W>fr=UP> k&5uFz4.N z4k&˃yqat)R6|v@E[\vl t(.r3q iyBK`.gY %20QŠ|68HG-W0QƩAM `jjZNpIDhK]3LD6\vٵ+2fhG3 6<]K 8d31!gaF]Opw\@4g䴱B-CәP~:_O pݗsu2*:F΃Mq93J IH7pd4PUI;97?O=*蔆G .@ ߒ{:Fb᣼^Mj֨ ᴧ&ĪcR&o~gӆGU[Js@bQC}.7zQyO:cumM`pX6~kۧC'GLq΢p\hd)Wx{aahi+[-Gw%u^eEZ qJ}MeFisT:/Pe endstream endobj 341 0 obj << /Type /Page /Contents 342 0 R /Resources 340 0 R /MediaBox [0 0 612 792] /Parent 344 0 R >> endobj 343 0 obj << /D [341 0 R /XYZ 72 720 null] >> endobj 340 0 obj << /Font << /F74 332 0 R /F8 249 0 R /F62 303 0 R /F73 331 0 R >> /ProcSet [ /PDF /Text ] >> endobj 348 0 obj << /Length 3551 /Filter /FlateDecode >> stream xˎlA6baG^QIif_zv7)jw 90~Wu_śVYo0Q%m/L1qPC2)KHz&hzp" xl;qhCi֋_ś <xt4eaPa!3Ip\e ?ox5 07i ";Čh^N1Q?GYkC/qC:^Fp'h-!0f,{H-x@" B W5^D<ť"M{͎ c8" pW]{ '/W4W{U&X>.28p ;҄QU*J; +l \$-CSm;bX 2 "$`xV! 6m$f݁?F w@2r+I{.O$؎@r{M" MaJ$Q!-A&\-rW] rMx>sgVehF(w"N!LKGU )֮C> {M{P"0. +n`{6DG%lH~9UV!5K0H_2%lp+pY&I$+K7!' !cW$zKFa"xK{Xfq|k5 \;n#c`C9n/Nq%ۮ՘Al/6ڡ_ eY_mbI(=IjTA%/euy8B wNazudġobSI[ I̕,-֌< ح(W1|F ]p'$c@I˓$K8g/诸bI.A3q])4#ML|֤r%aB/̰ !0IX$X"DoH#H6>8nX͢ѿ]qkLd[k;Y"a+͓IЏtqRv.$,q [2$lڏo*ᇰ5N`Ⱦ! ø.uk>&V#rq"2dVgi7UVaۆxȫUlt޵KK"LM~ç5$ B$h<0~/X.Ew Bfˑތ髽uq j*Hp_ yzAN:cŜ_!V*Ks@\u@;>[lOw2+b4}+a6@^q>WΕ%wnoiZ q: IH 48q&#g]{`bf@x b6 \zZ 4N5̣MB /gñ2R`,=JRV ֙{]_:e(I.flO&E/lYFY;zhCFly\!Qy8uy)\pb ߊ<mlثW>ZA/,P@ I8l)bc~-Cȸz$x= Hpߠ!xkCYAوfD2Whok=۲щa⁈&"!ZK~l89V髙bMx ﶷ+龚 !)>?;ffY[]Asd3Vq[rTvUPP1sSOb&7y&Y7\[8Nip;I<9>Ahy $i¥X)C|/d]Vb͞*Iu'mT{+XmWJX3 DҗƒIayz>j/9gyQw3ڤqs D+:+.1+ܫ@{P+>hO-g3iIq.*}дV㦑5)TV7FgF%r1u)'zr|C'^sKM) 4v\ea M,Ӟ4ŀ\AF5ۏ*IEjqe"Vf<u'qXo)Jv? GPӎ0^s&eG89ى8).7JG.W(A}(n\$8e['3V ̿8/B- o)9>'UͼC2F);#y:i5l :0Pt+/x/F Zÿ+~%|8Bg9WZA aw4E.ݵst1UXdʮ4Ȏ_ϳ, )ϸ;$ N'qT55Yoٝ\(QY([/j ӽ8HVllKNkR56QμH<4-)8!QXGY2Ѭ9=sigZ g ؐ]4[=ug`F7tw`û7* +TELov6힉]-XW#(ǩW8i@kQJq\?gC9~I` XZqM'oֳřk8Ljz>zSFNL3QZd˭ОعA;'yyn~>ne(K^͌{ANvc(uo&ԷOz<=j={O h&pz텨çhpm![ysnWw G[GĤ*i>y# NC#rS\(g-YrJ,$8k)^]xX_J3hk&=Ex~͵ǓSVp{K--l/gAqd9v|'Kg1n$m(ɧd(qT)z'( ode<$'= _Vb(-tx6Am&H%~ʛDa% uߵ endstream endobj 347 0 obj << /Type /Page /Contents 348 0 R /Resources 346 0 R /MediaBox [0 0 612 792] /Parent 344 0 R /Annots [ 339 0 R 345 0 R ] >> endobj 339 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [433.376 664.259 455.831 676.12] /Subtype /Link /A << /S /GoTo /D (subsubsection.6.7.2) >> >> endobj 345 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[0 1 0] /Rect [108.054 402.352 115.028 410.76] /Subtype /Link /A << /S /GoTo /D (cite.Clayton) >> >> endobj 349 0 obj << /D [347 0 R /XYZ 72 720 null] >> endobj 38 0 obj << /D [347 0 R /XYZ 72 720 null] >> endobj 42 0 obj << /D [347 0 R /XYZ 72 582.187 null] >> endobj 46 0 obj << /D [347 0 R /XYZ 72 552.445 null] >> endobj 50 0 obj << /D [347 0 R /XYZ 72 363.583 null] >> endobj 346 0 obj << /Font << /F31 243 0 R /F8 249 0 R /F62 303 0 R /F73 331 0 R /F64 326 0 R /F76 338 0 R /F63 350 0 R /F74 332 0 R >> /ProcSet [ /PDF /Text ] >> endobj 354 0 obj << /Length 1688 /Filter /FlateDecode >> stream xYKoFWH}qMH 1CmіItpy-)%1P|\~Y~x⭷2-sO.'^O|W3JTcg'3x•Ʌk mMfJs G3x1@3贁GuɓvӜZ {1ɲ3f~N`:#|Әd49*{q=@y!lH8z{+xt*^+K&u  %\+vedG6Qa6b 42+BrXeNngžat+6Hw0|ݧՍ6S.å6f% oaźVM_5j"i, vi5 _wM.x4x w[DGTW*łm#FKBjOkk$`iw<)a-[1uG[ϓZW9hDlIZ^o9Myh [LY;2u>|jzbNy%w>u<)$d2RbZVp>^tmfq5B1RHz=BT^m.cHjT͘sTJ`;T&_2"? ؟lFٓnز孤y% SS&j!--: Sh(nꐄ4ڷ.T2͗o^C; Bv%0B\Ɂsp-˟wUTkJF̖l~{18 ixzgapgK6 mȒ{_ռA^VR-޷Pث O,SV}XlE[j8NCsvcq죱:jux@uG-^b!J/8s δtU`{ ৪U]<բ|Z#t/.0.?%8s]2mbtݹۨpNv`44Xl_d>Oi;IN7<,yC&PhsfUE} sͦtr eZE;={s?| endstream endobj 353 0 obj << /Type /Page /Contents 354 0 R /Resources 352 0 R /MediaBox [0 0 612 792] /Parent 344 0 R >> endobj 355 0 obj << /D [353 0 R /XYZ 72 720 null] >> endobj 356 0 obj << /D [353 0 R /XYZ 72 526.786 null] >> endobj 54 0 obj << /D [353 0 R /XYZ 72 424.444 null] >> endobj 352 0 obj << /Font << /F74 332 0 R /F31 243 0 R /F8 249 0 R /F62 303 0 R /F73 331 0 R >> /ProcSet [ /PDF /Text ] >> endobj 359 0 obj << /Length 2807 /Filter /FlateDecode >> stream xˎ_1p.id 8XٌO8g$GdqOٔ(iǞ GUu{Vh07w7x?7f:ۭᯁߦy_g.{B[OwVuiJoVJC[g}|{M;DQ!˖1&EaG:|J>  = q)+\vFp/ӈaeE+vf|7N$ 0ey6o UʰvC(NVj* :^anNo a@ɒ>P ߹gl'\3\/>fEG"@+ˬ0WS@"- +#bWAO+DRf(">kSCfՓ:lw\W쐘Yb+5z<Bvm(FjiTe71d(Y6Kg{ &tU\$vUL< pb[*L.gӬ{D<*cG$ ңx #hWMv[RpOjW8}͞`R2rӃ[tI,mBO a8_lL:ںY0Yzinoh2D5fIM%RD,XȌ/U ?֫2>0k_*? DIFH0ޗ°4 ,C9/\:GAtLUK7}wyȻC&u:3FФ#H(aG+KmnJ]genjt'I:/8G;q.+p^IeҔb-)\@"G,'fGm"߲`,ӜꭼS2yFȻw=EWIsl-G;Iz?>˂ 1L '0 Ҿx/B\j TӚ"ɼgos8esو#-UtXvb6 tw/ C9x_ٵ<} cgg.0ƙ,6^9˾缿3R?aK86hm\%0ZUU '>Cq$+q&Vu"gπxWqՔ59=Qtm N͆Tc1y*yokk?ZzQa[ܐ6 ں T*gb ͕.#i_!H>lBJDc4}@ UbҰD&(Iu5OMJ'9J'8+e;)c :3iOS+~cLyp I๎J8PtF;id|%}`k pϹC>f~B"Lb*X+*,gR' 媨!՞^jx.EKIםK21yJiѹVj Xr7v sEЄy8 :;] ǗTc|\2졈 *U^c rw~?nPX@w$<4!9D1i Zێ4AD>.ې=owFj\L94ߔalP*6 HwYB !4CqTܘolQ`VJ8UM~-9Jx<{s *5z*Q(7OYY~k_OϵU d豦\MkcN; fp6_LTmc~Ĭ[44J7/gWS;@ nE&U6U`V}`q WN,-^] ~r/;W#JZJ?2 0USRX-!'Jumc(}ii/K1q8!4R hepR(FP5j,RҿR ic8lߎNmɭLId 'MwH)$_&&L)ФU&`j?qM TWhe䨭=k=gb^b oYK86ʎ:2F#HYH>dنmD2 =CA#{-\_Z2[G4{u瓞32\Y{"P`t&.p” 9{uB8~5*ܝYB O |PbcGZpꪎ.EիIzWSW&1g-nI\7ʃy¿M5rўw*=ep$q+wm(iMIP4(%XU>)5*\JERypźxjP}k}}0{14fIa\(=_;zZֱ.$6?Gҳϕ5G |m=Wq,mrfDz9D՛W{( endstream endobj 358 0 obj << /Type /Page /Contents 359 0 R /Resources 357 0 R /MediaBox [0 0 612 792] /Parent 344 0 R >> endobj 360 0 obj << /D [358 0 R /XYZ 72 720 null] >> endobj 361 0 obj << /D [358 0 R /XYZ 72 720 null] >> endobj 58 0 obj << /D [358 0 R /XYZ 72 328.833 null] >> endobj 357 0 obj << /Font << /F31 243 0 R /F8 249 0 R /F62 303 0 R /F73 331 0 R /F74 332 0 R /F76 338 0 R /F64 326 0 R /F57 302 0 R >> /ProcSet [ /PDF /Text ] >> endobj 364 0 obj << /Length 3465 /Filter /FlateDecode >> stream xZIW4 ;n/Adq!΁)ykUzƘa,kyҫO>{w8{ܕ쮈B&_qO o(B?Gէooyߪ0ii? ." 㠻-687'8Z'9Q_`Ggm:Y 2xE%?8 ϧH@|CoSBν"Se8RLG\d7a։q}t۩΃`U:e^.3CzlҸǦ/vU8H4 ˜4ٱՑ? ril,Q4Z9< tT.S!B_=QQ|ULl\϶k74|ܲ -Y M/T`ϱx *y>-l%?6suVn96IK9=W$h#=1Y0~~=>hV_? xA ]KrCxL_q_*-ñWſÏ#+2}'Ҟm0{i⤋M$lYa*-:+##Sn߫fPκ-k=j͂^D)_ #GQZqA4'geX2VwxA=OhQ+$gݘN,93{v?Fs? PqO A  9X4*kфo["GXd$ۧfEkaF@ E8)MGw؞T&[ 3k+Kzݴ4QYu߆PGɋ듽P&*c:ўz2Ik h/3k" D\4Z{U`tܾ~즪+_AJ+{./ |K7 Ɂ'j͘ϓΩW?T!LEGp CJñц;y-?_;' * n$ZF}?!@ʩ:#5n$+79~3„3&LMZXok#cH{cI4|O"<Έv(6~d`|2YXΟ(\%QЌiDmq H(J<sǘ,|10e-  #zHo%dK*UFnQl S<3i9f1ТX8eEh">q[ Cmh#tqfb䷼h]Ð:%t/Z^VjZ,lnCWWLyX6Ib`JNt͜Qdѻ .ﺶ@"TRRIFd<;~TgV9vbi oCP%JYqKȖԗW&)6AOM_ʀܨg|z{*h4#Aa3-{"|CTrzSu~j)y̾c`)1ͣc3t釩FVT2@&X/EW6UiI_&(aT&I&yDp$7V8*l{XjIl^Kcgi֙ejj.4tv^[9xzC <Т"Pl^8TrMdB4|j<,xDOI*6W<n',9;UY-q rw%ָL(rwe6N&f"7~{{qk|kYZ:DPvyA*֝tI 7WvՑ-~>D*ǕwA澵~/i[Rnd["[d3}p5Ȋi)\,Պ9 2oeN_9"C7/¿\㧠fQN9}~2BJJ2&{OYU%l:)JXg̣qdCa37b5_q|U= x0w H"h&[%@3JƄ73.8_R%~TiDN$uJo^vr79C|?o/Նc8.f[{ZY!C (k{+Ul4 QbVy"r"23!6flpX1f n^^g Xz7)K~u=#Ty+,c21I2:N:m3$1+I D]܄afw@Hp|ƹj5$v$VJ X tl{k[8h܋vWlEBbzYK;G-̣׮]Tn_QkuXw2Ϟ;Nx1o\V Ȥ\~qI5<@_V3\1+bRGKP󤋄Q`/LǿD&*f|ɻs\5EB|}3!xѱ~BS>j1׎'KHHߢf;(`hADw|SGqž@vRMxwrڋQ3-9'7Z%棜~9]0y>1Y _WWb􏞖x@t)W9K>M~\,şO % endstream endobj 363 0 obj << /Type /Page /Contents 364 0 R /Resources 362 0 R /MediaBox [0 0 612 792] /Parent 344 0 R >> endobj 365 0 obj << /D [363 0 R /XYZ 72 720 null] >> endobj 62 0 obj << /D [363 0 R /XYZ 72 377.171 null] >> endobj 362 0 obj << /Font << /F64 326 0 R /F57 302 0 R /F8 249 0 R /F62 303 0 R /F11 337 0 R /F14 366 0 R /F73 331 0 R /F31 243 0 R /F74 332 0 R >> /ProcSet [ /PDF /Text ] >> endobj 372 0 obj << /Length 2990 /Filter /FlateDecode >> stream xڵK6_ Ī(R.-{(vA=5L_IR65.Ĕ{)=|[tyWqєyafKf+S5&+Ư*mV/g`t ,s+䯁?beLU*ӤLᚬMCPlUi$iɫ]z3n/}Cڜ3BVвOx#5SIDZoKoAsz;O]<4 SQ;v96f-aH0 S]wNo!/Ձ\9O,'͐K\T3ojͭ{R GU#"z6+lۺcOO \ʆGu-/xoc\Yˍ` Z,uFlw,%T|94-Wdj}^ʦW@Ӳl3;}]ioMea{\ xQ5>"aY6J/e|8<AQ1=|8#h2Om66}dACTŪq`vbdDW>3Q6مK5%~a v .3'Q5oQr)~=kUJpծ5jvRT 7,V!Z'gcG$>TFTpèÁ3R慍SVE:-wREsȁ7, y5x2VemFtx8꼸ޝ~D@xP##8'~*%>t|v \DdQ7OJ")v9*J;mk)gXkg&L*>̧`XzNC|+K^3ٔ0WNb}&̈#?b[ t0λ\*d*]+o>[d6sP_|Jct!0ia&b{ pT$R'!}9 s:p]uBDaq27*{YZv/Z!sīϡE4xT{ Gq}ے>-$ĶြuTgu͐mtڮ|A]X[4g3e6܆[.i8ե3C4Xn:"~5r`Hj)6V[ nR E~FRga?¾s%AP8K^%8 Jm0 \n]MvRب2L?tٿ/tg|8<Ty/k'+\(utdt30V{#Fk͠=)Yh=juL%7l!źe?9N "D/ g{ wP[#7mSХ@@nwPj*iMx$ ތ qB`ы͞*c9 )N7+AzIL.ko$d>F#TݗVc@Z[Q_З-AYl WP @˵蹠N " '~=)#U(xu+s [NOh"]eKmM&“53ULaR#.d\$]mO;BGq3.8J I9~"T۸y%o-dSz!.k5-XY/8| p`ĖDgblK< ѕZR6kt47A{*]$H)^v2ZJ@봗25 lѫB`GMN:2:u I28Ʒ^~(Xv@P*9;x9RE " \Q=4>5u\X(z)BAϩY{uz\Q,mX*#nNNjߏ7/8ǙƔ08C@ Ub9 +0Xkg>7To6(NtPc21{;OJSx+3 SNcJzoi|7M\)ҕisۊ"*"B)V>ɜ"G'zƁ/aDokI)q?o)q6{eq=j#?;72n¼fiϺStk?(<#iJ_ ;zBQu /T3ÐbU~jFa~]L[D?X;N/r~01DqVh&l&wHp_VF&;{E{mdt"Gj uw.A'4Sz !-5ݷd@49ӌ1xKǬo%-klK']ymj6]~nfYdo̗]0Q-\P(5-uN*?2MʕA0Ŵgd;NaFXȝ)l_lBK2IqĠ4y1!Vmmؠv UuՁH# Ѥ7_?fxK)T:r5@WG,9!'QܩF> endobj 367 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[0 1 0] /Rect [216.36 254.73 223.334 263.138] /Subtype /Link /A << /S /GoTo /D (cite.Schaid\0402005) >> >> endobj 368 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[0 1 0] /Rect [372.429 160.667 379.402 169.076] /Subtype /Link /A << /S /GoTo /D (cite.Schaid\040et\040al.\0402002) >> >> endobj 369 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[0 1 0] /Rect [446.348 160.667 453.322 169.076] /Subtype /Link /A << /S /GoTo /D (cite.Zaykin) >> >> endobj 373 0 obj << /D [371 0 R /XYZ 72 720 null] >> endobj 374 0 obj << /D [371 0 R /XYZ 72 528.752 null] >> endobj 66 0 obj << /D [371 0 R /XYZ 72 353.31 null] >> endobj 70 0 obj << /D [371 0 R /XYZ 72 205.948 null] >> endobj 370 0 obj << /Font << /F74 332 0 R /F31 243 0 R /F8 249 0 R /F62 303 0 R /F64 326 0 R /F76 338 0 R /F11 337 0 R /F7 375 0 R >> /ProcSet [ /PDF /Text ] >> endobj 381 0 obj << /Length 1751 /Filter /FlateDecode >> stream xYK6WɶQ!whha֖F )JmP 7|C?_z>He:29gh6s=ט KHwXctbm5t1jOA>:AciXu0(\Ui}Ӝ!% c/-ִHu0SBo`- É?ʦKs:\t ڧC_&Z`EևKRvV z8uȴsp$m=rl*/=8+ڬn8`]hm=v$M5Fq)z(w0t|WzB`p![ ;(5y!gsj=azDx6пzGRN947ܴsʓ7к083L8I98M)p%շ:lH9Ƕ, {kZ"ScX}#MTNMa7]PTðs6K= z*јObC;1ӝ?A=E2d;YI*WuHiJgީK'q/ @gmwi/OzKȈ1 &%LʽvC AzoLƝ;*GL[iDYs ~_h8L֨D[$˻vQ1`8߯xG4Ӧ OD?:z~;pwT끪> endobj 382 0 obj << /D [380 0 R /XYZ 72 720 null] >> endobj 379 0 obj << /Font << /F8 249 0 R /F62 303 0 R /F11 337 0 R /F7 375 0 R /F73 331 0 R /F74 332 0 R >> /ProcSet [ /PDF /Text ] >> endobj 387 0 obj << /Length 1741 /Filter /FlateDecode >> stream xXK6WHhz+Рuזv;O<&6E«r~߬z-ǻ1NGEqip`"3+U'&wXL& J>N\d _*[\H:fZ4I(_MqĈ2kohb+&⢍,Mhn1&nCBH犽ibf<^w,%(b1Rda+TK^eeL'v=0rtl,w+?# 4[ yʦR:aȰHVn: M ّ]Gt鶼qI;}EgE/}}#ryb܈ P0w|80KbXF6"\\WɊO4CMS)Nx9>(6B@I] wκ W϶Q১~mY6cλ){V=̎bs%Y:t&L8)$mYj\f};gW5yGN&*%?7ܵQO[6r)WCŒ0fC3^_ǵb~fc.mWecR?;dCk$M GJY6|:}ݕ}e_xvڷN_Z OV.sp,-2tk?/:,0н iq`ߜhخs(pWF218A*]nPD G +9G+|r$,ҷݨ]_G:ixs|H?y#uIo1WvXa;-ItDh =o\E[ p+UF@]tP?;t')É$=`[S3JqU|w6+&l*ؕSmeudG'[ǴyT>#MyjR\*~eG? a endstream endobj 386 0 obj << /Type /Page /Contents 387 0 R /Resources 385 0 R /MediaBox [0 0 612 792] /Parent 383 0 R /Annots [ 384 0 R ] >> endobj 384 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [485.416 391.945 500.131 402.785] /Subtype /Link /A << /S /GoTo /D (subsection.4.1) >> >> endobj 388 0 obj << /D [386 0 R /XYZ 72 720 null] >> endobj 74 0 obj << /D [386 0 R /XYZ 72 462.242 null] >> endobj 385 0 obj << /Font << /F74 332 0 R /F73 331 0 R /F31 243 0 R /F76 338 0 R /F8 249 0 R /F11 337 0 R /F62 303 0 R >> /ProcSet [ /PDF /Text ] >> endobj 393 0 obj << /Length 2402 /Filter /FlateDecode >> stream xˎ_!8>Pfwidڋ x=p("5׻^D,CYU]ŗ颊\狻EJ󥊎=w/-|5|̭eΎ㚎"Y,c?„ri%k+a:>5=' e]ؽ E"G"B2, 4w=ʪr}pOқ7cF4ђBskz EE?%Y" dKAvwө 9_L)˚qd<ێ=smmU֐94qB͵)yҩD*s?;@z>JO'w!Onӡ{>O{iLZ+˨JcZ%`iqit|\ y@SM6 ,[VF9WyIU)<@HHFf BJA/4~&؎xfdI\݆QLGeB݁(́EGEM²$aI ̣Pbf4^LAhvD4NZؓ%<0V:$㰖xBkxTYx{6쬮Օ0Oҝ v noL>u;Tqgc= >X/ȧ~g\ Z;3 KS`efM١uOL0 ӁJLoHqk Gbƶv4"@+$\͎BJ9HTT y4!߯jBGy,Xd10 v{VHX9[x ί6-Y3 Xqhn˱ioon;x*ZF`*jh԰D9NkW^^\hIqqY lБ1W)P'm]("Mu%VizJ,;MrMLͩHEQDZ @l2gԿE# Vh Gi*G8B;|/}PK =H{s&==сA%%5;1@\MҕuzO􏧞҉5XKĝVZrϼdx4eKv'aե vw!9sl+!YykB".]˔,=$U#ddA\Ab9[)<\PelJI󾕕WVF)fšh. g]R%<=ÝXN?Ye`(7/c1etKiVTW6r*1HN4., ( ¬*pI$G:j5K}RJ!,tndS$ό-F N>)>vr:3MTTjO<;bq,,\eR,gyȳ|v͛*!IefdHc zN 3+7`><[CAmZ$+hnspl.Oq0W$ݽQr g6e$Vg{feq]q6ݵY_M@+]M"x_J~$tL:H'5 Ψr˙h4| vC+ɋ4834݃I$[^_r;qw2&Rcvfkm.P_3?iHYl{#NeS%NOYSNs\bǰ>&|eHsN豯d@9}S .P!{|,6{~=>93^T8B]" %u4ߧPOmS]\ܿ_dS]@Pq> endobj 389 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[0 1 0] /Rect [517.941 335.502 524.915 343.911] /Subtype /Link /A << /S /GoTo /D (cite.Schaid\040et\040al.\0402002) >> >> endobj 390 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [431.213 227.543 445.928 238.382] /Subtype /Link /A << /S /GoTo /D (subsection.5.6) >> >> endobj 394 0 obj << /D [392 0 R /XYZ 72 720 null] >> endobj 78 0 obj << /D [392 0 R /XYZ 72 435.188 null] >> endobj 82 0 obj << /D [392 0 R /XYZ 72 320.085 null] >> endobj 391 0 obj << /Font << /F74 332 0 R /F73 331 0 R /F31 243 0 R /F76 338 0 R /F8 249 0 R /F62 303 0 R >> /ProcSet [ /PDF /Text ] >> endobj 397 0 obj << /Length 2371 /Filter /FlateDecode >> stream xZ[o~ϯf9rȢ.A][LZr ͓33߹3Ի7?\z7TUbvu;fu2gW7ř~We֪W_ko''xk5\5=/rcR^jP 6_3nUӌU,IU󄶧TXRpps.LrIFʎAv70!g*N2j<9Z^eϢĔl2$nc|8]1VV֘~\Xyk?:sgeL:$9d,Jgo%d;64Ę,?h%8 qW#4$SHL, `/] >GXFH$ue ;#AN@4q~Tmb@Cqn"\!sD+6)H30 /&`)0+ iF$O_.A`BЄ3Vt؊!!&3sМ<o %Sؿ'6Xz.J&?)5>c6n5h䝑km|GhS 0 1>0 Q'RH)4U+s"hg/Gl'f ԩV'.FR$.1F'Xx%#~ZѶvla}>⯛J#Z^L+JRCUpT|_OvSf5;-πچCoJ(Ka0YJ@pbM,PJ1Q΅pE(I7 ^JߵBMw{Pg g*axYrpJ<]u-Ң:cڝuBgLi=c[3rԢ|Ϫ,TDD"mczTYpk4j:Q\;}U1|y_ǢL-- RXRs"=5bLUEu@aJeLh,Pd>z`CA;@خVG[YD~V i eYUhz 0sۯ~L c,ixصH֍XPQTL %+^x_#М@޿88Qb\\g6jhj+Ȩ{nAQ\0PZY".dGE3dJUV:2$Z;[Q.f6a0-m!!!=A!nnpAa!9vCuS`,uhvY馧 =+(?UFl: yQ -dWsbqK?o=nb\pwpa6lzc&>9UGK\oBАԠ2!@ȍ5[7G>e{^о({ד{t>Os< NV1+nB\`GAGaDu[K[w uaM <؅brNvR>&J9ClnB(=L 6D]绉 &3Z%XGciqs/ˎLe 1_*˅BH 1 "iLOg@5= $FduҳԹ5텚dzߤi$6>}>[v*7 * [+߬Uk(ao?r'zuVqZԤϱ RNip64v؏J k!~{YRqU%A#(膛_Ē4!9t'RYt@¦-mJ~61"#s:2] xt]I 9F;}tmUUE 2Td=49>Ǯ ǥh°C"e+b&O,p=>V*⁄XI?!Odn *PUQFA:.bq]^}Ypvt*Ћ#CIb=. %O> _# a $ >ď5࢓\F$T>gO|Tp0f:N(2X~ӕwr2J> P(i3_eZ?z?ȏMJ~|m14{|=$ 7V ذRE8\)kY~jymVH"=G[ R/EGf1}%#|# .cfP> endobj 398 0 obj << /D [396 0 R /XYZ 72 720 null] >> endobj 399 0 obj << /D [396 0 R /XYZ 72 443.682 null] >> endobj 86 0 obj << /D [396 0 R /XYZ 72 250.103 null] >> endobj 395 0 obj << /Font << /F74 332 0 R /F31 243 0 R /F8 249 0 R /F62 303 0 R /F11 337 0 R /F7 375 0 R /F64 326 0 R /F73 331 0 R >> /ProcSet [ /PDF /Text ] >> endobj 402 0 obj << /Length 1428 /Filter /FlateDecode >> stream xYKsDWbD(Ln@Q[=(wc*q$3=# pС-y^Mv~rvaը`f44bdy2iGrwV~f- VJjZ|C4 jkD6?rF+p!#'"ǼAW@N]/?Wwh r47t<Çt-@̑u9⎄#-}' %NMqKtjXiwOڤѽCDO#G9^YeHB4;;k=xl:`Hc0ax.)j:Q B@q,|)7FIz A}T:#|گkq'=NsM1jbkW]| |*R쓡nⓑgqQб@3#i 6(bKexDzD]9ui8|S: yW<̜6T03K2X:'vz /HMAs.Dgx$+]3JW(>i: LӒfIRTBS@2Or2a 5~grdVZ5O 0h[&$Okɳʣh1g2v>ɥ;Fh)7T]rll:!Z{K+phDa=O<2#"h,A<܁塻iR"L-Y߭;ǫ%.u;v?Hwo=ZJ%a͸),4E4ɕcg5o1T+[!^1宊ɘ_rЅcAO78UJ<)}&Pkò} {yV]*g<}\߮ZL8xv4喒{c/{ endstream endobj 401 0 obj << /Type /Page /Contents 402 0 R /Resources 400 0 R /MediaBox [0 0 612 792] /Parent 383 0 R >> endobj 403 0 obj << /D [401 0 R /XYZ 72 720 null] >> endobj 90 0 obj << /D [401 0 R /XYZ 72 419.771 null] >> endobj 400 0 obj << /Font << /F74 332 0 R /F31 243 0 R /F8 249 0 R /F62 303 0 R /F73 331 0 R >> /ProcSet [ /PDF /Text ] >> endobj 408 0 obj << /Length 2247 /Filter /FlateDecode >> stream xZI۸W&Ң ĩO8IRwUؒ[;~\L%ΥAx{;(o3;)i7dz$NL6^L~~HAa:K ttEi"c8n -!E-Bd<ʙ\ 5ӧQHS$Rq-D݅i.21VB5);ijFFkyZوJf'%+4E~)O]|.K !>?=Fno&,?傡CXs40:|֨ ԘynkS0M 0]n:3YB|h5p˃4l\X;i y|J$*q ÿLz0kw:ߘ4֠qX\|*J\vXsmYb6b^zs~!,w]Dі?+tC9R;͘'Pr:D:[|]lFo!/ ܂&>;2_;(%ePT6l}2ߒ;f8I=(-; " Du+6McخeoQ!]}^,(3D:X]UyIYMLݣ/çl.^z/ %khwChǭ0kUs \o4/<r݊IկJ\ I ڂܖGQyu$vL*zlAͶYCYXeȒ(_8&eMV$w$#S%@d#.~D NS %epځy6̌QuOѶ|o 8Í߄6 0aHpFyC1bgaSoȝ.~xзJM'en?~ 9$EFOWWcVk`nSŁGb:`{-{6X x-ƯZ1Z:{ C{s}c5>e*?mVԤ)fMT1S讳 ݠ%sxN͏&gAVXI>/ c|"yV)a㯳?J>P(>XUyÙu9gH&.=n<4՘.0R,T {W7@g~8_X[{%Sĉf-o`u' 5oho_W;fMOO9Qf CX%z5UwB"شy~ف`O0Ϝ̙ |LD@T!X:q9p#M\oog`:3GFGKOG0MM'LNbsJ3pZkNl O̹Dį> endobj 404 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[0 1 0] /Rect [310.88 578.885 317.854 587.293] /Subtype /Link /A << /S /GoTo /D (cite.Harrell) >> >> endobj 409 0 obj << /D [407 0 R /XYZ 72 720 null] >> endobj 94 0 obj << /D [407 0 R /XYZ 72 528.235 null] >> endobj 406 0 obj << /Font << /F74 332 0 R /F31 243 0 R /F8 249 0 R /F62 303 0 R /F73 331 0 R >> /ProcSet [ /PDF /Text ] >> endobj 415 0 obj << /Length 996 /Filter /FlateDecode >> stream xڭVKo@Wpް:RJqOMcq;HCk0EZqlKPQw?`<`_]2 ®+,:/ؐOU1Tg*4Cxe Lڂe]I0Ј>xв+jï:dž2Xo7 )1#L:e1`#Lk$p(4/QW\bR;z8࿝K^DDe>  huI|QX:)kY8)UY΂ "DPPb~5#Ũ͞MmĐQ1#~WEyF1emNм8HN;'oG6 ĉ#d,4C06#w}_Lx,,67, %a١ߏ"^y˺3WVD*/l6iZkר-T5m\Kˋ+9XE=IyX?2Auu.5#REP~\Ս*RȌQ*4JUAஊR2CUNLih̳<֮52CyS bϫ̪&\nRe6upxݴ$3\bUIyXge$1ʩ4Rj?8Q%շWܝ-W6pmJNr[ G!@lddc;³TkY?fkTiڨyԕ#/JBe#c)TIeE c8e侞Xf,i< Ihf*C*ܨZu%c0*ԑ텓>ldXogk *ó"x |]~Dbe(a4)}Eq endstream endobj 414 0 obj << /Type /Page /Contents 415 0 R /Resources 413 0 R /MediaBox [0 0 612 792] /Parent 417 0 R /Annots [ 405 0 R 411 0 R ] >> endobj 405 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [530.573 676.214 537.547 688.075] /Subtype /Link /A << /S /GoTo /D (figure.1) >> >> endobj 411 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [102.365 628.952 109.339 639.791] /Subtype /Link /A << /S /GoTo /D (figure.1) >> >> endobj 416 0 obj << /D [414 0 R /XYZ 72 720 null] >> endobj 98 0 obj << /D [414 0 R /XYZ 72 720 null] >> endobj 413 0 obj << /Font << /F31 243 0 R /F8 249 0 R /F62 303 0 R >> /ProcSet [ /PDF /Text ] >> endobj 421 0 obj << /Length 646 /Filter /FlateDecode >> stream xڕVKs0WhH+f2m-)jc _=>!ajwZj_1)iHIso_acLgZ}ꓐZB`Z iP! n uP'YCa[$]{,=N"2F4dEiiHÆb> -\ BP!pQmk:AS)M@R[5}CjNj++~t"oN5Z>8M+mJ@*6NCՀ׭O]<}ݚOB YF8: ) =bl`St|eC#1X )~ *H?a)&U$@E0;;! r Y((";n9|`4 c[2B6#{9ޡm;GS?caeIXSRͽ/E:ՕӬۜKF+4{%yYh iJykw>a.:9g&2w\2Z:Ο$I"i%ܿ"Ʒ[ yf`ߪgJS\.?E4b ئ#s8n endstream endobj 420 0 obj << /Type /Page /Contents 421 0 R /Resources 419 0 R /MediaBox [0 0 612 792] /Parent 417 0 R >> endobj 412 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./manualHaploStats-scorePlot.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 423 0 R /BBox [0 0 432 432] /Resources << /ProcSet [ /PDF /Text ] /Font << /F2 424 0 R>> /ExtGState << >>/ColorSpace << /sRGB 425 0 R >>>> /Length 658 /Filter /FlateDecode >> stream xVMo0 WŠ>sln(]0Pd"M&?ʖc'(ive%> a\\Bc!Z bi 7nsX?wusvpݣ%: P=H YdI (ixWMf)@2ȡlc*^IXYz7z%! bi5Wgmru0Y농ޠԗ+bw誹l0ūzG\VsKlׯύ(CѢu@N P 2jn}?+7Ժ#zt)^LE,Oh;sY"R8p1 ;s:7oW]`*Wn+@Eҙc'wLOU#:kdZEz(EOޡЀw3K=^fz;sKB=>o<ќ'RX5gmnWunpf3דCu>CxK5ִ)M "[${p4 5;@%E:AN?B;G endstream endobj 423 0 obj << /CreationDate (D:20160401104903) /ModDate (D:20160401104903) /Title (R Graphics Output) /Producer (R 3.2.0) /Creator (R) >> endobj 424 0 obj << /Type /Font /Subtype /Type1 /Name /F2 /BaseFont /Helvetica /Encoding 426 0 R >> endobj 425 0 obj [/ICCBased 427 0 R] endobj 426 0 obj << /Type /Encoding /BaseEncoding /WinAnsiEncoding /Differences [ 45/minus 96/quoteleft 144/dotlessi/grave/acute/circumflex/tilde/macron/breve/dotaccent/dieresis/.notdef/ring/cedilla/.notdef/hungarumlaut/ogonek/caron/space] >> endobj 427 0 obj << /Alternate /DeviceRGB /N 3 /Length 2596 /Filter /FlateDecode >> stream xwTSϽ7PkhRH H.*1 J"6DTpDQ2(C"QDqpId߼y͛~kg}ֺLX Xňg` lpBF|،l *?Y"1P\8=W%Oɘ4M0J"Y2Vs,[|e92<se'9`2&ctI@o|N6(.sSdl-c(2-yH_/XZ.$&\SM07#1ؙYrfYym";8980m-m(]v^DW~ emi]P`/u}q|^R,g+\Kk)/C_|Rax8t1C^7nfzDp 柇u$/ED˦L L[B@ٹЖX!@~(* {d+} G͋љς}WL$cGD2QZ4 E@@A(q`1D `'u46ptc48.`R0) @Rt CXCP%CBH@Rf[(t CQhz#0 Zl`O828.p|O×X ?:0FBx$ !i@ڐH[EE1PL ⢖V6QP>U(j MFkt,:.FW8c1L&ӎ9ƌaX: rbl1 {{{;}#tp8_\8"Ey.,X%%Gщ1-9ҀKl.oo/O$&'=JvMޞxǥ{=Vs\x ‰N柜>ucKz=s/ol|ϝ?y ^d]ps~:;/;]7|WpQoH!ɻVsnYs}ҽ~4] =>=:`;cܱ'?e~!ańD#G&}'/?^xI֓?+\wx20;5\ӯ_etWf^Qs-mw3+?~O~ endstream endobj 422 0 obj << /D [420 0 R /XYZ 72 720 null] >> endobj 418 0 obj << /D [420 0 R /XYZ 184.567 167.251 null] >> endobj 419 0 obj << /Font << /F73 331 0 R /F8 249 0 R >> /XObject << /Im1 412 0 R >> /ProcSet [ /PDF /Text ] >> endobj 430 0 obj << /Length 3435 /Filter /FlateDecode >> stream x˒_J.TeE 8Uvk;ީaWfcVv< RԬ$4ij/4/n}¨RySUzv9=s f7٫,R^@~/+Z;|-9FgЮO7E=kjBչy1pZg'r7ǩ4d)sW0ᨖqgcws=GfZmE{l`jP{`gp*Tu=qMibYMr./m`[gnө쌅ĚE$T[HɌdk+M~QI\!SZO@ÚWR=T7C1Zʢ]bbUeшUy:P_ "h:9>: 8e}A4ue;ːg ǹz* ] K!/W^UZL·k9RwywZtn>b*1LF ̈, jh 8 vު~H؁cjB^Iǭq}IbWƦv5G*{{f=)>dm#4^c@-hPɛ{-k G~L 2e}&xBOHAP`7-8ݤyQ&a2>Ei,tk#x1yL-q JW7>C353HgVTv={S1[A'vn끆fȁf(ng/} <L* {cB18(M?<MnA-_Ar 8H-ɻ` E-ϰv$ȊeÜ?rBPkOrvR@4ɴ[!1z5>j,W*S%ʣ6uuyAx'gˁeD?Lƻ8=.Gs/ƘTQVT*P Hh]0ԩ`jVU Ǚ;t(+ )lZ+6;9JNWu]2 ^ChՊÂz_X2[9:򁞗C::(dlha ^W6܍elЍu QӉu6a< Fh} K/ MΔXNa5?pY;^u\+oK X'xN*"uvM8 I+gSu)BWSc^pбLeUt ,o@ĸ\ ?HL~J~&=&| 2z ?Et$\fPl?`wy$/P9g{C9a+伖nT(捈 =%z!k^+z݋H6ErE`u\(\M3OfHjڴ_tpOJSV7\-SD}ׇ҉#Ot_anٔ^^8|Jv @4Q4 vR<4W쬸ZdוpaE:b`y7/Cf2`:8֛xU)=ld gpűD1@c|`kBK~_CGpHc!G/ڷ> endobj 431 0 obj << /D [429 0 R /XYZ 72 720 null] >> endobj 102 0 obj << /D [429 0 R /XYZ 72 720 null] >> endobj 106 0 obj << /D [429 0 R /XYZ 72 240.438 null] >> endobj 428 0 obj << /Font << /F31 243 0 R /F8 249 0 R /F62 303 0 R /F11 337 0 R /F14 366 0 R /F10 432 0 R /F7 375 0 R /F13 433 0 R /F73 331 0 R /F74 332 0 R /F76 338 0 R >> /ProcSet [ /PDF /Text ] >> endobj 436 0 obj << /Length 2470 /Filter /FlateDecode >> stream xZ[~_al^dtHnMZ$;A6y-Զ=_s#E12Z1ڏ:~rz>gC|pOGehi& $<:#:03#UI^( :~/Uɬ$LYy64tsb¬-Md޳t rT9l8[$QVkVk;h4Ԧ826rWmcEHWmBP Wl0`hp5C]'(}v0^fSlD{A݌?%U} ;󡚥E7{\"lmm4 \&"zN+IYԔ:Jx=q2b AƛW'Z%g_E6.czfy1,*r-*zqâHPs ))bB2 a.{ O2>K(Er"ܳ ̃w/+  iMX U7iX$jBVg[`YeCVU 7X\E30+ t)1ЊO-\;i;r#y%n1ؒ]k-Bc!';&PYpCyi`l4O4{v1(F[i>(io I8ష [51`>?|ҁ@8eqw^*lW=eRDXuY;DpN,\堈ԓ}tXؙ(@-g6+BmH?~UXPJ\ $NaXn|;B A(^FU^ߩ̴/ыOɘPA]/ +{NKͣWfѕh^3M˅|ێz雎OoOAK!2̶Z.oA D%8n q$? x+& TwR'oT%b#r|akX!)IB?}G$DB"kc>43,ʄq[}q/mي4j϶^m?JUBa%#TecKBD%ePO&!j\UByʹzcBB[HJ]b҅hD8CK@"Mm:rg}Xq7 wLuǵq׶XEOgˀ^U{:ϻ[ ,GVՔmI~Fݸ,~P_g3 =;zm[+bE;gu9L}b|jc뾷fA}hOUw`K)1%r ~@ Gn4Wb'^_ܳ }H_/A&ͽ|dCʵ;0UULd]lfieEI:1G'rқt[v_AǼU= Y5W1Y*΅atYKc1F>6m?'^6651rN=Wyn~ZG3, ߴzdv[㴓9SP䣸pI"Wwn endstream endobj 435 0 obj << /Type /Page /Contents 436 0 R /Resources 434 0 R /MediaBox [0 0 612 792] /Parent 417 0 R >> endobj 437 0 obj << /D [435 0 R /XYZ 72 720 null] >> endobj 110 0 obj << /D [435 0 R /XYZ 72 682.227 null] >> endobj 114 0 obj << /D [435 0 R /XYZ 72 174.267 null] >> endobj 434 0 obj << /Font << /F8 249 0 R /F62 303 0 R /F31 243 0 R /F73 331 0 R /F74 332 0 R >> /ProcSet [ /PDF /Text ] >> endobj 441 0 obj << /Length 2824 /Filter /FlateDecode >> stream xZ[o~ZhuhɶEnܧlƒl$G#﹒Adqs?G~u~͛jV'uYJkz~HX,*0Ĺ"-w0iN)@Q- y1onh/ax8w\]u+ x:<6'J+\M?,>7E).--Z,K-nbeYG f*S,¶Sxÿ8C;.=H lgKIճI|oX8||¢.- '[#y09&ϊ 6i lg#BI1K$Hv̯1 0;I'FV5]s$&k8nE~!`<׼Au@M&OǛVǨlE5H Z/ּ=)>0+kE ԇ7(T𸉬 /K6/ΙqX#Z1(gpSvA)3"WHّn7od)!Uy Ʈ嵆Z %@{i HCva7cNcʉ3f% 5Hl%Z+_ / ;Ai#$E"/h.I돕-k/׆R/y*ωl3ޠD;܅eWPSӰ~!D샞l0KW!j_xWrXt҈;NǶ٩ tĝ8 p ky|D4R(veZE &sURԚR)҈[utJMR'|aX-?o&y::MDJje!cD(Q JFDUu#!QᎴ7a_#v;U(b2BC)W&ňtIj`ݏٔ"KW!Q\RX9{}~ mdfvf)Qvڝ`fkXN,fdzWJ,>3 xFLX(_)iZ4HWe@:J7$.{s6. ߴ1 <]ys |.uЕJ x>/!A]/ ,q5K'(;h-"XQB\HVY_ kmFrTn|C|1 d ZX!0h~yB@7Xg]qQ7u~[y$i<2@x$Auejy> 1U$TC/5 ԥnMne}>[ESXpc-jr9T-$,SBGv\:z[3 &.,|:h %?RRZX+L}]yyL6ѭ19/|oeм3Tuـ,KfSWV6/Dpl^XzvW IXO)Xĩ`, > X=(7LE//<ȔF#x:`}ϰx /nODϢD7 גD@P_P9R@Z`Koe:JoyIS~;*R2iGIx{,һAӧ4Q'>;+fZ 7] QW8qjK`kW1DHT[9S7Ȅ is}劑 U/J_FOѭH92&س~HDtOkS SSoegnXӱTF$As_'*"e*5:L[^d鐽kzK_tJUyTD"-AY׳%ӟYo[V endstream endobj 440 0 obj << /Type /Page /Contents 441 0 R /Resources 439 0 R /MediaBox [0 0 612 792] /Parent 417 0 R /Annots [ 438 0 R ] >> endobj 438 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[0 1 0] /Rect [388.294 625.355 395.268 633.763] /Subtype /Link /A << /S /GoTo /D (cite.Besag\040and\040Clifford\0401991) >> >> endobj 442 0 obj << /D [440 0 R /XYZ 72 720 null] >> endobj 439 0 obj << /Font << /F8 249 0 R /F62 303 0 R /F7 375 0 R /F73 331 0 R /F74 332 0 R >> /ProcSet [ /PDF /Text ] >> endobj 448 0 obj << /Length 3733 /Filter /FlateDecode >> stream xڭn=_a/2ppf82]hM$.Z-J:7_߳8,j3g߆g:K[=܄Y{L.ܭo~Ztk|[phn&/|8yI|r6@SfQҥe2'8^se/e:w7Kcay{#8g6X zJA-SUT,=aBsjf^&7e.J(Gr=5+F|rl!K:v"bGS3e K>nk^v}`o_ ˆ&QJ@T20;*~9DMwһ($R4|hSl4Ma/W(P-V pQ8o*3rdU"FÂe2ΏFҔEb9n LdZ}9>ujeͷ *RmsK7Ld:]:/^@1X'fQj(41 @Au]Nf\K.K'$O_9scq6:-?GҞ~9.]o;v3_0PPMpe |ೃO=ʏ=﯒f)ۗdU^1;b8_m󬨫YO)W(|V;`Vg7#\="~?g 3?ÂXBw-mȞݕ,w|L(y9v|ֽ$GzQaG9aYLYf(@#[XmIM lޝp]lyR~W| G6ULs~l+F].5v@ }G]V_ky+x_,#NQd#' 0Br͏[,AGiD 6ɭN~{b2uğ89\+ȥkGAb`+-?\NbTCu.+Er  ƻ%͡I@T֜]hH@[ qlBN2c{|гuPw 9f;͘mh 댤ߵϘ# _FMƿ7MxdnsCy,J\%8i e5SKyF\l<Y8u2 `ߘ])Ms?(ڂ̏9z`{+Wh9KZ%1Q%lTUJرXrSui.bɳHyJwzFG'#I)F]TSB  LHŦ.x,ZZy~x x$gT/+2|{i\9#hPK4umbXЩ<ᙓ=OzL@^6.AyWdzXJC)&fTwr9SKA&Rsmnu?q`-Z|=EI6lnz2TQ^ XFK1K anrso ݬ/r۷|2m=L)#+1횇Yo'z SZ'(ZC$YSuzQ8!8fq>CN ֒>WyYPIdh?.$(QZRo<ǧX,ޣ(Ə_wZp8YFpTK9 + y멝v"%y<{ӭ4\cGf6&BkiiI)2k3Crd7>Y.PV|KWS6z+rV7RqJ$ lV:vWb)v;} =qkkk퉧ҲǿUGbyqikEH&yAa?( zk&Iа)K`ڙz>{k8aiqͶ]ȌJyE|eY*P/Lf}5=S]<-iKqǰكvFxb̂OF%2kCT i+G$M:F4¸DK(A..>ZY4]pM՞ݐVk]j[~&")fڜ8S_x'iTڅč:¥guI6Kjz4j@Ӥm[(U4fZT*qjpB{ /}$}֪ 'Uħ6mSMgݳ>0dw)'2 K\)U㓿Tu k&|)&ǫ}/4#lmV|-) o]l5O]##\q^?stMG)JE&r8n sՂFd'^뾔ѣzA5ogUg.R] -ϙg}@83΀ yFxι'd>'GWYDNwǪ,6cyCx\qVOϱ)@kȕhwbwˎ9 ErdސGYbCŸ"ti LKr1Kc36^Ր / DԹ{Y@ˍJlEXƛIu& ʻMD#Ù'ӷL238zJ˔O{xwM[cܞnܠģ#͗_ͼ?IKLJ\xMFyw҆'ĝwy `c|~JJb%n?rUˠHh1dti.IHO ECe/E>3#;q~'T7}5}T_FBoq,1νH:YL伏> endobj 444 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[0 1 0] /Rect [438.839 451.449 445.813 459.857] /Subtype /Link /A << /S /GoTo /D (cite.Lake\040et\040al.\0402003) >> >> endobj 445 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [104.229 333.846 111.202 342.563] /Subtype /Link /A << /S /GoTo /D (section.7) >> >> endobj 449 0 obj << /D [447 0 R /XYZ 72 720 null] >> endobj 118 0 obj << /D [447 0 R /XYZ 72 574.497 null] >> endobj 122 0 obj << /D [447 0 R /XYZ 72 436.411 null] >> endobj 126 0 obj << /D [447 0 R /XYZ 72 321.299 null] >> endobj 446 0 obj << /Font << /F74 332 0 R /F31 243 0 R /F76 338 0 R /F8 249 0 R /F62 303 0 R /F73 331 0 R >> /ProcSet [ /PDF /Text ] >> endobj 454 0 obj << /Length 2360 /Filter /FlateDecode >> stream xڭɎhtr&Vj6H1`2@ 񁭥[Il۾*Y:6|^}ūRUn07-n?Nd7֪24<؉W|ә =cU`Zc|H.>Ār+,_캋E㜹׿/x.nŤ[޽ u(#IbDŽ>2;F-Flkda9> uᾏ2^GYGۀ]RL"L*:;>e)۟r,Ӄyz0?f~6_hsWc;5ktS2P_dzDUJzSetcҩ]e:UF_R$`Hʡ>bć*5ZtNTNEϿw(, d6<й$'jߋx:WDx~gs^2,w܊}`$z1ciCσ UNp  9kZG[˖} w#{}I}lǷV߰S1^*EʂM!Ftflwi,_[ˠ˾RRhJ©mDJ;(;<3.i@5aVs'~#)HpJH7crD!9$*Uت![65I3xe[|x3TaA-bPF|jY9M0s*},ԲC#Z1-%|=.{y L*( ](g,.lu7ˇ GEgyϢa؂9{0hX ^f ], 0I/]3p mElChr 2S%dm!*Q0*/Ν'7Ua};6>tgjᐂ?sqhu^X-)pt^vp"##[ qjs.-/GF6r%TFr6xGS8jkb_fO8潋i%-$l^Qmv\*מ{P5 |߻DJ2)I!VXzG0A꺡č^2a*5אA9(/6n|7ϞZ endstream endobj 453 0 obj << /Type /Page /Contents 454 0 R /Resources 452 0 R /MediaBox [0 0 612 792] /Parent 456 0 R /Annots [ 451 0 R ] >> endobj 451 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [376.133 268.329 398.589 279.168] /Subtype /Link /A << /S /GoTo /D (subsubsection.6.7.4) >> >> endobj 455 0 obj << /D [453 0 R /XYZ 72 720 null] >> endobj 130 0 obj << /D [453 0 R /XYZ 72 385.061 null] >> endobj 134 0 obj << /D [453 0 R /XYZ 72 255.403 null] >> endobj 452 0 obj << /Font << /F74 332 0 R /F73 331 0 R /F31 243 0 R /F8 249 0 R /F62 303 0 R /F11 337 0 R >> /ProcSet [ /PDF /Text ] >> endobj 460 0 obj << /Length 2313 /Filter /FlateDecode >> stream xڭYIsܸWtͩ5 C$UIU@Zi<%=x.rhz}ZEk]\-^8UqſoԲϞ?^/rRh뚈聉N)K3?2IwYDO8?3On12HT*hS.ѹLQ{ͫvc&;VKv;/)-[40ǎ_;ٝƻ$ܟ $wGy$s$gs@װE Y7: ڈ.us"fiDecsCEI[>f$)_A0ˬlȮ>/ 5+k c D6lzfm=Nmi {/Gvhj,7 ؏ZT |P7}1r kcEKq^W-?`UzKO|][(ɧk+PM<}Et]˕_b/,r0.UU^$F;6Qbw2kݴvDŽxGf#ߌpKv#E-un }.GטJ k% { 60g2ІkMvPn1nI*"D4hB0U;-^" #B:`%2X"/ yMU| 9f6RCHLjTaygy^Άjװ~q4M:fSK%J™6=3U٦5Қ- {q )H>/Hqo^wE'UB$Q鈆Ƕ.W*џ`qepvs\0MTF(#d?2T* N(QMYeb[>=hn{SU-K?}acEvckzO6pO3񁾪U60=w1ҙ-ڲjpzߍIM\[UIQN5oت*K*' =}IP`tBD$qIe vGJmxj,ҐEN(9ȣJ7j#4R'+lbcszČ {b{ R̺ ɼ] gd :-KM@~#fW:K2<u;]EqɅL`1zb'|Ȧ=jQ=tє9D4js0*L_kH777L͒1TMt s1aqQvꃹ,, 06=)Wm[XW>gTz\6)9pw)m(]i6;鰪K= l< YP#p_qpI1Q{I6!\鱻tX[z[bv endstream endobj 459 0 obj << /Type /Page /Contents 460 0 R /Resources 458 0 R /MediaBox [0 0 612 792] /Parent 456 0 R >> endobj 461 0 obj << /D [459 0 R /XYZ 72 720 null] >> endobj 462 0 obj << /D [459 0 R /XYZ 72 227.652 null] >> endobj 458 0 obj << /Font << /F74 332 0 R /F31 243 0 R /F8 249 0 R /F62 303 0 R >> /ProcSet [ /PDF /Text ] >> endobj 465 0 obj << /Length 2090 /Filter /FlateDecode >> stream xYY7 ~ϯ0҇m蘳m 4I@4ٷx d_+9@ч(#{WZԅ.f'gRJ%4d=s~P~4^-472WШy7hlNK][xn(N~{lx(|&qt^[aNmVg|P} 9W:so+SokYr~9lD^Pzg*JeL)Qϖ(,u)* Ja;|TJg痠p9|+mE(k}聕l w¸NK'!nwԺڣ4Z] S)BW34H:s=7ur㿟sRmlyd:ECے9ĭHP *c^E^{#I$- $»*ɥ+Xzp ]-]b!+ڄS~ְH- SBZqy !\|F#hSq̴]!f; }žz Bu W=j.]N[Nib'TR0 lͮ=% sc$ẂŚ%w0{[SY13MwM- nϰQG6QWRXP.rڧkll,Pg6\44W>Z@Az8079"!XWd1Ffcb41@wӐR ^Bo3ݵl*L킇؎!4A4VҀ)˜ O#]y"ަ͑ɶ]+$^ @eDP0*xV^єX̿9A ?Ņз D߇iE=ޑ4FP#}1̣3fX^'}\wO0zPjK.84= [G7d^jЇ).EdVΖ$}.ߌ8' Wty䯐Al͂ǑqX]8C>=7ݿuts]@)Ҥ5mmfOIdmZ[Ⱦc:\!)E nIWGqa|ꆑ,9e rpܧ\>ed +B,oN>Ηh(*t?]մ{F^rb50ȚYۇхPR`2Sra?][KQΠ)Ar#16kB ȢNFLM]*!dsoryۑUCWm 3n+,ce s4e*wOn_EQN Ai"+VÙQV6ǫ Xv8o)vp]Q{%1<\S`f+S 5]%c ې}ʅ|lWIjuʮH^2眿Lˌݳc 6ӕ2)EUTwk7b*|<2mzZeсNQ% %0YDed3'g4S`X)RrEҚ$dveRR`% g4J,a s5D&&'yvrۖ3(tA';g\5f+QcjN}-9xNx-ѷO1QcX1)\\SXK!S1L9>W;jRy&cѯq,S+HR2{j)ٔY=1h+YՔGRBƒ"ٴb@wa Dfc*Q5Elj|Y0[\ʂYDαIR^q`rL'VuzdFѲmIzvcCfÉvz2:|Am~O6>otWEmXg3BC 81BCꉁ!5y!9F[yhĚƛs E_I讼gڤ> ,Kvy:VfsV c|fm·~0[.]k!U=[#4[?kF endstream endobj 464 0 obj << /Type /Page /Contents 465 0 R /Resources 463 0 R /MediaBox [0 0 612 792] /Parent 456 0 R /Annots [ 457 0 R ] >> endobj 457 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [498.484 706.55 520.94 718.411] /Subtype /Link /A << /S /GoTo /D (subsubsection.6.7.2) >> >> endobj 466 0 obj << /D [464 0 R /XYZ 72 720 null] >> endobj 138 0 obj << /D [464 0 R /XYZ 72 693.624 null] >> endobj 463 0 obj << /Font << /F8 249 0 R /F62 303 0 R /F31 243 0 R /F14 366 0 R /F73 331 0 R /F74 332 0 R >> /ProcSet [ /PDF /Text ] >> endobj 470 0 obj << /Length 1670 /Filter /FlateDecode >> stream xYIs6Wh p=ML:nM4%ٜjI%:/[>.ۇ{ ^/z'2*3YgYEJrG\mmضVmaYnfRQD0~*Nr7})Dm;0v8EX48zn-:.@P9N%,LGT&ݼ xg ΐטw [;aVL,f"zZG7?̄N|y=|(1}!z`blo'JU͞nZY^Y͢칂< ehqLY! hCW+=ڹ E_cъefsI8eeZA$2hCp(1mcx2_mXWTNq)=fH[igGKbNSh:Ej+,I] rgoen#Sr u:n: ,P_tk^>w7:B?g4gщ)B)ЩX õՒ_Bv́Q\ ;J+VM}&rd3e93(׮jH6!砈H&u^r&3~DszlS_V(Ń\Z"[Zuh:E~O?Ϊ}t$WGݣDVz2Qhk? ;!ӊQ[hlS KS L&ݚ'?YQ*9Z|p5&Q*SCu˲+!D5 a ՉKQ}qq(&COhR>RJ9]GjGf-|D8gy4 Q9FAc.jCc>|sd]`;ut|4p= *Cs^Ou02ѽF-|e$24u硃u?Q |,uڻ&'jubU¤27T߳Ʀ endstream endobj 469 0 obj << /Type /Page /Contents 470 0 R /Resources 468 0 R /MediaBox [0 0 612 792] /Parent 456 0 R /Annots [ 467 0 R ] >> endobj 467 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [288.684 530.568 303.399 541.407] /Subtype /Link /A << /S /GoTo /D (subsection.6.4) >> >> endobj 471 0 obj << /D [469 0 R /XYZ 72 720 null] >> endobj 472 0 obj << /D [469 0 R /XYZ 72 562.396 null] >> endobj 142 0 obj << /D [469 0 R /XYZ 72 493.732 null] >> endobj 468 0 obj << /Font << /F74 332 0 R /F31 243 0 R /F8 249 0 R /F62 303 0 R /F73 331 0 R >> /ProcSet [ /PDF /Text ] >> endobj 478 0 obj << /Length 2998 /Filter /FlateDecode >> stream xڭZI6W^bHk`{IدjID-cJEoW(%v" _/߿+҇*r?< P$qi8᷃_#;癱4]4^^ekyKA;:j2Qhpo6[+y&<̍E/^ɾӥ /~'qZeD%SFȯګ \rBY*LDU4fJI:H7KC^O{3d0Bޥ0Zbh;W}t±Zwsg» yȧ͢2wb%B_.lPKkF`78oc"9VTgPkC$i8#NLT ˷ 4V4z(d. C-қٵbP$plĨ=QaR^aNX"8>sPݿXK eK>RCy9ͭ[kέh.!e#H+4VvЖ2}nKK#F"1ES07Pb<]ːac SI⊋zJ wb SUԝj \i;5eXvǖъ) _V% (v\SpFK'BEZYnxң#MˌZ.pA@s[)p~jw !nHՍgK`bښ8ô/7kAV#I7KM_pA!WR{?:6;%var> bHy%&] ,ɚD1 cYrKg:'$ieNxHk6yCu?KI8X%'>pũh.ҨJӉ>q:?µʅQ2op't,Uwbg,?d>;i kWgÏ\ȡ cl8O g5-e"2[LwnRIu ^-Ŭ+x?|YM<0I{U<0@ϧG /˙;k\^N7UvZ֧";<%S% 2HDw|>M=ÛC-ҥ|<5o$W_g-o%Յ!^w M# 3tvՋ'b-F_5|Q,ބ1U'ü0QK>n*{T# endstream endobj 477 0 obj << /Type /Page /Contents 478 0 R /Resources 476 0 R /MediaBox [0 0 612 792] /Parent 456 0 R /Annots [ 473 0 R 474 0 R 475 0 R ] >> endobj 473 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[0 1 0] /Rect [515.893 353.173 522.867 361.582] /Subtype /Link /A << /S /GoTo /D (cite.Stram\040et\040al.\0402003) >> >> endobj 474 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[0 1 0] /Rect [227.604 293.398 234.578 301.806] /Subtype /Link /A << /S /GoTo /D (cite.Stram\040et\040al.\0402003) >> >> endobj 475 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[0 1 0] /Rect [347.772 293.398 354.746 301.806] /Subtype /Link /A << /S /GoTo /D (cite.Epstein\040and\040Satten\0402003) >> >> endobj 479 0 obj << /D [477 0 R /XYZ 72 720 null] >> endobj 480 0 obj << /D [477 0 R /XYZ 72 478.71 null] >> endobj 146 0 obj << /D [477 0 R /XYZ 72 277.981 null] >> endobj 150 0 obj << /D [477 0 R /XYZ 72 198.414 null] >> endobj 476 0 obj << /Font << /F74 332 0 R /F31 243 0 R /F8 249 0 R /F62 303 0 R /F57 302 0 R >> /ProcSet [ /PDF /Text ] >> endobj 486 0 obj << /Length 2527 /Filter /FlateDecode >> stream xZIsWCȊc6,T/q^\TlfD$dz!ݽ`ZJr:M}qu.Ilrz4IM>ZNf35Mr5+e^v3xǷ ~;{3BO^sX/pLqW*t UwȠA28":{!1b WH)FN'-E邵7 ɧwU[RUs?sO!UQ{vgw|-b<:y$%fiG%%}-%J6kmPkĭQ.u2<5v9uV'ftRKQ1p|3+hlx]43^HuR2H$+*Jq\åAlݴY Vx) Պ^MlILZӵ$i{]dk~faqC-^ fCh F U dpWgWi#W\q<-2v+K1ƮTs8)L6;KzCxp`D4QdJ6<*M<ݒnm_*T Qӊ?aT*Yz #"ۆ7-;Rr!Z,Ń=OpsJ.\I׹55=Z:&.5>ދ Meٌ9i[-z#ʯq)Z/vuDMi>qM &SGZhU& |wL'I݋I|WXwZĺ(eѢ`4fr 5SI@v:eK[. /] FDP]ȁ5{ Ӄ@{X8s]i^dɜUz*\lq& ׿<K>P^,+\K7@<#uN}>GǢHʘswuvZ5\ss3* $Ru}hxu6^1Su>G^Op RcB|Q.b<:X*T T^:_:ԉCeDZV2bPE ˽?Sӵ4񆼜^Vt[hOET#W K@І3U+x,&_X$nyp󨈁[VUK%`o >D*M++_5 IP9ˤ iu~t1vIrMy#V\QhኩRյ!) t[炥ǸutM؍9yc8 f:Rl>R| !h#*&`Zups3ΪbFЁ@|];&o9k6@ȟzG c:C;ú[IVCB@d:$ ExxW瞙8` X< <1fհVT6 "r0Zn_ҩ {{Cnj׮mPdaz~dLKSFw$rOqkp$ e |ضGK myqZʉL䳑DV6JF;BXEߴ,޵pWbpv!~9aU"Wj@6Vrwe]1E&1"oEߟ=%7"RB⛄t 3Mp 6O軷Y{'));SI/CINpe g!}`}6yƤP{{=;k!;> =+V>SkiB }6<ڕ^Y x3Q8^sPo:M (E:o:*<_N'8cqE3{猋6 7^>\?@:"z_ܜ7pGMKGsPl:L崮?6s֢+iMYgR3fȜ`yޟ8rc(-i65=O;t\,JPbق}-;~,r#]Dy \r^]ԉ̽ ϡxFT245Ӟ5ұ!:ryٴYo ,ʄ{ךϺ3eii e݁7-tCг;#w⊃yp lWBOh4GHD7ԺN>^g@/$b.1ۀuO,o;T_2'O%#ub1ui> endobj 483 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [354.923 492.922 369.637 503.761] /Subtype /Link /A << /S /GoTo /D (subsection.5.8) >> >> endobj 487 0 obj << /D [485 0 R /XYZ 72 720 null] >> endobj 154 0 obj << /D [485 0 R /XYZ 72 720 null] >> endobj 484 0 obj << /Font << /F57 302 0 R /F62 303 0 R /F8 249 0 R /F11 337 0 R /F73 331 0 R /F64 326 0 R /F74 332 0 R >> /ProcSet [ /PDF /Text ] >> endobj 490 0 obj << /Length 1772 /Filter /FlateDecode >> stream xYK60tESIR oI^ʛė΋Ȗh$r83C|rU2/x0Y `g`r1x?G _B[A]ACo/mF(40> !ӈl!Roc7!xh+CDƦ.uJ#jՃf"h)lF'Kq`0kjBd~iil3x͠%"a IyqD*&ǙMq!dcE[fƪ_uCBAu恭v @{( (b\ZF/]VJòMN)E vëV(0V1W;#DOyi,6.sKS|prb!cA)fo=gI?im{x@ٵZE:Y5OVy-z <33&J%G&Աm9ɶJvxZv*"Dm%Pdʶu@n+6ueݰ|KZ~|7'tZ k-EDO'-z/;'+$d(",LQWQN 3!%)@zncC$MR3Jnm /HFpV.4OVǤM%Oj sElGA#a$=65K#8+\嶶$xz}%I]n,W!R1e'G|]]RGE[ϲyiލ@7Ǿ?|W94żG__%p>cR|8#$o"GEn>2 sq2AUSn,<䐮s7cnՌ]8Wn\NF) X[?_캠́(aI$J0. ֍1F%b< ߧ_"8KSGYSv9oQzyuCVU9 4ׄ=cV H_ n}Ι"T/ `$Ս &x0WB;d.!͆,;,֦0q.>9s<>x_%8Z ˊES%9Ȣ{`(|3aeֶN/`!ap֍v*CxKLXuSf*fDO)`vwLyc_=V3Jq{6HaS\LW~)cdӔzh._<7e1)xfԅI7ˡkq9Z["[uYJu!BSamO8 eϼMU(K!7 qƳqAX8QRѻURp-rw9P"ܮSs AXVβjM9=b!h/ۯ@(^(l?WUP,z(W8 պƩ?xkJ1*-ܺ/.-io#^k8D\'u?:e[D\Э[sbg~v{ѩ[Ym Hvn|‚>^8n~$[]H%i.6v FzO MX*-w owdPp›?L|џ>#_7do^ãe:kBKt9(uc৞AdK69\ endstream endobj 489 0 obj << /Type /Page /Contents 490 0 R /Resources 488 0 R /MediaBox [0 0 612 792] /Parent 492 0 R >> endobj 491 0 obj << /D [489 0 R /XYZ 72 720 null] >> endobj 158 0 obj << /D [489 0 R /XYZ 72 466.755 null] >> endobj 488 0 obj << /Font << /F74 332 0 R /F57 302 0 R /F8 249 0 R /F62 303 0 R /F73 331 0 R >> /ProcSet [ /PDF /Text ] >> endobj 497 0 obj << /Length 2480 /Filter /FlateDecode >> stream xڭYIsWHM a40Į8UIU-G.Y. ,S:):⼜X)˩|dq+WT >D"4,Z\vûeB#)M4zBSR0g*X γ҉L1OW}TeMC$^" MMSB6TE]q&cIg"l ҩ,,䗔" T#mSy]WV ~O"1ȪM780/QN0љ,TItt?RMw9Rȳ Zt[ T⃹@Gw@&:U(Cl].`X͔/pf5,/9f_OLH~->!U!zá?,i&?]908 %wM [.2T(?%jT/(3oY[@#j$_d#= lVq1e~mˬ6! \0d^p>A3](vZD74ه\[̕ujAi$7v9Zl/ks6%.+*GWHaB[k)SPs9Nni Fwa&z6,2 ւ73iH}>{F_h --Qs{_]IՅG3v_;,h|CQ&工CvEH%"&W]C? .d0pf ~bAq~q瀽1!6 ʩrݬ.bݘ*qtV;; PtT:<3ݽ(Aa(}810%,3ouC%])WI9wyTᲢy>bʌ }P1sbGLj 0|#_~FXblw [8Mp7[&ʼG׿JA a;Ms]7ϻ}|-xqyL`ךCeVP!KPx5:}vwܦ`!XCƜYF> V+Nz'G4$9lG+ZRm{̵'ȧw38o̸^pM =q1w1?\\V=t@mM{)Vd@oX?}NV,շ1N{bi1v"[5ڷS#w8O @47 ȩvэAVPmaj+W> endobj 493 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [312.135 219.734 326.85 230.573] /Subtype /Link /A << /S /GoTo /D (subsection.2.4) >> >> endobj 494 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [298.102 163.52 312.817 174.359] /Subtype /Link /A << /S /GoTo /D (subsection.5.7) >> >> endobj 498 0 obj << /D [496 0 R /XYZ 72 720 null] >> endobj 499 0 obj << /D [496 0 R /XYZ 72 311.338 null] >> endobj 162 0 obj << /D [496 0 R /XYZ 72 194.852 null] >> endobj 495 0 obj << /Font << /F74 332 0 R /F31 243 0 R /F8 249 0 R /F62 303 0 R /F57 302 0 R >> /ProcSet [ /PDF /Text ] >> endobj 502 0 obj << /Length 1907 /Filter /FlateDecode >> stream xYKs6Wh2=PiAi;ifCMQǖ芲\ۋ.%EhbowErtI>)"Ut1$":'FSm*n*jmz:YK(*قV;>$2;JM &Vu_)[0c[-~s, %~rsaәItH/pD&!+/IQ}չZӟ'b22.A6wnLI^Mg* @/H emG:I Ecm:[2vf+xu6ނGz Ce;/U\W;O\<-bc<_^9~1&*6_Y^.G!2e*]l1[ ! Mf ћiڨ~[rY:*:o ޻ECZǯ| 8얔Qa-f_ n&歌^Jfj&=z6iTrT0[G^6Z])mUI{Ge|aݺ!dW8>0i/sn)\Xtn<3eKz{9.qnZJ\׭/Ȓsg~*2X菩Tj̱1U$( xj3>ڢ\qqyy?V \u{39J t 6}[O~cwKXF6t"b 8Y ;Nߐ{n+.dE7njߋ:v>_dmQ`/%%Zҝ~%mƑ/mK\=>>badiGNHV$yNGQAYC\r}5?Z)aێ1/;/K:폒K$sڻE6ӻ"srkS0! 4VSw|*n"1-bFg>)Ul黯!Yqm!Z8`[b'{j'~[/{wD}Wʱh7ddh x5ֲq gqAUtLoTuY7}$2doC4B_:Y`j[9Q7W8ii9ҵJ7C1MQ5,enl&M& 2S3cke4uy؂^Is7_SᶆeRGlax&$q-+fJd.oB=;JߟRbITNWLtjS0Ma2F.,e4烍gS !BKdf!aXOyz욥e('k=8ra1{03c:Z:QWֽ&tMyw{_@pnY/w,T{v{r~gǼ#1*(>vwڗĎ͉7!x~Ĝ^=pR*a V:#'nPhyTD`e1} U_7vo؆9(VwaD8Oi~7rL"ODN\FGh혮Geט6H5CԈ%,$E&q5o;;> endobj 503 0 obj << /D [501 0 R /XYZ 72 720 null] >> endobj 500 0 obj << /Font << /F8 249 0 R /F62 303 0 R /F73 331 0 R /F74 332 0 R >> /ProcSet [ /PDF /Text ] >> endobj 506 0 obj << /Length 1418 /Filter /FlateDecode >> stream xXKo7WAm%ES>hdie ,R^3$+Q\@{k'G_r` L-I=ooF|h\ 9\ҶmmMm`ֶ3w_vW]%vgmF'?Y%c Uv= p]m[;Z&`gM60e>݌1ۏ7φf)mY5U FV .67i~=%20Xm<ڱR 5.z) mj$j/qYhwԓnv^r:uΡYƑ5.@޻vx|}6NjI)-q.!Z xu /`ᮣRx+#+YwKUv8D6 8, ƚuhAS6)UN,b):>Ƌ Z䪰'&/YdJr~DZuLŢS?fk'v…o k{$aE[M]dEvBp񒄡k_/9(E g2BO<2? Y[Om3g)(s4rme ZsҮV,T~pX'aTJun##&Q%ki1JܘjQΘN\8+[p.G5Wqm) nPɻ363ƞZE,; ڂ<q]LcJ6г'GA0/9#̱hNThC++QkF8T|cEa.T JAIp xu.U]W=$ qW~+/[X(6$ģ<Ϝ\'"̫h.T璦C$4'Splb^AՈǔ?f-5NcAx$RRx2<i'8Fw;w#An`̪%qIċ/òC"ZSpb=eT{d=zKu.)76M45[xjr8 f^ endstream endobj 505 0 obj << /Type /Page /Contents 506 0 R /Resources 504 0 R /MediaBox [0 0 612 792] /Parent 492 0 R >> endobj 507 0 obj << /D [505 0 R /XYZ 72 720 null] >> endobj 504 0 obj << /Font << /F73 331 0 R /F74 332 0 R /F8 249 0 R /F62 303 0 R >> /ProcSet [ /PDF /Text ] >> endobj 510 0 obj << /Length 2149 /Filter /FlateDecode >> stream xYIoFWMTjҤEZ !́hK];oŊCz 8[g?'2,3NG* 8F jͳ1Oh[g}eJs8FmNuc(qi[bU韣h4Q*,~c$@<34`[2ߙwL_70}a@g ob3UaF$$2i.̳0W,_|͒&,ڑ4ɀ4J|"Z;Ӽ3 2a\JC&8x !T2akn`*tF2-x$ Ul[4p[Y%C-ZKd0.XWwF'N7XF`Yu6Kޢժf;_i'$`^s39L"wD({11y]7Ox\dd@Jf` lvhT{v ;j4Q3Fw ?Mm6Xyd:*Ie Ăst}K:t(ʴ̒MIp*mk`/8͂Km'd(DI˾0:3N)Tn 4q9Uqmn\8ɞؙW.O>+gdmPNv忇{d 5);%EibO?Ou<6J$܏_\ K4to&qcbQXnx Ka^H;Өy [xud0biqXra->^Z2,hq;Klq/~zɜŴ.VI*,P!6 B;^zO{ۮ/o?KbB>@EV[A,Q-0O%f!c> endobj 511 0 obj << /D [509 0 R /XYZ 72 720 null] >> endobj 166 0 obj << /D [509 0 R /XYZ 72 616.621 null] >> endobj 508 0 obj << /Font << /F74 332 0 R /F73 331 0 R /F57 302 0 R /F62 303 0 R /F8 249 0 R /F11 337 0 R >> /ProcSet [ /PDF /Text ] >> endobj 514 0 obj << /Length 2841 /Filter /FlateDecode >> stream xڥYK۸WL%Җ%s+v%=9p$cv(y~ E=ɁGwu7O*/:dy(Ww}<<eag'h;x:xYu#<s\afdQ{hv-ld9"kZk#\-찺[եP3w _W;ۄOF `D{1 ^1L9hiE=ȻE^ԇt9&%Smljҍ}oĉMxo4kydߖxW뚷$e :/mX.Y?RW_yufcL1"@o' jaQzeVS=%;Z j EU ¬{xl֗gB N`3vXKv੭$IM$SOoC8#WbPNXhOh8{9V@ ~X-x$kG\@끹l?0Hn98-Q[q+ Qp;Y.E.[^A ۆJB{':Um8Qh TmTXK]jaq<֙MĄi?|\1+j(#q<;>`תBw4Q)&zyT{0dUa x,ab://F4DX{i{2s5,,\QӅd'4ϩЬ?Ϝ\ BV$zNere,k"0kgf,N?Λc-7r0!Z)!wv* Ya+Zct:1]C{Q*euOki!+#@hwK-0V$%.!zvND`s 0^I->`۵SuhL3 x01ai*zC uEc#!Nz ArInkPO" 6iÇ!=uVV `Ce Vٗye vڥQ!Z) 4Yb10-8$Wv$"Azx:i㴢=%a JDB\͒"A9hE)wCh=xR/–'KL#'Yu"Y:N80wk M{iTS RpI:vm1.K=gLc*%f\mhfy̦ytgȽHKe%.#ƨq!^d02G"NX lG1~TN#7v(PW;)TmQ3s) p"J3uc7IR#pv~?7_茾{[6{*Iq4>QDVz:sZBAƾS, Zsg/g0Ϛ; m5 L@fF8S&0%ft9}A'I[ Uf){u ᰟ̘E#ͩ'QVnUjAJ.hMs~@j84.D վ#jb 5Zǯ9 zUt/o:AlYi_WS׬'[(2-`QKp&0u;np`C|' !2Ww2x=`MS{^ڬt`WݏFJa$UTߔ":)4IB(i&o\LbeW1pk> endobj 515 0 obj << /D [513 0 R /XYZ 72 720 null] >> endobj 516 0 obj << /D [513 0 R /XYZ 72 538.682 null] >> endobj 170 0 obj << /D [513 0 R /XYZ 72 445.233 null] >> endobj 174 0 obj << /D [513 0 R /XYZ 72 367.855 null] >> endobj 178 0 obj << /D [513 0 R /XYZ 72 226.159 null] >> endobj 182 0 obj << /D [513 0 R /XYZ 72 146.172 null] >> endobj 512 0 obj << /Font << /F74 332 0 R /F31 243 0 R /F8 249 0 R /F62 303 0 R /F76 338 0 R >> /ProcSet [ /PDF /Text ] >> endobj 519 0 obj << /Length 2482 /Filter /FlateDecode >> stream x׎}b)`e&6p6n6 |IJ76׻RMhbCuUuo}ܴy[7*7뛟bY?V'K[Wٿ6&[ÏO7,uF+3voyh6[:B{Ɵ"gI2𹃦luHP ~a@b;n |Un=猍 ~hۿ7K,p7ch :s\^p4am.Ex,3ǣ}/3?/b|b`h MN) !~G6!+Î$C;" }e`,%F`c>)18\1&ckUfED)k᳄*dT/i&8K]er\3П90:)B_ r0 w<,gw0qX[aBTjLvc> ڙٖNb)cÞkdNbEђĖA I4)oZ8t$cz+'R{esDӄo7\WsТ1!JߠTU$bs7ET;N*6Ii#Xl!zseS_%*h#nfvvINa0+ vq+e˄HzҜi#[>H9n(iLcftՃOKtŌc#3F( BAl-LҗBH,B BADS5")Ě$oA(2*z)± epcf R j&a8TϏ53Zg>|4٥ſ@Rf0noSٚ\0'kwtU}x1&E0OSFh+9oi?v9ƒg.I"j&*be;[pc5,있EDhKWx[+-([2OL=M{}W2I0L?,@~Z5F`_JlؕM0-K"{/%)(`Hx"D96pPK3SKgQA;~}HZ,$"E`{ 76Npu pEZD,<6ON4:iJ0yr;x+F:Ҟo ` z!qV JE}ǘq^6 iEztAqG8rjX66oZsm$YʚIHHxW5F!50a˨2UnQjUDЩ/Rа{569;5"(;( `߇n\^ ?` 5sYRtcڢ a 8&4cc{C1`n۲9۔ o#` !g{tOᦳ+|Ue(M6Ѝl<|t*leKj!%qsJ]xpCNB7"O8@c@xZp9U-f1Ȱ Ux endstream endobj 518 0 obj << /Type /Page /Contents 519 0 R /Resources 517 0 R /MediaBox [0 0 612 792] /Parent 521 0 R >> endobj 520 0 obj << /D [518 0 R /XYZ 72 720 null] >> endobj 186 0 obj << /D [518 0 R /XYZ 72 287.427 null] >> endobj 517 0 obj << /Font << /F8 249 0 R /F73 331 0 R /F74 332 0 R /F31 243 0 R /F62 303 0 R >> /ProcSet [ /PDF /Text ] >> endobj 525 0 obj << /Length 2241 /Filter /FlateDecode >> stream xXIϯɰ\ b F.x,J3nY=ݝv#JŪWoRŧRUad1*4ZiW&d$x ~qNx_a"7fDNOc[&CGx蕶|2I&Sx7 cLjٔZq ,q]1Y2@#CN]M f%`64sҖ7l8=EFZ"ƨ*Yl5Ns'_GlXya$R^}k+xLg"[#LU2Er'~x$$hPC˄! G& ? Gl.!& }@ #1Eu(N8V)XY 3\oy^ %6i !!yMFܺސ ċ4g1ē׼o֢ ĘW!9yQx#%-ܓ@E{)7&?:v6"DJUdJRDMQ8[N sSԌ@!E)g-?dqk\O`b+$!DB+ >\b\zA6"ބ),FA8Ֆa୩S,܅D2{ x8pxfg)@ -cd2Ѹ`9R:_ Vh0..<>! J`ڊ ژ疐dfejrOS\&xN'+j3sH'wݒ9P^1$ЧG^ &rB{j/pkdW~z(o45YB2ڥxI`}wXvJRI: K-F^&!> ߴH% eD=Ix.> ]ֻx< $pC/w$7SP8x 6]'_Uw@KvEsl*\?y͊.h$"u*/]QL}!T ́ >'mꊼ=d$‚0"zLK OALFS ~}'K|K z7:GT1|qhiz-ႇ[>'wԾO:V3>g=(4CEhI{Jcf hȂwĠ8 ѽ E׼XF$tw3̯V _~~d 8a i]|#E4z&=*r :ധ@gS~J=t轂4= &bPD <37:+a.5yiZ!݋U=r*vD/TJ3ge)@%ӋPj8Hm$63u'~ vy+remLʿY2>Jv +{3xt>fpXOiTYDvrLl1{UOB{f晡>53Veٞ=CC&$\8O?Fq},/Բ-K1ܲq|er %kZB.bFB-{=c.VWK??kD^z~:GW#@ endstream endobj 524 0 obj << /Type /Page /Contents 525 0 R /Resources 523 0 R /MediaBox [0 0 612 792] /Parent 521 0 R /Annots [ 522 0 R ] >> endobj 522 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[0 1 0] /Rect [425.285 625.355 437.24 633.763] /Subtype /Link /A << /S /GoTo /D (cite.McCullaghNelder) >> >> endobj 526 0 obj << /D [524 0 R /XYZ 72 720 null] >> endobj 523 0 obj << /Font << /F8 249 0 R /F62 303 0 R /F11 337 0 R /F7 375 0 R /F14 366 0 R /F73 331 0 R /F74 332 0 R >> /ProcSet [ /PDF /Text ] >> endobj 530 0 obj << /Length 3128 /Filter /FlateDecode >> stream xZIo$WȥdLŭ# 0!@fIVkA/rwk%=o#UjYO>V>>~䫫/zSV.n/jsQRG/\j(뢹\JOWϫ?^ U=O`Fd*ujcuaiK4{ځ?.;%̱ed'dq>k t+aIY KLWX@wа=|;)"VZx-˿.EGMsUSZH~Iu^voH3ҥy9=m3>gRmc?[1۟.kNN3ə^Ud32w/'lƆRٟY +ƦXudQNۋ5x^WqZnV ƺemX;MWhxҫ; Z͆k/#EOj,X 9l cx~Z$pD;]xA[ݒ)oC;;;bXֳ uk]VÆk \hZ,V+ `AhoKkbonяE[?d+bUJ8\ጤ. Wq:qD:Mx5uEse?WފMʲ?&EjYN`ˊ{.tyad#ȫ/CgN(o @#%&x`N&86/t~ڄ@ѫV5zhmrfً+1(.C~\J^+0HŜ!Ez2]vfYOB=a=Րaa9Y2>Qt;Izy`k,$!8#}%W򴃥T{UB¥Ty je$!U>;nΏ~/>!ɹd;x&&"Lyg2bw- )>Cҗg) թӮ0~B{& 9u2e{ý mEGFM2Ɉ[+bNʷ )@??OD:uB7Soc'n>+d|=̱t1(T e3փe SM03"K@[tP L30<,HRx>SYŖ!(N0Ղ&N=@)R)pmE(c dNTUBKk9SZWiW9\.]u컄;þ~Uޕ>mPˑiG>e:~s|s)#[R@F*/S%BR 7mY(eDx7Пz~Xj躏B⇀⸹_3O.&1NL +G1ƫ`>Ռ`g1ف=/OS\>39_y&s|0ID#wN")VE;`M%LJu\^3L)2xJjJu+eDo)e&bɂ H1 4{`<([{ÚҘ#7v^3p)qM.x>]?-36P%d%VtBnǓdptIxdY `b5'j9U:`g%nf,cJ?tRQަJq%!!w PXrk@NN+]Gp+& |xa1#xO(#7=2OSjٔJW(mOuVU:fSKY '!,Q*2U;2ܛƱ0?Li9G̛'#Ux[AtbU]7ES'LCށC$+q@ߎuh%Q;[hB) |IC*Hʫ(q ~y."mpxl3&;$QtXvQ~wJsȕ3y2R*#*Ag;v*qʁ+&ށq*BMmiDkDjMAg]CR}MUi0}@"QƁԊ9zٙBZ'R.b H>PGTU!D5Ǎ [3CSfqrj?ߟ 0 Aw7#Wopy=@*L]`؝~y8*2 WA T$Om!Y1q +760\xS\ D//݃1z_\'Dy2u9D"Q%f #\ۤ{ywb4[^] ˕lCkeo&ҫvk^}& {/Q8j;Ý2ܠDSgEp Z|۰=< 0m gp_2sMu|˴/ @V`373 ٙe ^U6L {v;{Pd & M=zϾ6vM38i=sL N5nʦ|W@! k;"Jpt"b(?pRބA\J?|srK -> Gx` S8}oʁ@L"Z4;NFLhfxMpebqC?*e.9S0dU]F!L;nGBycr|ؠAT );?p8 O}:s57\ Y=SWUU6]S1-VD]`Xrm/[mMb-79erʍr 8`JH|. EAJ!lj3#LN6%b c3"2G xnz?m0 7۱Kvf H~ه;jX"Qi˥w 3NU g4Z.Fk۾x}/ endstream endobj 529 0 obj << /Type /Page /Contents 530 0 R /Resources 528 0 R /MediaBox [0 0 612 792] /Parent 521 0 R >> endobj 531 0 obj << /D [529 0 R /XYZ 72 720 null] >> endobj 190 0 obj << /D [529 0 R /XYZ 72 645.685 null] >> endobj 194 0 obj << /D [529 0 R /XYZ 72 581.018 null] >> endobj 532 0 obj << /D [529 0 R /XYZ 72 310.083 null] >> endobj 198 0 obj << /D [529 0 R /XYZ 72 192.06 null] >> endobj 528 0 obj << /Font << /F74 332 0 R /F31 243 0 R /F8 249 0 R /F76 338 0 R /F62 303 0 R /F73 331 0 R /F11 337 0 R /F7 375 0 R >> /ProcSet [ /PDF /Text ] >> endobj 535 0 obj << /Length 1502 /Filter /FlateDecode >> stream xZYo6~ϯ0zN[i5HJ@SI7=Z4g&:b}y D*v dr|~TI[bDAUV\M?g0O?w?s=r{[ݽmۍi6ŝNCn{{,Y \j3_36?I5)Vtbw߸ { ,nΎ%ˠ ^uwQ]G/[.WY CK+:Lwy]}Fx+#v|1 y*"Xo#o}T.qۍ[~g >,U5oaS1xԂᘡazxGCfҦ!Ӄy9.Rϧ5k ۾=o3pJMÏt7$ѼAS_X"6rovVQid5N4 V$U$YuX؃dQARr2(rTO'hU\nʺ$cE>V"_jEE VMӃ` 5J~9e#ڻdEk?%{,ql pQfJr9'RX/8} XnY| aOk_v1gZ벶hpu*g|Os }4&*_ rVhv.%lڛ=gK nMQ)HIpL!7s`=LJGuHZ&+Mf~'aV{JH-ohDHWtZᤶm(PMi#цfjƒO<.x ((8P$jHaS 5?p9 C%hQLӚ WkH.poOrUX=kF*h *vHi Q-G=OaPhű6l<"o{hŨZqi"دH`%A:gCR@bTɑm"Bȫ]:ꋂK|Рbw,%2 -C/r -x4(%CsסLyL{q}ȁc=9 @mY36aM_(uZ_d9DBt$$yb٪(҇(_7Ed2E> endobj 536 0 obj << /D [534 0 R /XYZ 72 720 null] >> endobj 533 0 obj << /Font << /F73 331 0 R /F74 332 0 R /F8 249 0 R >> /ProcSet [ /PDF /Text ] >> endobj 539 0 obj << /Length 1678 /Filter /FlateDecode >> stream xڽXo6~_ajV)*@ab˱ $]GTN=0Gycf+0,g,f=4/|nKɕg`0lZGaMœ5 yNX=4s KV0옰I4kPA*lfX*^KiL!m- ʩj LԘOSC֧ݳl8K4K%a{pnd7, N\/r~F9n ƞDa0kr7QxqO䛳L帮MdmYQ#r{wG2m(7OΖHמ|X'6(+ZrMSxq,ݻY\'xj^=Ip`<$G pشE RL@m:g/DִOԁ'h m ["g"[=W`];"tθ2a}j:Jy`ʜɸѫo׀ 7CˡIעɜPҲ蹑c:%|="xȗX!;XQTf[y\+(^E{{c!JGÉNfx2< n>нbQټ Rq8`py Wk2:|)mHYe|]gC+V(?? yQ8Nj-q;ҖI1N'ϝhOsˆ'Kc?tWЋo 2̘rFk7t R7T6.7pj)3(/d7#+8ד酕ҿ쑦x1QQWk{=p|,/'7.V~R?®Ϡsɟ2,2 c 0>XفGU<"ɱ“IN x}F^w5; :%yݵgS]ΏsأkA'eI4Z6IUz %pDw1Yc3t5_ {.`Wp;}Jr$ +\'z7gy}Y9rgɠU$Aز9s6r}ا};?Z1oYC&eꊭUmAS$MK> endobj 540 0 obj << /D [538 0 R /XYZ 72 720 null] >> endobj 541 0 obj << /D [538 0 R /XYZ 72 376.624 null] >> endobj 537 0 obj << /Font << /F74 332 0 R /F73 331 0 R /F31 243 0 R /F8 249 0 R /F62 303 0 R /F64 326 0 R /F57 302 0 R >> /ProcSet [ /PDF /Text ] >> endobj 546 0 obj << /Length 3530 /Filter /FlateDecode >> stream xڭَ_1BF4ed؈I8z~HF$ _ E GUuUuUuwMօ.nV7Uޔ*K3S-o~I~d?~͔];k[%[l~ :TLc \_ EsK2y6?h?"iA<ꎓKzsh{%lwE0eHt(wP=;~ ^V #p9,|_7ses:ϙ~ǰgm+hWIlM7&@H Umyﰷ"23iY; #c=NEE<ΒǗِ 5Uaf. RGC{["Gر 3qB8 :60^N= jepHC =h&;ZO aߒ;yv +{Y}T[xW.I?EPghd%@Ao$@'o'[Ap/[n?+fBC|tl8Ahr\" nm<};w:iޟV|UU(8)9g9.&#3GWnZީ2}Xa.V't BGf_"-vF;"Sȶz^ ]U]t'5 $BS[OJ|6er{We50J;FugbHD<"|ʋauԸl<͕i%.B53ϋNl)nV8fa(Kdض#rG(60eӡI3p@D3FZu+;[:[5d\@SS)|Gh)B# _XƉ3P8GI7zOD YgAllV"p.T\U|H?!c񸉎 nCa8}6]$1aH[ 896k3B73suz|.gS!2Kzod#s>&z#>ю3(Jpڹ HVo~TYYN'сץ@'Dws;*KK]63 yNu;}Fa\;-2D^RwkG~|rȸsz!&%;Q`iq5vShMӀk%TԤ֖Kf*MAf/A(Jb=# [ܐiVxAtО!K6Vrq*{'Lf6D~YWX:@0A͏E'a*Ơ(T zÆK >9#m86+ wtZ(o)G xv!"q[.{1x $b .>MF6/LbåU!#%Uh5X)؋x{7WO!m Nغa5Gq-t-w{Cĭ:Gu5snZb=sn;0 _1 صy,Xp/{IT(DVuJ~{&K ,;~w~;vkczOW nF=K ?TV_Mu,"T^P޾~7=$N3wICſ`\{3f|,}'Y%!pĤJ̫W! }UkVzpV Au6 yV{xq*u}JX/"k$$ fK@ښR-0ty.cIlg-W5@R#@Xy9@#6h>RP+,$Z rf~] Ӏs_ z[atyZrH6gO]oeι&pb"?-!ԩVu"\KNPi ،z!n&%Iڏ \~~,V .40, TGi ( 9~&+Cfȍ@I6% bVqx2`/gL^VL2=1$ l>`*p)PrH;D^Duk90h P1R![PwG+3V$2֧/jyV]g*Q .sSi0P]rbq>Ai_ 5wuEYrwDw%qg7E^iҺLJN)ۣZ"w_AKKma#1$s.]bˬ̀t'/%#FϽ>4'%)SJdvd~w*"C5o_ ח18>pt\Їs6 ;5T%!EHț]>B"3t&(3(7jGuQ n.rVpUb X:¹V(LCSSp"l{&- a J{숟cT4*;EuBKGȸMȄ &ÔY"դKFhJgڠcOVQP%l[Wfw\Bĭ*w ?q F 4|6Y V著"zU^/ 0L}w8cJ>gD\$lȽWk %#q5&- ZIJۚ!* evbQğqE:Sq%j~ NoD8|Tb|& 7Q,;RX~$ =3;GyՓ6i3n M!~cu#n| S‡~:Kl`o# ?:%y|E4;(ٛ)%TxulM@ʁ>f3ee-Չg)$ UÊ)ͺJqڎ3OhlZC, ,z+Sp&`"u(v%Q* <שdFI_}m. endstream endobj 545 0 obj << /Type /Page /Contents 546 0 R /Resources 544 0 R /MediaBox [0 0 612 792] /Parent 521 0 R /Annots [ 542 0 R ] >> endobj 542 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [417.98 192.985 424.954 203.824] /Subtype /Link /A << /S /GoTo /D (figure.2) >> >> endobj 547 0 obj << /D [545 0 R /XYZ 72 720 null] >> endobj 202 0 obj << /D [545 0 R /XYZ 72 633.848 null] >> endobj 548 0 obj << /D [545 0 R /XYZ 72 307.149 null] >> endobj 206 0 obj << /D [545 0 R /XYZ 72 224.317 null] >> endobj 544 0 obj << /Font << /F8 249 0 R /F62 303 0 R /F31 243 0 R /F76 338 0 R /F73 331 0 R /F74 332 0 R /F57 302 0 R /F14 366 0 R /F11 337 0 R /F7 375 0 R /F10 432 0 R >> /ProcSet [ /PDF /Text ] >> endobj 552 0 obj << /Length 352 /Filter /FlateDecode >> stream xڕRN0+,qqv=v$ qnT R7؞PPEoׯ 7ӎUsk栔,X5e#>LߦjïomТp?E ~@51dN]61&1IY"[ɩp>m)&diw%_UR<4'Hp ?J*kd|$J=gK"n<׺&}/)pDcP p@/q.a:YfCqutLu'9'('<6$٧ 9}:lg |(0N(}ϑv_#y endstream endobj 551 0 obj << /Type /Page /Contents 552 0 R /Resources 550 0 R /MediaBox [0 0 612 792] /Parent 554 0 R >> endobj 543 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./manualHaploStats-plotSlide.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 555 0 R /BBox [0 0 432 432] /Resources << /ProcSet [ /PDF /Text ] /Font << /F2 556 0 R>> /ExtGState << >>/ColorSpace << /sRGB 557 0 R >>>> /Length 608 /Filter /FlateDecode >> stream xUn1 W>="ɡu_JZr`ݦ?fCGKpk|qFR '~j[CpşuC1ףYtinD%g-ZTXF ae;#_n>HN # Ozb z CD&5xBQNPFW7|ZF%.Xf&h=c9c8/҈(e'oҼe{=oZ|~XʛZ3L共T&8E:#cSD#lG &bDtK7CH endstream endobj 555 0 obj << /CreationDate (D:20160401105150) /ModDate (D:20160401105150) /Title (R Graphics Output) /Producer (R 3.2.0) /Creator (R) >> endobj 556 0 obj << /Type /Font /Subtype /Type1 /Name /F2 /BaseFont /Helvetica /Encoding 558 0 R >> endobj 557 0 obj [/ICCBased 559 0 R] endobj 558 0 obj << /Type /Encoding /BaseEncoding /WinAnsiEncoding /Differences [ 45/minus 96/quoteleft 144/dotlessi/grave/acute/circumflex/tilde/macron/breve/dotaccent/dieresis/.notdef/ring/cedilla/.notdef/hungarumlaut/ogonek/caron/space] >> endobj 559 0 obj << /Alternate /DeviceRGB /N 3 /Length 2596 /Filter /FlateDecode >> stream xwTSϽ7PkhRH H.*1 J"6DTpDQ2(C"QDqpId߼y͛~kg}ֺLX Xňg` lpBF|،l *?Y"1P\8=W%Oɘ4M0J"Y2Vs,[|e92<se'9`2&ctI@o|N6(.sSdl-c(2-yH_/XZ.$&\SM07#1ؙYrfYym";8980m-m(]v^DW~ emi]P`/u}q|^R,g+\Kk)/C_|Rax8t1C^7nfzDp 柇u$/ED˦L L[B@ٹЖX!@~(* {d+} G͋љς}WL$cGD2QZ4 E@@A(q`1D `'u46ptc48.`R0) @Rt CXCP%CBH@Rf[(t CQhz#0 Zl`O828.p|O×X ?:0FBx$ !i@ڐH[EE1PL ⢖V6QP>U(j MFkt,:.FW8c1L&ӎ9ƌaX: rbl1 {{{;}#tp8_\8"Ey.,X%%Gщ1-9ҀKl.oo/O$&'=JvMޞxǥ{=Vs\x ‰N柜>ucKz=s/ol|ϝ?y ^d]ps~:;/;]7|WpQoH!ɻVsnYs}ҽ~4] =>=:`;cܱ'?e~!ańD#G&}'/?^xI֓?+\wx20;5\ӯ_etWf^Qs-mw3+?~O~ endstream endobj 553 0 obj << /D [551 0 R /XYZ 72 720 null] >> endobj 549 0 obj << /D [551 0 R /XYZ 207.73 210.09 null] >> endobj 550 0 obj << /Font << /F73 331 0 R /F8 249 0 R >> /XObject << /Im2 543 0 R >> /ProcSet [ /PDF /Text ] >> endobj 563 0 obj << /Length 3022 /Filter /FlateDecode >> stream xZYo~_alJL77qEE}eH JO]}MO@궿{6VWJeFWwWyt0ny+ Txj[eZqz?{~"= )~Gǔ %+КOÿ[ .>mzi YG<xׯUYd_Uąbv8?Q{[T8[ȑ !Suy b*&T;6LI<^[ [5a*.$"8JU=_v[qYY׸F֖@t؂jQA.|+ڷ(AZ$ +K֢MQ rƮ=Q[?%zǿ'1OQ4POEa *w=ޝcwx<.ǬPLz^̔T$f7d(xݏ2\Qpb=2:atg0n3"aߣFϢZA# NO0'D?*}zb(ڵkLi*dڒ]a1^O9 K٤%| uu){&̰1ix}* Kc(}H`.$ $xU(h=)GP=/a;'X8hټe,깃sj}!0D̡B㉦dC mki\d{^jɊ:ʾ *#3f~L#vdD]팶in^_K Ns-sd5P='[UO#П``AS(MOv̦}[x@ twH$2qV2mwOC=.LM#3\TǮ ԔT z( ntdPԉ?K|ɨ m;+  7ʶ̃Lr+:$ORnc#Q tRHa>D'P9u sG"&鞹dʎ׭D@`vcVk+ݟt#j#3yw_Yc4OƄ9TlegQl8K'\;Dpp>Œ^|p2CFLDx֥)gJ4(#W m'j[&waT?K`;RwLי1)cX&q4F*lǁ  2H3E LRjS|Km4msEۃxEJ%WM YaЊcqW-v$GܺGIz~U2:X$"QXʒGz8CyS;m+ Gcɴ"MYn8_ďHJѰA  U8!}p]g*#;޸@Rj2ՠFy'x̢ D)h?c s僈*0D*{]B.MEK0}0ԥQp 'Q*?2ozؽT֚҃#_j\Qmv]wU8XY(`hDiydvNQp2:mmybXZS[GI[vߨiGg89+nocdzmdW7 qSo&=4xQZkoeRdgJ KYV]P/{}u/|piy*t[y*QydhSTED)w6R;eEgK~-;Ff'1 ,ObrAi+u,Չ{[iC,JDjE71?u:!rF2(+*Yeԏ+kK<"r|:3Vp7'zeitn,<|Ź3$Y֖3K0Ir*^lbr];xvCEC5stIL_ )&t06y>WO_o^JK{o%3NVԴ,*\^|9 B;d{|X.k4U̯e6eSl^+#=o(_g9Zځ2d::-(Gk]zqۧS^zqXvockݫviWaj'r+we^m@NEa-}rv(F"ׁK`Ja'"23u58Ȥk+ɉ5t hn'с,hOWöfg0ed2,1a7\i'J{qo/#oEhO ryikWX>uV_~\;Eҡ5^a$JNNlf+̸9|;*@0(hp4(pYۄ˫UWQw~P gxd kO +?!Ysz*t兆eؿ6z a_+[(¤gn۫!9&dNir>M.4YFzjH0t?T߱Jb7 "O& {={Oj!}L ۅ>C* +s@6uKd|7H! endstream endobj 562 0 obj << /Type /Page /Contents 563 0 R /Resources 561 0 R /MediaBox [0 0 612 792] /Parent 554 0 R /Annots [ 560 0 R ] >> endobj 560 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[0 1 0] /Rect [261.272 678.705 273.227 687.113] /Subtype /Link /A << /S /GoTo /D (cite.Cheng2005) >> >> endobj 564 0 obj << /D [562 0 R /XYZ 72 720 null] >> endobj 210 0 obj << /D [562 0 R /XYZ 72 720 null] >> endobj 561 0 obj << /Font << /F31 243 0 R /F76 338 0 R /F8 249 0 R /F62 303 0 R /F11 337 0 R /F73 331 0 R /F64 326 0 R /F74 332 0 R >> /ProcSet [ /PDF /Text ] >> endobj 572 0 obj << /Length 3227 /Filter /FlateDecode >> stream xڭn}B@@CoA6->d nhJKJu:3(A69sfon޼PEEZ,ne4Idf|e~_᷄Gdpӌ:wMߚ!S=ndS7;ﯖ&/M\vEƅKc: N6Uogݽe'h7g+7Ef-2 %㪬OyeVQm "90U |ʀ:6J?iݴ\GQ@ xQCKKt*)r$/Wy5$›k?p]6-K^RQQ4X Dk9PD骲5S'Hs Si.`R T7Pji4Ph,@> aqC8#G =2tk?02 |)Tq=ȺAB%x GE.l^F~" .xrOQü)4oAVrys:ƵNU) ȠqV499 M~s;"~BN[UH_Q=[БHH6FH=<ܒϱ0JޅBRVUsd3q Y <`yr&BawBa*V8ީ?)&̣E 0fdކ| tw i|1($ Y; OjZD,Nf<`ϋagqPףD8#. 7Kp:sC>7{~٪w3ߟfn+~^m^Wj ZoApCJ,5@+HCx6>#M_ebS`I^=(f4gBf%z)43uG#!ѓνR,MgeQ?2@$}Agi~uň ۞uYA(=né"yH*N9Gif8q96m#]ݞBˠf/93 rB$xĤL7ⅩK汵hͲ8 uJaF9yp"30B8tcfLwG 6k1Ԅ J漙t w9 ʾH>xNv0t%{V^bϧ:b9 N_V{&Ě\bMH *qFo3Ɠ4=|{ly@=<*?@;fwyDA%$v6[pW {P4ޣ^)?sVٻi\$:?L,vt{#2Z͂X\Ҍ%`XLjʌϩj-/O Y+n^2'߃̌26P.{lиzEFd ˳4&$PK\Zq] AfEF%UqRIej X4e6d(liRĶTim悌툅U*!LD3IR8==-DƅTJ~g;59*ΕZݟQwUL$\y뇅xn^ŻA(j5軉qyj#qnP@i~רYF{3x,hXq=k&`q>'R o+Yl0|Qpgp %@Fȭ'~-@BaEB=Ȣ޳8H۾T Qc߅f ǎ'@ii `eM gyj[|<;zi 3 e6\gFYLM=1C2~Q}T{0%32Pk [g_(7$-+(5 ϶ɱدdfri|3ѫjWN u85MôYd>j|O@Y |xҿ'pZݜ0UhȦ9cm 6 !E|M@?Jqe)r #[?#u(!O2u^#p]OQG*pТDaRkN!GHX8e&.k$uH7GrSS횧q{Ek~>'FЖi番AF,Nv}]P{鬧UIx<70{UI'*#] hF?SH>rߏzC^Pәއ0YlAU/< AϾJ~⽞irZPVҗkaO|#a K'NzRwh]٥=iW:FfVJ+G>Sһf)KbWVXM 1Ȫ]Vj7{Mlpb6 v=vm;MUA8:1 @%R"*Z7Tf$'l5f'yw͝z 5vh^u05.i*YBv-Ctq.5ٖG9.9-ǓeU.G{L9;?2̭؞ Sм m^ Sslb[#8bDtbqb wtX>5T\Mm<+G^l|1YEؔ֝rF-c< K$%z*dC }|ʉdb5pNpv}oy "0qY?>M9Mfa^AM]__Z;%YSP#> endobj 566 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [434.584 614.254 449.299 625.094] /Subtype /Link /A << /S /GoTo /D (subsection.5.9) >> >> endobj 567 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[0 1 0] /Rect [73.763 546.026 85.718 554.434] /Subtype /Link /A << /S /GoTo /D (cite.Yu) >> >> endobj 568 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[0 1 0] /Rect [93.16 522.115 105.115 530.524] /Subtype /Link /A << /S /GoTo /D (cite.Mantel) >> >> endobj 569 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [400.594 388.676 415.309 399.515] /Subtype /Link /A << /S /GoTo /D (subsection.5.9) >> >> endobj 573 0 obj << /D [571 0 R /XYZ 72 720 null] >> endobj 574 0 obj << /D [571 0 R /XYZ 72 684.16 null] >> endobj 214 0 obj << /D [571 0 R /XYZ 72 589.373 null] >> endobj 570 0 obj << /Font << /F74 332 0 R /F31 243 0 R /F8 249 0 R /F62 303 0 R /F76 338 0 R /F64 326 0 R /F57 302 0 R /F11 337 0 R /F7 375 0 R /F73 331 0 R >> /ProcSet [ /PDF /Text ] >> endobj 579 0 obj << /Length 1024 /Filter /FlateDecode >> stream xYK0ȱ{HoX!=tߕ- q;qQ.9&cϗq2R4F1U-**MICwէŋs:?廊*ڴW5һ^[jg+Vj?[/^,e*++Nu u*;΢t$ }=B`` $mB`lCalIqyH(I*ld ~LP ETb$ HOd ĀNNr($/CQțpZP{xMB#!3p@$sÉRKaP]|)xwAO.3(xE0P!ue*53'i oͅ;7W:+ ܖSxrQ\K#e5[L9p[wZBKe~- 2ېTMSa^0)[B?~m;Ůkʹdr_6PxtiGk 9[?(@fSY+Q ԍ`Imp,wvpJ%>J- "ӓQ1h&vaaD!tG>lb[8Mh;YzM[( ¥yrULcC=er)BZG`GY K##l&YV\FCR^"^ TR,E "1*.G٦E+b Q&*%qx:Ckֈ-Û1jZic!CfyTm$ endstream endobj 578 0 obj << /Type /Page /Contents 579 0 R /Resources 577 0 R /MediaBox [0 0 612 792] /Parent 554 0 R >> endobj 580 0 obj << /D [578 0 R /XYZ 72 720 null] >> endobj 577 0 obj << /Font << /F74 332 0 R /F8 249 0 R >> /ProcSet [ /PDF /Text ] >> endobj 585 0 obj << /Length 2565 /Filter /FlateDecode >> stream xYKsϯPIZa rIjR[ߒhIT#QG~}h˕rF5|lܢUmmxTefr gx2>sgOn%R$y{_]t0Jkz;_?h4'qe/\z3{ <_(ArE6v)"ҕk<<ǑQ|e} tF> WĞL%"ߴr%9Vb{dw kD{#֨i̖,U4#{cd4j71²+"~Q%%^I(qUu,$8,6ِ7V"Qe6e2LCKG_(/+22{e+L} DfjcYg:kgbw[^F$}uUV8n3{m&z٬MƚoUgWgt{jEC,NhɸNx0)=aVN7q|R) {M6dƭq)) Hڝ26FZvwCOy[p&vN ‡9E8OxvC#3VrSY˥z4v.Qm7_Cϼc&@&VOj1&Kvg>wi8Z)uO7/*0M#OQ LvޡЅO-o>F$^6.OQcP\bI]w*R4Ԉ6-W<(xiTe(%1Hi/xoG&_ 0]\H(3Yo|>]ϣRŇ,UBu5 m6 9{^ (|ѕr-wS7{@Et m3)S%hxq|-9R[oh75!,j?qE{&|I.AT!;6i&wl qu[']QMӱ䔀B9cw\2ΧB\bb/B!EIպg){Q4Otd,L>Kx)oa06dˉ41 =WNJ:*\W:]DGPs?d\!`GJvVf^8ӾYP`. >fSw]lYWf?4 SPn`xB ͹dWFcg9J:6k8nb!HOhL1{o_zч?n&{ i K x$`ө#m3rfct ]XH`3Km3WJS޺Y&; _A&tyS s-{?-/)fT=^bfԁeo\n]!6 &[z!1)x>_[9t؜VYajL-s*;w(¥dc,]Δ4mRPU0L]3\mB;:Gޓ7 |W!=BCZ:lw?o2yR^Ǿfҙ,t FĨ6Ћѥ_?/# endstream endobj 584 0 obj << /Type /Page /Contents 585 0 R /Resources 583 0 R /MediaBox [0 0 612 792] /Parent 554 0 R /Annots [ 581 0 R ] >> endobj 581 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[1 0 0] /Rect [392.61 378.713 399.583 389.552] /Subtype /Link /A << /S /GoTo /D (figure.3) >> >> endobj 586 0 obj << /D [584 0 R /XYZ 72 720 null] >> endobj 587 0 obj << /D [584 0 R /XYZ 72 538.486 null] >> endobj 218 0 obj << /D [584 0 R /XYZ 72 409.487 null] >> endobj 583 0 obj << /Font << /F74 332 0 R /F31 243 0 R /F8 249 0 R /F62 303 0 R /F11 337 0 R /F7 375 0 R /F57 302 0 R >> /ProcSet [ /PDF /Text ] >> endobj 591 0 obj << /Length 399 /Filter /FlateDecode >> stream xmRN0+rq$v$Hph%8 '>AjGJ=k{ hd3^gyHS# 6$Ĉ4!يїPлiSfKK ZրҗlPy%V,P %{ON!ػ4=0!x zt648˯;ntԕ`hfFYfdN%I߫ fY xYSĘدb#BbW<,10d=ǩM\ HlJDpps VMV+X @>I;ͦ endstream endobj 590 0 obj << /Type /Page /Contents 591 0 R /Resources 589 0 R /MediaBox [0 0 612 792] /Parent 554 0 R >> endobj 582 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./manualHaploStats-plotSeqHap.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 593 0 R /BBox [0 0 432 432] /Resources << /ProcSet [ /PDF /Text ] /Font << /F1 594 0 R/F2 595 0 R>> /ExtGState << >>/ColorSpace << /sRGB 596 0 R >>>> /Length 947 /Filter /FlateDecode >> stream xWMo1 ϯȱ{hH|^AT $J(TTMh%<'dvo؎_l'DYu~MoyrSt2ߧ^i2d >ԫgmJN{V"Vfuz 2BN7c9 &W|+<[|+}ϿOO^)%>g%Wdd_#<ܩ|_IBo7IsdNoNPӤbN&j6|{t,(e#j\Ҝ͖HM1YЇd=w[l4}?j9ZvqHW697y_|+ W|" \E8&W7ʸɏ58? ݂8t@q2ɥk)p6:'AQs mp wH{A 7*ۂ{\/~}35 endstream endobj 593 0 obj << /CreationDate (D:20160401105259) /ModDate (D:20160401105259) /Title (R Graphics Output) /Producer (R 3.2.0) /Creator (R) >> endobj 594 0 obj << /Type /Font /Subtype /Type1 /Name /F1 /BaseFont /ZapfDingbats >> endobj 595 0 obj << /Type /Font /Subtype /Type1 /Name /F2 /BaseFont /Helvetica /Encoding 597 0 R >> endobj 596 0 obj [/ICCBased 598 0 R] endobj 597 0 obj << /Type /Encoding /BaseEncoding /WinAnsiEncoding /Differences [ 45/minus 96/quoteleft 144/dotlessi/grave/acute/circumflex/tilde/macron/breve/dotaccent/dieresis/.notdef/ring/cedilla/.notdef/hungarumlaut/ogonek/caron/space] >> endobj 598 0 obj << /Alternate /DeviceRGB /N 3 /Length 2596 /Filter /FlateDecode >> stream xwTSϽ7PkhRH H.*1 J"6DTpDQ2(C"QDqpId߼y͛~kg}ֺLX Xňg` lpBF|،l *?Y"1P\8=W%Oɘ4M0J"Y2Vs,[|e92<se'9`2&ctI@o|N6(.sSdl-c(2-yH_/XZ.$&\SM07#1ؙYrfYym";8980m-m(]v^DW~ emi]P`/u}q|^R,g+\Kk)/C_|Rax8t1C^7nfzDp 柇u$/ED˦L L[B@ٹЖX!@~(* {d+} G͋љς}WL$cGD2QZ4 E@@A(q`1D `'u46ptc48.`R0) @Rt CXCP%CBH@Rf[(t CQhz#0 Zl`O828.p|O×X ?:0FBx$ !i@ڐH[EE1PL ⢖V6QP>U(j MFkt,:.FW8c1L&ӎ9ƌaX: rbl1 {{{;}#tp8_\8"Ey.,X%%Gщ1-9ҀKl.oo/O$&'=JvMޞxǥ{=Vs\x ‰N柜>ucKz=s/ol|ϝ?y ^d]ps~:;/;]7|WpQoH!ɻVsnYs}ҽ~4] =>=:`;cܱ'?e~!ańD#G&}'/?^xI֓?+\wx20;5\ӯ_etWf^Qs-mw3+?~O~ endstream endobj 592 0 obj << /D [590 0 R /XYZ 72 720 null] >> endobj 588 0 obj << /D [590 0 R /XYZ 186.525 210.09 null] >> endobj 589 0 obj << /Font << /F73 331 0 R /F8 249 0 R >> /XObject << /Im3 582 0 R >> /ProcSet [ /PDF /Text ] >> endobj 604 0 obj << /Length 3068 /Filter /FlateDecode >> stream xɒR.dl$UJʪ$S<e@3C{HLR^3D@ׯޯ//^3J2}u}sUBIjET$_v|5]L-paҨ#~B/3wSLp!ixz{p:BW95X#"D*rdQKx/('Ź+DS2hmuQl (ĮX,”LSXmsbW BݱQvK&c z#i/>"Y4~gov yA0Gݶg^Ǜ ^XAө9`9Hy{pz6S]6I@hG&'~d@VL2mQ~`rE7T5{ln(|#dQfB&)LLI#٥BZ=HSmޔcK+Q<7iW\H6w:pb:j^Gw:I!i!Br1#Vfc[8MRɤ$zUJ}<P!?9rn[WޒJ>z6:dVAPN˨oԾ.Ľ>c->B8!ݙ"{گhͱu; a{gV|v tCs%͝)H#&!Nrdg<~V֦~SB؞e/:<%`Hee}Hiڔ)ydU^S%0E *U'eV*QT` V~4(PI.bva_'T(m])xJ:}D}债Ιb9#eqgbݔfsTB,>/(#E庈!> XX8khbtfqh-ʖG>0I/gF_|pV~n&}9 uӪ009'` OL^\-zJ,>7O@%0Im% rϬ$]2y)G7Z_ǛH(75NI Lmq*;#}fve]lW]lNJc+<<͙ʨ`WIR|0PJY̿$qΓTQC"*!אO.$%_@o tH=8Ipqzf;8jThmvU$6FpYg3rWiGӒw/r }5?v }Tc{pF;3#^UWTNl>ʩB 3]_Tv,l-@VD6hMG73I}鷉=1*FGreM_/9IV^:E:9AgJ9,X=(=6yR6׹ᖨ>-WljEI{{&+8d{5 :>lUa[Ot~B h9Y˕ڳْ!.WzQn4˩SImt֮5FE8ǾwQZZU)t/^d>>%9g޻Dĝ8WuowM Wj!㢱eiIJDvMˑ`FgBӂ:C~e8VcΝ<ox*CJgqq,R=תMhVI '+|1!UC endstream endobj 603 0 obj << /Type /Page /Contents 604 0 R /Resources 602 0 R /MediaBox [0 0 612 792] /Parent 606 0 R /Annots [ 599 0 R 600 0 R 601 0 R ] >> endobj 599 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[0 1 0] /Rect [328.214 595.019 335.188 603.427] /Subtype /Link /A << /S /GoTo /D (cite.Zaykin) >> >> endobj 600 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[0 1 0] /Rect [73.763 571.108 85.718 579.517] /Subtype /Link /A << /S /GoTo /D (cite.XieStram) >> >> endobj 601 0 obj << /Type /Annot /Border[0 0 1]/H/I/C[0 1 0] /Rect [469.036 559.153 480.992 567.562] /Subtype /Link /A << /S /GoTo /D (cite.LinZeng) >> >> endobj 605 0 obj << /D [603 0 R /XYZ 72 720 null] >> endobj 222 0 obj << /D [603 0 R /XYZ 72 720 null] >> endobj 602 0 obj << /Font << /F31 243 0 R /F76 338 0 R /F8 249 0 R /F62 303 0 R /F73 331 0 R /F74 332 0 R /F64 326 0 R /F57 302 0 R >> /ProcSet [ /PDF /Text ] >> endobj 611 0 obj << /Length 1350 /Filter /FlateDecode >> stream xYYo6~>xI:@8@ hci l|euXHȏ␢kq\rU#uZbhDU)of|٬TBn>6pd`nŽ , 0 8+ WX}P@{vC4\TE9E |1OR?a9mfsX8V_v2oɓ1go*uxpX3-:cdz7-W=}YVy[.@cxh{o[6A_i͋Rqxġ1+GUG8Jϊjg4"X*&!c[4B7 Lf`KQ֪sRÖh`|;%׹G!Xӓ?G7r9v>aOw_ )IZxA\56#tsK̝n;ћHTmE o*)qcJ9z>4ޭB3^طyL>U8ttRsFfL (/1TߏUucihPkeP*}QT.C[p@VI8XZ7*6.(.t|C+E␭.YWϗϯXgE\NN,(v~o9xwk,88GZ[:r9wf ’|S7jT%qҒMD$71T v<+X90noP$[+6#`&ڃO{+Ɍ8qz;8?*ӟST3içoAD V,$bرbe%Afr/ycX ><%+eȵ^CO{WmrIo `财ܛ0ޓs|b(ns?!eE%N_Cno}g!S.) +nW!vpe%Ҽ"CLGX7H9]@zNjZ D*eS1Gω[[ endstream endobj 610 0 obj << /Type /Page /Contents 611 0 R /Resources 609 0 R /MediaBox [0 0 612 792] /Parent 606 0 R >> endobj 612 0 obj << /D [610 0 R /XYZ 72 720 null] >> endobj 609 0 obj << /Font << /F73 331 0 R /F74 332 0 R /F8 249 0 R >> /ProcSet [ /PDF /Text ] >> endobj 615 0 obj << /Length 1682 /Filter /FlateDecode >> stream xڍXKsF WHD wn.V&q<܌큑h[R$1mXxc}x:00 c?H/a=4޲(k) r%a0b?}x:d,1N#kƩ!*\,p0Q0Ό\V/C0g,CC~`}|h"%w=LC:􅌪TjQ+߁00C3P9 (xd>?^Q=oʺjעu]zGoiĪA(FՎ_^Jdk$0aŌL z.T C$"HNϭUHfCbEjJcY-؈FAEpײrP7be:`33 [E+hqؤu䪐X#HYnBh+2f^ʼn%}^)B#_ĔRL.64D7)^&Gԛ'Z\{}Ճ^X)5ADK 8%`;6Mo6e:8>4ȸլqR*ƛ.n>BP&vAoe8W G!U-u{d/ mTbsG(/op+tt;ƷWse>1;' ) !c6Lo1>L~#sɢ f[p4#Nӟ /W`[ *9C}PkK\hG= |6js$\$HE nl[I][ ]!pI?nbwf*Qd[G-EyGQ~ݪo㴶!dܹg\.BSz{V ބi|~k'j1o}/*^R1SLɷƘ(9hFk SΗ$I~[iV_Veb>w5 KWʦL;4 RW=I֟N;.:hR Fݕ5;\ EhTim_8Θlxg42ko2:&"`?& endstream endobj 614 0 obj << /Type /Page /Contents 615 0 R /Resources 613 0 R /MediaBox [0 0 612 792] /Parent 606 0 R >> endobj 616 0 obj << /D [614 0 R /XYZ 72 720 null] >> endobj 226 0 obj << /D [614 0 R /XYZ 72 720 null] >> endobj 230 0 obj << /D [614 0 R /XYZ 72 338.491 null] >> endobj 613 0 obj << /Font << /F31 243 0 R /F8 249 0 R /F62 303 0 R >> /ProcSet [ /PDF /Text ] >> endobj 619 0 obj << /Length 4225 /Filter /FlateDecode >> stream x˒_5U+/dR9SqS)O4R<&zxxwÌHh4 7J˙U[jv95sRTBrݍ?=,7?ǘJKclU*,Tfo`y =r9F$. %a>5,l$|KXަu"2)S.1e)*I. I {鞂2OnXz]D39m"ئ1ِ=xRO/ R vÀGt^ _w Rd:)_s`S.zQ%&\My2|^wŰ8 A{3>l}-kp âhI/DB}Ǻ (jW\œ4Ow˰ft$%H &}Wތ&SF&i/!Vz@$%H!4{,qkG0NK囯VeoX(w"CmzG!2b}z9opnBh%%$Grj{`dHqr4J'qc̥R wCϩPsRP>D!Gxkڳhad&j}ч.r#֧.Dٺ+_7yʗB߅ <LC-ޤR @#AM=Bcjp!i9.J?85H$Tp_OwogoTdfdN%+ 1CU ^k. I,cW5M m}ֻ0.fD,NMx';!Cu7cU윲d T(OzMBCvwZ=\Lczv*3ǝ.S?>Oa3=pُ3ɨ¼T!SkS7ՅLf ߑyj3 x}+W%c@ŕ8)fjng/qEˆdv[`^)*elkT2@&2N8u.HOU[,Pb&-{;5c5X*X%<̱ 簩Zc%Bf$.V= [2$mۮ`yJY)2'crUmYLlCLrޣO#E?%YN{EYbrݧʎkBK|no0vK(0]i"opR]9Fiw13P&AE)GIS.(f.)2NO)'|2 Z8ǘ9~T97&_(vg? X`Cz ԡ+.)7~ȠI1гoLaIJ?{ubp#?)LlxJzg7%x˧Qv&yQg1 [x-j .@*P;7xvY t%J>rHV z iQNiFD.4$ٝ KCZ_i9E/<MjG~NB'NvrPEI]a'H1aױ$;1sJK:&2ټhDK'ʕ|>LjyRVz'_2^=~[ l,nqnҴh>YiT&yTх (Meń-X0X0;`t6!lBQj) NkvY-Dն6e&ѱ<~U\L&N¢N,I*@̛߾LL4hxTƹ?:uTmfJ;,=ξ{7_eˌNU ZU]{*0m"Y*q2!cK(g^[97|/ {MRO"_;,H)Lmme~(z)9rLi +:c4I9@$r]eP BN*%\^֤4-aȊWXd=)]2 CX|-' `>x`F(9JsÔE B')lޥ )ⱳ/x߶'hU=RY9KB1  j)nО6DřGQ2)E}>* h HTSB]C"UTZ/rcY+IY9q>ꜜzpaPkQ)'L#J H<%`?{?X GYR^2՟4sʊF_;> endobj 620 0 obj << /D [618 0 R /XYZ 72 720 null] >> endobj 234 0 obj << /D [618 0 R /XYZ 72 692.725 null] >> endobj 617 0 obj << /Font << /F31 243 0 R /F8 249 0 R /F10 432 0 R /F11 337 0 R /F14 366 0 R /F9 621 0 R /F7 375 0 R /F13 433 0 R /F57 302 0 R >> /ProcSet [ /PDF /Text ] >> endobj 624 0 obj << /Length 3014 /Filter /FlateDecode >> stream x\Ko#W̑N >" >D I-J-z|?GG9j+h'r96L_Ah⌰(׺9cD:n- "i ^$>B_v¹k BGaPie+5J6gjheIA =b5pF%X9Jwʜ?' ӆ5:" jus9?WLal%û'8j eY?enIbh8%v0 ("yH☞DO|vb&D/| Y8T 6q?܀lgI{¯E%p?9$ DjU40 [Io`00ZfW86\Y&|uſo9YnrYςȗ.L 792an.ݶw"hѝ"L\D|_ 3&i-0 2D,9F#נ+Ǜ$x{5~u%0y/p9\?DMqVL$n#M.pcJRH:ڍ{(79ষ riSGh$߅hug@OS>%,@$%42fbš<g'^{Ԃ.:sc(AdH;sLЀIѕ!>!v`(3AD=+h_ 1qS Aj=mdpw..F{_hMs" sˣ1GaW #>ץM]SDr`>y#HEJp= &! 0 _l,j?g_r u& 8@`I|>n:B&tqVC–)6i۪ y*Xݹ=\wqh2,r#Qw8SFa29 @-d (&IxG.w2NyS}R` vD`5mT+؉7&Mc&3\&4\>-xhc@"ܫ d'w6nN z3((q iBs,PT0(q^>g}Wi 0F{< nb2nȡ=T8Jҡ4LN.`pH./q*S])bjjMxLGc> ,fqq+! ܟXː9N ,KhjZ#$qaST͍emHJLodpgO =,I»l8^iH3PC FWK+}>U:P*=CxMRUx%'Q- jCOcOʁ %T)`IBk:8@q@;x$Px#(lָӚX,bZ7@eXiD(V*F([j^<[;l Z(+\h'C⺶BCG .u2جV$rZ$dpz2c…x+mjTnZIɶBvHzXG.zn I+U9؈x4C1p^*DOhܦ'Ծǻ9|BE "C_ég<]>?LhS;D.Y{ ἊgTz?4"U:uPs}J6Fg}2 S(NnrXzcͬ~#MźXoJJ!Hî+@)bhݛ]7AֹG@2bg}4~NQ֔e# a*b|Xo=p :8fl _{֏z=H؃GA كB fPMP@xŧzap4 nL#()>H/Hc4Q~txTG!{KU>DG!:RQd4QD 5lOd%C3{ p],y}j=poOk5cUW G x,GpyԎ|\C68(^87 8 5SG%+q}7> endobj 625 0 obj << /D [623 0 R /XYZ 72 720 null] >> endobj 626 0 obj << /D [623 0 R /XYZ 252.259 706.55 null] >> endobj 628 0 obj << /D [623 0 R /XYZ 261.349 647.332 null] >> endobj 629 0 obj << /D [623 0 R /XYZ 228.672 538.287 null] >> endobj 622 0 obj << /Font << /F11 337 0 R /F10 432 0 R /F8 249 0 R /F1 627 0 R /F14 366 0 R /F7 375 0 R /F57 302 0 R >> /ProcSet [ /PDF /Text ] >> endobj 632 0 obj << /Length 2709 /Filter /FlateDecode >> stream xڭY[s~_du;TٌgBws/$6%cȤ`gī=5~#)894m5N۽8h :Rnpifig9{LCti_PgAl57 VFZѸyB-)n;C*;fo;p:jWzL7ӭE:Lt&7KQB~AdJcW9~eм$6{ iJ1agChĽWJT^q &]>qGF($s"=r(AQOpxծD L{+)f-0̸vIP 49Áaqn>!p8kesBA:`N*+ |`,lcO P'z[b ׌ړz#muAOs?WYk,^[p+q0珈}OUڮ0otnQ-8ؘg(r 1>a4zeeyغW&tPKث<Vܐ$"szJ; oL~ (6> %2BzoYsC:[wb tcE]8kɉ=>u9UI$[N;- ך$A~o\βo;*+ȌUT[< 8)AԖ3ڈ,GTjp[4SPl>F/!Q#36*uޱ9 yiȓ ŸJqd![ ⦲̛6rCrJ14|q۲/H QxhDC&QI઩3ʳTɛcݍr?G˽ 3锍Mov܀H$@nD2] 49tI8@IfI T=Ӥ[ t n0_ 9`LJhsI?X)$nn-߾}9b_ukVĢ15 O|=OLރT?KNi,>KrTA+ڲw@$O7T]A1y\ o::ODžS>TH^?J_8"quynlh‘.m.;R#}F-${Z[fT,D\IKR1*Uf_"T[9ZTklQe*[;ǞKri> endobj 633 0 obj << /D [631 0 R /XYZ 72 720 null] >> endobj 634 0 obj << /D [631 0 R /XYZ 72 700.184 null] >> endobj 351 0 obj << /D [631 0 R /XYZ 72 704.17 null] >> endobj 376 0 obj << /D [631 0 R /XYZ 72 670.356 null] >> endobj 377 0 obj << /D [631 0 R /XYZ 72 638.476 null] >> endobj 378 0 obj << /D [631 0 R /XYZ 72 606.595 null] >> endobj 410 0 obj << /D [631 0 R /XYZ 72 562.76 null] >> endobj 443 0 obj << /D [631 0 R /XYZ 72 542.277 null] >> endobj 450 0 obj << /D [631 0 R /XYZ 72 522.351 null] >> endobj 481 0 obj << /D [631 0 R /XYZ 72 491.029 null] >> endobj 482 0 obj << /D [631 0 R /XYZ 72 447.193 null] >> endobj 527 0 obj << /D [631 0 R /XYZ 72 415.313 null] >> endobj 565 0 obj << /D [631 0 R /XYZ 72 385.365 null] >> endobj 575 0 obj << /D [631 0 R /XYZ 72 351.552 null] >> endobj 576 0 obj << /D [631 0 R /XYZ 72 331.069 null] >> endobj 607 0 obj << /D [631 0 R /XYZ 72 299.746 null] >> endobj 608 0 obj << /D [631 0 R /XYZ 72 267.866 null] >> endobj 630 0 obj << /Font << /F31 243 0 R /F8 249 0 R /F11 337 0 R /F63 350 0 R >> /ProcSet [ /PDF /Text ] >> endobj 635 0 obj [527.8 527.8 583.3 583.3 583.3 583.3 750 750 750 750 1044.4 1044.4 791.7 791.7 583.3 583.3 638.9 638.9 638.9 638.9 805.6 805.6 805.6 805.6 1277.8 1277.8 811.1 811.1 875 875 666.7 666.7 666.7 666.7 666.7 666.7 888.9 888.9 888.9 888.9 888.9 888.9 888.9 666.7 875 875 875 875 611.1 611.1 833.3 1111.1 472.2 555.6 1111.1 1511.1 1111.1 1511.1 1111.1 1511.1 1055.6 944.5 472.2 833.3 833.3 833.3 833.3 833.3 1444.5] endobj 636 0 obj [533.6] endobj 637 0 obj [892.9 339.3 892.9] endobj 638 0 obj [904.9 868.9 727.3 899.7 860.6 701.5 674.8 778.2 674.6 1074.4 936.9 671.5 778.4 462.3 462.3 462.3 1138.9 1138.9 478.2 619.7 502.4 510.5 594.7 542 557.1 557.3 668.8 404.2 472.7 607.3 361.3 1013.7 706.2 563.9 588.9 523.6 530.4 539.2 431.6 675.4 571.4 826.4 647.8] endobj 639 0 obj [446.4 446.4 569.5 877 323.4 384.9 323.4 569.5 569.5 569.5 569.5 569.5 569.5 569.5 569.5 569.5 569.5 569.5 323.4 323.4 323.4 877] endobj 640 0 obj [777.8 277.8 777.8 500 777.8 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 1000 500 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8] endobj 641 0 obj [306.7 357.8 306.7 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 306.7 306.7 306.7 766.7 511.1 511.1 766.7 743.3 703.9 715.6 755 678.3 652.8 773.6 743.3 385.6 525 768.9 627.2 896.7 743.3 766.7 678.3 766.7 729.4 562.2 715.6 743.3 743.3 998.9 743.3 743.3 613.3 306.7 514.4 306.7 511.1 306.7 306.7 511.1 460 460 511.1 460 306.7 460 511.1 306.7 306.7 460 255.6 817.8 562.2 511.1 511.1 460 421.7 408.9 332.2 536.7 460 664.4 463.9 485.6 408.9] endobj 642 0 obj [272 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 272 761.6 462.4 462.4 761.6 734 693.4 707.2 747.8 666.2 639 768.3 734 353.2 503 761.2 611.8 897.2 734 761.6 666.2 761.6 720.6 544 707.2 734 734 1006 734 734 598.4 272 489.6 272 489.6 272 272 489.6 544 435.2 544 435.2 299.2 489.6 544 272 299.2 516.8 272 816 544 489.6 544 516.8 380.8 386.2 380.8 544 516.8 707.2 516.8 516.8] endobj 643 0 obj [625.7 651.4 622.5 466.3 591.4 828.1 517 362.8 654.2 1000 1000 1000 1000 277.8 277.8 500 500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 777.8 500 777.8 500 530.9 750 758.5 714.7 827.9 738.2 643.1 786.3 831.3 439.6 554.5 849.3 680.6 970.1 803.5 762.8 642 790.6 759.3 613.2 584.4 682.8 583.3 944.4 828.5 580.6 682.6 388.9 388.9 388.9 1000 1000 416.7 528.6 429.2 432.8 520.5 465.6 489.6 477 576.2 344.5 411.8 520.6 298.4 878 600.2 484.7 503.1 446.4 451.2 468.8 361.1 572.5 484.7 715.9 571.5 490.3] endobj 644 0 obj [525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525] endobj 645 0 obj [525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525] endobj 646 0 obj << /Length 99 /Filter /FlateDecode >> stream x5;@@E@yW!^jBBJu&WJ0ȨcFg k7BzUmx1mA )9hu_T # endstream endobj 647 0 obj << /Length 149 /Filter /FlateDecode >> stream x3135R0P0Bc3csCB.c46K$r9yr+p{E=}JJS ]  b<]00 @0?`d=0s@f d'n.WO@.sud endstream endobj 326 0 obj << /Type /Font /Subtype /Type3 /Name /F64 /FontMatrix [0.01204 0 0 0.01204 0 0] /FontBBox [ 5 5 36 59 ] /Resources << /ProcSet [ /PDF /ImageB ] >> /FirstChar 39 /LastChar 136 /Widths 648 0 R /Encoding 649 0 R /CharProcs 650 0 R >> endobj 648 0 obj [23.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 41.52 ] endobj 649 0 obj << /Type /Encoding /Differences [39/a39 40/.notdef 136/a136] >> endobj 650 0 obj << /a39 646 0 R /a136 647 0 R >> endobj 651 0 obj [583.3 555.6 555.6 833.3 833.3 277.8 305.6 500 500 500 500 500 808.6 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 277.8 277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4] endobj 652 0 obj [670.8 638.9 638.9 958.3 958.3 319.4 351.4 575 575 575 575 575 869.4 511.1 597.2 830.6 894.4 575 1041.7 1169.4 894.4 319.4 350 602.8 958.3 575 958.3 894.4 319.4 447.2 447.2 575 894.4 319.4 383.3 319.4 575 575 575 575 575 575 575 575 575 575 575 319.4 319.4 350 894.4 543.1 543.1 894.4 869.4 818.1 830.6 881.9 755.6 723.6 904.2 900 436.1 594.4 901.4 691.7 1091.7 900 863.9 786.1 863.9 862.5 638.9 800 884.7 869.4 1188.9 869.4 869.4 702.8 319.4 602.8 319.4 575 319.4 319.4 559 638.9 511.1 638.9 527.1 351.4 575 638.9 319.4 351.4 606.9 319.4 958.3 638.9 575 638.9 606.9 473.6 453.6 447.2 638.9 606.9 830.6 606.9 606.9 511.1] endobj 653 0 obj [583.3 555.6 555.6 833.3 833.3 277.8 305.6 500 500 500 500 500 750 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 277.8 277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4] endobj 654 0 obj [295.1 531.3 531.3 531.3 531.3 531.3 531.3 531.3 531.3 531.3 531.3 531.3 295.1 295.1 295.1 826.4 501.7 501.7 826.4 795.8 752.1 767.4 811.1 722.6 693.1 833.5 795.8 382.6 545.5 825.4 663.6 972.9 795.8 826.4 722.6 826.4 781.6 590.3 767.4 795.8 795.8 1091 795.8 795.8 649.3 295.1 531.3 295.1 531.3 295.1 295.1 531.3 590.3 472.2 590.3 472.2 324.7 531.3 590.3 295.1 324.7 560.8 295.1 885.4 590.3 531.3 590.3 560.8 414.1 419.1 413.2 590.3 560.8 767.4 560.8 560.8] endobj 655 0 obj [638.9] endobj 656 0 obj [531.3] endobj 657 0 obj [272 326.4 272 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 489.6 272 272 272 761.6 462.4 462.4 761.6 734 693.4 707.2 747.8 666.2 639 768.3 734 353.2 503 761.2 611.8 897.2 734 761.6 666.2 761.6 720.6 544 707.2 734 734 1006 734 734 598.4 272 489.6 272 489.6 272 272 489.6 544 435.2 544 435.2 299.2 489.6 544 272 299.2 516.8 272 816 544 489.6 544 516.8 380.8 386.2 380.8 544 516.8 707.2 516.8 516.8] endobj 658 0 obj [354.1 354.1 458.6 719.8 249.6 301.9 249.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 249.6 249.6 249.6 719.8 432.5 432.5 719.8 693.3 654.3 667.6 706.6 628.2 602.1 726.3 693.3 327.6 471.5 719.4 576 850 693.3 719.8 628.2 719.8 680.5 510.9 667.6 693.3 693.3 954.5 693.3 693.3 563.1 249.6 458.6 249.6 458.6 249.6 249.6 458.6 510.9 406.4 510.9 406.4 275.8 458.6 510.9 249.6 275.8 484.7 249.6 772.1 510.9 458.6 510.9 484.7 354.1 359.4 354.1 510.9 484.7 667.6 484.7 484.7] endobj 659 0 obj [656.3 625 625 937.5 937.5 312.5 343.7 562.5 562.5 562.5 562.5 562.5 849.5 500 574.1 812.5 875 562.5 1018.5 1143.5 875 312.5 342.6 581 937.5 562.5 937.5 875 312.5 437.5 437.5 562.5 875 312.5 375 312.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 312.5 312.5 342.6 875 531.3 531.3 875 849.5 799.8 812.5 862.3 738.4 707.2 884.3 879.6 419 581 880.8 675.9 1067.1 879.6 844.9 768.5 844.9 839.1 625 782.4 864.6 849.5 1162 849.5 849.5 687.5 312.5 581 312.5 562.5 312.5 312.5 546.9 625 500 625 513.3 343.7 562.5 625 312.5 343.7 593.8 312.5 937.5 625 562.5 625 593.8 459.5 443.8 437.5 625 593.8 812.5 593.8 593.8 500] endobj 660 0 obj << /Length1 1638 /Length2 11261 /Length3 0 /Length 12183 /Filter /FlateDecode >> stream xڭc|_c m[4vc{b65&=}>3/ZٟJ/*&vF ;[gzffQyMf&f&&JJQG3D`z0q P{8Z;ЈI"lp06%7t6؀jZ[=HIp"Q8]& $&$F3 [(/ed=Es{sAk!Yԑ_j/wbZٷJ A ?acU1'6Aw_eZk0̠>x 2IIdp6w5{_g7@ѹ (/1Py4?͂*y-;w/zVѢgg#f.!:]Eͦ p#,/Y4OAӁ5)uu .Ń[:Эj>cC8E{+MH\;ĥ.~Ol!мNس'{xp`th ؟CXBWQ`Z {67wzDžxECt8M#qj5YlX]߲ҰT!8 :}Ge.w>K 9Aku 2o-ZvMYsGeyE'u٦V A;QC|ٶe+6>-}@ftAA#@]g_5p\8K˧vR8R+xuLM%FceM 䥴x%x;|1+ZŮriBVF~BSG ګn+SU葲]sѲɶƃK@!hh&== nB *`]oc{x[~q֩ Ll Dk4 s;ѹb5 {P5_ "GVd]ۊPDYj!"B?3MUp#Wֳ6 Mvȯy <ڬ˲T2aXy K%HNMt{!={{D.W]k$7M.+o kSu}޽ WyX썗q]!ԦQǽa pxk2K!үAGoθ냫O'?0/a`u|3%?u?t!|wE s޺NΞ ӳDmᯮpM~|X+*bx Wa8p*^n<TO_K aaeza/(>WL,`zdQwk!ibsz ۄw]Rg?e/|Dfzbau7~Գ_$\Q=Dj$n?'V]>o5Z<7uv Ӿ`QTC&NjcD*+k}E*B'E'ar>~ >+L8hdEZc(Q*i^BӇ'0T1󇣜NueK=4 p&l8IboMa7Cҗgva533g~9v:ywg`Wj"O֕l|&*ˡP+7Ayb8k#}I9C),]Yj%W>&˖7q/,viO#q[ "꼠Z| X@.$LRwllEl ~ K1"Ŷl0 K4ڠ9C9Y$Dw7WQ:qa3(-+qy#+j¥X'M*ˁ)XA   /;:3ݶV|eb6\n; |- K6 !EJck0i WxBU?-{9p8)gJBFp71"ƳoSf:5L\-Lݝn"ԟk`Y+@T>y#MCutM ⮑֕ѧ$wJOD/4ݍvx8 MR$ӆ% z\WΣz q>V|sϕ%ˮ`@BN] ^G(DF:X R^ͥ`SbT@#+ ~/A#CE2(!ӻv(=nMsO_ѡo mW+>/ɍ- ?Z> _ =1aIl^fW~ J`paBCؠ"bAYx:+FKCWlYs6 T)@+,oS9D5XHLK΍G(B,[.BR[]<x:߆=Cq#;;32|y}rERC٢ 9{o#e<Ύ ŝq4EրOuI*$}Ҝ1]1l?MIs`կ)>W5k Zl?}w; W-*>kPidy:nd%Nw]پM zzt/at*AIt OMG\w[}V*/t`nroBQ)G.I)G35gϸ8MU1b ~Bf&QiȢbk\`$_ -H_zX&Bo"48R1E)Fa*gN Glex)@ڢ3y\=;k,:Eui*WQ`Sg*H~II pt bMŠ dԫ~2YCyqR;|W NV<2.K^4M S 5<$kJ9<9Ơo?>9r0f<3|'׀~)c-qHϲ̅L]R\$ 96QlNU4@ ̢1-4k6R z4aRJ] YbqvD.`vh|*71OgI $8V5hSQen8 -?)7p.VX xY /ٴ`2":>aU>.ge}y>Tkȅ[l~OrBQA!m5xqOq$:'SH4+y1cVĒ6 >{A^7I!e~2Xq@FڥUd`rDkcO'/IFϤ?WӍo.g\ci W{ېtmfDm9nǭȥZ.H@qN[^p1BB[q$>!)/?bqp;:%T~֤+Ɲ/Rh~pJW%h $U_U҂*%Rnjj%uHAf8f/(?9 y]"oXHnPDHs@\ՓsMdmpcX<` 2x/c~e,ҍGDn 8#>0ݴ ի >^SD k^֭5.j.I̿lg.g5v_eJKU'J+2tJwO v|vphT_M_^ EGGO 寖P(Ci(clo +uz{G!|t{)Tڜ} X< >DžTb<ү 7~\+?@pܥ- z/0tv\`>e< IK!<ce/,ɻQi&ޅo EuޖPQ,V!>,iugU,^nGBXkc=Un8eqhI$BV%2MsL )O|qѦG5O{z9~2lB҃ S(\̒s)Ln,u2lf!>̶i?s.MEygUK#TDP2f~y4)bxI@ R@XJ02$3 C*.ڼT{+q ~ _l-ieiÿeVΐ6oZfApoo,< J,Yq?=`)Ik[cSz>eNt=*lZ ݈p4ΚABioQpFj$Ґ:SڧZN?Ѷ]KMY8pG:{>ؼUK"7nT|wSm6Pd@=X/6vt\FiI~ӆ| H`45!ӽ @%Wx8RltH tU4ipۀVQLJm/O|3?sT;+"#:LQ>%U F55Rv*{2"ҝnqL+K[k F/o+NĊiQ&U 8 8zxQ= `87٩j\\+" pxph818sV,(Pfd8ft?hÝ3CJh QfKR !ҥ\&B 7o}cx;Lx;K:|VQUѭKNt";8YŁk4Z(T 1YcƂ9w,a$- (組fڣ!䁟E7N8LЕ$IIn?o侷 /ժvB|uX"PoF{^e3@eBsՊSDBo28kS4/XsjL\4|횝%l ͉{]oGQ?ve}#+><5Xp^ˮ흼CK DɞxL!eodɞ9!0^\PA K3A5`E^sJw׎\ۑW?k4p+B>#AK=UB_Qy$>5 Z2wO9dʮVeQХ_AoljUσAߛ+8ySxXg%РdSLPzݡ=)dGX&.c+xiiƒ$]Ԇ]D`5e&7 #3Z1*,nXGպ5S^8S 5f#j4L ­~c}I{}d z6Dm%u+R{ԢTAKJ ˟[9bxDPg=޳An2Lߊ6 DiD~y42o*یX"+<|ODMf> S L} IlN۾}ln i$D١NB#NDx󧍉.,EujK05teEk1O%q9cb`Of>~|s>͚ dJՈ0W SHA&+B_sеWnI.#6'}C'{IXŧB T7Db2mv]VS"x:KJI]L ongku )|돑ueS#FqC@qu2#tĖ<+,t$,R`{2Ƒt`@)W?12pE},dMb933ӫKf`1ri4O褔b՘ABd>ȤRvk'.a<1oZauVV(W.mjAGt:oz0`Ǿ7$!q-yƨ!ixm٫ȁF * ng"E'y x/mX"o4$xPMTD¤>\*x)v 1'5D']4=iR*nʼʑ|ۙ_)ARj-Rc~85#cC)I` ];dhzuEN_<۰N yiBᡶ\^+^ JJGpW();YNL˯On8{7<6Em5ݸc|AB? NcUFHբ^rzc2Ҝm'vu$4{H}Z/J& ϑCyin pAzkK٠dOC zu @tpQ}Z,(! V+u(L{rb`HP`e^z/ 1.:x ˬ%lVVT{%1[Da7=M"2+VM!Kf0k@j,!OdguĬz$Q#eAaiqz{3%5JE?Ceq|2TGVX`fF,5MFq=DmRd$[+Ow'igzRG*oiWg}iP4?땒 26eOM ~W"]湤0q/W%SՐl24̓Pz+"*HNR:S, P~ ЬA[~ BH1SCUDrn ݿkROVA%=@6"N ' |Ϸ!wDpW6 SᓙH37{_`A/P"}7(C5Fx ☛fR65[*+4 I䑁D\ҁtE5XL!()M &M+?*.e6*&mӫx#=#u `;zA!)_BMvcGTqyf6L D|lw  WDJ.ܙCɌWy#*ßtѝU{mnd ?{ T=UL  7Gh`Ui68k|I =V3Z\L06Lcs//JrMxUQ$=-#l j/s[Y"qCvrL?5 5^q ^)W{~ 8[ ̓FH&mU q.fLUŽ?0RLKL+E "]TT-wcb -˽|D!ɭ {FsݭLGuҀƞL!1Z$ΚMiUo<qɯ8#|䐜](0.wE5&γ:5ivoXi^iVo:=}he<ݫ=_:?:蓻ܭ-S\#Fly{UyAz#?2('yD5Gp<ԡ md%9n3eQõ6d߫ЂX?1Թ'Ɠ,erZ290ϊtӞTs8j^\"LTxx=ε|_"RM x ,Gҕm[ bk0,|]M(4ƹTy+c_?q/I%& ʓ)H~,1Qt/IqaNPyߎ993Myoʝ'cH)ۂ>ҢwYk̠} Qr-+y"7},t㜞 w*惟]Y[*X3ȥplE3T_mX}KW #~)AkV?]ע0|PoD$qץơT񿱼K:_ӗBʄ/1QOPwrq!wzK "CA*6:I`LVĞAlO}V]i9v5TǒQmHC#ܔl׼͐Cw6 F8b*:UdsL ~cBȱL@|;ցaWE&3΋PjhB_/!a7tY?>K`vhA eY3ѳJPn ҁU2tލoWj_MJOS+vڦݪJ;b0sD3|Ÿjܩ4II 66zhx!~,Yꖶ%QHIȳYR=JYM.\Vlۦ>&2* IS70?[~D,#0ÁfNÎ L׫9v"Zc]l)Fxw'bۭ%i'ϘX^XV^d_e}vd#x-Fyiqk 9>8Ԛ"5)%x4i[*4%5*RpZ;'Iv9s ҄%p vL:pء/A`Ӵn$nog2̔hwA.e.0R+.kc؋UagL.-}Ժ}f Ĉ@$Ԇ8x/g2{ҲX;0ㅓ\B<5806)_\ K>hyu?=` bRrgX&P!ϫP}jGgY|0[ˆUfdH蛫:N˞sa}9f[C{@za; zװ$@0(Y 7ê.c9;V;4Yth^lwŕ.؟gq3T%r\z9"X$ɌT<*#]0X«4a!ҽ;V׶f.DjIIdΔx"`T Q s]w/|%l~vK^:oO9u C܁qWKyv+vCyFZ/9 TrK`6(ҟceF1lUt> *s"lo7zYM`]!V l`8H:G Fb u6Q%׿0W-3Qv5+!wN0<ݭ⺴9&gj,qlq 26cG f:oR> endobj 662 0 obj << /Length1 1709 /Length2 10600 /Length3 0 /Length 11547 /Filter /FlateDecode >> stream xڭeTݒqwwwwN  n5$X._23Uٽ4j, g'VA'F uvzqOk';W[ fkmd' r:6 Gp @ wphry,Y88s?䝬|^t, @KtvrXT@`%?D2*@˥::W l rsߩpv?m=N lel}@j6+;_ '-lۿI*0WP hd9쎛7L | xx@77/du@>`lN-%+g7'/M/Mlo`z#t!>vqd߈&F\67Sz#p?7Sy#p??i7Mk|VـobF`-!p[nVs[`Š `}CX!8/'h?qgOʁSB@7`l|]l@NelBBl_v/voy[l@9ova0.oap1df7]_sp Nxl7/_xp<`6nX_{`B=gq`gކW$$}YGl=$Zx=Ulw @5l!aU$]4] )aݒ3ۉ P:ʸU*mv=#@}B45ˎN_+E m!z{ϫ#HՙtܳB5z)] ^Cޜ^>=lȯ\]+bW1ìNE#|cZ>wz(B(H{11UĸR18=mN6ƪRzn;E~ih,DMqƙ3Di8J4 > {tz|Y-$K|N^Mwg=ZQYHۘZO7.vêh`]CU=ݔ nH2MG*J$T07(woJ@U9 z_V9 ݲ:8B1[uI "rgG~ѳ:_20'm?-,g3\jtQ] cil-גlJ_4P%l!*;Nbn9n?+yy'٘Z#D?>'qdڝNݾd&sgI,tg+Dk 8Ecukv & ep!K@Y Vp:BuJ!6]t$fa9ٚ\8nb9S#YzR(f:Is&rP@$F$چox$)N_qG~cx[hgSz A "A~ _fm$yi=$gR?)ITOBvgے9C ^+rU]|ݏ>&^-!zAwaY`lV:Omu&1u OGs$@Cի_ oC5}b9m;LuYuD%ԜhʶثHheKqZU[}8!Rgu*Bs"!1,}ƒQ?(XNY(m~˞ټ uyߔpgj5"ҕ:%x152ur`rT ~bAgg&Xskcԡz !Jb=uAHZ#.Wb; ]SJ,W_,DdM޲uʣȅFpp:H }.وȆQs(tAS1ʠX5d5GbCY-u)_+MЛT];@[ޝQ<n? ѩbNb y6axȗ YVw~YUlpۥ++0|V"1! jX([Ưn/H4$IћQ< :li3BӨ7,ްAYoDs)x)j1U+H=(j7cL۩0Dusʕz䙭iV,Ia'2en,$'zGWrw!w~|@mor ^A~yJr#-ʻ=5tmlMܧ/* "h~k2$ Hb1|I}^Qv9Ҭ, X4P+IHet\KF&Y"wZFqP "Ԩh8:j۵cҮÂm45 e/Wu(yrm'[CQy>_ф^#J %SvLn-٧By)km[d؏^,;@gؘ1ţ}Ǒ ros mc_Z\-?5}O:X.ciއnVxbGb=TCqe;lpؗ]OF>ej_<ípH;(~eq&YгrW'I p-M 1R#-|s̟UI?ǿgɟ؊jp+m](3;siAʇ\]ዟ=$3S™j4JhY?$ opSȵ/׬m$2PcJm/5i ǥ~W>y ^29 mьpڀTp=Y a"({JllݔIT~Պʠ 0F fv+ f:'3|ލ|pqAЯ1L.(T?CLD pt)*ͺm6#zeU؅sN;bMׇ(hmC]bl+ xv~|ӾJf{rR)2yq5auCqd4xj4c+XمfD.],itrkRDhg1,0>cÜK]zdKMmrX3s'aWS R ah@%UF<d3VOWtoO 7HXƶ;,7D (cqo|'̱ӊkDmCoRP)\k0eлD8@|bjeóoY4LvjavLRSiWyȶb%^D@QXaG@.J)-EWZϜՄkE*3hHS&"gњBW9kBiŤQm!UpW0?y(//n,> ɩ>Hlvi㖳2)gjW~VF#k~x֚:(UV"3 R Tٻ6QAUFOrZͽ]G9bƤ/ܱʿ[!D1KZ,4w'ߣj5c'~3ukw^ͪ.1'lOR.>ż#A\6NFT4Wj!3˾eŀ )߅HvЋ3lq:L`vjMD"D1>9rhX,8>a;gbd?Q3>xK~` cK .&HBJ H%yffmyaRDȴx Ĝ'(_aJ,{cLTVqt2vףO[;oa%t(88pVn<;t'-\zWx4E 1Zi9o`\-r‰ɰh}4Fa V@wTJ/Gz1Έn$7d|45HgC oi㚶I(G6^s2<x8A+'L\]d!A9a?OP͇,il8B#BHud1Mˆ>ZB'DzHkĸ3K6]x\FUO5ԓT6p,_|ҰBni7?NW